diff --git a/30-days-of-python/19_Manipulación_de_archivos/01_files.py b/30-days-of-python/19_Manipulación_de_archivos/01_files.py new file mode 100644 index 0000000..b9ab989 --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/01_files.py @@ -0,0 +1,351 @@ +""" +01_files.py +""" +import os +import json +import nltk +import re +from data.stop_words import stop_words + +# Ejercicio: Nivel 1 + +# 1. Escribe una función que cuente el número +# de líneas y palabras en un texto. +# Todos los archivos se encuentran en la carpeta [data](./data)): + + +def contar_lineas_palabras(archivo): + with open(archivo, 'r') as f: + lineas = f.readlines() + f.seek(0) + palabras = f.read().split() + # Contar palabras + + resultado = f'tiene {len(lineas)} lineas y {len(palabras)} palabras\n' + + return resultado + +# a) Lee el archivo obama_speech.txt +# y cuenta el número de líneas y palabras + + +print( + f"El discurso de Obama {contar_lineas_palabras('data/obama_speech.txt')}") + +# b) Lee el archivo michelle_obama_speech.txt +# y cuenta el número de líneas y palabras + +print( + f"El discurso de Michelle {contar_lineas_palabras('data/michelle_obama_speech.txt')}") + +# c) Lee el archivo donald_speech.txt +# y cuenta el número de líneas y palabras + +print( + f"El discurso de Donald {contar_lineas_palabras('data/donald_speech.txt')}") + +# d) Lee el archivo melina_trump_speech.txt +# y cuenta el número de líneas y palabras + +print( + f"El discurso de Melina {contar_lineas_palabras('data/melina_trump_speech.txt')}") + + +# 2. Lee el archivo de datos countries_data.json +# en el directorio data, +# crea una función que encuentre +# los diez idiomas más hablados. + + +def diez_idiomas_mas_hablados(): + archivo = 'data/countries_data.json' + with open(archivo, 'r') as f: + data = json.load(f) + idiomas = [] + for pais in data: + idiomas.extend(pais['languages']) + + # Contamos la frecuencia de cada idioma + idiomas_freq = {} + for idioma in idiomas: + if idioma in idiomas_freq: + idiomas_freq[idioma] += 1 + else: + idiomas_freq[idioma] = 1 + + # Ordenamos los idiomas por frecuencia + # y tomamos los 10 más comunes + diez_idiomas = sorted( + idiomas_freq.items(), + key=lambda x: x[1], + reverse=True + )[:10] + + # Creamos una lista de tuplas + # que contengan el nombre del idioma + # y el número de países en los que se habla + resultado = [] + for idioma, frecuencia in diez_idiomas: + resultado.append((idioma, frecuencia)) + + return resultado + + +for idioma, frecuencia in diez_idiomas_mas_hablados(): + print(f"{idioma} se habla en {frecuencia} paises") + +print() + +# 3. Lee el archivo de datos countries_data.json +# en el directorio data, +# crea una función que genere +# una lista de los diez países más poblados. + + +def diez_paises_mas_poblados(): + archivo = 'data/countries_data.json' + with open(archivo, 'r') as f: + data = json.load(f) + paises = [] + for pais in data: + paises.append((pais['name'], pais['population'])) + + # Ordenamos los paises por población + # y tomamos los 10 más poblados + diez_paises = sorted( + paises, + key=lambda x: x[1], + reverse=True + )[:10] + + resultado = [] + for pais, poblacion in diez_paises: + poblacion_millones = poblacion / 1000000 + resultado.append((pais, poblacion_millones)) + + return resultado + + +for pais, poblacion in diez_paises_mas_poblados(): + print(f"{pais} tiene {poblacion:.2f} millones de habitantes") + +print() + +# Ejercicios: Nivel 2 + +# 1. Extrae todas las direcciones +# de correo electrónico entrantes +# como una lista del archivo +# email_exchange_big.txt. + + +def extraer_correos(): + archivo = 'data/email_exchanges_big.txt' + with open(archivo, 'r') as f: + lineas = f.readlines() + correos = {} + for linea in lineas: + if linea.startswith('From '): + correo = linea.split()[1] + if correo in correos: + correos[correo] += 1 + else: + correos[correo] = 1 + + return correos + + +for correo, frecuencia in extraer_correos().items(): + print(f"{correo} envió {frecuencia} correos") + +print() + +# 2. Encuentra las palabras más comunes +# en el idioma inglés. +# Llama a tu función encontrar_palabras_mas_comunes, +# tomará dos parámetros: +# una cadena o un archivo +# y un número entero positivo +# que indicará la cantidad de palabras. +# Tu función devolverá una lista de tuplas +# en orden descendente. + + +def encontrar_palabras_mas_comunes(archivo, n): + with open(archivo, 'r') as f: + palabras = f.read().split() + + # Etiquetamos cada palabra con su POS + palabras_pos = nltk.pos_tag(palabras) + + # Filtramos las palabras que sean sustantivos o verbos + palabras_filtradas = [] + for palabra, pos in palabras_pos: + if pos.startswith('N') or pos.startswith('V'): + palabras_filtradas.append(palabra) + + # Contamos las palabras filtradas + palabras_freq = {} + for palabra in palabras_filtradas: + if palabra in palabras_freq: + palabras_freq[palabra] += 1 + else: + palabras_freq[palabra] = 1 + + # Ordenamos las palabras por frecuencia + # y tomamos las n más comunes + n_palabras = sorted( + palabras_freq.items(), + key=lambda x: x[1], + reverse=True + )[:n] + + # Creamos una lista de tuplas + # que contengan el nombre de la palabra + # y el número de veces que aparece + resultado = [] + for palabra, frecuencia in n_palabras: + resultado.append((palabra, frecuencia)) + + return resultado + + +for palabra, frecuencia in encontrar_palabras_mas_comunes('data/romeo_and_juliet.txt', 10): + print(f"\"{palabra}\" aparece {frecuencia} veces") + +print() + +# 3. Utiliza la función encontrar_palabras_mas_comunes para encontrar: +# a) Las diez palabras más frecuentes utilizadas en el discurso de Obama +print('Las diez palabras más frecuentes utilizadas en el discurso de Obama') +for palabra, frecuencia in encontrar_palabras_mas_comunes('data/obama_speech.txt', 10): + print(f"\"{palabra}\" aparece {frecuencia} veces") + +print() + +# b) Las diez palabras más frecuentes utilizadas en el discurso de Michelle +print('Las diez palabras más frecuentes utilizadas en el discurso de Michelle') +for palabra, frecuencia in encontrar_palabras_mas_comunes('data/michelle_obama_speech.txt', 10): + print(f"\"{palabra}\" aparece {frecuencia} veces") + +print() + +# d) Las diez palabras más frecuentes utilizadas en el discurso de Melina +print('Las diez palabras más frecuentes utilizadas en el discurso de Melina') +for palabra, frecuencia in encontrar_palabras_mas_comunes('data/melina_trump_speech.txt', 10): + print(f"\"{palabra}\" aparece {frecuencia} veces") + +print() + +# c) Las diez palabras más frecuentes utilizadas en el discurso de Trump +print('Las diez palabras más frecuentes utilizadas en el discurso de Trump') +for palabra, frecuencia in encontrar_palabras_mas_comunes('data/donald_speech.txt', 10): + print(f"\"{palabra}\" aparece {frecuencia} veces") + +print() + +# 4. Escribe una aplicación Python +# que verifique la similitud entre dos textos. +# Toma un archivo o una cadena como parámetro +# y evaluará la similitud entre los dos textos. +# Es posible que necesites un par de funciones: +# una para limpiar el texto (limpiar_texto), +# una para eliminar las palabras de soporte +# (eliminar_palabras_soporte) +# y finalmente para verificar la similitud +# (verificar_similitud_texto). +# La lista de palabras de paro +# se encuentra en el directorio data. + + +def limpiar_texto(texto): + # Convertir todo a minúsculas + texto = texto.lower() + + # Eliminar caracteres no alfabéticos + texto = re.sub(r'[^a-záéíóúñ]', ' ', texto) + + # Eliminar espacios en blanco adicionales + texto = re.sub(r'\s+', ' ', texto) + + return texto.strip() + + +def eliminar_palabras_soporte(texto, palabras_soporte): + palabras = texto.split() + palabras_filtradas = [ + palabra for palabra in palabras if palabra not in palabras_soporte] + return ' '.join(palabras_filtradas) + + +def verificar_similitud_texto(texto1, texto2, palabras_soporte): + texto1 = limpiar_texto(texto1) + texto2 = limpiar_texto(texto2) + + texto1 = eliminar_palabras_soporte(texto1, palabras_soporte) + texto2 = eliminar_palabras_soporte(texto2, palabras_soporte) + + palabras1 = set(texto1.split()) + palabras2 = set(texto2.split()) + + similitud = len(palabras1 & palabras2) / len(palabras1 | palabras2) + + return similitud + + +# Leer los archivos de texto +with open('./data/michelle_obama_speech.txt', 'r') as f: + texto1 = f.read() + +with open('./data/melina_trump_speech.txt', 'r') as f: + texto2 = f.read() + +# Calcular la similitud entre los textos +similitud = verificar_similitud_texto(texto1, texto2, stop_words) + +# Mostrar el resultado como un porcentaje +porcentaje_similitud = similitud * 100 +print(f"La similitud entre los textos es de un {porcentaje_similitud:.2f}%\n") + + +# 5. Encuentra las 10 palabras más repetidas en romeo_and_juliet.txt. + +for palabra, frecuencia in encontrar_palabras_mas_comunes('data/romeo_and_juliet.txt', 10): + print(f"\"{palabra}\" aparece {frecuencia} veces") +print() + +# 6. Lee el archivo CSV de hacker news y averigua: + + +def contar_lineas(palabra): + archivo = 'data/hacker_news.csv' + with open(archivo, 'r') as f: + lineas = f.readlines() + contador = 0 + for linea in lineas: + if palabra in linea: + contador += 1 + return contador + + +# a) Cuántas líneas contienen python o Python + +contador_python = contar_lineas('python') + contar_lineas('Python') +print( + f"El archivo contiene {contador_python} líneas que contienen 'python' o 'Python'.") + +# b) Cuántas líneas contienen JavaScript, javascript o Javascript + +contador_javascript = contar_lineas( + 'JavaScript') + contar_lineas('javascript') + contar_lineas('Javascript') +print( + f"El archivo contiene {contador_javascript} líneas que contienen 'JavaScript', 'javascript' o 'Javascript'.") + +# c) Cuántas líneas contienen Java y no JavaScript + +contador_java = contar_lineas('Java') +contador_javascript = contar_lineas( + 'JavaScript') + contar_lineas('Javascript') +contador_java_sin_javascript = contador_java - contador_javascript +print( + f"El archivo contiene {contador_java_sin_javascript} líneas que contienen 'Java' pero no 'JavaScript', 'javascript' o 'Javascript'.") diff --git a/30-days-of-python/19_Manipulación_de_archivos/README.md b/30-days-of-python/19_Manipulación_de_archivos/README.md index d6794de..7fecd3f 100644 --- a/30-days-of-python/19_Manipulación_de_archivos/README.md +++ b/30-days-of-python/19_Manipulación_de_archivos/README.md @@ -6,7 +6,7 @@ Documento original en inglés: [file handling](https://github.com/Asabeneh/30-Da ### Ejercicios: Nivel 1 -1. Escribe una función que cuente el número de líneas y palabras en un texto. Todos los archivos se encuentran en la carpeta data: +1. Escribe una función que cuente el número de líneas y palabras en un texto. Todos los archivos se encuentran en la carpeta [data](./data): a) Lee el archivo obama_speech.txt y cuenta el número de líneas y palabras b) Lee el archivo michelle_obama_speech.txt y cuenta el número de líneas y palabras c) Lee el archivo donald_speech.txt y cuenta el número de líneas y palabras @@ -110,4 +110,6 @@ a) Cuántas líneas contienen python o Python b) Cuántas líneas contienen JavaScript, javascript o Javascript c) Cuántas líneas contienen Java y no JavaScript +[Solución](01_files.py) + [<< Day 18](../18_Expresiones_regulares/README.md) | [Day 20 >>](../20_Gestor_de_paquetes_de_Python/README.md) diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/countries_data.json b/30-days-of-python/19_Manipulación_de_archivos/data/countries_data.json new file mode 100644 index 0000000..f214fce --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/countries_data.json @@ -0,0 +1,2620 @@ +[ + { + "name": "Afghanistan", + "capital": "Kabul", + "languages": [ + "Pashto", + "Uzbek", + "Turkmen" + ], + "population": 27657145, + "flag": "https://restcountries.eu/data/afg.svg", + "currency": "Afghan afghani" + }, + { + "name": "Åland Islands", + "capital": "Mariehamn", + "languages": [ + "Swedish" + ], + "population": 28875, + "flag": "https://restcountries.eu/data/ala.svg", + "currency": "Euro" + }, + { + "name": "Albania", + "capital": "Tirana", + "languages": [ + "Albanian" + ], + "population": 2886026, + "flag": "https://restcountries.eu/data/alb.svg", + "currency": "Albanian lek" + }, + { + "name": "Algeria", + "capital": "Algiers", + "languages": [ + "Arabic" + ], + "population": 40400000, + "flag": "https://restcountries.eu/data/dza.svg", + "currency": "Algerian dinar" + }, + { + "name": "American Samoa", + "capital": "Pago Pago", + "languages": [ + "English", + "Samoan" + ], + "population": 57100, + "flag": "https://restcountries.eu/data/asm.svg", + "currency": "United State Dollar" + }, + { + "name": "Andorra", + "capital": "Andorra la Vella", + "languages": [ + "Catalan" + ], + "population": 78014, + "flag": "https://restcountries.eu/data/and.svg", + "currency": "Euro" + }, + { + "name": "Angola", + "capital": "Luanda", + "languages": [ + "Portuguese" + ], + "population": 25868000, + "flag": "https://restcountries.eu/data/ago.svg", + "currency": "Angolan kwanza" + }, + { + "name": "Anguilla", + "capital": "The Valley", + "languages": [ + "English" + ], + "population": 13452, + "flag": "https://restcountries.eu/data/aia.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Antarctica", + "capital": "", + "languages": [ + "English", + "Russian" + ], + "population": 1000, + "flag": "https://restcountries.eu/data/ata.svg", + "currency": "Australian dollar" + }, + { + "name": "Antigua and Barbuda", + "capital": "Saint John's", + "languages": [ + "English" + ], + "population": 86295, + "flag": "https://restcountries.eu/data/atg.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Argentina", + "capital": "Buenos Aires", + "languages": [ + "Spanish", + "Guaraní" + ], + "population": 43590400, + "flag": "https://restcountries.eu/data/arg.svg", + "currency": "Argentine peso" + }, + { + "name": "Armenia", + "capital": "Yerevan", + "languages": [ + "Armenian", + "Russian" + ], + "population": 2994400, + "flag": "https://restcountries.eu/data/arm.svg", + "currency": "Armenian dram" + }, + { + "name": "Aruba", + "capital": "Oranjestad", + "languages": [ + "Dutch", + "(Eastern) Punjabi" + ], + "population": 107394, + "flag": "https://restcountries.eu/data/abw.svg", + "currency": "Aruban florin" + }, + { + "name": "Australia", + "capital": "Canberra", + "languages": [ + "English" + ], + "population": 24117360, + "flag": "https://restcountries.eu/data/aus.svg", + "currency": "Australian dollar" + }, + { + "name": "Austria", + "capital": "Vienna", + "languages": [ + "German" + ], + "population": 8725931, + "flag": "https://restcountries.eu/data/aut.svg", + "currency": "Euro" + }, + { + "name": "Azerbaijan", + "capital": "Baku", + "languages": [ + "Azerbaijani" + ], + "population": 9730500, + "flag": "https://restcountries.eu/data/aze.svg", + "currency": "Azerbaijani manat" + }, + { + "name": "Bahamas", + "capital": "Nassau", + "languages": [ + "English" + ], + "population": 378040, + "flag": "https://restcountries.eu/data/bhs.svg", + "currency": "Bahamian dollar" + }, + { + "name": "Bahrain", + "capital": "Manama", + "languages": [ + "Arabic" + ], + "population": 1404900, + "flag": "https://restcountries.eu/data/bhr.svg", + "currency": "Bahraini dinar" + }, + { + "name": "Bangladesh", + "capital": "Dhaka", + "languages": [ + "Bengali" + ], + "population": 161006790, + "flag": "https://restcountries.eu/data/bgd.svg", + "currency": "Bangladeshi taka" + }, + { + "name": "Barbados", + "capital": "Bridgetown", + "languages": [ + "English" + ], + "population": 285000, + "flag": "https://restcountries.eu/data/brb.svg", + "currency": "Barbadian dollar" + }, + { + "name": "Belarus", + "capital": "Minsk", + "languages": [ + "Belarusian", + "Russian" + ], + "population": 9498700, + "flag": "https://restcountries.eu/data/blr.svg", + "currency": "New Belarusian ruble" + }, + { + "name": "Belgium", + "capital": "Brussels", + "languages": [ + "Dutch", + "French", + "German" + ], + "population": 11319511, + "flag": "https://restcountries.eu/data/bel.svg", + "currency": "Euro" + }, + { + "name": "Belize", + "capital": "Belmopan", + "languages": [ + "English", + "Spanish" + ], + "population": 370300, + "flag": "https://restcountries.eu/data/blz.svg", + "currency": "Belize dollar" + }, + { + "name": "Benin", + "capital": "Porto-Novo", + "languages": [ + "French" + ], + "population": 10653654, + "flag": "https://restcountries.eu/data/ben.svg", + "currency": "West African CFA franc" + }, + { + "name": "Bermuda", + "capital": "Hamilton", + "languages": [ + "English" + ], + "population": 61954, + "flag": "https://restcountries.eu/data/bmu.svg", + "currency": "Bermudian dollar" + }, + { + "name": "Bhutan", + "capital": "Thimphu", + "languages": [ + "Dzongkha" + ], + "population": 775620, + "flag": "https://restcountries.eu/data/btn.svg", + "currency": "Bhutanese ngultrum" + }, + { + "name": "Bolivia (Plurinational State of)", + "capital": "Sucre", + "languages": [ + "Spanish", + "Aymara", + "Quechua" + ], + "population": 10985059, + "flag": "https://restcountries.eu/data/bol.svg", + "currency": "Bolivian boliviano" + }, + { + "name": "Bonaire, Sint Eustatius and Saba", + "capital": "Kralendijk", + "languages": [ + "Dutch" + ], + "population": 17408, + "flag": "https://restcountries.eu/data/bes.svg", + "currency": "United States dollar" + }, + { + "name": "Bosnia and Herzegovina", + "capital": "Sarajevo", + "languages": [ + "Bosnian", + "Croatian", + "Serbian" + ], + "population": 3531159, + "flag": "https://restcountries.eu/data/bih.svg", + "currency": "Bosnia and Herzegovina convertible mark" + }, + { + "name": "Botswana", + "capital": "Gaborone", + "languages": [ + "English", + "Tswana" + ], + "population": 2141206, + "flag": "https://restcountries.eu/data/bwa.svg", + "currency": "Botswana pula" + }, + { + "name": "Bouvet Island", + "capital": "", + "languages": [ + "Norwegian", + "Norwegian Bokmål", + "Norwegian Nynorsk" + ], + "population": 0, + "flag": "https://restcountries.eu/data/bvt.svg", + "currency": "Norwegian krone" + }, + { + "name": "Brazil", + "capital": "Brasília", + "languages": [ + "Portuguese" + ], + "population": 206135893, + "flag": "https://restcountries.eu/data/bra.svg", + "currency": "Brazilian real" + }, + { + "name": "British Indian Ocean Territory", + "capital": "Diego Garcia", + "languages": [ + "English" + ], + "population": 3000, + "flag": "https://restcountries.eu/data/iot.svg", + "currency": "United States dollar" + }, + { + "name": "United States Minor Outlying Islands", + "capital": "", + "languages": [ + "English" + ], + "population": 300, + "flag": "https://restcountries.eu/data/umi.svg", + "currency": "United States Dollar" + }, + { + "name": "Virgin Islands (British)", + "capital": "Road Town", + "languages": [ + "English" + ], + "population": 28514, + "flag": "https://restcountries.eu/data/vgb.svg", + "currency": "[D]" + }, + { + "name": "Virgin Islands (U.S.)", + "capital": "Charlotte Amalie", + "languages": [ + "English" + ], + "population": 114743, + "flag": "https://restcountries.eu/data/vir.svg", + "currency": "United States dollar" + }, + { + "name": "Brunei Darussalam", + "capital": "Bandar Seri Begawan", + "languages": [ + "Malay" + ], + "population": 411900, + "flag": "https://restcountries.eu/data/brn.svg", + "currency": "Brunei dollar" + }, + { + "name": "Bulgaria", + "capital": "Sofia", + "languages": [ + "Bulgarian" + ], + "population": 7153784, + "flag": "https://restcountries.eu/data/bgr.svg", + "currency": "Bulgarian lev" + }, + { + "name": "Burkina Faso", + "capital": "Ouagadougou", + "languages": [ + "French", + "Fula" + ], + "population": 19034397, + "flag": "https://restcountries.eu/data/bfa.svg", + "currency": "West African CFA franc" + }, + { + "name": "Burundi", + "capital": "Bujumbura", + "languages": [ + "French", + "Kirundi" + ], + "population": 10114505, + "flag": "https://restcountries.eu/data/bdi.svg", + "currency": "Burundian franc" + }, + { + "name": "Cambodia", + "capital": "Phnom Penh", + "languages": [ + "Khmer" + ], + "population": 15626444, + "flag": "https://restcountries.eu/data/khm.svg", + "currency": "Cambodian riel" + }, + { + "name": "Cameroon", + "capital": "Yaoundé", + "languages": [ + "English", + "French" + ], + "population": 22709892, + "flag": "https://restcountries.eu/data/cmr.svg", + "currency": "Central African CFA franc" + }, + { + "name": "Canada", + "capital": "Ottawa", + "languages": [ + "English", + "French" + ], + "population": 36155487, + "flag": "https://restcountries.eu/data/can.svg", + "currency": "Canadian dollar" + }, + { + "name": "Cabo Verde", + "capital": "Praia", + "languages": [ + "Portuguese" + ], + "population": 531239, + "flag": "https://restcountries.eu/data/cpv.svg", + "currency": "Cape Verdean escudo" + }, + { + "name": "Cayman Islands", + "capital": "George Town", + "languages": [ + "English" + ], + "population": 58238, + "flag": "https://restcountries.eu/data/cym.svg", + "currency": "Cayman Islands dollar" + }, + { + "name": "Central African Republic", + "capital": "Bangui", + "languages": [ + "French", + "Sango" + ], + "population": 4998000, + "flag": "https://restcountries.eu/data/caf.svg", + "currency": "Central African CFA franc" + }, + { + "name": "Chad", + "capital": "N'Djamena", + "languages": [ + "French", + "Arabic" + ], + "population": 14497000, + "flag": "https://restcountries.eu/data/tcd.svg", + "currency": "Central African CFA franc" + }, + { + "name": "Chile", + "capital": "Santiago", + "languages": [ + "Spanish" + ], + "population": 18191900, + "flag": "https://restcountries.eu/data/chl.svg", + "currency": "Chilean peso" + }, + { + "name": "China", + "capital": "Beijing", + "languages": [ + "Chinese" + ], + "population": 1377422166, + "flag": "https://restcountries.eu/data/chn.svg", + "currency": "Chinese yuan" + }, + { + "name": "Christmas Island", + "capital": "Flying Fish Cove", + "languages": [ + "English" + ], + "population": 2072, + "flag": "https://restcountries.eu/data/cxr.svg", + "currency": "Australian dollar" + }, + { + "name": "Cocos (Keeling) Islands", + "capital": "West Island", + "languages": [ + "English" + ], + "population": 550, + "flag": "https://restcountries.eu/data/cck.svg", + "currency": "Australian dollar" + }, + { + "name": "Colombia", + "capital": "Bogotá", + "languages": [ + "Spanish" + ], + "population": 48759958, + "flag": "https://restcountries.eu/data/col.svg", + "currency": "Colombian peso" + }, + { + "name": "Comoros", + "capital": "Moroni", + "languages": [ + "Arabic", + "French" + ], + "population": 806153, + "flag": "https://restcountries.eu/data/com.svg", + "currency": "Comorian franc" + }, + { + "name": "Congo", + "capital": "Brazzaville", + "languages": [ + "French", + "Lingala" + ], + "population": 4741000, + "flag": "https://restcountries.eu/data/cog.svg", + "currency": "Central African CFA franc" + }, + { + "name": "Congo (Democratic Republic of the)", + "capital": "Kinshasa", + "languages": [ + "French", + "Lingala", + "Kongo", + "Swahili", + "Luba-Katanga" + ], + "population": 85026000, + "flag": "https://restcountries.eu/data/cod.svg", + "currency": "Congolese franc" + }, + { + "name": "Cook Islands", + "capital": "Avarua", + "languages": [ + "English" + ], + "population": 18100, + "flag": "https://restcountries.eu/data/cok.svg", + "currency": "New Zealand dollar" + }, + { + "name": "Costa Rica", + "capital": "San José", + "languages": [ + "Spanish" + ], + "population": 4890379, + "flag": "https://restcountries.eu/data/cri.svg", + "currency": "Costa Rican colón" + }, + { + "name": "Croatia", + "capital": "Zagreb", + "languages": [ + "Croatian" + ], + "population": 4190669, + "flag": "https://restcountries.eu/data/hrv.svg", + "currency": "Croatian kuna" + }, + { + "name": "Cuba", + "capital": "Havana", + "languages": [ + "Spanish" + ], + "population": 11239004, + "flag": "https://restcountries.eu/data/cub.svg", + "currency": "Cuban convertible peso" + }, + { + "name": "Curaçao", + "capital": "Willemstad", + "languages": [ + "Dutch", + "(Eastern) Punjabi", + "English" + ], + "population": 154843, + "flag": "https://restcountries.eu/data/cuw.svg", + "currency": "Netherlands Antillean guilder" + }, + { + "name": "Cyprus", + "capital": "Nicosia", + "languages": [ + "Greek (modern)", + "Turkish", + "Armenian" + ], + "population": 847000, + "flag": "https://restcountries.eu/data/cyp.svg", + "currency": "Euro" + }, + { + "name": "Czech Republic", + "capital": "Prague", + "languages": [ + "Czech", + "Slovak" + ], + "population": 10558524, + "flag": "https://restcountries.eu/data/cze.svg", + "currency": "Czech koruna" + }, + { + "name": "Denmark", + "capital": "Copenhagen", + "languages": [ + "Danish" + ], + "population": 5717014, + "flag": "https://restcountries.eu/data/dnk.svg", + "currency": "Danish krone" + }, + { + "name": "Djibouti", + "capital": "Djibouti", + "languages": [ + "French", + "Arabic" + ], + "population": 900000, + "flag": "https://restcountries.eu/data/dji.svg", + "currency": "Djiboutian franc" + }, + { + "name": "Dominica", + "capital": "Roseau", + "languages": [ + "English" + ], + "population": 71293, + "flag": "https://restcountries.eu/data/dma.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Dominican Republic", + "capital": "Santo Domingo", + "languages": [ + "Spanish" + ], + "population": 10075045, + "flag": "https://restcountries.eu/data/dom.svg", + "currency": "Dominican peso" + }, + { + "name": "Ecuador", + "capital": "Quito", + "languages": [ + "Spanish" + ], + "population": 16545799, + "flag": "https://restcountries.eu/data/ecu.svg", + "currency": "United States dollar" + }, + { + "name": "Egypt", + "capital": "Cairo", + "languages": [ + "Arabic" + ], + "population": 91290000, + "flag": "https://restcountries.eu/data/egy.svg", + "currency": "Egyptian pound" + }, + { + "name": "El Salvador", + "capital": "San Salvador", + "languages": [ + "Spanish" + ], + "population": 6520675, + "flag": "https://restcountries.eu/data/slv.svg", + "currency": "United States dollar" + }, + { + "name": "Equatorial Guinea", + "capital": "Malabo", + "languages": [ + "Spanish", + "French" + ], + "population": 1222442, + "flag": "https://restcountries.eu/data/gnq.svg", + "currency": "Central African CFA franc" + }, + { + "name": "Eritrea", + "capital": "Asmara", + "languages": [ + "Tigrinya", + "Arabic", + "English" + ], + "population": 5352000, + "flag": "https://restcountries.eu/data/eri.svg", + "currency": "Eritrean nakfa" + }, + { + "name": "Estonia", + "capital": "Tallinn", + "languages": [ + "Estonian" + ], + "population": 1315944, + "flag": "https://restcountries.eu/data/est.svg", + "currency": "Euro" + }, + { + "name": "Ethiopia", + "capital": "Addis Ababa", + "languages": [ + "Amharic" + ], + "population": 92206005, + "flag": "https://restcountries.eu/data/eth.svg", + "currency": "Ethiopian birr" + }, + { + "name": "Falkland Islands (Malvinas)", + "capital": "Stanley", + "languages": [ + "English" + ], + "population": 2563, + "flag": "https://restcountries.eu/data/flk.svg", + "currency": "Falkland Islands pound" + }, + { + "name": "Faroe Islands", + "capital": "Tórshavn", + "languages": [ + "Faroese" + ], + "population": 49376, + "flag": "https://restcountries.eu/data/fro.svg", + "currency": "Danish krone" + }, + { + "name": "Fiji", + "capital": "Suva", + "languages": [ + "English", + "Fijian", + "Hindi", + "Urdu" + ], + "population": 867000, + "flag": "https://restcountries.eu/data/fji.svg", + "currency": "Fijian dollar" + }, + { + "name": "Finland", + "capital": "Helsinki", + "languages": [ + "Finnish", + "Swedish" + ], + "population": 5491817, + "flag": "https://restcountries.eu/data/fin.svg", + "currency": "Euro" + }, + { + "name": "France", + "capital": "Paris", + "languages": [ + "French" + ], + "population": 66710000, + "flag": "https://restcountries.eu/data/fra.svg", + "currency": "Euro" + }, + { + "name": "French Guiana", + "capital": "Cayenne", + "languages": [ + "French" + ], + "population": 254541, + "flag": "https://restcountries.eu/data/guf.svg", + "currency": "Euro" + }, + { + "name": "French Polynesia", + "capital": "Papeetē", + "languages": [ + "French" + ], + "population": 271800, + "flag": "https://restcountries.eu/data/pyf.svg", + "currency": "CFP franc" + }, + { + "name": "French Southern Territories", + "capital": "Port-aux-Français", + "languages": [ + "French" + ], + "population": 140, + "flag": "https://restcountries.eu/data/atf.svg", + "currency": "Euro" + }, + { + "name": "Gabon", + "capital": "Libreville", + "languages": [ + "French" + ], + "population": 1802278, + "flag": "https://restcountries.eu/data/gab.svg", + "currency": "Central African CFA franc" + }, + { + "name": "Gambia", + "capital": "Banjul", + "languages": [ + "English" + ], + "population": 1882450, + "flag": "https://restcountries.eu/data/gmb.svg", + "currency": "Gambian dalasi" + }, + { + "name": "Georgia", + "capital": "Tbilisi", + "languages": [ + "Georgian" + ], + "population": 3720400, + "flag": "https://restcountries.eu/data/geo.svg", + "currency": "Georgian Lari" + }, + { + "name": "Germany", + "capital": "Berlin", + "languages": [ + "German" + ], + "population": 81770900, + "flag": "https://restcountries.eu/data/deu.svg", + "currency": "Euro" + }, + { + "name": "Ghana", + "capital": "Accra", + "languages": [ + "English" + ], + "population": 27670174, + "flag": "https://restcountries.eu/data/gha.svg", + "currency": "Ghanaian cedi" + }, + { + "name": "Gibraltar", + "capital": "Gibraltar", + "languages": [ + "English" + ], + "population": 33140, + "flag": "https://restcountries.eu/data/gib.svg", + "currency": "Gibraltar pound" + }, + { + "name": "Greece", + "capital": "Athens", + "languages": [ + "Greek (modern)" + ], + "population": 10858018, + "flag": "https://restcountries.eu/data/grc.svg", + "currency": "Euro" + }, + { + "name": "Greenland", + "capital": "Nuuk", + "languages": [ + "Kalaallisut" + ], + "population": 55847, + "flag": "https://restcountries.eu/data/grl.svg", + "currency": "Danish krone" + }, + { + "name": "Grenada", + "capital": "St. George's", + "languages": [ + "English" + ], + "population": 103328, + "flag": "https://restcountries.eu/data/grd.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Guadeloupe", + "capital": "Basse-Terre", + "languages": [ + "French" + ], + "population": 400132, + "flag": "https://restcountries.eu/data/glp.svg", + "currency": "Euro" + }, + { + "name": "Guam", + "capital": "Hagåtña", + "languages": [ + "English", + "Chamorro", + "Spanish" + ], + "population": 184200, + "flag": "https://restcountries.eu/data/gum.svg", + "currency": "United States dollar" + }, + { + "name": "Guatemala", + "capital": "Guatemala City", + "languages": [ + "Spanish" + ], + "population": 16176133, + "flag": "https://restcountries.eu/data/gtm.svg", + "currency": "Guatemalan quetzal" + }, + { + "name": "Guernsey", + "capital": "St. Peter Port", + "languages": [ + "English", + "French" + ], + "population": 62999, + "flag": "https://restcountries.eu/data/ggy.svg", + "currency": "British pound" + }, + { + "name": "Guinea", + "capital": "Conakry", + "languages": [ + "French", + "Fula" + ], + "population": 12947000, + "flag": "https://restcountries.eu/data/gin.svg", + "currency": "Guinean franc" + }, + { + "name": "Guinea-Bissau", + "capital": "Bissau", + "languages": [ + "Portuguese" + ], + "population": 1547777, + "flag": "https://restcountries.eu/data/gnb.svg", + "currency": "West African CFA franc" + }, + { + "name": "Guyana", + "capital": "Georgetown", + "languages": [ + "English" + ], + "population": 746900, + "flag": "https://restcountries.eu/data/guy.svg", + "currency": "Guyanese dollar" + }, + { + "name": "Haiti", + "capital": "Port-au-Prince", + "languages": [ + "French", + "Haitian" + ], + "population": 11078033, + "flag": "https://restcountries.eu/data/hti.svg", + "currency": "Haitian gourde" + }, + { + "name": "Heard Island and McDonald Islands", + "capital": "", + "languages": [ + "English" + ], + "population": 0, + "flag": "https://restcountries.eu/data/hmd.svg", + "currency": "Australian dollar" + }, + { + "name": "Holy See", + "capital": "Rome", + "languages": [ + "Latin", + "Italian", + "French", + "German" + ], + "population": 451, + "flag": "https://restcountries.eu/data/vat.svg", + "currency": "Euro" + }, + { + "name": "Honduras", + "capital": "Tegucigalpa", + "languages": [ + "Spanish" + ], + "population": 8576532, + "flag": "https://restcountries.eu/data/hnd.svg", + "currency": "Honduran lempira" + }, + { + "name": "Hong Kong", + "capital": "City of Victoria", + "languages": [ + "English", + "Chinese" + ], + "population": 7324300, + "flag": "https://restcountries.eu/data/hkg.svg", + "currency": "Hong Kong dollar" + }, + { + "name": "Hungary", + "capital": "Budapest", + "languages": [ + "Hungarian" + ], + "population": 9823000, + "flag": "https://restcountries.eu/data/hun.svg", + "currency": "Hungarian forint" + }, + { + "name": "Iceland", + "capital": "Reykjavík", + "languages": [ + "Icelandic" + ], + "population": 334300, + "flag": "https://restcountries.eu/data/isl.svg", + "currency": "Icelandic króna" + }, + { + "name": "India", + "capital": "New Delhi", + "languages": [ + "Hindi", + "English" + ], + "population": 1295210000, + "flag": "https://restcountries.eu/data/ind.svg", + "currency": "Indian rupee" + }, + { + "name": "Indonesia", + "capital": "Jakarta", + "languages": [ + "Indonesian" + ], + "population": 258705000, + "flag": "https://restcountries.eu/data/idn.svg", + "currency": "Indonesian rupiah" + }, + { + "name": "Côte d'Ivoire", + "capital": "Yamoussoukro", + "languages": [ + "French" + ], + "population": 22671331, + "flag": "https://restcountries.eu/data/civ.svg", + "currency": "West African CFA franc" + }, + { + "name": "Iran (Islamic Republic of)", + "capital": "Tehran", + "languages": [ + "Persian (Farsi)" + ], + "population": 79369900, + "flag": "https://restcountries.eu/data/irn.svg", + "currency": "Iranian rial" + }, + { + "name": "Iraq", + "capital": "Baghdad", + "languages": [ + "Arabic", + "Kurdish" + ], + "population": 37883543, + "flag": "https://restcountries.eu/data/irq.svg", + "currency": "Iraqi dinar" + }, + { + "name": "Ireland", + "capital": "Dublin", + "languages": [ + "Irish", + "English" + ], + "population": 6378000, + "flag": "https://restcountries.eu/data/irl.svg", + "currency": "Euro" + }, + { + "name": "Isle of Man", + "capital": "Douglas", + "languages": [ + "English", + "Manx" + ], + "population": 84497, + "flag": "https://restcountries.eu/data/imn.svg", + "currency": "British pound" + }, + { + "name": "Israel", + "capital": "Jerusalem", + "languages": [ + "Hebrew (modern)", + "Arabic" + ], + "population": 8527400, + "flag": "https://restcountries.eu/data/isr.svg", + "currency": "Israeli new shekel" + }, + { + "name": "Italy", + "capital": "Rome", + "languages": [ + "Italian" + ], + "population": 60665551, + "flag": "https://restcountries.eu/data/ita.svg", + "currency": "Euro" + }, + { + "name": "Jamaica", + "capital": "Kingston", + "languages": [ + "English" + ], + "population": 2723246, + "flag": "https://restcountries.eu/data/jam.svg", + "currency": "Jamaican dollar" + }, + { + "name": "Japan", + "capital": "Tokyo", + "languages": [ + "Japanese" + ], + "population": 126960000, + "flag": "https://restcountries.eu/data/jpn.svg", + "currency": "Japanese yen" + }, + { + "name": "Jersey", + "capital": "Saint Helier", + "languages": [ + "English", + "French" + ], + "population": 100800, + "flag": "https://restcountries.eu/data/jey.svg", + "currency": "British pound" + }, + { + "name": "Jordan", + "capital": "Amman", + "languages": [ + "Arabic" + ], + "population": 9531712, + "flag": "https://restcountries.eu/data/jor.svg", + "currency": "Jordanian dinar" + }, + { + "name": "Kazakhstan", + "capital": "Astana", + "languages": [ + "Kazakh", + "Russian" + ], + "population": 17753200, + "flag": "https://restcountries.eu/data/kaz.svg", + "currency": "Kazakhstani tenge" + }, + { + "name": "Kenya", + "capital": "Nairobi", + "languages": [ + "English", + "Swahili" + ], + "population": 47251000, + "flag": "https://restcountries.eu/data/ken.svg", + "currency": "Kenyan shilling" + }, + { + "name": "Kiribati", + "capital": "South Tarawa", + "languages": [ + "English" + ], + "population": 113400, + "flag": "https://restcountries.eu/data/kir.svg", + "currency": "Australian dollar" + }, + { + "name": "Kuwait", + "capital": "Kuwait City", + "languages": [ + "Arabic" + ], + "population": 4183658, + "flag": "https://restcountries.eu/data/kwt.svg", + "currency": "Kuwaiti dinar" + }, + { + "name": "Kyrgyzstan", + "capital": "Bishkek", + "languages": [ + "Kyrgyz", + "Russian" + ], + "population": 6047800, + "flag": "https://restcountries.eu/data/kgz.svg", + "currency": "Kyrgyzstani som" + }, + { + "name": "Lao People's Democratic Republic", + "capital": "Vientiane", + "languages": [ + "Lao" + ], + "population": 6492400, + "flag": "https://restcountries.eu/data/lao.svg", + "currency": "Lao kip" + }, + { + "name": "Latvia", + "capital": "Riga", + "languages": [ + "Latvian" + ], + "population": 1961600, + "flag": "https://restcountries.eu/data/lva.svg", + "currency": "Euro" + }, + { + "name": "Lebanon", + "capital": "Beirut", + "languages": [ + "Arabic", + "French" + ], + "population": 5988000, + "flag": "https://restcountries.eu/data/lbn.svg", + "currency": "Lebanese pound" + }, + { + "name": "Lesotho", + "capital": "Maseru", + "languages": [ + "English", + "Southern Sotho" + ], + "population": 1894194, + "flag": "https://restcountries.eu/data/lso.svg", + "currency": "Lesotho loti" + }, + { + "name": "Liberia", + "capital": "Monrovia", + "languages": [ + "English" + ], + "population": 4615000, + "flag": "https://restcountries.eu/data/lbr.svg", + "currency": "Liberian dollar" + }, + { + "name": "Libya", + "capital": "Tripoli", + "languages": [ + "Arabic" + ], + "population": 6385000, + "flag": "https://restcountries.eu/data/lby.svg", + "currency": "Libyan dinar" + }, + { + "name": "Liechtenstein", + "capital": "Vaduz", + "languages": [ + "German" + ], + "population": 37623, + "flag": "https://restcountries.eu/data/lie.svg", + "currency": "Swiss franc" + }, + { + "name": "Lithuania", + "capital": "Vilnius", + "languages": [ + "Lithuanian" + ], + "population": 2872294, + "flag": "https://restcountries.eu/data/ltu.svg", + "currency": "Euro" + }, + { + "name": "Luxembourg", + "capital": "Luxembourg", + "languages": [ + "French", + "German", + "Luxembourgish" + ], + "population": 576200, + "flag": "https://restcountries.eu/data/lux.svg", + "currency": "Euro" + }, + { + "name": "Macao", + "capital": "", + "languages": [ + "Chinese", + "Portuguese" + ], + "population": 649100, + "flag": "https://restcountries.eu/data/mac.svg", + "currency": "Macanese pataca" + }, + { + "name": "Macedonia (the former Yugoslav Republic of)", + "capital": "Skopje", + "languages": [ + "Macedonian" + ], + "population": 2058539, + "flag": "https://restcountries.eu/data/mkd.svg", + "currency": "Macedonian denar" + }, + { + "name": "Madagascar", + "capital": "Antananarivo", + "languages": [ + "French", + "Malagasy" + ], + "population": 22434363, + "flag": "https://restcountries.eu/data/mdg.svg", + "currency": "Malagasy ariary" + }, + { + "name": "Malawi", + "capital": "Lilongwe", + "languages": [ + "English", + "Chichewa" + ], + "population": 16832910, + "flag": "https://restcountries.eu/data/mwi.svg", + "currency": "Malawian kwacha" + }, + { + "name": "Malaysia", + "capital": "Kuala Lumpur", + "languages": [ + "Malaysian" + ], + "population": 31405416, + "flag": "https://restcountries.eu/data/mys.svg", + "currency": "Malaysian ringgit" + }, + { + "name": "Maldives", + "capital": "Malé", + "languages": [ + "Divehi" + ], + "population": 344023, + "flag": "https://restcountries.eu/data/mdv.svg", + "currency": "Maldivian rufiyaa" + }, + { + "name": "Mali", + "capital": "Bamako", + "languages": [ + "French" + ], + "population": 18135000, + "flag": "https://restcountries.eu/data/mli.svg", + "currency": "West African CFA franc" + }, + { + "name": "Malta", + "capital": "Valletta", + "languages": [ + "Maltese", + "English" + ], + "population": 425384, + "flag": "https://restcountries.eu/data/mlt.svg", + "currency": "Euro" + }, + { + "name": "Marshall Islands", + "capital": "Majuro", + "languages": [ + "English", + "Marshallese" + ], + "population": 54880, + "flag": "https://restcountries.eu/data/mhl.svg", + "currency": "United States dollar" + }, + { + "name": "Martinique", + "capital": "Fort-de-France", + "languages": [ + "French" + ], + "population": 378243, + "flag": "https://restcountries.eu/data/mtq.svg", + "currency": "Euro" + }, + { + "name": "Mauritania", + "capital": "Nouakchott", + "languages": [ + "Arabic" + ], + "population": 3718678, + "flag": "https://restcountries.eu/data/mrt.svg", + "currency": "Mauritanian ouguiya" + }, + { + "name": "Mauritius", + "capital": "Port Louis", + "languages": [ + "English" + ], + "population": 1262879, + "flag": "https://restcountries.eu/data/mus.svg", + "currency": "Mauritian rupee" + }, + { + "name": "Mayotte", + "capital": "Mamoudzou", + "languages": [ + "French" + ], + "population": 226915, + "flag": "https://restcountries.eu/data/myt.svg", + "currency": "Euro" + }, + { + "name": "Mexico", + "capital": "Mexico City", + "languages": [ + "Spanish" + ], + "population": 122273473, + "flag": "https://restcountries.eu/data/mex.svg", + "currency": "Mexican peso" + }, + { + "name": "Micronesia (Federated States of)", + "capital": "Palikir", + "languages": [ + "English" + ], + "population": 102800, + "flag": "https://restcountries.eu/data/fsm.svg", + "currency": "[D]" + }, + { + "name": "Moldova (Republic of)", + "capital": "Chișinău", + "languages": [ + "Romanian" + ], + "population": 3553100, + "flag": "https://restcountries.eu/data/mda.svg", + "currency": "Moldovan leu" + }, + { + "name": "Monaco", + "capital": "Monaco", + "languages": [ + "French" + ], + "population": 38400, + "flag": "https://restcountries.eu/data/mco.svg", + "currency": "Euro" + }, + { + "name": "Mongolia", + "capital": "Ulan Bator", + "languages": [ + "Mongolian" + ], + "population": 3093100, + "flag": "https://restcountries.eu/data/mng.svg", + "currency": "Mongolian tögrög" + }, + { + "name": "Montenegro", + "capital": "Podgorica", + "languages": [ + "Serbian", + "Bosnian", + "Albanian", + "Croatian" + ], + "population": 621810, + "flag": "https://restcountries.eu/data/mne.svg", + "currency": "Euro" + }, + { + "name": "Montserrat", + "capital": "Plymouth", + "languages": [ + "English" + ], + "population": 4922, + "flag": "https://restcountries.eu/data/msr.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Morocco", + "capital": "Rabat", + "languages": [ + "Arabic" + ], + "population": 33337529, + "flag": "https://restcountries.eu/data/mar.svg", + "currency": "Moroccan dirham" + }, + { + "name": "Mozambique", + "capital": "Maputo", + "languages": [ + "Portuguese" + ], + "population": 26423700, + "flag": "https://restcountries.eu/data/moz.svg", + "currency": "Mozambican metical" + }, + { + "name": "Myanmar", + "capital": "Naypyidaw", + "languages": [ + "Burmese" + ], + "population": 51419420, + "flag": "https://restcountries.eu/data/mmr.svg", + "currency": "Burmese kyat" + }, + { + "name": "Namibia", + "capital": "Windhoek", + "languages": [ + "English", + "Afrikaans" + ], + "population": 2324388, + "flag": "https://restcountries.eu/data/nam.svg", + "currency": "Namibian dollar" + }, + { + "name": "Nauru", + "capital": "Yaren", + "languages": [ + "English", + "Nauruan" + ], + "population": 10084, + "flag": "https://restcountries.eu/data/nru.svg", + "currency": "Australian dollar" + }, + { + "name": "Nepal", + "capital": "Kathmandu", + "languages": [ + "Nepali" + ], + "population": 28431500, + "flag": "https://restcountries.eu/data/npl.svg", + "currency": "Nepalese rupee" + }, + { + "name": "Netherlands", + "capital": "Amsterdam", + "languages": [ + "Dutch" + ], + "population": 17019800, + "flag": "https://restcountries.eu/data/nld.svg", + "currency": "Euro" + }, + { + "name": "New Caledonia", + "capital": "Nouméa", + "languages": [ + "French" + ], + "population": 268767, + "flag": "https://restcountries.eu/data/ncl.svg", + "currency": "CFP franc" + }, + { + "name": "New Zealand", + "capital": "Wellington", + "languages": [ + "English", + "Māori" + ], + "population": 4697854, + "flag": "https://restcountries.eu/data/nzl.svg", + "currency": "New Zealand dollar" + }, + { + "name": "Nicaragua", + "capital": "Managua", + "languages": [ + "Spanish" + ], + "population": 6262703, + "flag": "https://restcountries.eu/data/nic.svg", + "currency": "Nicaraguan córdoba" + }, + { + "name": "Niger", + "capital": "Niamey", + "languages": [ + "French" + ], + "population": 20715000, + "flag": "https://restcountries.eu/data/ner.svg", + "currency": "West African CFA franc" + }, + { + "name": "Nigeria", + "capital": "Abuja", + "languages": [ + "English" + ], + "population": 186988000, + "flag": "https://restcountries.eu/data/nga.svg", + "currency": "Nigerian naira" + }, + { + "name": "Niue", + "capital": "Alofi", + "languages": [ + "English" + ], + "population": 1470, + "flag": "https://restcountries.eu/data/niu.svg", + "currency": "New Zealand dollar" + }, + { + "name": "Norfolk Island", + "capital": "Kingston", + "languages": [ + "English" + ], + "population": 2302, + "flag": "https://restcountries.eu/data/nfk.svg", + "currency": "Australian dollar" + }, + { + "name": "Korea (Democratic People's Republic of)", + "capital": "Pyongyang", + "languages": [ + "Korean" + ], + "population": 25281000, + "flag": "https://restcountries.eu/data/prk.svg", + "currency": "North Korean won" + }, + { + "name": "Northern Mariana Islands", + "capital": "Saipan", + "languages": [ + "English", + "Chamorro" + ], + "population": 56940, + "flag": "https://restcountries.eu/data/mnp.svg", + "currency": "United States dollar" + }, + { + "name": "Norway", + "capital": "Oslo", + "languages": [ + "Norwegian", + "Norwegian Bokmål", + "Norwegian Nynorsk" + ], + "population": 5223256, + "flag": "https://restcountries.eu/data/nor.svg", + "currency": "Norwegian krone" + }, + { + "name": "Oman", + "capital": "Muscat", + "languages": [ + "Arabic" + ], + "population": 4420133, + "flag": "https://restcountries.eu/data/omn.svg", + "currency": "Omani rial" + }, + { + "name": "Pakistan", + "capital": "Islamabad", + "languages": [ + "English", + "Urdu" + ], + "population": 194125062, + "flag": "https://restcountries.eu/data/pak.svg", + "currency": "Pakistani rupee" + }, + { + "name": "Palau", + "capital": "Ngerulmud", + "languages": [ + "English" + ], + "population": 17950, + "flag": "https://restcountries.eu/data/plw.svg", + "currency": "[E]" + }, + { + "name": "Palestine, State of", + "capital": "Ramallah", + "languages": [ + "Arabic" + ], + "population": 4682467, + "flag": "https://restcountries.eu/data/pse.svg", + "currency": "Israeli new sheqel" + }, + { + "name": "Panama", + "capital": "Panama City", + "languages": [ + "Spanish" + ], + "population": 3814672, + "flag": "https://restcountries.eu/data/pan.svg", + "currency": "Panamanian balboa" + }, + { + "name": "Papua New Guinea", + "capital": "Port Moresby", + "languages": [ + "English" + ], + "population": 8083700, + "flag": "https://restcountries.eu/data/png.svg", + "currency": "Papua New Guinean kina" + }, + { + "name": "Paraguay", + "capital": "Asunción", + "languages": [ + "Spanish", + "Guaraní" + ], + "population": 6854536, + "flag": "https://restcountries.eu/data/pry.svg", + "currency": "Paraguayan guaraní" + }, + { + "name": "Peru", + "capital": "Lima", + "languages": [ + "Spanish" + ], + "population": 31488700, + "flag": "https://restcountries.eu/data/per.svg", + "currency": "Peruvian sol" + }, + { + "name": "Philippines", + "capital": "Manila", + "languages": [ + "English" + ], + "population": 103279800, + "flag": "https://restcountries.eu/data/phl.svg", + "currency": "Philippine peso" + }, + { + "name": "Pitcairn", + "capital": "Adamstown", + "languages": [ + "English" + ], + "population": 56, + "flag": "https://restcountries.eu/data/pcn.svg", + "currency": "New Zealand dollar" + }, + { + "name": "Poland", + "capital": "Warsaw", + "languages": [ + "Polish" + ], + "population": 38437239, + "flag": "https://restcountries.eu/data/pol.svg", + "currency": "Polish złoty" + }, + { + "name": "Portugal", + "capital": "Lisbon", + "languages": [ + "Portuguese" + ], + "population": 10374822, + "flag": "https://restcountries.eu/data/prt.svg", + "currency": "Euro" + }, + { + "name": "Puerto Rico", + "capital": "San Juan", + "languages": [ + "Spanish", + "English" + ], + "population": 3474182, + "flag": "https://restcountries.eu/data/pri.svg", + "currency": "United States dollar" + }, + { + "name": "Qatar", + "capital": "Doha", + "languages": [ + "Arabic" + ], + "population": 2587564, + "flag": "https://restcountries.eu/data/qat.svg", + "currency": "Qatari riyal" + }, + { + "name": "Republic of Kosovo", + "capital": "Pristina", + "languages": [ + "Albanian", + "Serbian" + ], + "population": 1733842, + "flag": "https://restcountries.eu/data/kos.svg", + "currency": "Euro" + }, + { + "name": "Réunion", + "capital": "Saint-Denis", + "languages": [ + "French" + ], + "population": 840974, + "flag": "https://restcountries.eu/data/reu.svg", + "currency": "Euro" + }, + { + "name": "Romania", + "capital": "Bucharest", + "languages": [ + "Romanian" + ], + "population": 19861408, + "flag": "https://restcountries.eu/data/rou.svg", + "currency": "Romanian leu" + }, + { + "name": "Russian Federation", + "capital": "Moscow", + "languages": [ + "Russian" + ], + "population": 146599183, + "flag": "https://restcountries.eu/data/rus.svg", + "currency": "Russian ruble" + }, + { + "name": "Rwanda", + "capital": "Kigali", + "languages": [ + "Kinyarwanda", + "English", + "French" + ], + "population": 11553188, + "flag": "https://restcountries.eu/data/rwa.svg", + "currency": "Rwandan franc" + }, + { + "name": "Saint Barthélemy", + "capital": "Gustavia", + "languages": [ + "French" + ], + "population": 9417, + "flag": "https://restcountries.eu/data/blm.svg", + "currency": "Euro" + }, + { + "name": "Saint Helena, Ascension and Tristan da Cunha", + "capital": "Jamestown", + "languages": [ + "English" + ], + "population": 4255, + "flag": "https://restcountries.eu/data/shn.svg", + "currency": "Saint Helena pound" + }, + { + "name": "Saint Kitts and Nevis", + "capital": "Basseterre", + "languages": [ + "English" + ], + "population": 46204, + "flag": "https://restcountries.eu/data/kna.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Saint Lucia", + "capital": "Castries", + "languages": [ + "English" + ], + "population": 186000, + "flag": "https://restcountries.eu/data/lca.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Saint Martin (French part)", + "capital": "Marigot", + "languages": [ + "English", + "French", + "Dutch" + ], + "population": 36979, + "flag": "https://restcountries.eu/data/maf.svg", + "currency": "Euro" + }, + { + "name": "Saint Pierre and Miquelon", + "capital": "Saint-Pierre", + "languages": [ + "French" + ], + "population": 6069, + "flag": "https://restcountries.eu/data/spm.svg", + "currency": "Euro" + }, + { + "name": "Saint Vincent and the Grenadines", + "capital": "Kingstown", + "languages": [ + "English" + ], + "population": 109991, + "flag": "https://restcountries.eu/data/vct.svg", + "currency": "East Caribbean dollar" + }, + { + "name": "Samoa", + "capital": "Apia", + "languages": [ + "Samoan", + "English" + ], + "population": 194899, + "flag": "https://restcountries.eu/data/wsm.svg", + "currency": "Samoan tālā" + }, + { + "name": "San Marino", + "capital": "City of San Marino", + "languages": [ + "Italian" + ], + "population": 33005, + "flag": "https://restcountries.eu/data/smr.svg", + "currency": "Euro" + }, + { + "name": "Sao Tome and Principe", + "capital": "São Tomé", + "languages": [ + "Portuguese" + ], + "population": 187356, + "flag": "https://restcountries.eu/data/stp.svg", + "currency": "São Tomé and Príncipe dobra" + }, + { + "name": "Saudi Arabia", + "capital": "Riyadh", + "languages": [ + "Arabic" + ], + "population": 32248200, + "flag": "https://restcountries.eu/data/sau.svg", + "currency": "Saudi riyal" + }, + { + "name": "Senegal", + "capital": "Dakar", + "languages": [ + "French" + ], + "population": 14799859, + "flag": "https://restcountries.eu/data/sen.svg", + "currency": "West African CFA franc" + }, + { + "name": "Serbia", + "capital": "Belgrade", + "languages": [ + "Serbian" + ], + "population": 7076372, + "flag": "https://restcountries.eu/data/srb.svg", + "currency": "Serbian dinar" + }, + { + "name": "Seychelles", + "capital": "Victoria", + "languages": [ + "French", + "English" + ], + "population": 91400, + "flag": "https://restcountries.eu/data/syc.svg", + "currency": "Seychellois rupee" + }, + { + "name": "Sierra Leone", + "capital": "Freetown", + "languages": [ + "English" + ], + "population": 7075641, + "flag": "https://restcountries.eu/data/sle.svg", + "currency": "Sierra Leonean leone" + }, + { + "name": "Singapore", + "capital": "Singapore", + "languages": [ + "English", + "Malay", + "Tamil", + "Chinese" + ], + "population": 5535000, + "flag": "https://restcountries.eu/data/sgp.svg", + "currency": "Brunei dollar" + }, + { + "name": "Sint Maarten (Dutch part)", + "capital": "Philipsburg", + "languages": [ + "Dutch", + "English" + ], + "population": 38247, + "flag": "https://restcountries.eu/data/sxm.svg", + "currency": "Netherlands Antillean guilder" + }, + { + "name": "Slovakia", + "capital": "Bratislava", + "languages": [ + "Slovak" + ], + "population": 5426252, + "flag": "https://restcountries.eu/data/svk.svg", + "currency": "Euro" + }, + { + "name": "Slovenia", + "capital": "Ljubljana", + "languages": [ + "Slovene" + ], + "population": 2064188, + "flag": "https://restcountries.eu/data/svn.svg", + "currency": "Euro" + }, + { + "name": "Solomon Islands", + "capital": "Honiara", + "languages": [ + "English" + ], + "population": 642000, + "flag": "https://restcountries.eu/data/slb.svg", + "currency": "Solomon Islands dollar" + }, + { + "name": "Somalia", + "capital": "Mogadishu", + "languages": [ + "Somali", + "Arabic" + ], + "population": 11079000, + "flag": "https://restcountries.eu/data/som.svg", + "currency": "Somali shilling" + }, + { + "name": "South Africa", + "capital": "Pretoria", + "languages": [ + "Afrikaans", + "English", + "Southern Ndebele", + "Southern Sotho", + "Swati", + "Tswana", + "Tsonga", + "Venda", + "Xhosa", + "Zulu" + ], + "population": 55653654, + "flag": "https://restcountries.eu/data/zaf.svg", + "currency": "South African rand" + }, + { + "name": "South Georgia and the South Sandwich Islands", + "capital": "King Edward Point", + "languages": [ + "English" + ], + "population": 30, + "flag": "https://restcountries.eu/data/sgs.svg", + "currency": "British pound" + }, + { + "name": "Korea (Republic of)", + "capital": "Seoul", + "languages": [ + "Korean" + ], + "population": 50801405, + "flag": "https://restcountries.eu/data/kor.svg", + "currency": "South Korean won" + }, + { + "name": "South Sudan", + "capital": "Juba", + "languages": [ + "English" + ], + "population": 12131000, + "flag": "https://restcountries.eu/data/ssd.svg", + "currency": "South Sudanese pound" + }, + { + "name": "Spain", + "capital": "Madrid", + "languages": [ + "Spanish" + ], + "population": 46438422, + "flag": "https://restcountries.eu/data/esp.svg", + "currency": "Euro" + }, + { + "name": "Sri Lanka", + "capital": "Colombo", + "languages": [ + "Sinhalese", + "Tamil" + ], + "population": 20966000, + "flag": "https://restcountries.eu/data/lka.svg", + "currency": "Sri Lankan rupee" + }, + { + "name": "Sudan", + "capital": "Khartoum", + "languages": [ + "Arabic", + "English" + ], + "population": 39598700, + "flag": "https://restcountries.eu/data/sdn.svg", + "currency": "Sudanese pound" + }, + { + "name": "Suriname", + "capital": "Paramaribo", + "languages": [ + "Dutch" + ], + "population": 541638, + "flag": "https://restcountries.eu/data/sur.svg", + "currency": "Surinamese dollar" + }, + { + "name": "Svalbard and Jan Mayen", + "capital": "Longyearbyen", + "languages": [ + "Norwegian" + ], + "population": 2562, + "flag": "https://restcountries.eu/data/sjm.svg", + "currency": "Norwegian krone" + }, + { + "name": "Swaziland", + "capital": "Lobamba", + "languages": [ + "English", + "Swati" + ], + "population": 1132657, + "flag": "https://restcountries.eu/data/swz.svg", + "currency": "Swazi lilangeni" + }, + { + "name": "Sweden", + "capital": "Stockholm", + "languages": [ + "Swedish" + ], + "population": 9894888, + "flag": "https://restcountries.eu/data/swe.svg", + "currency": "Swedish krona" + }, + { + "name": "Switzerland", + "capital": "Bern", + "languages": [ + "German", + "French", + "Italian" + ], + "population": 8341600, + "flag": "https://restcountries.eu/data/che.svg", + "currency": "Swiss franc" + }, + { + "name": "Syrian Arab Republic", + "capital": "Damascus", + "languages": [ + "Arabic" + ], + "population": 18564000, + "flag": "https://restcountries.eu/data/syr.svg", + "currency": "Syrian pound" + }, + { + "name": "Taiwan", + "capital": "Taipei", + "languages": [ + "Chinese" + ], + "population": 23503349, + "flag": "https://restcountries.eu/data/twn.svg", + "currency": "New Taiwan dollar" + }, + { + "name": "Tajikistan", + "capital": "Dushanbe", + "languages": [ + "Tajik", + "Russian" + ], + "population": 8593600, + "flag": "https://restcountries.eu/data/tjk.svg", + "currency": "Tajikistani somoni" + }, + { + "name": "Tanzania, United Republic of", + "capital": "Dodoma", + "languages": [ + "Swahili", + "English" + ], + "population": 55155000, + "flag": "https://restcountries.eu/data/tza.svg", + "currency": "Tanzanian shilling" + }, + { + "name": "Thailand", + "capital": "Bangkok", + "languages": [ + "Thai" + ], + "population": 65327652, + "flag": "https://restcountries.eu/data/tha.svg", + "currency": "Thai baht" + }, + { + "name": "Timor-Leste", + "capital": "Dili", + "languages": [ + "Portuguese" + ], + "population": 1167242, + "flag": "https://restcountries.eu/data/tls.svg", + "currency": "United States dollar" + }, + { + "name": "Togo", + "capital": "Lomé", + "languages": [ + "French" + ], + "population": 7143000, + "flag": "https://restcountries.eu/data/tgo.svg", + "currency": "West African CFA franc" + }, + { + "name": "Tokelau", + "capital": "Fakaofo", + "languages": [ + "English" + ], + "population": 1411, + "flag": "https://restcountries.eu/data/tkl.svg", + "currency": "New Zealand dollar" + }, + { + "name": "Tonga", + "capital": "Nuku'alofa", + "languages": [ + "English", + "Tonga (Tonga Islands)" + ], + "population": 103252, + "flag": "https://restcountries.eu/data/ton.svg", + "currency": "Tongan paʻanga" + }, + { + "name": "Trinidad and Tobago", + "capital": "Port of Spain", + "languages": [ + "English" + ], + "population": 1349667, + "flag": "https://restcountries.eu/data/tto.svg", + "currency": "Trinidad and Tobago dollar" + }, + { + "name": "Tunisia", + "capital": "Tunis", + "languages": [ + "Arabic" + ], + "population": 11154400, + "flag": "https://restcountries.eu/data/tun.svg", + "currency": "Tunisian dinar" + }, + { + "name": "Turkey", + "capital": "Ankara", + "languages": [ + "Turkish" + ], + "population": 78741053, + "flag": "https://restcountries.eu/data/tur.svg", + "currency": "Turkish lira" + }, + { + "name": "Turkmenistan", + "capital": "Ashgabat", + "languages": [ + "Turkmen", + "Russian" + ], + "population": 4751120, + "flag": "https://restcountries.eu/data/tkm.svg", + "currency": "Turkmenistan manat" + }, + { + "name": "Turks and Caicos Islands", + "capital": "Cockburn Town", + "languages": [ + "English" + ], + "population": 31458, + "flag": "https://restcountries.eu/data/tca.svg", + "currency": "United States dollar" + }, + { + "name": "Tuvalu", + "capital": "Funafuti", + "languages": [ + "English" + ], + "population": 10640, + "flag": "https://restcountries.eu/data/tuv.svg", + "currency": "Australian dollar" + }, + { + "name": "Uganda", + "capital": "Kampala", + "languages": [ + "English", + "Swahili" + ], + "population": 33860700, + "flag": "https://restcountries.eu/data/uga.svg", + "currency": "Ugandan shilling" + }, + { + "name": "Ukraine", + "capital": "Kiev", + "languages": [ + "Ukrainian" + ], + "population": 42692393, + "flag": "https://restcountries.eu/data/ukr.svg", + "currency": "Ukrainian hryvnia" + }, + { + "name": "United Arab Emirates", + "capital": "Abu Dhabi", + "languages": [ + "Arabic" + ], + "population": 9856000, + "flag": "https://restcountries.eu/data/are.svg", + "currency": "United Arab Emirates dirham" + }, + { + "name": "United Kingdom of Great Britain and Northern Ireland", + "capital": "London", + "languages": [ + "English" + ], + "population": 65110000, + "flag": "https://restcountries.eu/data/gbr.svg", + "currency": "British pound" + }, + { + "name": "United States of America", + "capital": "Washington, D.C.", + "languages": [ + "English" + ], + "population": 323947000, + "flag": "https://restcountries.eu/data/usa.svg", + "currency": "United States dollar" + }, + { + "name": "Uruguay", + "capital": "Montevideo", + "languages": [ + "Spanish" + ], + "population": 3480222, + "flag": "https://restcountries.eu/data/ury.svg", + "currency": "Uruguayan peso" + }, + { + "name": "Uzbekistan", + "capital": "Tashkent", + "languages": [ + "Uzbek", + "Russian" + ], + "population": 31576400, + "flag": "https://restcountries.eu/data/uzb.svg", + "currency": "Uzbekistani so'm" + }, + { + "name": "Vanuatu", + "capital": "Port Vila", + "languages": [ + "Bislama", + "English", + "French" + ], + "population": 277500, + "flag": "https://restcountries.eu/data/vut.svg", + "currency": "Vanuatu vatu" + }, + { + "name": "Venezuela (Bolivarian Republic of)", + "capital": "Caracas", + "languages": [ + "Spanish" + ], + "population": 31028700, + "flag": "https://restcountries.eu/data/ven.svg", + "currency": "Venezuelan bolívar" + }, + { + "name": "Viet Nam", + "capital": "Hanoi", + "languages": [ + "Vietnamese" + ], + "population": 92700000, + "flag": "https://restcountries.eu/data/vnm.svg", + "currency": "Vietnamese đồng" + }, + { + "name": "Wallis and Futuna", + "capital": "Mata-Utu", + "languages": [ + "French" + ], + "population": 11750, + "flag": "https://restcountries.eu/data/wlf.svg", + "currency": "CFP franc" + }, + { + "name": "Western Sahara", + "capital": "El Aaiún", + "languages": [ + "Spanish" + ], + "population": 510713, + "flag": "https://restcountries.eu/data/esh.svg", + "currency": "Moroccan dirham" + }, + { + "name": "Yemen", + "capital": "Sana'a", + "languages": [ + "Arabic" + ], + "population": 27478000, + "flag": "https://restcountries.eu/data/yem.svg", + "currency": "Yemeni rial" + }, + { + "name": "Zambia", + "capital": "Lusaka", + "languages": [ + "English" + ], + "population": 15933883, + "flag": "https://restcountries.eu/data/zmb.svg", + "currency": "Zambian kwacha" + }, + { + "name": "Zimbabwe", + "capital": "Harare", + "languages": [ + "English", + "Shona", + "Northern Ndebele" + ], + "population": 14240168, + "flag": "https://restcountries.eu/data/zwe.svg", + "currency": "Botswana pula" + } +] \ No newline at end of file diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/donald_speech.txt b/30-days-of-python/19_Manipulación_de_archivos/data/donald_speech.txt new file mode 100644 index 0000000..356fde5 --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/donald_speech.txt @@ -0,0 +1,48 @@ +Chief Justice Roberts, President Carter, President Clinton,President Bush, fellow Americans and people of the world – thank you. + We the citizens of America have now joined a great national effort to rebuild our county and restore its promise for all our people. +Together we will determine the course of America for many, many years to come. +Together we will face challenges. We will confront hardships. But we will get the job done. +Every four years we gather on these steps to carry out the orderly and peaceful transfer of power. +And we are grateful to President Obama and First Lady Michelle Obama for their gracious aid throughout this transition. They have been magnificent, thank you. +Today’s ceremony, however, has very special meaning because today we are not merely transferring power from one administration to another – but transferring it from Washington DC and giving it back to you the people. +For too long a small group in our nation’s capital has reaped the rewards of government while the people have borne the cost. +Washington flourished but the people did not share in its wealth. Politicians prospered but the jobs left and the factories closed.The establishment protected itself but not the citizens of our country. +Their victories have not been your victories. Their triumphs have not been your triumphs. While they have celebrated there has been little to celebrate for struggling families all across our land. +That all changes starting right here and right now because this moment is your moment. It belongs to you. It belongs to everyone gathered here today and everyone watching all across America today. +This is your day.This is your celebration.And this – the United States of America – is your country.What truly matters is not what party controls our government but that this government is controlled by the people. +Today, January 20 2017, will be remembered as the day the people became the rulers of this nation again.The forgotten men and women of our country will be forgotten no longer. Everyone is listening to you now. +You came by the tens of millions to become part of a historic movement – the likes of which the world has never seen before. +At the centre of this movement is a crucial conviction – that a nation exists to serve its citizens.Americans want great schools for their children, safe neighbourhoods for their families and good jobs for themselves. +These are just and reasonable demands.Mothers and children trapped in poverty in our inner cities, rusted out factories scattered like tombstones across the landscape of our nation. +An education system flushed with cash, but which leaves our young and beautiful students deprived of all knowledge. And the crime and the gangs and the drugs which deprive people of so much unrealised potential. +We are one nation, and their pain is our pain, their dreams are our dreams, we share one nation, one home and one glorious destiny. +Today I take an oath of allegiance to all Americans. For many decades, we’ve enriched foreign industry at the expense of American industry, subsidised the armies of other countries, while allowing the sad depletion of our own military. +We've defended other nations’ borders while refusing to defend our own.And spent trillions and trillions of dollars overseas while America’s infrastructure has fallen into disrepair and decay. +We have made other countries rich while the wealth, strength and confidence of our country has dissipated over the horizon. +One by one, shutters have closed on our factories without even a thought about the millions and millions of those who have been left behind. +But that is the past and now we are looking only to the future. +We assembled here today are issuing a new decree to be heard in every city, in every foreign capital, in every hall of power – from this day on a new vision will govern our land – from this day onwards it is only going to be America first – America first! +Every decision on trade, on taxes, on immigration, on foreign affairs will be made to benefit American workers and American families. +Protection will lead to great prosperity and strength. I will fight for you with every bone in my body and I will never ever let you down. +America will start winning again. America will start winning like never before. +We will bring back our jobs, we will bring back our borders, we will bring back our wealth, we will bring back our dreams. +We will bring new roads and high roads and bridges and tunnels and railways all across our wonderful nation. +We will get our people off welfare and back to work – rebuilding our country with American hands and American labour. +We will follow two simple rules – buy American and hire American. +We see good will with the nations of the world but we do so with the understanding that it is the right of all nations to put their nations first. +We will shine for everyone to follow.We will reinforce old alliances and form new ones, and untie the world against radical Islamic terrorism which we will eradicate from the face of the earth. +At the bed rock of our politics will be an allegiance to the United States.And we will discover new allegiance to each other. There is no room for prejudice. +The bible tells us how good and pleasant it is when god’s people live together in unity.When America is united, America is totally unstoppable +There is no fear, we are protected and will always be protected by the great men and women of our military and most importantly we will be protected by god. +Finally, we must think big and dream even bigger. As Americans, we know we live as a nation only when it is striving. +We will no longer accept politicians who are always complaining but never doing anything about it.The time for empty talk is over, now arrives the hour of action. +Do not allow anyone to tell you it cannot be done. No challenge can match the heart and fight and spirit of America. We will not fail, our country will thrive and prosper again. +We stand at the birth of a new millennium, ready to unlock the mysteries of space, to free the earth from the miseries of disease, to harvest the energies, industries and technologies of tomorrow. +A new national pride will stir ourselves, lift our sights and heal our divisions. It’s time to remember that old wisdom our soldiers will never forget, that whether we are black or brown or white, we all bleed the same red blood of patriots. +We all enjoy the same glorious freedoms and we all salute the same great American flag and whether a child is born in the urban sprawl of Detroit or the windswept plains of Nebraska, they look at the same night sky, and dream the same dreams, and they are infused with the breath by the same almighty creator. +So to all Americans in every city near and far, small and large, from mountain to mountain, from ocean to ocean – hear these words – you will never be ignored again. +Your voice, your hopes and dreams will define your American destiny.Your courage, goodness and love will forever guide us along the way. +Together we will make America strong again, we will make America wealthy again, we will make America safe again and yes – together we will make America great again. +Thank you. +God bless you. +And god bless America. diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/email_exchanges.txt b/30-days-of-python/19_Manipulación_de_archivos/data/email_exchanges.txt new file mode 100644 index 0000000..eb3f109 --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/email_exchanges.txt @@ -0,0 +1,1909 @@ +From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 05 Jan 2008 09:14:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 05 Jan 2008 09:14:16 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id m05EEFR1013674; + Sat, 5 Jan 2008 09:14:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477F90B0.2DB2F.12494 ; + 5 Jan 2008 09:14:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F919BC2F2; + Sat, 5 Jan 2008 14:10:05 +0000 (GMT) +Message-ID: <200801051412.m05ECIaH010327@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899 + for ; + Sat, 5 Jan 2008 14:09:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A215243002 + for ; Sat, 5 Jan 2008 14:13:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m05ECJVp010329 + for ; Sat, 5 Jan 2008 09:12:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m05ECIaH010327 + for source@collab.sakaiproject.org; Sat, 5 Jan 2008 09:12:18 -0500 +Date: Sat, 5 Jan 2008 09:12:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39772 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Jan 5 09:14:16 2008 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39772 + +Author: stephen.marquard@uct.ac.za +Date: 2008-01-05 09:12:07 -0500 (Sat, 05 Jan 2008) +New Revision: 39772 + +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +Log: +SAK-12501 merge to 2-5-x: r39622, r39624:5, r39632:3 (resolve conflict from differing linebreaks for r39622) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Jan 4 18:10:48 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 18:10:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 18:10:48 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id m04NAbGa029441; + Fri, 4 Jan 2008 18:10:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477EBCE3.161BB.4320 ; + 4 Jan 2008 18:10:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07969BB706; + Fri, 4 Jan 2008 23:10:33 +0000 (GMT) +Message-ID: <200801042308.m04N8v6O008125@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710 + for ; + Fri, 4 Jan 2008 23:10:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4BA2F42F57 + for ; Fri, 4 Jan 2008 23:10:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04N8vHG008127 + for ; Fri, 4 Jan 2008 18:08:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04N8v6O008125 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 18:08:57 -0500 +Date: Fri, 4 Jan 2008 18:08:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39771 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 18:10:48 2008 +X-DSPAM-Confidence: 0.6178 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39771 + +Author: louis@media.berkeley.edu +Date: 2008-01-04 18:08:50 -0500 (Fri, 04 Jan 2008) +New Revision: 39771 + +Modified: +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +BSP-1415 New (Guest) user Notification + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 16:10:39 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 16:10:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 16:10:39 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id m04LAcZw014275; + Fri, 4 Jan 2008 16:10:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477EA0C6.A0214.25480 ; + 4 Jan 2008 16:10:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C48CDBB490; + Fri, 4 Jan 2008 21:10:31 +0000 (GMT) +Message-ID: <200801042109.m04L92hb007923@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906 + for ; + Fri, 4 Jan 2008 21:10:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7D13042F71 + for ; Fri, 4 Jan 2008 21:10:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04L927E007925 + for ; Fri, 4 Jan 2008 16:09:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04L92hb007923 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 16:09:02 -0500 +Date: Fri, 4 Jan 2008 16:09:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39770 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 16:10:39 2008 +X-DSPAM-Confidence: 0.6961 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39770 + +Author: zqian@umich.edu +Date: 2008-01-04 16:09:01 -0500 (Fri, 04 Jan 2008) +New Revision: 39770 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +merge fix to SAK-9996 into 2-5-x branch: svn merge -r 39687:39688 https://source.sakaiproject.org/svn/site-manage/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Jan 4 15:46:24 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 15:46:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 15:46:24 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by panther.mail.umich.edu () with ESMTP id m04KkNbx032077; + Fri, 4 Jan 2008 15:46:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 477E9B13.2F3BC.22965 ; + 4 Jan 2008 15:46:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4AE03BB552; + Fri, 4 Jan 2008 20:46:13 +0000 (GMT) +Message-ID: <200801042044.m04Kiem3007881@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38 + for ; + Fri, 4 Jan 2008 20:45:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A55D242F57 + for ; Fri, 4 Jan 2008 20:45:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04KieqE007883 + for ; Fri, 4 Jan 2008 15:44:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Kiem3007881 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:44:40 -0500 +Date: Fri, 4 Jan 2008 15:44:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39769 - in gradebook/trunk/app/ui/src: java/org/sakaiproject/tool/gradebook/ui/helpers/beans java/org/sakaiproject/tool/gradebook/ui/helpers/producers webapp/WEB-INF webapp/WEB-INF/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 15:46:24 2008 +X-DSPAM-Confidence: 0.7565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39769 + +Author: rjlowe@iupui.edu +Date: 2008-01-04 15:44:39 -0500 (Fri, 04 Jan 2008) +New Revision: 39769 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties +gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12180 - Fixed errors with grading helper + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 15:03:18 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 15:03:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 15:03:18 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id m04K3HGF006563; + Fri, 4 Jan 2008 15:03:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 477E9100.8F7F4.1590 ; + 4 Jan 2008 15:03:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 57770BB477; + Fri, 4 Jan 2008 20:03:09 +0000 (GMT) +Message-ID: <200801042001.m04K1cO0007738@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622 + for ; + Fri, 4 Jan 2008 20:02:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB4D042F4D + for ; Fri, 4 Jan 2008 20:02:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04K1cXv007740 + for ; Fri, 4 Jan 2008 15:01:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04K1cO0007738 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:01:38 -0500 +Date: Fri, 4 Jan 2008 15:01:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39766 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 15:03:18 2008 +X-DSPAM-Confidence: 0.7626 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39766 + +Author: zqian@umich.edu +Date: 2008-01-04 15:01:37 -0500 (Fri, 04 Jan 2008) +New Revision: 39766 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +merge fix to SAK-10788 into site-manage 2.4.x branch: + +Sakai Source Repository #38024 Wed Nov 07 14:54:46 MST 2007 zqian@umich.edu Fix to SAK-10788: If a provided id in a couse site is fake or doesn't provide any user information, Site Info appears to be like project site with empty participant list + +Watch for enrollments object being null and concatenate provider ids when there are more than one. +Files Changed +MODIFY /site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Jan 4 14:50:18 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 14:50:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 14:50:18 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id m04JoHJi019755; + Fri, 4 Jan 2008 14:50:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477E8DF2.67B91.5278 ; + 4 Jan 2008 14:50:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2D1B9BB492; + Fri, 4 Jan 2008 19:47:10 +0000 (GMT) +Message-ID: <200801041948.m04JmdwO007705@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960 + for ; + Fri, 4 Jan 2008 19:46:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B3E6742F4A + for ; Fri, 4 Jan 2008 19:49:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04JmeV9007707 + for ; Fri, 4 Jan 2008 14:48:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04JmdwO007705 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 14:48:39 -0500 +Date: Fri, 4 Jan 2008 14:48:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39765 - in gradebook/trunk/app: business/src/java/org/sakaiproject/tool/gradebook/business business/src/java/org/sakaiproject/tool/gradebook/business/impl ui ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers ui/src/webapp/WEB-INF ui/src/webapp/WEB-INF/bundle ui/src/webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 14:50:18 2008 +X-DSPAM-Confidence: 0.7556 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39765 + +Author: rjlowe@iupui.edu +Date: 2008-01-04 14:48:37 -0500 (Fri, 04 Jan 2008) +New Revision: 39765 + +Added: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordCreator.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryGradeEntityProvider.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/GradeGradebookItemViewParams.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/content/templates/grade-gradebook-item.html +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/ui/pom.xml +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryEntityProvider.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties +gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12180 - New helper tool to grade an assignment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Jan 4 11:37:30 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:37:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:37:30 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id m04GbT9x022078; + Fri, 4 Jan 2008 11:37:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 477E60B2.82756.9904 ; + 4 Jan 2008 11:37:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8D13DBB001; + Fri, 4 Jan 2008 16:37:07 +0000 (GMT) +Message-ID: <200801041635.m04GZQGZ007313@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120 + for ; + Fri, 4 Jan 2008 16:36:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D430B42E42 + for ; Fri, 4 Jan 2008 16:36:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GZQ7W007315 + for ; Fri, 4 Jan 2008 11:35:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GZQGZ007313 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:35:26 -0500 +Date: Fri, 4 Jan 2008 11:35:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39764 - in msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:37:30 2008 +X-DSPAM-Confidence: 0.7002 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39764 + +Author: cwen@iupui.edu +Date: 2008-01-04 11:35:25 -0500 (Fri, 04 Jan 2008) +New Revision: 39764 + +Modified: +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java +Log: +unmerge Xingtang's checkin for SAK-12488. + +svn merge -r39558:39557 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java + +svn log -r 39558 +------------------------------------------------------------------------ +r39558 | hu2@iupui.edu | 2007-12-20 15:25:38 -0500 (Thu, 20 Dec 2007) | 3 lines + +SAK-12488 +when send a message to yourself. click reply to all, cc row should be null. +http://jira.sakaiproject.org/jira/browse/SAK-12488 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Jan 4 11:35:08 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:35:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:35:08 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id m04GZ6lt020480; + Fri, 4 Jan 2008 11:35:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 477E6033.6469D.21870 ; + 4 Jan 2008 11:35:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E40FABAE5B; + Fri, 4 Jan 2008 16:34:38 +0000 (GMT) +Message-ID: <200801041633.m04GX6eG007292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697 + for ; + Fri, 4 Jan 2008 16:34:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CD0C42E42 + for ; Fri, 4 Jan 2008 16:34:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GX6Y3007294 + for ; Fri, 4 Jan 2008 11:33:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GX6eG007292 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:33:06 -0500 +Date: Fri, 4 Jan 2008 11:33:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39763 - in msgcntr/trunk: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:35:08 2008 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39763 + +Author: cwen@iupui.edu +Date: 2008-01-04 11:33:05 -0500 (Fri, 04 Jan 2008) +New Revision: 39763 + +Modified: +msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +Log: +unmerge Xingtang's check in for SAK-12484. + +svn merge -r39571:39570 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java + +svn log -r 39571 +------------------------------------------------------------------------ +r39571 | hu2@iupui.edu | 2007-12-20 21:26:28 -0500 (Thu, 20 Dec 2007) | 3 lines + +SAK-12484 +reply all cc list should not include the current user name. +http://jira.sakaiproject.org/jira/browse/SAK-12484 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Jan 4 11:12:37 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:12:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:12:37 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id m04GCaHB030887; + Fri, 4 Jan 2008 11:12:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477E5AEB.E670B.28397 ; + 4 Jan 2008 11:12:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 99715BAE7D; + Fri, 4 Jan 2008 16:12:27 +0000 (GMT) +Message-ID: <200801041611.m04GB1Lb007221@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 272 + for ; + Fri, 4 Jan 2008 16:12:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A6ED42DFC + for ; Fri, 4 Jan 2008 16:12:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GB1Wt007223 + for ; Fri, 4 Jan 2008 11:11:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GB1Lb007221 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:11:01 -0500 +Date: Fri, 4 Jan 2008 11:11:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39762 - web/trunk/web-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:12:37 2008 +X-DSPAM-Confidence: 0.7601 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39762 + +Author: gsilver@umich.edu +Date: 2008-01-04 11:11:00 -0500 (Fri, 04 Jan 2008) +New Revision: 39762 + +Modified: +web/trunk/web-tool/tool/src/bundle/iframe.properties +Log: +SAK-12596 +http://bugs.sakaiproject.org/jira/browse/SAK-12596 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Jan 4 11:11:52 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:11:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:11:52 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by godsend.mail.umich.edu () with ESMTP id m04GBqqv025330; + Fri, 4 Jan 2008 11:11:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477E5AB3.5CC32.30840 ; + 4 Jan 2008 11:11:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 62AA4BAE46; + Fri, 4 Jan 2008 16:11:31 +0000 (GMT) +Message-ID: <200801041610.m04GA5KP007209@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006 + for ; + Fri, 4 Jan 2008 16:11:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C596A3DFA2 + for ; Fri, 4 Jan 2008 16:11:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GA5LR007211 + for ; Fri, 4 Jan 2008 11:10:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GA5KP007209 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:10:05 -0500 +Date: Fri, 4 Jan 2008 11:10:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39761 - site/trunk/site-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:11:52 2008 +X-DSPAM-Confidence: 0.7605 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39761 + +Author: gsilver@umich.edu +Date: 2008-01-04 11:10:04 -0500 (Fri, 04 Jan 2008) +New Revision: 39761 + +Modified: +site/trunk/site-tool/tool/src/bundle/admin.properties +Log: +SAK-12595 +http://bugs.sakaiproject.org/jira/browse/SAK-12595 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 11:11:03 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:11:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:11:03 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id m04GB3Vg011502; + Fri, 4 Jan 2008 11:11:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 477E5A8D.B378F.24200 ; + 4 Jan 2008 11:10:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C7251BAD44; + Fri, 4 Jan 2008 16:10:53 +0000 (GMT) +Message-ID: <200801041609.m04G9EuX007197@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483 + for ; + Fri, 4 Jan 2008 16:10:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E7043DFA2 + for ; Fri, 4 Jan 2008 16:10:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G9Eqg007199 + for ; Fri, 4 Jan 2008 11:09:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G9EuX007197 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:09:14 -0500 +Date: Fri, 4 Jan 2008 11:09:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39760 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:11:03 2008 +X-DSPAM-Confidence: 0.6959 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39760 + +Author: zqian@umich.edu +Date: 2008-01-04 11:09:12 -0500 (Fri, 04 Jan 2008) +New Revision: 39760 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +fix to SAK-10911: Refactor use of site.upd, site.upd.site.mbrship and site.upd.grp.mbrship permissions + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Jan 4 11:10:22 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:10:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:10:22 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by faithful.mail.umich.edu () with ESMTP id m04GAL9k010604; + Fri, 4 Jan 2008 11:10:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477E5A67.34350.23015 ; + 4 Jan 2008 11:10:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 98D04BAD43; + Fri, 4 Jan 2008 16:10:11 +0000 (GMT) +Message-ID: <200801041608.m04G8d7w007184@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 966 + for ; + Fri, 4 Jan 2008 16:09:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F89542DD0 + for ; Fri, 4 Jan 2008 16:09:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G8dXN007186 + for ; Fri, 4 Jan 2008 11:08:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G8d7w007184 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:08:39 -0500 +Date: Fri, 4 Jan 2008 11:08:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39759 - mailarchive/trunk/mailarchive-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:10:22 2008 +X-DSPAM-Confidence: 0.7606 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39759 + +Author: gsilver@umich.edu +Date: 2008-01-04 11:08:38 -0500 (Fri, 04 Jan 2008) +New Revision: 39759 + +Modified: +mailarchive/trunk/mailarchive-tool/tool/src/bundle/email.properties +Log: +SAK-12592 +http://bugs.sakaiproject.org/jira/browse/SAK-12592 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Fri Jan 4 10:38:42 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 10:38:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 10:38:42 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id m04Fcfjm012313; + Fri, 4 Jan 2008 10:38:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 477E52FA.E6C6E.24093 ; + 4 Jan 2008 10:38:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A39594CD2; + Fri, 4 Jan 2008 15:37:36 +0000 (GMT) +Message-ID: <200801041537.m04Fb6Ci007092@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690 + for ; + Fri, 4 Jan 2008 15:37:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CEFA037ACE + for ; Fri, 4 Jan 2008 15:38:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04Fb6nh007094 + for ; Fri, 4 Jan 2008 10:37:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Fb6Ci007092 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:37:06 -0500 +Date: Fri, 4 Jan 2008 10:37:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39758 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business/impl service/api/src/java/org/sakaiproject/service/gradebook/shared service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 10:38:42 2008 +X-DSPAM-Confidence: 0.7559 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39758 + +Author: wagnermr@iupui.edu +Date: 2008-01-04 10:37:04 -0500 (Fri, 04 Jan 2008) +New Revision: 39758 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getGradeDefinitionForStudentForItem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 10:17:43 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 10:17:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 10:17:42 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id m04FHgfs011536; + Fri, 4 Jan 2008 10:17:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477E4E0F.CCA4B.926 ; + 4 Jan 2008 10:17:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BD02DBAC64; + Fri, 4 Jan 2008 15:17:34 +0000 (GMT) +Message-ID: <200801041515.m04FFv42007050@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25 + for ; + Fri, 4 Jan 2008 15:17:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B396236B9 + for ; Fri, 4 Jan 2008 15:17:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04FFv85007052 + for ; Fri, 4 Jan 2008 10:15:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04FFv42007050 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:15:57 -0500 +Date: Fri, 4 Jan 2008 10:15:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39757 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 10:17:42 2008 +X-DSPAM-Confidence: 0.7605 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39757 + +Author: zqian@umich.edu +Date: 2008-01-04 10:15:54 -0500 (Fri, 04 Jan 2008) +New Revision: 39757 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +fix to SAK-12604:Don't show groups/sections filter if the site doesn't have any + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Fri Jan 4 10:04:14 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 10:04:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 10:04:14 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id m04F4Dci015108; + Fri, 4 Jan 2008 10:04:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477E4AE3.D7AF.31669 ; + 4 Jan 2008 10:04:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 933E3BAC17; + Fri, 4 Jan 2008 15:04:00 +0000 (GMT) +Message-ID: <200801041502.m04F21Jo007031@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32 + for ; + Fri, 4 Jan 2008 15:03:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AC2F6236B9 + for ; Fri, 4 Jan 2008 15:03:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04F21hn007033 + for ; Fri, 4 Jan 2008 10:02:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04F21Jo007031 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:02:01 -0500 +Date: Fri, 4 Jan 2008 10:02:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r39756 - in component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component: impl impl/spring/support impl/spring/support/dynamic impl/support util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 10:04:14 2008 +X-DSPAM-Confidence: 0.6932 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39756 + +Author: antranig@caret.cam.ac.uk +Date: 2008-01-04 10:01:40 -0500 (Fri, 04 Jan 2008) +New Revision: 39756 + +Added: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/DynamicComponentManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicComponentRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicJARManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/JARRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ByteToCharBase64.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/FileUtil.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordFileIO.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordReader.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordWriter.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/StreamDigestor.java +Modified: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java +Log: +Temporary commit of incomplete work on JAR caching + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Fri Jan 4 09:05:31 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 09:05:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 09:05:31 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by flawless.mail.umich.edu () with ESMTP id m04E5U3C029277; + Fri, 4 Jan 2008 09:05:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477E3D23.EE2E7.5237 ; + 4 Jan 2008 09:05:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33C7856DC0; + Fri, 4 Jan 2008 14:05:26 +0000 (GMT) +Message-ID: <200801041403.m04E3psW006926@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 575 + for ; + Fri, 4 Jan 2008 14:05:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3C0261D617 + for ; Fri, 4 Jan 2008 14:05:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04E3pQS006928 + for ; Fri, 4 Jan 2008 09:03:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04E3psW006926 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 09:03:51 -0500 +Date: Fri, 4 Jan 2008 09:03:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39755 - in sam/branches/SAK-12065: samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 09:05:31 2008 +X-DSPAM-Confidence: 0.7558 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39755 + +Author: gopal.ramasammycook@gmail.com +Date: 2008-01-04 09:02:54 -0500 (Fri, 04 Jan 2008) +New Revision: 39755 + +Modified: +sam/branches/SAK-12065/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingSectionAwareServiceAPI.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/SubmissionStatusListener.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/SectionAwareServiceHelper.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/SectionAwareServiceHelperImpl.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingSectionAwareServiceImpl.java +Log: +SAK-12065 Gopal - Samigo Group Release. SubmissionStatus/TotalScores/Questions View filter. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 07:02:32 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 07:02:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 07:02:32 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id m04C2VN7026678; + Fri, 4 Jan 2008 07:02:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477E2050.C2599.3263 ; + 4 Jan 2008 07:02:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6497FBA906; + Fri, 4 Jan 2008 12:02:11 +0000 (GMT) +Message-ID: <200801041200.m04C0gfK006793@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611 + for ; + Fri, 4 Jan 2008 12:01:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5296342D3C + for ; Fri, 4 Jan 2008 12:01:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04C0gnm006795 + for ; Fri, 4 Jan 2008 07:00:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04C0gfK006793 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 07:00:42 -0500 +Date: Fri, 4 Jan 2008 07:00:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39754 - in polls/branches/sakai_2-5-x: . tool tool/src/java/org/sakaiproject/poll/tool tool/src/java/org/sakaiproject/poll/tool/evolvers tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 07:02:32 2008 +X-DSPAM-Confidence: 0.6526 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39754 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 07:00:10 -0500 (Fri, 04 Jan 2008) +New Revision: 39754 + +Added: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/ +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +Removed: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +Modified: +polls/branches/sakai_2-5-x/.classpath +polls/branches/sakai_2-5-x/tool/pom.xml +polls/branches/sakai_2-5-x/tool/src/webapp/WEB-INF/requestContext.xml +Log: +svn log -r39753 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r39753 | david.horwitz@uct.ac.za | 2008-01-04 13:05:51 +0200 (Fri, 04 Jan 2008) | 1 line + +SAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build +------------------------------------------------------------------------ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39753 https://source.sakaiproject.org/svn/polls/trunk polls/ +U polls/.classpath +A polls/tool/src/java/org/sakaiproject/poll/tool/evolvers +A polls/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +C polls/tool/src/webapp/WEB-INF/requestContext.xml +U polls/tool/pom.xml + +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn resolved polls/tool/src/webapp/WEB-INF/requestContext.xml +Resolved conflicted state of 'polls/tool/src/webapp/WEB-INF/requestContext.xml + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 06:08:27 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 06:08:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 06:08:27 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id m04B8Qw9001368; + Fri, 4 Jan 2008 06:08:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 477E13A5.30FC0.24054 ; + 4 Jan 2008 06:08:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 784A476D7B; + Fri, 4 Jan 2008 11:08:12 +0000 (GMT) +Message-ID: <200801041106.m04B6lK3006677@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585 + for ; + Fri, 4 Jan 2008 11:07:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CACC42D0C + for ; Fri, 4 Jan 2008 11:07:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04B6lWM006679 + for ; Fri, 4 Jan 2008 06:06:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04B6lK3006677 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 06:06:47 -0500 +Date: Fri, 4 Jan 2008 06:06:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39753 - in polls/trunk: . tool tool/src/java/org/sakaiproject/poll/tool tool/src/java/org/sakaiproject/poll/tool/evolvers tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 06:08:27 2008 +X-DSPAM-Confidence: 0.6948 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39753 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 06:05:51 -0500 (Fri, 04 Jan 2008) +New Revision: 39753 + +Added: +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/ +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +Modified: +polls/trunk/.classpath +polls/trunk/tool/pom.xml +polls/trunk/tool/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 04:49:08 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 04:49:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 04:49:08 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by score.mail.umich.edu () with ESMTP id m049n60G017588; + Fri, 4 Jan 2008 04:49:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477E010C.48C2.10259 ; + 4 Jan 2008 04:49:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 254CC8CDEE; + Fri, 4 Jan 2008 09:48:55 +0000 (GMT) +Message-ID: <200801040947.m049lUxo006517@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 246 + for ; + Fri, 4 Jan 2008 09:48:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8C13342C92 + for ; Fri, 4 Jan 2008 09:48:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049lU3P006519 + for ; Fri, 4 Jan 2008 04:47:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049lUxo006517 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:47:30 -0500 +Date: Fri, 4 Jan 2008 04:47:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39752 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 04:49:08 2008 +X-DSPAM-Confidence: 0.6528 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39752 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 04:47:16 -0500 (Fri, 04 Jan 2008) +New Revision: 39752 + +Modified: +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp +Log: +svn log -r39641 https://source.sakaiproject.org/svn/podcasts/trunk +------------------------------------------------------------------------ +r39641 | josrodri@iupui.edu | 2007-12-28 23:44:24 +0200 (Fri, 28 Dec 2007) | 1 line + +SAK-9882: refactored podMain.jsp the right way (at least much closer to) +------------------------------------------------------------------------ + +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39641 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/ +C podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp +U podcasts/podcasts-app/src/webapp/css/podcaster.css + +conflict merged manualy + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 04:33:44 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 04:33:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 04:33:44 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id m049Xge3031803; + Fri, 4 Jan 2008 04:33:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 477DFD6C.75DBE.26054 ; + 4 Jan 2008 04:33:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6C929BA656; + Fri, 4 Jan 2008 09:33:27 +0000 (GMT) +Message-ID: <200801040932.m049W2i5006493@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 153 + for ; + Fri, 4 Jan 2008 09:33:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6C69423767 + for ; Fri, 4 Jan 2008 09:33:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049W3fl006495 + for ; Fri, 4 Jan 2008 04:32:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049W2i5006493 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:32:02 -0500 +Date: Fri, 4 Jan 2008 04:32:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39751 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css images podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 04:33:44 2008 +X-DSPAM-Confidence: 0.7002 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39751 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 04:31:35 -0500 (Fri, 04 Jan 2008) +New Revision: 39751 + +Removed: +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/images/rss-feed-icon.png +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podPermissions.jsp +Modified: +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podDelete.jsp +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podNoResource.jsp +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podOptions.jsp +Log: +svn log -r39146 https://source.sakaiproject.org/svn/podcasts/trunk +------------------------------------------------------------------------ +r39146 | josrodri@iupui.edu | 2007-12-12 21:40:33 +0200 (Wed, 12 Dec 2007) | 1 line + +SAK-9882: refactored the other pages as well to take advantage of proper jsp components as well as validation cleanup. +------------------------------------------------------------------------ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39146 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/ +D podcasts/podcasts-app/src/webapp/podcasts/podPermissions.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podDelete.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podNoResource.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podOptions.jsp +D podcasts/podcasts-app/src/webapp/images/rss-feed-icon.png +U podcasts/podcasts-app/src/webapp/css/podcaster.css + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Fri Jan 4 04:07:34 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 04:07:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 04:07:34 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by panther.mail.umich.edu () with ESMTP id m0497WAN027902; + Fri, 4 Jan 2008 04:07:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 477DF74E.49493.30415 ; + 4 Jan 2008 04:07:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 88598BA5B6; + Fri, 4 Jan 2008 09:07:19 +0000 (GMT) +Message-ID: <200801040905.m0495rWB006420@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385 + for ; + Fri, 4 Jan 2008 09:07:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 90636418A8 + for ; Fri, 4 Jan 2008 09:07:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0495sZs006422 + for ; Fri, 4 Jan 2008 04:05:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0495rWB006420 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:05:53 -0500 +Date: Fri, 4 Jan 2008 04:05:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39750 - event/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 04:07:34 2008 +X-DSPAM-Confidence: 0.7554 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39750 + +Author: stephen.marquard@uct.ac.za +Date: 2008-01-04 04:05:43 -0500 (Fri, 04 Jan 2008) +New Revision: 39750 + +Modified: +event/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java +Log: +SAK-6216 merge event change from SAK-11169 (r39033) to synchronize branch with 2-5-x (for convenience for UCT local build) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Jan 3 19:51:21 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 19:51:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 19:51:21 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by jacknife.mail.umich.edu () with ESMTP id m040pJHB027171; + Thu, 3 Jan 2008 19:51:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477D8300.AC098.32562 ; + 3 Jan 2008 19:51:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6CC4B9F8A; + Fri, 4 Jan 2008 00:36:06 +0000 (GMT) +Message-ID: <200801040023.m040NpCc005473@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754 + for ; + Fri, 4 Jan 2008 00:35:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8889842C49 + for ; Fri, 4 Jan 2008 00:25:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m040NpgM005475 + for ; Thu, 3 Jan 2008 19:23:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m040NpCc005473 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 19:23:51 -0500 +Date: Thu, 3 Jan 2008 19:23:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39749 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 19:51:20 2008 +X-DSPAM-Confidence: 0.6956 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39749 + +Author: louis@media.berkeley.edu +Date: 2008-01-03 19:23:46 -0500 (Thu, 03 Jan 2008) +New Revision: 39749 + +Modified: +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm +Log: +BSP-1420 Update text to clarify "Re-Use Materials..." option in WS Setup + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Jan 3 17:18:23 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 17:18:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 17:18:23 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id m03MIMXY027729; + Thu, 3 Jan 2008 17:18:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 477D5F23.797F6.16348 ; + 3 Jan 2008 17:18:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EF439B98CE; + Thu, 3 Jan 2008 22:18:19 +0000 (GMT) +Message-ID: <200801032216.m03MGhDa005292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236 + for ; + Thu, 3 Jan 2008 22:18:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 905D53C2FD + for ; Thu, 3 Jan 2008 22:17:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03MGhrs005294 + for ; Thu, 3 Jan 2008 17:16:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03MGhDa005292 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:16:43 -0500 +Date: Thu, 3 Jan 2008 17:16:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39746 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 17:18:23 2008 +X-DSPAM-Confidence: 0.6959 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39746 + +Author: louis@media.berkeley.edu +Date: 2008-01-03 17:16:39 -0500 (Thu, 03 Jan 2008) +New Revision: 39746 + +Modified: +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm +Log: +BSP-1421 Add text to clarify "Duplicate Site" option in Site Info + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Jan 3 17:07:00 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 17:07:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 17:07:00 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id m03M6xaq014868; + Thu, 3 Jan 2008 17:06:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 477D5C7A.4FE1F.22211 ; + 3 Jan 2008 17:06:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0BC8D7225E; + Thu, 3 Jan 2008 22:06:57 +0000 (GMT) +Message-ID: <200801032205.m03M5Ea7005273@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 554 + for ; + Thu, 3 Jan 2008 22:06:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2AB513C2FD + for ; Thu, 3 Jan 2008 22:06:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03M5EQa005275 + for ; Thu, 3 Jan 2008 17:05:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03M5Ea7005273 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:05:14 -0500 +Date: Thu, 3 Jan 2008 17:05:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39745 - providers/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 17:07:00 2008 +X-DSPAM-Confidence: 0.7556 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39745 + +Author: ray@media.berkeley.edu +Date: 2008-01-03 17:05:11 -0500 (Thu, 03 Jan 2008) +New Revision: 39745 + +Modified: +providers/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/CourseManagementGroupProvider.java +Log: +SAK-12602 Fix logic when a user has multiple roles in a section + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 16:34:40 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 16:34:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 16:34:40 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by chaos.mail.umich.edu () with ESMTP id m03LYdY1029538; + Thu, 3 Jan 2008 16:34:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477D54EA.13F34.26602 ; + 3 Jan 2008 16:34:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CC710ADC79; + Thu, 3 Jan 2008 21:34:29 +0000 (GMT) +Message-ID: <200801032133.m03LX3gG005191@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611 + for ; + Thu, 3 Jan 2008 21:34:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 43C4242B55 + for ; Thu, 3 Jan 2008 21:34:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LX3Vb005193 + for ; Thu, 3 Jan 2008 16:33:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LX3gG005191 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:33:03 -0500 +Date: Thu, 3 Jan 2008 16:33:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39744 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 16:34:40 2008 +X-DSPAM-Confidence: 0.9846 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39744 + +Author: cwen@iupui.edu +Date: 2008-01-03 16:33:02 -0500 (Thu, 03 Jan 2008) +New Revision: 39744 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 16:29:07 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 16:29:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 16:29:07 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id m03LT6uw027749; + Thu, 3 Jan 2008 16:29:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477D5397.E161D.20326 ; + 3 Jan 2008 16:28:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DEC65ADC79; + Thu, 3 Jan 2008 21:28:52 +0000 (GMT) +Message-ID: <200801032127.m03LRUqH005177@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 917 + for ; + Thu, 3 Jan 2008 21:28:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1FBB042B30 + for ; Thu, 3 Jan 2008 21:28:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LRUk4005179 + for ; Thu, 3 Jan 2008 16:27:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LRUqH005177 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:27:30 -0500 +Date: Thu, 3 Jan 2008 16:27:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39743 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 16:29:07 2008 +X-DSPAM-Confidence: 0.8509 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39743 + +Author: cwen@iupui.edu +Date: 2008-01-03 16:27:29 -0500 (Thu, 03 Jan 2008) +New Revision: 39743 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +svn merge -c 39403 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java + +svn log -r 39403 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39403 | wagnermr@iupui.edu | 2007-12-17 17:11:08 -0500 (Mon, 17 Dec 2007) | 3 lines + +SAK-12504 +http://jira.sakaiproject.org/jira/browse/SAK-12504 +Viewing "All Grades" page as a TA with grader permissions causes stack trace +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 16:23:48 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 16:23:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 16:23:48 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id m03LNlf0002115; + Thu, 3 Jan 2008 16:23:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 477D525E.1448.30389 ; + 3 Jan 2008 16:23:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D005B9D06; + Thu, 3 Jan 2008 21:23:38 +0000 (GMT) +Message-ID: <200801032122.m03LMFo4005148@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 6 + for ; + Thu, 3 Jan 2008 21:23:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3535542B69 + for ; Thu, 3 Jan 2008 21:23:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LMFtT005150 + for ; Thu, 3 Jan 2008 16:22:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LMFo4005148 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:22:15 -0500 +Date: Thu, 3 Jan 2008 16:22:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39742 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 16:23:48 2008 +X-DSPAM-Confidence: 0.9907 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39742 + +Author: cwen@iupui.edu +Date: 2008-01-03 16:22:14 -0500 (Thu, 03 Jan 2008) +New Revision: 39742 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +svn merge -c 35014 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java + +svn log -r 35014 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r35014 | wagnermr@iupui.edu | 2007-09-12 16:17:59 -0400 (Wed, 12 Sep 2007) | 3 lines + +SAK-11458 +http://bugs.sakaiproject.org/jira/browse/SAK-11458 +Course grade does not appear on "All Grades" page if no categories in gb +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. \ No newline at end of file diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/email_exchanges_big.txt b/30-days-of-python/19_Manipulación_de_archivos/data/email_exchanges_big.txt new file mode 100644 index 0000000..93388bb --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/email_exchanges_big.txt @@ -0,0 +1,132045 @@ +From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 05 Jan 2008 09:14:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 05 Jan 2008 09:14:16 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id m05EEFR1013674; + Sat, 5 Jan 2008 09:14:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477F90B0.2DB2F.12494 ; + 5 Jan 2008 09:14:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F919BC2F2; + Sat, 5 Jan 2008 14:10:05 +0000 (GMT) +Message-ID: <200801051412.m05ECIaH010327@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899 + for ; + Sat, 5 Jan 2008 14:09:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A215243002 + for ; Sat, 5 Jan 2008 14:13:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m05ECJVp010329 + for ; Sat, 5 Jan 2008 09:12:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m05ECIaH010327 + for source@collab.sakaiproject.org; Sat, 5 Jan 2008 09:12:18 -0500 +Date: Sat, 5 Jan 2008 09:12:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39772 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Jan 5 09:14:16 2008 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39772 + +Author: stephen.marquard@uct.ac.za +Date: 2008-01-05 09:12:07 -0500 (Sat, 05 Jan 2008) +New Revision: 39772 + +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +Log: +SAK-12501 merge to 2-5-x: r39622, r39624:5, r39632:3 (resolve conflict from differing linebreaks for r39622) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Jan 4 18:10:48 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 18:10:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 18:10:48 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id m04NAbGa029441; + Fri, 4 Jan 2008 18:10:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477EBCE3.161BB.4320 ; + 4 Jan 2008 18:10:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07969BB706; + Fri, 4 Jan 2008 23:10:33 +0000 (GMT) +Message-ID: <200801042308.m04N8v6O008125@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710 + for ; + Fri, 4 Jan 2008 23:10:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4BA2F42F57 + for ; Fri, 4 Jan 2008 23:10:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04N8vHG008127 + for ; Fri, 4 Jan 2008 18:08:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04N8v6O008125 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 18:08:57 -0500 +Date: Fri, 4 Jan 2008 18:08:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39771 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 18:10:48 2008 +X-DSPAM-Confidence: 0.6178 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39771 + +Author: louis@media.berkeley.edu +Date: 2008-01-04 18:08:50 -0500 (Fri, 04 Jan 2008) +New Revision: 39771 + +Modified: +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +BSP-1415 New (Guest) user Notification + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 16:10:39 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 16:10:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 16:10:39 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id m04LAcZw014275; + Fri, 4 Jan 2008 16:10:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477EA0C6.A0214.25480 ; + 4 Jan 2008 16:10:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C48CDBB490; + Fri, 4 Jan 2008 21:10:31 +0000 (GMT) +Message-ID: <200801042109.m04L92hb007923@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906 + for ; + Fri, 4 Jan 2008 21:10:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7D13042F71 + for ; Fri, 4 Jan 2008 21:10:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04L927E007925 + for ; Fri, 4 Jan 2008 16:09:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04L92hb007923 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 16:09:02 -0500 +Date: Fri, 4 Jan 2008 16:09:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39770 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 16:10:39 2008 +X-DSPAM-Confidence: 0.6961 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39770 + +Author: zqian@umich.edu +Date: 2008-01-04 16:09:01 -0500 (Fri, 04 Jan 2008) +New Revision: 39770 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +merge fix to SAK-9996 into 2-5-x branch: svn merge -r 39687:39688 https://source.sakaiproject.org/svn/site-manage/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Jan 4 15:46:24 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 15:46:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 15:46:24 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by panther.mail.umich.edu () with ESMTP id m04KkNbx032077; + Fri, 4 Jan 2008 15:46:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 477E9B13.2F3BC.22965 ; + 4 Jan 2008 15:46:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4AE03BB552; + Fri, 4 Jan 2008 20:46:13 +0000 (GMT) +Message-ID: <200801042044.m04Kiem3007881@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38 + for ; + Fri, 4 Jan 2008 20:45:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A55D242F57 + for ; Fri, 4 Jan 2008 20:45:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04KieqE007883 + for ; Fri, 4 Jan 2008 15:44:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Kiem3007881 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:44:40 -0500 +Date: Fri, 4 Jan 2008 15:44:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39769 - in gradebook/trunk/app/ui/src: java/org/sakaiproject/tool/gradebook/ui/helpers/beans java/org/sakaiproject/tool/gradebook/ui/helpers/producers webapp/WEB-INF webapp/WEB-INF/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 15:46:24 2008 +X-DSPAM-Confidence: 0.7565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39769 + +Author: rjlowe@iupui.edu +Date: 2008-01-04 15:44:39 -0500 (Fri, 04 Jan 2008) +New Revision: 39769 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties +gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12180 - Fixed errors with grading helper + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 15:03:18 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 15:03:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 15:03:18 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id m04K3HGF006563; + Fri, 4 Jan 2008 15:03:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 477E9100.8F7F4.1590 ; + 4 Jan 2008 15:03:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 57770BB477; + Fri, 4 Jan 2008 20:03:09 +0000 (GMT) +Message-ID: <200801042001.m04K1cO0007738@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622 + for ; + Fri, 4 Jan 2008 20:02:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB4D042F4D + for ; Fri, 4 Jan 2008 20:02:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04K1cXv007740 + for ; Fri, 4 Jan 2008 15:01:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04K1cO0007738 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:01:38 -0500 +Date: Fri, 4 Jan 2008 15:01:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39766 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 15:03:18 2008 +X-DSPAM-Confidence: 0.7626 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39766 + +Author: zqian@umich.edu +Date: 2008-01-04 15:01:37 -0500 (Fri, 04 Jan 2008) +New Revision: 39766 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +merge fix to SAK-10788 into site-manage 2.4.x branch: + +Sakai Source Repository #38024 Wed Nov 07 14:54:46 MST 2007 zqian@umich.edu Fix to SAK-10788: If a provided id in a couse site is fake or doesn't provide any user information, Site Info appears to be like project site with empty participant list + +Watch for enrollments object being null and concatenate provider ids when there are more than one. +Files Changed +MODIFY /site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Jan 4 14:50:18 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 14:50:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 14:50:18 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id m04JoHJi019755; + Fri, 4 Jan 2008 14:50:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477E8DF2.67B91.5278 ; + 4 Jan 2008 14:50:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2D1B9BB492; + Fri, 4 Jan 2008 19:47:10 +0000 (GMT) +Message-ID: <200801041948.m04JmdwO007705@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960 + for ; + Fri, 4 Jan 2008 19:46:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B3E6742F4A + for ; Fri, 4 Jan 2008 19:49:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04JmeV9007707 + for ; Fri, 4 Jan 2008 14:48:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04JmdwO007705 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 14:48:39 -0500 +Date: Fri, 4 Jan 2008 14:48:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39765 - in gradebook/trunk/app: business/src/java/org/sakaiproject/tool/gradebook/business business/src/java/org/sakaiproject/tool/gradebook/business/impl ui ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers ui/src/webapp/WEB-INF ui/src/webapp/WEB-INF/bundle ui/src/webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 14:50:18 2008 +X-DSPAM-Confidence: 0.7556 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39765 + +Author: rjlowe@iupui.edu +Date: 2008-01-04 14:48:37 -0500 (Fri, 04 Jan 2008) +New Revision: 39765 + +Added: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordCreator.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryGradeEntityProvider.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/GradeGradebookItemViewParams.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/content/templates/grade-gradebook-item.html +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/ui/pom.xml +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryEntityProvider.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties +gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12180 - New helper tool to grade an assignment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Jan 4 11:37:30 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:37:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:37:30 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id m04GbT9x022078; + Fri, 4 Jan 2008 11:37:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 477E60B2.82756.9904 ; + 4 Jan 2008 11:37:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8D13DBB001; + Fri, 4 Jan 2008 16:37:07 +0000 (GMT) +Message-ID: <200801041635.m04GZQGZ007313@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120 + for ; + Fri, 4 Jan 2008 16:36:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D430B42E42 + for ; Fri, 4 Jan 2008 16:36:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GZQ7W007315 + for ; Fri, 4 Jan 2008 11:35:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GZQGZ007313 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:35:26 -0500 +Date: Fri, 4 Jan 2008 11:35:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39764 - in msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:37:30 2008 +X-DSPAM-Confidence: 0.7002 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39764 + +Author: cwen@iupui.edu +Date: 2008-01-04 11:35:25 -0500 (Fri, 04 Jan 2008) +New Revision: 39764 + +Modified: +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java +Log: +unmerge Xingtang's checkin for SAK-12488. + +svn merge -r39558:39557 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java + +svn log -r 39558 +------------------------------------------------------------------------ +r39558 | hu2@iupui.edu | 2007-12-20 15:25:38 -0500 (Thu, 20 Dec 2007) | 3 lines + +SAK-12488 +when send a message to yourself. click reply to all, cc row should be null. +http://jira.sakaiproject.org/jira/browse/SAK-12488 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Jan 4 11:35:08 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:35:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:35:08 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id m04GZ6lt020480; + Fri, 4 Jan 2008 11:35:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 477E6033.6469D.21870 ; + 4 Jan 2008 11:35:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E40FABAE5B; + Fri, 4 Jan 2008 16:34:38 +0000 (GMT) +Message-ID: <200801041633.m04GX6eG007292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697 + for ; + Fri, 4 Jan 2008 16:34:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CD0C42E42 + for ; Fri, 4 Jan 2008 16:34:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GX6Y3007294 + for ; Fri, 4 Jan 2008 11:33:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GX6eG007292 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:33:06 -0500 +Date: Fri, 4 Jan 2008 11:33:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39763 - in msgcntr/trunk: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:35:08 2008 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39763 + +Author: cwen@iupui.edu +Date: 2008-01-04 11:33:05 -0500 (Fri, 04 Jan 2008) +New Revision: 39763 + +Modified: +msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +Log: +unmerge Xingtang's check in for SAK-12484. + +svn merge -r39571:39570 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java + +svn log -r 39571 +------------------------------------------------------------------------ +r39571 | hu2@iupui.edu | 2007-12-20 21:26:28 -0500 (Thu, 20 Dec 2007) | 3 lines + +SAK-12484 +reply all cc list should not include the current user name. +http://jira.sakaiproject.org/jira/browse/SAK-12484 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Jan 4 11:12:37 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:12:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:12:37 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id m04GCaHB030887; + Fri, 4 Jan 2008 11:12:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477E5AEB.E670B.28397 ; + 4 Jan 2008 11:12:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 99715BAE7D; + Fri, 4 Jan 2008 16:12:27 +0000 (GMT) +Message-ID: <200801041611.m04GB1Lb007221@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 272 + for ; + Fri, 4 Jan 2008 16:12:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A6ED42DFC + for ; Fri, 4 Jan 2008 16:12:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GB1Wt007223 + for ; Fri, 4 Jan 2008 11:11:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GB1Lb007221 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:11:01 -0500 +Date: Fri, 4 Jan 2008 11:11:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39762 - web/trunk/web-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:12:37 2008 +X-DSPAM-Confidence: 0.7601 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39762 + +Author: gsilver@umich.edu +Date: 2008-01-04 11:11:00 -0500 (Fri, 04 Jan 2008) +New Revision: 39762 + +Modified: +web/trunk/web-tool/tool/src/bundle/iframe.properties +Log: +SAK-12596 +http://bugs.sakaiproject.org/jira/browse/SAK-12596 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Jan 4 11:11:52 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:11:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:11:52 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by godsend.mail.umich.edu () with ESMTP id m04GBqqv025330; + Fri, 4 Jan 2008 11:11:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477E5AB3.5CC32.30840 ; + 4 Jan 2008 11:11:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 62AA4BAE46; + Fri, 4 Jan 2008 16:11:31 +0000 (GMT) +Message-ID: <200801041610.m04GA5KP007209@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006 + for ; + Fri, 4 Jan 2008 16:11:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C596A3DFA2 + for ; Fri, 4 Jan 2008 16:11:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GA5LR007211 + for ; Fri, 4 Jan 2008 11:10:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GA5KP007209 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:10:05 -0500 +Date: Fri, 4 Jan 2008 11:10:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39761 - site/trunk/site-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:11:52 2008 +X-DSPAM-Confidence: 0.7605 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39761 + +Author: gsilver@umich.edu +Date: 2008-01-04 11:10:04 -0500 (Fri, 04 Jan 2008) +New Revision: 39761 + +Modified: +site/trunk/site-tool/tool/src/bundle/admin.properties +Log: +SAK-12595 +http://bugs.sakaiproject.org/jira/browse/SAK-12595 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 11:11:03 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:11:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:11:03 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id m04GB3Vg011502; + Fri, 4 Jan 2008 11:11:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 477E5A8D.B378F.24200 ; + 4 Jan 2008 11:10:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C7251BAD44; + Fri, 4 Jan 2008 16:10:53 +0000 (GMT) +Message-ID: <200801041609.m04G9EuX007197@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483 + for ; + Fri, 4 Jan 2008 16:10:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E7043DFA2 + for ; Fri, 4 Jan 2008 16:10:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G9Eqg007199 + for ; Fri, 4 Jan 2008 11:09:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G9EuX007197 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:09:14 -0500 +Date: Fri, 4 Jan 2008 11:09:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39760 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:11:03 2008 +X-DSPAM-Confidence: 0.6959 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39760 + +Author: zqian@umich.edu +Date: 2008-01-04 11:09:12 -0500 (Fri, 04 Jan 2008) +New Revision: 39760 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +fix to SAK-10911: Refactor use of site.upd, site.upd.site.mbrship and site.upd.grp.mbrship permissions + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Jan 4 11:10:22 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 11:10:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 11:10:22 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by faithful.mail.umich.edu () with ESMTP id m04GAL9k010604; + Fri, 4 Jan 2008 11:10:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477E5A67.34350.23015 ; + 4 Jan 2008 11:10:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 98D04BAD43; + Fri, 4 Jan 2008 16:10:11 +0000 (GMT) +Message-ID: <200801041608.m04G8d7w007184@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 966 + for ; + Fri, 4 Jan 2008 16:09:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F89542DD0 + for ; Fri, 4 Jan 2008 16:09:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G8dXN007186 + for ; Fri, 4 Jan 2008 11:08:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G8d7w007184 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:08:39 -0500 +Date: Fri, 4 Jan 2008 11:08:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39759 - mailarchive/trunk/mailarchive-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 11:10:22 2008 +X-DSPAM-Confidence: 0.7606 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39759 + +Author: gsilver@umich.edu +Date: 2008-01-04 11:08:38 -0500 (Fri, 04 Jan 2008) +New Revision: 39759 + +Modified: +mailarchive/trunk/mailarchive-tool/tool/src/bundle/email.properties +Log: +SAK-12592 +http://bugs.sakaiproject.org/jira/browse/SAK-12592 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Fri Jan 4 10:38:42 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 10:38:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 10:38:42 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id m04Fcfjm012313; + Fri, 4 Jan 2008 10:38:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 477E52FA.E6C6E.24093 ; + 4 Jan 2008 10:38:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A39594CD2; + Fri, 4 Jan 2008 15:37:36 +0000 (GMT) +Message-ID: <200801041537.m04Fb6Ci007092@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690 + for ; + Fri, 4 Jan 2008 15:37:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CEFA037ACE + for ; Fri, 4 Jan 2008 15:38:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04Fb6nh007094 + for ; Fri, 4 Jan 2008 10:37:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Fb6Ci007092 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:37:06 -0500 +Date: Fri, 4 Jan 2008 10:37:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39758 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business/impl service/api/src/java/org/sakaiproject/service/gradebook/shared service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 10:38:42 2008 +X-DSPAM-Confidence: 0.7559 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39758 + +Author: wagnermr@iupui.edu +Date: 2008-01-04 10:37:04 -0500 (Fri, 04 Jan 2008) +New Revision: 39758 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getGradeDefinitionForStudentForItem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Jan 4 10:17:43 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 10:17:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 10:17:42 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id m04FHgfs011536; + Fri, 4 Jan 2008 10:17:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477E4E0F.CCA4B.926 ; + 4 Jan 2008 10:17:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BD02DBAC64; + Fri, 4 Jan 2008 15:17:34 +0000 (GMT) +Message-ID: <200801041515.m04FFv42007050@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25 + for ; + Fri, 4 Jan 2008 15:17:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B396236B9 + for ; Fri, 4 Jan 2008 15:17:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04FFv85007052 + for ; Fri, 4 Jan 2008 10:15:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04FFv42007050 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:15:57 -0500 +Date: Fri, 4 Jan 2008 10:15:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39757 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 10:17:42 2008 +X-DSPAM-Confidence: 0.7605 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39757 + +Author: zqian@umich.edu +Date: 2008-01-04 10:15:54 -0500 (Fri, 04 Jan 2008) +New Revision: 39757 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +fix to SAK-12604:Don't show groups/sections filter if the site doesn't have any + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Fri Jan 4 10:04:14 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 10:04:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 10:04:14 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id m04F4Dci015108; + Fri, 4 Jan 2008 10:04:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477E4AE3.D7AF.31669 ; + 4 Jan 2008 10:04:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 933E3BAC17; + Fri, 4 Jan 2008 15:04:00 +0000 (GMT) +Message-ID: <200801041502.m04F21Jo007031@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32 + for ; + Fri, 4 Jan 2008 15:03:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AC2F6236B9 + for ; Fri, 4 Jan 2008 15:03:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04F21hn007033 + for ; Fri, 4 Jan 2008 10:02:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04F21Jo007031 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:02:01 -0500 +Date: Fri, 4 Jan 2008 10:02:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r39756 - in component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component: impl impl/spring/support impl/spring/support/dynamic impl/support util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 10:04:14 2008 +X-DSPAM-Confidence: 0.6932 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39756 + +Author: antranig@caret.cam.ac.uk +Date: 2008-01-04 10:01:40 -0500 (Fri, 04 Jan 2008) +New Revision: 39756 + +Added: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/DynamicComponentManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicComponentRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicJARManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/JARRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ByteToCharBase64.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/FileUtil.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordFileIO.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordReader.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordWriter.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/StreamDigestor.java +Modified: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java +Log: +Temporary commit of incomplete work on JAR caching + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Fri Jan 4 09:05:31 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 09:05:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 09:05:31 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by flawless.mail.umich.edu () with ESMTP id m04E5U3C029277; + Fri, 4 Jan 2008 09:05:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477E3D23.EE2E7.5237 ; + 4 Jan 2008 09:05:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33C7856DC0; + Fri, 4 Jan 2008 14:05:26 +0000 (GMT) +Message-ID: <200801041403.m04E3psW006926@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 575 + for ; + Fri, 4 Jan 2008 14:05:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3C0261D617 + for ; Fri, 4 Jan 2008 14:05:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04E3pQS006928 + for ; Fri, 4 Jan 2008 09:03:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04E3psW006926 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 09:03:51 -0500 +Date: Fri, 4 Jan 2008 09:03:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39755 - in sam/branches/SAK-12065: samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 09:05:31 2008 +X-DSPAM-Confidence: 0.7558 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39755 + +Author: gopal.ramasammycook@gmail.com +Date: 2008-01-04 09:02:54 -0500 (Fri, 04 Jan 2008) +New Revision: 39755 + +Modified: +sam/branches/SAK-12065/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingSectionAwareServiceAPI.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/SubmissionStatusListener.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/SectionAwareServiceHelper.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/SectionAwareServiceHelperImpl.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingSectionAwareServiceImpl.java +Log: +SAK-12065 Gopal - Samigo Group Release. SubmissionStatus/TotalScores/Questions View filter. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 07:02:32 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 07:02:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 07:02:32 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id m04C2VN7026678; + Fri, 4 Jan 2008 07:02:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477E2050.C2599.3263 ; + 4 Jan 2008 07:02:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6497FBA906; + Fri, 4 Jan 2008 12:02:11 +0000 (GMT) +Message-ID: <200801041200.m04C0gfK006793@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611 + for ; + Fri, 4 Jan 2008 12:01:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5296342D3C + for ; Fri, 4 Jan 2008 12:01:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04C0gnm006795 + for ; Fri, 4 Jan 2008 07:00:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04C0gfK006793 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 07:00:42 -0500 +Date: Fri, 4 Jan 2008 07:00:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39754 - in polls/branches/sakai_2-5-x: . tool tool/src/java/org/sakaiproject/poll/tool tool/src/java/org/sakaiproject/poll/tool/evolvers tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 07:02:32 2008 +X-DSPAM-Confidence: 0.6526 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39754 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 07:00:10 -0500 (Fri, 04 Jan 2008) +New Revision: 39754 + +Added: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/ +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +Removed: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +Modified: +polls/branches/sakai_2-5-x/.classpath +polls/branches/sakai_2-5-x/tool/pom.xml +polls/branches/sakai_2-5-x/tool/src/webapp/WEB-INF/requestContext.xml +Log: +svn log -r39753 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r39753 | david.horwitz@uct.ac.za | 2008-01-04 13:05:51 +0200 (Fri, 04 Jan 2008) | 1 line + +SAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build +------------------------------------------------------------------------ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39753 https://source.sakaiproject.org/svn/polls/trunk polls/ +U polls/.classpath +A polls/tool/src/java/org/sakaiproject/poll/tool/evolvers +A polls/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +C polls/tool/src/webapp/WEB-INF/requestContext.xml +U polls/tool/pom.xml + +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn resolved polls/tool/src/webapp/WEB-INF/requestContext.xml +Resolved conflicted state of 'polls/tool/src/webapp/WEB-INF/requestContext.xml + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 06:08:27 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 06:08:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 06:08:27 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id m04B8Qw9001368; + Fri, 4 Jan 2008 06:08:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 477E13A5.30FC0.24054 ; + 4 Jan 2008 06:08:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 784A476D7B; + Fri, 4 Jan 2008 11:08:12 +0000 (GMT) +Message-ID: <200801041106.m04B6lK3006677@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585 + for ; + Fri, 4 Jan 2008 11:07:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CACC42D0C + for ; Fri, 4 Jan 2008 11:07:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04B6lWM006679 + for ; Fri, 4 Jan 2008 06:06:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04B6lK3006677 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 06:06:47 -0500 +Date: Fri, 4 Jan 2008 06:06:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39753 - in polls/trunk: . tool tool/src/java/org/sakaiproject/poll/tool tool/src/java/org/sakaiproject/poll/tool/evolvers tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 06:08:27 2008 +X-DSPAM-Confidence: 0.6948 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39753 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 06:05:51 -0500 (Fri, 04 Jan 2008) +New Revision: 39753 + +Added: +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/ +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java +Modified: +polls/trunk/.classpath +polls/trunk/tool/pom.xml +polls/trunk/tool/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 04:49:08 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 04:49:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 04:49:08 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by score.mail.umich.edu () with ESMTP id m049n60G017588; + Fri, 4 Jan 2008 04:49:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477E010C.48C2.10259 ; + 4 Jan 2008 04:49:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 254CC8CDEE; + Fri, 4 Jan 2008 09:48:55 +0000 (GMT) +Message-ID: <200801040947.m049lUxo006517@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 246 + for ; + Fri, 4 Jan 2008 09:48:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8C13342C92 + for ; Fri, 4 Jan 2008 09:48:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049lU3P006519 + for ; Fri, 4 Jan 2008 04:47:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049lUxo006517 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:47:30 -0500 +Date: Fri, 4 Jan 2008 04:47:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39752 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 04:49:08 2008 +X-DSPAM-Confidence: 0.6528 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39752 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 04:47:16 -0500 (Fri, 04 Jan 2008) +New Revision: 39752 + +Modified: +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp +Log: +svn log -r39641 https://source.sakaiproject.org/svn/podcasts/trunk +------------------------------------------------------------------------ +r39641 | josrodri@iupui.edu | 2007-12-28 23:44:24 +0200 (Fri, 28 Dec 2007) | 1 line + +SAK-9882: refactored podMain.jsp the right way (at least much closer to) +------------------------------------------------------------------------ + +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39641 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/ +C podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp +U podcasts/podcasts-app/src/webapp/css/podcaster.css + +conflict merged manualy + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Jan 4 04:33:44 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 04:33:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 04:33:44 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id m049Xge3031803; + Fri, 4 Jan 2008 04:33:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 477DFD6C.75DBE.26054 ; + 4 Jan 2008 04:33:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6C929BA656; + Fri, 4 Jan 2008 09:33:27 +0000 (GMT) +Message-ID: <200801040932.m049W2i5006493@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 153 + for ; + Fri, 4 Jan 2008 09:33:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6C69423767 + for ; Fri, 4 Jan 2008 09:33:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049W3fl006495 + for ; Fri, 4 Jan 2008 04:32:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049W2i5006493 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:32:02 -0500 +Date: Fri, 4 Jan 2008 04:32:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39751 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css images podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 04:33:44 2008 +X-DSPAM-Confidence: 0.7002 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39751 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-04 04:31:35 -0500 (Fri, 04 Jan 2008) +New Revision: 39751 + +Removed: +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/images/rss-feed-icon.png +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podPermissions.jsp +Modified: +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podDelete.jsp +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podNoResource.jsp +podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podOptions.jsp +Log: +svn log -r39146 https://source.sakaiproject.org/svn/podcasts/trunk +------------------------------------------------------------------------ +r39146 | josrodri@iupui.edu | 2007-12-12 21:40:33 +0200 (Wed, 12 Dec 2007) | 1 line + +SAK-9882: refactored the other pages as well to take advantage of proper jsp components as well as validation cleanup. +------------------------------------------------------------------------ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39146 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/ +D podcasts/podcasts-app/src/webapp/podcasts/podPermissions.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podDelete.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podNoResource.jsp +U podcasts/podcasts-app/src/webapp/podcasts/podOptions.jsp +D podcasts/podcasts-app/src/webapp/images/rss-feed-icon.png +U podcasts/podcasts-app/src/webapp/css/podcaster.css + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Fri Jan 4 04:07:34 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 04 Jan 2008 04:07:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 04 Jan 2008 04:07:34 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by panther.mail.umich.edu () with ESMTP id m0497WAN027902; + Fri, 4 Jan 2008 04:07:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 477DF74E.49493.30415 ; + 4 Jan 2008 04:07:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 88598BA5B6; + Fri, 4 Jan 2008 09:07:19 +0000 (GMT) +Message-ID: <200801040905.m0495rWB006420@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385 + for ; + Fri, 4 Jan 2008 09:07:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 90636418A8 + for ; Fri, 4 Jan 2008 09:07:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0495sZs006422 + for ; Fri, 4 Jan 2008 04:05:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0495rWB006420 + for source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:05:53 -0500 +Date: Fri, 4 Jan 2008 04:05:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39750 - event/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Jan 4 04:07:34 2008 +X-DSPAM-Confidence: 0.7554 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39750 + +Author: stephen.marquard@uct.ac.za +Date: 2008-01-04 04:05:43 -0500 (Fri, 04 Jan 2008) +New Revision: 39750 + +Modified: +event/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java +Log: +SAK-6216 merge event change from SAK-11169 (r39033) to synchronize branch with 2-5-x (for convenience for UCT local build) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Jan 3 19:51:21 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 19:51:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 19:51:21 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by jacknife.mail.umich.edu () with ESMTP id m040pJHB027171; + Thu, 3 Jan 2008 19:51:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477D8300.AC098.32562 ; + 3 Jan 2008 19:51:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6CC4B9F8A; + Fri, 4 Jan 2008 00:36:06 +0000 (GMT) +Message-ID: <200801040023.m040NpCc005473@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754 + for ; + Fri, 4 Jan 2008 00:35:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8889842C49 + for ; Fri, 4 Jan 2008 00:25:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m040NpgM005475 + for ; Thu, 3 Jan 2008 19:23:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m040NpCc005473 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 19:23:51 -0500 +Date: Thu, 3 Jan 2008 19:23:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39749 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 19:51:20 2008 +X-DSPAM-Confidence: 0.6956 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39749 + +Author: louis@media.berkeley.edu +Date: 2008-01-03 19:23:46 -0500 (Thu, 03 Jan 2008) +New Revision: 39749 + +Modified: +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm +Log: +BSP-1420 Update text to clarify "Re-Use Materials..." option in WS Setup + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Jan 3 17:18:23 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 17:18:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 17:18:23 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id m03MIMXY027729; + Thu, 3 Jan 2008 17:18:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 477D5F23.797F6.16348 ; + 3 Jan 2008 17:18:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EF439B98CE; + Thu, 3 Jan 2008 22:18:19 +0000 (GMT) +Message-ID: <200801032216.m03MGhDa005292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236 + for ; + Thu, 3 Jan 2008 22:18:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 905D53C2FD + for ; Thu, 3 Jan 2008 22:17:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03MGhrs005294 + for ; Thu, 3 Jan 2008 17:16:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03MGhDa005292 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:16:43 -0500 +Date: Thu, 3 Jan 2008 17:16:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39746 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 17:18:23 2008 +X-DSPAM-Confidence: 0.6959 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39746 + +Author: louis@media.berkeley.edu +Date: 2008-01-03 17:16:39 -0500 (Thu, 03 Jan 2008) +New Revision: 39746 + +Modified: +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm +Log: +BSP-1421 Add text to clarify "Duplicate Site" option in Site Info + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Jan 3 17:07:00 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 17:07:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 17:07:00 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id m03M6xaq014868; + Thu, 3 Jan 2008 17:06:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 477D5C7A.4FE1F.22211 ; + 3 Jan 2008 17:06:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0BC8D7225E; + Thu, 3 Jan 2008 22:06:57 +0000 (GMT) +Message-ID: <200801032205.m03M5Ea7005273@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 554 + for ; + Thu, 3 Jan 2008 22:06:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2AB513C2FD + for ; Thu, 3 Jan 2008 22:06:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03M5EQa005275 + for ; Thu, 3 Jan 2008 17:05:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03M5Ea7005273 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:05:14 -0500 +Date: Thu, 3 Jan 2008 17:05:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39745 - providers/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 17:07:00 2008 +X-DSPAM-Confidence: 0.7556 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39745 + +Author: ray@media.berkeley.edu +Date: 2008-01-03 17:05:11 -0500 (Thu, 03 Jan 2008) +New Revision: 39745 + +Modified: +providers/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/CourseManagementGroupProvider.java +Log: +SAK-12602 Fix logic when a user has multiple roles in a section + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 16:34:40 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 16:34:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 16:34:40 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by chaos.mail.umich.edu () with ESMTP id m03LYdY1029538; + Thu, 3 Jan 2008 16:34:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477D54EA.13F34.26602 ; + 3 Jan 2008 16:34:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CC710ADC79; + Thu, 3 Jan 2008 21:34:29 +0000 (GMT) +Message-ID: <200801032133.m03LX3gG005191@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611 + for ; + Thu, 3 Jan 2008 21:34:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 43C4242B55 + for ; Thu, 3 Jan 2008 21:34:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LX3Vb005193 + for ; Thu, 3 Jan 2008 16:33:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LX3gG005191 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:33:03 -0500 +Date: Thu, 3 Jan 2008 16:33:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39744 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 16:34:40 2008 +X-DSPAM-Confidence: 0.9846 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39744 + +Author: cwen@iupui.edu +Date: 2008-01-03 16:33:02 -0500 (Thu, 03 Jan 2008) +New Revision: 39744 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 16:29:07 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 16:29:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 16:29:07 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id m03LT6uw027749; + Thu, 3 Jan 2008 16:29:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477D5397.E161D.20326 ; + 3 Jan 2008 16:28:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DEC65ADC79; + Thu, 3 Jan 2008 21:28:52 +0000 (GMT) +Message-ID: <200801032127.m03LRUqH005177@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 917 + for ; + Thu, 3 Jan 2008 21:28:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1FBB042B30 + for ; Thu, 3 Jan 2008 21:28:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LRUk4005179 + for ; Thu, 3 Jan 2008 16:27:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LRUqH005177 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:27:30 -0500 +Date: Thu, 3 Jan 2008 16:27:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39743 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 16:29:07 2008 +X-DSPAM-Confidence: 0.8509 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39743 + +Author: cwen@iupui.edu +Date: 2008-01-03 16:27:29 -0500 (Thu, 03 Jan 2008) +New Revision: 39743 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +svn merge -c 39403 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java + +svn log -r 39403 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39403 | wagnermr@iupui.edu | 2007-12-17 17:11:08 -0500 (Mon, 17 Dec 2007) | 3 lines + +SAK-12504 +http://jira.sakaiproject.org/jira/browse/SAK-12504 +Viewing "All Grades" page as a TA with grader permissions causes stack trace +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 16:23:48 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 16:23:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 16:23:48 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id m03LNlf0002115; + Thu, 3 Jan 2008 16:23:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 477D525E.1448.30389 ; + 3 Jan 2008 16:23:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D005B9D06; + Thu, 3 Jan 2008 21:23:38 +0000 (GMT) +Message-ID: <200801032122.m03LMFo4005148@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 6 + for ; + Thu, 3 Jan 2008 21:23:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3535542B69 + for ; Thu, 3 Jan 2008 21:23:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LMFtT005150 + for ; Thu, 3 Jan 2008 16:22:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LMFo4005148 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:22:15 -0500 +Date: Thu, 3 Jan 2008 16:22:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39742 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 16:23:48 2008 +X-DSPAM-Confidence: 0.9907 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39742 + +Author: cwen@iupui.edu +Date: 2008-01-03 16:22:14 -0500 (Thu, 03 Jan 2008) +New Revision: 39742 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +svn merge -c 35014 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java + +svn log -r 35014 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r35014 | wagnermr@iupui.edu | 2007-09-12 16:17:59 -0400 (Wed, 12 Sep 2007) | 3 lines + +SAK-11458 +http://bugs.sakaiproject.org/jira/browse/SAK-11458 +Course grade does not appear on "All Grades" page if no categories in gb +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Jan 3 15:56:00 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 15:56:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 15:56:00 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id m03Ktxn6011763; + Thu, 3 Jan 2008 15:55:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477D4BD5.49C7D.29291 ; + 3 Jan 2008 15:55:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C1DD26DA3E; + Thu, 3 Jan 2008 20:55:46 +0000 (GMT) +Message-ID: <200801032054.m03KsIIF005054@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0 + for ; + Thu, 3 Jan 2008 20:55:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3721142B2D + for ; Thu, 3 Jan 2008 20:55:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KsI2x005057 + for ; Thu, 3 Jan 2008 15:54:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KsIIF005054 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:54:18 -0500 +Date: Thu, 3 Jan 2008 15:54:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39741 - in component/trunk: . component-api component-api/component component-api/component/src/config/org/sakaiproject/config component-api/component/src/java/org component-api/component/src/java/org/sakaiproject/component/api component-api/component/src/java/org/sakaiproject/component/cover component-api/component/src/java/org/sakaiproject/component/impl component-api/component/src/java/org/sakaiproject/util component-impl component-impl/impl component-impl/impl/src/java/org/sakaiproject/component/impl component-impl/integration-test component-impl/integration-test/src component-impl/integration-test/src/java component-impl/integration-test/src/java/org component-impl/integration-test/src/java/org/sakaiproject component-impl/integration-test/src/java/org/sakaiproject/component component-impl/integration-test/src/java/org/sakaiproject/component/test component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic component-impl/! + integration-test/src/test component-impl/integration-test/src/test/java component-impl/integration-test/src/test/java/org component-impl/integration-test/src/test/java/org/sakaiproject component-impl/integration-test/src/test/java/org/sakaiproject/component component-impl/integration-test/src/test/resources component-impl/integration-test/src/test/resources/dynamic component-impl/integration-test/src/test/resources/filesystem component-impl/integration-test/src/webapp component-impl/integration-test/src/webapp/WEB-INF component-impl/integration-test/xdocs component-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 15:56:00 2008 +X-DSPAM-Confidence: 0.7003 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39741 + +Author: ray@media.berkeley.edu +Date: 2008-01-03 15:53:29 -0500 (Thu, 03 Jan 2008) +New Revision: 39741 + +Added: +component/trunk/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/BeanFactoryPostProcessorCreator.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java +component/trunk/component-impl/integration-test/ +component/trunk/component-impl/integration-test/pom.xml +component/trunk/component-impl/integration-test/src/ +component/trunk/component-impl/integration-test/src/java/ +component/trunk/component-impl/integration-test/src/java/org/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/DbPropertiesDao.java +component/trunk/component-impl/integration-test/src/test/ +component/trunk/component-impl/integration-test/src/test/java/ +component/trunk/component-impl/integration-test/src/test/java/org/ +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/ +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/ +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java +component/trunk/component-impl/integration-test/src/test/resources/ +component/trunk/component-impl/integration-test/src/test/resources/dynamic/ +component/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai-configuration.xml +component/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai.properties +component/trunk/component-impl/integration-test/src/test/resources/filesystem/ +component/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai-configuration.xml +component/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai.properties +component/trunk/component-impl/integration-test/src/test/resources/filesystem/some-peculiar.properties +component/trunk/component-impl/integration-test/src/test/resources/log4j.properties +component/trunk/component-impl/integration-test/src/webapp/ +component/trunk/component-impl/integration-test/src/webapp/WEB-INF/ +component/trunk/component-impl/integration-test/src/webapp/WEB-INF/components.xml +component/trunk/component-impl/integration-test/xdocs/ +component/trunk/component-impl/integration-test/xdocs/README.txt +Removed: +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java +component/trunk/component-api/component/src/java/org/springframework/ +component/trunk/component-impl/impl/src/java/org/sakaiproject/component/impl/ConfigurationServiceTest.java +component/trunk/component-impl/integration-test/pom.xml +component/trunk/component-impl/integration-test/src/ +component/trunk/component-impl/integration-test/src/java/ +component/trunk/component-impl/integration-test/src/java/org/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/ +component/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/DbPropertiesDao.java +component/trunk/component-impl/integration-test/src/test/ +component/trunk/component-impl/integration-test/src/test/java/ +component/trunk/component-impl/integration-test/src/test/java/org/ +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/ +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/ +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java +component/trunk/component-impl/integration-test/src/test/resources/ +component/trunk/component-impl/integration-test/src/test/resources/dynamic/ +component/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai-configuration.xml +component/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai.properties +component/trunk/component-impl/integration-test/src/test/resources/filesystem/ +component/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai-configuration.xml +component/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai.properties +component/trunk/component-impl/integration-test/src/test/resources/filesystem/some-peculiar.properties +component/trunk/component-impl/integration-test/src/test/resources/log4j.properties +component/trunk/component-impl/integration-test/src/webapp/ +component/trunk/component-impl/integration-test/src/webapp/WEB-INF/ +component/trunk/component-impl/integration-test/src/webapp/WEB-INF/components.xml +component/trunk/component-impl/integration-test/xdocs/ +component/trunk/component-impl/integration-test/xdocs/README.txt +Modified: +component/trunk/ +component/trunk/component-api/.classpath +component/trunk/component-api/component/pom.xml +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/trunk/component-impl/.classpath +component/trunk/component-impl/impl/pom.xml +component/trunk/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java +component/trunk/component-impl/pack/src/webapp/WEB-INF/components.xml +component/trunk/pom.xml +Log: +SAK-8315 SAK-12237 SAK-12236 Externalize component manager configuration; support lists of properties files, non-file-system properties, and complex configuration objects + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 15:53:58 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 15:53:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 15:53:58 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by sleepers.mail.umich.edu () with ESMTP id m03KrvIV026669; + Thu, 3 Jan 2008 15:53:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 477D4B5E.D27F6.23416 ; + 3 Jan 2008 15:53:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 49D46B9900; + Thu, 3 Jan 2008 20:53:50 +0000 (GMT) +Message-ID: <200801032052.m03KqOsp005029@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 663 + for ; + Thu, 3 Jan 2008 20:53:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 85EF442B2D + for ; Thu, 3 Jan 2008 20:53:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KqOxn005031 + for ; Thu, 3 Jan 2008 15:52:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KqOsp005029 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:52:24 -0500 +Date: Thu, 3 Jan 2008 15:52:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39740 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 15:53:58 2008 +X-DSPAM-Confidence: 0.8507 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39740 + +Author: cwen@iupui.edu +Date: 2008-01-03 15:52:23 -0500 (Thu, 03 Jan 2008) +New Revision: 39740 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -r39155:39154 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql + +svn log -r 39155 +------------------------------------------------------------------------ +r39155 | cwen@iupui.edu | 2007-12-12 15:53:46 -0500 (Wed, 12 Dec 2007) | 1 line + +more conversion statements for SAK-10427. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 15:27:26 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 15:27:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 15:27:26 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by brazil.mail.umich.edu () with ESMTP id m03KRQhx016556; + Thu, 3 Jan 2008 15:27:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 477D4528.333B2.13071 ; + 3 Jan 2008 15:27:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B092D78F12; + Thu, 3 Jan 2008 20:27:19 +0000 (GMT) +Message-ID: <200801032025.m03KPvQi004928@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 206 + for ; + Thu, 3 Jan 2008 20:27:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9C59F42B2E + for ; Thu, 3 Jan 2008 20:27:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KPvti004930 + for ; Thu, 3 Jan 2008 15:25:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KPvQi004928 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:25:57 -0500 +Date: Thu, 3 Jan 2008 15:25:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39739 - assignment/tags +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 15:27:26 2008 +X-DSPAM-Confidence: 0.9895 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39739 + +Author: zqian@umich.edu +Date: 2008-01-03 15:25:55 -0500 (Thu, 03 Jan 2008) +New Revision: 39739 + +Added: +assignment/tags/post-2-4-b/ +Log: +create the tag post-2-4-b. The tag will serve as a starting point for post-2-4 assignment with conversion script included. Please refer to the runconversion_readme.txt for instructions. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 15:25:41 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 15:25:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 15:25:41 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by flawless.mail.umich.edu () with ESMTP id m03KPeml010360; + Thu, 3 Jan 2008 15:25:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 477D44BE.43CAA.20354 ; + 3 Jan 2008 15:25:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 719B6B82DE; + Thu, 3 Jan 2008 20:25:34 +0000 (GMT) +Message-ID: <200801032024.m03KOBAp004915@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 3 + for ; + Thu, 3 Jan 2008 20:25:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CB92242B09 + for ; Thu, 3 Jan 2008 20:25:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KOBs1004917 + for ; Thu, 3 Jan 2008 15:24:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KOBAp004915 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:24:11 -0500 +Date: Thu, 3 Jan 2008 15:24:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39738 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business app/business/src/java/org/sakaiproject/tool/gradebook/business/impl app/business/src/sql/mysql app/business/src/sql/oracle app/sakai-tool/src/webapp/WEB-INF app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle app/ui/src/java/org/sakaiproject/tool/gradebook/jsf app/ui/src/java/org/sakaiproject/tool/gradebook/ui app/ui/src/webapp app/ui/src/webapp/inc service/api/src/java/org/sakaiproject/service/gradebook/shared service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook service/hibernate/src/java/org/sakaiproject/tool/gradebook service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 15:25:41 2008 +X-DSPAM-Confidence: 0.9965 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39738 + +Author: cwen@iupui.edu +Date: 2008-01-03 15:24:05 -0500 (Thu, 03 Jan 2008) +New Revision: 39738 + +Removed: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/business/src/sql/mysql/SAK-10427.sql +gradebook/trunk/app/business/src/sql/oracle/SAK-10427.sql +gradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/faces-application.xml +gradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +gradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp +gradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf +gradebook/trunk/app/ui/src/webapp/instructorView.jsp +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml +gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +Log: +unmerge non-graded stuff since October. include 37479, 37506, 37669, +38874, 39111, 39309, 39365, 39376, 39393 (michelle), 39362 (ryan) + +svn merge -r39376:39375 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java + +svn log -r 39376 +------------------------------------------------------------------------ +r39376 | cwen@iupui.edu | 2007-12-17 12:16:42 -0500 (Mon, 17 Dec 2007) | 4 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-12486 +=> +include non-graded items for grade report page and +student view page. +------------------------------------------------------------------------ + +svn merge -r39365:39364 https://source.sakaiproject.org/svn/gradebook/trunk +U app/sakai-tool/src/webapp/WEB-INF/faces-application.xml +D app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java +U app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +U app/ui/src/webapp/assignmentDetails.jsp + +svn log -r 39365 +-------------------------------------------------------------------------------------------------------------------------500 (Mon,-----------------------------------------------------------------------2485 +=> +add validation for non-graded grades. +------------------------------------------------------------------------ + +svn merge -r39309:39308 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssigU app/ui/src/java/org/sakaiproject/tool/gradoject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java +G app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +C app/ui/src/webapp/inc/bulkNewItems.jspf +U app/ui/src/webapp/inc/assignmentEditing.jspf + +svn revert app/ui/src/webapp/inc/bulkNewItems.jspf +Reverted app/ui/src/webapp/inc/bulkNewItems.jspf + +svn log -r 39309 +------------------------------------------------------------------------ +r39309 | cwen@iupui.edu | 2007-12-15 01:11:33 -0500 (Sat, 15 Dec 2007) | 1 line + +http://bugs.sakaiproject.org/jira/browse/SAK-12461 +------------------------------------------------------------------------ + +svn merge -r39111:39110 https://source.sakaiproject.org/svn/gradebook/trunk +C app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java + +svn resolved app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Resolved conflicted state of app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java + +svn log -r 39111 +------------------------------------------------------------------------ +r39111 | cwen@iupui.edu | 2007-12-11 14:26:27 -0500 (Tue, 11 Dec 2007) | 1 line + +SAK-10427 & SAK-12114 => bulk creation for ungraded items. +------------------------------------------------------------------------ + +svn merge -r38874:38873 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/webapp/gradebookSetup.jsp + +svn log -r 38874 +------------------------------------------------------------------------ +r38874 | cwen@iupui.edu | 2007-11-29 14:35:46 -0500 (Thu, 29 Nov 2007) | 5 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-12305 +SAK-12305 +=> +get rid of "I want to enter grades +that do not adhere to the standard grade entry type" +------------------------------------------------------------------------------------------------------s://source.sakaiproject.org/svn/gradebo-----------------------------------------------------------------------------------------okManagerHibernateImpl.java +U app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java +G app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java +U app/ui/src/webapp/instructorView.jsp +G app/ui/src/webapp/assignmentDetails.jsp + +svn resolved app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Resolved conflicted state of app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java + +svn log -r 37669 +------------------------------------------------------------------------ +r37669 | cwen@iupui.edu | 2007-10-31 13:15:28 -0400 (Wed, 31 Oct 2007) | 4 lines + +http://128.196.219.68/jira/browse/SAK-10427 +SAK-10427 +=> +fix some displyaing/saving issues. +------------------------------------------------------------------------ + +svn merge -r37506:37505 https://source.sakaiproject.org/svn/gradebook/trunk +G app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +G app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +C app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java + +svn resolved app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +Resolved conflicted state of app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java + +svn log -r 37506 +------------------------------------------------------------------------------------------------------------------------------------------------------------------128.196.219.68/jira/browse/SAK-10427 +SAK-10427 +=> +fix some NPE. +------------------------------------------------------------------------ + +svn merge -r37479:37478 https://source.sakaiproject.org/svn/gradebook/trunk +U app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java +U app/business/src/sql/mysql/SAK-10427.sql +U app/business/src/sql/oracle/SAK-10427.sql +G app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +U app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +G app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java +G app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +C app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +C app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +G app/ui/src/webapp/inc/assignmentEditing.jspf +G app/ui/src/webapp/gradebookSetup.jsp +G app/ui/src/webapp/assignmentDetails.jsp +U service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml +U service/hibernate/src/java/org/sakaiproject/tool/gradebook/Assignment.java +U service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java +U service/hibernate/src/jaU service/hibernate/src/jaU service/hibernate/src/jaU service/hibernate/src/jaU service/hiberndebook/GradebookServiceHibernateImpl.java +U service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +U service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java + +svn resolved app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +Resolved conflicted state of app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java + +svn resolved app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +Resolved conflicted state of app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties + +svn log -r 37479 +------------------------------------------------------------------------ +r37479 | cwen@iupui.edu | 2007-10-29 14:30:26 -0400 (Mon, 29 Oct 2007) | 5 lines + +http://128.196.219.68/jira/browse/SAK-10427 +SAK-10427 +=> +allow creating non-calculated items without include those +items for course grade calculation or stats. +------------------------------------------------------------------------ + +svn merge -r39393:39392 https://source.sakaiprojectsvn merge -r39393:39392 https://source.sakaiprojectsvn merge -r39393:39392 https://sousiness/impl/GradebookManagerHibernateImpl.java + +svn resolved app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Resolved conflicted state of app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java + +svn log -r 39393 +------------------------------------------------------------------------ +r39393 | wagnermr@iupui.edu | 2007-12-17 15:20:23 -0500 (Mon, 17 Dec 2007) | 3 lines + +SAK-12494 +http://bugs.sakaiproject.org/jira/browse/SAK-12494 +Viewing a non-calculated gb item in a gradebook with grade entry by letter or % results in stack trace +------------------------------------------------------------------------ + +svn merge -r39362:39361 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java + +svn log -r 39362 +------------------------------------------------------------------------ +r39362 | rjlowe@iupui.edu | 2007-12-17 10:53:09 -0500 (Mon, 17 Dec 2007) | 1 line + +SAK-12465 - Non-Standard grades are not showing up in GB table +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 15:24:04 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 15:24:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 15:24:04 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id m03KO3LK008561; + Thu, 3 Jan 2008 15:24:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 477D445B.21D7.20425 ; + 3 Jan 2008 15:23:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D0FB7B93BE; + Thu, 3 Jan 2008 20:23:42 +0000 (GMT) +Message-ID: <200801032022.m03KMFfc004903@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 222 + for ; + Thu, 3 Jan 2008 20:23:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3BEE842AC7 + for ; Thu, 3 Jan 2008 20:23:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KMFYH004905 + for ; Thu, 3 Jan 2008 15:22:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KMFfc004903 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:22:15 -0500 +Date: Thu, 3 Jan 2008 15:22:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39737 - assignment/branches/post-2-4 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 15:24:04 2008 +X-DSPAM-Confidence: 0.9875 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39737 + +Author: zqian@umich.edu +Date: 2008-01-03 15:22:14 -0500 (Thu, 03 Jan 2008) +New Revision: 39737 + +Modified: +assignment/branches/post-2-4/runconversion_readme.txt +Log: +update the runconversion_readme.txt file + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 14:32:46 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 14:32:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 14:32:46 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id m03JWiQk001230; + Thu, 3 Jan 2008 14:32:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477D383C.D9FDA.777 ; + 3 Jan 2008 14:32:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 68EFFB9850; + Thu, 3 Jan 2008 19:32:09 +0000 (GMT) +Message-ID: <200801031930.m03JUkCZ004841@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 784 + for ; + Thu, 3 Jan 2008 19:31:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 39EA942AB7 + for ; Thu, 3 Jan 2008 19:31:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03JUks6004843 + for ; Thu, 3 Jan 2008 14:30:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03JUkCZ004841 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 14:30:46 -0500 +Date: Thu, 3 Jan 2008 14:30:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39736 - assignment/branches/sakai_2-3-x/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 14:32:46 2008 +X-DSPAM-Confidence: 0.9867 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39736 + +Author: zqian@umich.edu +Date: 2008-01-03 14:30:45 -0500 (Thu, 03 Jan 2008) +New Revision: 39736 + +Modified: +assignment/branches/sakai_2-3-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +fix to SAK-12599:year limit in Assignment tool 2.4.1 version + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 13:53:51 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:53:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:53:52 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by brazil.mail.umich.edu () with ESMTP id m03IrpLa025048; + Thu, 3 Jan 2008 13:53:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477D2F36.8F808.4392 ; + 3 Jan 2008 13:53:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 47217B9815; + Thu, 3 Jan 2008 18:36:35 +0000 (GMT) +Message-ID: <200801031849.m03InajQ004753@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365 + for ; + Thu, 3 Jan 2008 18:36:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6897C42AC8 + for ; Thu, 3 Jan 2008 18:50:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03InbUO004755 + for ; Thu, 3 Jan 2008 13:49:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03InajQ004753 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:49:37 -0500 +Date: Thu, 3 Jan 2008 13:49:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39735 - assignment/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:53:51 2008 +X-DSPAM-Confidence: 0.9903 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39735 + +Author: zqian@umich.edu +Date: 2008-01-03 13:49:35 -0500 (Thu, 03 Jan 2008) +New Revision: 39735 + +Removed: +assignment/branches/post-2-4-umich/ +Log: +the post-2-4-umich branch has been merged back to post-2-4 and is no longer needed. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Jan 3 13:39:06 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:39:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:39:06 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by casino.mail.umich.edu () with ESMTP id m03Id5EQ009413; + Thu, 3 Jan 2008 13:39:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477D2BBD.8B5A.10166 ; + 3 Jan 2008 13:38:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C5DF9B974F; + Thu, 3 Jan 2008 18:29:50 +0000 (GMT) +Message-ID: <200801031837.m03IbPY7004727@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220 + for ; + Thu, 3 Jan 2008 18:29:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE73242AB0 + for ; Thu, 3 Jan 2008 18:38:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03IbPfc004729 + for ; Thu, 3 Jan 2008 13:37:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03IbPY7004727 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:37:25 -0500 +Date: Thu, 3 Jan 2008 13:37:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39734 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:39:06 2008 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39734 + +Author: mmmay@indiana.edu +Date: 2008-01-03 13:37:24 -0500 (Thu, 03 Jan 2008) +New Revision: 39734 + +Modified: +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +svn merge -r 39397:39398 https://source.sakaiproject.org/svn/gradebook/trunk +U service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39397:39398 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39398 | wagnermr@iupui.edu | 2007-12-17 16:29:35 -0500 (Mon, 17 Dec 2007) | 3 lines + +SAK-10606 +http://bugs.sakaiproject.org/jira/browse/SAK-10606 +GB authorization error in logs when student accesses Forums +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 13:20:53 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:20:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:20:53 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by mission.mail.umich.edu () with ESMTP id m03IKrTF010248; + Thu, 3 Jan 2008 13:20:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 477D2778.AE112.13062 ; + 3 Jan 2008 13:20:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7E449B9739; + Thu, 3 Jan 2008 18:11:34 +0000 (GMT) +Message-ID: <200801031819.m03IJA7j004645@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 94 + for ; + Thu, 3 Jan 2008 18:11:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C49AB42AB7 + for ; Thu, 3 Jan 2008 18:20:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03IJAIX004647 + for ; Thu, 3 Jan 2008 13:19:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03IJA7j004645 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:19:10 -0500 +Date: Thu, 3 Jan 2008 13:19:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39733 - gradebook/branches/SAK-10427/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:20:53 2008 +X-DSPAM-Confidence: 0.9907 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39733 + +Author: cwen@iupui.edu +Date: 2008-01-03 13:19:09 -0500 (Thu, 03 Jan 2008) +New Revision: 39733 + +Modified: +gradebook/branches/SAK-10427/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +svn merge -c 39728 https://source.sakaiproject.org/svn/gradebook/trunk +U app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java + +svn log -r 39728 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39728 | cwen@iupui.edu | 2008-01-03 13:06:41 -0500 (Thu, 03 Jan 2008) | 4 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-12005 +=> +fix GB test again and turn on maven2 unit test for +build. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 13:17:07 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:17:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:17:07 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id m03IH6km021589; + Thu, 3 Jan 2008 13:17:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477D269B.D3006.14486 ; + 3 Jan 2008 13:17:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CB4F1B9778; + Thu, 3 Jan 2008 18:07:59 +0000 (GMT) +Message-ID: <200801031815.m03IFbue004618@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 388 + for ; + Thu, 3 Jan 2008 18:07:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 915EA42AB7 + for ; Thu, 3 Jan 2008 18:16:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03IFbMM004620 + for ; Thu, 3 Jan 2008 13:15:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03IFbue004618 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:15:37 -0500 +Date: Thu, 3 Jan 2008 13:15:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39732 - site/branches/sakai_2-5-x/site-tool/tool/src/webapp/vm/adminsites +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:17:07 2008 +X-DSPAM-Confidence: 0.9886 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39732 + +Author: zqian@umich.edu +Date: 2008-01-03 13:15:35 -0500 (Thu, 03 Jan 2008) +New Revision: 39732 + +Modified: +site/branches/sakai_2-5-x/site-tool/tool/src/webapp/vm/adminsites/chef_sites_list.vm +Log: +merge fix to SAK-12431 into 2-5-x branch: svn merge -r 39728:39729 https://source.sakaiproject.org/svn/site/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 13:14:34 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:14:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:14:34 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id m03IEYEe025569; + Thu, 3 Jan 2008 13:14:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477D2602.8D8BF.8789 ; + 3 Jan 2008 13:14:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7E24AB975A; + Thu, 3 Jan 2008 18:06:09 +0000 (GMT) +Message-ID: <200801031812.m03ICrFH004606@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710 + for ; + Thu, 3 Jan 2008 18:05:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4098942AB7 + for ; Thu, 3 Jan 2008 18:14:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ICs7e004608 + for ; Thu, 3 Jan 2008 13:12:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ICrFH004606 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:12:53 -0500 +Date: Thu, 3 Jan 2008 13:12:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39731 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitebrowser +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:14:34 2008 +X-DSPAM-Confidence: 0.8495 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39731 + +Author: zqian@umich.edu +Date: 2008-01-03 13:12:52 -0500 (Thu, 03 Jan 2008) +New Revision: 39731 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_list.vm +Log: +merge fix to SAK-12431 into 2-5-x branch: svn merge -r 39729:39730 https://source.sakaiproject.org/svn/site-manage/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 13:14:30 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:14:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:14:30 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by score.mail.umich.edu () with ESMTP id m03IEUkm018632; + Thu, 3 Jan 2008 13:14:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477D25E9.9CF47.16689 ; + 3 Jan 2008 13:14:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 22812B975D; + Thu, 3 Jan 2008 18:05:39 +0000 (GMT) +Message-ID: <200801031807.m03I7eg2004582@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 43 + for ; + Thu, 3 Jan 2008 18:03:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 763D942AB7 + for ; Thu, 3 Jan 2008 18:08:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I7ePp004584 + for ; Thu, 3 Jan 2008 13:07:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I7eg2004582 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:07:40 -0500 +Date: Thu, 3 Jan 2008 13:07:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39730 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitebrowser +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:14:30 2008 +X-DSPAM-Confidence: 0.7606 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39730 + +Author: zqian@umich.edu +Date: 2008-01-03 13:07:38 -0500 (Thu, 03 Jan 2008) +New Revision: 39730 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_list.vm +Log: +fix to SAK-12431:When site doesn't have a creator velocity variable is outputted + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 13:14:19 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:14:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:14:19 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id m03IEIbb019289; + Thu, 3 Jan 2008 13:14:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477D25ED.74FA0.14767 ; + 3 Jan 2008 13:14:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5B632B975E; + Thu, 3 Jan 2008 18:05:40 +0000 (GMT) +Message-ID: <200801031806.m03I6g8Y004558@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997 + for ; + Thu, 3 Jan 2008 18:02:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7D80442AB7 + for ; Thu, 3 Jan 2008 18:07:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I6gww004560 + for ; Thu, 3 Jan 2008 13:06:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I6g8Y004558 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:06:42 -0500 +Date: Thu, 3 Jan 2008 13:06:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39728 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:14:19 2008 +X-DSPAM-Confidence: 0.9875 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39728 + +Author: cwen@iupui.edu +Date: 2008-01-03 13:06:41 -0500 (Thu, 03 Jan 2008) +New Revision: 39728 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12005 +=> +fix GB test again and turn on maven2 unit test for +build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 13:13:58 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:13:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:13:58 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id m03IDveu025155; + Thu, 3 Jan 2008 13:13:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 477D25DD.49C16.12950 ; + 3 Jan 2008 13:13:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A2371B9739; + Thu, 3 Jan 2008 18:05:29 +0000 (GMT) +Message-ID: <200801031806.m03I6pEt004570@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 89 + for ; + Thu, 3 Jan 2008 18:02:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5773F42AB7 + for ; Thu, 3 Jan 2008 18:07:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I6pVt004572 + for ; Thu, 3 Jan 2008 13:06:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I6pEt004570 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:06:51 -0500 +Date: Thu, 3 Jan 2008 13:06:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39729 - site/trunk/site-tool/tool/src/webapp/vm/adminsites +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:13:58 2008 +X-DSPAM-Confidence: 0.8489 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39729 + +Author: zqian@umich.edu +Date: 2008-01-03 13:06:49 -0500 (Thu, 03 Jan 2008) +New Revision: 39729 + +Modified: +site/trunk/site-tool/tool/src/webapp/vm/adminsites/chef_sites_list.vm +Log: +fix to SAK-12431:When site doesn't have a creator velocity variable is outputted + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 13:13:32 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 13:13:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 13:13:32 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by score.mail.umich.edu () with ESMTP id m03IDVEW018260; + Thu, 3 Jan 2008 13:13:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 477D25C5.EFCFE.9183 ; + 3 Jan 2008 13:13:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D308EB9700; + Thu, 3 Jan 2008 18:04:40 +0000 (GMT) +Message-ID: <200801031804.m03I4lVU004546@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 571 + for ; + Thu, 3 Jan 2008 18:02:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8638E42AB7 + for ; Thu, 3 Jan 2008 18:05:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I4lVj004548 + for ; Thu, 3 Jan 2008 13:04:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I4lVU004546 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:04:47 -0500 +Date: Thu, 3 Jan 2008 13:04:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39727 - gradebook/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 13:13:32 2008 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39727 + +Author: cwen@iupui.edu +Date: 2008-01-03 13:04:46 -0500 (Thu, 03 Jan 2008) +New Revision: 39727 + +Added: +gradebook/branches/SAK-10427/ +Log: +create branch for SAK-10427. as of r39722. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Jan 3 12:49:07 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 12:49:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 12:49:07 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by jacknife.mail.umich.edu () with ESMTP id m03Hn6EJ004324; + Thu, 3 Jan 2008 12:49:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477D1FFB.C7CA6.21000 ; + 3 Jan 2008 12:48:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AD193B9598; + Thu, 3 Jan 2008 17:48:37 +0000 (GMT) +Message-ID: <200801031747.m03HlB1h004532@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 324 + for ; + Thu, 3 Jan 2008 17:48:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9DF5342AA1 + for ; Thu, 3 Jan 2008 17:48:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HlB9J004534 + for ; Thu, 3 Jan 2008 12:47:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HlB1h004532 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:47:11 -0500 +Date: Thu, 3 Jan 2008 12:47:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39726 - component/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 12:49:07 2008 +X-DSPAM-Confidence: 0.7549 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39726 + +Author: ray@media.berkeley.edu +Date: 2008-01-03 12:47:08 -0500 (Thu, 03 Jan 2008) +New Revision: 39726 + +Modified: +component/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +Merge -r38279:39599 from trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 12:32:45 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 12:32:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 12:32:45 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by awakenings.mail.umich.edu () with ESMTP id m03HWiim011776; + Thu, 3 Jan 2008 12:32:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477D1C2E.ACBA7.29737 ; + 3 Jan 2008 12:32:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 87832B96A1; + Thu, 3 Jan 2008 17:32:14 +0000 (GMT) +Message-ID: <200801031730.m03HUeEg004479@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 21 + for ; + Thu, 3 Jan 2008 17:31:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1D56842A72 + for ; Thu, 3 Jan 2008 17:31:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HUe0M004481 + for ; Thu, 3 Jan 2008 12:30:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HUeEg004479 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:30:40 -0500 +Date: Thu, 3 Jan 2008 12:30:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39725 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 12:32:45 2008 +X-DSPAM-Confidence: 0.9877 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39725 + +Author: zqian@umich.edu +Date: 2008-01-03 12:30:37 -0500 (Thu, 03 Jan 2008) +New Revision: 39725 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +merge the fix to SAK-12421 into 2-5-x branch: svn merge -r 39722:39723 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 12:28:03 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 12:28:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 12:28:03 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id m03HS2KJ023366; + Thu, 3 Jan 2008 12:28:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 477D1B1A.6689C.7216 ; + 3 Jan 2008 12:27:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 42C1DB964E; + Thu, 3 Jan 2008 17:27:54 +0000 (GMT) +Message-ID: <200801031726.m03HQUQ6004462@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 295 + for ; + Thu, 3 Jan 2008 17:27:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C8CA01D62B + for ; Thu, 3 Jan 2008 17:27:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HQU97004464 + for ; Thu, 3 Jan 2008 12:26:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HQUQ6004462 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:26:30 -0500 +Date: Thu, 3 Jan 2008 12:26:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39724 - in assignment/branches/post-2-4: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 12:28:03 2008 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39724 + +Author: zqian@umich.edu +Date: 2008-01-03 12:26:25 -0500 (Thu, 03 Jan 2008) +New Revision: 39724 + +Modified: +assignment/branches/post-2-4/assignment-bundles/assignment.properties +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +merge the fix to SAK-12421 into post-2-4 branch: svn merge -r 39722:39723 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 12:24:50 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 12:24:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 12:24:50 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by godsend.mail.umich.edu () with ESMTP id m03HOnLx001048; + Thu, 3 Jan 2008 12:24:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 477D1A5B.85549.28589 ; + 3 Jan 2008 12:24:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6E7B9B961F; + Thu, 3 Jan 2008 17:24:45 +0000 (GMT) +Message-ID: <200801031723.m03HNIp2004441@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859 + for ; + Thu, 3 Jan 2008 17:24:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E41C41D62B + for ; Thu, 3 Jan 2008 17:24:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HNIPD004443 + for ; Thu, 3 Jan 2008 12:23:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HNIp2004441 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:23:18 -0500 +Date: Thu, 3 Jan 2008 12:23:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39723 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 12:24:50 2008 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39723 + +Author: zqian@umich.edu +Date: 2008-01-03 12:23:13 -0500 (Thu, 03 Jan 2008) +New Revision: 39723 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +fix to SAK-12421: grading settings error cause assignmets to be dropped from gradebook + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Jan 3 11:44:41 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 11:44:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 11:44:41 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id m03Gie0u020858; + Thu, 3 Jan 2008 11:44:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 477D10EC.6EFE6.11423 ; + 3 Jan 2008 11:44:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B598AB9592; + Thu, 3 Jan 2008 16:44:31 +0000 (GMT) +Message-ID: <200801031643.m03Gh1r2004386@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 464 + for ; + Thu, 3 Jan 2008 16:44:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4765438EC2 + for ; Thu, 3 Jan 2008 16:44:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03Gh29d004388 + for ; Thu, 3 Jan 2008 11:43:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03Gh1r2004386 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 11:43:01 -0500 +Date: Thu, 3 Jan 2008 11:43:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39722 - in gradebook/trunk/app: business/src/java/org/sakaiproject/tool/gradebook/business/impl standalone-app +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 11:44:41 2008 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39722 + +Author: cwen@iupui.edu +Date: 2008-01-03 11:43:00 -0500 (Thu, 03 Jan 2008) +New Revision: 39722 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/standalone-app/pom.xml +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12005 +=> +fix GB test again and turn on maven2 unit test for +build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 11:28:41 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 11:28:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 11:28:41 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by godsend.mail.umich.edu () with ESMTP id m03GSfDF002740; + Thu, 3 Jan 2008 11:28:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 477D0D31.5AE7.8943 ; + 3 Jan 2008 11:28:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 03C205ABD7; + Thu, 3 Jan 2008 16:28:34 +0000 (GMT) +Message-ID: <200801031627.m03GR5UM004357@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 898 + for ; + Thu, 3 Jan 2008 16:28:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0DD7B42A42 + for ; Thu, 3 Jan 2008 16:28:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03GR5W6004359 + for ; Thu, 3 Jan 2008 11:27:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03GR5UM004357 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 11:27:05 -0500 +Date: Thu, 3 Jan 2008 11:27:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39721 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 11:28:41 2008 +X-DSPAM-Confidence: 0.8493 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39721 + +Author: zqian@umich.edu +Date: 2008-01-03 11:27:03 -0500 (Thu, 03 Jan 2008) +New Revision: 39721 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm +Log: +fix to SAK-12324:Ability to limit course creation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Jan 3 11:12:18 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 11:12:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 11:12:18 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by awakenings.mail.umich.edu () with ESMTP id m03GCHhZ027832; + Thu, 3 Jan 2008 11:12:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477D095B.8A20D.22970 ; + 3 Jan 2008 11:12:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 613D7B953F; + Thu, 3 Jan 2008 16:11:35 +0000 (GMT) +Message-ID: <200801031610.m03GAkl3004326@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 578 + for ; + Thu, 3 Jan 2008 16:11:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B6B942A72 + for ; Thu, 3 Jan 2008 16:11:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03GAkqT004328 + for ; Thu, 3 Jan 2008 11:10:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03GAkl3004326 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 11:10:46 -0500 +Date: Thu, 3 Jan 2008 11:10:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39720 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/bundle samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 11:12:18 2008 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39720 + +Author: gopal.ramasammycook@gmail.com +Date: 2008-01-03 11:10:02 -0500 (Thu, 03 Jan 2008) +New Revision: 39720 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreListener.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +Log: +SAK-12065 Group Release. Gopal + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Jan 3 10:31:13 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:31:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:31:13 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id m03FVDYb007589; + Thu, 3 Jan 2008 10:31:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 477CFFAB.BC538.9751 ; + 3 Jan 2008 10:30:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F2DF3B94C6; + Thu, 3 Jan 2008 15:28:34 +0000 (GMT) +Message-ID: <200801031528.m03FSpXg004260@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42 + for ; + Thu, 3 Jan 2008 15:28:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 65FB63EA95 + for ; Thu, 3 Jan 2008 15:29:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FSpDo004262 + for ; Thu, 3 Jan 2008 10:28:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FSpXg004260 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:28:51 -0500 +Date: Thu, 3 Jan 2008 10:28:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39719 - announcement/trunk/announcement-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:31:13 2008 +X-DSPAM-Confidence: 0.8479 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39719 + +Author: gsilver@umich.edu +Date: 2008-01-03 10:28:50 -0500 (Thu, 03 Jan 2008) +New Revision: 39719 + +Modified: +announcement/trunk/announcement-tool/tool/src/bundle/announcement.properties +Log: +SAK-12590 +http://jira.sakaiproject.org/jira/browse/SAK-12590 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Jan 3 10:28:16 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:28:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:28:16 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id m03FSGu7002980; + Thu, 3 Jan 2008 10:28:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477CFF09.6EFD1.11661 ; + 3 Jan 2008 10:28:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2365FB94AD; + Thu, 3 Jan 2008 15:26:16 +0000 (GMT) +Message-ID: <200801031526.m03FQhmF004248@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 39 + for ; + Thu, 3 Jan 2008 15:25:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 60A9A3EA95 + for ; Thu, 3 Jan 2008 15:27:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FQhu3004250 + for ; Thu, 3 Jan 2008 10:26:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FQhmF004248 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:26:43 -0500 +Date: Thu, 3 Jan 2008 10:26:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39718 - calendar/trunk/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:28:16 2008 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39718 + +Author: gsilver@umich.edu +Date: 2008-01-03 10:26:42 -0500 (Thu, 03 Jan 2008) +New Revision: 39718 + +Modified: +calendar/trunk/calendar-tool/tool/src/bundle/calendar.properties +Log: +SAK-12591 +http://jira.sakaiproject.org/jira/browse/SAK-12591 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Thu Jan 3 10:23:05 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:23:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:23:05 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by panther.mail.umich.edu () with ESMTP id m03FN42d026581; + Thu, 3 Jan 2008 10:23:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477CFDCF.5338D.4507 ; + 3 Jan 2008 10:22:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D222DB9497; + Thu, 3 Jan 2008 15:20:42 +0000 (GMT) +Message-ID: <200801031521.m03FLXtP004230@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 578 + for ; + Thu, 3 Jan 2008 15:20:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D888042A42 + for ; Thu, 3 Jan 2008 15:22:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FLYv5004232 + for ; Thu, 3 Jan 2008 10:21:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FLXtP004230 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:21:33 -0500 +Date: Thu, 3 Jan 2008 10:21:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39717 - in polls/branches/sakai_2-4-x/tool: . src/bundle/org/sakaiproject/poll/bundle src/java/org/sakaiproject/poll/tool/params src/java/org/sakaiproject/poll/tool/validators src/webapp/WEB-INF src/webapp/WEB-INF/classes +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:23:05 2008 +X-DSPAM-Confidence: 0.9928 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39717 + +Author: stuart.freeman@et.gatech.edu +Date: 2008-01-03 10:21:29 -0500 (Thu, 03 Jan 2008) +New Revision: 39717 + +Added: +polls/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/classes/ +polls/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/classes/log4j.properties +Removed: +polls/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/classes/log4j.properties +Modified: +polls/branches/sakai_2-4-x/tool/pom.xml +polls/branches/sakai_2-4-x/tool/project.xml +polls/branches/sakai_2-4-x/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties +polls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java +polls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java +Log: +SAK-11704 don't allow creation of polls with empty questions + +--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)-- +--(0933:Thu,03 Jan 08:$)-- svn merge -r35792:35793 https://source.sakaiproject.org/svn/polls/trunk . +C tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java +C tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties +Skipped missing target: 'tool/src/webapp/classes' +A tool/src/webapp/WEB-INF/classes +A tool/src/webapp/WEB-INF/classes/log4j.properties +--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)-- +--(0934:Thu,03 Jan 08:$)-- ^merge^log +svn log -r35792:35793 https://source.sakaiproject.org/svn/polls/trunk . +------------------------------------------------------------------------ +r35793 | david.horwitz@uct.ac.za | 2007-09-26 05:26:53 -0400 (Wed, 26 Sep 2007) | 2 lines + +SAK-11704 Validate for empty question text +SAK-10987 correct placement of option validation + supress stack trace +------------------------------------------------------------------------ +--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)-- +--(1014:Thu,03 Jan 08:$)-- svn merge -r38152:38153 https://source.sakaiproject.org/svn/polls/trunk . +U tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java +--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)-- +--(1015:Thu,03 Jan 08:$)-- ^merge^log +svn log -r38152:38153 https://source.sakaiproject.org/svn/polls/trunk . +------------------------------------------------------------------------ +r38153 | david.horwitz@uct.ac.za | 2007-11-14 01:53:07 -0500 (Wed, 14 Nov 2007) | 1 line + +SAK-11704 trim value before testing for being empty +------------------------------------------------------------------------ +--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)-- +--(1016:Thu,03 Jan 08:$)-- svn merge -r39547:39548 https://source.sakaiproject.org/svn/polls/trunk . +G tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java +C tool/pom.xml +--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)-- +--(1017:Thu,03 Jan 08:$)-- ^merge^log +svn log -r39547:39548 https://source.sakaiproject.org/svn/polls/trunk . +------------------------------------------------------------------------ +r39548 | david.horwitz@uct.ac.za | 2007-12-20 10:00:05 -0500 (Thu, 20 Dec 2007) | 1 line + +SAK-11704 now check for the empty strings from fckeditor +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 10:22:18 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:22:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:22:18 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id m03FMHbh026139; + Thu, 3 Jan 2008 10:22:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 477CFDA4.17A4A.7348 ; + 3 Jan 2008 10:22:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D50FEB9487; + Thu, 3 Jan 2008 15:19:38 +0000 (GMT) +Message-ID: <200801031519.m03FJsfm004218@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 557 + for ; + Thu, 3 Jan 2008 15:19:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9640842A42 + for ; Thu, 3 Jan 2008 15:21:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FJsAY004220 + for ; Thu, 3 Jan 2008 10:19:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FJsfm004218 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:19:54 -0500 +Date: Thu, 3 Jan 2008 10:19:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39716 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:22:18 2008 +X-DSPAM-Confidence: 0.9898 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39716 + +Author: zqian@umich.edu +Date: 2008-01-03 10:19:53 -0500 (Thu, 03 Jan 2008) +New Revision: 39716 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-12532:Better log message when no setup.request from site setup. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Jan 3 10:08:15 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:08:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:08:15 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by sleepers.mail.umich.edu () with ESMTP id m03F8FlV014814; + Thu, 3 Jan 2008 10:08:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 477CFA3D.3F06F.810 ; + 3 Jan 2008 10:07:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 47CA15ABD7; + Thu, 3 Jan 2008 15:07:40 +0000 (GMT) +Message-ID: <200801031506.m03F6Ctn004182@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 400 + for ; + Thu, 3 Jan 2008 15:07:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A8B81429D3 + for ; Thu, 3 Jan 2008 15:07:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F6CJx004184 + for ; Thu, 3 Jan 2008 10:06:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F6Ctn004182 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:06:12 -0500 +Date: Thu, 3 Jan 2008 10:06:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39715 - site-manage/trunk/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:08:15 2008 +X-DSPAM-Confidence: 0.9855 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39715 + +Author: gsilver@umich.edu +Date: 2008-01-03 10:06:11 -0500 (Thu, 03 Jan 2008) +New Revision: 39715 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/bundle/sitebrowser.properties +Log: +SAK-12594 +http://jira.sakaiproject.org/jira/browse/SAK-12594 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Jan 3 10:06:50 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:06:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:06:50 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id m03F6nqE012415; + Thu, 3 Jan 2008 10:06:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477CFA02.482EF.2284 ; + 3 Jan 2008 10:06:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F7EEB9464; + Thu, 3 Jan 2008 15:06:42 +0000 (GMT) +Message-ID: <200801031505.m03F534R004169@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 510 + for ; + Thu, 3 Jan 2008 15:06:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 298DE42A2F + for ; Thu, 3 Jan 2008 15:06:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F53Q1004171 + for ; Thu, 3 Jan 2008 10:05:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F534R004169 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:05:03 -0500 +Date: Thu, 3 Jan 2008 10:05:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39714 - site-manage/trunk/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:06:50 2008 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39714 + +Author: gsilver@umich.edu +Date: 2008-01-03 10:05:02 -0500 (Thu, 03 Jan 2008) +New Revision: 39714 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/bundle/membership.properties +Log: +SAK-12593 +http://jira.sakaiproject.org/jira/browse/SAK-12593 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Jan 3 10:05:08 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:05:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:05:08 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id m03F578A007456; + Thu, 3 Jan 2008 10:05:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477CF99E.75B7.2438 ; + 3 Jan 2008 10:05:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7B30FAE3A5; + Thu, 3 Jan 2008 15:05:07 +0000 (GMT) +Message-ID: <200801031503.m03F3cRt004144@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 695 + for ; + Thu, 3 Jan 2008 15:04:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DCFD7429D3 + for ; Thu, 3 Jan 2008 15:04:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F3c1c004146 + for ; Thu, 3 Jan 2008 10:03:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F3cRt004144 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:03:38 -0500 +Date: Thu, 3 Jan 2008 10:03:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39713 - site-manage/trunk/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:05:08 2008 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39713 + +Author: gsilver@umich.edu +Date: 2008-01-03 10:03:36 -0500 (Thu, 03 Jan 2008) +New Revision: 39713 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +Log: +SAK-12523 +http://jira.sakaiproject.org/jira/browse/SAK-12523 +- left moot (unused) entries commented for now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Jan 3 10:02:34 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 10:02:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 10:02:34 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by awakenings.mail.umich.edu () with ESMTP id m03F2Xgc020626; + Thu, 3 Jan 2008 10:02:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 477CF903.80B22.2743 ; + 3 Jan 2008 10:02:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9A203B9475; + Thu, 3 Jan 2008 15:02:32 +0000 (GMT) +Message-ID: <200801031501.m03F11ZP004123@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 726 + for ; + Thu, 3 Jan 2008 15:02:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2F730429D3 + for ; Thu, 3 Jan 2008 15:02:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F117c004126 + for ; Thu, 3 Jan 2008 10:01:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F11ZP004123 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:01:01 -0500 +Date: Thu, 3 Jan 2008 10:01:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39712 - in authz/trunk/authz-tool: . tool tool/src/bundle tool/src/java/org/sakaiproject/authz/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 10:02:34 2008 +X-DSPAM-Confidence: 0.9892 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39712 + +Author: zqian@umich.edu +Date: 2008-01-03 10:00:58 -0500 (Thu, 03 Jan 2008) +New Revision: 39712 + +Modified: +authz/trunk/authz-tool/.classpath +authz/trunk/authz-tool/tool/pom.xml +authz/trunk/authz-tool/tool/src/bundle/authz-tool.properties +authz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java +Log: +fix to SAK-9996:Cannot save realm and no warning to user if invalid provider id is entered: now show the alert message in UI and prevent from saving when the entered provider id is not valid. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Jan 3 09:31:30 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 09:31:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 09:31:30 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id m03EVTiv001667; + Thu, 3 Jan 2008 09:31:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 477CF1BA.DF8C2.8558 ; + 3 Jan 2008 09:31:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 590D86144A; + Thu, 3 Jan 2008 14:31:21 +0000 (GMT) +Message-ID: <200801031429.m03ETqAT004022@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 847 + for ; + Thu, 3 Jan 2008 14:31:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 033EA3FAD8 + for ; Thu, 3 Jan 2008 14:30:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ETqm6004024 + for ; Thu, 3 Jan 2008 09:29:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ETqAT004022 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:29:52 -0500 +Date: Thu, 3 Jan 2008 09:29:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39711 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 09:31:30 2008 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39711 + +Author: wagnermr@iupui.edu +Date: 2008-01-03 09:29:50 -0500 (Thu, 03 Jan 2008) +New Revision: 39711 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +remove previously added getAllGradebookItems because unnecessary + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Thu Jan 3 09:25:07 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 09:25:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 09:25:07 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id m03EP72M031643; + Thu, 3 Jan 2008 09:25:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 477CF03C.1B18C.30257 ; + 3 Jan 2008 09:25:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 361DD6AA2F; + Thu, 3 Jan 2008 14:25:05 +0000 (GMT) +Message-ID: <200801031423.m03ENc58004008@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 701 + for ; + Thu, 3 Jan 2008 14:24:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CC2C03FAD8 + for ; Thu, 3 Jan 2008 14:24:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ENcqf004010 + for ; Thu, 3 Jan 2008 09:23:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ENc58004008 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:23:38 -0500 +Date: Thu, 3 Jan 2008 09:23:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39710 - reference/branches/sakai_2-4-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 09:25:07 2008 +X-DSPAM-Confidence: 0.8518 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39710 + +Author: stuart.freeman@et.gatech.edu +Date: 2008-01-03 09:23:36 -0500 (Thu, 03 Jan 2008) +New Revision: 39710 + +Added: +reference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_mysql_conversion_005.sql +reference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_oracle_conversion_005.sql +Log: +SAK-12429 gradebook performance issue + +--(0920:Thu,03 Jan 08:$)-- vi sakai_2_4_0-2_4_x_mysql_conversion_005.sql +--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)-- +--(0921:Thu,03 Jan 08:$)-- vi sakai_2_4_0-2_4_x_oracle_conversion_005.sql +--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)-- +--(0922:Thu,03 Jan 08:$)-- svn add !$ +svn add sakai_2_4_0-2_4_x_oracle_conversion_005.sql +A sakai_2_4_0-2_4_x_oracle_conversion_005.sql +--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)-- +--(0923:Thu,03 Jan 08:$)-- ^oracle^mysql +svn add sakai_2_4_0-2_4_x_mysql_conversion_005.sql +A sakai_2_4_0-2_4_x_mysql_conversion_005.sql +--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)-- +--(0923:Thu,03 Jan 08:$)-- svn log -r39153 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r39153 | cwen@iupui.edu | 2007-12-12 15:45:36 -0500 (Wed, 12 Dec 2007) | 1 line + +SAK-12429 => add index for gradebook. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From tnguyen@iupui.edu Thu Jan 3 09:22:37 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 09:22:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 09:22:37 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id m03EMbM0021928; + Thu, 3 Jan 2008 09:22:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477CEFA7.4BD76.20123 ; + 3 Jan 2008 09:22:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 34DBBB93FC; + Thu, 3 Jan 2008 14:22:34 +0000 (GMT) +Message-ID: <200801031420.m03EKxOB003996@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137 + for ; + Thu, 3 Jan 2008 14:22:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 35CFB3875D + for ; Thu, 3 Jan 2008 14:22:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03EKxoR003998 + for ; Thu, 3 Jan 2008 09:20:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03EKxOB003996 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:20:59 -0500 +Date: Thu, 3 Jan 2008 09:20:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: tnguyen@iupui.edu +Subject: [sakai] svn commit: r39709 - oncourse/trunk/src/siterequest/src/java/edu/iu/oncourse/siterequest +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 09:22:37 2008 +X-DSPAM-Confidence: 0.8483 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39709 + +Author: tnguyen@iupui.edu +Date: 2008-01-03 09:20:58 -0500 (Thu, 03 Jan 2008) +New Revision: 39709 + +Modified: +oncourse/trunk/src/siterequest/src/java/edu/iu/oncourse/siterequest/SiteRequestManager.java +Log: +ONC-244 - Site Request Form / Add department CTL to the department list dropdown. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Thu Jan 3 09:15:57 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 09:15:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 09:15:57 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by panther.mail.umich.edu () with ESMTP id m03EFv2W020903; + Thu, 3 Jan 2008 09:15:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477CEE17.CE69E.15998 ; + 3 Jan 2008 09:15:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 87E27B93DC; + Thu, 3 Jan 2008 14:15:50 +0000 (GMT) +Message-ID: <200801031414.m03EEOKY003968@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 292 + for ; + Thu, 3 Jan 2008 14:15:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 97A6242A16 + for ; Thu, 3 Jan 2008 14:15:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03EEO8f003970 + for ; Thu, 3 Jan 2008 09:14:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03EEOKY003968 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:14:24 -0500 +Date: Thu, 3 Jan 2008 09:14:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39708 - in gradebook/branches/sakai_2-4-x: app/business/src/sql/mysql app/business/src/sql/oracle service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 09:15:57 2008 +X-DSPAM-Confidence: 0.8524 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39708 + +Author: stuart.freeman@et.gatech.edu +Date: 2008-01-03 09:14:20 -0500 (Thu, 03 Jan 2008) +New Revision: 39708 + +Added: +gradebook/branches/sakai_2-4-x/app/business/src/sql/mysql/SAK-12429.sql +gradebook/branches/sakai_2-4-x/app/business/src/sql/oracle/SAK-12429.sql +Modified: +gradebook/branches/sakai_2-4-x/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml +Log: +SAK-12429 gradebook performance issue + +--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)-- +--(0859:Thu,03 Jan 08:$)-- svn merge -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk . +A app/business/src/sql/mysql/SAK-12429.sql +A app/business/src/sql/oracle/SAK-12429.sql +--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)-- +--(0859:Thu,03 Jan 08:$)-- ^merge^log +svn log -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk . +------------------------------------------------------------------------ +r39137 | cwen@iupui.edu | 2007-12-12 10:05:59 -0500 (Wed, 12 Dec 2007) | 1 line + +SAK-12429 => add index for improving performance. +------------------------------------------------------------------------ +--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)-- +--(0859:Thu,03 Jan 08:$)-- svn merge -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk . +U service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml +--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)-- +--(0900:Thu,03 Jan 08:$)-- ^merge^log +svn log -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk . +------------------------------------------------------------------------ +r39138 | wagnermr@iupui.edu | 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007) | 3 lines + +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz +------------------------------------------------------------------------ +r39139 | cwen@iupui.edu | 2007-12-12 10:41:58 -0500 (Wed, 12 Dec 2007) | 2 lines + +SAK-12429 => +add index to hibernate mapping. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Jan 3 09:13:52 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 09:13:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 09:13:52 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id m03EDpvG027055; + Thu, 3 Jan 2008 09:13:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 477CED96.34B62.9184 ; + 3 Jan 2008 09:13:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B6E20B93C0; + Thu, 3 Jan 2008 14:13:43 +0000 (GMT) +Message-ID: <200801031412.m03ECEFD003956@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 679 + for ; + Thu, 3 Jan 2008 14:13:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3D4E142A14 + for ; Thu, 3 Jan 2008 14:13:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ECEs6003958 + for ; Thu, 3 Jan 2008 09:12:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ECEFD003956 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:12:14 -0500 +Date: Thu, 3 Jan 2008 09:12:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39707 - msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 09:13:52 2008 +X-DSPAM-Confidence: 0.9879 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39707 + +Author: wagnermr@iupui.edu +Date: 2008-01-03 09:12:13 -0500 (Thu, 03 Jan 2008) +New Revision: 39707 + +Modified: +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +Log: +SAK-10606 +http://jira.sakaiproject.org/jira/browse/SAK-10606 +GB authorization error in logs when student accesses Forums +Backing out logic changes in forums to resolve separately + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Jan 3 08:44:20 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 03 Jan 2008 08:44:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 03 Jan 2008 08:44:20 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by score.mail.umich.edu () with ESMTP id m03DiJZw029706; + Thu, 3 Jan 2008 08:44:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 477CE6AD.1ED85.19312 ; + 3 Jan 2008 08:44:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 59A62B937F; + Thu, 3 Jan 2008 13:41:28 +0000 (GMT) +Message-ID: <200801031342.m03DgeVK003283@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 829 + for ; + Thu, 3 Jan 2008 13:41:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2C9FA42A02 + for ; Thu, 3 Jan 2008 13:43:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03Dgeai003285 + for ; Thu, 3 Jan 2008 08:42:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03DgeVK003283 + for source@collab.sakaiproject.org; Thu, 3 Jan 2008 08:42:40 -0500 +Date: Thu, 3 Jan 2008 08:42:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39706 - in sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui: bean/evaluation listener/evaluation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Jan 3 08:44:20 2008 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39706 + +Author: gopal.ramasammycook@gmail.com +Date: 2008-01-03 08:42:24 -0500 (Thu, 03 Jan 2008) +New Revision: 39706 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +Log: +Gopal - Stats descrimination calculation update. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Wed Jan 2 18:47:10 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 18:47:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 18:47:10 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by brazil.mail.umich.edu () with ESMTP id m02Nl9iU002974; + Wed, 2 Jan 2008 18:47:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 477C2278.35062.21939 ; + 2 Jan 2008 18:47:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DBFC374647; + Wed, 2 Jan 2008 23:47:03 +0000 (GMT) +Message-ID: <200801022345.m02NjcHH001850@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 953 + for ; + Wed, 2 Jan 2008 23:46:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 700324295B + for ; Wed, 2 Jan 2008 23:46:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02NjcDw001852 + for ; Wed, 2 Jan 2008 18:45:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02NjcHH001850 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 18:45:38 -0500 +Date: Wed, 2 Jan 2008 18:45:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39697 - course-management/branches/sakai_2-5-x/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 18:47:10 2008 +X-DSPAM-Confidence: 0.7568 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39697 + +Author: ray@media.berkeley.edu +Date: 2008-01-02 18:45:35 -0500 (Wed, 02 Jan 2008) +New Revision: 39697 + +Modified: +course-management/branches/sakai_2-5-x/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl/SampleDataLoader.java +Log: +SAK-12572 Rather than hard-coding the sample academic sessions' year, base the year on today's date, which will ensure that some term is always current in the demo build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Wed Jan 2 18:10:17 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 18:10:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 18:10:17 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by awakenings.mail.umich.edu () with ESMTP id m02NAFG7026631; + Wed, 2 Jan 2008 18:10:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 477C19D2.2B96D.25992 ; + 2 Jan 2008 18:10:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 453924EB73; + Wed, 2 Jan 2008 23:10:06 +0000 (GMT) +Message-ID: <200801022308.m02N8fmL001796@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 577 + for ; + Wed, 2 Jan 2008 23:09:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A327042955 + for ; Wed, 2 Jan 2008 23:09:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02N8fxN001798 + for ; Wed, 2 Jan 2008 18:08:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02N8fmL001796 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 18:08:41 -0500 +Date: Wed, 2 Jan 2008 18:08:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39696 - course-management/trunk/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 18:10:17 2008 +X-DSPAM-Confidence: 0.7568 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39696 + +Author: ray@media.berkeley.edu +Date: 2008-01-02 18:08:37 -0500 (Wed, 02 Jan 2008) +New Revision: 39696 + +Modified: +course-management/trunk/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl/SampleDataLoader.java +Log: +SAK-12572 Rather than hard-coding the sample academic sessions' year, base the year on today's date, which will ensure that some term is always current in the demo build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Jan 2 17:04:51 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 17:04:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 17:04:51 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by flawless.mail.umich.edu () with ESMTP id m02M4o6P029828; + Wed, 2 Jan 2008 17:04:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477C0A7C.CEE01.30848 ; + 2 Jan 2008 17:04:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CA469B0034; + Wed, 2 Jan 2008 22:04:42 +0000 (GMT) +Message-ID: <200801022203.m02M3QKD001687@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314 + for ; + Wed, 2 Jan 2008 22:04:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D1F0E42959 + for ; Wed, 2 Jan 2008 22:04:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02M3QwZ001689 + for ; Wed, 2 Jan 2008 17:03:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02M3QKD001687 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 17:03:26 -0500 +Date: Wed, 2 Jan 2008 17:03:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39695 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 17:04:51 2008 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39695 + +Author: zqian@umich.edu +Date: 2008-01-02 17:03:24 -0500 (Wed, 02 Jan 2008) +New Revision: 39695 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-12536:remove provider associations when site is deleted: This appears to be non-issue when the whole site is deleted. However, the problem exists when the provider list is updated through the 'Edit Class Rosters' choice inside Site Info tool. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Jan 2 17:02:33 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 17:02:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 17:02:33 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by panther.mail.umich.edu () with ESMTP id m02M2Xb2024661; + Wed, 2 Jan 2008 17:02:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477C09F4.392F1.16075 ; + 2 Jan 2008 17:02:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CD877B72DE; + Wed, 2 Jan 2008 22:02:25 +0000 (GMT) +Message-ID: <200801022201.m02M15vH001675@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 353 + for ; + Wed, 2 Jan 2008 22:02:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4374942959 + for ; Wed, 2 Jan 2008 22:02:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02M15Dh001677 + for ; Wed, 2 Jan 2008 17:01:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02M15vH001675 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 17:01:05 -0500 +Date: Wed, 2 Jan 2008 17:01:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39694 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business/impl service/api/src/java/org/sakaiproject/service/gradebook/shared service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 17:02:33 2008 +X-DSPAM-Confidence: 0.9871 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39694 + +Author: wagnermr@iupui.edu +Date: 2008-01-02 17:01:03 -0500 (Wed, 02 Jan 2008) +New Revision: 39694 + +Added: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradeDefinition.java +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getGradesForStudentsForItem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Wed Jan 2 17:00:56 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 17:00:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 17:00:56 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by jacknife.mail.umich.edu () with ESMTP id m02M0tvt022297; + Wed, 2 Jan 2008 17:00:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477C0991.66572.12680 ; + 2 Jan 2008 17:00:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 11DADB72DE; + Wed, 2 Jan 2008 22:00:47 +0000 (GMT) +Message-ID: <200801022159.m02LxOsg001648@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 391 + for ; + Wed, 2 Jan 2008 22:00:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6448942959 + for ; Wed, 2 Jan 2008 22:00:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02LxOPF001650 + for ; Wed, 2 Jan 2008 16:59:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02LxOsg001648 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 16:59:24 -0500 +Date: Wed, 2 Jan 2008 16:59:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39692 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 17:00:56 2008 +X-DSPAM-Confidence: 0.8525 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39692 + +Author: stuart.freeman@et.gatech.edu +Date: 2008-01-02 16:59:22 -0500 (Wed, 02 Jan 2008) +New Revision: 39692 + +Modified: +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java +Log: +SAK-10306 Editor has problems inserting links and setting target to new window + +--(stuart@mothra:pts/5)-------------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/util)-- +--(1659:Wed,02 Jan 08:$)-- svn merge -r 35675:35676 https://source.sakaiproject.org/svn/util/trunk . +U util-util/util/src/java/org/sakaiproject/util/FormattedText.java +--(stuart@mothra:pts/5)-------------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/util)-- +--(1700:Wed,02 Jan 08:$)-- ^merge^log +svn log -r 35675:35676 https://source.sakaiproject.org/svn/util/trunk . +------------------------------------------------------------------------ +r35676 | joshua.ryan@asu.edu | 2007-09-21 20:02:50 -0400 (Fri, 21 Sep 2007) | 2 lines + +SAK-10306 removing extra pattern replacement that was causing issues with https urls. Fix from Ryan Lowe. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Jan 2 16:55:17 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 16:55:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 16:55:17 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id m02LtGvU021450; + Wed, 2 Jan 2008 16:55:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477C083D.F1397.8925 ; + 2 Jan 2008 16:55:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BCF35B8BAF; + Wed, 2 Jan 2008 21:55:07 +0000 (GMT) +Message-ID: <200801022153.m02LrhrH001632@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358 + for ; + Wed, 2 Jan 2008 21:54:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4971B42934 + for ; Wed, 2 Jan 2008 21:54:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02LrhaV001634 + for ; Wed, 2 Jan 2008 16:53:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02LrhrH001632 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 16:53:43 -0500 +Date: Wed, 2 Jan 2008 16:53:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39691 - osp/branches/osp_nightly +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 16:55:17 2008 +X-DSPAM-Confidence: 0.8477 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39691 + +Author: chmaurer@iupui.edu +Date: 2008-01-02 16:53:41 -0500 (Wed, 02 Jan 2008) +New Revision: 39691 + +Modified: +osp/branches/osp_nightly/ +osp/branches/osp_nightly/.externals +osp/branches/osp_nightly/pom.xml +Log: +adding entitybroker since gradebook requires it now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Wed Jan 2 16:53:57 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 16:53:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 16:53:57 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by fan.mail.umich.edu () with ESMTP id m02Lrums015608; + Wed, 2 Jan 2008 16:53:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477C07ED.6A38A.5828 ; + 2 Jan 2008 16:53:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A050EB72DE; + Wed, 2 Jan 2008 21:53:52 +0000 (GMT) +Message-ID: <200801022152.m02LqN8o001620@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 71 + for ; + Wed, 2 Jan 2008 21:53:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3E38242947 + for ; Wed, 2 Jan 2008 21:53:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02LqNbY001622 + for ; Wed, 2 Jan 2008 16:52:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02LqN8o001620 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 16:52:23 -0500 +Date: Wed, 2 Jan 2008 16:52:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39690 - in mailtool/branches/sakai_2-4-x: . mailtool mailtool/src/java/org/sakaiproject/tool/mailtool mailtool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 16:53:57 2008 +X-DSPAM-Confidence: 0.9947 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39690 + +Author: stuart.freeman@et.gatech.edu +Date: 2008-01-02 16:52:20 -0500 (Wed, 02 Jan 2008) +New Revision: 39690 + +Modified: +mailtool/branches/sakai_2-4-x/.classpath +mailtool/branches/sakai_2-4-x/mailtool/pom.xml +mailtool/branches/sakai_2-4-x/mailtool/project.xml +mailtool/branches/sakai_2-4-x/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailUser.java +mailtool/branches/sakai_2-4-x/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +mailtool/branches/sakai_2-4-x/mailtool/src/webapp/WEB-INF/faces-config.xml +Log: +SAK-10738 proper display of unicode characters, thanks to Kevin Chan for pointing out which revisions actually had to be merged + +--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)-- +--(1643:Wed,02 Jan 08:$)-- svn merge -r32592:32593 https://source.sakaiproject.org/svn/mailtool/trunk/ . +C .classpath +G mailtool/project.xml +C mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)-- +--(1643:Wed,02 Jan 08:$)-- ^merge^log +svn log -r32592:32593 https://source.sakaiproject.org/svn/mailtool/trunk/ . +------------------------------------------------------------------------ +r32593 | kimsooil@bu.edu | 2007-07-16 13:53:33 -0400 (Mon, 16 Jul 2007) | 2 lines + +fix SAK-10738 (Upgrade mail-1.3.1.jar to mail-1.4.jar) +note: it's not include in mailtool.war (it goes to /tomcat/shared/lib) +------------------------------------------------------------------------ +--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)-- +--(1643:Wed,02 Jan 08:$)-- svn merge -r32638:32639 https://source.sakaiproject.org/svn/mailtool/trunk/ . +G mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)-- +--(1653:Wed,02 Jan 08:$)-- ^merge^log +svn log -r32638:32639 https://source.sakaiproject.org/svn/mailtool/trunk/ . +------------------------------------------------------------------------ +r32639 | ian@caret.cam.ac.uk | 2007-07-17 07:54:46 -0400 (Tue, 17 Jul 2007) | 3 lines + +Fixed to work with JavaMail 1.3.1 + +SAK-10738 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Jan 2 15:51:46 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 15:51:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 15:51:46 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by brazil.mail.umich.edu () with ESMTP id m02Kpkwt030535; + Wed, 2 Jan 2008 15:51:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477BF95C.781A2.24968 ; + 2 Jan 2008 15:51:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2DD27B1ABE; + Wed, 2 Jan 2008 20:48:38 +0000 (GMT) +Message-ID: <200801022050.m02KoD1g001526@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 673 + for ; + Wed, 2 Jan 2008 20:48:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CAF0B42936 + for ; Wed, 2 Jan 2008 20:51:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02KoDNB001528 + for ; Wed, 2 Jan 2008 15:50:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02KoD1g001526 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 15:50:13 -0500 +Date: Wed, 2 Jan 2008 15:50:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39689 - in gradebook/trunk/app/ui/src: java/org/sakaiproject/tool/gradebook/ui/helpers/beans webapp webapp/WEB-INF webapp/WEB-INF/bundle webapp/component-templates webapp/content webapp/content/css webapp/content/images webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 15:51:46 2008 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39689 + +Author: rjlowe@iupui.edu +Date: 2008-01-02 15:50:11 -0500 (Wed, 02 Jan 2008) +New Revision: 39689 + +Added: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookMessageRenderer.java +gradebook/trunk/app/ui/src/webapp/component-templates/ +gradebook/trunk/app/ui/src/webapp/component-templates/Messages.html +gradebook/trunk/app/ui/src/webapp/content/images/ +gradebook/trunk/app/ui/src/webapp/content/images/error-arrow.png +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties +gradebook/trunk/app/ui/src/webapp/content/css/gradebook.css +gradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html +Log: +NOJIRA - Gradebook RSF helper validation work and error throwing + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Jan 2 15:28:02 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 15:28:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 15:28:02 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id m02KS1NK012735; + Wed, 2 Jan 2008 15:28:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 477BF3CA.71812.2158 ; + 2 Jan 2008 15:27:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 50307B8A32; + Wed, 2 Jan 2008 20:24:52 +0000 (GMT) +Message-ID: <200801022026.m02KQLMk001504@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 413 + for ; + Wed, 2 Jan 2008 20:24:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3AEEF37AD9 + for ; Wed, 2 Jan 2008 20:27:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02KQMCU001507 + for ; Wed, 2 Jan 2008 15:26:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02KQLMk001504 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 15:26:21 -0500 +Date: Wed, 2 Jan 2008 15:26:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39688 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 15:28:02 2008 +X-DSPAM-Confidence: 0.8504 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39688 + +Author: zqian@umich.edu +Date: 2008-01-02 15:26:20 -0500 (Wed, 02 Jan 2008) +New Revision: 39688 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +fix to SAK-9996: cannot save realm and no warning to user if invalid id is entered: somehow the previous changes have been backout by svn checkins afterwards. Now reapply the fix. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Jan 2 15:20:50 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 15:20:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 15:20:50 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id m02KKnOR006071; + Wed, 2 Jan 2008 15:20:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 477BF212.71E82.5991 ; + 2 Jan 2008 15:20:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2C332B8A1B; + Wed, 2 Jan 2008 20:17:29 +0000 (GMT) +Message-ID: <200801022018.m02KIxMC001487@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351 + for ; + Wed, 2 Jan 2008 20:17:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98549427AE + for ; Wed, 2 Jan 2008 20:20:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02KIxLv001489 + for ; Wed, 2 Jan 2008 15:18:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02KIxMC001487 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 15:18:59 -0500 +Date: Wed, 2 Jan 2008 15:18:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39687 - in gradebook/trunk/app/ui/src: java/org/sakaiproject/tool/gradebook/ui/helpers/beans webapp/content/js webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 15:20:50 2008 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39687 + +Author: rjlowe@iupui.edu +Date: 2008-01-02 15:18:57 -0500 (Wed, 02 Jan 2008) +New Revision: 39687 + +Added: +gradebook/trunk/app/ui/src/webapp/content/js/add-gradebook-item.js +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentCreator.java +gradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html +Log: +NOJIRA - Adding JS to add form in helper + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Jan 2 14:35:41 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 14:35:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 14:35:41 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by faithful.mail.umich.edu () with ESMTP id m02JZfp3000888; + Wed, 2 Jan 2008 14:35:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477BE786.758A3.25327 ; + 2 Jan 2008 14:35:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 86ABDB898D; + Wed, 2 Jan 2008 19:35:31 +0000 (GMT) +Message-ID: <200801021934.m02JY7iK001434@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 128 + for ; + Wed, 2 Jan 2008 19:35:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7743024C3D + for ; Wed, 2 Jan 2008 19:35:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02JY7wX001436 + for ; Wed, 2 Jan 2008 14:34:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02JY7iK001434 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 14:34:07 -0500 +Date: Wed, 2 Jan 2008 14:34:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39686 - in gradebook/trunk/app/ui/src: java/org/sakaiproject/tool/gradebook/ui/helpers/beans java/org/sakaiproject/tool/gradebook/ui/helpers/producers webapp/WEB-INF webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 14:35:41 2008 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39686 + +Author: rjlowe@iupui.edu +Date: 2008-01-02 14:34:05 -0500 (Wed, 02 Jan 2008) +New Revision: 39686 + +Added: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentCreator.java +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml +gradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html +Log: +NOJIRA - gradebook helper work + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Jan 2 12:56:50 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 12:56:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 12:56:50 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id m02HuoZa017116; + Wed, 2 Jan 2008 12:56:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 477BD05A.3252A.14412 ; + 2 Jan 2008 12:56:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C865FB87F7; + Wed, 2 Jan 2008 17:56:37 +0000 (GMT) +Message-ID: <200801021755.m02HtJKE001310@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 838 + for ; + Wed, 2 Jan 2008 17:56:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9529D3FAD0 + for ; Wed, 2 Jan 2008 17:56:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02HtJF0001312 + for ; Wed, 2 Jan 2008 12:55:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02HtJKE001310 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 12:55:19 -0500 +Date: Wed, 2 Jan 2008 12:55:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39685 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 12:56:50 2008 +X-DSPAM-Confidence: 0.8500 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39685 + +Author: zqian@umich.edu +Date: 2008-01-02 12:55:18 -0500 (Wed, 02 Jan 2008) +New Revision: 39685 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-12575:Adding second roster to course site removes previously added roster + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Jan 2 12:54:14 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 12:54:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 12:54:14 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by mission.mail.umich.edu () with ESMTP id m02HsEWP031266; + Wed, 2 Jan 2008 12:54:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477BCFC0.24C52.22694 ; + 2 Jan 2008 12:54:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4257DB8810; + Wed, 2 Jan 2008 17:53:07 +0000 (GMT) +Message-ID: <200801021752.m02Hqk8q001298@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 222 + for ; + Wed, 2 Jan 2008 17:52:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6DDC43FAD0 + for ; Wed, 2 Jan 2008 17:53:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02HqkGH001300 + for ; Wed, 2 Jan 2008 12:52:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Hqk8q001298 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 12:52:46 -0500 +Date: Wed, 2 Jan 2008 12:52:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39684 - in gradebook/trunk/app: sakai-tool/src/webapp/WEB-INF ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers ui/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 12:54:14 2008 +X-DSPAM-Confidence: 0.8462 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39684 + +Author: rjlowe@iupui.edu +Date: 2008-01-02 12:52:44 -0500 (Wed, 02 Jan 2008) +New Revision: 39684 + +Modified: +gradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/web.xml +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml +Log: +NOJIRA - Gradebook Helper injections + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Jan 2 11:13:25 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 11:13:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 11:13:25 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id m02GDPdJ003400; + Wed, 2 Jan 2008 11:13:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 477BB81E.2F8E5.8169 ; + 2 Jan 2008 11:13:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F172CB852C; + Wed, 2 Jan 2008 16:13:15 +0000 (GMT) +Message-ID: <200801021612.m02GC0dc001119@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 458 + for ; + Wed, 2 Jan 2008 16:13:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D3A57427D9 + for ; Wed, 2 Jan 2008 16:13:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02GC0Qn001121 + for ; Wed, 2 Jan 2008 11:12:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02GC0dc001119 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 11:12:00 -0500 +Date: Wed, 2 Jan 2008 11:12:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39683 - gradebook/trunk/app/ui/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 11:13:25 2008 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39683 + +Author: rjlowe@iupui.edu +Date: 2008-01-02 11:11:58 -0500 (Wed, 02 Jan 2008) +New Revision: 39683 + +Added: +gradebook/trunk/app/ui/src/webapp/WEB-INF/faces-beans.xml +Log: +NOJIRA - adding accidentially removed faces-beans.xml + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Jan 2 11:09:35 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 11:09:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 11:09:35 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by awakenings.mail.umich.edu () with ESMTP id m02G9Yam000565; + Wed, 2 Jan 2008 11:09:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477BB738.9A2.4028 ; + 2 Jan 2008 11:09:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2D8DCB7F2B; + Wed, 2 Jan 2008 16:09:24 +0000 (GMT) +Message-ID: <200801021608.m02G85Mp001097@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 15 + for ; + Wed, 2 Jan 2008 16:09:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9BDC1427D9 + for ; Wed, 2 Jan 2008 16:09:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02G85o8001099 + for ; Wed, 2 Jan 2008 11:08:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02G85Mp001097 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 11:08:05 -0500 +Date: Wed, 2 Jan 2008 11:08:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39682 - in gradebook/trunk: . app/sakai-tool/src/webapp/WEB-INF app/sakai-tool/src/webapp/tools app/ui app/ui/src/java/org/sakaiproject/tool/gradebook/ui app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers app/ui/src/webapp app/ui/src/webapp/WEB-INF app/ui/src/webapp/WEB-INF/bundle app/ui/src/webapp/content app/ui/src/webapp/content/css app/ui/src/webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 11:09:35 2008 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39682 + +Author: rjlowe@iupui.edu +Date: 2008-01-02 11:08:02 -0500 (Wed, 02 Jan 2008) +New Revision: 39682 + +Added: +gradebook/trunk/app/sakai-tool/src/webapp/tools/sakai.gradebook.helpers.xml +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/ +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/ +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/ +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryEntityProvider.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/ +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/AddGradebookItemViewParams.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/ +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/PermissionsErrorProducer.java +gradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/ +gradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties +gradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml +gradebook/trunk/app/ui/src/webapp/content/ +gradebook/trunk/app/ui/src/webapp/content/css/ +gradebook/trunk/app/ui/src/webapp/content/css/gradebook.css +gradebook/trunk/app/ui/src/webapp/content/js/ +gradebook/trunk/app/ui/src/webapp/content/templates/ +gradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html +gradebook/trunk/app/ui/src/webapp/content/templates/permissions-error.html +Removed: +gradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/app/ui/src/webapp/WEB-INF/faces-beans.xml +gradebook/trunk/helper-app/ +Modified: +gradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/web.xml +gradebook/trunk/app/ui/pom.xml +gradebook/trunk/pom.xml +Log: +NOJIRA - moving gradebook helper into gradebook webapp + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 09:54:32 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 09:54:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 09:54:31 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by score.mail.umich.edu () with ESMTP id m02EsViP017747; + Wed, 2 Jan 2008 09:54:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 477BA59C.2FFBD.27725 ; + 2 Jan 2008 09:54:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8FAC2B838B; + Wed, 2 Jan 2008 14:53:15 +0000 (GMT) +Message-ID: <200801021452.m02Eqwdg001017@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769 + for ; + Wed, 2 Jan 2008 14:52:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D9CFF40E8C + for ; Wed, 2 Jan 2008 14:54:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EqwsV001019 + for ; Wed, 2 Jan 2008 09:52:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Eqwdg001017 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:52:58 -0500 +Date: Wed, 2 Jan 2008 09:52:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39681 - gradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 09:54:31 2008 +X-DSPAM-Confidence: 0.7622 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39681 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 09:52:48 -0500 (Wed, 02 Jan 2008) +New Revision: 39681 + +Modified: +gradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +Log: +svn log -r39640 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39640 | josrodri@iupui.edu | 2007-12-28 21:15:33 +0200 (Fri, 28 Dec 2007) | 1 line + +SAK-12549: Did not deal properly with a valid assignment but no grades recorded +------------------------------------------------------------------------ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39640 https://source.sakaiproject.org/svn/gradebook/trunk gradebook/ +U +gradebook/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 09:40:42 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 09:40:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 09:40:42 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by panther.mail.umich.edu () with ESMTP id m02EegQW019203; + Wed, 2 Jan 2008 09:40:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 477BA264.93C42.15418 ; + 2 Jan 2008 09:40:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D3E9EB8455; + Wed, 2 Jan 2008 14:39:34 +0000 (GMT) +Message-ID: <200801021439.m02Ed9jw000996@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 429 + for ; + Wed, 2 Jan 2008 14:39:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 70A8B40E8C + for ; Wed, 2 Jan 2008 14:40:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EdATb000998 + for ; Wed, 2 Jan 2008 09:39:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Ed9jw000996 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:39:09 -0500 +Date: Wed, 2 Jan 2008 09:39:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39680 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config reference/branches/sakai_2-5-x/docs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 09:40:42 2008 +X-DSPAM-Confidence: 0.9865 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39680 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 09:38:43 -0500 (Wed, 02 Jan 2008) +New Revision: 39680 + +Modified: +component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties +reference/branches/sakai_2-5-x/docs/sakai.properties +Log: +SAK-12044 add portuguese as supported languaage + +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39375 https://source.sakaiproject.org/svn/msgcntr/trunk msgcntr/ +U msgcntr/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39598 https://source.sakaiproject.org/svn/reference/trunk reference/ +U reference/docs/sakai.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39599 https://source.sakaiproject.org/svn/component/trunk component/ +U component/component-api/component/src/config/org/sakaiproject/config/sakai.properties + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 09:38:43 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 09:38:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 09:38:43 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by casino.mail.umich.edu () with ESMTP id m02Ecg4S029498; + Wed, 2 Jan 2008 09:38:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 477BA1EB.543D.16904 ; + 2 Jan 2008 09:38:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B288BB8442; + Wed, 2 Jan 2008 14:37:31 +0000 (GMT) +Message-ID: <200801021437.m02EbGJG000984@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761 + for ; + Wed, 2 Jan 2008 14:37:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B09CE40E8C + for ; Wed, 2 Jan 2008 14:38:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EbGpT000986 + for ; Wed, 2 Jan 2008 09:37:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02EbGJG000984 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:37:16 -0500 +Date: Wed, 2 Jan 2008 09:37:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39679 - assignment/branches/sakai_2-5-x/assignment-bundles msgcntr/branches/sakai_2-5-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle rwiki/branches/sakai_2-5-x/rwiki-util/radeox/src/bundle rwiki/branches/sakai_2-5-x/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle sam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle search/branches/sakai_2-5-x/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle site-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle site-manage/branches/sakai_2-5-x/site-manage-impl/impl/src/bundle site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle usermembership/branches/sakai_2-5-x/tool/src/bundle/or! + g/sakaiproject/umem/tool/bundle velocity/branches/sakai_2-5-x/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 09:38:43 2008 +X-DSPAM-Confidence: 0.8500 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39679 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 09:33:05 -0500 (Wed, 02 Jan 2008) +New Revision: 39679 + +Added: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment_pt_PT.properties +rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_pt_PT.properties +rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_pt_PT.properties +rwiki/branches/sakai_2-5-x/rwiki-util/radeox/src/bundle/radeox_messages_pt_PT.properties +rwiki/branches/sakai_2-5-x/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_pt_PT.properties +sam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_pt_PT.properties +search/branches/sakai_2-5-x/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle/Messages_pt_PT.properties +site-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_pt_PT.properties +site-manage/branches/sakai_2-5-x/site-manage-impl/impl/src/bundle/SectionFields_pt_PT.properties +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/membership_pt_PT.properties +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/sitebrowser_pt_PT.properties +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/sitesetupgeneric_pt_PT.properties +velocity/branches/sakai_2-5-x/tool/src/bundle/velocity-tool_pt_PT.properties +Modified: +msgcntr/branches/sakai_2-5-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties +usermembership/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_pt_PT.properties +Log: +SAK-12044 pt_PT bundles part 4 - final batch + +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39202 https://source.sakaiproject.org/svn/search/trunk search/ +A search/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle/Messages_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39202 https://source.sakaiproject.org/svn/usermembership/trunk usermembership/ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39203 https://source.sakaiproject.org/svn/usermembership/trunk usermembership/ +U usermembership/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39204 https://source.sakaiproject.org/svn/velocity/trunk velocity/ +A velocity/tool/src/bundle/velocity-tool_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39205 https://source.sakaiproject.org/svn/rwiki/trunk rwiki/ +A rwiki/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_pt_PT.properties +A rwiki/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_pt_PT.properties +A rwiki/rwiki-util/radeox/src/bundle/radeox_messages_pt_PT.properties +A rwiki/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39206 https://source.sakaiproject.org/svn/site-manage/trunk site-manage/ +A site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric_pt_PT.properties +A site-manage/site-manage-tool/tool/src/bundle/membership_pt_PT.properties +A site-manage/site-manage-tool/tool/src/bundle/sitebrowser_pt_PT.properties +A site-manage/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_pt_PT.properties +A site-manage/site-manage-impl/impl/src/bundle/SectionFields_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39207 https://source.sakaiproject.org/svn/assignment/trunk assignment/ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39359 https://source.sakaiproject.org/svn/assignment/trunk assignment/ +A assignment/assignment-bundles/assignment_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39368 https://source.sakaiproject.org/svn/sam/trunk sam +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_pt_PT.properties +A sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_pt_PT.properties +A sam/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39375 https://source.sakaiproject.org/svn/msgcntr/trunk msgcntr/ +U msgcntr/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 09:16:03 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 09:16:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 09:16:03 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id m02EG3qc027295; + Wed, 2 Jan 2008 09:16:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 477B9C9D.E968C.12891 ; + 2 Jan 2008 09:16:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1A3EEB83F1; + Wed, 2 Jan 2008 14:14:49 +0000 (GMT) +Message-ID: <200801021414.m02EEV0T000957@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 624 + for ; + Wed, 2 Jan 2008 14:14:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C2BA04067D + for ; Wed, 2 Jan 2008 14:15:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EEVMH000959 + for ; Wed, 2 Jan 2008 09:14:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02EEV0T000957 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:14:31 -0500 +Date: Wed, 2 Jan 2008 09:14:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39678 - citations/branches/sakai_2-5-x/citations-util/util/src/bundle content/branches/sakai_2-5-x/content-bundles content/branches/sakai_2-5-x/content-impl/impl/src/bundle content/branches/sakai_2-5-x/content-tool/tool/src/bundle presence/branches/sakai_2-5-x/presence-tool/tool/src/bundle roster/branches/sakai_2-5-x/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle user/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 09:16:03 2008 +X-DSPAM-Confidence: 0.8479 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39678 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 09:12:50 -0500 (Wed, 02 Jan 2008) +New Revision: 39678 + +Added: +citations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations_pt_PT.properties +content/branches/sakai_2-5-x/content-bundles/content_pt_PT.properties +content/branches/sakai_2-5-x/content-bundles/types_pt_PT.properties +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_pt_PT.properties +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_pt_PT.properties +presence/branches/sakai_2-5-x/presence-tool/tool/src/bundle/admin_pt_PT.properties +roster/branches/sakai_2-5-x/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle/Messages_pt_PT.properties +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle/user-tool-prefs_pt_PT.properties +Log: +SAK-12044 pt_PT message bundles batch 3 + +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39197 https://source.sakaiproject.org/svn/user/trunk user +A user/user-tool-prefs/tool/src/bundle/user-tool-prefs_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39198 https://source.sakaiproject.org/svn/presence/trunk presence/ +A presence/presence-tool/tool/src/bundle/admin_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39199 https://source.sakaiproject.org/svn/citations/trunk citations/ +A citations/citations-util/util/src/bundle/citations_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39200 https://source.sakaiproject.org/svn/content/trunk content +A content/content-bundles/types_pt_PT.properties +A content/content-bundles/content_pt_PT.properties +A content/content-tool/tool/src/bundle/helper_pt_PT.properties +A content/content-impl/impl/src/bundle/siteemacon_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39200 https://source.sakaiproject.org/svn/roster/trunk roster/ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39201 https://source.sakaiproject.org/svn/roster/trunk roster/ +A roster/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle/Messages_pt_PT.properties + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Jan 2 09:13:10 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 09:13:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 09:13:10 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by casino.mail.umich.edu () with ESMTP id m02EDAHJ016720; + Wed, 2 Jan 2008 09:13:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477B9BE8.977E.19989 ; + 2 Jan 2008 09:12:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 556B7B8404; + Wed, 2 Jan 2008 14:11:43 +0000 (GMT) +Message-ID: <200801021410.m02EAaGd000928@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 85 + for ; + Wed, 2 Jan 2008 14:11:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC7944067D + for ; Wed, 2 Jan 2008 14:11:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EAaSg000930 + for ; Wed, 2 Jan 2008 09:10:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02EAaGd000928 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:10:36 -0500 +Date: Wed, 2 Jan 2008 09:10:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r39677 - entitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 09:13:10 2008 +X-DSPAM-Confidence: 0.9865 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39677 + +Author: aaronz@vt.edu +Date: 2008-01-02 09:10:34 -0500 (Wed, 02 Jan 2008) +New Revision: 39677 + +Modified: +entitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java +Log: +SAK-12408: Added comment to the EB interface to make it more clear + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 09:07:48 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 09:07:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 09:07:48 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id m02E7lC0002907; + Wed, 2 Jan 2008 09:07:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 477B9AAC.D17F0.15613 ; + 2 Jan 2008 09:07:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07603B83D7; + Wed, 2 Jan 2008 14:07:35 +0000 (GMT) +Message-ID: <200801021406.m02E6Ims000892@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 870 + for ; + Wed, 2 Jan 2008 14:07:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E5D9A40696 + for ; Wed, 2 Jan 2008 14:07:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02E6Iw4000894 + for ; Wed, 2 Jan 2008 09:06:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02E6Ims000892 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:06:18 -0500 +Date: Wed, 2 Jan 2008 09:06:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39676 - email/branches/sakai_2-5-x/email-impl/impl/src/bundle login/branches/sakai_2-5-x/login-authn-tool/tool/src/bundle login/branches/sakai_2-5-x/login-tool/tool/src/bundle mailarchive/branches/sakai_2-5-x/mailarchive-impl/impl/src/bundle mailarchive/branches/sakai_2-5-x/mailarchive-tool/tool/src/bundle message/branches/sakai_2-5-x/message-tool/tool/src/bundle msgcntr/branches/sakai_2-5-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle portal/branches/sakai_2-5-x/portal-impl/impl/src/bundle portal/branches/sakai_2-5-x/portal-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 09:07:48 2008 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39676 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 09:04:14 -0500 (Wed, 02 Jan 2008) +New Revision: 39676 + +Added: +email/branches/sakai_2-5-x/email-impl/impl/src/bundle/email-impl_pt_PT.properties +login/branches/sakai_2-5-x/login-authn-tool/tool/src/bundle/sitenav_pt_PT.properties +login/branches/sakai_2-5-x/login-tool/tool/src/bundle/auth_pt_PT.properties +mailarchive/branches/sakai_2-5-x/mailarchive-impl/impl/src/bundle/siteemaanc_pt_PT.properties +mailarchive/branches/sakai_2-5-x/mailarchive-tool/tool/src/bundle/email_pt_PT.properties +message/branches/sakai_2-5-x/message-tool/tool/src/bundle/recent_pt_PT.properties +msgcntr/branches/sakai_2-5-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties +portal/branches/sakai_2-5-x/portal-impl/impl/src/bundle/sitenav_pt_PT.properties +portal/branches/sakai_2-5-x/portal-util/util/src/bundle/portal-util_pt_PT.properties +Log: +SAK-12044 pt_pt message bundles 2 + +svn merge -c39191 https://source.sakaiproject.org/svn/email/trunk email/ +A email/email-impl/impl/src/bundle/email-impl_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39192 https://source.sakaiproject.org/svn/mailarchive/trunk mailarchive/ +A mailarchive/mailarchive-tool/tool/src/bundle/email_pt_PT.properties +A mailarchive/mailarchive-impl/impl/src/bundle/siteemaanc_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39193 https://source.sakaiproject.org/svn/msgcntr/trunk msgcntr/ +A msgcntr/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39194 https://source.sakaiproject.org/svn/message/trunk message/ +A message/message-tool/tool/src/bundle/recent_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39195 https://source.sakaiproject.org/svn/portal/trunk portal/ +A portal/portal-impl/impl/src/bundle/sitenav_pt_PT.properties +A portal/portal-util/util/src/bundle/portal-util_pt_PT.properties +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39196 https://source.sakaiproject.org/svn/login/trunk login/ +A login/login-authn-tool/tool/src/bundle/sitenav_pt_PT.properties +A login/login-tool/tool/src/bundle/auth_pt_PT.properties + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 08:55:03 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 08:55:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 08:55:03 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by casino.mail.umich.edu () with ESMTP id m02Dt1IR010035; + Wed, 2 Jan 2008 08:55:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 477B97AF.A4703.12747 ; + 2 Jan 2008 08:54:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 329696195D; + Wed, 2 Jan 2008 13:54:52 +0000 (GMT) +Message-ID: <200801021353.m02DrUxJ000878@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651 + for ; + Wed, 2 Jan 2008 13:54:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7EB563F32F + for ; Wed, 2 Jan 2008 13:54:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DrU5T000880 + for ; Wed, 2 Jan 2008 08:53:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DrUxJ000878 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:53:30 -0500 +Date: Wed, 2 Jan 2008 08:53:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39675 - access/branches/sakai_2-5-x/access-impl/impl/src/bundle announcement/branches/sakai_2-5-x/announcement-impl/impl/src/bundle announcement/branches/sakai_2-5-x/announcement-tool/tool/src/bundle blog/branches/sakai_2-5-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle calendar/branches/sakai_2-5-x/calendar-impl/impl/src/bundle calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle chat/branches/sakai_2-5-x/chat-impl/impl/src/bundle chat/branches/sakai_2-5-x/chat-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 08:55:03 2008 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39675 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 08:51:20 -0500 (Wed, 02 Jan 2008) +New Revision: 39675 + +Added: +access/branches/sakai_2-5-x/access-impl/impl/src/bundle/access_pt_PT.properties +announcement/branches/sakai_2-5-x/announcement-impl/impl/src/bundle/annc-access_pt_PT.properties +announcement/branches/sakai_2-5-x/announcement-impl/impl/src/bundle/siteemaanc_pt_PT.properties +announcement/branches/sakai_2-5-x/announcement-tool/tool/src/bundle/announcement_pt_PT.properties +blog/branches/sakai_2-5-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_pt_PT.properties +calendar/branches/sakai_2-5-x/calendar-impl/impl/src/bundle/calendarimpl_pt_PT.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_pt_PT.properties +calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle/calendar_pt_PT.properties +chat/branches/sakai_2-5-x/chat-impl/impl/src/bundle/chat_pt_PT.properties +chat/branches/sakai_2-5-x/chat-tool/tool/src/bundle/chat_pt_PT.properties +Log: +SAK-12044 first chunck of pt_PT translations + +svn merge -c39186 https://source.sakaiproject.org/svn/access/trunk access/ +A access/access-impl/impl/src/bundle/access_pt_PT.properties +svn merge -c39187 https://source.sakaiproject.org/svn/announcement/trunk announcement +A announcement/announcement-tool/tool/src/bundle/announcement_pt_PT.properties +A announcement/announcement-impl/impl/src/bundle/annc-access_pt_PT.properties +A announcement/announcement-impl/impl/src/bundle/siteemaanc_pt_PT.properties +svn merge -c39188 https://source.sakaiproject.org/svn/blog/trunk blog +A blog/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_pt_PT.properties +svn merge -c39189 https://source.sakaiproject.org/svn/calendar/trunk calendar/ +A calendar/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_pt_PT.properties +A calendar/calendar-tool/tool/src/bundle/calendar_pt_PT.properties +A calendar/calendar-impl/impl/src/bundle/calendarimpl_pt_PT.properties +svn merge -c39190 https://source.sakaiproject.org/svn/chat/trunk chat/ +A chat/chat-tool/tool/src/bundle/chat_pt_PT.properties +A chat/chat-impl/impl/src/bundle/chat_pt_PT.properties + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 08:37:45 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 08:37:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 08:37:45 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id m02Dbjua013777; + Wed, 2 Jan 2008 08:37:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477B93A2.53910.25963 ; + 2 Jan 2008 08:37:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 41AE7B836F; + Wed, 2 Jan 2008 13:37:38 +0000 (GMT) +Message-ID: <200801021336.m02DaFXJ000836@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 433 + for ; + Wed, 2 Jan 2008 13:37:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D70F73F32F + for ; Wed, 2 Jan 2008 13:37:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DaF0m000838 + for ; Wed, 2 Jan 2008 08:36:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DaFXJ000836 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:36:15 -0500 +Date: Wed, 2 Jan 2008 08:36:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39674 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 08:37:45 2008 +X-DSPAM-Confidence: 0.8519 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39674 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 08:36:05 -0500 (Wed, 02 Jan 2008) +New Revision: 39674 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +svn merge -c39657 https://source.sakaiproject.org/svn/assignment/trunk assignment/ +U assignment/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm + +svn log -r39657 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r39657 | zqian@umich.edu | 2007-12-31 21:51:23 +0200 (Mon, 31 Dec 2007) | 1 line +SAK-10943 +Fix to SAK-10943:Submission notification fails silently for submitting users who don't have an email address +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 08:23:44 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 08:23:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 08:23:44 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id m02DNhbs016909; + Wed, 2 Jan 2008 08:23:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 477B905A.7DFF3.16585 ; + 2 Jan 2008 08:23:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 10395B82C9; + Wed, 2 Jan 2008 13:23:25 +0000 (GMT) +Message-ID: <200801021322.m02DM6F1000811@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 842 + for ; + Wed, 2 Jan 2008 13:23:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A47AA3EB30 + for ; Wed, 2 Jan 2008 13:23:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DM6I0000813 + for ; Wed, 2 Jan 2008 08:22:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DM6F1000811 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:22:06 -0500 +Date: Wed, 2 Jan 2008 08:22:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39673 - calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 08:23:44 2008 +X-DSPAM-Confidence: 0.8514 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39673 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 08:21:56 -0500 (Wed, 02 Jan 2008) +New Revision: 39673 + +Modified: +calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle/calendar.properties +Log: +svn merge -c39646 https://source.sakaiproject.org/svn/calendar/trunk calendar/ +U calendar/calendar-tool/tool/src/bundle/calendar.properties + +svn log -r39646 https://source.sakaiproject.org/svn/calendar/trunk +------------------------------------------------------------------------ +r39646 | gsilver@umich.edu | 2007-12-30 04:07:07 +0200 (Sun, 30 Dec 2007) | 2 lines + +SAK-9349 +http://jira.sakaiproject.org/jira/browse/SAK-9349 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 08:17:41 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 08:17:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 08:17:41 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id m02DHeAv025516; + Wed, 2 Jan 2008 08:17:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 477B8EEE.CCD34.16797 ; + 2 Jan 2008 08:17:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C7472B82C4; + Wed, 2 Jan 2008 13:17:29 +0000 (GMT) +Message-ID: <200801021316.m02DG2XL000780@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 350 + for ; + Wed, 2 Jan 2008 13:17:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CFB8C3F5F9 + for ; Wed, 2 Jan 2008 13:17:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DG2hR000782 + for ; Wed, 2 Jan 2008 08:16:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DG2XL000780 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:16:02 -0500 +Date: Wed, 2 Jan 2008 08:16:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39672 - podcasts/branches/sakai_2-5-x/podcasts/src/java/org/sakaiproject/tool/podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 08:17:41 2008 +X-DSPAM-Confidence: 0.8511 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39672 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 08:15:52 -0500 (Wed, 02 Jan 2008) +New Revision: 39672 + +Modified: +podcasts/branches/sakai_2-5-x/podcasts/src/java/org/sakaiproject/tool/podcasts/RSSPodfeedServlet.java +Log: +svn merge -c39455 https://source.sakaiproject.org/svn/podcasts/trunk podcasts +U podcasts/podcasts/src/java/org/sakaiproject/tool/podcasts/RSSPodfeedServlet.java + +svn log -r39455 https://source.sakaiproject.org/svn/podcasts/trunk +------------------------------------------------------------------------ +r39455 | josrodri@iupui.edu | 2007-12-18 21:51:48 +0200 (Tue, 18 Dec 2007) | 1 line + +SAK-6404: changed events logged to podcast.read.public, podcast.read.site + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Wed Jan 2 07:01:41 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 07:01:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 07:01:41 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by sleepers.mail.umich.edu () with ESMTP id m02C1e8T027231; + Wed, 2 Jan 2008 07:01:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 477B7D14.762BB.15186 ; + 2 Jan 2008 07:01:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 98CFA8F0E7; + Wed, 2 Jan 2008 12:01:09 +0000 (GMT) +Message-ID: <200801021159.m02Bxd62031614@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686 + for ; + Wed, 2 Jan 2008 12:00:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 784063E867 + for ; Wed, 2 Jan 2008 12:00:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02BxdlR031616 + for ; Wed, 2 Jan 2008 06:59:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Bxd62031614 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 06:59:39 -0500 +Date: Wed, 2 Jan 2008 06:59:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39671 - sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 07:01:41 2008 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39671 + +Author: gopal.ramasammycook@gmail.com +Date: 2008-01-02 06:59:30 -0500 (Wed, 02 Jan 2008) +New Revision: 39671 + +Modified: +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +Log: +SAK-12065 Bug Fix for Deleting released group - tooltip display was causing a null pointer exception. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 05:16:10 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 05:16:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 05:16:10 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by score.mail.umich.edu () with ESMTP id m02AG8VO006787; + Wed, 2 Jan 2008 05:16:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 477B6461.BE348.1561 ; + 2 Jan 2008 05:16:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B2304620B9; + Wed, 2 Jan 2008 10:15:58 +0000 (GMT) +Message-ID: <200801021014.m02AEeaw031506@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83 + for ; + Wed, 2 Jan 2008 10:15:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 67A9B24B62 + for ; Wed, 2 Jan 2008 10:15:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02AEeWV031508 + for ; Wed, 2 Jan 2008 05:14:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02AEeaw031506 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 05:14:40 -0500 +Date: Wed, 2 Jan 2008 05:14:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39670 - event/branches/sakai_2-5-x/event-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 05:16:10 2008 +X-DSPAM-Confidence: 0.8505 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39670 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 05:14:28 -0500 (Wed, 02 Jan 2008) +New Revision: 39670 + +Modified: +event/branches/sakai_2-5-x/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java +Log: +svn merge -c39033 https://source.sakaiproject.org/svn/event/trunk event +U event/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java + +svn log -r39033 https://source.sakaiproject.org/svn/event/trunk +------------------------------------------------------------------------ +r39033 | ian@caret.cam.ac.uk | 2007-12-07 18:03:07 +0200 (Fri, 07 Dec 2007) | 6 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-11169 + +Added switch for bulk preference on email notification, +Patch Supplied by Daniel Parry. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 04:40:56 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 04:40:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 04:40:56 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id m029esYZ025372; + Wed, 2 Jan 2008 04:40:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 477B5C1D.B5DC0.15753 ; + 2 Jan 2008 04:40:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0A28CB7FC5; + Wed, 2 Jan 2008 09:40:47 +0000 (GMT) +Message-ID: <200801020939.m029dOSM031477@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1000 + for ; + Wed, 2 Jan 2008 09:40:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7E61A24EA5 + for ; Wed, 2 Jan 2008 09:40:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m029dOnd031479 + for ; Wed, 2 Jan 2008 04:39:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m029dOSM031477 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 04:39:24 -0500 +Date: Wed, 2 Jan 2008 04:39:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39669 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 04:40:56 2008 +X-DSPAM-Confidence: 0.7625 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39669 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 04:38:54 -0500 (Wed, 02 Jan 2008) +New Revision: 39669 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +svn merge -c38510 https://source.sakaiproject.org/svn/assignment/trunk assignment/ +U assignment/assignment-bundles/assignment.properties +U assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +U +assignment/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm + +svn log -r38510 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38510 | zqian@umich.edu | 2007-11-20 23:08:48 +0200 (Tue, 20 Nov 2007) | 1 line + +fix to SAK-12227:Drafts should not be gradable before a due date +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 04:24:50 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 04:24:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 04:24:50 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by sleepers.mail.umich.edu () with ESMTP id m029Omhu025841; + Wed, 2 Jan 2008 04:24:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 477B585B.6740F.18513 ; + 2 Jan 2008 04:24:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 45D7AB7ED6; + Wed, 2 Jan 2008 09:24:45 +0000 (GMT) +Message-ID: <200801020923.m029NMHw031431@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 342 + for ; + Wed, 2 Jan 2008 09:24:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 90B2F24EA5 + for ; Wed, 2 Jan 2008 09:24:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m029NMRS031433 + for ; Wed, 2 Jan 2008 04:23:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m029NMHw031431 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 04:23:22 -0500 +Date: Wed, 2 Jan 2008 04:23:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39668 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 04:24:50 2008 +X-DSPAM-Confidence: 0.8524 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39668 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 04:23:12 -0500 (Wed, 02 Jan 2008) +New Revision: 39668 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn log -r39659 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r39659 | zqian@umich.edu | 2007-12-31 23:22:03 +0200 (Mon, 31 Dec 2007) | 1 line + +fix to SAK-12543: Assignment tool Adds a Zero at the end of point values under certain condition +------------------------------------------------------------------------ + +svn merge -c39659 https://source.sakaiproject.org/svn/assignment/trunk assignment/ +U assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 03:56:59 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 03:56:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 03:56:59 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by flawless.mail.umich.edu () with ESMTP id m028uvSp024067; + Wed, 2 Jan 2008 03:56:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 477B51CB.C5B34.20922 ; + 2 Jan 2008 03:56:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 652BCB7583; + Wed, 2 Jan 2008 08:56:44 +0000 (GMT) +Message-ID: <200801020855.m028tNPG030945@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 82 + for ; + Wed, 2 Jan 2008 08:56:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 239083A3B9 + for ; Wed, 2 Jan 2008 08:56:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m028tNoI030947 + for ; Wed, 2 Jan 2008 03:55:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m028tNPG030945 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:55:23 -0500 +Date: Wed, 2 Jan 2008 03:55:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39667 - in site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 03:56:59 2008 +X-DSPAM-Confidence: 0.7623 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39667 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 03:55:03 -0500 (Wed, 02 Jan 2008) +New Revision: 39667 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm +Log: +svn log -r39603 https://source.sakaiproject.org/svn/site-manage/trunk +------------------------------------------------------------------------ +r39603 | zqian@umich.edu | 2007-12-21 19:19:37 +0200 (Fri, 21 Dec 2007) | 1 line + +Fix to SAK-12547:"Students registered for course" shown for non-course sites +------------------------------------------------------------------------ +svn merge -c39603 https://source.sakaiproject.org/svn/site-manage/trunk site-manage/ +U site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +C site-manage/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm + + +Conflict was merged manualy + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 03:22:37 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 03:22:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 03:22:37 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id m028MZjO018928; + Wed, 2 Jan 2008 03:22:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477B49C6.48AAB.20329 ; + 2 Jan 2008 03:22:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 68785B7ACC; + Wed, 2 Jan 2008 08:22:18 +0000 (GMT) +Message-ID: <200801020820.m028KvWT030865@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 947 + for ; + Wed, 2 Jan 2008 08:21:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D29C3AEB3 + for ; Wed, 2 Jan 2008 08:22:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m028KvS4030867 + for ; Wed, 2 Jan 2008 03:20:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m028KvWT030865 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:20:57 -0500 +Date: Wed, 2 Jan 2008 03:20:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39666 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 03:22:37 2008 +X-DSPAM-Confidence: 0.8509 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39666 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 03:20:47 -0500 (Wed, 02 Jan 2008) +New Revision: 39666 + +Modified: +util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java +Log: +svn log -r38889 https://source.sakaiproject.org/svn/util/trunk +------------------------------------------------------------------------ +r38889 | joshua.ryan@asu.edu | 2007-11-30 00:20:17 +0200 (Fri, 30 Nov 2007) | 2 lines + +SAK-11056 added 'start' attribute to the allowed list of attributes in safe html + +------------------------------------------------------------------------ + +svn merge -c38889 https://source.sakaiproject.org/svn/util/trunk util/ +U util/util-util/util/src/java/org/sakaiproject/util/FormattedText.java + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 03:04:19 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 03:04:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 03:04:19 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id m0284HZJ012679; + Wed, 2 Jan 2008 03:04:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 477B457C.4C19E.442 ; + 2 Jan 2008 03:04:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 111AEB7BD0; + Wed, 2 Jan 2008 08:04:11 +0000 (GMT) +Message-ID: <200801020802.m0282tRX030848@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 320 + for ; + Wed, 2 Jan 2008 08:03:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3A7553AEB3 + for ; Wed, 2 Jan 2008 08:03:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0282t0C030850 + for ; Wed, 2 Jan 2008 03:02:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0282tRX030848 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:02:55 -0500 +Date: Wed, 2 Jan 2008 03:02:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [contrib] svn commit: r44484 - uct +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 03:04:19 2008 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=44484 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 03:02:46 -0500 (Wed, 02 Jan 2008) +New Revision: 44484 + +Removed: +uct/reset-pass/ +Log: +SAK-11961 This code is now in main svn + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 03:02:55 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 03:02:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 03:02:55 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id m0282prw005404; + Wed, 2 Jan 2008 03:02:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 477B4525.D651D.26708 ; + 2 Jan 2008 03:02:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 14D2266375; + Wed, 2 Jan 2008 08:02:39 +0000 (GMT) +Message-ID: <200801020801.m0281HWA030836@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997 + for ; + Wed, 2 Jan 2008 08:02:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 05FD73AEB3 + for ; Wed, 2 Jan 2008 08:02:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0281HW1030838 + for ; Wed, 2 Jan 2008 03:01:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0281HWA030836 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:01:17 -0500 +Date: Wed, 2 Jan 2008 03:01:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39665 - in reset-pass/branches/sakai_2-4-x: . reset-pass +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 03:02:55 2008 +X-DSPAM-Confidence: 0.8472 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39665 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 03:00:53 -0500 (Wed, 02 Jan 2008) +New Revision: 39665 + +Added: +reset-pass/branches/sakai_2-4-x/project.properties +reset-pass/branches/sakai_2-4-x/project.xml +reset-pass/branches/sakai_2-4-x/reset-pass/project.properties +reset-pass/branches/sakai_2-4-x/reset-pass/project.xml +Log: +SAK-11961 add the maven 1 build artefacts + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Jan 2 02:53:22 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 02 Jan 2008 02:53:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 02 Jan 2008 02:53:22 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id m027rJge029126; + Wed, 2 Jan 2008 02:53:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477B42E9.8268C.19690 ; + 2 Jan 2008 02:53:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6228366375; + Wed, 2 Jan 2008 07:53:22 +0000 (GMT) +Message-ID: <200801020751.m027plRv030812@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 92 + for ; + Wed, 2 Jan 2008 07:53:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 28C543AD6A + for ; Wed, 2 Jan 2008 07:52:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m027plgG030814 + for ; Wed, 2 Jan 2008 02:51:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m027plRv030812 + for source@collab.sakaiproject.org; Wed, 2 Jan 2008 02:51:47 -0500 +Date: Wed, 2 Jan 2008 02:51:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39664 - reset-pass/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Jan 2 02:53:22 2008 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39664 + +Author: david.horwitz@uct.ac.za +Date: 2008-01-02 02:51:31 -0500 (Wed, 02 Jan 2008) +New Revision: 39664 + +Added: +reset-pass/branches/sakai_2-4-x/ +Log: +Cut a 2-4-x branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Jan 1 20:25:00 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 01 Jan 2008 20:25:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 01 Jan 2008 20:25:00 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id m021OwVY022052; + Tue, 1 Jan 2008 20:24:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 477AE7E5.16A5A.21242 ; + 1 Jan 2008 20:24:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 14B214EF08; + Wed, 2 Jan 2008 01:24:44 +0000 (GMT) +Message-ID: <200801020123.m021N2Q9030488@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 776 + for ; + Wed, 2 Jan 2008 01:24:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 58DE123889 + for ; Wed, 2 Jan 2008 01:24:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m021N3d3030490 + for ; Tue, 1 Jan 2008 20:23:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m021N2Q9030488 + for source@collab.sakaiproject.org; Tue, 1 Jan 2008 20:23:02 -0500 +Date: Tue, 1 Jan 2008 20:23:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39663 - in component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject: component/api component/impl component/proxy util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Jan 1 20:25:00 2008 +X-DSPAM-Confidence: 0.8489 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39663 + +Author: ian@caret.cam.ac.uk +Date: 2008-01-01 20:22:44 -0500 (Tue, 01 Jan 2008) +New Revision: 39663 + +Added: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentManagerRegister.java +Removed: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactoryPreMerge.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiComponentApplicationContextX.java +Modified: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentBeanFactory.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentApplicationContext.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ContainerApplicationContext.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java +Log: +SAK-12134 +Working version using all exported from seperate application contexts, +however, there appear to be some errors with duplicate initialization of components in more than one component manager. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Jan 1 07:40:27 2008 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 01 Jan 2008 07:40:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 01 Jan 2008 07:40:27 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id m01CeQwk003485; + Tue, 1 Jan 2008 07:40:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 477A34B4.AA373.1089 ; + 1 Jan 2008 07:40:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EADB3AD70D; + Tue, 1 Jan 2008 12:40:16 +0000 (GMT) +Message-ID: <200801011238.m01CcxYc028903@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 998 + for ; + Tue, 1 Jan 2008 12:40:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0B6DF3E831 + for ; Tue, 1 Jan 2008 12:40:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m01Cd0jm028905 + for ; Tue, 1 Jan 2008 07:39:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m01CcxYc028903 + for source@collab.sakaiproject.org; Tue, 1 Jan 2008 07:38:59 -0500 +Date: Tue, 1 Jan 2008 07:38:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39662 - in component/branches/SAK-12134: . component-api component-api/component/src/config/org/sakaiproject/config component-api/component/src/java/org/sakaiproject/component/api component-api/component/src/java/org/sakaiproject/component/cover component-api/component/src/java/org/sakaiproject/component/impl component-api/component/src/java/org/sakaiproject/component/proxy component-api/component/src/java/org/sakaiproject/util component-impl component-impl/impl/src/java/org/sakaiproject/component/impl component-impl/integration-test component-impl/integration-test/src component-impl/integration-test/src/java component-impl/integration-test/src/java/org component-impl/integration-test/src/java/org/sakaiproject component-impl/integration-test/src/java/org/sakaiproject/component component-impl/integration-test/src/java/org/sakaiproject/component/test component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic component-impl/in! + tegration-test/src/test component-impl/integration-test/src/test/java component-impl/integration-test/src/test/java/org component-impl/integration-test/src/test/java/org/sakaiproject component-impl/integration-test/src/test/java/org/sakaiproject/component component-impl/integration-test/src/test/resources component-impl/integration-test/src/test/resources/dynamic component-impl/integration-test/src/test/resources/filesystem component-impl/integration-test/src/webapp component-impl/integration-test/src/webapp/WEB-INF component-impl/integration-test/xdocs component-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Jan 1 07:40:27 2008 +X-DSPAM-Confidence: 0.6999 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39662 + +Author: ian@caret.cam.ac.uk +Date: 2008-01-01 07:37:54 -0500 (Tue, 01 Jan 2008) +New Revision: 39662 + +Added: +component/branches/SAK-12134/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/BeanFactoryPostProcessorCreator.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentApplicationContext.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ContainerApplicationContext.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactoryPreMerge.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiComponentApplicationContextX.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java +component/branches/SAK-12134/component-impl/integration-test/ +component/branches/SAK-12134/component-impl/integration-test/pom.xml +component/branches/SAK-12134/component-impl/integration-test/src/ +component/branches/SAK-12134/component-impl/integration-test/src/java/ +component/branches/SAK-12134/component-impl/integration-test/src/java/org/ +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/ +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/ +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/ +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/ +component/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/DbPropertiesDao.java +component/branches/SAK-12134/component-impl/integration-test/src/test/ +component/branches/SAK-12134/component-impl/integration-test/src/test/java/ +component/branches/SAK-12134/component-impl/integration-test/src/test/java/org/ +component/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/ +component/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/component/ +component/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/ +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/dynamic/ +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/dynamic/sakai-configuration.xml +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/dynamic/sakai.properties +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/ +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/sakai-configuration.xml +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/sakai.properties +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/some-peculiar.properties +component/branches/SAK-12134/component-impl/integration-test/src/test/resources/log4j.properties +component/branches/SAK-12134/component-impl/integration-test/src/webapp/ +component/branches/SAK-12134/component-impl/integration-test/src/webapp/WEB-INF/ +component/branches/SAK-12134/component-impl/integration-test/src/webapp/WEB-INF/components.xml +component/branches/SAK-12134/component-impl/integration-test/xdocs/ +component/branches/SAK-12134/component-impl/integration-test/xdocs/README.txt +Modified: +component/branches/SAK-12134/component-api/.classpath +component/branches/SAK-12134/component-api/component/src/config/org/sakaiproject/config/sakai.properties +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentBeanFactory.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java +component/branches/SAK-12134/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java +component/branches/SAK-12134/component-impl/pack/src/webapp/WEB-INF/components.xml +component/branches/SAK-12134/pom.xml +Log: +SAK-12134 +Merged Rays configuration branch +Tested and starts up with full Sakai, but need to do some work on re-establishing the auto export of requested beans, rather than requiring that all are exported and/or +the projects define their exports. I think I may have re-introduced some bindings to spring in the process of the merge. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 31 16:28:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 31 Dec 2007 16:28:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 31 Dec 2007 16:28:46 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBVLSjox014555; + Mon, 31 Dec 2007 16:28:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47795F08.5BFAB.28069 ; + 31 Dec 2007 16:28:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 12225B6180; + Mon, 31 Dec 2007 21:28:42 +0000 (GMT) +Message-ID: <200712312127.lBVLRPqw021363@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 282 + for ; + Mon, 31 Dec 2007 21:28:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 75F94226EC + for ; Mon, 31 Dec 2007 21:28:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVLRPM1021365 + for ; Mon, 31 Dec 2007 16:27:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVLRPqw021363 + for source@collab.sakaiproject.org; Mon, 31 Dec 2007 16:27:25 -0500 +Date: Mon, 31 Dec 2007 16:27:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39660 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 31 16:28:46 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39660 + +Author: zqian@umich.edu +Date: 2007-12-31 16:27:23 -0500 (Mon, 31 Dec 2007) +New Revision: 39660 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge fix to SAK-12543 into post-2-4:svn merge -r 39658:39659 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 31 16:23:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 31 Dec 2007 16:23:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 31 Dec 2007 16:23:41 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lBVLNfqC019552; + Mon, 31 Dec 2007 16:23:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47795DCA.EBF7E.29181 ; + 31 Dec 2007 16:23:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8B422B5EFA; + Mon, 31 Dec 2007 21:23:22 +0000 (GMT) +Message-ID: <200712312122.lBVLM6kP021351@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 757 + for ; + Mon, 31 Dec 2007 21:23:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0FA4F226EC + for ; Mon, 31 Dec 2007 21:23:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVLM6RT021353 + for ; Mon, 31 Dec 2007 16:22:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVLM6kP021351 + for source@collab.sakaiproject.org; Mon, 31 Dec 2007 16:22:06 -0500 +Date: Mon, 31 Dec 2007 16:22:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39659 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 31 16:23:41 2007 +X-DSPAM-Confidence: 0.8501 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39659 + +Author: zqian@umich.edu +Date: 2007-12-31 16:22:03 -0500 (Mon, 31 Dec 2007) +New Revision: 39659 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12543: Assignment tool Adds a Zero at the end of point values under certain condition + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 31 14:57:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 31 Dec 2007 14:57:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 31 Dec 2007 14:57:11 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id lBVJvBKO004445; + Mon, 31 Dec 2007 14:57:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4779498E.1425A.16382 ; + 31 Dec 2007 14:57:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1F55AA16DD; + Mon, 31 Dec 2007 19:57:02 +0000 (GMT) +Message-ID: <200712311955.lBVJtnZl021268@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 982 + for ; + Mon, 31 Dec 2007 19:56:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6613F3E83F + for ; Mon, 31 Dec 2007 19:56:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVJtnBu021270 + for ; Mon, 31 Dec 2007 14:55:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVJtnZl021268 + for source@collab.sakaiproject.org; Mon, 31 Dec 2007 14:55:49 -0500 +Date: Mon, 31 Dec 2007 14:55:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39658 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 31 14:57:11 2007 +X-DSPAM-Confidence: 0.9897 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39658 + +Author: zqian@umich.edu +Date: 2007-12-31 14:55:47 -0500 (Mon, 31 Dec 2007) +New Revision: 39658 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +Fix to SAK-10943 in pot-2-4:Submission notification fails silently for submitting users who don't have an email address + +Only show email notification message when user has submitted the assignment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 31 14:52:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 31 Dec 2007 14:52:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 31 Dec 2007 14:52:50 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id lBVJqn9F022573; + Mon, 31 Dec 2007 14:52:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4779488C.1FA4.27927 ; + 31 Dec 2007 14:52:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8512795840; + Mon, 31 Dec 2007 19:52:46 +0000 (GMT) +Message-ID: <200712311951.lBVJpP1j021254@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 928 + for ; + Mon, 31 Dec 2007 19:52:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3EECA3E83B + for ; Mon, 31 Dec 2007 19:52:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVJpPNp021256 + for ; Mon, 31 Dec 2007 14:51:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVJpP1j021254 + for source@collab.sakaiproject.org; Mon, 31 Dec 2007 14:51:25 -0500 +Date: Mon, 31 Dec 2007 14:51:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39657 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 31 14:52:50 2007 +X-DSPAM-Confidence: 0.9887 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39657 + +Author: zqian@umich.edu +Date: 2007-12-31 14:51:23 -0500 (Mon, 31 Dec 2007) +New Revision: 39657 + +Modified: +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +Fix to SAK-10943:Submission notification fails silently for submitting users who don't have an email address + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 31 14:42:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 31 Dec 2007 14:42:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 31 Dec 2007 14:42:19 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by awakenings.mail.umich.edu () with ESMTP id lBVJgIGS008193; + Mon, 31 Dec 2007 14:42:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47794614.8E936.11188 ; + 31 Dec 2007 14:42:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5A364B5A58; + Mon, 31 Dec 2007 19:42:08 +0000 (GMT) +Message-ID: <200712311940.lBVJetrm021242@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 831 + for ; + Mon, 31 Dec 2007 19:41:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CEBCB3E83B + for ; Mon, 31 Dec 2007 19:41:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVJet7Q021244 + for ; Mon, 31 Dec 2007 14:40:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVJetrm021242 + for source@collab.sakaiproject.org; Mon, 31 Dec 2007 14:40:55 -0500 +Date: Mon, 31 Dec 2007 14:40:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39656 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 31 14:42:19 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39656 + +Author: zqian@umich.edu +Date: 2007-12-31 14:40:53 -0500 (Mon, 31 Dec 2007) +New Revision: 39656 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +fix in post-2-4 for SAK-10943:Submission notification fails silently for submitting users who don't have an email address + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Dec 31 10:48:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 31 Dec 2007 10:48:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 31 Dec 2007 10:48:44 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by godsend.mail.umich.edu () with ESMTP id lBVFmhaV003627; + Mon, 31 Dec 2007 10:48:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47790F55.57694.22780 ; + 31 Dec 2007 10:48:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1F463B5D93; + Mon, 31 Dec 2007 15:48:40 +0000 (GMT) +Message-ID: <200712311547.lBVFlFfL020924@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676 + for ; + Mon, 31 Dec 2007 15:48:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AF18540E9A + for ; Mon, 31 Dec 2007 15:48:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVFlF75020926 + for ; Mon, 31 Dec 2007 10:47:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVFlFfL020924 + for source@collab.sakaiproject.org; Mon, 31 Dec 2007 10:47:15 -0500 +Date: Mon, 31 Dec 2007 10:47:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39655 - in gradebook/trunk: . helper-app helper-app/src/java/org/sakaiproject/gradebook/tool/entity helper-app/src/java/org/sakaiproject/gradebook/tool/helper helper-app/src/java/org/sakaiproject/gradebook/tool/params helper-app/src/webapp/WEB-INF helper-app/src/webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 31 10:48:44 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39655 + +Author: rjlowe@iupui.edu +Date: 2007-12-31 10:47:13 -0500 (Mon, 31 Dec 2007) +New Revision: 39655 + +Added: +gradebook/trunk/helper-app/project.properties +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/PermissionsErrorProducer.java +gradebook/trunk/helper-app/src/webapp/content/templates/permissions-error.html +Modified: +gradebook/trunk/.classpath +gradebook/trunk/helper-app/pom.xml +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProvider.java +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/params/AddGradebookItemViewParams.java +gradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/helper-app/src/webapp/WEB-INF/requestContext.xml +gradebook/trunk/pom.xml +Log: +NOJIRA - Use entity broker for gradebook add/edit helper, set dependencies for GradebookService + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 31 09:04:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 31 Dec 2007 09:04:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 31 Dec 2007 09:04:07 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lBVE46HY010097; + Mon, 31 Dec 2007 09:04:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4778F6D0.24457.29822 ; + 31 Dec 2007 09:04:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E1019AE917; + Mon, 31 Dec 2007 14:03:55 +0000 (GMT) +Message-ID: <200712311402.lBVE2MHt020828@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1021 + for ; + Mon, 31 Dec 2007 14:03:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D33FA3DF05 + for ; Mon, 31 Dec 2007 14:03:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVE2MLD020830 + for ; Mon, 31 Dec 2007 09:02:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVE2MHt020828 + for source@collab.sakaiproject.org; Mon, 31 Dec 2007 09:02:22 -0500 +Date: Mon, 31 Dec 2007 09:02:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39654 - gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 31 09:04:07 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39654 + +Author: wagnermr@iupui.edu +Date: 2007-12-31 09:02:19 -0500 (Mon, 31 Dec 2007) +New Revision: 39654 + +Modified: +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +fix new getAssignmentScore error + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Sun Dec 30 22:44:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 30 Dec 2007 22:44:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 30 Dec 2007 22:44:30 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lBV3iTtd002060; + Sun, 30 Dec 2007 22:44:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47786597.E1D91.27792 ; + 30 Dec 2007 22:44:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3BAF5B36AC; + Mon, 31 Dec 2007 03:44:30 +0000 (GMT) +Message-ID: <200712310343.lBV3h9Ge019764@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 843 + for ; + Mon, 31 Dec 2007 03:44:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 249363DFBB + for ; Mon, 31 Dec 2007 03:44:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBV3h9nx019766 + for ; Sun, 30 Dec 2007 22:43:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBV3h9Ge019764 + for source@collab.sakaiproject.org; Sun, 30 Dec 2007 22:43:09 -0500 +Date: Sun, 30 Dec 2007 22:43:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39653 - portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 30 22:44:30 2007 +X-DSPAM-Confidence: 0.8489 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39653 + +Author: csev@umich.edu +Date: 2007-12-30 22:43:07 -0500 (Sun, 30 Dec 2007) +New Revision: 39653 + +Modified: +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm +Log: +SAK-12402 + +Catch the situation where there are no tabs and fix. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Sun Dec 30 16:47:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 30 Dec 2007 16:47:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 30 Dec 2007 16:47:46 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lBULljT2001865; + Sun, 30 Dec 2007 16:47:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 477811FC.20F3E.1656 ; + 30 Dec 2007 16:47:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 32090B4D96; + Sun, 30 Dec 2007 21:47:44 +0000 (GMT) +Message-ID: <200712302146.lBULkVO0019485@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 81 + for ; + Sun, 30 Dec 2007 21:47:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AEE793E232 + for ; Sun, 30 Dec 2007 21:47:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBULkVx7019487 + for ; Sun, 30 Dec 2007 16:46:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBULkVO0019485 + for source@collab.sakaiproject.org; Sun, 30 Dec 2007 16:46:31 -0500 +Date: Sun, 30 Dec 2007 16:46:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39652 - in web/branches/SAK-12563/web-portlet/portlet/src: java/org/sakaiproject/portlets webapp/WEB-INF/sakai +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 30 16:47:46 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39652 + +Author: csev@umich.edu +Date: 2007-12-30 16:46:26 -0500 (Sun, 30 Dec 2007) +New Revision: 39652 + +Modified: +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/SakaiIFrame.java +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/sakai/SakaiIFrame.xml +Log: +SAK-12563 + +Changes to catch up with my SAK-12402 branch. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Sun Dec 30 16:46:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 30 Dec 2007 16:46:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 30 Dec 2007 16:46:59 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by chaos.mail.umich.edu () with ESMTP id lBULkwwV030660; + Sun, 30 Dec 2007 16:46:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 477811CC.4C15.18923 ; + 30 Dec 2007 16:46:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2DB6AB4D7A; + Sun, 30 Dec 2007 21:46:54 +0000 (GMT) +Message-ID: <200712302145.lBULjaZs019473@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 777 + for ; + Sun, 30 Dec 2007 21:46:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9BFB03E234 + for ; Sun, 30 Dec 2007 21:46:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBULja91019475 + for ; Sun, 30 Dec 2007 16:45:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBULjaZs019473 + for source@collab.sakaiproject.org; Sun, 30 Dec 2007 16:45:36 -0500 +Date: Sun, 30 Dec 2007 16:45:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39651 - in portal/branches/SAK-12402: portal-api/api/src/java/org/sakaiproject/portal/api portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 30 16:46:59 2007 +X-DSPAM-Confidence: 0.5435 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39651 + +Author: csev@umich.edu +Date: 2007-12-30 16:45:29 -0500 (Sun, 30 Dec 2007) +New Revision: 39651 + +Modified: +portal/branches/SAK-12402/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-12402 + +Futher cleanup - introduce two new properties: + +sakai:portlet-pre-render - indicates that the portal is to pre-render portlet +content before the view starts - this allows the portal to check to see if the +portlet has requested to be switch to/from maximize mode on +any particular request. + +sakai:prefer-maximize - This indicates that the tool always wants to +be maximized. This makes most sense for non-JSR-168 tools that want +to have a lot of horizontal and vertical space and want portal navigation +to be as minimal as possible while the tool is active. + +This branch is getting pretty mature now. I need to write documentation +about these new features next. I do need to do a line by line code review +of all my changes since the start of the branch as well before I am happy. +I also am writing a test plan for these features. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Sun Dec 30 13:33:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 30 Dec 2007 13:33:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 30 Dec 2007 13:33:59 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lBUIXwFd020646; + Sun, 30 Dec 2007 13:33:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4777E48C.8D27C.13354 ; + 30 Dec 2007 13:33:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 12B2DB4A20; + Sun, 30 Dec 2007 18:30:06 +0000 (GMT) +Message-ID: <200712301832.lBUIWam0019313@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 77 + for ; + Sun, 30 Dec 2007 18:29:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7351723031 + for ; Sun, 30 Dec 2007 18:33:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUIWaEX019315 + for ; Sun, 30 Dec 2007 13:32:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUIWam0019313 + for source@collab.sakaiproject.org; Sun, 30 Dec 2007 13:32:36 -0500 +Date: Sun, 30 Dec 2007 13:32:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39650 - sam/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 30 13:33:59 2007 +X-DSPAM-Confidence: 0.9779 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39650 + +Author: rjlowe@iupui.edu +Date: 2007-12-30 13:32:35 -0500 (Sun, 30 Dec 2007) +New Revision: 39650 + +Added: +sam/branches/SAK-12569/ +Log: +SAK-12569 Branch of Samigo for Joshua Ryan + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Dec 30 12:38:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 30 Dec 2007 12:38:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 30 Dec 2007 12:38:52 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id lBUHcp8S008941; + Sun, 30 Dec 2007 12:38:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4777D7A5.D1D70.13288 ; + 30 Dec 2007 12:38:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6BE54B2662; + Sun, 30 Dec 2007 17:38:41 +0000 (GMT) +Message-ID: <200712301737.lBUHbRgl019208@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 65 + for ; + Sun, 30 Dec 2007 17:38:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0714A40E93 + for ; Sun, 30 Dec 2007 17:38:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUHbSRW019210 + for ; Sun, 30 Dec 2007 12:37:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUHbRgl019208 + for source@collab.sakaiproject.org; Sun, 30 Dec 2007 12:37:27 -0500 +Date: Sun, 30 Dec 2007 12:37:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39649 - in content/trunk: content-impl/impl/src/java/org/sakaiproject/content/impl content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 30 12:38:52 2007 +X-DSPAM-Confidence: 0.8508 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39649 + +Author: jimeng@umich.edu +Date: 2007-12-30 12:37:21 -0500 (Sun, 30 Dec 2007) +New Revision: 39649 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +SAK-12426 +Changed logging level to debug (instead of warn) for OverQuotaException and ServerOverloadException +Changed logging level to debug (instead of warn) when attempting to remove a partially created resource fails (indicating no records exist for that resource-id). + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Sun Dec 30 10:35:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 30 Dec 2007 10:35:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 30 Dec 2007 10:35:06 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id lBUFZ5lC016098; + Sun, 30 Dec 2007 10:35:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4777BAA3.9BC3D.14360 ; + 30 Dec 2007 10:35:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EFE49A7E31; + Sun, 30 Dec 2007 15:34:58 +0000 (GMT) +Message-ID: <200712301533.lBUFXiIE019044@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 931 + for ; + Sun, 30 Dec 2007 15:34:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B99AB3DF9B + for ; Sun, 30 Dec 2007 15:34:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUFXiFX019046 + for ; Sun, 30 Dec 2007 10:33:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUFXiIE019044 + for source@collab.sakaiproject.org; Sun, 30 Dec 2007 10:33:44 -0500 +Date: Sun, 30 Dec 2007 10:33:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39648 - in portal/branches/SAK-12402: portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 30 10:35:06 2007 +X-DSPAM-Confidence: 0.5933 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39648 + +Author: csev@umich.edu +Date: 2007-12-30 10:33:39 -0500 (Sun, 30 Dec 2007) +New Revision: 39648 + +Modified: +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm +Log: +SAK-12402 + +Yet another step in the process where stuff is working... Logic moved +from the view file into the Java - per Ian. + +Next steps: Properties on tools to indicate JSR-168 preload-requested and +on a Sakai tool to request a frame view. + +Getting closer to the time to write some documentation. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Sun Dec 30 10:01:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 30 Dec 2007 10:01:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 30 Dec 2007 10:01:32 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id lBUF1VMY006155; + Sun, 30 Dec 2007 10:01:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4777B2C2.207F1.20881 ; + 30 Dec 2007 10:01:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1F208B3B3F; + Sun, 30 Dec 2007 15:01:19 +0000 (GMT) +Message-ID: <200712301500.lBUF0B4u019016@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 111 + for ; + Sun, 30 Dec 2007 15:01:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6B7361D643 + for ; Sun, 30 Dec 2007 15:01:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUF0BGv019018 + for ; Sun, 30 Dec 2007 10:00:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUF0B4u019016 + for source@collab.sakaiproject.org; Sun, 30 Dec 2007 10:00:11 -0500 +Date: Sun, 30 Dec 2007 10:00:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39647 - in portal/branches/SAK-12402: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 30 10:01:32 2007 +X-DSPAM-Confidence: 0.6517 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39647 + +Author: csev@umich.edu +Date: 2007-12-30 10:00:03 -0500 (Sun, 30 Dec 2007) +New Revision: 39647 + +Modified: +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site-frame-top.vm +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm +Log: +SAK-12402 + +Refactor step 1. Checking in stuff that (once again) is working so I don't slide backwards. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Sat Dec 29 21:08:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 29 Dec 2007 21:08:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 29 Dec 2007 21:08:48 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lBU28mAR005267; + Sat, 29 Dec 2007 21:08:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4776FDA8.9DAD4.5892 ; + 29 Dec 2007 21:08:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 349B356E8B; + Sun, 30 Dec 2007 02:07:26 +0000 (GMT) +Message-ID: <200712300207.lBU27ARw005364@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 223 + for ; + Sun, 30 Dec 2007 02:07:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A1AC3923E + for ; Sun, 30 Dec 2007 02:08:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBU27APJ005366 + for ; Sat, 29 Dec 2007 21:07:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBU27ARw005364 + for source@collab.sakaiproject.org; Sat, 29 Dec 2007 21:07:10 -0500 +Date: Sat, 29 Dec 2007 21:07:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39646 - calendar/trunk/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 29 21:08:48 2007 +X-DSPAM-Confidence: 0.8487 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39646 + +Author: gsilver@umich.edu +Date: 2007-12-29 21:07:07 -0500 (Sat, 29 Dec 2007) +New Revision: 39646 + +Modified: +calendar/trunk/calendar-tool/tool/src/bundle/calendar.properties +Log: +SAK-9349 +http://jira.sakaiproject.org/jira/browse/SAK-9349 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Sat Dec 29 14:48:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 29 Dec 2007 14:48:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 29 Dec 2007 14:48:54 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lBTJmrTE006805; + Sat, 29 Dec 2007 14:48:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4776A49F.728DB.31917 ; + 29 Dec 2007 14:48:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7949C5FFC1; + Sat, 29 Dec 2007 19:48:41 +0000 (GMT) +Message-ID: <200712291947.lBTJlVpc005131@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 842 + for ; + Sat, 29 Dec 2007 19:48:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 938C03DD73 + for ; Sat, 29 Dec 2007 19:48:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBTJlVPK005133 + for ; Sat, 29 Dec 2007 14:47:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBTJlVpc005131 + for source@collab.sakaiproject.org; Sat, 29 Dec 2007 14:47:31 -0500 +Date: Sat, 29 Dec 2007 14:47:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39645 - in component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject: component/api component/cover component/impl component/proxy util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 29 14:48:54 2007 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39645 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-29 14:47:11 -0500 (Sat, 29 Dec 2007) +New Revision: 39645 + +Added: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentBeanFactory.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/spring/ +Removed: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java +Modified: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java +Log: +SAK-12134 + +Hierachical SPring now working, removed all common refences to Spring in the components space. + +The BeanFactory registeres exported beans based on usage and maintains a dependency graph +No proxies are required to make this work, + +next step to move spring out of shared. + + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Sat Dec 29 10:29:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 29 Dec 2007 10:29:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 29 Dec 2007 10:29:43 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id lBTFThod022121; + Sat, 29 Dec 2007 10:29:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 477667DD.8FF63.32182 ; + 29 Dec 2007 10:29:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5E489B269D; + Sat, 29 Dec 2007 15:29:29 +0000 (GMT) +Message-ID: <200712291528.lBTFSPXk004909@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 56 + for ; + Sat, 29 Dec 2007 15:29:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 77CBA332C0 + for ; Sat, 29 Dec 2007 15:29:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBTFSPKQ004911 + for ; Sat, 29 Dec 2007 10:28:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBTFSPXk004909 + for source@collab.sakaiproject.org; Sat, 29 Dec 2007 10:28:25 -0500 +Date: Sat, 29 Dec 2007 10:28:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39644 - in portal/branches/SAK-12402: portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 29 10:29:43 2007 +X-DSPAM-Confidence: 0.6186 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39644 + +Author: csev@umich.edu +Date: 2007-12-29 10:28:19 -0500 (Sat, 29 Dec 2007) +New Revision: 39644 + +Added: +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site-frame-top.vm +Removed: +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm +Modified: +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +Fix last second typo and rename view file to make more sense. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Sat Dec 29 10:11:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 29 Dec 2007 10:11:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 29 Dec 2007 10:11:22 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by awakenings.mail.umich.edu () with ESMTP id lBTFBLVd014628; + Sat, 29 Dec 2007 10:11:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47766394.28724.19396 ; + 29 Dec 2007 10:11:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F1E55B0FE6; + Sat, 29 Dec 2007 15:11:07 +0000 (GMT) +Message-ID: <200712291509.lBTF9u3h004880@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 929 + for ; + Sat, 29 Dec 2007 15:10:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 999A023736 + for ; Sat, 29 Dec 2007 15:10:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBTF9uRw004882 + for ; Sat, 29 Dec 2007 10:09:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBTF9u3h004880 + for source@collab.sakaiproject.org; Sat, 29 Dec 2007 10:09:56 -0500 +Date: Sat, 29 Dec 2007 10:09:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39643 - in portal/branches/SAK-12402: portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 29 10:11:22 2007 +X-DSPAM-Confidence: 0.6567 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39643 + +Author: csev@umich.edu +Date: 2007-12-29 10:09:51 -0500 (Sat, 29 Dec 2007) +New Revision: 39643 + +Modified: +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm +Log: +Basic Navigation worked out. + +If you navigate to the site from another site and the first tool requests maximize +you see maximize. + +If there is only one tool on a site and it requests maximize, it always gets it. In this +case the tool name is not even shown in the frame view - the site link becomes the "reset" +for the tool. + +If in Maximize mode, you click on the site or my workspace - maximize mode is suppressed +for the next display - unless there is only one tool - you always see the tool list. When +you then click on a tool - if it wants maximize it gets it. This way even when all tools +want maximize, you can move between tools by clicking on the site link in maximize view. + +The best usability will likely be if the first tool in the site (like the Home tool) does +not request Maximize. However - if this is the case, here is the sequence. (1) Navigate +to the site for the first time - first tool will be selected and shown maximally. (2) +Click the Site tab - tools will be shown - the first tool will be selected and shown +in non-maximized mode. (3) Since you cannot click on a selected tool - you must click +on another tool and then click on the first tool to re-maximize the first tool, (4) +if you click on a tool which also requests maximize, you must then click the site in +Maximize view and then click on the first tool. The simple rule is that when you +are in Maximized view and click on a site - you will see the tools unless there is only +one tool available. + +Again - the best usability will happen if you build sites such that the first tool doest +not request Maximize unless there is only one tool on the site. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Fri Dec 28 23:00:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 28 Dec 2007 23:00:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 28 Dec 2007 23:00:54 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lBT40rea015606; + Fri, 28 Dec 2007 23:00:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4775C66F.9840A.28296 ; + 28 Dec 2007 23:00:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0648A7DEB7; + Sat, 29 Dec 2007 04:00:45 +0000 (GMT) +Message-ID: <200712290359.lBT3xa6q003568@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 243 + for ; + Sat, 29 Dec 2007 04:00:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BA3CD406EB + for ; Sat, 29 Dec 2007 04:00:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBT3xaSn003570 + for ; Fri, 28 Dec 2007 22:59:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBT3xa6q003568 + for source@collab.sakaiproject.org; Fri, 28 Dec 2007 22:59:36 -0500 +Date: Fri, 28 Dec 2007 22:59:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39642 - in portal/branches/SAK-12402: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 28 23:00:54 2007 +X-DSPAM-Confidence: 0.5304 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39642 + +Author: csev@umich.edu +Date: 2007-12-28 22:59:30 -0500 (Fri, 28 Dec 2007) +New Revision: 39642 + +Modified: +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm +Log: +SAK-12402 + +Intermediate state - now all tools - JSR-168 and non-JSR-168 appear +in the frameset. Using this mode to think through navigation between +tools when in framesets. + +Probably time to start migrating the trigger code from site.vm back into +SkinnablePortal. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Fri Dec 28 16:45:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 28 Dec 2007 16:45:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 28 Dec 2007 16:45:42 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by faithful.mail.umich.edu () with ESMTP id lBSLjfep029293; + Fri, 28 Dec 2007 16:45:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47756E7B.9324.11613 ; + 28 Dec 2007 16:45:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0C6BFB1BBA; + Fri, 28 Dec 2007 21:45:30 +0000 (GMT) +Message-ID: <200712282144.lBSLiPoi003290@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 485 + for ; + Fri, 28 Dec 2007 21:45:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7ED463C227 + for ; Fri, 28 Dec 2007 21:45:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSLiP8c003292 + for ; Fri, 28 Dec 2007 16:44:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSLiPoi003290 + for source@collab.sakaiproject.org; Fri, 28 Dec 2007 16:44:25 -0500 +Date: Fri, 28 Dec 2007 16:44:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39641 - in podcasts/trunk/podcasts-app/src/webapp: css podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 28 16:45:42 2007 +X-DSPAM-Confidence: 0.8479 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39641 + +Author: josrodri@iupui.edu +Date: 2007-12-28 16:44:24 -0500 (Fri, 28 Dec 2007) +New Revision: 39641 + +Modified: +podcasts/trunk/podcasts-app/src/webapp/css/podcaster.css +podcasts/trunk/podcasts-app/src/webapp/podcasts/podMain.jsp +Log: +SAK-9882: refactored podMain.jsp the right way (at least much closer to) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Fri Dec 28 14:16:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 28 Dec 2007 14:16:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 28 Dec 2007 14:16:46 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by sleepers.mail.umich.edu () with ESMTP id lBSJGjJs009847; + Fri, 28 Dec 2007 14:16:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47754B97.6E649.3129 ; + 28 Dec 2007 14:16:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3492D56925; + Fri, 28 Dec 2007 19:16:39 +0000 (GMT) +Message-ID: <200712281915.lBSJFYkN003095@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 914 + for ; + Fri, 28 Dec 2007 19:16:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ACCBA42967 + for ; Fri, 28 Dec 2007 19:16:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSJFY7Z003097 + for ; Fri, 28 Dec 2007 14:15:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSJFYkN003095 + for source@collab.sakaiproject.org; Fri, 28 Dec 2007 14:15:34 -0500 +Date: Fri, 28 Dec 2007 14:15:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39640 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 28 14:16:46 2007 +X-DSPAM-Confidence: 0.7608 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39640 + +Author: josrodri@iupui.edu +Date: 2007-12-28 14:15:33 -0500 (Fri, 28 Dec 2007) +New Revision: 39640 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +Log: +SAK-12549: Did not deal properly with a valid assignment but no grades recorded + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Fri Dec 28 12:15:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 28 Dec 2007 12:15:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 28 Dec 2007 12:15:25 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lBSHFO3b022691; + Fri, 28 Dec 2007 12:15:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47752F26.3037E.17702 ; + 28 Dec 2007 12:15:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F3808B184B; + Fri, 28 Dec 2007 17:13:42 +0000 (GMT) +Message-ID: <200712281713.lBSHDjDK002939@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760 + for ; + Fri, 28 Dec 2007 17:13:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A9E523BE01 + for ; Fri, 28 Dec 2007 17:14:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSHDjUF002941 + for ; Fri, 28 Dec 2007 12:13:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSHDjDK002939 + for source@collab.sakaiproject.org; Fri, 28 Dec 2007 12:13:45 -0500 +Date: Fri, 28 Dec 2007 12:13:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39639 - in portal/branches/SAK-12402: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 28 12:15:25 2007 +X-DSPAM-Confidence: 0.5717 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39639 + +Author: csev@umich.edu +Date: 2007-12-28 12:11:44 -0500 (Fri, 28 Dec 2007) +New Revision: 39639 + +Modified: +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm +Log: +Added reset capability, added a third tab for the Tool Title which both +appears to be selected and is the reset URL. Experimented with trying +to move the Edit icon around - failed - will leave that to the pros :) + +Need to add a popup confirming desire to reset. + +Next steps - make it so any tool can use this feature - not just +JSR-168 tools. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 28 12:08:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 28 Dec 2007 12:08:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 28 Dec 2007 12:08:11 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lBSH8A4b032583; + Fri, 28 Dec 2007 12:08:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47752D74.B62D5.31391 ; + 28 Dec 2007 12:08:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3AF6963913; + Fri, 28 Dec 2007 17:08:04 +0000 (GMT) +Message-ID: <200712281706.lBSH6tVw002921@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 76 + for ; + Fri, 28 Dec 2007 17:07:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3B07B3BE06 + for ; Fri, 28 Dec 2007 17:07:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSH6u7B002923 + for ; Fri, 28 Dec 2007 12:06:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSH6tVw002921 + for source@collab.sakaiproject.org; Fri, 28 Dec 2007 12:06:55 -0500 +Date: Fri, 28 Dec 2007 12:06:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39638 - in component/branches/SAK-12134: component-api/component/src/java/org/sakaiproject/component/impl component-api/component/src/java/org/sakaiproject/util component-shared-deploy +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 28 12:08:11 2007 +X-DSPAM-Confidence: 0.8464 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39638 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-28 12:06:41 -0500 (Fri, 28 Dec 2007) +New Revision: 39638 + +Modified: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java +component/branches/SAK-12134/component-shared-deploy/pom.xml +Log: +SAK-12134 +Hierachical Spring Contexts. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Fri Dec 28 11:56:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 28 Dec 2007 11:56:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 28 Dec 2007 11:56:39 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id lBSGucsU028549; + Fri, 28 Dec 2007 11:56:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47752AC0.F0495.18136 ; + 28 Dec 2007 11:56:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EE1D06E108; + Fri, 28 Dec 2007 16:56:31 +0000 (GMT) +Message-ID: <200712281655.lBSGtLvP002893@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 501 + for ; + Fri, 28 Dec 2007 16:56:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 683AA3BE06 + for ; Fri, 28 Dec 2007 16:56:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSGtLO0002895 + for ; Fri, 28 Dec 2007 11:55:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSGtLvP002893 + for source@collab.sakaiproject.org; Fri, 28 Dec 2007 11:55:21 -0500 +Date: Fri, 28 Dec 2007 11:55:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39637 - in web/branches/SAK-12563/web-portlet/portlet/src: bundle/vm java/org/sakaiproject/portlet/util java/org/sakaiproject/portlets webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 28 11:56:39 2007 +X-DSPAM-Confidence: 0.7599 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39637 + +Author: csev@umich.edu +Date: 2007-12-28 11:55:15 -0500 (Fri, 28 Dec 2007) +New Revision: 39637 + +Removed: +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/JSPHelper.java +Modified: +web/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/edit.vm +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/SakaiIFrame.java +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/portlet.xml +Log: +beginning code merge from Web Content Tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 27 21:41:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 21:41:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 21:41:53 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lBS2fqSw002835; + Thu, 27 Dec 2007 21:41:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4774626A.49356.31043 ; + 27 Dec 2007 21:41:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 42281814D1; + Fri, 28 Dec 2007 02:41:41 +0000 (GMT) +Message-ID: <200712280240.lBS2eTSo032192@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 19 + for ; + Fri, 28 Dec 2007 02:41:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9DFA03F5F7 + for ; Fri, 28 Dec 2007 02:41:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBS2eT7j032194 + for ; Thu, 27 Dec 2007 21:40:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBS2eTSo032192 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 21:40:29 -0500 +Date: Thu, 27 Dec 2007 21:40:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39636 - in assignment/branches/post-2-4: . assignment-impl/impl assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl assignment-impl/pack assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 21:41:53 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39636 + +Author: zqian@umich.edu +Date: 2007-12-27 21:40:21 -0500 (Thu, 27 Dec 2007) +New Revision: 39636 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/project.xml +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +assignment/branches/post-2-4/assignment-impl/pack/project.xml +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +assignment/branches/post-2-4/runconversion.sh +assignment/branches/post-2-4/upgradeschema_mysql.config +assignment/branches/post-2-4/upgradeschema_oracle.config +Log: +related to SAK-11821. + +Merge the branch post-2-4-umich back into post-2-4 branch for further conversion script fixes. + +svn merge -r 39156:HEAD https://source.sakaiproject.org/svn//assignment/branches/post-2-4-umich/ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 27 21:23:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 21:23:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 21:23:45 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lBS2NibU021360; + Thu, 27 Dec 2007 21:23:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47745E2B.E0F5C.25739 ; + 27 Dec 2007 21:23:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D1D9458377; + Fri, 28 Dec 2007 02:23:38 +0000 (GMT) +Message-ID: <200712280222.lBS2MXro032178@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 511 + for ; + Fri, 28 Dec 2007 02:23:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A65F62319C + for ; Fri, 28 Dec 2007 02:23:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBS2MX6N032180 + for ; Thu, 27 Dec 2007 21:22:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBS2MXro032178 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 21:22:33 -0500 +Date: Thu, 27 Dec 2007 21:22:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39635 - assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 21:23:45 2007 +X-DSPAM-Confidence: 0.9865 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39635 + +Author: zqian@umich.edu +Date: 2007-12-27 21:22:31 -0500 (Thu, 27 Dec 2007) +New Revision: 39635 + +Modified: +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +Log: +fixed the problem of leaving Base64 encoded String inside the various previous grade information + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From knoop@umich.edu Thu Dec 27 17:54:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 17:54:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 17:54:58 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id lBRMsvgC018508; + Thu, 27 Dec 2007 17:54:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47742D3C.50CA8.17416 ; + 27 Dec 2007 17:54:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A9A2B09DD; + Thu, 27 Dec 2007 22:53:08 +0000 (GMT) +Message-ID: <200712272253.lBRMrsju032005@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131 + for ; + Thu, 27 Dec 2007 22:52:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6D54431F57 + for ; Thu, 27 Dec 2007 22:54:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMrsFX032007 + for ; Thu, 27 Dec 2007 17:53:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMrsju032005 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:53:54 -0500 +Date: Thu, 27 Dec 2007 17:53:54 -0500 +To: source@collab.sakaiproject.org +From: knoop@umich.edu +Subject: [svn] revprop propchange - r38445 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 17:54:58 2007 +X-DSPAM-Confidence: 0.9776 +X-DSPAM-Probability: 0.0000 + +Author: knoop@umich.edu +Revision: 38445 +Property Name: svn:log + +New Property Value: +SAK-12239 +Creating branch in util for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From knoop@umich.edu Thu Dec 27 17:54:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 17:54:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 17:54:31 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lBRMsVLV017439; + Thu, 27 Dec 2007 17:54:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47742D1D.C6E77.29734 ; + 27 Dec 2007 17:54:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 52B38B09CE; + Thu, 27 Dec 2007 22:52:38 +0000 (GMT) +Message-ID: <200712272253.lBRMrOa3031989@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692 + for ; + Thu, 27 Dec 2007 22:52:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E87B231F57 + for ; Thu, 27 Dec 2007 22:54:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMrOE9031991 + for ; Thu, 27 Dec 2007 17:53:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMrOa3031989 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:53:24 -0500 +Date: Thu, 27 Dec 2007 17:53:24 -0500 +To: source@collab.sakaiproject.org +From: knoop@umich.edu +Subject: [svn] revprop propchange - r38444 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 17:54:31 2007 +X-DSPAM-Confidence: 0.9776 +X-DSPAM-Probability: 0.0000 + +Author: knoop@umich.edu +Revision: 38444 +Property Name: svn:log + +New Property Value: +SAK-12239 +Creating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From knoop@umich.edu Thu Dec 27 17:53:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 17:53:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 17:53:56 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lBRMrtgL023425; + Thu, 27 Dec 2007 17:53:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47742CFD.79F5C.32351 ; + 27 Dec 2007 17:53:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D3905B09D4; + Thu, 27 Dec 2007 22:52:04 +0000 (GMT) +Message-ID: <200712272252.lBRMqjXC031973@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 143 + for ; + Thu, 27 Dec 2007 22:51:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 03F8B31F57 + for ; Thu, 27 Dec 2007 22:53:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMqjUK031975 + for ; Thu, 27 Dec 2007 17:52:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMqjXC031973 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:52:45 -0500 +Date: Thu, 27 Dec 2007 17:52:45 -0500 +To: source@collab.sakaiproject.org +From: knoop@umich.edu +Subject: [svn] revprop propchange - r38443 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 17:53:56 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Author: knoop@umich.edu +Revision: 38443 +Property Name: svn:log + +New Property Value: +SAK-12239 +Creating branch in db for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From knoop@umich.edu Thu Dec 27 17:52:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 17:52:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 17:52:45 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id lBRMqiis029928; + Thu, 27 Dec 2007 17:52:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47742CB6.1B00B.27549 ; + 27 Dec 2007 17:52:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BFB7BB09CE; + Thu, 27 Dec 2007 22:50:52 +0000 (GMT) +Message-ID: <200712272251.lBRMpcwg031956@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 871 + for ; + Thu, 27 Dec 2007 22:50:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 671A742905 + for ; Thu, 27 Dec 2007 22:52:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMpcMX031958 + for ; Thu, 27 Dec 2007 17:51:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMpcwg031956 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:51:38 -0500 +Date: Thu, 27 Dec 2007 17:51:38 -0500 +To: source@collab.sakaiproject.org +From: knoop@umich.edu +Subject: [svn] revprop propchange - r38438 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 17:52:45 2007 +X-DSPAM-Confidence: 0.9776 +X-DSPAM-Probability: 0.0000 + +Author: knoop@umich.edu +Revision: 38438 +Property Name: svn:log + +New Property Value: +SAK-12239 +Creating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From knoop@umich.edu Thu Dec 27 17:52:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 17:52:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 17:52:14 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lBRMqDgW022521; + Thu, 27 Dec 2007 17:52:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47742C97.11665.23903 ; + 27 Dec 2007 17:52:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EE25FB08E9; + Thu, 27 Dec 2007 22:50:20 +0000 (GMT) +Message-ID: <200712272250.lBRMovO5031940@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 163 + for ; + Thu, 27 Dec 2007 22:50:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE38E3E4C7 + for ; Thu, 27 Dec 2007 22:51:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMowKC031942 + for ; Thu, 27 Dec 2007 17:50:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMovO5031940 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:50:57 -0500 +Date: Thu, 27 Dec 2007 17:50:57 -0500 +To: source@collab.sakaiproject.org +From: knoop@umich.edu +Subject: [svn] revprop propchange - r38442 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 17:52:14 2007 +X-DSPAM-Confidence: 0.9793 +X-DSPAM-Probability: 0.0000 + +Author: knoop@umich.edu +Revision: 38442 +Property Name: svn:log + +New Property Value: +SAK-12239 +Creating branch in content for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 27 13:47:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 13:47:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 13:47:44 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id lBRIlh5T022091; + Thu, 27 Dec 2007 13:47:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4773F344.1D75.1160 ; + 27 Dec 2007 13:47:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BA61C4FE86; + Thu, 27 Dec 2007 18:45:38 +0000 (GMT) +Message-ID: <200712271846.lBRIkLDG031709@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88 + for ; + Thu, 27 Dec 2007 18:45:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 88BD44294A + for ; Thu, 27 Dec 2007 18:47:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRIkLkU031711 + for ; Thu, 27 Dec 2007 13:46:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRIkLDG031709 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 13:46:21 -0500 +Date: Thu, 27 Dec 2007 13:46:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39634 - in msgcntr/trunk/messageforums-hbm/src: java/org/sakaiproject/component/app/messageforums/dao/hibernate sql/mysql sql/oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 13:47:44 2007 +X-DSPAM-Confidence: 0.9857 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39634 + +Author: cwen@iupui.edu +Date: 2007-12-27 13:46:19 -0500 (Thu, 27 Dec 2007) +New Revision: 39634 + +Added: +msgcntr/trunk/messageforums-hbm/src/sql/mysql/SAK-8421.sql +msgcntr/trunk/messageforums-hbm/src/sql/oracle/SAK-8421.sql +Modified: +msgcntr/trunk/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/UnreadStatus.hbm.xml +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-8421 +=> +add indexes. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Dec 27 12:11:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 12:11:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 12:11:07 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by casino.mail.umich.edu () with ESMTP id lBRHB6HN006786; + Thu, 27 Dec 2007 12:11:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4773DCA4.4DCF7.676 ; + 27 Dec 2007 12:11:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A812CA1E55; + Thu, 27 Dec 2007 17:10:56 +0000 (GMT) +Message-ID: <200712271709.lBRH9tAQ031599@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356 + for ; + Thu, 27 Dec 2007 17:10:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4C5E12398B + for ; Thu, 27 Dec 2007 17:10:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRH9tF6031601 + for ; Thu, 27 Dec 2007 12:09:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRH9tAQ031599 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 12:09:55 -0500 +Date: Thu, 27 Dec 2007 12:09:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39633 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 12:11:07 2007 +X-DSPAM-Confidence: 0.8480 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39633 + +Author: jimeng@umich.edu +Date: 2007-12-27 12:09:51 -0500 (Thu, 27 Dec 2007) +New Revision: 39633 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +Log: +SAK-12501 +Include column-specs in new oracle statement + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Dec 27 10:24:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 10:24:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 10:24:11 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lBRFOBaX013956; + Thu, 27 Dec 2007 10:24:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4773C395.7007A.5519 ; + 27 Dec 2007 10:24:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BA04551D31; + Thu, 27 Dec 2007 15:19:58 +0000 (GMT) +Message-ID: <200712271522.lBRFM0nt031538@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904 + for ; + Thu, 27 Dec 2007 15:19:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8B28242903 + for ; Thu, 27 Dec 2007 15:22:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRFM1tS031540 + for ; Thu, 27 Dec 2007 10:22:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRFM0nt031538 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 10:22:01 -0500 +Date: Thu, 27 Dec 2007 10:22:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39632 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 10:24:11 2007 +X-DSPAM-Confidence: 0.9857 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39632 + +Author: jimeng@umich.edu +Date: 2007-12-27 10:21:57 -0500 (Thu, 27 Dec 2007) +New Revision: 39632 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +Log: +SAK-12501 +Revised oracle sql syntax. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Thu Dec 27 10:20:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 10:20:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 10:20:38 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by brazil.mail.umich.edu () with ESMTP id lBRFKbD8031431; + Thu, 27 Dec 2007 10:20:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4773C2BA.F0190.31439 ; + 27 Dec 2007 10:20:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E250F52EC1; + Thu, 27 Dec 2007 15:17:22 +0000 (GMT) +Message-ID: <200712271519.lBRFJPw8031526@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 22 + for ; + Thu, 27 Dec 2007 15:17:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E0702428F6 + for ; Thu, 27 Dec 2007 15:20:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRFJPK9031528 + for ; Thu, 27 Dec 2007 10:19:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRFJPw8031526 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 10:19:25 -0500 +Date: Thu, 27 Dec 2007 10:19:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39631 - mailarchive/branches/SAK-11544/mailarchive-tool/tool/src/java/org/sakaiproject/mailarchive/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 10:20:38 2007 +X-DSPAM-Confidence: 0.8504 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39631 + +Author: csev@umich.edu +Date: 2007-12-27 10:19:23 -0500 (Thu, 27 Dec 2007) +New Revision: 39631 + +Modified: +mailarchive/branches/SAK-11544/mailarchive-tool/tool/src/java/org/sakaiproject/mailarchive/tool/MailboxAction.java +Log: +SAK-11544 + +Commit of some test code - please don't look at this - it is a bit of refactor in Mail Action +and a bad hack to fill up a mail archive by pressing the options button. I just wanted to put +this in my happy little branch so I did not have to keep carrying this code around manually. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Thu Dec 27 10:11:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 10:11:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 10:11:09 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by mission.mail.umich.edu () with ESMTP id lBRFB81A016942; + Thu, 27 Dec 2007 10:11:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4773C082.2F7FE.5749 ; + 27 Dec 2007 10:11:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9A3886DFFF; + Thu, 27 Dec 2007 15:07:53 +0000 (GMT) +Message-ID: <200712271509.lBRF9ufX031513@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 985 + for ; + Thu, 27 Dec 2007 15:07:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 041A3428DF + for ; Thu, 27 Dec 2007 15:10:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRF9u05031515 + for ; Thu, 27 Dec 2007 10:09:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRF9ufX031513 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 10:09:56 -0500 +Date: Thu, 27 Dec 2007 10:09:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39630 - mailarchive/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 10:11:09 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39630 + +Author: csev@umich.edu +Date: 2007-12-27 10:09:53 -0500 (Thu, 27 Dec 2007) +New Revision: 39630 + +Added: +mailarchive/branches/SAK-11544/ +Log: +Branch for Mail Archive Performance Improvement + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Thu Dec 27 09:57:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 09:57:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 09:57:10 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id lBREv9OK003195; + Thu, 27 Dec 2007 09:57:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4773BD32.3B457.4283 ; + 27 Dec 2007 09:56:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A84B374A69; + Thu, 27 Dec 2007 14:56:46 +0000 (GMT) +Message-ID: <200712271455.lBREtn2N031488@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710 + for ; + Thu, 27 Dec 2007 14:56:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6929F428B5 + for ; Thu, 27 Dec 2007 14:56:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBREtnXU031490 + for ; Thu, 27 Dec 2007 09:55:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBREtn2N031488 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:55:49 -0500 +Date: Thu, 27 Dec 2007 09:55:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39629 - in web/branches/SAK-12563: . web-portlet web-portlet/portlet web-portlet/portlet/src web-portlet/portlet/src/bundle web-portlet/portlet/src/bundle/vm web-portlet/portlet/src/java web-portlet/portlet/src/java/org web-portlet/portlet/src/java/org/sakaiproject web-portlet/portlet/src/java/org/sakaiproject/portlet web-portlet/portlet/src/java/org/sakaiproject/portlet/util web-portlet/portlet/src/java/org/sakaiproject/portlets web-portlet/portlet/src/webapp web-portlet/portlet/src/webapp/WEB-INF web-portlet/portlet/src/webapp/WEB-INF/sakai +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 09:57:10 2007 +X-DSPAM-Confidence: 0.6198 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39629 + +Author: csev@umich.edu +Date: 2007-12-27 09:55:36 -0500 (Thu, 27 Dec 2007) +New Revision: 39629 + +Added: +web/branches/SAK-12563/web-portlet/ +web/branches/SAK-12563/web-portlet/portlet/ +web/branches/SAK-12563/web-portlet/portlet/pom.xml +web/branches/SAK-12563/web-portlet/portlet/src/ +web/branches/SAK-12563/web-portlet/portlet/src/bundle/ +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ar.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ca.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ca.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_en_GB.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_es.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_es.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_fr_CA.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_fr_CA.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ja.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ja.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ko.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ko.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_nl.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_nl.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_sv.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_zh_CN.metaprops +web/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_zh_CN.properties +web/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/ +web/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/edit.vm +web/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/macros.vm +web/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/main.vm +web/branches/SAK-12563/web-portlet/portlet/src/java/ +web/branches/SAK-12563/web-portlet/portlet/src/java/org/ +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/ +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/ +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/ +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/JSPHelper.java +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/VelocityHelper.java +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/ +web/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/SakaiIFrame.java +web/branches/SAK-12563/web-portlet/portlet/src/webapp/ +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/ +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/portlet.xml +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/sakai/ +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/sakai/SakaiIFrame.xml +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/velocity.config +web/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/web.xml +web/branches/SAK-12563/web-portlet/portlet/src/webapp/help.jsp +Log: +SAK-12563 + +Initial commit of the JSR-168 based iframe portlet. This version +does not yet take over the sakai.iframe tool id - for now it just works +under its own id for testing and development purposes. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Thu Dec 27 09:47:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 09:47:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 09:47:52 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by awakenings.mail.umich.edu () with ESMTP id lBRElqUd023443; + Thu, 27 Dec 2007 09:47:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4773BB11.6C6D5.23262 ; + 27 Dec 2007 09:47:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E85314F4CB; + Thu, 27 Dec 2007 14:47:37 +0000 (GMT) +Message-ID: <200712271446.lBREkWvx031476@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 249 + for ; + Thu, 27 Dec 2007 14:47:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1254B42896 + for ; Thu, 27 Dec 2007 14:47:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBREkWeK031478 + for ; Thu, 27 Dec 2007 09:46:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBREkWvx031476 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:46:32 -0500 +Date: Thu, 27 Dec 2007 09:46:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39628 - web/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 09:47:52 2007 +X-DSPAM-Confidence: 0.7604 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39628 + +Author: csev@umich.edu +Date: 2007-12-27 09:46:29 -0500 (Thu, 27 Dec 2007) +New Revision: 39628 + +Added: +web/branches/SAK-12563/ +Log: +Create branch for iframe portlet + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Thu Dec 27 09:24:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 09:24:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 09:24:59 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lBREOwGF010592; + Thu, 27 Dec 2007 09:24:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4773B5A9.81AF4.23436 ; + 27 Dec 2007 09:24:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A940D9553F; + Thu, 27 Dec 2007 14:24:39 +0000 (GMT) +Message-ID: <200712271423.lBRENg6s031462@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 552 + for ; + Thu, 27 Dec 2007 14:24:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B244442894 + for ; Thu, 27 Dec 2007 14:24:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRENg0N031464 + for ; Thu, 27 Dec 2007 09:23:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRENg6s031462 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:23:42 -0500 +Date: Thu, 27 Dec 2007 09:23:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39627 - portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 09:24:59 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39627 + +Author: csev@umich.edu +Date: 2007-12-27 09:23:39 -0500 (Thu, 27 Dec 2007) +New Revision: 39627 + +Added: +portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm +Log: +Initial commit of the frame top code + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Thu Dec 27 09:12:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 09:12:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 09:12:43 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id lBRECgV8026819; + Thu, 27 Dec 2007 09:12:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4773B2D4.8584.3355 ; + 27 Dec 2007 09:12:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 90299ABFFE; + Thu, 27 Dec 2007 14:12:22 +0000 (GMT) +Message-ID: <200712271411.lBREBORc031450@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 482 + for ; + Thu, 27 Dec 2007 14:11:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F33713A7E7 + for ; Thu, 27 Dec 2007 14:12:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBREBOFb031452 + for ; Thu, 27 Dec 2007 09:11:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBREBORc031450 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:11:24 -0500 +Date: Thu, 27 Dec 2007 09:11:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r39626 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 09:12:43 2007 +X-DSPAM-Confidence: 0.7568 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39626 + +Author: csev@umich.edu +Date: 2007-12-27 09:11:22 -0500 (Thu, 27 Dec 2007) +New Revision: 39626 + +Added: +portal/branches/SAK-12402/ +Log: +Create branch for frameset portal + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Dec 27 08:02:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 27 Dec 2007 08:02:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 27 Dec 2007 08:02:21 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by chaos.mail.umich.edu () with ESMTP id lBRD2KZV005804; + Thu, 27 Dec 2007 08:02:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4773A257.1B8C8.7610 ; + 27 Dec 2007 08:02:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B5C5752A48; + Thu, 27 Dec 2007 13:02:16 +0000 (GMT) +Message-ID: <200712271301.lBRD1CaS031385@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1013 + for ; + Thu, 27 Dec 2007 13:01:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BDE4D3A7DE + for ; Thu, 27 Dec 2007 13:01:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRD1C2P031387 + for ; Thu, 27 Dec 2007 08:01:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRD1CaS031385 + for source@collab.sakaiproject.org; Thu, 27 Dec 2007 08:01:12 -0500 +Date: Thu, 27 Dec 2007 08:01:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39625 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 27 08:02:21 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39625 + +Author: jimeng@umich.edu +Date: 2007-12-27 08:01:07 -0500 (Thu, 27 Dec 2007) +New Revision: 39625 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +Log: +SAK-12501 +Added log message for sqlexception. +Revised syntax fo oracle sql + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 26 21:09:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 26 Dec 2007 21:09:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 26 Dec 2007 21:09:48 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by godsend.mail.umich.edu () with ESMTP id lBR29lvZ023526; + Wed, 26 Dec 2007 21:09:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47730966.CEA7.10985 ; + 26 Dec 2007 21:09:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 31C9C5E89F; + Thu, 27 Dec 2007 02:09:39 +0000 (GMT) +Message-ID: <200712270208.lBR28TEZ030470@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 726 + for ; + Thu, 27 Dec 2007 02:09:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 97FB03E841 + for ; Thu, 27 Dec 2007 02:09:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBR28TCx030472 + for ; Wed, 26 Dec 2007 21:08:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBR28TEZ030470 + for source@collab.sakaiproject.org; Wed, 26 Dec 2007 21:08:29 -0500 +Date: Wed, 26 Dec 2007 21:08:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39624 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 26 21:09:48 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39624 + +Author: jimeng@umich.edu +Date: 2007-12-26 21:08:23 -0500 (Wed, 26 Dec 2007) +New Revision: 39624 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +Log: +SAK-12501 +Revised syntax of oracle query to insert/update dropbox timestamp + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Wed Dec 26 16:33:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 26 Dec 2007 16:33:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 26 Dec 2007 16:33:12 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by panther.mail.umich.edu () with ESMTP id lBQLXCMX021432; + Wed, 26 Dec 2007 16:33:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4772C884.5E4FE.3213 ; + 26 Dec 2007 16:32:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5EADB51117; + Wed, 26 Dec 2007 21:33:00 +0000 (GMT) +Message-ID: <200712262131.lBQLVr3Y030312@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 822 + for ; + Wed, 26 Dec 2007 21:32:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3956E3E840 + for ; Wed, 26 Dec 2007 21:32:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBQLVrqg030314 + for ; Wed, 26 Dec 2007 16:31:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBQLVr3Y030312 + for source@collab.sakaiproject.org; Wed, 26 Dec 2007 16:31:53 -0500 +Date: Wed, 26 Dec 2007 16:31:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39623 - in announcement/trunk: announcement-api/api/src/java/org/sakaiproject/announcement/api announcement-api/api/src/java/org/sakaiproject/announcement/cover announcement-impl/impl announcement-impl/impl/src/java/org/sakaiproject/announcement/impl announcement-impl/pack +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 26 16:33:12 2007 +X-DSPAM-Confidence: 0.8483 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39623 + +Author: bkirschn@umich.edu +Date: 2007-12-26 16:31:50 -0500 (Wed, 26 Dec 2007) +New Revision: 39623 + +Modified: +announcement/trunk/announcement-api/api/src/java/org/sakaiproject/announcement/api/AnnouncementService.java +announcement/trunk/announcement-api/api/src/java/org/sakaiproject/announcement/cover/AnnouncementService.java +announcement/trunk/announcement-impl/impl/pom.xml +announcement/trunk/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl/BaseAnnouncementService.java +announcement/trunk/announcement-impl/pack/pom.xml +Log: +SAK-11372 api/impl support for rss + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 26 11:40:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 26 Dec 2007 11:40:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 26 Dec 2007 11:40:00 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by chaos.mail.umich.edu () with ESMTP id lBQGe0nJ011900; + Wed, 26 Dec 2007 11:40:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 477283D8.A05CA.6589 ; + 26 Dec 2007 11:39:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AC927AED13; + Wed, 26 Dec 2007 16:39:53 +0000 (GMT) +Message-ID: <200712261638.lBQGcuFh030006@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 401 + for ; + Wed, 26 Dec 2007 16:39:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CA5BB3E811 + for ; Wed, 26 Dec 2007 16:39:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBQGcuvk030008 + for ; Wed, 26 Dec 2007 11:38:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBQGcuFh030006 + for source@collab.sakaiproject.org; Wed, 26 Dec 2007 11:38:56 -0500 +Date: Wed, 26 Dec 2007 11:38:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39622 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 26 11:40:00 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39622 + +Author: jimeng@umich.edu +Date: 2007-12-26 11:38:49 -0500 (Wed, 26 Dec 2007) +New Revision: 39622 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +Log: +SAK-12501 +Added oracle syntax to update/insert record to record last update to dropbox. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Dec 25 17:53:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 25 Dec 2007 17:53:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 25 Dec 2007 17:53:51 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lBPMro9p002745; + Tue, 25 Dec 2007 17:53:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 477189F9.45DFC.2659 ; + 25 Dec 2007 17:53:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 65989ABC97; + Tue, 25 Dec 2007 22:53:34 +0000 (GMT) +Message-ID: <200712252252.lBPMqcLe028795@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728 + for ; + Tue, 25 Dec 2007 22:53:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5F7EB3310D + for ; Tue, 25 Dec 2007 22:53:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBPMqdbn028797 + for ; Tue, 25 Dec 2007 17:52:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBPMqcLe028795 + for source@collab.sakaiproject.org; Tue, 25 Dec 2007 17:52:38 -0500 +Date: Tue, 25 Dec 2007 17:52:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39621 - in portal/branches/SAK-12350: portal-api/api/src/java/org/sakaiproject/portal/api portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/site portal-service-impl/impl/src/java/org/sakaiproject/portal/service portal-service-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 25 17:53:51 2007 +X-DSPAM-Confidence: 0.7564 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39621 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-25 17:52:09 -0500 (Tue, 25 Dec 2007) +New Revision: 39621 + +Added: +portal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/SiteNeighbourhoodService.java +portal/branches/SAK-12350/portal-service-impl/impl/src/java/org/sakaiproject/portal/service/SiteNeighbourhoodServiceImpl.java +Modified: +portal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java +portal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/PortalService.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AbstractSiteViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AllSitesViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/DefaultSiteViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/MoreSiteViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/PortalSiteHelperImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/SubSiteViewImpl.java +portal/branches/SAK-12350/portal-service-impl/impl/src/java/org/sakaiproject/portal/service/PortalServiceImpl.java +portal/branches/SAK-12350/portal-service-impl/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-12350 +Abstracted provision of site lists behind a ServiceAPI. The service API is not complete as there need to be an organizing mechanims, but I havent worked that out entirely yet. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Mon Dec 24 03:06:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 24 Dec 2007 03:06:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 24 Dec 2007 03:06:42 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by faithful.mail.umich.edu () with ESMTP id lBO86e1p001567; + Mon, 24 Dec 2007 03:06:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476F688A.A6E5D.11065 ; + 24 Dec 2007 03:06:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 58210A3AFF; + Mon, 24 Dec 2007 08:06:43 +0000 (GMT) +Message-ID: <200712240805.lBO85jQD027143@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 661 + for ; + Mon, 24 Dec 2007 08:06:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 476B84063E + for ; Mon, 24 Dec 2007 08:06:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBO85jFK027145 + for ; Mon, 24 Dec 2007 03:05:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBO85jQD027143 + for source@collab.sakaiproject.org; Mon, 24 Dec 2007 03:05:45 -0500 +Date: Mon, 24 Dec 2007 03:05:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39620 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 24 03:06:42 2007 +X-DSPAM-Confidence: 0.8431 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39620 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-24 03:05:38 -0500 (Mon, 24 Dec 2007) +New Revision: 39620 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/add_citations.vm +Log: +SAK-12534 Google Scholar popup window too narrow (merge to 2-5-x) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Mon Dec 24 02:06:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 24 Dec 2007 02:06:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 24 Dec 2007 02:06:31 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id lBO76U1b024895; + Mon, 24 Dec 2007 02:06:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 476F5A6E.CE0E2.8685 ; + 24 Dec 2007 02:06:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C9764AB445; + Mon, 24 Dec 2007 07:06:17 +0000 (GMT) +Message-ID: <200712240705.lBO75Q96027085@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 21 + for ; + Mon, 24 Dec 2007 07:05:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 66F2C40ABA + for ; Mon, 24 Dec 2007 07:06:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBO75RID027087 + for ; Mon, 24 Dec 2007 02:05:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBO75Q96027085 + for source@collab.sakaiproject.org; Mon, 24 Dec 2007 02:05:26 -0500 +Date: Mon, 24 Dec 2007 02:05:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39619 - search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 24 02:06:31 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39619 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-24 02:05:17 -0500 (Mon, 24 Dec 2007) +New Revision: 39619 + +Modified: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java +Log: +SAK-12460 Additional logging (merge to 2-5-x) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Sun Dec 23 12:52:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 23 Dec 2007 12:52:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 23 Dec 2007 12:52:53 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by fan.mail.umich.edu () with ESMTP id lBNHqqHE028219; + Sun, 23 Dec 2007 12:52:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476EA06E.534E5.5063 ; + 23 Dec 2007 12:52:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 83E23AAC29; + Sun, 23 Dec 2007 17:52:44 +0000 (GMT) +Message-ID: <200712231751.lBNHpl7l026506@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263 + for ; + Sun, 23 Dec 2007 17:52:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BAC7923666 + for ; Sun, 23 Dec 2007 17:52:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBNHpmYe026508 + for ; Sun, 23 Dec 2007 12:51:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBNHpl7l026506 + for source@collab.sakaiproject.org; Sun, 23 Dec 2007 12:51:47 -0500 +Date: Sun, 23 Dec 2007 12:51:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39618 - search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 23 12:52:53 2007 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39618 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-23 12:51:42 -0500 (Sun, 23 Dec 2007) +New Revision: 39618 + +Modified: +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java +Log: +SAK-12460 +Added some logging to help debugging + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sat Dec 22 12:07:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 22 Dec 2007 12:07:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 22 Dec 2007 12:07:06 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lBMH75qG017830; + Sat, 22 Dec 2007 12:07:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 476D4433.C13A9.26986 ; + 22 Dec 2007 12:07:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AD49FA9029; + Sat, 22 Dec 2007 17:06:56 +0000 (GMT) +Message-ID: <200712221706.lBMH6Fmj012392@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949 + for ; + Sat, 22 Dec 2007 17:06:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B7C035ED9 + for ; Sat, 22 Dec 2007 17:06:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBMH6F1w012394 + for ; Sat, 22 Dec 2007 12:06:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBMH6Fmj012392 + for source@collab.sakaiproject.org; Sat, 22 Dec 2007 12:06:15 -0500 +Date: Sat, 22 Dec 2007 12:06:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39617 - in content/branches/SAK-12239: . content-conversion content-conversion/pack content-conversion/pack/src content-conversion/pack/src/config content-conversion/pack/src/shell content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 22 12:07:06 2007 +X-DSPAM-Confidence: 0.9885 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39617 + +Author: jimeng@umich.edu +Date: 2007-12-22 12:06:06 -0500 (Sat, 22 Dec 2007) +New Revision: 39617 + +Added: +content/branches/SAK-12239/content-conversion/ +content/branches/SAK-12239/content-conversion/.project +content/branches/SAK-12239/content-conversion/pack/ +content/branches/SAK-12239/content-conversion/pack/project.xml +content/branches/SAK-12239/content-conversion/pack/src/ +content/branches/SAK-12239/content-conversion/pack/src/config/ +content/branches/SAK-12239/content-conversion/pack/src/config/upgradeschema-mysql.config +content/branches/SAK-12239/content-conversion/pack/src/config/upgradeschema-oracle.config +content/branches/SAK-12239/content-conversion/pack/src/shell/ +content/branches/SAK-12239/content-conversion/pack/src/shell/runconversion.sh +Modified: +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java +content/branches/SAK-12239/runconversion.sh +Log: +SAK-12239 +Package the conversion jars and scripts in a separate war. Introduces dependency on oracle and mysql jdbc connectors. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sat Dec 22 11:58:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 22 Dec 2007 11:58:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 22 Dec 2007 11:58:34 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id lBMGwXiX027435; + Sat, 22 Dec 2007 11:58:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476D4233.F2C6.1221 ; + 22 Dec 2007 11:58:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3D089A97CE; + Sat, 22 Dec 2007 16:58:23 +0000 (GMT) +Message-ID: <200712221657.lBMGveHv012367@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 675 + for ; + Sat, 22 Dec 2007 16:58:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2572EB115 + for ; Sat, 22 Dec 2007 16:58:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBMGveRO012369 + for ; Sat, 22 Dec 2007 11:57:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBMGveHv012367 + for source@collab.sakaiproject.org; Sat, 22 Dec 2007 11:57:40 -0500 +Date: Sat, 22 Dec 2007 11:57:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39616 - db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 22 11:58:34 2007 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39616 + +Author: jimeng@umich.edu +Date: 2007-12-22 11:57:38 -0500 (Sat, 22 Dec 2007) +New Revision: 39616 + +Modified: +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +Log: +SAK-12239 +Added logging for empty result sets and null objects + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Dec 21 18:33:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 18:33:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 18:33:07 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id lBLNX5sC032268; + Fri, 21 Dec 2007 18:33:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 476C4D15.BFFDF.8924 ; + 21 Dec 2007 18:32:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E0238A8672; + Fri, 21 Dec 2007 23:32:34 +0000 (GMT) +Message-ID: <200712212331.lBLNVpHU010835@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 241 + for ; + Fri, 21 Dec 2007 23:32:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6AEB53EA7D + for ; Fri, 21 Dec 2007 23:32:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLNVq1n010837 + for ; Fri, 21 Dec 2007 18:31:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLNVpHU010835 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 18:31:51 -0500 +Date: Fri, 21 Dec 2007 18:31:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39615 - in jsf/trunk/widgets: . src/java/org/sakaiproject/jsf/renderer +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 18:33:07 2007 +X-DSPAM-Confidence: 0.7597 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39615 + +Author: ray@media.berkeley.edu +Date: 2007-12-21 18:31:46 -0500 (Fri, 21 Dec 2007) +New Revision: 39615 + +Modified: +jsf/trunk/widgets/pom.xml +jsf/trunk/widgets/src/java/org/sakaiproject/jsf/renderer/InputRichTextRenderer.java +jsf/trunk/widgets/src/java/org/sakaiproject/jsf/renderer/RichTextAreaRenderer.java +Log: +SAK-12381 Replace service covers with singletons + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 21 17:22:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 17:22:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 17:22:02 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by sleepers.mail.umich.edu () with ESMTP id lBLMM2bq009375; + Fri, 21 Dec 2007 17:22:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476C3C83.4CF94.30804 ; + 21 Dec 2007 17:21:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 36BEA9ED16; + Fri, 21 Dec 2007 22:21:54 +0000 (GMT) +Message-ID: <200712212221.lBLMLCal010699@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12 + for ; + Fri, 21 Dec 2007 22:21:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AAE933EA7D + for ; Fri, 21 Dec 2007 22:21:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLMLDhE010701 + for ; Fri, 21 Dec 2007 17:21:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLMLCal010699 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 17:21:12 -0500 +Date: Fri, 21 Dec 2007 17:21:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39614 - in portal/branches/SAK-12350: portal-charon/charon/src/webapp/scripts portal-impl/impl/src/bundle portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 17:22:02 2007 +X-DSPAM-Confidence: 0.6948 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39614 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-21 17:20:54 -0500 (Fri, 21 Dec 2007) +New Revision: 39614 + +Added: +portal/branches/SAK-12350/portal-impl/impl/src/bundle/sitenav_pt_PT.properties +portal/branches/SAK-12350/portal-util/util/src/bundle/portal-util_pt_PT.properties +Modified: +portal/branches/SAK-12350/portal-charon/charon/src/webapp/scripts/portalscripts.js +portal/branches/SAK-12350/portal-impl/impl/src/bundle/sitenav.properties +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +Merged Changes from trunk into this branch + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 21 17:17:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 17:17:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 17:17:52 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lBLMHp2H019345; + Fri, 21 Dec 2007 17:17:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 476C3B89.27CBF.26108 ; + 21 Dec 2007 17:17:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2157AA4E67; + Fri, 21 Dec 2007 22:17:43 +0000 (GMT) +Message-ID: <200712212216.lBLMGsFb010686@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022 + for ; + Fri, 21 Dec 2007 22:17:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 147AF3EA7D + for ; Fri, 21 Dec 2007 22:17:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLMGsTD010688 + for ; Fri, 21 Dec 2007 17:16:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLMGsFb010686 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 17:16:54 -0500 +Date: Fri, 21 Dec 2007 17:16:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39613 - in portal/branches/SAK-12350: portal-impl/impl/src/java/org/sakaiproject/portal/charon/site portal-render-engine-impl portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 17:17:52 2007 +X-DSPAM-Confidence: 0.5715 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39613 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-21 17:16:23 -0500 (Fri, 21 Dec 2007) +New Revision: 39613 + +Added: +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Removed: +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/end_response.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Modified: +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/CurrentSiteVIewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/SubSiteViewImpl.java +portal/branches/SAK-12350/portal-render-engine-impl/ +portal/branches/SAK-12350/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/PortalRenderTest.java +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/error.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/gallery-login.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/gallery.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/login.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/page.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/pda.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/worksite.vm +Log: +SAK-12350 +Fixed the subsite generation issues +Moved all the templates into files and retired the macro definitions. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Fri Dec 21 15:49:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 15:49:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 15:49:44 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by faithful.mail.umich.edu () with ESMTP id lBLKnhQ4028380; + Fri, 21 Dec 2007 15:49:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476C26E1.D1631.8164 ; + 21 Dec 2007 15:49:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 50F7CA64F8; + Fri, 21 Dec 2007 20:49:36 +0000 (GMT) +Message-ID: <200712212048.lBLKmu2L010557@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 212 + for ; + Fri, 21 Dec 2007 20:49:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 958C93D46C + for ; Fri, 21 Dec 2007 20:49:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLKmuuP010559 + for ; Fri, 21 Dec 2007 15:48:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLKmu2L010557 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 15:48:56 -0500 +Date: Fri, 21 Dec 2007 15:48:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39611 - util/branches/sakai_2-4-x/util-util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 15:49:44 2007 +X-DSPAM-Confidence: 0.9869 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39611 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-21 15:48:54 -0500 (Fri, 21 Dec 2007) +New Revision: 39611 + +Modified: +util/branches/sakai_2-4-x/util-util/.classpath +Log: +SAK-10852 add javamail to classpath + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Dec 21 14:42:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 14:42:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 14:42:47 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id lBLJgkDP012021; + Fri, 21 Dec 2007 14:42:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476C1730.C1440.16777 ; + 21 Dec 2007 14:42:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DB7C5A83C4; + Fri, 21 Dec 2007 19:42:40 +0000 (GMT) +Message-ID: <200712211941.lBLJftbm010511@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 543 + for ; + Fri, 21 Dec 2007 19:42:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E234F3E898 + for ; Fri, 21 Dec 2007 19:42:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLJftiv010513 + for ; Fri, 21 Dec 2007 14:41:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLJftbm010511 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 14:41:55 -0500 +Date: Fri, 21 Dec 2007 14:41:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39610 - in announcement/trunk/announcement-tool/tool: . src/bundle src/java/org/sakaiproject/announcement/tool src/webapp/vm/announcement +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 14:42:47 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39610 + +Author: bkirschn@umich.edu +Date: 2007-12-21 14:41:51 -0500 (Fri, 21 Dec 2007) +New Revision: 39610 + +Modified: +announcement/trunk/announcement-tool/tool/pom.xml +announcement/trunk/announcement-tool/tool/src/bundle/announcement.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_ar.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_ca.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_en_GB.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_es.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_fr_CA.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_ja.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_nl.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_ru.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_sv.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_zh_CN.properties +announcement/trunk/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java +announcement/trunk/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementActionState.java +announcement/trunk/announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-customize.vm +Log: +SAK-11372 first pass - add support for rss option + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 21 14:38:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 14:38:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 14:38:07 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lBLJc68K028547; + Fri, 21 Dec 2007 14:38:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476C1617.DA2ED.30657 ; + 21 Dec 2007 14:38:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 87C10A83A9; + Fri, 21 Dec 2007 19:37:57 +0000 (GMT) +Message-ID: <200712211937.lBLJbFdW010496@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650 + for ; + Fri, 21 Dec 2007 19:37:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 793293A596 + for ; Fri, 21 Dec 2007 19:37:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLJbFxT010498 + for ; Fri, 21 Dec 2007 14:37:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLJbFdW010496 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 14:37:15 -0500 +Date: Fri, 21 Dec 2007 14:37:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39609 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-impl/impl/src/test/org/sakaiproject/assignment/impl assignment-impl/pack/src/webapp/WEB-INF assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 14:38:07 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39609 + +Author: zqian@umich.edu +Date: 2007-12-21 14:37:11 -0500 (Fri, 21 Dec 2007) +New Revision: 39609 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-impl/impl/src/test/org/sakaiproject/assignment/impl/AssignmentServiceTest.java +assignment/trunk/assignment-impl/pack/src/webapp/WEB-INF/components.xml +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12364:Eliminate references to ContentHostingService cover in assignments module + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 21 14:13:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 14:13:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 14:13:32 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id lBLJDVIl029172; + Fri, 21 Dec 2007 14:13:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476C1053.4F4A7.4285 ; + 21 Dec 2007 14:13:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A0BFE9FA50; + Fri, 21 Dec 2007 19:13:19 +0000 (GMT) +Message-ID: <200712211912.lBLJCeTi010389@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 132 + for ; + Fri, 21 Dec 2007 19:13:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C1AC93E8EE + for ; Fri, 21 Dec 2007 19:13:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLJCe12010391 + for ; Fri, 21 Dec 2007 14:12:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLJCeTi010389 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 14:12:40 -0500 +Date: Fri, 21 Dec 2007 14:12:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39608 - gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 14:13:32 2007 +X-DSPAM-Confidence: 0.6948 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39608 + +Author: louis@media.berkeley.edu +Date: 2007-12-21 14:12:34 -0500 (Fri, 21 Dec 2007) +New Revision: 39608 + +Modified: +gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AddAssignmentBean.java +gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/CourseGradeDetailsBean.java +gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RemoveAssignmentBean.java +gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +Log: +SAK-10802 Logged events don't include context (siteId) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Dec 21 13:56:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 13:56:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 13:56:39 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lBLIudFr009321; + Fri, 21 Dec 2007 13:56:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 476C0C60.EF089.14617 ; + 21 Dec 2007 13:56:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 54614A8325; + Fri, 21 Dec 2007 18:38:23 +0000 (GMT) +Message-ID: <200712211855.lBLItOjY010357@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 325 + for ; + Fri, 21 Dec 2007 18:37:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0E36334B65 + for ; Fri, 21 Dec 2007 18:55:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLItOYO010359 + for ; Fri, 21 Dec 2007 13:55:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLItOjY010357 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:55:24 -0500 +Date: Fri, 21 Dec 2007 13:55:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39607 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 13:56:39 2007 +X-DSPAM-Confidence: 0.6957 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39607 + +Author: dlhaines@umich.edu +Date: 2007-12-21 13:55:23 -0500 (Fri, 21 Dec 2007) +New Revision: 39607 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: move PASN version to be the Q version. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Dec 21 13:55:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 13:55:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 13:55:04 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by casino.mail.umich.edu () with ESMTP id lBLIt3PH011071; + Fri, 21 Dec 2007 13:55:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476C0C01.E8CA6.20323 ; + 21 Dec 2007 13:55:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 97885A60A3; + Fri, 21 Dec 2007 18:36:44 +0000 (GMT) +Message-ID: <200712211854.lBLIsB6l010345@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416 + for ; + Fri, 21 Dec 2007 18:36:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C268F34B65 + for ; Fri, 21 Dec 2007 18:54:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLIsB4v010347 + for ; Fri, 21 Dec 2007 13:54:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLIsB6l010345 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:54:11 -0500 +Date: Fri, 21 Dec 2007 13:54:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39606 - calendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 13:55:04 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39606 + +Author: bkirschn@umich.edu +Date: 2007-12-21 13:54:10 -0500 (Fri, 21 Dec 2007) +New Revision: 39606 + +Modified: +calendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +Log: +SAK-12551 remove unused ical alias + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Dec 21 13:51:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 13:51:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 13:51:17 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id lBLIpHh3015496; + Fri, 21 Dec 2007 13:51:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476C0B1F.858C4.558 ; + 21 Dec 2007 13:51:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F15A2A5A2E; + Fri, 21 Dec 2007 18:33:10 +0000 (GMT) +Message-ID: <200712211850.lBLIoVI9010330@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 884 + for ; + Fri, 21 Dec 2007 18:32:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BFDC334B65 + for ; Fri, 21 Dec 2007 18:50:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLIoVVc010332 + for ; Fri, 21 Dec 2007 13:50:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLIoVI9010330 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:50:31 -0500 +Date: Fri, 21 Dec 2007 13:50:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39605 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 13:51:17 2007 +X-DSPAM-Confidence: 0.7602 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39605 + +Author: dlhaines@umich.edu +Date: 2007-12-21 13:50:29 -0500 (Fri, 21 Dec 2007) +New Revision: 39605 + +Added: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Removed: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties +Log: +CTools: move PASN (assignments conversion build) to be the Q build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Dec 21 13:49:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 13:49:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 13:49:59 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lBLInxXx018748; + Fri, 21 Dec 2007 13:49:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476C0ACE.45A57.20452 ; + 21 Dec 2007 13:49:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BA529A7074; + Fri, 21 Dec 2007 18:31:48 +0000 (GMT) +Message-ID: <200712211849.lBLIn9nr010318@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 567 + for ; + Fri, 21 Dec 2007 18:31:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BC09434B65 + for ; Fri, 21 Dec 2007 18:49:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLIn9ht010320 + for ; Fri, 21 Dec 2007 13:49:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLIn9nr010318 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:49:09 -0500 +Date: Fri, 21 Dec 2007 13:49:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39604 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 13:49:59 2007 +X-DSPAM-Confidence: 0.7605 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39604 + +Author: dlhaines@umich.edu +Date: 2007-12-21 13:49:07 -0500 (Fri, 21 Dec 2007) +New Revision: 39604 + +Added: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xR.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xR.properties +Removed: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: move Q release with content conversion to be the R release. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 21 12:20:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 12:20:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 12:20:35 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by brazil.mail.umich.edu () with ESMTP id lBLHKYww023931; + Fri, 21 Dec 2007 12:20:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476BF5DB.3CD6A.11194 ; + 21 Dec 2007 12:20:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE29AA7EF1; + Fri, 21 Dec 2007 17:20:25 +0000 (GMT) +Message-ID: <200712211719.lBLHJekC010174@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 462 + for ; + Fri, 21 Dec 2007 17:20:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1F35A3E81B + for ; Fri, 21 Dec 2007 17:20:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLHJfRs010176 + for ; Fri, 21 Dec 2007 12:19:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLHJekC010174 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 12:19:40 -0500 +Date: Fri, 21 Dec 2007 12:19:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39603 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 12:20:35 2007 +X-DSPAM-Confidence: 0.9877 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39603 + +Author: zqian@umich.edu +Date: 2007-12-21 12:19:37 -0500 (Fri, 21 Dec 2007) +New Revision: 39603 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm +Log: +Fix to SAK-12547:"Students registered for course" shown for non-course sites + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Dec 21 11:50:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 11:50:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 11:50:06 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by fan.mail.umich.edu () with ESMTP id lBLGo5Am019665; + Fri, 21 Dec 2007 11:50:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476BEEB7.A358F.2755 ; + 21 Dec 2007 11:50:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 80962A8011; + Fri, 21 Dec 2007 16:49:58 +0000 (GMT) +Message-ID: <200712211649.lBLGnKUm010109@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 589 + for ; + Fri, 21 Dec 2007 16:49:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 298023E84C + for ; Fri, 21 Dec 2007 16:49:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLGnKn7010111 + for ; Fri, 21 Dec 2007 11:49:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLGnKUm010109 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 11:49:20 -0500 +Date: Fri, 21 Dec 2007 11:49:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39602 - reference/trunk/docs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 11:50:06 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39602 + +Author: bkirschn@umich.edu +Date: 2007-12-21 11:49:19 -0500 (Fri, 21 Dec 2007) +New Revision: 39602 + +Modified: +reference/trunk/docs/readme_i18n.txt +Log: +updated translation status + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 21 10:04:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 10:04:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 10:04:51 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id lBLF4o8U031951; + Fri, 21 Dec 2007 10:04:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476BD609.A179C.17208 ; + 21 Dec 2007 10:04:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B9EEA7DF1; + Fri, 21 Dec 2007 15:04:43 +0000 (GMT) +Message-ID: <200712211504.lBLF452a010003@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 161 + for ; + Fri, 21 Dec 2007 15:04:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 10F5D3E82B + for ; Fri, 21 Dec 2007 15:04:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLF459x010005 + for ; Fri, 21 Dec 2007 10:04:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLF452a010003 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 10:04:05 -0500 +Date: Fri, 21 Dec 2007 10:04:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39601 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 10:04:51 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39601 + +Author: cwen@iupui.edu +Date: 2007-12-21 10:04:04 -0500 (Fri, 21 Dec 2007) +New Revision: 39601 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 21 10:03:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 10:03:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 10:03:36 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lBLF3ZME028296; + Fri, 21 Dec 2007 10:03:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476BD5BB.AA0E9.18333 ; + 21 Dec 2007 10:03:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D5C71A3C2E; + Fri, 21 Dec 2007 15:03:23 +0000 (GMT) +Message-ID: <200712211502.lBLF2QxN009990@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789 + for ; + Fri, 21 Dec 2007 15:02:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 078E53E819 + for ; Fri, 21 Dec 2007 15:02:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLF2QcV009992 + for ; Fri, 21 Dec 2007 10:02:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLF2QxN009990 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 10:02:26 -0500 +Date: Fri, 21 Dec 2007 10:02:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39600 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 10:03:36 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39600 + +Author: cwen@iupui.edu +Date: 2007-12-21 10:02:25 -0500 (Fri, 21 Dec 2007) +New Revision: 39600 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js +Log: +roll back r39586 => svn merge -r39586:39585 https://source.sakaiproject.org/viewsvn/gradebook/branches/oncourse_2-4-2. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Dec 21 09:55:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:55:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:55:25 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id lBLEtM8H018445; + Fri, 21 Dec 2007 09:55:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476BD3D4.B9E89.29228 ; + 21 Dec 2007 09:55:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ACDB9A7DD9; + Fri, 21 Dec 2007 14:51:51 +0000 (GMT) +Message-ID: <200712211454.lBLEsHY5009956@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 394 + for ; + Fri, 21 Dec 2007 14:51:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 149DA3E805 + for ; Fri, 21 Dec 2007 14:54:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEsIcC009958 + for ; Fri, 21 Dec 2007 09:54:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEsHY5009956 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:54:18 -0500 +Date: Fri, 21 Dec 2007 09:54:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39599 - component/trunk/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:55:25 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39599 + +Author: bkirschn@umich.edu +Date: 2007-12-21 09:54:16 -0500 (Fri, 21 Dec 2007) +New Revision: 39599 + +Modified: +component/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +SAK-12044 add portuguese as supported languaage + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Dec 21 09:55:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:55:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:55:06 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by panther.mail.umich.edu () with ESMTP id lBLEt6x8006098; + Fri, 21 Dec 2007 09:55:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476BD3C4.BFDC1.28307 ; + 21 Dec 2007 09:55:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A4CC6A7DD7; + Fri, 21 Dec 2007 14:51:39 +0000 (GMT) +Message-ID: <200712211454.lBLEs7d9009944@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 475 + for ; + Fri, 21 Dec 2007 14:51:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E009F3E805 + for ; Fri, 21 Dec 2007 14:54:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEs7f7009946 + for ; Fri, 21 Dec 2007 09:54:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEs7d9009944 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:54:07 -0500 +Date: Fri, 21 Dec 2007 09:54:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39598 - reference/trunk/docs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:55:06 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39598 + +Author: bkirschn@umich.edu +Date: 2007-12-21 09:54:06 -0500 (Fri, 21 Dec 2007) +New Revision: 39598 + +Modified: +reference/trunk/docs/sakai.properties +Log: +SAK-12044 add portuguese as supported languaage + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 09:54:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:54:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:54:17 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by faithful.mail.umich.edu () with ESMTP id lBLEsGGo023830; + Fri, 21 Dec 2007 09:54:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476BD390.B83A1.26861 ; + 21 Dec 2007 09:54:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 336A5A7DD2; + Fri, 21 Dec 2007 14:50:45 +0000 (GMT) +Message-ID: <200712211453.lBLErI1D009932@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 76 + for ; + Fri, 21 Dec 2007 14:50:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F1F323E805 + for ; Fri, 21 Dec 2007 14:53:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLErIWp009934 + for ; Fri, 21 Dec 2007 09:53:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLErI1D009932 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:53:18 -0500 +Date: Fri, 21 Dec 2007 09:53:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39597 - reset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:54:17 2007 +X-DSPAM-Confidence: 0.9848 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39597 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 09:53:01 -0500 (Fri, 21 Dec 2007) +New Revision: 39597 + +Modified: +reset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java +Log: +SAK-12546 imporved email message -remove redundant code + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 09:50:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:50:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:50:39 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lBLEobX0018740; + Fri, 21 Dec 2007 09:50:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476BD2B8.11B8B.4249 ; + 21 Dec 2007 09:50:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D87F6A7C57; + Fri, 21 Dec 2007 14:47:05 +0000 (GMT) +Message-ID: <200712211449.lBLEniVf009920@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 340 + for ; + Fri, 21 Dec 2007 14:46:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ABD282BEE3 + for ; Fri, 21 Dec 2007 14:50:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEniss009922 + for ; Fri, 21 Dec 2007 09:49:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEniVf009920 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:49:44 -0500 +Date: Fri, 21 Dec 2007 09:49:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39596 - in reset-pass/trunk/reset-pass/src: bundle/org/sakaiproject/tool/resetpass/bundle java/org/sakaiproject/tool/resetpass +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:50:39 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39596 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 09:48:58 -0500 (Fri, 21 Dec 2007) +New Revision: 39596 + +Modified: +reset-pass/trunk/reset-pass/src/bundle/org/sakaiproject/tool/resetpass/bundle/Messages.properties +reset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java +Log: +SAK-12546 imporved email message + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 09:44:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:44:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:44:12 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lBLEiBBq011440; + Fri, 21 Dec 2007 09:44:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 476BD132.B8801.4857 ; + 21 Dec 2007 09:44:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D01F0A5EB1; + Fri, 21 Dec 2007 14:40:41 +0000 (GMT) +Message-ID: <200712211443.lBLEhLXp009897@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 445 + for ; + Fri, 21 Dec 2007 14:40:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EFB522BEE3 + for ; Fri, 21 Dec 2007 14:43:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEhLjt009899 + for ; Fri, 21 Dec 2007 09:43:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEhLXp009897 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:43:21 -0500 +Date: Fri, 21 Dec 2007 09:43:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39595 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:44:12 2007 +X-DSPAM-Confidence: 0.9892 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39595 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 09:43:10 -0500 (Fri, 21 Dec 2007) +New Revision: 39595 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -c 39593 https://source.sakaiproject.org/svn/reference/trunk/ reference/ +U reference/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U reference/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql + +svn log -r 39593 https://source.sakaiproject.org/svn/reference/trunk/ +------------------------------------------------------------------------ +r39593 | david.horwitz@uct.ac.za | 2007-12-21 16:08:28 +0200 (Fri, 21 Dec 2007) | 3 lines + +SAK-12521 Missing column definitions for polls + + +---------------------------------------------------------- + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 09:33:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:33:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:33:55 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by casino.mail.umich.edu () with ESMTP id lBLEXsb4008784; + Fri, 21 Dec 2007 09:33:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476BCECC.EFEC2.12812 ; + 21 Dec 2007 09:33:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 584CDA7D9A; + Fri, 21 Dec 2007 14:30:27 +0000 (GMT) +Message-ID: <200712211433.lBLEX8tH009885@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971 + for ; + Fri, 21 Dec 2007 14:30:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8EC8F39CBA + for ; Fri, 21 Dec 2007 14:33:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEX86K009887 + for ; Fri, 21 Dec 2007 09:33:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEX8tH009885 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:33:08 -0500 +Date: Fri, 21 Dec 2007 09:33:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39594 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:33:55 2007 +X-DSPAM-Confidence: 0.9894 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39594 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 09:32:57 -0500 (Fri, 21 Dec 2007) +New Revision: 39594 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -c 39421 https://source.sakaiproject.org/svn/reference/trunk/ reference/ +U reference/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U reference/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql + +svn log -r 39421 https://source.sakaiproject.org/svn/reference/trunk/ +------------------------------------------------------------------------ +r39421 | chmaurer@iupui.edu | 2007-12-18 15:41:00 +0200 (Tue, 18 Dec 2007) | 2 lines + +SAK-10215 +Adding some conversion to fix chat tool titles. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 09:09:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:09:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:09:23 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id lBLE9Mko016074; + Fri, 21 Dec 2007 09:09:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476BC90D.1EB7B.32711 ; + 21 Dec 2007 09:09:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EEC79A5EB2; + Fri, 21 Dec 2007 14:08:00 +0000 (GMT) +Message-ID: <200712211408.lBLE8eQg009817@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 533 + for ; + Fri, 21 Dec 2007 14:07:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 20CF439CAC + for ; Fri, 21 Dec 2007 14:09:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE8eZV009819 + for ; Fri, 21 Dec 2007 09:08:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE8eQg009817 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:08:40 -0500 +Date: Fri, 21 Dec 2007 09:08:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39593 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:09:23 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39593 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 09:08:28 -0500 (Fri, 21 Dec 2007) +New Revision: 39593 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-12521 Missing column definitions for polls + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Fri Dec 21 09:08:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:08:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:08:22 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lBLE8Lc7013044; + Fri, 21 Dec 2007 09:08:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476BC8CF.840C4.3553 ; + 21 Dec 2007 09:08:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 01891A7C50; + Fri, 21 Dec 2007 14:06:48 +0000 (GMT) +Message-ID: <200712211407.lBLE7LPt009805@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 855 + for ; + Fri, 21 Dec 2007 14:06:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5A05539CAC + for ; Fri, 21 Dec 2007 14:07:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE7LbE009807 + for ; Fri, 21 Dec 2007 09:07:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE7LPt009805 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:07:21 -0500 +Date: Fri, 21 Dec 2007 09:07:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39592 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:08:22 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39592 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-21 09:07:13 -0500 (Fri, 21 Dec 2007) +New Revision: 39592 + +Modified: +util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java +Log: +SAK-8320 add more info to missing key error message (merge to 2-5-x) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 09:03:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:03:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:03:52 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by panther.mail.umich.edu () with ESMTP id lBLE3pnP015549; + Fri, 21 Dec 2007 09:03:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476BC7C1.6523F.8191 ; + 21 Dec 2007 09:03:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 55B14A7CBF; + Fri, 21 Dec 2007 14:02:43 +0000 (GMT) +Message-ID: <200712211401.lBLE1iQ9009777@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 714 + for ; + Fri, 21 Dec 2007 14:02:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 26A673E7EE + for ; Fri, 21 Dec 2007 14:02:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE1i0Y009779 + for ; Fri, 21 Dec 2007 09:01:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE1iQ9009777 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:01:44 -0500 +Date: Fri, 21 Dec 2007 09:01:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39591 - in polls/trunk: . docs tool/src/java/org/sakaiproject/poll/tool/params +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:03:52 2007 +X-DSPAM-Confidence: 0.8493 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39591 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 09:00:51 -0500 (Fri, 21 Dec 2007) +New Revision: 39591 + +Added: +polls/trunk/docs/ +polls/trunk/docs/SAK-8957.sql +polls/trunk/orphankeys.txt +Modified: +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java +Log: +SAK-8959 Document Missing changes to DB +SAK-12521 this needs to be added to conversion script + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Dec 21 09:03:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:03:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:03:48 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lBLE3lSx005540; + Fri, 21 Dec 2007 09:03:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476BC7BB.CDBFC.25132 ; + 21 Dec 2007 09:03:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5E95BA7CD5; + Fri, 21 Dec 2007 14:02:42 +0000 (GMT) +Message-ID: <200712211401.lBLE15tD009762@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786 + for ; + Fri, 21 Dec 2007 14:01:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2605D3E7EE + for ; Fri, 21 Dec 2007 14:01:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE15bP009764 + for ; Fri, 21 Dec 2007 09:01:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE15tD009762 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:01:05 -0500 +Date: Fri, 21 Dec 2007 09:01:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39590 - util/trunk/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:03:48 2007 +X-DSPAM-Confidence: 0.9879 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39590 + +Author: bkirschn@umich.edu +Date: 2007-12-21 09:01:03 -0500 (Fri, 21 Dec 2007) +New Revision: 39590 + +Modified: +util/trunk/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java +Log: +SAK-8320 add more info to missing key error message + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 21 09:00:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 09:00:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 09:00:22 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by brazil.mail.umich.edu () with ESMTP id lBLE0M4J025685; + Fri, 21 Dec 2007 09:00:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476BC6EB.B8601.3580 ; + 21 Dec 2007 09:00:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 67FA0A7C96; + Fri, 21 Dec 2007 13:54:41 +0000 (GMT) +Message-ID: <200712211354.lBLDspuh009728@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 670 + for ; + Fri, 21 Dec 2007 13:54:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D7B343E7C0 + for ; Fri, 21 Dec 2007 13:55:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDsp5d009730 + for ; Fri, 21 Dec 2007 08:54:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDspuh009728 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:54:51 -0500 +Date: Fri, 21 Dec 2007 08:54:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39589 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 09:00:22 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39589 + +Author: cwen@iupui.edu +Date: 2007-12-21 08:54:50 -0500 (Fri, 21 Dec 2007) +New Revision: 39589 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for portal. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 21 08:50:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 08:50:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 08:50:52 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lBLDoq1c032403; + Fri, 21 Dec 2007 08:50:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476BC4B7.2D9A7.1365 ; + 21 Dec 2007 08:50:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 79015A7B58; + Fri, 21 Dec 2007 13:49:06 +0000 (GMT) +Message-ID: <200712211350.lBLDo5KP009692@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467 + for ; + Fri, 21 Dec 2007 13:48:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 64ECE3E7BA + for ; Fri, 21 Dec 2007 13:50:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDo5MQ009694 + for ; Fri, 21 Dec 2007 08:50:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDo5KP009692 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:50:05 -0500 +Date: Fri, 21 Dec 2007 08:50:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39588 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 08:50:52 2007 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39588 + +Author: cwen@iupui.edu +Date: 2007-12-21 08:50:04 -0500 (Fri, 21 Dec 2007) +New Revision: 39588 + +Modified: +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +SAK-8152 => svn merge -r39574:39575 https://source.sakaiproject.org/svn/portal/branches/SAK-8152. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 21 08:43:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 08:43:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 08:43:25 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id lBLDhOxo019119; + Fri, 21 Dec 2007 08:43:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476BC2F6.92548.763 ; + 21 Dec 2007 08:43:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5D7CEA7C51; + Fri, 21 Dec 2007 13:42:17 +0000 (GMT) +Message-ID: <200712211342.lBLDgccG009669@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 548 + for ; + Fri, 21 Dec 2007 13:42:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D09DE3E4EF + for ; Fri, 21 Dec 2007 13:43:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDgc8K009671 + for ; Fri, 21 Dec 2007 08:42:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDgccG009669 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:42:38 -0500 +Date: Fri, 21 Dec 2007 08:42:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39587 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 08:43:25 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39587 + +Author: cwen@iupui.edu +Date: 2007-12-21 08:42:37 -0500 (Fri, 21 Dec 2007) +New Revision: 39587 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 21 08:41:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 08:41:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 08:41:56 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id lBLDft0e023114; + Fri, 21 Dec 2007 08:41:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476BC29D.54C41.9737 ; + 21 Dec 2007 08:41:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 58BF0A7B9F; + Fri, 21 Dec 2007 13:40:45 +0000 (GMT) +Message-ID: <200712211341.lBLDf8qw009641@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 342 + for ; + Fri, 21 Dec 2007 13:40:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9DA823E4EF + for ; Fri, 21 Dec 2007 13:41:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDf8bu009643 + for ; Fri, 21 Dec 2007 08:41:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDf8qw009641 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:41:08 -0500 +Date: Fri, 21 Dec 2007 08:41:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39586 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 08:41:56 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39586 + +Author: cwen@iupui.edu +Date: 2007-12-21 08:41:07 -0500 (Fri, 21 Dec 2007) +New Revision: 39586 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12540 => svn merge -r39567:39568 https://source.sakaiproject.org/svn/gradebook/trunk. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 06:30:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 06:30:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 06:30:05 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lBLBU48n031602; + Fri, 21 Dec 2007 06:30:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476BA3B7.2325D.10792 ; + 21 Dec 2007 06:30:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A9AE6A4BC7; + Fri, 21 Dec 2007 11:30:05 +0000 (GMT) +Message-ID: <200712211129.lBLBT704009407@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1004 + for ; + Fri, 21 Dec 2007 11:29:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A2ADEBAB9 + for ; Fri, 21 Dec 2007 11:29:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLBT7O3009409 + for ; Fri, 21 Dec 2007 06:29:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLBT704009407 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:29:07 -0500 +Date: Fri, 21 Dec 2007 06:29:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39585 - assignment/branches/sakai_2-5-x/assignment-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 06:30:05 2007 +X-DSPAM-Confidence: 0.9907 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39585 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 06:28:56 -0500 (Fri, 21 Dec 2007) +New Revision: 39585 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment_es.properties +Log: +svn merge -c 39569 https://source.sakaiproject.org/svn/assignment/trunk assignment/ +U assignment/assignment-bundles/assignment_es.properties + +svn log -r 39569 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r39569 | bkirschn@umich.edu | 2007-12-21 01:36:58 +0200 (Fri, 21 Dec 2007) | 1 line + +SAK-12510 fix translation + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 06:17:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 06:17:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 06:17:07 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id lBLBH6rw028604; + Fri, 21 Dec 2007 06:17:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476BA0AC.81A9A.2057 ; + 21 Dec 2007 06:17:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7C024A67FF; + Fri, 21 Dec 2007 11:17:08 +0000 (GMT) +Message-ID: <200712211116.lBLBGD0S009378@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 235 + for ; + Fri, 21 Dec 2007 11:16:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9E5693D475 + for ; Fri, 21 Dec 2007 11:16:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLBGElO009380 + for ; Fri, 21 Dec 2007 06:16:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLBGD0S009378 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:16:13 -0500 +Date: Fri, 21 Dec 2007 06:16:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39584 - in polls/branches/sakai_2-5-x/tool/src: bundle/org/sakaiproject/poll/bundle java/org/sakaiproject/poll/tool/producers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 06:17:07 2007 +X-DSPAM-Confidence: 0.9883 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39584 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 06:15:47 -0500 (Fri, 21 Dec 2007) +New Revision: 39584 + +Modified: +polls/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/producers/PollToolProducer.java +Log: +svn merge -c 39578 https://source.sakaiproject.org/svn/polls/trunk polls +U polls/tool/src/java/org/sakaiproject/poll/tool/producers/PollToolProducer.java +U polls/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties + +svn log -r 39578 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r39578 | david.horwitz@uct.ac.za | 2007-12-21 10:30:23 +0200 (Fri, 21 Dec 2007) | 1 line + +SAK-8948 Note when polls are not votable due to no options and give a message in the UI + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 06:12:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 06:12:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 06:12:21 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id lBLBCJ00017102; + Fri, 21 Dec 2007 06:12:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476B9F8D.8580A.3752 ; + 21 Dec 2007 06:12:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DCE6BA7957; + Fri, 21 Dec 2007 11:12:31 +0000 (GMT) +Message-ID: <200712211111.lBLBBYDK009366@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 681 + for ; + Fri, 21 Dec 2007 11:12:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C1B663D581 + for ; Fri, 21 Dec 2007 11:11:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLBBZXo009368 + for ; Fri, 21 Dec 2007 06:11:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLBBYDK009366 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:11:34 -0500 +Date: Fri, 21 Dec 2007 06:11:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39583 - polls/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/poll/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 06:12:21 2007 +X-DSPAM-Confidence: 0.9874 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39583 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 06:11:25 -0500 (Fri, 21 Dec 2007) +New Revision: 39583 + +Modified: +polls/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties +Log: +svn merge -c 39577 https://source.sakaiproject.org/svn/polls/trunk polls +U polls/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties +svn log -r 39577 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r39577 | david.horwitz@uct.ac.za | 2007-12-21 10:19:00 +0200 (Fri, 21 Dec 2007) | 1 line + +SAK-9892 change title to singular + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 06:05:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 06:05:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 06:05:26 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id lBLB5O0B009196; + Fri, 21 Dec 2007 06:05:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 476B9DEF.6D129.12397 ; + 21 Dec 2007 06:05:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6A7FA62AA; + Fri, 21 Dec 2007 11:05:37 +0000 (GMT) +Message-ID: <200712211104.lBLB4gDg009348@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358 + for ; + Fri, 21 Dec 2007 11:05:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 666D73D4B4 + for ; Fri, 21 Dec 2007 11:05:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLB4gtM009350 + for ; Fri, 21 Dec 2007 06:04:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLB4gDg009348 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:04:42 -0500 +Date: Fri, 21 Dec 2007 06:04:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39582 - gradebook/branches/sakai_2-5-x/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 06:05:26 2007 +X-DSPAM-Confidence: 0.8502 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39582 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 06:04:32 -0500 (Fri, 21 Dec 2007) +New Revision: 39582 + +Modified: +gradebook/branches/sakai_2-5-x/app/ui/src/webapp/js/spreadsheetUI.js +Log: +svn merge -c 39382 https://source.sakaiproject.org/svn/gradebook/trunk gradebook/ +U gradebook/app/ui/src/webapp/js/spreadsheetUI.js +svn log -r 39382 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39382 | rjlowe@iupui.edu | 2007-12-17 21:11:47 +0200 (Mon, 17 Dec 2007) | 1 line + +SAK-12491 - gb / all grades column alignment + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 06:01:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 06:01:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 06:01:02 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id lBLB10Ti018893; + Fri, 21 Dec 2007 06:01:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476B9CE6.5109D.15125 ; + 21 Dec 2007 06:00:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 18B92A7968; + Fri, 21 Dec 2007 11:01:07 +0000 (GMT) +Message-ID: <200712211100.lBLB08vC009334@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 320 + for ; + Fri, 21 Dec 2007 11:00:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 603B839CD5 + for ; Fri, 21 Dec 2007 11:00:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLB08Of009336 + for ; Fri, 21 Dec 2007 06:00:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLB08vC009334 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:00:08 -0500 +Date: Fri, 21 Dec 2007 06:00:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39581 - gradebook/branches/sakai_2-5-x/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 06:01:02 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39581 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 05:59:57 -0500 (Fri, 21 Dec 2007) +New Revision: 39581 + +Modified: +gradebook/branches/sakai_2-5-x/app/ui/src/webapp/js/spreadsheetUI.js +Log: +svn merge -c 37820 https://source.sakaiproject.org/svn/gradebook/trunk gradebook/ +U gradebook/app/ui/src/webapp/js/spreadsheetUI.js + +SAK-11588 - All Grades page crashes IE when large number of students/gb items +viewed at once + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 04:29:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 04:29:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 04:29:36 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by sleepers.mail.umich.edu () with ESMTP id lBL9TYfu014832; + Fri, 21 Dec 2007 04:29:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 476B8778.7A4F9.3395 ; + 21 Dec 2007 04:29:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7D418A789E; + Fri, 21 Dec 2007 09:29:35 +0000 (GMT) +Message-ID: <200712210928.lBL9SmRp009217@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 275 + for ; + Fri, 21 Dec 2007 09:29:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7D7423E6CE + for ; Fri, 21 Dec 2007 09:29:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL9SmhW009219 + for ; Fri, 21 Dec 2007 04:28:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL9SmRp009217 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 04:28:48 -0500 +Date: Fri, 21 Dec 2007 04:28:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39580 - reset-pass/trunk/reset-pass +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 04:29:36 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39580 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 04:28:29 -0500 (Fri, 21 Dec 2007) +New Revision: 39580 + +Modified: +reset-pass/trunk/reset-pass/pom.xml +Log: +SAK-12546 fix pom error + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 04:24:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 04:24:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 04:24:25 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lBL9ONvh016474; + Fri, 21 Dec 2007 04:24:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476B8641.DF553.1309 ; + 21 Dec 2007 04:24:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 93162A77FE; + Fri, 21 Dec 2007 09:24:24 +0000 (GMT) +Message-ID: <200712210923.lBL9NbNV009183@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540 + for ; + Fri, 21 Dec 2007 09:24:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0F34E3DFFD + for ; Fri, 21 Dec 2007 09:23:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL9NboT009185 + for ; Fri, 21 Dec 2007 04:23:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL9NbNV009183 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 04:23:37 -0500 +Date: Fri, 21 Dec 2007 04:23:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39579 - in reset-pass/trunk/reset-pass: . src/bundle/org/sakaiproject/tool/resetpass/bundle src/java/org/sakaiproject/tool/resetpass +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 04:24:25 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39579 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 04:22:43 -0500 (Fri, 21 Dec 2007) +New Revision: 39579 + +Modified: +reset-pass/trunk/reset-pass/pom.xml +reset-pass/trunk/reset-pass/src/bundle/org/sakaiproject/tool/resetpass/bundle/Messages.properties +reset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java +Log: +SAK-12546 imporved email message + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 03:31:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 03:31:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 03:31:56 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by score.mail.umich.edu () with ESMTP id lBL8VtIt009690; + Fri, 21 Dec 2007 03:31:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476B79F5.1D387.10816 ; + 21 Dec 2007 03:31:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 682BEA744F; + Fri, 21 Dec 2007 08:32:03 +0000 (GMT) +Message-ID: <200712210831.lBL8VA2R008667@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 688 + for ; + Fri, 21 Dec 2007 08:31:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD77139AD3 + for ; Fri, 21 Dec 2007 08:31:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL8VA8u008669 + for ; Fri, 21 Dec 2007 03:31:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL8VA2R008667 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 03:31:10 -0500 +Date: Fri, 21 Dec 2007 03:31:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39578 - in polls/trunk/tool/src: bundle/org/sakaiproject/poll/bundle java/org/sakaiproject/poll/tool/producers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 03:31:56 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39578 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 03:30:23 -0500 (Fri, 21 Dec 2007) +New Revision: 39578 + +Modified: +polls/trunk/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/producers/PollToolProducer.java +Log: +SAK-8948 Note when polls are not votable due to no options and give a message in the UI + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 21 03:20:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 21 Dec 2007 03:20:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 21 Dec 2007 03:20:08 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id lBL8K62Q016137; + Fri, 21 Dec 2007 03:20:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476B7730.509AC.2871 ; + 21 Dec 2007 03:20:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0142FA6FBB; + Fri, 21 Dec 2007 08:20:12 +0000 (GMT) +Message-ID: <200712210819.lBL8JIWH008654@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 132 + for ; + Fri, 21 Dec 2007 08:19:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AD3DD3DFFD + for ; Fri, 21 Dec 2007 08:19:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL8JJfo008656 + for ; Fri, 21 Dec 2007 03:19:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL8JIWH008654 + for source@collab.sakaiproject.org; Fri, 21 Dec 2007 03:19:18 -0500 +Date: Fri, 21 Dec 2007 03:19:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39577 - polls/trunk/tool/src/bundle/org/sakaiproject/poll/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 21 03:20:08 2007 +X-DSPAM-Confidence: 0.9820 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39577 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-21 03:19:00 -0500 (Fri, 21 Dec 2007) +New Revision: 39577 + +Modified: +polls/trunk/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties +Log: +SAK-9892 change title to singular + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Dec 20 22:38:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 22:38:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 22:38:27 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by sleepers.mail.umich.edu () with ESMTP id lBL3cRw4000975; + Thu, 20 Dec 2007 22:38:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476B352E.14F45.12958 ; + 20 Dec 2007 22:38:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CF4EAA6C39; + Fri, 21 Dec 2007 03:38:45 +0000 (GMT) +Message-ID: <200712210337.lBL3bj2a008291@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 490 + for ; + Fri, 21 Dec 2007 03:38:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DD8733E4B3 + for ; Fri, 21 Dec 2007 03:38:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3bjhH008293 + for ; Thu, 20 Dec 2007 22:37:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3bj2a008291 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:37:45 -0500 +Date: Thu, 20 Dec 2007 22:37:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39576 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 22:38:27 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39576 + +Author: dlhaines@umich.edu +Date: 2007-12-20 22:37:43 -0500 (Thu, 20 Dec 2007) +New Revision: 39576 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties +Log: +CTools: update version tag + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Thu Dec 20 22:20:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 22:20:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 22:20:13 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id lBL3KD3P000737; + Thu, 20 Dec 2007 22:20:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476B30E6.F4141.29548 ; + 20 Dec 2007 22:20:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 23CEAA550B; + Fri, 21 Dec 2007 03:20:29 +0000 (GMT) +Message-ID: <200712210319.lBL3JOT9008269@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79 + for ; + Fri, 21 Dec 2007 03:20:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 52F023E4C8 + for ; Fri, 21 Dec 2007 03:19:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3JO9K008271 + for ; Thu, 20 Dec 2007 22:19:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3JOT9008269 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:19:24 -0500 +Date: Thu, 20 Dec 2007 22:19:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39575 - portal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 22:20:13 2007 +X-DSPAM-Confidence: 0.8441 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39575 + +Author: josrodri@iupui.edu +Date: 2007-12-20 22:19:22 -0500 (Thu, 20 Dec 2007) +New Revision: 39575 + +Modified: +portal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +SAK-8152: simple text change: add space between number and 'minutes' (eg, 3minutes to 3 minutes) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Dec 20 22:16:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 22:16:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 22:16:36 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lBL3GaTL026988; + Thu, 20 Dec 2007 22:16:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476B300F.402E4.30482 ; + 20 Dec 2007 22:16:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AEF61A7442; + Fri, 21 Dec 2007 03:16:47 +0000 (GMT) +Message-ID: <200712210315.lBL3FbJD008257@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 588 + for ; + Fri, 21 Dec 2007 03:16:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 37F5A3E4C8 + for ; Fri, 21 Dec 2007 03:15:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3FbQV008259 + for ; Thu, 20 Dec 2007 22:15:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3FbJD008257 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:15:37 -0500 +Date: Thu, 20 Dec 2007 22:15:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39574 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 22:16:36 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39574 + +Author: dlhaines@umich.edu +Date: 2007-12-20 22:15:35 -0500 (Thu, 20 Dec 2007) +New Revision: 39574 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties +Log: +CTools: update the build revision number. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Dec 20 22:15:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 22:15:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 22:15:49 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lBL3FmJP012283; + Thu, 20 Dec 2007 22:15:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476B2FDF.D5C48.12159 ; + 20 Dec 2007 22:15:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1C933A743E; + Fri, 21 Dec 2007 03:15:54 +0000 (GMT) +Message-ID: <200712210314.lBL3EpJo008238@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603 + for ; + Fri, 21 Dec 2007 03:15:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 19C983E4C0 + for ; Fri, 21 Dec 2007 03:15:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3EpXV008240 + for ; Thu, 20 Dec 2007 22:14:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3EpJo008238 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:14:51 -0500 +Date: Thu, 20 Dec 2007 22:14:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39573 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 22:15:49 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39573 + +Author: dlhaines@umich.edu +Date: 2007-12-20 22:14:48 -0500 (Thu, 20 Dec 2007) +New Revision: 39573 + +Added: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties +Removed: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: use better name for the assignment only conversion build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Dec 20 22:13:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 22:13:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 22:13:10 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by flawless.mail.umich.edu () with ESMTP id lBL3D9Yc024738; + Thu, 20 Dec 2007 22:13:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476B2F41.21618.9167 ; + 20 Dec 2007 22:13:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 05B26A62AF; + Fri, 21 Dec 2007 03:13:22 +0000 (GMT) +Message-ID: <200712210312.lBL3CM3L008225@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 888 + for ; + Fri, 21 Dec 2007 03:13:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 52F8D3E4B9 + for ; Fri, 21 Dec 2007 03:12:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3CMMm008227 + for ; Thu, 20 Dec 2007 22:12:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3CM3L008225 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:12:22 -0500 +Date: Thu, 20 Dec 2007 22:12:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39572 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 22:13:10 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39572 + +Author: dlhaines@umich.edu +Date: 2007-12-20 22:12:20 -0500 (Thu, 20 Dec 2007) +New Revision: 39572 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +Log: +CTools: update assignments conversion revision. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From hu2@iupui.edu Thu Dec 20 21:27:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 21:27:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 21:27:29 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by brazil.mail.umich.edu () with ESMTP id lBL2RSK9028371; + Thu, 20 Dec 2007 21:27:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476B248B.D1E1.7534 ; + 20 Dec 2007 21:27:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2B9B7A4FCE; + Fri, 21 Dec 2007 02:27:54 +0000 (GMT) +Message-ID: <200712210226.lBL2QUCb008158@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 536 + for ; + Fri, 21 Dec 2007 02:27:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D0422332DC + for ; Fri, 21 Dec 2007 02:26:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL2QUjh008160 + for ; Thu, 20 Dec 2007 21:26:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL2QUCb008158 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 21:26:30 -0500 +Date: Thu, 20 Dec 2007 21:26:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f +To: source@collab.sakaiproject.org +From: hu2@iupui.edu +Subject: [sakai] svn commit: r39571 - in msgcntr/trunk: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 21:27:29 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39571 + +Author: hu2@iupui.edu +Date: 2007-12-20 21:26:28 -0500 (Thu, 20 Dec 2007) +New Revision: 39571 + +Modified: +msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +Log: +SAK-12484 +reply all cc list should not include the current user name. +http://jira.sakaiproject.org/jira/browse/SAK-12484 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Dec 20 18:58:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 18:58:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 18:58:30 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by brazil.mail.umich.edu () with ESMTP id lBKNwTQa014014; + Thu, 20 Dec 2007 18:58:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476B019F.27905.21794 ; + 20 Dec 2007 18:58:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D55D9A71B6; + Thu, 20 Dec 2007 23:58:20 +0000 (GMT) +Message-ID: <200712202357.lBKNvmeV007990@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 735 + for ; + Thu, 20 Dec 2007 23:58:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 178B23E468 + for ; Thu, 20 Dec 2007 23:58:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKNvmRh007992 + for ; Thu, 20 Dec 2007 18:57:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKNvmeV007990 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 18:57:48 -0500 +Date: Thu, 20 Dec 2007 18:57:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39570 - gradebook/branches/sakai_2-4-x/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 18:58:30 2007 +X-DSPAM-Confidence: 0.6940 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39570 + +Author: louis@media.berkeley.edu +Date: 2007-12-20 18:57:45 -0500 (Thu, 20 Dec 2007) +New Revision: 39570 + +Modified: +gradebook/branches/sakai_2-4-x/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +Log: +SAK-10063 Uploading a CSV file via the gradebook gives wrong message + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Thu Dec 20 18:37:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 18:37:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 18:37:58 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lBKNbvvJ028162; + Thu, 20 Dec 2007 18:37:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476AFCC3.2F4C4.14296 ; + 20 Dec 2007 18:37:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4CC4FA4FC5; + Thu, 20 Dec 2007 23:37:35 +0000 (GMT) +Message-ID: <200712202336.lBKNaxH0007958@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 446 + for ; + Thu, 20 Dec 2007 23:37:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CBF2C39021 + for ; Thu, 20 Dec 2007 23:37:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKNaxZV007960 + for ; Thu, 20 Dec 2007 18:36:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKNaxH0007958 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 18:36:59 -0500 +Date: Thu, 20 Dec 2007 18:36:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39569 - assignment/trunk/assignment-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 18:37:58 2007 +X-DSPAM-Confidence: 0.9838 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39569 + +Author: bkirschn@umich.edu +Date: 2007-12-20 18:36:58 -0500 (Thu, 20 Dec 2007) +New Revision: 39569 + +Modified: +assignment/trunk/assignment-bundles/assignment_es.properties +Log: +SAK-12510 fix translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Thu Dec 20 18:14:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 18:14:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 18:14:19 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by chaos.mail.umich.edu () with ESMTP id lBKNEH0P016542; + Thu, 20 Dec 2007 18:14:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476AF742.E79DA.25679 ; + 20 Dec 2007 18:14:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 53A5A7CDF2; + Thu, 20 Dec 2007 23:14:00 +0000 (GMT) +Message-ID: <200712202313.lBKNDJ6j007901@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 626 + for ; + Thu, 20 Dec 2007 23:13:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C8F5D3871C + for ; Thu, 20 Dec 2007 23:13:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKNDJpY007903 + for ; Thu, 20 Dec 2007 18:13:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKNDJ6j007901 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 18:13:19 -0500 +Date: Thu, 20 Dec 2007 18:13:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39568 - gradebook/trunk/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 18:14:19 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39568 + +Author: josrodri@iupui.edu +Date: 2007-12-20 18:13:16 -0500 (Thu, 20 Dec 2007) +New Revision: 39568 + +Modified: +gradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12540: forgot a case + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Dec 20 17:17:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 17:17:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 17:17:46 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id lBKMHjls028069; + Thu, 20 Dec 2007 17:17:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 476AEA03.E9BA3.14489 ; + 20 Dec 2007 17:17:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 49384A7158; + Thu, 20 Dec 2007 22:17:36 +0000 (GMT) +Message-ID: <200712202217.lBKMH0o5007865@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 430 + for ; + Thu, 20 Dec 2007 22:17:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 077B139021 + for ; Thu, 20 Dec 2007 22:17:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKMH1dI007867 + for ; Thu, 20 Dec 2007 17:17:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKMH0o5007865 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 17:17:00 -0500 +Date: Thu, 20 Dec 2007 17:17:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39567 - sections/trunk/sections-app-util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 17:17:46 2007 +X-DSPAM-Confidence: 0.6954 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39567 + +Author: louis@media.berkeley.edu +Date: 2007-12-20 17:16:57 -0500 (Thu, 20 Dec 2007) +New Revision: 39567 + +Modified: +sections/trunk/sections-app-util/src/bundle/sections.properties +Log: +SAK-9274 TA role can't assign TAs in Section Info; instructions indicate that TAs can/ fixed spelling error + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 20 16:49:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 16:49:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 16:49:29 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by flawless.mail.umich.edu () with ESMTP id lBKLnSx4015117; + Thu, 20 Dec 2007 16:49:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476AE362.CAD5D.7625 ; + 20 Dec 2007 16:49:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D7CADA6A4E; + Thu, 20 Dec 2007 21:45:21 +0000 (GMT) +Message-ID: <200712202148.lBKLmlkP007815@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 913 + for ; + Thu, 20 Dec 2007 21:45:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2C11E3E420 + for ; Thu, 20 Dec 2007 21:49:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLmlBo007817 + for ; Thu, 20 Dec 2007 16:48:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLmlkP007815 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:48:47 -0500 +Date: Thu, 20 Dec 2007 16:48:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39566 - assignment/branches/post-2-4-umich/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 16:49:29 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39566 + +Author: zqian@umich.edu +Date: 2007-12-20 16:48:45 -0500 (Thu, 20 Dec 2007) +New Revision: 39566 + +Modified: +assignment/branches/post-2-4-umich/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +This is to solve a merge problem generated from merging SAK-12075 into post-2-4 in r39049 and resulting misaligned columns + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 16:35:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 16:35:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 16:35:08 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by chaos.mail.umich.edu () with ESMTP id lBKLZ7sS005355; + Thu, 20 Dec 2007 16:35:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476ADFD0.26987.30080 ; + 20 Dec 2007 16:34:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B099DA6FEC; + Thu, 20 Dec 2007 21:29:33 +0000 (GMT) +Message-ID: <200712202133.lBKLXQOt007704@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712 + for ; + Thu, 20 Dec 2007 21:29:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 956902BC7C + for ; Thu, 20 Dec 2007 21:33:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLXQfO007706 + for ; Thu, 20 Dec 2007 16:33:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLXQOt007704 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:33:26 -0500 +Date: Thu, 20 Dec 2007 16:33:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39565 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 16:35:08 2007 +X-DSPAM-Confidence: 0.9776 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39565 + +Author: cwen@iupui.edu +Date: 2007-12-20 16:33:25 -0500 (Thu, 20 Dec 2007) +New Revision: 39565 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +udpate externals for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 16:33:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 16:33:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 16:33:42 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lBKLXffe012036; + Thu, 20 Dec 2007 16:33:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476ADF9C.CE9A.27148 ; + 20 Dec 2007 16:33:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 26513A706D; + Thu, 20 Dec 2007 21:28:12 +0000 (GMT) +Message-ID: <200712202130.lBKLU9CH007654@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 956 + for ; + Thu, 20 Dec 2007 21:27:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0DBD62BC7C + for ; Thu, 20 Dec 2007 21:30:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLU9te007656 + for ; Thu, 20 Dec 2007 16:30:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLU9CH007654 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:30:09 -0500 +Date: Thu, 20 Dec 2007 16:30:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39563 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 16:33:42 2007 +X-DSPAM-Confidence: 0.9762 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39563 + +Author: cwen@iupui.edu +Date: 2007-12-20 16:30:08 -0500 (Thu, 20 Dec 2007) +New Revision: 39563 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +udpate external for unmerge SAK-12488. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 16:33:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 16:33:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 16:33:24 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id lBKLXNXs022866; + Thu, 20 Dec 2007 16:33:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476ADF9E.A026D.29827 ; + 20 Dec 2007 16:33:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B20BAA708C; + Thu, 20 Dec 2007 21:28:24 +0000 (GMT) +Message-ID: <200712202131.lBKLVtm6007676@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 212 + for ; + Thu, 20 Dec 2007 21:28:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3D5CA2BC7C + for ; Thu, 20 Dec 2007 21:32:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLVtru007678 + for ; Thu, 20 Dec 2007 16:31:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLVtm6007676 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:31:55 -0500 +Date: Thu, 20 Dec 2007 16:31:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39564 - in gradebook/branches/oncourse_2-4-2/app/ui/src/webapp: inc js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 16:33:24 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39564 + +Author: cwen@iupui.edu +Date: 2007-12-20 16:31:54 -0500 (Thu, 20 Dec 2007) +New Revision: 39564 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12540 => svn merge -r39560:39561 https://source.sakaiproject.org/svn/gradebook/trunk. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 16:33:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 16:33:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 16:33:20 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lBKLXKPY028545; + Thu, 20 Dec 2007 16:33:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 476ADF99.14B0A.31842 ; + 20 Dec 2007 16:33:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1E7F0A7062; + Thu, 20 Dec 2007 21:28:01 +0000 (GMT) +Message-ID: <200712202128.lBKLSTxn007624@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 981 + for ; + Thu, 20 Dec 2007 21:27:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CF2F3E3FC + for ; Thu, 20 Dec 2007 21:28:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLST0C007626 + for ; Thu, 20 Dec 2007 16:28:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLSTxn007624 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:28:29 -0500 +Date: Thu, 20 Dec 2007 16:28:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39562 - in msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 16:33:20 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39562 + +Author: cwen@iupui.edu +Date: 2007-12-20 16:28:28 -0500 (Thu, 20 Dec 2007) +New Revision: 39562 + +Modified: +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java +Log: +unmerge for SAK-12488. svn merge -r39559:39558 https://source.sakaiproject.org/svn/msgcntr/branches/oncourse_opc_122007. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Thu Dec 20 16:26:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 16:26:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 16:26:10 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lBKLQ9fu022909; + Thu, 20 Dec 2007 16:26:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 476ADDEB.B91D2.3133 ; + 20 Dec 2007 16:26:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 69531A6FCE; + Thu, 20 Dec 2007 21:25:53 +0000 (GMT) +Message-ID: <200712202125.lBKLPIJv007598@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 51 + for ; + Thu, 20 Dec 2007 21:25:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BDA612BC7C + for ; Thu, 20 Dec 2007 21:25:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLPIw1007600 + for ; Thu, 20 Dec 2007 16:25:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLPIJv007598 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:25:18 -0500 +Date: Thu, 20 Dec 2007 16:25:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39561 - in gradebook/trunk/app/ui/src/webapp: inc js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 16:26:10 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39561 + +Author: josrodri@iupui.edu +Date: 2007-12-20 16:25:16 -0500 (Thu, 20 Dec 2007) +New Revision: 39561 + +Modified: +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12540: removing as well as migrating (see comment in JIRA) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 15:33:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 15:33:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 15:33:33 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by awakenings.mail.umich.edu () with ESMTP id lBKKXXAA009258; + Thu, 20 Dec 2007 15:33:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476AD197.B3CCC.14656 ; + 20 Dec 2007 15:33:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7FFD9A6639; + Thu, 20 Dec 2007 20:33:33 +0000 (GMT) +Message-ID: <200712202032.lBKKWnug007471@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 522 + for ; + Thu, 20 Dec 2007 20:33:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8D44B3E3E3 + for ; Thu, 20 Dec 2007 20:33:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKKWoXd007473 + for ; Thu, 20 Dec 2007 15:32:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKKWnug007471 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 15:32:49 -0500 +Date: Thu, 20 Dec 2007 15:32:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39560 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 15:33:33 2007 +X-DSPAM-Confidence: 0.8425 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39560 + +Author: cwen@iupui.edu +Date: 2007-12-20 15:32:48 -0500 (Thu, 20 Dec 2007) +New Revision: 39560 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for msgcntr to 39559. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 15:31:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 15:31:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 15:31:06 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lBKKV55G008360; + Thu, 20 Dec 2007 15:31:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 476AD103.1D8E8.13082 ; + 20 Dec 2007 15:31:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F689A6639; + Thu, 20 Dec 2007 20:31:04 +0000 (GMT) +Message-ID: <200712202030.lBKKUO60007456@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 33 + for ; + Thu, 20 Dec 2007 20:30:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B09BA3E3E3 + for ; Thu, 20 Dec 2007 20:30:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKKUOrH007458 + for ; Thu, 20 Dec 2007 15:30:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKKUO60007456 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 15:30:24 -0500 +Date: Thu, 20 Dec 2007 15:30:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39559 - in msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 15:31:06 2007 +X-DSPAM-Confidence: 0.8418 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39559 + +Author: cwen@iupui.edu +Date: 2007-12-20 15:30:22 -0500 (Thu, 20 Dec 2007) +New Revision: 39559 + +Modified: +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java +Log: +SAK-12488 => svn merge -r39557:39558 https://source.sakaiproject.org/svn/msgcntr/trunk. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From hu2@iupui.edu Thu Dec 20 15:26:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 15:26:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 15:26:29 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lBKKQSL7016714; + Thu, 20 Dec 2007 15:26:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476ACFEB.31DCE.26629 ; + 20 Dec 2007 15:26:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74AF1A6639; + Thu, 20 Dec 2007 20:26:26 +0000 (GMT) +Message-ID: <200712202025.lBKKPeau007428@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 536 + for ; + Thu, 20 Dec 2007 20:26:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 175AE3E3D2 + for ; Thu, 20 Dec 2007 20:25:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKKPeNs007430 + for ; Thu, 20 Dec 2007 15:25:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKKPeau007428 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 15:25:40 -0500 +Date: Thu, 20 Dec 2007 15:25:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f +To: source@collab.sakaiproject.org +From: hu2@iupui.edu +Subject: [sakai] svn commit: r39558 - in msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 15:26:29 2007 +X-DSPAM-Confidence: 0.8466 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39558 + +Author: hu2@iupui.edu +Date: 2007-12-20 15:25:38 -0500 (Thu, 20 Dec 2007) +New Revision: 39558 + +Modified: +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java +Log: +SAK-12488 +when send a message to yourself. click reply to all, cc row should be null. +http://jira.sakaiproject.org/jira/browse/SAK-12488 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 14:09:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 14:09:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 14:09:09 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by jacknife.mail.umich.edu () with ESMTP id lBKJ98gY027231; + Thu, 20 Dec 2007 14:09:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 476ABDCE.8D16C.19519 ; + 20 Dec 2007 14:09:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9BD95A6EAA; + Thu, 20 Dec 2007 19:08:54 +0000 (GMT) +Message-ID: <200712201908.lBKJ8Hd4007370@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 237 + for ; + Thu, 20 Dec 2007 19:08:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EEC783E3B3 + for ; Thu, 20 Dec 2007 19:08:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKJ8H0e007372 + for ; Thu, 20 Dec 2007 14:08:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKJ8Hd4007370 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 14:08:17 -0500 +Date: Thu, 20 Dec 2007 14:08:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39557 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 14:09:09 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39557 + +Author: cwen@iupui.edu +Date: 2007-12-20 14:08:16 -0500 (Thu, 20 Dec 2007) +New Revision: 39557 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for assignment. r39556. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From tnguyen@iupui.edu Thu Dec 20 13:38:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 13:38:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 13:38:53 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by panther.mail.umich.edu () with ESMTP id lBKIcp80025037; + Thu, 20 Dec 2007 13:38:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476AB6A6.341AC.16517 ; + 20 Dec 2007 13:38:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A2AD3A4AF7; + Thu, 20 Dec 2007 18:36:26 +0000 (GMT) +Message-ID: <200712201837.lBKIboZF007320@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 767 + for ; + Thu, 20 Dec 2007 18:36:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 473D830CB0 + for ; Thu, 20 Dec 2007 18:38:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKIboKj007322 + for ; Thu, 20 Dec 2007 13:37:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKIboZF007320 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 13:37:50 -0500 +Date: Thu, 20 Dec 2007 13:37:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: tnguyen@iupui.edu +Subject: [sakai] svn commit: r39556 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 13:38:53 2007 +X-DSPAM-Confidence: 0.9796 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39556 + +Author: tnguyen@iupui.edu +Date: 2007-12-20 13:37:49 -0500 (Thu, 20 Dec 2007) +New Revision: 39556 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +SAK-12433 => fixes for assignment removal authz permission problems. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 13:13:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 13:13:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 13:13:44 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lBKIDhLS023743; + Thu, 20 Dec 2007 13:13:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476AB0D1.DFF9.17305 ; + 20 Dec 2007 13:13:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A5E399F944; + Thu, 20 Dec 2007 18:12:33 +0000 (GMT) +Message-ID: <200712201812.lBKICxNO007306@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 996 + for ; + Thu, 20 Dec 2007 18:12:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E1CC73E2BA + for ; Thu, 20 Dec 2007 18:13:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKICxZP007308 + for ; Thu, 20 Dec 2007 13:12:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKICxNO007306 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 13:12:59 -0500 +Date: Thu, 20 Dec 2007 13:12:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39555 - in gradebook/trunk/helper-app: . src/java/org/sakaiproject/gradebook/tool src/java/org/sakaiproject/gradebook/tool/entity src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 13:13:44 2007 +X-DSPAM-Confidence: 0.9780 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39555 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 13:12:54 -0500 (Thu, 20 Dec 2007) +New Revision: 39555 + +Removed: +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/inferrers/ +Modified: +gradebook/trunk/helper-app/pom.xml +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProvider.java +gradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml +Log: +NOJIRA +- Removed Inferrer, everything now conveniently fits in the EntityProvider +- Removed 3 of the gradebook deps, changed the remaining one to scope provided. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Thu Dec 20 11:58:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 11:58:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 11:58:05 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by flawless.mail.umich.edu () with ESMTP id lBKGw4ls000984; + Thu, 20 Dec 2007 11:58:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476A9F16.3F749.3080 ; + 20 Dec 2007 11:58:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1E621A6B34; + Thu, 20 Dec 2007 16:35:59 +0000 (GMT) +Message-ID: <200712201632.lBKGWFha007118@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 606 + for ; + Thu, 20 Dec 2007 16:35:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B41C93E269 + for ; Thu, 20 Dec 2007 16:32:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKGWFT1007120 + for ; Thu, 20 Dec 2007 11:32:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKGWFha007118 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 11:32:15 -0500 +Date: Thu, 20 Dec 2007 11:32:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39554 - in reference/trunk/docs/releaseweb: . images +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 11:58:05 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39554 + +Author: arwhyte@umich.edu +Date: 2007-12-20 11:32:10 -0500 (Thu, 20 Dec 2007) +New Revision: 39554 + +Removed: +reference/trunk/docs/releaseweb/fixed-issues.html +reference/trunk/docs/releaseweb/images/logoslate160x89.jpg +reference/trunk/docs/releaseweb/images/slateripple4.jpg +reference/trunk/docs/releaseweb/install-build.html +reference/trunk/docs/releaseweb/install-config.html +reference/trunk/docs/releaseweb/install-dbconfig.html +reference/trunk/docs/releaseweb/install-env.html +reference/trunk/docs/releaseweb/install-overview.html +reference/trunk/docs/releaseweb/install-software.html +reference/trunk/docs/releaseweb/install-tshoot.html +reference/trunk/docs/releaseweb/open-issues.html +reference/trunk/docs/releaseweb/provisional.html +reference/trunk/docs/releaseweb/release-notes.html +Log: +SAK-12537 remove obsolete 2.3.1 release *.html files and archive in Confluence. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Dec 20 11:21:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 11:21:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 11:21:33 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id lBKGLWlC007916; + Thu, 20 Dec 2007 11:21:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476A9686.E2DEB.28479 ; + 20 Dec 2007 11:21:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3523AA69C1; + Thu, 20 Dec 2007 16:21:24 +0000 (GMT) +Message-ID: <200712201620.lBKGKjPH007104@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904 + for ; + Thu, 20 Dec 2007 16:20:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0BD4C3E22A + for ; Thu, 20 Dec 2007 16:21:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKGKjW8007106 + for ; Thu, 20 Dec 2007 11:20:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKGKjPH007104 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 11:20:45 -0500 +Date: Thu, 20 Dec 2007 11:20:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39553 - in gradebook/trunk/helper-app: . src/java/org/sakaiproject/gradebook/tool src/java/org/sakaiproject/gradebook/tool/inferrers src/java/org/sakaiproject/gradebook/tool/params src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 11:21:33 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39553 + +Author: rjlowe@iupui.edu +Date: 2007-12-20 11:20:42 -0500 (Thu, 20 Dec 2007) +New Revision: 39553 + +Added: +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/inferrers/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/inferrers/GradebookEntryViewParamsInferrer.java +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/params/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/params/AddGradebookItemViewParams.java +Modified: +gradebook/trunk/helper-app/pom.xml +gradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml +Log: +NOJIRA - Assignments2 Gradebook Helper source parts + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 10:45:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 10:45:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 10:45:35 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by faithful.mail.umich.edu () with ESMTP id lBKFjYQa010749; + Thu, 20 Dec 2007 10:45:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476A8E18.5C7DF.20160 ; + 20 Dec 2007 10:45:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5A542A6917; + Thu, 20 Dec 2007 15:45:24 +0000 (GMT) +Message-ID: <200712201544.lBKFinK9007062@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 346 + for ; + Thu, 20 Dec 2007 15:45:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F4E13E1DD + for ; Thu, 20 Dec 2007 15:45:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFinrr007064 + for ; Thu, 20 Dec 2007 10:44:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFinK9007062 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:44:49 -0500 +Date: Thu, 20 Dec 2007 10:44:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39552 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 10:45:35 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39552 + +Author: cwen@iupui.edu +Date: 2007-12-20 10:44:48 -0500 (Thu, 20 Dec 2007) +New Revision: 39552 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 10:34:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 10:34:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 10:34:22 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by awakenings.mail.umich.edu () with ESMTP id lBKFYLmJ014865; + Thu, 20 Dec 2007 10:34:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476A8B76.EA1C9.14189 ; + 20 Dec 2007 10:34:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BB7B3A685F; + Thu, 20 Dec 2007 15:34:15 +0000 (GMT) +Message-ID: <200712201533.lBKFXefa007050@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 302 + for ; + Thu, 20 Dec 2007 15:34:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 677073E11C + for ; Thu, 20 Dec 2007 15:33:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFXe7f007052 + for ; Thu, 20 Dec 2007 10:33:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFXefa007050 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:33:40 -0500 +Date: Thu, 20 Dec 2007 10:33:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39551 - in gradebook/branches/oncourse_2-4-2/app/ui/src/webapp: . js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 10:34:22 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39551 + +Author: cwen@iupui.edu +Date: 2007-12-20 10:33:38 -0500 (Thu, 20 Dec 2007) +New Revision: 39551 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/addAssignment.jsp +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12535 => svn merge -r39546:39547 https://source.sakaiproject.org/svn/gradebook/trunk. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 20 10:29:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 10:29:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 10:29:44 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lBKFTh9I001639; + Thu, 20 Dec 2007 10:29:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476A8A5E.EBB5F.5738 ; + 20 Dec 2007 10:29:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4DFF2A68C7; + Thu, 20 Dec 2007 15:29:35 +0000 (GMT) +Message-ID: <200712201528.lBKFSx6Z007025@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 970 + for ; + Thu, 20 Dec 2007 15:29:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1D86B3E11C + for ; Thu, 20 Dec 2007 15:29:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFSxbA007027 + for ; Thu, 20 Dec 2007 10:28:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFSx6Z007025 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:28:59 -0500 +Date: Thu, 20 Dec 2007 10:28:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39550 - gradebook/branches/oncourse_2-4-2/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 10:29:44 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39550 + +Author: cwen@iupui.edu +Date: 2007-12-20 10:28:58 -0500 (Thu, 20 Dec 2007) +New Revision: 39550 + +Modified: +gradebook/branches/oncourse_2-4-2/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +change assign.isCounted() to assign.isNotCounted() in createAssignments. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 20 10:14:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 10:14:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 10:14:41 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by score.mail.umich.edu () with ESMTP id lBKFEffg029150; + Thu, 20 Dec 2007 10:14:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476A86D9.5E275.3386 ; + 20 Dec 2007 10:14:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C59DCA67FA; + Thu, 20 Dec 2007 15:14:26 +0000 (GMT) +Message-ID: <200712201513.lBKFDsNu007013@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541 + for ; + Thu, 20 Dec 2007 15:14:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C20DD3E1A8 + for ; Thu, 20 Dec 2007 15:14:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFDs8A007015 + for ; Thu, 20 Dec 2007 10:13:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFDsNu007013 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:13:54 -0500 +Date: Thu, 20 Dec 2007 10:13:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39549 - assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 10:14:41 2007 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39549 + +Author: zqian@umich.edu +Date: 2007-12-20 10:13:53 -0500 (Thu, 20 Dec 2007) +New Revision: 39549 + +Modified: +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +Log: +remove the unnecessary log line + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 20 10:01:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 10:01:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 10:01:26 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lBKF1PCG019577; + Thu, 20 Dec 2007 10:01:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 476A83BF.522B2.3577 ; + 20 Dec 2007 10:01:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DD2B4A675F; + Thu, 20 Dec 2007 14:50:25 +0000 (GMT) +Message-ID: <200712201500.lBKF0if6006999@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 40 + for ; + Thu, 20 Dec 2007 14:50:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 69A3A9957 + for ; Thu, 20 Dec 2007 15:01:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKF0iw5007001 + for ; Thu, 20 Dec 2007 10:00:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKF0if6006999 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:00:44 -0500 +Date: Thu, 20 Dec 2007 10:00:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39548 - in polls/trunk/tool: . src/java/org/sakaiproject/poll/tool/validators +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 10:01:26 2007 +X-DSPAM-Confidence: 0.9758 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39548 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-20 10:00:05 -0500 (Thu, 20 Dec 2007) +New Revision: 39548 + +Modified: +polls/trunk/tool/pom.xml +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java +Log: +SAK-11704 now check for the empty strings from fckeditor + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Thu Dec 20 09:59:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:59:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:59:36 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by flawless.mail.umich.edu () with ESMTP id lBKExZHO000880; + Thu, 20 Dec 2007 09:59:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476A8352.A7268.32103 ; + 20 Dec 2007 09:59:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 199E7A60A3; + Thu, 20 Dec 2007 14:48:35 +0000 (GMT) +Message-ID: <200712201458.lBKEwoN3006969@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 913 + for ; + Thu, 20 Dec 2007 14:48:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5ED213E194 + for ; Thu, 20 Dec 2007 14:59:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEwpfv006971 + for ; Thu, 20 Dec 2007 09:58:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEwoN3006969 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:58:50 -0500 +Date: Thu, 20 Dec 2007 09:58:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39547 - in gradebook/trunk/app/ui/src/webapp: . inc js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:59:36 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39547 + +Author: josrodri@iupui.edu +Date: 2007-12-20 09:58:49 -0500 (Thu, 20 Dec 2007) +New Revision: 39547 + +Modified: +gradebook/trunk/app/ui/src/webapp/addAssignment.jsp +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12535: addAssignment.jsp, multiItemAdd.js + +bulkNewItems.jspf has roll-back of non-graded option. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:45:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:45:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:45:28 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id lBKEjR9o007195; + Thu, 20 Dec 2007 09:45:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476A7FFC.A7627.12066 ; + 20 Dec 2007 09:45:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CA2B4A60A3; + Thu, 20 Dec 2007 14:34:14 +0000 (GMT) +Message-ID: <200712201444.lBKEiIFZ006957@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1001 + for ; + Thu, 20 Dec 2007 14:33:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 380DF3E14B + for ; Thu, 20 Dec 2007 14:44:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEiIdA006959 + for ; Thu, 20 Dec 2007 09:44:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEiIFZ006957 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:44:18 -0500 +Date: Thu, 20 Dec 2007 09:44:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39546 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:45:28 2007 +X-DSPAM-Confidence: 0.9770 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39546 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:44:15 -0500 (Thu, 20 Dec 2007) +New Revision: 39546 + +Added: +content/branches/SAK-12511/pom.xml +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:44:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:44:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:44:42 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by casino.mail.umich.edu () with ESMTP id lBKEifAV023535; + Thu, 20 Dec 2007 09:44:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476A7FD4.630D5.2066 ; + 20 Dec 2007 09:44:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 78BD3A6743; + Thu, 20 Dec 2007 14:33:46 +0000 (GMT) +Message-ID: <200712201443.lBKEhmHS006941@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909 + for ; + Thu, 20 Dec 2007 14:33:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B51E83E14B + for ; Thu, 20 Dec 2007 14:44:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEhmdh006943 + for ; Thu, 20 Dec 2007 09:43:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEhmHS006941 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:43:48 -0500 +Date: Thu, 20 Dec 2007 09:43:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39545 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:44:42 2007 +X-DSPAM-Confidence: 0.9776 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39545 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:43:45 -0500 (Thu, 20 Dec 2007) +New Revision: 39545 + +Added: +content/branches/SAK-12511/content-util/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:44:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:44:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:44:19 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by sleepers.mail.umich.edu () with ESMTP id lBKEiIB9019143; + Thu, 20 Dec 2007 09:44:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476A7FBD.576B.1017 ; + 20 Dec 2007 09:44:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 04AB8A6740; + Thu, 20 Dec 2007 14:33:22 +0000 (GMT) +Message-ID: <200712201443.lBKEhQV2006927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 422 + for ; + Thu, 20 Dec 2007 14:32:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 005063E14B + for ; Thu, 20 Dec 2007 14:43:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEhQmV006929 + for ; Thu, 20 Dec 2007 09:43:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEhQV2006927 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:43:26 -0500 +Date: Thu, 20 Dec 2007 09:43:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39544 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:44:19 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39544 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:43:23 -0500 (Thu, 20 Dec 2007) +New Revision: 39544 + +Added: +content/branches/SAK-12511/content-tool/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:44:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:44:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:44:01 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by mission.mail.umich.edu () with ESMTP id lBKEi07Y006394; + Thu, 20 Dec 2007 09:44:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476A7FAA.CBF3C.11324 ; + 20 Dec 2007 09:43:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25ACDA6722; + Thu, 20 Dec 2007 14:33:02 +0000 (GMT) +Message-ID: <200712201443.lBKEh5SK006915@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 855 + for ; + Thu, 20 Dec 2007 14:32:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9B03A3E14B + for ; Thu, 20 Dec 2007 14:43:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEh5C2006917 + for ; Thu, 20 Dec 2007 09:43:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEh5SK006915 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:43:05 -0500 +Date: Thu, 20 Dec 2007 09:43:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39543 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:44:01 2007 +X-DSPAM-Confidence: 0.9785 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39543 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:43:02 -0500 (Thu, 20 Dec 2007) +New Revision: 39543 + +Added: +content/branches/SAK-12511/content-test/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:41:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:41:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:41:26 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lBKEfQ93024848; + Thu, 20 Dec 2007 09:41:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 476A7F09.6AED5.6774 ; + 20 Dec 2007 09:41:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7C6B8A6663; + Thu, 20 Dec 2007 14:30:23 +0000 (GMT) +Message-ID: <200712201440.lBKEeRRK006900@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 337 + for ; + Thu, 20 Dec 2007 14:29:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2FA543E142 + for ; Thu, 20 Dec 2007 14:40:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEeRW2006902 + for ; Thu, 20 Dec 2007 09:40:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEeRRK006900 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:40:27 -0500 +Date: Thu, 20 Dec 2007 09:40:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39542 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:41:26 2007 +X-DSPAM-Confidence: 0.9773 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39542 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:40:24 -0500 (Thu, 20 Dec 2007) +New Revision: 39542 + +Added: +content/branches/SAK-12511/contentmultiplex-impl/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:40:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:40:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:40:56 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by brazil.mail.umich.edu () with ESMTP id lBKEeuWX031667; + Thu, 20 Dec 2007 09:40:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476A7EF2.6D20F.2696 ; + 20 Dec 2007 09:40:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A06BEA672E; + Thu, 20 Dec 2007 14:29:57 +0000 (GMT) +Message-ID: <200712201440.lBKEe502006888@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 27 + for ; + Thu, 20 Dec 2007 14:29:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 017043E12B + for ; Thu, 20 Dec 2007 14:40:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEe5qd006890 + for ; Thu, 20 Dec 2007 09:40:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEe502006888 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:40:05 -0500 +Date: Thu, 20 Dec 2007 09:40:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39541 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:40:56 2007 +X-DSPAM-Confidence: 0.9785 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39541 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:40:02 -0500 (Thu, 20 Dec 2007) +New Revision: 39541 + +Added: +content/branches/SAK-12511/content-jcr-migration-impl/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:40:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:40:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:40:24 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id lBKEeNWi014339; + Thu, 20 Dec 2007 09:40:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476A7ED1.A218C.9382 ; + 20 Dec 2007 09:40:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4E343A6727; + Thu, 20 Dec 2007 14:29:27 +0000 (GMT) +Message-ID: <200712201439.lBKEdZg7006876@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 37 + for ; + Thu, 20 Dec 2007 14:29:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 81F953E12B + for ; Thu, 20 Dec 2007 14:39:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEdZfp006878 + for ; Thu, 20 Dec 2007 09:39:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEdZg7006876 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:39:35 -0500 +Date: Thu, 20 Dec 2007 09:39:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39540 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:40:24 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39540 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:39:32 -0500 (Thu, 20 Dec 2007) +New Revision: 39540 + +Added: +content/branches/SAK-12511/content-jcr-migration-api/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:40:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:40:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:40:09 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lBKEe8o2006163; + Thu, 20 Dec 2007 09:40:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476A7EC0.E2B85.21418 ; + 20 Dec 2007 09:40:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CB486A5B4A; + Thu, 20 Dec 2007 14:29:06 +0000 (GMT) +Message-ID: <200712201439.lBKEdDqd006864@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 588 + for ; + Thu, 20 Dec 2007 14:28:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 46C333E12B + for ; Thu, 20 Dec 2007 14:39:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEdE7p006866 + for ; Thu, 20 Dec 2007 09:39:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEdDqd006864 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:39:13 -0500 +Date: Thu, 20 Dec 2007 09:39:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39539 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:40:09 2007 +X-DSPAM-Confidence: 0.9785 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39539 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:39:10 -0500 (Thu, 20 Dec 2007) +New Revision: 39539 + +Added: +content/branches/SAK-12511/content-impl-providers/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:39:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:39:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:39:29 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by mission.mail.umich.edu () with ESMTP id lBKEdLl3004171; + Thu, 20 Dec 2007 09:39:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476A7E92.AA29E.32418 ; + 20 Dec 2007 09:39:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 992CFA6715; + Thu, 20 Dec 2007 14:28:24 +0000 (GMT) +Message-ID: <200712201438.lBKEcVx5006852@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 405 + for ; + Thu, 20 Dec 2007 14:28:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F0AE63E140 + for ; Thu, 20 Dec 2007 14:38:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEcVvd006854 + for ; Thu, 20 Dec 2007 09:38:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEcVx5006852 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:38:31 -0500 +Date: Thu, 20 Dec 2007 09:38:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39538 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:39:29 2007 +X-DSPAM-Confidence: 0.9774 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39538 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:38:28 -0500 (Thu, 20 Dec 2007) +New Revision: 39538 + +Added: +content/branches/SAK-12511/content-impl-jcr/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:38:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:38:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:38:43 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id lBKEcgaj020651; + Thu, 20 Dec 2007 09:38:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476A7E6D.448DD.17849 ; + 20 Dec 2007 09:38:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 58939A6729; + Thu, 20 Dec 2007 14:27:47 +0000 (GMT) +Message-ID: <200712201437.lBKEbsGU006835@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 304 + for ; + Thu, 20 Dec 2007 14:27:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6C30A3E12B + for ; Thu, 20 Dec 2007 14:38:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEbs0h006837 + for ; Thu, 20 Dec 2007 09:37:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEbsGU006835 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:37:54 -0500 +Date: Thu, 20 Dec 2007 09:37:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39537 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:38:43 2007 +X-DSPAM-Confidence: 0.8418 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39537 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:37:51 -0500 (Thu, 20 Dec 2007) +New Revision: 39537 + +Added: +content/branches/SAK-12511/content-impl/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:38:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:38:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:38:22 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lBKEcMKl003187; + Thu, 20 Dec 2007 09:38:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476A7E57.D9500.30042 ; + 20 Dec 2007 09:38:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B9DC6A6726; + Thu, 20 Dec 2007 14:27:25 +0000 (GMT) +Message-ID: <200712201437.lBKEbZNJ006823@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 958 + for ; + Thu, 20 Dec 2007 14:27:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B87AB3E12B + for ; Thu, 20 Dec 2007 14:37:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEbZ2L006825 + for ; Thu, 20 Dec 2007 09:37:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEbZNJ006823 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:37:35 -0500 +Date: Thu, 20 Dec 2007 09:37:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39536 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:38:22 2007 +X-DSPAM-Confidence: 0.9779 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39536 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:37:32 -0500 (Thu, 20 Dec 2007) +New Revision: 39536 + +Added: +content/branches/SAK-12511/content-help/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:38:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:38:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:38:08 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by godsend.mail.umich.edu () with ESMTP id lBKEc7SL003083; + Thu, 20 Dec 2007 09:38:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476A7E47.374C5.27631 ; + 20 Dec 2007 09:38:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3D6AAA6722; + Thu, 20 Dec 2007 14:27:05 +0000 (GMT) +Message-ID: <200712201437.lBKEbH8j006811@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 54 + for ; + Thu, 20 Dec 2007 14:26:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 899A23E12B + for ; Thu, 20 Dec 2007 14:37:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEbHUO006813 + for ; Thu, 20 Dec 2007 09:37:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEbH8j006811 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:37:17 -0500 +Date: Thu, 20 Dec 2007 09:37:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39535 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:38:08 2007 +X-DSPAM-Confidence: 0.9789 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39535 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:37:14 -0500 (Thu, 20 Dec 2007) +New Revision: 39535 + +Added: +content/branches/SAK-12511/content-bundles/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:37:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:37:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:37:42 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lBKEbf1O013026; + Thu, 20 Dec 2007 09:37:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476A7E2E.44F49.16324 ; + 20 Dec 2007 09:37:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8C61DA6715; + Thu, 20 Dec 2007 14:26:42 +0000 (GMT) +Message-ID: <200712201436.lBKEauNv006799@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 948 + for ; + Thu, 20 Dec 2007 14:26:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 848813E12B + for ; Thu, 20 Dec 2007 14:37:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEaudI006801 + for ; Thu, 20 Dec 2007 09:36:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEauNv006799 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:36:56 -0500 +Date: Thu, 20 Dec 2007 09:36:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39534 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:37:42 2007 +X-DSPAM-Confidence: 0.8413 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39534 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:36:53 -0500 (Thu, 20 Dec 2007) +New Revision: 39534 + +Added: +content/branches/SAK-12511/content-api/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:23:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:23:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:23:59 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id lBKENvcW000880; + Thu, 20 Dec 2007 09:23:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476A7AF4.6B410.28069 ; + 20 Dec 2007 09:23:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9791EA66F2; + Thu, 20 Dec 2007 14:12:56 +0000 (GMT) +Message-ID: <200712201423.lBKENAR5006760@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524 + for ; + Thu, 20 Dec 2007 14:12:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 393FA3DF73 + for ; Thu, 20 Dec 2007 14:23:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKENA4Y006762 + for ; Thu, 20 Dec 2007 09:23:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKENAR5006760 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:23:10 -0500 +Date: Thu, 20 Dec 2007 09:23:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39533 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:23:59 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39533 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:23:08 -0500 (Thu, 20 Dec 2007) +New Revision: 39533 + +Removed: +content/branches/SAK-12511/trunk/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:23:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:23:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:23:03 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by chaos.mail.umich.edu () with ESMTP id lBKEN2WD020219; + Thu, 20 Dec 2007 09:23:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476A7AC1.1A5F9.19852 ; + 20 Dec 2007 09:22:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 58F33A66EE; + Thu, 20 Dec 2007 14:12:03 +0000 (GMT) +Message-ID: <200712201422.lBKEMB7w006748@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541 + for ; + Thu, 20 Dec 2007 14:11:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 439A53E11C + for ; Thu, 20 Dec 2007 14:22:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEMCHp006750 + for ; Thu, 20 Dec 2007 09:22:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEMB7w006748 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:22:11 -0500 +Date: Thu, 20 Dec 2007 09:22:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39532 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:23:03 2007 +X-DSPAM-Confidence: 0.9777 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39532 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:22:08 -0500 (Thu, 20 Dec 2007) +New Revision: 39532 + +Added: +content/branches/SAK-12511/trunk/ +Log: +SAK-12511 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:12:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:12:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:12:51 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id lBKEConT027930; + Thu, 20 Dec 2007 09:12:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 476A785B.202CA.26344 ; + 20 Dec 2007 09:12:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DE407A66C1; + Thu, 20 Dec 2007 14:02:16 +0000 (GMT) +Message-ID: <200712201410.lBKEAVvU006730@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 157 + for ; + Thu, 20 Dec 2007 14:01:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D51249F1B + for ; Thu, 20 Dec 2007 14:10:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEAVl7006732 + for ; Thu, 20 Dec 2007 09:10:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEAVvU006730 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:10:31 -0500 +Date: Thu, 20 Dec 2007 09:10:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39531 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:12:51 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39531 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:10:29 -0500 (Thu, 20 Dec 2007) +New Revision: 39531 + +Removed: +content/branches/SAK-12511/trunk/ +Log: +NOJIRA copied wrong + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 20 09:06:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 09:06:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 09:06:25 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by mission.mail.umich.edu () with ESMTP id lBKE6OUX020816; + Thu, 20 Dec 2007 09:06:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 476A76CA.129E0.28490 ; + 20 Dec 2007 09:06:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8372CA668C; + Thu, 20 Dec 2007 14:00:56 +0000 (GMT) +Message-ID: <200712201404.lBKE4JLD006714@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 527 + for ; + Thu, 20 Dec 2007 14:00:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 31CE73DF63 + for ; Thu, 20 Dec 2007 14:04:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKE4Jke006716 + for ; Thu, 20 Dec 2007 09:04:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKE4JLD006714 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:04:19 -0500 +Date: Thu, 20 Dec 2007 09:04:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39530 - content/branches/SAK-12511 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 09:06:25 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39530 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-20 09:04:16 -0500 (Thu, 20 Dec 2007) +New Revision: 39530 + +Added: +content/branches/SAK-12511/trunk/ +Log: +SAK-12511 Branch to fix the migration sql updates + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 20 07:59:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 07:59:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 07:59:57 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by godsend.mail.umich.edu () with ESMTP id lBKCxu4t027985; + Thu, 20 Dec 2007 07:59:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476A673A.794D.7143 ; + 20 Dec 2007 07:59:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 23EBF51DBB; + Thu, 20 Dec 2007 12:59:34 +0000 (GMT) +Message-ID: <200712201259.lBKCx2DB006645@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357 + for ; + Thu, 20 Dec 2007 12:59:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 648AF341D4 + for ; Thu, 20 Dec 2007 12:59:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKCx2NY006647 + for ; Thu, 20 Dec 2007 07:59:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKCx2DB006645 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 07:59:02 -0500 +Date: Thu, 20 Dec 2007 07:59:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39529 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook msgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 07:59:57 2007 +X-DSPAM-Confidence: 0.9889 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39529 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-20 07:58:25 -0500 (Thu, 20 Dec 2007) +New Revision: 39529 + +Modified: +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +msgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +Log: +SAK-10606 +reverting change +http://bugs.sakaiproject.org/jira/browse/SAK-10606 +GB authorization error in logs when student accesses Forums + +U msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +U gradebook/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java + + +------------------------------------------------------------------------ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge --dry-run -r39522:39522 https://source.sakaiproject.org/svn/msgcntr/branches/sakai_2-5-x msgcntr/ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge --dry-run -r39522:39521 https://source.sakaiproject.org/svn/msgcntr/branches/sakai_2-5-x msgcntr/ +U msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -r39522:39521 https://source.sakaiproject.org/svn/msgcntr/branches/sakai_2-5-x msgcntr/ +U msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -r39522:39521 https://source.sakaiproject.org/svn/gradebook/branches/sakai_2-5-x gradebook/ +U gradebook/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Dec 20 07:38:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 07:38:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 07:38:46 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by mission.mail.umich.edu () with ESMTP id lBKCcjXo021942; + Thu, 20 Dec 2007 07:38:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476A6250.27263.8132 ; + 20 Dec 2007 07:38:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 08E08A5487; + Thu, 20 Dec 2007 12:35:37 +0000 (GMT) +Message-ID: <200712201238.lBKCc5J1006626@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 528 + for ; + Thu, 20 Dec 2007 12:35:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DFA543DFAD + for ; Thu, 20 Dec 2007 12:38:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKCc57F006628 + for ; Thu, 20 Dec 2007 07:38:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKCc5J1006626 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 07:38:05 -0500 +Date: Thu, 20 Dec 2007 07:38:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39528 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 07:38:46 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39528 + +Author: dlhaines@umich.edu +Date: 2007-12-20 07:38:03 -0500 (Thu, 20 Dec 2007) +New Revision: 39528 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: new assignments build 2.4.xPASS. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Thu Dec 20 06:43:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 06:43:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 06:43:49 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lBKBhloN015829; + Thu, 20 Dec 2007 06:43:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476A556D.97EC.25002 ; + 20 Dec 2007 06:43:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 162BA9A447; + Thu, 20 Dec 2007 11:43:28 +0000 (GMT) +Message-ID: <200712201142.lBKBgr2P006558@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 114 + for ; + Thu, 20 Dec 2007 11:43:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 28A9D3DF8B + for ; Thu, 20 Dec 2007 11:43:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKBgr6O006560 + for ; Thu, 20 Dec 2007 06:42:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKBgr2P006558 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 06:42:53 -0500 +Date: Thu, 20 Dec 2007 06:42:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39527 - in event/trunk/event-api/api/src/java/org/sakaiproject/event: api cover +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 06:43:49 2007 +X-DSPAM-Confidence: 0.7541 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39527 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-20 06:42:41 -0500 (Thu, 20 Dec 2007) +New Revision: 39527 + +Modified: +event/trunk/event-api/api/src/java/org/sakaiproject/event/api/UsageSessionService.java +event/trunk/event-api/api/src/java/org/sakaiproject/event/cover/UsageSessionService.java +Log: +SAK-10804 Remove obsolete / confusing reference to unused SAKAI_SESSION_COOKIE + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 20 05:49:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 05:49:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 05:49:17 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by flawless.mail.umich.edu () with ESMTP id lBKAnGpp015052; + Thu, 20 Dec 2007 05:49:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 476A489B.5AB68.28524 ; + 20 Dec 2007 05:49:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C6FD0A5CA3; + Thu, 20 Dec 2007 10:48:57 +0000 (GMT) +Message-ID: <200712201048.lBKAm7bk006486@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 642 + for ; + Thu, 20 Dec 2007 10:48:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E75EA3DF4A + for ; Thu, 20 Dec 2007 10:48:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKAm7Xj006488 + for ; Thu, 20 Dec 2007 05:48:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKAm7bk006486 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 05:48:07 -0500 +Date: Thu, 20 Dec 2007 05:48:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39526 - reset-pass/branches/sakai_2-5-x/reset-pass-help/src/sakai_resetpass +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 05:49:17 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39526 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-20 05:47:59 -0500 (Thu, 20 Dec 2007) +New Revision: 39526 + +Modified: +reset-pass/branches/sakai_2-5-x/reset-pass-help/src/sakai_resetpass/help.xml +Log: +SAK-12531 fix help doc name +------------------------------------------------------------------------ +dhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -r39524:39525 https://source.sakaiproject.org/svn/reset-pass/trunk reset-pass/ +U reset-pass/reset-pass-help/src/sakai_resetpass/help.xml + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 20 05:39:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 05:39:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 05:39:52 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by godsend.mail.umich.edu () with ESMTP id lBKAdo2F027416; + Thu, 20 Dec 2007 05:39:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476A4668.63579.1756 ; + 20 Dec 2007 05:39:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 15FD8A60BB; + Thu, 20 Dec 2007 10:39:32 +0000 (GMT) +Message-ID: <200712201038.lBKAcvpm006474@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 29 + for ; + Thu, 20 Dec 2007 10:39:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8CED83DF44 + for ; Thu, 20 Dec 2007 10:39:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKAcvZR006476 + for ; Thu, 20 Dec 2007 05:38:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKAcvpm006474 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 05:38:57 -0500 +Date: Thu, 20 Dec 2007 05:38:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39525 - reset-pass/trunk/reset-pass-help/src/sakai_resetpass +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 05:39:52 2007 +X-DSPAM-Confidence: 0.8418 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39525 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-20 05:38:38 -0500 (Thu, 20 Dec 2007) +New Revision: 39525 + +Modified: +reset-pass/trunk/reset-pass-help/src/sakai_resetpass/help.xml +Log: +SAK-12531 fix help doc name + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Thu Dec 20 04:22:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 04:22:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 04:22:43 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lBK9Mg05015248; + Thu, 20 Dec 2007 04:22:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476A345D.2DD06.20407 ; + 20 Dec 2007 04:22:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 89413A30E2; + Thu, 20 Dec 2007 09:21:33 +0000 (GMT) +Message-ID: <200712200922.lBK9M5uO006414@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 802 + for ; + Thu, 20 Dec 2007 09:21:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8E4BC3DEF6 + for ; Thu, 20 Dec 2007 09:22:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK9M6sv006416 + for ; Thu, 20 Dec 2007 04:22:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK9M5uO006414 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 04:22:05 -0500 +Date: Thu, 20 Dec 2007 04:22:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39524 - portal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 04:22:43 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39524 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-20 04:21:58 -0500 (Thu, 20 Dec 2007) +New Revision: 39524 + +Modified: +portal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-12528: drop page alias not found warn to debug (2-5-x merge) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Thu Dec 20 04:19:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 04:19:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 04:19:28 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id lBK9JRIU028058; + Thu, 20 Dec 2007 04:19:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 476A339A.B7A79.3764 ; + 20 Dec 2007 04:19:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A99D0A60B9; + Thu, 20 Dec 2007 09:18:20 +0000 (GMT) +Message-ID: <200712200918.lBK9IlJJ006402@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12 + for ; + Thu, 20 Dec 2007 09:18:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D75D73DF04 + for ; Thu, 20 Dec 2007 09:19:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK9Ilxo006404 + for ; Thu, 20 Dec 2007 04:18:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK9IlJJ006402 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 04:18:47 -0500 +Date: Thu, 20 Dec 2007 04:18:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39523 - portal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 04:19:28 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39523 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-20 04:18:39 -0500 (Thu, 20 Dec 2007) +New Revision: 39523 + +Modified: +portal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-12528: drop page alias not found warn to debug + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 20 04:13:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 04:13:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 04:13:41 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id lBK9DeDp026967; + Thu, 20 Dec 2007 04:13:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 476A323F.20DA6.29865 ; + 20 Dec 2007 04:13:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 38297A60A4; + Thu, 20 Dec 2007 09:12:31 +0000 (GMT) +Message-ID: <200712200913.lBK9D1D7006390@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 130 + for ; + Thu, 20 Dec 2007 09:12:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 103573DEF6 + for ; Thu, 20 Dec 2007 09:13:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK9D1Ni006392 + for ; Thu, 20 Dec 2007 04:13:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK9D1D7006390 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 04:13:01 -0500 +Date: Thu, 20 Dec 2007 04:13:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39522 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook msgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 04:13:41 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39522 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-20 04:12:30 -0500 (Thu, 20 Dec 2007) +New Revision: 39522 + +Modified: +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +msgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +Log: +SAK-10606 +http://bugs.sakaiproject.org/jira/browse/SAK-10606 +GB authorization error in logs when student accesses Forums + +U msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +U gradebook/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 20 03:59:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 20 Dec 2007 03:59:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 20 Dec 2007 03:59:12 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lBK8x8RK030919; + Thu, 20 Dec 2007 03:59:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 476A2ED7.76A43.17348 ; + 20 Dec 2007 03:59:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 676EEA606A; + Thu, 20 Dec 2007 08:58:57 +0000 (GMT) +Message-ID: <200712200858.lBK8wHWR005906@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 23 + for ; + Thu, 20 Dec 2007 08:58:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EE17C3DC7D + for ; Thu, 20 Dec 2007 08:58:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK8wHIM005908 + for ; Thu, 20 Dec 2007 03:58:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK8wHWR005906 + for source@collab.sakaiproject.org; Thu, 20 Dec 2007 03:58:17 -0500 +Date: Thu, 20 Dec 2007 03:58:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39521 - in citations/branches/sakai_2-5-x: citations-tool/tool/src/java/org/sakaiproject/citation/tool citations-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 20 03:59:12 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39521 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-20 03:57:52 -0500 (Thu, 20 Dec 2007) +New Revision: 39521 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +citations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations.properties +Log: +SAK-12403 caught OverQuotaException in createTemporaryResource (setting an error and an errorMessage on the pipe) + +needed to move call to initHelper into toolModeDispatch to make sure we can redirect the response as soon as the exception is caught + +added over quota message to resource bundle following example of what happens +when trying to upload a file + +U citations/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +U citations/citations-util/util/src/bundle/citations.properties + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Dec 19 22:24:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 22:24:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 22:24:21 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lBK3OKPJ016864; + Wed, 19 Dec 2007 22:24:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4769E05E.9D910.12083 ; + 19 Dec 2007 22:24:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 47C9BA5C07; + Thu, 20 Dec 2007 03:24:17 +0000 (GMT) +Message-ID: <200712200323.lBK3NbbE005769@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 721 + for ; + Thu, 20 Dec 2007 03:23:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BE6E1B18F + for ; Thu, 20 Dec 2007 03:23:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK3NcOB005771 + for ; Wed, 19 Dec 2007 22:23:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK3NbbE005769 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 22:23:37 -0500 +Date: Wed, 19 Dec 2007 22:23:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39520 - assignment/branches/post-2-4-umich +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 22:24:21 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39520 + +Author: zqian@umich.edu +Date: 2007-12-19 22:23:36 -0500 (Wed, 19 Dec 2007) +New Revision: 39520 + +Modified: +assignment/branches/post-2-4-umich/upgradeschema_oracle.config +Log: +back out mistakenly checked in local changes inside the config file + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Dec 19 22:20:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 22:20:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 22:20:03 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by score.mail.umich.edu () with ESMTP id lBK3K2RU028954; + Wed, 19 Dec 2007 22:20:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4769DF5C.7C67D.7579 ; + 19 Dec 2007 22:19:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E99E1A5A1C; + Thu, 20 Dec 2007 03:19:59 +0000 (GMT) +Message-ID: <200712200319.lBK3JMgx005757@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 835 + for ; + Thu, 20 Dec 2007 03:19:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 343373D9CF + for ; Thu, 20 Dec 2007 03:19:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK3JMt0005759 + for ; Wed, 19 Dec 2007 22:19:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK3JMgx005757 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 22:19:22 -0500 +Date: Wed, 19 Dec 2007 22:19:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39519 - in assignment/branches/post-2-4-umich: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 22:20:03 2007 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39519 + +Author: zqian@umich.edu +Date: 2007-12-19 22:19:18 -0500 (Wed, 19 Dec 2007) +New Revision: 39519 + +Modified: +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4-umich/runconversion.sh +assignment/branches/post-2-4-umich/upgradeschema_oracle.config +Log: +when setting the previous grading information, the previous property value is not Base64 encoded + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gbhatnag@umich.edu Wed Dec 19 22:10:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 22:10:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 22:10:31 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lBK3AVoT018054; + Wed, 19 Dec 2007 22:10:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4769DD1D.B70A7.16693 ; + 19 Dec 2007 22:10:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A9C4A5BE7; + Thu, 20 Dec 2007 03:10:24 +0000 (GMT) +Message-ID: <200712200309.lBK39mSv005692@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 112 + for ; + Thu, 20 Dec 2007 03:10:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0E30F3D9D0 + for ; Thu, 20 Dec 2007 03:10:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK39m5U005694 + for ; Wed, 19 Dec 2007 22:09:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK39mSv005692 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 22:09:48 -0500 +Date: Wed, 19 Dec 2007 22:09:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gbhatnag@umich.edu using -f +To: source@collab.sakaiproject.org +From: gbhatnag@umich.edu +Subject: [sakai] svn commit: r39518 - in citations/trunk: citations-tool/tool/src/java/org/sakaiproject/citation/tool citations-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 22:10:31 2007 +X-DSPAM-Confidence: 0.9876 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39518 + +Author: gbhatnag@umich.edu +Date: 2007-12-19 22:09:46 -0500 (Wed, 19 Dec 2007) +New Revision: 39518 + +Modified: +citations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +citations/trunk/citations-util/util/src/bundle/citations.properties +Log: +SAK-12403 caught OverQuotaException in createTemporaryResource (setting an error and an errorMessage on the pipe) + +needed to move call to initHelper into toolModeDispatch to make sure we can redirect the response as soon as the exception is caught + +added over quota message to resource bundle following example of what happens when trying to upload a file. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 19 20:06:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 20:06:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 20:06:47 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by awakenings.mail.umich.edu () with ESMTP id lBK16kxb027113; + Wed, 19 Dec 2007 20:06:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4769C021.DCC28.13673 ; + 19 Dec 2007 20:06:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 01236A5A37; + Thu, 20 Dec 2007 00:47:44 +0000 (GMT) +Message-ID: <200712200106.lBK160mp005608@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 866 + for ; + Thu, 20 Dec 2007 00:47:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7281B3DA00 + for ; Thu, 20 Dec 2007 01:06:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK161CW005610 + for ; Wed, 19 Dec 2007 20:06:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK160mp005608 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 20:06:00 -0500 +Date: Wed, 19 Dec 2007 20:06:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39517 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 20:06:47 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39517 + +Author: dlhaines@umich.edu +Date: 2007-12-19 20:05:58 -0500 (Wed, 19 Dec 2007) +New Revision: 39517 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: update for content conversion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 19 18:25:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 18:25:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 18:25:16 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by chaos.mail.umich.edu () with ESMTP id lBJNPEO2011192; + Wed, 19 Dec 2007 18:25:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4769A854.4EA23.27905 ; + 19 Dec 2007 18:25:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 44825A5960; + Wed, 19 Dec 2007 23:25:08 +0000 (GMT) +Message-ID: <200712192324.lBJNOUcI005472@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 27 + for ; + Wed, 19 Dec 2007 23:24:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 345093942F + for ; Wed, 19 Dec 2007 23:24:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJNOUm2005474 + for ; Wed, 19 Dec 2007 18:24:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJNOUcI005472 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 18:24:30 -0500 +Date: Wed, 19 Dec 2007 18:24:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39516 - db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 18:25:16 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39516 + +Author: jimeng@umich.edu +Date: 2007-12-19 18:24:25 -0500 (Wed, 19 Dec 2007) +New Revision: 39516 + +Modified: +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +Log: +SAK-12239 +set auto-commit to false (just in case it's not already). + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 17:21:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 17:21:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 17:21:39 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lBJMLcZw017712; + Wed, 19 Dec 2007 17:21:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4769996A.CC0E1.20692 ; + 19 Dec 2007 17:21:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ADDE9A5889; + Wed, 19 Dec 2007 22:21:35 +0000 (GMT) +Message-ID: <200712192220.lBJMKnid005430@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1005 + for ; + Wed, 19 Dec 2007 22:21:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A4A53D465 + for ; Wed, 19 Dec 2007 22:21:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJMKnPp005432 + for ; Wed, 19 Dec 2007 17:20:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJMKnid005430 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 17:20:49 -0500 +Date: Wed, 19 Dec 2007 17:20:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39515 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 17:21:39 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39515 + +Author: cwen@iupui.edu +Date: 2007-12-19 17:20:49 -0500 (Wed, 19 Dec 2007) +New Revision: 39515 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 17:17:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 17:17:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 17:17:31 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by awakenings.mail.umich.edu () with ESMTP id lBJMHVSl030274; + Wed, 19 Dec 2007 17:17:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47699874.40442.20337 ; + 19 Dec 2007 17:17:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2E9D8A1B42; + Wed, 19 Dec 2007 22:17:18 +0000 (GMT) +Message-ID: <200712192216.lBJMGgxo005417@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 767 + for ; + Wed, 19 Dec 2007 22:17:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BBD1E394B3 + for ; Wed, 19 Dec 2007 22:16:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJMGgxi005419 + for ; Wed, 19 Dec 2007 17:16:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJMGgxo005417 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 17:16:42 -0500 +Date: Wed, 19 Dec 2007 17:16:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39514 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 17:17:31 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39514 + +Author: cwen@iupui.edu +Date: 2007-12-19 17:16:41 -0500 (Wed, 19 Dec 2007) +New Revision: 39514 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf +Log: +fix broken GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 16:57:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 16:57:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 16:57:25 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by panther.mail.umich.edu () with ESMTP id lBJLvPDT019552; + Wed, 19 Dec 2007 16:57:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 476993AF.DE659.21391 ; + 19 Dec 2007 16:57:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4639AA56E3; + Wed, 19 Dec 2007 21:57:07 +0000 (GMT) +Message-ID: <200712192156.lBJLuYiD005370@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 417 + for ; + Wed, 19 Dec 2007 21:56:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ECF8B39405 + for ; Wed, 19 Dec 2007 21:56:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLuZ5M005372 + for ; Wed, 19 Dec 2007 16:56:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLuYiD005370 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:56:34 -0500 +Date: Wed, 19 Dec 2007 16:56:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39513 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 16:57:25 2007 +X-DSPAM-Confidence: 0.9825 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39513 + +Author: cwen@iupui.edu +Date: 2007-12-19 16:56:33 -0500 (Wed, 19 Dec 2007) +New Revision: 39513 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for GB. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 16:55:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 16:55:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 16:55:50 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id lBJLtoYO008665; + Wed, 19 Dec 2007 16:55:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4769934D.7F805.15336 ; + 19 Dec 2007 16:55:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 89381A5765; + Wed, 19 Dec 2007 21:55:29 +0000 (GMT) +Message-ID: <200712192154.lBJLsnkN005358@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 836 + for ; + Wed, 19 Dec 2007 21:55:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 73E8639405 + for ; Wed, 19 Dec 2007 21:55:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLsnFs005360 + for ; Wed, 19 Dec 2007 16:54:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLsnkN005358 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:54:49 -0500 +Date: Wed, 19 Dec 2007 16:54:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39512 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 16:55:50 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39512 + +Author: cwen@iupui.edu +Date: 2007-12-19 16:54:48 -0500 (Wed, 19 Dec 2007) +New Revision: 39512 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf +Log: +commit for Joe. GB was broken. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 16:54:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 16:54:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 16:54:12 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by score.mail.umich.edu () with ESMTP id lBJLsBeS017690; + Wed, 19 Dec 2007 16:54:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476992FE.63443.3581 ; + 19 Dec 2007 16:54:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 23D2FA5720; + Wed, 19 Dec 2007 21:54:09 +0000 (GMT) +Message-ID: <200712192153.lBJLrZ5W005346@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 303 + for ; + Wed, 19 Dec 2007 21:53:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 40BF13943E + for ; Wed, 19 Dec 2007 21:53:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLrZG0005348 + for ; Wed, 19 Dec 2007 16:53:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLrZ5W005346 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:53:35 -0500 +Date: Wed, 19 Dec 2007 16:53:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39511 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 16:54:12 2007 +X-DSPAM-Confidence: 0.9838 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39511 + +Author: cwen@iupui.edu +Date: 2007-12-19 16:53:34 -0500 (Wed, 19 Dec 2007) +New Revision: 39511 + +Modified: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js +Log: +SAK-12506 => svn merge -r39508:39509 https://source.sakaiproject.org/svn/reference/branches/SAK-8152 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Wed Dec 19 16:52:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 16:52:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 16:52:58 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by flawless.mail.umich.edu () with ESMTP id lBJLqvoJ015427; + Wed, 19 Dec 2007 16:52:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476992AD.25E7A.20438 ; + 19 Dec 2007 16:52:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D8FA5A5705; + Wed, 19 Dec 2007 21:52:45 +0000 (GMT) +Message-ID: <200712192152.lBJLqDXl005334@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769 + for ; + Wed, 19 Dec 2007 21:52:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4F6D639405 + for ; Wed, 19 Dec 2007 21:52:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLqDAf005336 + for ; Wed, 19 Dec 2007 16:52:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLqDXl005334 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:52:13 -0500 +Date: Wed, 19 Dec 2007 16:52:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39510 - in component/branches/SAK-8315: component-api/component/src/java/org/sakaiproject/component/api component-api/component/src/java/org/sakaiproject/component/cover component-api/component/src/java/org/sakaiproject/component/impl component-impl/integration-test component-impl/integration-test/src/test/java/org/sakaiproject/component +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 16:52:58 2007 +X-DSPAM-Confidence: 0.7604 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39510 + +Author: ray@media.berkeley.edu +Date: 2007-12-19 16:52:01 -0500 (Wed, 19 Dec 2007) +New Revision: 39510 + +Modified: +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-8315/component-impl/integration-test/ +component/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java +Log: +Deprecate and null out now unused method which used to have the ServerConfigurationService as a client + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Dec 19 16:49:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 16:49:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 16:49:25 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lBJLnOc9026401; + Wed, 19 Dec 2007 16:49:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476991DE.92CF2.8822 ; + 19 Dec 2007 16:49:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AFECCA56E1; + Wed, 19 Dec 2007 21:49:18 +0000 (GMT) +Message-ID: <200712192148.lBJLmKnH005306@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541 + for ; + Wed, 19 Dec 2007 21:48:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 36A42394D9 + for ; Wed, 19 Dec 2007 21:48:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLmKvZ005308 + for ; Wed, 19 Dec 2007 16:48:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLmKnH005306 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:48:20 -0500 +Date: Wed, 19 Dec 2007 16:48:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39509 - reference/branches/SAK-8152/library/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 16:49:25 2007 +X-DSPAM-Confidence: 0.9825 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39509 + +Author: rjlowe@iupui.edu +Date: 2007-12-19 16:48:19 -0500 (Wed, 19 Dec 2007) +New Revision: 39509 + +Modified: +reference/branches/SAK-8152/library/src/webapp/js/headscripts.js +Log: +SAK-12506 - fix error with zindexing + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 19 16:37:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 16:37:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 16:37:53 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by faithful.mail.umich.edu () with ESMTP id lBJLbqEI003123; + Wed, 19 Dec 2007 16:37:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47698F24.8F294.23193 ; + 19 Dec 2007 16:37:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 61092A2B9A; + Wed, 19 Dec 2007 21:37:41 +0000 (GMT) +Message-ID: <200712192137.lBJLb8VF005274@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59 + for ; + Wed, 19 Dec 2007 21:37:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E4B3A3940D + for ; Wed, 19 Dec 2007 21:37:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLb8vc005276 + for ; Wed, 19 Dec 2007 16:37:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLb8VF005274 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:37:08 -0500 +Date: Wed, 19 Dec 2007 16:37:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39508 - db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 16:37:53 2007 +X-DSPAM-Confidence: 0.8495 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39508 + +Author: jimeng@umich.edu +Date: 2007-12-19 16:37:06 -0500 (Wed, 19 Dec 2007) +New Revision: 39508 + +Modified: +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +Log: +SAK-12239 +Added log messages to empty catch blocks. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Dec 19 16:22:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 16:22:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 16:22:38 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by awakenings.mail.umich.edu () with ESMTP id lBJLMbTm003973; + Wed, 19 Dec 2007 16:22:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47698B8E.B1A48.19125 ; + 19 Dec 2007 16:22:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9BB9CA554B; + Wed, 19 Dec 2007 21:22:21 +0000 (GMT) +Message-ID: <200712192121.lBJLLnS4005240@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 274 + for ; + Wed, 19 Dec 2007 21:22:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 539CE3937A + for ; Wed, 19 Dec 2007 21:22:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLLn3B005242 + for ; Wed, 19 Dec 2007 16:21:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLLnS4005240 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:21:49 -0500 +Date: Wed, 19 Dec 2007 16:21:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39507 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 16:22:38 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39507 + +Author: wagnermr@iupui.edu +Date: 2007-12-19 16:21:47 -0500 (Wed, 19 Dec 2007) +New Revision: 39507 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getAssignmentScore and getAssignmentScoreComment methods that take an assignment id instead of name + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 15:49:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 15:49:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 15:49:00 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lBJKmxck004047; + Wed, 19 Dec 2007 15:48:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 476983B5.2617C.9672 ; + 19 Dec 2007 15:48:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 77307A54EB; + Wed, 19 Dec 2007 20:48:45 +0000 (GMT) +Message-ID: <200712192048.lBJKmCfO005175@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351 + for ; + Wed, 19 Dec 2007 20:48:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6BEB03D473 + for ; Wed, 19 Dec 2007 20:48:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKmC7i005177 + for ; Wed, 19 Dec 2007 15:48:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKmCfO005175 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:48:12 -0500 +Date: Wed, 19 Dec 2007 15:48:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39506 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 15:49:00 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39506 + +Author: cwen@iupui.edu +Date: 2007-12-19 15:48:11 -0500 (Wed, 19 Dec 2007) +New Revision: 39506 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for GB to r39505. assignment to r39504. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 15:45:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 15:45:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 15:45:35 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lBJKjZlr015526; + Wed, 19 Dec 2007 15:45:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476982E8.E95AC.20733 ; + 19 Dec 2007 15:45:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 68133A3644; + Wed, 19 Dec 2007 20:45:17 +0000 (GMT) +Message-ID: <200712192044.lBJKiibw005162@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 191 + for ; + Wed, 19 Dec 2007 20:45:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 244E43D473 + for ; Wed, 19 Dec 2007 20:45:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKiigw005164 + for ; Wed, 19 Dec 2007 15:44:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKiibw005162 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:44:44 -0500 +Date: Wed, 19 Dec 2007 15:44:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39505 - in gradebook/branches/oncourse_2-4-2/app/ui/src/webapp: inc js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 15:45:35 2007 +X-DSPAM-Confidence: 0.9805 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39505 + +Author: cwen@iupui.edu +Date: 2007-12-19 15:44:43 -0500 (Wed, 19 Dec 2007) +New Revision: 39505 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js +Log: +commit for Joes fixes for SAK-12451, SAK-12449, SAK-12466 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Dec 19 15:40:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 15:40:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 15:40:31 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by panther.mail.umich.edu () with ESMTP id lBJKeVAm009756; + Wed, 19 Dec 2007 15:40:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 476981A8.BF1.22417 ; + 19 Dec 2007 15:40:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ABB59A54E0; + Wed, 19 Dec 2007 20:40:00 +0000 (GMT) +Message-ID: <200712192039.lBJKdMnj005150@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 51 + for ; + Wed, 19 Dec 2007 20:39:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D2BC13D33E + for ; Wed, 19 Dec 2007 20:39:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKdMvU005152 + for ; Wed, 19 Dec 2007 15:39:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKdMnj005150 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:39:22 -0500 +Date: Wed, 19 Dec 2007 15:39:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39504 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 15:40:31 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39504 + +Author: wagnermr@iupui.edu +Date: 2007-12-19 15:39:21 -0500 (Wed, 19 Dec 2007) +New Revision: 39504 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties +Log: +ONC-270 +https://uisapp2.iu.edu/jira/browse/ONC-270 +Text changes to minimize confusion +Correct typo + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 15:17:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 15:17:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 15:17:58 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lBJKHvZb025029; + Wed, 19 Dec 2007 15:17:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47697C6E.AF51.2259 ; + 19 Dec 2007 15:17:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 23E25A48A7; + Wed, 19 Dec 2007 20:17:48 +0000 (GMT) +Message-ID: <200712192017.lBJKHKBt005108@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 719 + for ; + Wed, 19 Dec 2007 20:17:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EFA112AEB4 + for ; Wed, 19 Dec 2007 20:17:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKHKSc005110 + for ; Wed, 19 Dec 2007 15:17:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKHKBt005108 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:17:20 -0500 +Date: Wed, 19 Dec 2007 15:17:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39503 - oncourse/trunk/overlay/sakai/org.sakaiproject.citation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 15:17:58 2007 +X-DSPAM-Confidence: 0.9848 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39503 + +Author: cwen@iupui.edu +Date: 2007-12-19 15:17:19 -0500 (Wed, 19 Dec 2007) +New Revision: 39503 + +Modified: +oncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-configuration.xml +Log: +add IUPUI library config file for citation. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Wed Dec 19 14:48:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 14:48:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 14:48:33 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id lBJJmXPA017752; + Wed, 19 Dec 2007 14:48:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4769758B.AD3EA.11638 ; + 19 Dec 2007 14:48:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7CF4FA4744; + Wed, 19 Dec 2007 19:48:26 +0000 (GMT) +Message-ID: <200712191947.lBJJllbN005040@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 746 + for ; + Wed, 19 Dec 2007 19:48:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D69C63D45A + for ; Wed, 19 Dec 2007 19:48:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJllXC005042 + for ; Wed, 19 Dec 2007 14:47:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJllbN005040 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:47:47 -0500 +Date: Wed, 19 Dec 2007 14:47:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39502 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 14:48:33 2007 +X-DSPAM-Confidence: 0.6962 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39502 + +Author: gsilver@umich.edu +Date: 2007-12-19 14:47:45 -0500 (Wed, 19 Dec 2007) +New Revision: 39502 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlMaster.vm +Log: +SAK-12524 +http://bugs.sakaiproject.org/jira/browse/SAK-12524 +- for 2.6=normalize markup, clean up language key relationships. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Wed Dec 19 14:48:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 14:48:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 14:48:16 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lBJJmF4M024514; + Wed, 19 Dec 2007 14:48:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47697569.E2D68.32479 ; + 19 Dec 2007 14:47:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3137CA4686; + Wed, 19 Dec 2007 19:47:53 +0000 (GMT) +Message-ID: <200712191947.lBJJlLbV005028@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263 + for ; + Wed, 19 Dec 2007 19:47:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93B9E3D45A + for ; Wed, 19 Dec 2007 19:47:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJlLK3005030 + for ; Wed, 19 Dec 2007 14:47:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJlLbV005028 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:47:21 -0500 +Date: Wed, 19 Dec 2007 14:47:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39501 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 14:48:16 2007 +X-DSPAM-Confidence: 0.6510 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39501 + +Author: gsilver@umich.edu +Date: 2007-12-19 14:47:16 -0500 (Wed, 19 Dec 2007) +New Revision: 39501 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-confirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-differentRole.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-notification.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-sameRole.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeature.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeatureConfirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-modifyENW.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteConfirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteFeatures.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteDeleteConfirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-addCourseConfirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editClass.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfo.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfoConfirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupDeleteConfirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupedit.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm +Log: +SAK-12524 +http://bugs.sakaiproject.org/jira/browse/SAK-12524 +- for 2.6=normalize markup, clean up language key relationships. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Wed Dec 19 14:35:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 14:35:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 14:35:41 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by jacknife.mail.umich.edu () with ESMTP id lBJJZfP7009260; + Wed, 19 Dec 2007 14:35:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47697287.B3E3E.15690 ; + 19 Dec 2007 14:35:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3D009E6C9; + Wed, 19 Dec 2007 19:35:33 +0000 (GMT) +Message-ID: <200712191935.lBJJZ4VK004956@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 229 + for ; + Wed, 19 Dec 2007 19:35:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CA43393A2 + for ; Wed, 19 Dec 2007 19:35:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJZ4dN004958 + for ; Wed, 19 Dec 2007 14:35:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJZ4VK004956 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:35:04 -0500 +Date: Wed, 19 Dec 2007 14:35:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39500 - site-manage/trunk/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 14:35:41 2007 +X-DSPAM-Confidence: 0.7602 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39500 + +Author: gsilver@umich.edu +Date: 2007-12-19 14:35:02 -0500 (Wed, 19 Dec 2007) +New Revision: 39500 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +Log: +SAK-12523 +http://bugs.sakaiproject.org/jira/browse/SAK-12523 +- remove unused strings from bundles in site-manage + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 14:25:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 14:25:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 14:25:19 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by godsend.mail.umich.edu () with ESMTP id lBJJPI1U025463; + Wed, 19 Dec 2007 14:25:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47697014.7A059.31240 ; + 19 Dec 2007 14:25:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 31140A5411; + Wed, 19 Dec 2007 18:50:04 +0000 (GMT) +Message-ID: <200712191924.lBJJOXiR004942@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 994 + for ; + Wed, 19 Dec 2007 18:49:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1F2033D3F4 + for ; Wed, 19 Dec 2007 19:24:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJOXsT004944 + for ; Wed, 19 Dec 2007 14:24:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJOXiR004942 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:24:33 -0500 +Date: Wed, 19 Dec 2007 14:24:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39499 - in oncourse/trunk/src/site-manage/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 14:25:19 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39499 + +Author: cwen@iupui.edu +Date: 2007-12-19 14:24:32 -0500 (Wed, 19 Dec 2007) +New Revision: 39499 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +update site-manage overlay for migrate release from practice to stg. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 14:17:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 14:17:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 14:17:59 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by chaos.mail.umich.edu () with ESMTP id lBJJHwhU019946; + Wed, 19 Dec 2007 14:17:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47696E5F.CE32B.17238 ; + 19 Dec 2007 14:17:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D63DCA53E2; + Wed, 19 Dec 2007 18:42:44 +0000 (GMT) +Message-ID: <200712191850.lBJIoQjl004892@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 666 + for ; + Wed, 19 Dec 2007 18:42:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D2DC3D868 + for ; Wed, 19 Dec 2007 18:50:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJIoQJD004894 + for ; Wed, 19 Dec 2007 13:50:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJIoQjl004892 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 13:50:26 -0500 +Date: Wed, 19 Dec 2007 13:50:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39497 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 14:17:59 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39497 + +Author: cwen@iupui.edu +Date: 2007-12-19 13:50:25 -0500 (Wed, 19 Dec 2007) +New Revision: 39497 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for Gregs sql updates of rolling back student view. only effective for autoddl is true. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 14:12:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 14:12:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 14:12:22 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by mission.mail.umich.edu () with ESMTP id lBJJCL35027517; + Wed, 19 Dec 2007 14:12:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47696D0A.BEEAE.16580 ; + 19 Dec 2007 14:12:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74A1EA52D7; + Wed, 19 Dec 2007 18:37:04 +0000 (GMT) +Message-ID: <200712191911.lBJJBYa1004930@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 985 + for ; + Wed, 19 Dec 2007 18:36:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E871F39351 + for ; Wed, 19 Dec 2007 19:11:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJBYxZ004932 + for ; Wed, 19 Dec 2007 14:11:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJBYa1004930 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:11:34 -0500 +Date: Wed, 19 Dec 2007 14:11:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39498 - oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 14:12:22 2007 +X-DSPAM-Confidence: 0.8477 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39498 + +Author: cwen@iupui.edu +Date: 2007-12-19 14:11:33 -0500 (Wed, 19 Dec 2007) +New Revision: 39498 + +Modified: +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +merge from overlay to branch before migrate release from practice to stg (merge for Andrews privacy patch). svn merge -r39455:39456 https://source.sakaiproject.org/svn/oncourse/trunk/src/site-manage, svn merge -r39466:39467 https://source.sakaiproject.org/svn/oncourse/trunk/src/site-manage. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Wed Dec 19 13:31:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 13:31:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 13:31:20 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id lBJIVJuj001014; + Wed, 19 Dec 2007 13:31:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4769636C.1EEF3.5570 ; + 19 Dec 2007 13:31:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4F3EFA5334; + Wed, 19 Dec 2007 18:16:13 +0000 (GMT) +Message-ID: <200712191816.lBJIGRwJ004772@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761 + for ; + Wed, 19 Dec 2007 18:08:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C6C4C3D3F4 + for ; Wed, 19 Dec 2007 18:16:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJIGRcV004774 + for ; Wed, 19 Dec 2007 13:16:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJIGRwJ004772 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 13:16:27 -0500 +Date: Wed, 19 Dec 2007 13:16:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39496 - user/branches/sakai_2-5-x/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 13:31:20 2007 +X-DSPAM-Confidence: 0.8472 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39496 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-19 13:16:18 -0500 (Wed, 19 Dec 2007) +New Revision: 39496 + +Modified: +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool/UserPrefsTool.java +Log: +SAK-11460 Apply patch for 2-5-x from Anastasia Cheetham + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Dec 19 13:30:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 13:30:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 13:30:53 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lBJIUqAu002796; + Wed, 19 Dec 2007 13:30:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47696352.E35E5.31492 ; + 19 Dec 2007 13:30:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 55CE5A50CB; + Wed, 19 Dec 2007 18:16:09 +0000 (GMT) +Message-ID: <200712191810.lBJIAL9j004760@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1002 + for ; + Wed, 19 Dec 2007 18:05:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C43DE3D3C4 + for ; Wed, 19 Dec 2007 18:10:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJIALVK004762 + for ; Wed, 19 Dec 2007 13:10:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJIAL9j004760 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 13:10:21 -0500 +Date: Wed, 19 Dec 2007 13:10:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39495 - in authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql: hsqldb mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 13:30:53 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39495 + +Author: gjthomas@iupui.edu +Date: 2007-12-19 13:10:18 -0500 (Wed, 19 Dec 2007) +New Revision: 39495 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/mysql/sakai_realm.sql +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +Oncourse - Removed roleswap permission from sql scripts + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 19 12:36:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 12:36:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 12:36:42 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by panther.mail.umich.edu () with ESMTP id lBJHafiT022907; + Wed, 19 Dec 2007 12:36:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476956A3.B1147.20242 ; + 19 Dec 2007 12:36:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D4947A4AF3; + Wed, 19 Dec 2007 17:36:32 +0000 (GMT) +Message-ID: <200712191736.lBJHa4sJ004662@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 888 + for ; + Wed, 19 Dec 2007 17:36:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7817C39195 + for ; Wed, 19 Dec 2007 17:36:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJHa4sf004664 + for ; Wed, 19 Dec 2007 12:36:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJHa4sJ004662 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 12:36:04 -0500 +Date: Wed, 19 Dec 2007 12:36:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39494 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 12:36:42 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39494 + +Author: dlhaines@umich.edu +Date: 2007-12-19 12:36:02 -0500 (Wed, 19 Dec 2007) +New Revision: 39494 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: update the for assignments conversion fix. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Dec 19 12:27:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 12:27:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 12:27:48 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lBJHRlD6028762; + Wed, 19 Dec 2007 12:27:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4769548D.299F6.12478 ; + 19 Dec 2007 12:27:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 41277A4AAE; + Wed, 19 Dec 2007 17:27:37 +0000 (GMT) +Message-ID: <200712191727.lBJHR7Ql004635@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650 + for ; + Wed, 19 Dec 2007 17:27:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C405239195 + for ; Wed, 19 Dec 2007 17:27:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJHR7WR004637 + for ; Wed, 19 Dec 2007 12:27:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJHR7Ql004635 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 12:27:07 -0500 +Date: Wed, 19 Dec 2007 12:27:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39493 - in assignment/branches/post-2-4-umich/assignment-impl: impl impl/src/java/org/sakaiproject/assignment/impl/conversion/impl pack +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 12:27:48 2007 +X-DSPAM-Confidence: 0.8480 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39493 + +Author: zqian@umich.edu +Date: 2007-12-19 12:27:03 -0500 (Wed, 19 Dec 2007) +New Revision: 39493 + +Modified: +assignment/branches/post-2-4-umich/assignment-impl/impl/project.xml +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4-umich/assignment-impl/pack/project.xml +Log: +related SAK-11821: various fixes in the combine duplicates routine. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 11:24:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 11:24:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 11:24:30 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by faithful.mail.umich.edu () with ESMTP id lBJGOTmN015019; + Wed, 19 Dec 2007 11:24:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476945B6.61584.12508 ; + 19 Dec 2007 11:24:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A7BD4A4F40; + Wed, 19 Dec 2007 16:24:19 +0000 (GMT) +Message-ID: <200712191623.lBJGNpmZ004593@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650 + for ; + Wed, 19 Dec 2007 16:24:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 36AE43D6CE + for ; Wed, 19 Dec 2007 16:24:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJGNpD3004595 + for ; Wed, 19 Dec 2007 11:23:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJGNpmZ004593 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 11:23:51 -0500 +Date: Wed, 19 Dec 2007 11:23:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39492 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 11:24:30 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39492 + +Author: cwen@iupui.edu +Date: 2007-12-19 11:23:50 -0500 (Wed, 19 Dec 2007) +New Revision: 39492 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update calendar revision for Gregs student view roll back. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 19 11:00:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 11:00:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 11:00:10 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBJG09O8014413; + Wed, 19 Dec 2007 11:00:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47694000.8BCAE.16696 ; + 19 Dec 2007 11:00:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 93AACA4E3A; + Wed, 19 Dec 2007 15:50:57 +0000 (GMT) +Message-ID: <200712191559.lBJFxPD8004539@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 74 + for ; + Wed, 19 Dec 2007 15:50:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 71C6423713 + for ; Wed, 19 Dec 2007 15:59:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJFxPui004541 + for ; Wed, 19 Dec 2007 10:59:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJFxPD8004539 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 10:59:25 -0500 +Date: Wed, 19 Dec 2007 10:59:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39491 - content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 11:00:10 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39491 + +Author: jimeng@umich.edu +Date: 2007-12-19 10:59:22 -0500 (Wed, 19 Dec 2007) +New Revision: 39491 + +Modified: +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableResourceAccess.java +Log: +SAK-12239 +Ignore "members" and "member" elements in XML field in CONTENT_COLLECTION table (i.e. no need to log them) + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Wed Dec 19 10:34:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 10:34:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 10:34:30 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by jacknife.mail.umich.edu () with ESMTP id lBJFYSH7029397; + Wed, 19 Dec 2007 10:34:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476939FD.84328.30788 ; + 19 Dec 2007 10:34:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 907CEA4E5E; + Wed, 19 Dec 2007 15:30:53 +0000 (GMT) +Message-ID: <200712191532.lBJFWtJg004498@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 926 + for ; + Wed, 19 Dec 2007 15:30:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B92943D3B3 + for ; Wed, 19 Dec 2007 15:33:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJFWt7r004500 + for ; Wed, 19 Dec 2007 10:32:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJFWtJg004498 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 10:32:55 -0500 +Date: Wed, 19 Dec 2007 10:32:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r39490 - blog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 10:34:30 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39490 + +Author: a.fish@lancaster.ac.uk +Date: 2007-12-19 10:32:48 -0500 (Wed, 19 Dec 2007) +New Revision: 39490 + +Modified: +blog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIOutputPost.java +Log: +SAK-11556 Applied date format changes to comments also. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Wed Dec 19 10:28:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 10:28:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 10:28:08 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by godsend.mail.umich.edu () with ESMTP id lBJFS8JC011778; + Wed, 19 Dec 2007 10:28:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4769386B.1C07B.32240 ; + 19 Dec 2007 10:27:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74BA3A4E4F; + Wed, 19 Dec 2007 15:27:19 +0000 (GMT) +Message-ID: <200712191526.lBJFQY3M004473@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 219 + for ; + Wed, 19 Dec 2007 15:26:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5EE7D3D3A2 + for ; Wed, 19 Dec 2007 15:26:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJFQZcv004475 + for ; Wed, 19 Dec 2007 10:26:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJFQY3M004473 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 10:26:34 -0500 +Date: Wed, 19 Dec 2007 10:26:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r39489 - blog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 10:28:08 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39489 + +Author: a.fish@lancaster.ac.uk +Date: 2007-12-19 10:26:27 -0500 (Wed, 19 Dec 2007) +New Revision: 39489 + +Modified: +blog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/PostWriter.java +Log: +SAK-11556 Fixed the date format in the comments also. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 09:45:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 09:45:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 09:45:21 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by godsend.mail.umich.edu () with ESMTP id lBJEjLhJ021750; + Wed, 19 Dec 2007 09:45:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47692E79.C98A9.5105 ; + 19 Dec 2007 09:45:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C0165A4DCE; + Wed, 19 Dec 2007 14:45:11 +0000 (GMT) +Message-ID: <200712191444.lBJEiclh004385@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 804 + for ; + Wed, 19 Dec 2007 14:44:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4CA6A3D34D + for ; Wed, 19 Dec 2007 14:44:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJEiclD004387 + for ; Wed, 19 Dec 2007 09:44:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJEiclh004385 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 09:44:38 -0500 +Date: Wed, 19 Dec 2007 09:44:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39488 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 09:45:21 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39488 + +Author: cwen@iupui.edu +Date: 2007-12-19 09:44:37 -0500 (Wed, 19 Dec 2007) +New Revision: 39488 + +Modified: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js +Log: +SAK-8624 => svn merge -r22556:22557 https://source.sakaiproject.org/svn/reference/trunk. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Wed Dec 19 09:35:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 09:35:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 09:35:37 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id lBJEZbiK023683; + Wed, 19 Dec 2007 09:35:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47692C2A.67698.1102 ; + 19 Dec 2007 09:35:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B9969BC7D; + Wed, 19 Dec 2007 14:35:17 +0000 (GMT) +Message-ID: <200712191434.lBJEYnqE004362@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236 + for ; + Wed, 19 Dec 2007 14:34:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6824E37205 + for ; Wed, 19 Dec 2007 14:35:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJEYnvb004364 + for ; Wed, 19 Dec 2007 09:34:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJEYnqE004362 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 09:34:49 -0500 +Date: Wed, 19 Dec 2007 09:34:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39487 - calendar/trunk/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 09:35:37 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39487 + +Author: gsilver@umich.edu +Date: 2007-12-19 09:34:47 -0500 (Wed, 19 Dec 2007) +New Revision: 39487 + +Modified: +calendar/trunk/calendar-tool/tool/src/bundle/calendar.properties +Log: +SAK-12409 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 19 08:47:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 08:47:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 08:47:43 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id lBJDlh9u002880; + Wed, 19 Dec 2007 08:47:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476920F4.D52E5.13494 ; + 19 Dec 2007 08:47:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8D64DA4C80; + Wed, 19 Dec 2007 13:47:26 +0000 (GMT) +Message-ID: <200712191346.lBJDklkl004248@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 223 + for ; + Wed, 19 Dec 2007 13:47:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6C8AE3CE6B + for ; Wed, 19 Dec 2007 13:47:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDklP4004250 + for ; Wed, 19 Dec 2007 08:46:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDklkl004248 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:46:47 -0500 +Date: Wed, 19 Dec 2007 08:46:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39486 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 08:47:43 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39486 + +Author: cwen@iupui.edu +Date: 2007-12-19 08:46:46 -0500 (Wed, 19 Dec 2007) +New Revision: 39486 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for ONC-270 => assignment r39484. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Wed Dec 19 08:41:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 08:41:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 08:41:55 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id lBJDftVi031762; + Wed, 19 Dec 2007 08:41:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47691F9C.CA84D.18827 ; + 19 Dec 2007 08:41:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 85A51A4B83; + Wed, 19 Dec 2007 13:41:44 +0000 (GMT) +Message-ID: <200712191341.lBJDfGpk004210@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534 + for ; + Wed, 19 Dec 2007 13:41:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E760924EC6 + for ; Wed, 19 Dec 2007 13:41:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDfGwt004212 + for ; Wed, 19 Dec 2007 08:41:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDfGpk004210 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:41:16 -0500 +Date: Wed, 19 Dec 2007 08:41:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39485 - linktool/branches/sakai_2-4-x webservices/branches/sakai_2-4-x/axis/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 08:41:55 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39485 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-19 08:41:13 -0500 (Wed, 19 Dec 2007) +New Revision: 39485 + +Added: +webservices/branches/sakai_2-4-x/axis/src/webapp/SakaiSigning.jws +Removed: +linktool/branches/sakai_2-4-x/SakaiSigning.jws +Log: +SAK-7720 moved SakaiSigning.jws + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Dec 19 08:39:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 08:39:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 08:39:56 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lBJDdufM008018; + Wed, 19 Dec 2007 08:39:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47691F27.ABF9.30104 ; + 19 Dec 2007 08:39:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5D644A4B83; + Wed, 19 Dec 2007 13:39:23 +0000 (GMT) +Message-ID: <200712191338.lBJDctBc004195@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 433 + for ; + Wed, 19 Dec 2007 13:39:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0D35E24EC6 + for ; Wed, 19 Dec 2007 13:39:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDctMC004197 + for ; Wed, 19 Dec 2007 08:38:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDctBc004195 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:38:55 -0500 +Date: Wed, 19 Dec 2007 08:38:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39484 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 08:39:56 2007 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39484 + +Author: wagnermr@iupui.edu +Date: 2007-12-19 08:38:53 -0500 (Wed, 19 Dec 2007) +New Revision: 39484 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +ONC-270 +https://uisapp2.iu.edu/jira/browse/ONC-270 +Text changes to minimize confusion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Wed Dec 19 08:35:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 08:35:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 08:35:04 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by brazil.mail.umich.edu () with ESMTP id lBJDZ3Pb002903; + Wed, 19 Dec 2007 08:35:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47691E00.86E82.17126 ; + 19 Dec 2007 08:34:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E87B6A4C62; + Wed, 19 Dec 2007 13:34:38 +0000 (GMT) +Message-ID: <200712191334.lBJDYBvh004174@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459 + for ; + Wed, 19 Dec 2007 13:34:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 20B1C24EC6 + for ; Wed, 19 Dec 2007 13:34:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDYBg0004176 + for ; Wed, 19 Dec 2007 08:34:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDYBvh004174 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:34:11 -0500 +Date: Wed, 19 Dec 2007 08:34:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39483 - linktool/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 08:35:04 2007 +X-DSPAM-Confidence: 0.9903 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39483 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-19 08:34:09 -0500 (Wed, 19 Dec 2007) +New Revision: 39483 + +Modified: +linktool/branches/sakai_2-4-x/SakaiSigning.jws +linktool/branches/sakai_2-4-x/linktool.txt +Log: +SAK-7720 + +--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)-- +--(0831:Wed,19 Dec 07:$)-- svn merge -r35678:35679 https://source.sakaiproject.org/svn/linktool/trunk/ . +C SakaiSigning.jws +--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)-- +--(0831:Wed,19 Dec 07:$)-- vi SakaiSigning.jws +--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)-- +--(0832:Wed,19 Dec 07:$)-- svn resolved !$ +svn resolved SakaiSigning.jws +Resolved conflicted state of 'SakaiSigning.jws' +--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)-- +--(0833:Wed,19 Dec 07:$)-- svn merge -r35984:35985 https://source.sakaiproject.org/svn/linktool/trunk/ . +C linktool.txt +--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)-- +--(0833:Wed,19 Dec 07:$)-- vi linktool.txt +--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)-- +--(0833:Wed,19 Dec 07:$)-- svn resolved !$ +svn resolved linktool.txt +Resolved conflicted state of 'linktool.txt' + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Wed Dec 19 03:40:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 03:40:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 03:40:33 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lBJ8eUeb012669; + Wed, 19 Dec 2007 03:40:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4768D8F9.46560.28112 ; + 19 Dec 2007 03:40:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2E90BA3F5A; + Wed, 19 Dec 2007 08:40:22 +0000 (GMT) +Message-ID: <200712190839.lBJ8dpwK003423@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 18 + for ; + Wed, 19 Dec 2007 08:39:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 72E7D38532 + for ; Wed, 19 Dec 2007 08:40:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ8dpqM003425 + for ; Wed, 19 Dec 2007 03:39:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ8dpwK003423 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 03:39:51 -0500 +Date: Wed, 19 Dec 2007 03:39:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39482 - in content/branches/sakai_2-5-x/content-tool/tool/src/webapp: dojo/dojo-release-0.9.0/dijit/themes/sakadojo dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 03:40:33 2007 +X-DSPAM-Confidence: 0.9876 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39482 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-19 03:39:33 -0500 (Wed, 19 Dec 2007) +New Revision: 39482 + +Modified: +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonEnabled.png +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +Log: +SAK-12442: Add/Action buttons too large: merge to 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Wed Dec 19 03:20:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 03:20:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 03:20:57 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by brazil.mail.umich.edu () with ESMTP id lBJ8KsMi016734; + Wed, 19 Dec 2007 03:20:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4768D456.AB600.9760 ; + 19 Dec 2007 03:20:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1DA539D492; + Wed, 19 Dec 2007 08:20:25 +0000 (GMT) +Message-ID: <200712190819.lBJ8JufT003389@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 191 + for ; + Wed, 19 Dec 2007 08:20:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D003038526 + for ; Wed, 19 Dec 2007 08:20:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ8JuWY003391 + for ; Wed, 19 Dec 2007 03:19:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ8JufT003389 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 03:19:56 -0500 +Date: Wed, 19 Dec 2007 03:19:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39481 - in search/branches/sakai_2-5-x/search-impl: impl/src/java/org/sakaiproject/search/indexer/impl impl/src/java/org/sakaiproject/search/journal/api impl/src/java/org/sakaiproject/search/journal/impl impl/src/test/org/sakaiproject/search/index/soaktest impl/src/test/org/sakaiproject/search/indexer/impl/test impl/src/test/org/sakaiproject/search/mock pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 03:20:57 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39481 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-19 03:18:29 -0500 (Wed, 19 Dec 2007) +New Revision: 39481 + +Added: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexCloser.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/api/ThreadBinder.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountIndexSearcher.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountMultiReader.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/OpenFilesTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/mock/MockSecurityService.java +Removed: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedClose.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexReaderClose.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexSearcherClose.java +Modified: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/ConcurrentSearchIndexBuilderWorkerImpl.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexListener.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/ConcurrentIndexManager.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/JournaledFSIndexStorage.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/LoadSaveSegmentListTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java +search/branches/sakai_2-5-x/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml +Log: +SAK-12460 search opens too many files: merge r39439 to 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Wed Dec 19 03:08:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 03:08:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 03:08:44 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lBJ88hWw009586; + Wed, 19 Dec 2007 03:08:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4768D185.A8BF9.2116 ; + 19 Dec 2007 03:08:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DB43E9D492; + Wed, 19 Dec 2007 08:08:30 +0000 (GMT) +Message-ID: <200712190807.lBJ87uFQ003337@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 146 + for ; + Wed, 19 Dec 2007 08:08:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8727D3851C + for ; Wed, 19 Dec 2007 08:08:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ87ude003339 + for ; Wed, 19 Dec 2007 03:07:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ87uFQ003337 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 03:07:56 -0500 +Date: Wed, 19 Dec 2007 03:07:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39480 - in search/branches/sakai_2-5-x/search-impl: impl/src/java/org/sakaiproject/search/indexer/impl impl/src/test/org/sakaiproject/search/index/soaktest impl/src/test/org/sakaiproject/search/indexer/impl/test impl/src/test/org/sakaiproject/search/mock pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 03:08:44 2007 +X-DSPAM-Confidence: 0.9838 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39480 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-19 03:07:14 -0500 (Wed, 19 Dec 2007) +New Revision: 39480 + +Added: +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java +Modified: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/TransactionalIndexWorkerTest.java +search/branches/sakai_2-5-x/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml +Log: +SAK-12459 ClassCastException indexing announcement: merge 39306, 39307, 39353, 39356 to 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Wed Dec 19 02:55:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 02:55:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 02:55:09 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id lBJ7t8rP008836; + Wed, 19 Dec 2007 02:55:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4768CE55.902BB.17198 ; + 19 Dec 2007 02:55:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B62A8A4020; + Wed, 19 Dec 2007 07:54:05 +0000 (GMT) +Message-ID: <200712190753.lBJ7rMdH003296@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 414 + for ; + Wed, 19 Dec 2007 07:53:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 115073850A + for ; Wed, 19 Dec 2007 07:53:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ7rMqp003298 + for ; Wed, 19 Dec 2007 02:53:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ7rMdH003296 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 02:53:22 -0500 +Date: Wed, 19 Dec 2007 02:53:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39479 - in util/branches/sakai_2-5-x: util-impl/impl/src/java/org/sakaiproject/thread_local/impl util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 02:55:09 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39479 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-19 02:52:57 -0500 (Wed, 19 Dec 2007) +New Revision: 39479 + +Modified: +util/branches/sakai_2-5-x/util-impl/impl/src/java/org/sakaiproject/thread_local/impl/ThreadLocalComponent.java +util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/PathHashUtil.java +Log: +SAK-12512 THreadLocalManager is not re-entrant on clean or unbind: merge r39432 to 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Wed Dec 19 02:40:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 19 Dec 2007 02:40:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 19 Dec 2007 02:40:51 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id lBJ7enK5008329; + Wed, 19 Dec 2007 02:40:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4768CAF4.1BA4D.23900 ; + 19 Dec 2007 02:40:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A512A442C; + Wed, 19 Dec 2007 07:40:25 +0000 (GMT) +Message-ID: <200712190740.lBJ7e2sK003275@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366 + for ; + Wed, 19 Dec 2007 07:40:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 63AF93850A + for ; Wed, 19 Dec 2007 07:40:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ7e3YZ003277 + for ; Wed, 19 Dec 2007 02:40:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ7e2sK003275 + for source@collab.sakaiproject.org; Wed, 19 Dec 2007 02:40:03 -0500 +Date: Wed, 19 Dec 2007 02:40:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39478 - chat/branches/sakai_2-5-x/chat-api/api/src/java/org/sakaiproject/chat2/model +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 19 02:40:51 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39478 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-19 02:39:54 -0500 (Wed, 19 Dec 2007) +New Revision: 39478 + +Modified: +chat/branches/sakai_2-5-x/chat-api/api/src/java/org/sakaiproject/chat2/model/ChatMessage.java +Log: +SAK-12448 PatternSyntaxException in chat strings: merge r39469 to 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Tue Dec 18 20:32:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 20:32:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 20:32:23 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by flawless.mail.umich.edu () with ESMTP id lBJ1WMdG017037; + Tue, 18 Dec 2007 20:32:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476874A1.EAADA.25458 ; + 18 Dec 2007 20:32:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DFF3DA3E8F; + Wed, 19 Dec 2007 00:22:10 +0000 (GMT) +Message-ID: <200712190033.lBJ0Xdt5003060@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 503 + for ; + Wed, 19 Dec 2007 00:20:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0C5413C283 + for ; Wed, 19 Dec 2007 00:33:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ0Xdsf003062 + for ; Tue, 18 Dec 2007 19:33:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ0Xdt5003060 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 19:33:39 -0500 +Date: Tue, 18 Dec 2007 19:33:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39476 - in bspace/assignment/post-2-4: assignment-bundles assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 20:32:23 2007 +X-DSPAM-Confidence: 0.6503 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39476 + +Author: louis@media.berkeley.edu +Date: 2007-12-18 19:33:33 -0500 (Tue, 18 Dec 2007) +New Revision: 39476 + +Modified: +bspace/assignment/post-2-4/assignment-bundles/assignment.properties +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +BSP-1375 Send to gradebook button unchecked in Assignment edit mode + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Tue Dec 18 17:42:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 17:42:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 17:42:09 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by godsend.mail.umich.edu () with ESMTP id lBIMg864026883; + Tue, 18 Dec 2007 17:42:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47684CB7.1854A.22852 ; + 18 Dec 2007 17:42:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EAE6BA3D7E; + Tue, 18 Dec 2007 22:41:58 +0000 (GMT) +Message-ID: <200712182241.lBIMfEaN002950@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789 + for ; + Tue, 18 Dec 2007 22:41:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5DC303C1EE + for ; Tue, 18 Dec 2007 22:41:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIMfEtk002952 + for ; Tue, 18 Dec 2007 17:41:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIMfEaN002950 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:41:14 -0500 +Date: Tue, 18 Dec 2007 17:41:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39474 - reference/trunk/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 17:42:09 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39474 + +Author: gsilver@umich.edu +Date: 2007-12-18 17:41:13 -0500 (Tue, 18 Dec 2007) +New Revision: 39474 + +Modified: +reference/trunk/library/src/webapp/skin/default/portal.css +Log: +SAK-12242 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 17:06:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 17:06:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 17:06:49 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lBIM6nKV021868; + Tue, 18 Dec 2007 17:06:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47684473.79901.20396 ; + 18 Dec 2007 17:06:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D1B4EA404D; + Tue, 18 Dec 2007 22:06:42 +0000 (GMT) +Message-ID: <200712182206.lBIM6E9U002909@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 803 + for ; + Tue, 18 Dec 2007 22:06:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E70623BE4F + for ; Tue, 18 Dec 2007 22:06:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIM6EZh002911 + for ; Tue, 18 Dec 2007 17:06:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIM6E9U002909 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:06:14 -0500 +Date: Tue, 18 Dec 2007 17:06:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39473 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 17:06:49 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39473 + +Author: cwen@iupui.edu +Date: 2007-12-18 17:06:13 -0500 (Tue, 18 Dec 2007) +New Revision: 39473 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for sak-12492. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 17:05:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 17:05:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 17:05:09 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id lBIM57PE025839; + Tue, 18 Dec 2007 17:05:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4768440D.845F6.9831 ; + 18 Dec 2007 17:05:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 24440A404D; + Tue, 18 Dec 2007 22:04:59 +0000 (GMT) +Message-ID: <200712182204.lBIM4W6D002891@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 500 + for ; + Tue, 18 Dec 2007 22:04:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6EC4E3BE4F + for ; Tue, 18 Dec 2007 22:04:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIM4WPI002893 + for ; Tue, 18 Dec 2007 17:04:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIM4W6D002891 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:04:32 -0500 +Date: Tue, 18 Dec 2007 17:04:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39472 - oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 17:05:09 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39472 + +Author: cwen@iupui.edu +Date: 2007-12-18 17:04:31 -0500 (Tue, 18 Dec 2007) +New Revision: 39472 + +Modified: +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +Log: +SAK-12492 => svn merge -r39470:39471 https://source.sakaiproject.org/svn/site-manage/branches/SAK-12433 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From tnguyen@iupui.edu Tue Dec 18 17:00:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 17:00:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 17:00:38 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lBIM0bb8019066; + Tue, 18 Dec 2007 17:00:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47684300.B27C1.5185 ; + 18 Dec 2007 17:00:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C902C9C14C; + Tue, 18 Dec 2007 22:00:30 +0000 (GMT) +Message-ID: <200712182200.lBIM01mO002877@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 484 + for ; + Tue, 18 Dec 2007 22:00:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 70F033BE4F + for ; Tue, 18 Dec 2007 22:00:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIM01mD002879 + for ; Tue, 18 Dec 2007 17:00:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIM01mO002877 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:00:01 -0500 +Date: Tue, 18 Dec 2007 17:00:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: tnguyen@iupui.edu +Subject: [sakai] svn commit: r39471 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 17:00:38 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39471 + +Author: tnguyen@iupui.edu +Date: 2007-12-18 17:00:00 -0500 (Tue, 18 Dec 2007) +New Revision: 39471 + +Modified: +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +Log: +SAK-12492 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 16:50:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:50:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:50:28 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by awakenings.mail.umich.edu () with ESMTP id lBILoRvE014500; + Tue, 18 Dec 2007 16:50:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4768409A.DC382.11733 ; + 18 Dec 2007 16:50:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7AD13A20AF; + Tue, 18 Dec 2007 21:50:19 +0000 (GMT) +Message-ID: <200712182149.lBILnoGo002833@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 820 + for ; + Tue, 18 Dec 2007 21:50:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C91BD3C25D + for ; Tue, 18 Dec 2007 21:50:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILno9U002835 + for ; Tue, 18 Dec 2007 16:49:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILnoGo002833 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:49:50 -0500 +Date: Tue, 18 Dec 2007 16:49:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39470 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:50:28 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39470 + +Author: cwen@iupui.edu +Date: 2007-12-18 16:49:48 -0500 (Tue, 18 Dec 2007) +New Revision: 39470 + +Modified: +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +Log: +revert back for r39464 => svn merge -r39464:39463 https://source.sakaiproject.org/svn/site-manage/branches/SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Tue Dec 18 16:44:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:44:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:44:12 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id lBILiBFg024764; + Tue, 18 Dec 2007 16:44:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47683F22.BD38A.18779 ; + 18 Dec 2007 16:44:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 76B049D867; + Tue, 18 Dec 2007 21:44:03 +0000 (GMT) +Message-ID: <200712182143.lBILhWfL002809@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42 + for ; + Tue, 18 Dec 2007 21:43:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4E5AE3C25D + for ; Tue, 18 Dec 2007 21:43:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILhWS1002811 + for ; Tue, 18 Dec 2007 16:43:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILhWfL002809 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:43:32 -0500 +Date: Tue, 18 Dec 2007 16:43:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39469 - chat/trunk/chat-api/api/src/java/org/sakaiproject/chat2/model +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:44:12 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39469 + +Author: bkirschn@umich.edu +Date: 2007-12-18 16:43:30 -0500 (Tue, 18 Dec 2007) +New Revision: 39469 + +Modified: +chat/trunk/chat-api/api/src/java/org/sakaiproject/chat2/model/ChatMessage.java +Log: +SAK-12448 - fix regular expression handling for parenthesis + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 16:37:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:37:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:37:57 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lBILbv8s008919; + Tue, 18 Dec 2007 16:37:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47683DAC.4EC96.20247 ; + 18 Dec 2007 16:37:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3BC8A370E; + Tue, 18 Dec 2007 21:37:50 +0000 (GMT) +Message-ID: <200712182137.lBILbFjE002765@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973 + for ; + Tue, 18 Dec 2007 21:37:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0BE0B3C25D + for ; Tue, 18 Dec 2007 21:37:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILbF2Q002767 + for ; Tue, 18 Dec 2007 16:37:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILbFjE002765 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:37:15 -0500 +Date: Tue, 18 Dec 2007 16:37:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39468 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:37:57 2007 +X-DSPAM-Confidence: 0.8425 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39468 + +Author: cwen@iupui.edu +Date: 2007-12-18 16:37:14 -0500 (Tue, 18 Dec 2007) +New Revision: 39468 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for SAK-12480. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 18 16:30:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:30:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:30:58 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lBILUvXh022882; + Tue, 18 Dec 2007 16:30:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47683C09.86F1E.3356 ; + 18 Dec 2007 16:30:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 15A7EA4067; + Tue, 18 Dec 2007 21:30:52 +0000 (GMT) +Message-ID: <200712182130.lBILUPDr002728@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 345 + for ; + Tue, 18 Dec 2007 21:30:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 029363C23D + for ; Tue, 18 Dec 2007 21:30:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILUPnW002730 + for ; Tue, 18 Dec 2007 16:30:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILUPDr002728 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:30:25 -0500 +Date: Tue, 18 Dec 2007 16:30:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39467 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:30:58 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39467 + +Author: chmaurer@iupui.edu +Date: 2007-12-18 16:30:23 -0500 (Tue, 18 Dec 2007) +New Revision: 39467 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +ONC-136 fixing syntax error + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From tnguyen@iupui.edu Tue Dec 18 16:27:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:27:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:27:26 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id lBILRPMY016653; + Tue, 18 Dec 2007 16:27:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47683B31.DF37C.10234 ; + 18 Dec 2007 16:27:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6BAACA4028; + Tue, 18 Dec 2007 21:27:16 +0000 (GMT) +Message-ID: <200712182126.lBILQlkr002711@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 590 + for ; + Tue, 18 Dec 2007 21:27:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CC84B3C239 + for ; Tue, 18 Dec 2007 21:26:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILQlh4002713 + for ; Tue, 18 Dec 2007 16:26:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILQlkr002711 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:26:47 -0500 +Date: Tue, 18 Dec 2007 16:26:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: tnguyen@iupui.edu +Subject: [sakai] svn commit: r39466 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:27:26 2007 +X-DSPAM-Confidence: 0.8464 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39466 + +Author: tnguyen@iupui.edu +Date: 2007-12-18 16:26:46 -0500 (Tue, 18 Dec 2007) +New Revision: 39466 + +Modified: +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSitesMigrate.vm +Log: +SAK-12480 - Fixed clicking 'back' button in replace will take user back to replace wizard. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 16:19:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:19:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:19:47 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by godsend.mail.umich.edu () with ESMTP id lBILJkHM021354; + Tue, 18 Dec 2007 16:19:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4768396C.4F07B.24859 ; + 18 Dec 2007 16:19:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C4B70A4062; + Tue, 18 Dec 2007 21:19:42 +0000 (GMT) +Message-ID: <200712182119.lBILJD8t002683@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 964 + for ; + Tue, 18 Dec 2007 21:19:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2F5B83C26D + for ; Tue, 18 Dec 2007 21:19:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILJDrK002685 + for ; Tue, 18 Dec 2007 16:19:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILJD8t002683 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:19:13 -0500 +Date: Tue, 18 Dec 2007 16:19:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39465 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:19:47 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39465 + +Author: cwen@iupui.edu +Date: 2007-12-18 16:19:10 -0500 (Tue, 18 Dec 2007) +New Revision: 39465 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for gradebook. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From tnguyen@iupui.edu Tue Dec 18 16:16:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:16:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:16:17 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by mission.mail.umich.edu () with ESMTP id lBILGGab016817; + Tue, 18 Dec 2007 16:16:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47683899.DD202.30854 ; + 18 Dec 2007 16:16:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 58369A3FF5; + Tue, 18 Dec 2007 21:16:12 +0000 (GMT) +Message-ID: <200712182115.lBILFX1c002658@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 350 + for ; + Tue, 18 Dec 2007 21:15:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A244D3C24B + for ; Tue, 18 Dec 2007 21:15:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILFXrI002660 + for ; Tue, 18 Dec 2007 16:15:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILFX1c002658 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:15:33 -0500 +Date: Tue, 18 Dec 2007 16:15:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: tnguyen@iupui.edu +Subject: [sakai] svn commit: r39464 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:16:17 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39464 + +Author: tnguyen@iupui.edu +Date: 2007-12-18 16:15:31 -0500 (Tue, 18 Dec 2007) +New Revision: 39464 + +Modified: +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +Log: +SAK-12492 - Updated text for the Import From Site Page title. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 16:14:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:14:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:14:03 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lBILE2LS015771; + Tue, 18 Dec 2007 16:14:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47683815.C52E7.13183 ; + 18 Dec 2007 16:14:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F882A402D; + Tue, 18 Dec 2007 21:14:00 +0000 (GMT) +Message-ID: <200712182113.lBILDW9D002646@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263 + for ; + Tue, 18 Dec 2007 21:13:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 44A163C25D + for ; Tue, 18 Dec 2007 21:13:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILDWlY002648 + for ; Tue, 18 Dec 2007 16:13:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILDW9D002646 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:13:32 -0500 +Date: Tue, 18 Dec 2007 16:13:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39463 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:14:03 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39463 + +Author: cwen@iupui.edu +Date: 2007-12-18 16:13:31 -0500 (Tue, 18 Dec 2007) +New Revision: 39463 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/addAssignment.jsp +Log: +SAK-12495 Joes fix for this one. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Dec 18 16:12:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:12:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:12:29 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lBILCSLx001616; + Tue, 18 Dec 2007 16:12:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476837B7.527AB.14961 ; + 18 Dec 2007 16:12:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 403BEA3F8A; + Tue, 18 Dec 2007 21:12:24 +0000 (GMT) +Message-ID: <200712182111.lBILBtvw002634@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 302 + for ; + Tue, 18 Dec 2007 21:12:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D07C03C24B + for ; Tue, 18 Dec 2007 21:12:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILBtEe002636 + for ; Tue, 18 Dec 2007 16:11:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILBtvw002634 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:11:55 -0500 +Date: Tue, 18 Dec 2007 16:11:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39462 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:12:29 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39462 + +Author: dlhaines@umich.edu +Date: 2007-12-18 16:11:54 -0500 (Tue, 18 Dec 2007) +New Revision: 39462 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: update content conversion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 16:09:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:09:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:09:13 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lBIL9D2o029644; + Tue, 18 Dec 2007 16:09:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 476836F3.C9058.5160 ; + 18 Dec 2007 16:09:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8CC18A3F9F; + Tue, 18 Dec 2007 21:09:01 +0000 (GMT) +Message-ID: <200712182108.lBIL8NgF002610@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807 + for ; + Tue, 18 Dec 2007 21:08:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E795A3C25B + for ; Tue, 18 Dec 2007 21:08:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIL8NGh002612 + for ; Tue, 18 Dec 2007 16:08:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIL8NgF002610 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:08:23 -0500 +Date: Tue, 18 Dec 2007 16:08:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39461 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:09:13 2007 +X-DSPAM-Confidence: 0.9802 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39461 + +Author: cwen@iupui.edu +Date: 2007-12-18 16:08:22 -0500 (Tue, 18 Dec 2007) +New Revision: 39461 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/spreadsheetUI.js +Log: +SAK-12491 => svn merge -r39381:39382 https://source.sakaiproject.org/svn/gradebook/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Dec 18 16:03:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:03:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:03:46 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by jacknife.mail.umich.edu () with ESMTP id lBIL3kFg029634; + Tue, 18 Dec 2007 16:03:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 476835A8.70BD.11819 ; + 18 Dec 2007 16:03:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 50EAEA3FFB; + Tue, 18 Dec 2007 21:03:37 +0000 (GMT) +Message-ID: <200712182103.lBIL35ac002544@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 923 + for ; + Tue, 18 Dec 2007 21:03:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 138563C13A + for ; Tue, 18 Dec 2007 21:03:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIL35JU002546 + for ; Tue, 18 Dec 2007 16:03:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIL35ac002544 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:03:05 -0500 +Date: Tue, 18 Dec 2007 16:03:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39460 - content/branches/SAK-12239/content-impl/pack +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:03:46 2007 +X-DSPAM-Confidence: 0.9867 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39460 + +Author: jimeng@umich.edu +Date: 2007-12-18 16:03:03 -0500 (Tue, 18 Dec 2007) +New Revision: 39460 + +Modified: +content/branches/SAK-12239/content-impl/pack/project.xml +Log: +SAK-12239 +Added db-storage and db-conversion jars to content-pack war so they will be available for conversion + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Dec 18 16:02:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 16:02:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 16:02:31 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by flawless.mail.umich.edu () with ESMTP id lBIL2UQq002290; + Tue, 18 Dec 2007 16:02:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47683555.33FB7.16132 ; + 18 Dec 2007 16:02:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3C4D9A4000; + Tue, 18 Dec 2007 21:02:15 +0000 (GMT) +Message-ID: <200712182101.lBIL1hCh002532@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 587 + for ; + Tue, 18 Dec 2007 21:02:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 16A5F3C13A + for ; Tue, 18 Dec 2007 21:01:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIL1iar002534 + for ; Tue, 18 Dec 2007 16:01:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIL1hCh002532 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:01:43 -0500 +Date: Tue, 18 Dec 2007 16:01:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39459 - in db/branches/SAK-12239: db-impl/pack db-util db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 16:02:31 2007 +X-DSPAM-Confidence: 0.9867 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39459 + +Author: jimeng@umich.edu +Date: 2007-12-18 16:01:37 -0500 (Tue, 18 Dec 2007) +New Revision: 39459 + +Modified: +db/branches/SAK-12239/db-impl/pack/project.xml +db/branches/SAK-12239/db-util/.classpath +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +Log: +SAK-12239 +Added commit to controller init method to deal with transaction. +deploying storage and conversion jars with pack +fixed classpath for eclipse + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 15:59:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 15:59:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 15:59:19 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lBIKxIKL000447; + Tue, 18 Dec 2007 15:59:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4768349F.CED61.546 ; + 18 Dec 2007 15:59:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F172BA3CB6; + Tue, 18 Dec 2007 20:59:11 +0000 (GMT) +Message-ID: <200712182058.lBIKwg9c002515@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 749 + for ; + Tue, 18 Dec 2007 20:58:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C1B9F3C13A + for ; Tue, 18 Dec 2007 20:58:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIKwgKS002517 + for ; Tue, 18 Dec 2007 15:58:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIKwg9c002515 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 15:58:42 -0500 +Date: Tue, 18 Dec 2007 15:58:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39458 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 15:59:19 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39458 + +Author: cwen@iupui.edu +Date: 2007-12-18 15:58:41 -0500 (Tue, 18 Dec 2007) +New Revision: 39458 + +Modified: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js +Log: +SAK-12506 => svn merge -r39453:39454 https://source.sakaiproject.org/svn/reference/branches/SAK-8152 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 15:47:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 15:47:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 15:47:50 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by godsend.mail.umich.edu () with ESMTP id lBIKlnEh000805; + Tue, 18 Dec 2007 15:47:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 476831EF.1FA68.9819 ; + 18 Dec 2007 15:47:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 823B6A3FE5; + Tue, 18 Dec 2007 20:47:47 +0000 (GMT) +Message-ID: <200712182047.lBIKl2g0002445@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971 + for ; + Tue, 18 Dec 2007 20:47:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 932223BE59 + for ; Tue, 18 Dec 2007 20:47:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIKl2ZX002447 + for ; Tue, 18 Dec 2007 15:47:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIKl2g0002445 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 15:47:02 -0500 +Date: Tue, 18 Dec 2007 15:47:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39457 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 15:47:50 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39457 + +Author: cwen@iupui.edu +Date: 2007-12-18 15:47:01 -0500 (Tue, 18 Dec 2007) +New Revision: 39457 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for Gregs roll back of student view. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Dec 18 15:46:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 15:46:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 15:46:20 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by sleepers.mail.umich.edu () with ESMTP id lBIKkK4w027445; + Tue, 18 Dec 2007 15:46:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4768318F.61E3.6994 ; + 18 Dec 2007 15:46:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BFCD3A3FDE; + Tue, 18 Dec 2007 20:46:11 +0000 (GMT) +Message-ID: <200712182045.lBIKjZ0b002433@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617 + for ; + Tue, 18 Dec 2007 20:45:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8EF883BE5C + for ; Tue, 18 Dec 2007 20:45:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIKjZZO002435 + for ; Tue, 18 Dec 2007 15:45:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIKjZ0b002433 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 15:45:35 -0500 +Date: Tue, 18 Dec 2007 15:45:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r39456 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 15:46:20 2007 +X-DSPAM-Confidence: 0.7568 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39456 + +Author: ajpoland@iupui.edu +Date: 2007-12-18 15:45:33 -0500 (Tue, 18 Dec 2007) +New Revision: 39456 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +ONC-136 when a new combined course membership is populated, add privacy records that correspond to the members' status in the child sites + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Dec 18 14:52:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 14:52:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 14:52:27 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by sleepers.mail.umich.edu () with ESMTP id lBIJqQqu028736; + Tue, 18 Dec 2007 14:52:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476824F4.CBC44.22113 ; + 18 Dec 2007 14:52:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 56BB0A39A8; + Tue, 18 Dec 2007 19:52:32 +0000 (GMT) +Message-ID: <200712181951.lBIJpnA9002336@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807 + for ; + Tue, 18 Dec 2007 19:52:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8D82B3C24A + for ; Tue, 18 Dec 2007 19:52:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIJpnnl002338 + for ; Tue, 18 Dec 2007 14:51:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIJpnA9002336 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 14:51:49 -0500 +Date: Tue, 18 Dec 2007 14:51:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39455 - podcasts/trunk/podcasts/src/java/org/sakaiproject/tool/podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 14:52:27 2007 +X-DSPAM-Confidence: 0.7557 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39455 + +Author: josrodri@iupui.edu +Date: 2007-12-18 14:51:48 -0500 (Tue, 18 Dec 2007) +New Revision: 39455 + +Modified: +podcasts/trunk/podcasts/src/java/org/sakaiproject/tool/podcasts/RSSPodfeedServlet.java +Log: +SAK-6404: changed events logged to podcast.read.public, podcast.read.site + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 13:10:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 13:10:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 13:10:18 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBIIAHWm005615; + Tue, 18 Dec 2007 13:10:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47680D01.5CFB7.25111 ; + 18 Dec 2007 13:10:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5344AA1DE6; + Tue, 18 Dec 2007 18:08:09 +0000 (GMT) +Message-ID: <200712181809.lBII9i5p002078@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 395 + for ; + Tue, 18 Dec 2007 18:07:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1212337AC9 + for ; Tue, 18 Dec 2007 18:09:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII9iKC002080 + for ; Tue, 18 Dec 2007 13:09:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII9i5p002078 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:09:44 -0500 +Date: Tue, 18 Dec 2007 13:09:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39453 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 13:10:18 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39453 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 13:09:40 -0500 (Tue, 18 Dec 2007) +New Revision: 39453 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 13:07:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 13:07:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 13:07:45 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by panther.mail.umich.edu () with ESMTP id lBII7jwZ003635; + Tue, 18 Dec 2007 13:07:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47680C5B.A55B0.23059 ; + 18 Dec 2007 13:07:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DC120538D9; + Tue, 18 Dec 2007 18:05:24 +0000 (GMT) +Message-ID: <200712181806.lBII6viP002047@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 311 + for ; + Tue, 18 Dec 2007 18:05:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0835037AC9 + for ; Tue, 18 Dec 2007 18:07:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII6v74002049 + for ; Tue, 18 Dec 2007 13:06:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII6viP002047 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:06:57 -0500 +Date: Tue, 18 Dec 2007 13:06:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39452 - in portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon: . handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 13:07:45 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39452 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 13:06:56 -0500 (Tue, 18 Dec 2007) +New Revision: 39452 + +Removed: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 13:06:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 13:06:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 13:06:16 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lBII6GsE008627; + Tue, 18 Dec 2007 13:06:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47680C0A.E1BF7.24125 ; + 18 Dec 2007 13:06:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6FA39A3445; + Tue, 18 Dec 2007 18:03:51 +0000 (GMT) +Message-ID: <200712181804.lBII4xJ6002035@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 858 + for ; + Tue, 18 Dec 2007 18:02:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A8E4E37AC9 + for ; Tue, 18 Dec 2007 18:05:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII4xKi002037 + for ; Tue, 18 Dec 2007 13:04:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII4xJ6002035 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:04:59 -0500 +Date: Tue, 18 Dec 2007 13:04:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39451 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 13:06:16 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39451 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 13:04:57 -0500 (Tue, 18 Dec 2007) +New Revision: 39451 + +Modified: +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 13:06:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 13:06:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 13:06:11 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by casino.mail.umich.edu () with ESMTP id lBII6BSk009592; + Tue, 18 Dec 2007 13:06:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47680C05.DF317.25765 ; + 18 Dec 2007 13:06:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DFF4FA3444; + Tue, 18 Dec 2007 18:03:46 +0000 (GMT) +Message-ID: <200712181802.lBII2IwI002011@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416 + for ; + Tue, 18 Dec 2007 18:02:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5A50C37AC9 + for ; Tue, 18 Dec 2007 18:02:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII2InC002013 + for ; Tue, 18 Dec 2007 13:02:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII2IwI002011 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:02:18 -0500 +Date: Tue, 18 Dec 2007 13:02:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39449 - in authz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz: api cover +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 13:06:11 2007 +X-DSPAM-Confidence: 0.8481 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39449 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 13:02:17 -0500 (Tue, 18 Dec 2007) +New Revision: 39449 + +Modified: +authz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +authz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 13:06:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 13:06:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 13:06:02 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lBII6261008467; + Tue, 18 Dec 2007 13:06:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47680BFD.865D7.19774 ; + 18 Dec 2007 13:05:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9A7A8A3CC6; + Tue, 18 Dec 2007 18:03:45 +0000 (GMT) +Message-ID: <200712181802.lBII2Lwe002023@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 22 + for ; + Tue, 18 Dec 2007 18:02:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C20FE37AC9 + for ; Tue, 18 Dec 2007 18:02:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII2Lx4002025 + for ; Tue, 18 Dec 2007 13:02:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII2Lwe002023 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:02:21 -0500 +Date: Tue, 18 Dec 2007 13:02:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39450 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 13:06:02 2007 +X-DSPAM-Confidence: 0.9833 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39450 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 13:02:20 -0500 (Tue, 18 Dec 2007) +New Revision: 39450 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Dec 18 13:05:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 13:05:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 13:05:37 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lBII5a4D021102; + Tue, 18 Dec 2007 13:05:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47680BE8.C02B3.31145 ; + 18 Dec 2007 13:05:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 61DCD538D9; + Tue, 18 Dec 2007 18:03:15 +0000 (GMT) +Message-ID: <200712181801.lBII1n0q001999@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 6 + for ; + Tue, 18 Dec 2007 18:01:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7475137AC9 + for ; Tue, 18 Dec 2007 18:01:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII1oAK002001 + for ; Tue, 18 Dec 2007 13:01:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII1n0q001999 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:01:49 -0500 +Date: Tue, 18 Dec 2007 13:01:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39448 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 13:05:37 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39448 + +Author: dlhaines@umich.edu +Date: 2007-12-18 13:01:48 -0500 (Tue, 18 Dec 2007) +New Revision: 39448 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: temporary build for ctload without content conversion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 12:53:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:53:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:53:15 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id lBIHrEDa009265; + Tue, 18 Dec 2007 12:53:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476808E7.3EE8E.28000 ; + 18 Dec 2007 12:52:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8AFBAA3C7C; + Tue, 18 Dec 2007 17:52:36 +0000 (GMT) +Message-ID: <200712181752.lBIHq4uQ001939@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960 + for ; + Tue, 18 Dec 2007 17:52:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1284237D14 + for ; Tue, 18 Dec 2007 17:52:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHq4YB001941 + for ; Tue, 18 Dec 2007 12:52:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHq4uQ001939 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:52:04 -0500 +Date: Tue, 18 Dec 2007 12:52:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39447 - site/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:53:15 2007 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39447 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 12:52:02 -0500 (Tue, 18 Dec 2007) +New Revision: 39447 + +Modified: +site/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 12:53:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:53:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:53:02 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lBIHr1ki023263; + Tue, 18 Dec 2007 12:53:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 476808E8.AC007.15883 ; + 18 Dec 2007 12:52:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BEAFDA3CB2; + Tue, 18 Dec 2007 17:52:36 +0000 (GMT) +Message-ID: <200712181752.lBIHq1qK001926@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 797 + for ; + Tue, 18 Dec 2007 17:52:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E4B4037D14 + for ; Tue, 18 Dec 2007 17:52:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHq1Y3001928 + for ; Tue, 18 Dec 2007 12:52:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHq1qK001926 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:52:01 -0500 +Date: Tue, 18 Dec 2007 12:52:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39446 - in site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site: api cover +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:53:02 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39446 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 12:51:58 -0500 (Tue, 18 Dec 2007) +New Revision: 39446 + +Modified: +site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 12:48:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:48:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:48:34 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id lBIHmXrN005640; + Tue, 18 Dec 2007 12:48:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 476807D9.D9175.3463 ; + 18 Dec 2007 12:48:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6D93AA38DF; + Tue, 18 Dec 2007 17:48:06 +0000 (GMT) +Message-ID: <200712181747.lBIHlJpm001842@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120 + for ; + Tue, 18 Dec 2007 17:47:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 18A3F37D14 + for ; Tue, 18 Dec 2007 17:47:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHlJsD001844 + for ; Tue, 18 Dec 2007 12:47:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHlJpm001842 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:47:19 -0500 +Date: Tue, 18 Dec 2007 12:47:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39445 - oncourse/trunk/src/reference/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:48:34 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39445 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 12:47:18 -0500 (Tue, 18 Dec 2007) +New Revision: 39445 + +Modified: +oncourse/trunk/src/reference/library/src/webapp/skin/default/portal.css +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 12:48:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:48:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:48:16 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by fan.mail.umich.edu () with ESMTP id lBIHmF7D012512; + Tue, 18 Dec 2007 12:48:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476807D7.3CE12.22612 ; + 18 Dec 2007 12:48:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9E9D7A3C7B; + Tue, 18 Dec 2007 17:48:04 +0000 (GMT) +Message-ID: <200712181747.lBIHlDPo001818@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 900 + for ; + Tue, 18 Dec 2007 17:47:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8CDD037D14 + for ; Tue, 18 Dec 2007 17:47:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHlDUp001820 + for ; Tue, 18 Dec 2007 12:47:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHlDPo001818 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:47:13 -0500 +Date: Tue, 18 Dec 2007 12:47:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39443 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:48:16 2007 +X-DSPAM-Confidence: 0.8468 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39443 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 12:47:12 -0500 (Tue, 18 Dec 2007) +New Revision: 39443 + +Modified: +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 12:48:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:48:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:48:16 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id lBIHmF0S005471; + Tue, 18 Dec 2007 12:48:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476807D6.19EC6.31264 ; + 18 Dec 2007 12:48:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 22092A38DE; + Tue, 18 Dec 2007 17:48:04 +0000 (GMT) +Message-ID: <200712181747.lBIHlH0I001830@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 572 + for ; + Tue, 18 Dec 2007 17:47:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 476DD37D14 + for ; Tue, 18 Dec 2007 17:47:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHlHea001832 + for ; Tue, 18 Dec 2007 12:47:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHlH0I001830 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:47:17 -0500 +Date: Tue, 18 Dec 2007 12:47:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39444 - in authz/branches/oncourse_opc_122007/authz-impl/impl/src: java/org/sakaiproject/authz/impl sql/oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:48:16 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39444 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 12:47:14 -0500 (Tue, 18 Dec 2007) +New Revision: 39444 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 12:47:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:47:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:47:34 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id lBIHlWoa031910; + Tue, 18 Dec 2007 12:47:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4768078B.A81D4.25263 ; + 18 Dec 2007 12:46:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E5A79A3C7C; + Tue, 18 Dec 2007 17:46:47 +0000 (GMT) +Message-ID: <200712181746.lBIHkESC001795@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506 + for ; + Tue, 18 Dec 2007 17:46:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AFA5737D14 + for ; Tue, 18 Dec 2007 17:46:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHkEGf001797 + for ; Tue, 18 Dec 2007 12:46:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHkESC001795 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:46:14 -0500 +Date: Tue, 18 Dec 2007 12:46:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39442 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:47:34 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39442 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 12:46:13 -0500 (Tue, 18 Dec 2007) +New Revision: 39442 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +roll back role swap from oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Tue Dec 18 12:44:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:44:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:44:05 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by awakenings.mail.umich.edu () with ESMTP id lBIHi4TN004095; + Tue, 18 Dec 2007 12:44:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 476806CA.DD25D.15538 ; + 18 Dec 2007 12:43:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 23AD89D32C; + Tue, 18 Dec 2007 17:43:39 +0000 (GMT) +Message-ID: <200712181743.lBIHh8AZ001778@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88 + for ; + Tue, 18 Dec 2007 17:43:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 87B88382C8 + for ; Tue, 18 Dec 2007 17:43:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHh87K001780 + for ; Tue, 18 Dec 2007 12:43:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHh8AZ001778 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:43:08 -0500 +Date: Tue, 18 Dec 2007 12:43:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39441 - reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:44:05 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39441 + +Author: gsilver@umich.edu +Date: 2007-12-18 12:43:06 -0500 (Tue, 18 Dec 2007) +New Revision: 39441 + +Modified: +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css +Log: +SAK-12442 +http://jira.sakaiproject.org/jira/browse/SAK-12442 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Dec 18 12:43:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:43:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:43:58 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lBIHhw2O004012; + Tue, 18 Dec 2007 12:43:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476806C2.164C6.26791 ; + 18 Dec 2007 12:43:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8FF54538D9; + Tue, 18 Dec 2007 17:43:29 +0000 (GMT) +Message-ID: <200712181742.lBIHgrHj001735@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 16 + for ; + Tue, 18 Dec 2007 17:43:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 39D3B382C8 + for ; Tue, 18 Dec 2007 17:43:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHgr5k001737 + for ; Tue, 18 Dec 2007 12:42:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHgrHj001735 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:42:53 -0500 +Date: Tue, 18 Dec 2007 12:42:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39439 - in search/trunk/search-impl: impl/src/java/org/sakaiproject/search/indexer/impl impl/src/java/org/sakaiproject/search/journal/api impl/src/java/org/sakaiproject/search/journal/impl impl/src/test/org/sakaiproject/search/index/soaktest impl/src/test/org/sakaiproject/search/indexer/impl/test impl/src/test/org/sakaiproject/search/mock pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:43:58 2007 +X-DSPAM-Confidence: 0.8507 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39439 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-18 12:41:56 -0500 (Tue, 18 Dec 2007) +New Revision: 39439 + +Added: +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexCloser.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/api/ThreadBinder.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountIndexSearcher.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountMultiReader.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/OpenFilesTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock/MockSecurityService.java +Removed: +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedClose.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexReaderClose.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexSearcherClose.java +Modified: +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/ConcurrentSearchIndexBuilderWorkerImpl.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexListener.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/ConcurrentIndexManager.java +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/JournaledFSIndexStorage.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/LoadSaveSegmentListTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java +search/trunk/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml +Log: +SAK-12460 + +Fixed +Change the index close mechnism to reference count taking into account parent child relationships between indexreaders and +index searchers, and to bind to the the request thread to ensure that files are no closed when active, and also are closed +as soon as possible. + +Ths has been tested with the unit test OpenFilesTest which can be run while using lsof to verify the list of open files. +I have also tested this using a sakai instaance running in soak mode with apache benchmark hitting the search tool with batches of 6000 +hits on 5 threads. + +There is a related SAK on this commit (see JIRA) that fixes a ConcurrentModificationException in THreadLocalComponent + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 12:43:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:43:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:43:41 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by fan.mail.umich.edu () with ESMTP id lBIHhe5j010293; + Tue, 18 Dec 2007 12:43:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 476806C6.9FC1D.26483 ; + 18 Dec 2007 12:43:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7B05A9C29D; + Tue, 18 Dec 2007 17:43:34 +0000 (GMT) +Message-ID: <200712181743.lBIHh2Ap001766@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 48 + for ; + Tue, 18 Dec 2007 17:43:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A7971382C8 + for ; Tue, 18 Dec 2007 17:43:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHh2rv001768 + for ; Tue, 18 Dec 2007 12:43:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHh2Ap001766 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:43:02 -0500 +Date: Tue, 18 Dec 2007 12:43:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39440 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:43:41 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39440 + +Author: cwen@iupui.edu +Date: 2007-12-18 12:43:01 -0500 (Tue, 18 Dec 2007) +New Revision: 39440 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for new gradebook branch.oncourse_2-4-2. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 12:30:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:30:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:30:51 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by flawless.mail.umich.edu () with ESMTP id lBIHUpf7010860; + Tue, 18 Dec 2007 12:30:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 476803C6.6D05E.4996 ; + 18 Dec 2007 12:30:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4D78FA3B70; + Tue, 18 Dec 2007 17:30:43 +0000 (GMT) +Message-ID: <200712181730.lBIHU1jO001651@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 936 + for ; + Tue, 18 Dec 2007 17:30:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ECB9437AC4 + for ; Tue, 18 Dec 2007 17:30:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHU12c001653 + for ; Tue, 18 Dec 2007 12:30:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHU1jO001651 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:30:01 -0500 +Date: Tue, 18 Dec 2007 12:30:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39438 - oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:30:51 2007 +X-DSPAM-Confidence: 0.9876 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39438 + +Author: cwen@iupui.edu +Date: 2007-12-18 12:29:58 -0500 (Tue, 18 Dec 2007) +New Revision: 39438 + +Modified: +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +merge in r39433 for Chris java compilation fix for Andrew pricacy patch. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Tue Dec 18 12:23:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:23:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:23:24 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by panther.mail.umich.edu () with ESMTP id lBIHNOQs010150; + Tue, 18 Dec 2007 12:23:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47680206.17DA9.11978 ; + 18 Dec 2007 12:23:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8CFD7A3AA4; + Tue, 18 Dec 2007 17:23:18 +0000 (GMT) +Message-ID: <200712181722.lBIHMgmD001608@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1009 + for ; + Tue, 18 Dec 2007 17:22:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4B8133BFF5 + for ; Tue, 18 Dec 2007 17:22:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHMg6D001610 + for ; Tue, 18 Dec 2007 12:22:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHMgmD001608 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:22:42 -0500 +Date: Tue, 18 Dec 2007 12:22:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r39437 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:23:24 2007 +X-DSPAM-Confidence: 0.7538 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39437 + +Author: lance@indiana.edu +Date: 2007-12-18 12:22:40 -0500 (Tue, 18 Dec 2007) +New Revision: 39437 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf +Log: +Remove all ungraded stuff from jsp + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Tue Dec 18 12:18:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:18:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:18:50 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by godsend.mail.umich.edu () with ESMTP id lBIHInBd017201; + Tue, 18 Dec 2007 12:18:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476800F0.A8BCF.8028 ; + 18 Dec 2007 12:18:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 400A5A3B68; + Tue, 18 Dec 2007 17:18:30 +0000 (GMT) +Message-ID: <200712181717.lBIHHxZL001589@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1003 + for ; + Tue, 18 Dec 2007 17:18:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F11033BFE4 + for ; Tue, 18 Dec 2007 17:18:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHHxox001591 + for ; Tue, 18 Dec 2007 12:17:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHHxZL001589 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:17:59 -0500 +Date: Tue, 18 Dec 2007 12:17:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r39436 - in gradebook/branches/oncourse_2-4-2/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:18:50 2007 +X-DSPAM-Confidence: 0.7611 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39436 + +Author: lance@indiana.edu +Date: 2007-12-18 12:17:57 -0500 (Tue, 18 Dec 2007) +New Revision: 39436 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js +Log: +svn merge -c 39377 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ . +cp app/ui/src/webapp/inc/bulkNewItems.jspf.merge-right.r39377 app/ui/src/webapp/inc/bulkNewItems.jspf +svn resolved app/ui/src/webapp/inc/bulkNewItems.jspf +svn log -r 39377 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ .------------------------------------------------------------------------ +r39377 | cwen@iupui.edu | 2007-12-17 12:29:24 -0500 (Mon, 17 Dec 2007) | 1 line + +SAK-12466 svn merge -r39334:39335 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Dec 18 12:17:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:17:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:17:23 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by panther.mail.umich.edu () with ESMTP id lBIHHM5B006585; + Tue, 18 Dec 2007 12:17:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4768009B.EDB1.20653 ; + 18 Dec 2007 12:17:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DE11AA3BB1; + Tue, 18 Dec 2007 17:17:14 +0000 (GMT) +Message-ID: <200712181716.lBIHGW3r001577@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 359 + for ; + Tue, 18 Dec 2007 17:16:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 414333BFDF + for ; Tue, 18 Dec 2007 17:16:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHGWmj001579 + for ; Tue, 18 Dec 2007 12:16:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHGW3r001577 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:16:32 -0500 +Date: Tue, 18 Dec 2007 12:16:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39435 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:17:23 2007 +X-DSPAM-Confidence: 0.8486 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39435 + +Author: dlhaines@umich.edu +Date: 2007-12-18 12:16:29 -0500 (Tue, 18 Dec 2007) +New Revision: 39435 + +Added: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties +Log: +CTools: add configuration for assignments without new content. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Tue Dec 18 12:07:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:07:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:07:31 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by panther.mail.umich.edu () with ESMTP id lBIH7VkD001141; + Tue, 18 Dec 2007 12:07:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4767FE48.65F65.19558 ; + 18 Dec 2007 12:07:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B85B2A3B34; + Tue, 18 Dec 2007 17:07:17 +0000 (GMT) +Message-ID: <200712181706.lBIH6e0t001562@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 161 + for ; + Tue, 18 Dec 2007 17:06:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 80EF9238A0 + for ; Tue, 18 Dec 2007 17:06:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH6erW001564 + for ; Tue, 18 Dec 2007 12:06:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH6e0t001562 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:06:40 -0500 +Date: Tue, 18 Dec 2007 12:06:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r39434 - in gradebook/branches/oncourse_2-4-2/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:07:31 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39434 + +Author: lance@indiana.edu +Date: 2007-12-18 12:06:38 -0500 (Tue, 18 Dec 2007) +New Revision: 39434 + +Modified: +gradebook/branches/oncourse_2-4-2/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java +gradebook/branches/oncourse_2-4-2/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/branches/oncourse_2-4-2/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java +gradebook/branches/oncourse_2-4-2/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +gradebook/branches/oncourse_2-4-2/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java +Log: +svn merge -r 39318:39325 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ . +svn log -r 39319:39325 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ +------------------------------------------------------------------------ +r39319 | cwen@iupui.edu | 2007-12-15 14:51:16 -0500 (Sat, 15 Dec 2007) | 1 line + +SAK-12433 => svn merge -r39311:39312 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39321 | cwen@iupui.edu | 2007-12-15 17:10:25 -0500 (Sat, 15 Dec 2007) | 1 line + +SAK-12433 +------------------------------------------------------------------------ +r39323 | cwen@iupui.edu | 2007-12-15 17:45:57 -0500 (Sat, 15 Dec 2007) | 1 line + +SAK-12433 +------------------------------------------------------------------------ +r39325 | cwen@iupui.edu | 2007-12-15 17:57:40 -0500 (Sat, 15 Dec 2007) | 1 line + +sak-12433 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 18 12:05:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:05:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:05:05 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by chaos.mail.umich.edu () with ESMTP id lBIH54pc023162; + Tue, 18 Dec 2007 12:05:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4767FDB1.FDFB.4187 ; + 18 Dec 2007 12:04:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DACB6A3B24; + Tue, 18 Dec 2007 17:04:41 +0000 (GMT) +Message-ID: <200712181704.lBIH4AW4001543@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293 + for ; + Tue, 18 Dec 2007 17:04:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7CEE1238A0 + for ; Tue, 18 Dec 2007 17:04:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH4AoH001545 + for ; Tue, 18 Dec 2007 12:04:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH4AW4001543 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:04:10 -0500 +Date: Tue, 18 Dec 2007 12:04:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39433 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:05:05 2007 +X-DSPAM-Confidence: 0.9800 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39433 + +Author: chmaurer@iupui.edu +Date: 2007-12-18 12:04:07 -0500 (Tue, 18 Dec 2007) +New Revision: 39433 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +ONC-136 fixing a missing bracket + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Dec 18 12:03:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:03:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:03:33 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lBIH3W8T009897; + Tue, 18 Dec 2007 12:03:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4767FD5E.38725.22807 ; + 18 Dec 2007 12:03:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9395DA3A84; + Tue, 18 Dec 2007 17:03:23 +0000 (GMT) +Message-ID: <200712181703.lBIH332n001519@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 532 + for ; + Tue, 18 Dec 2007 17:03:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3EE82238A0 + for ; Tue, 18 Dec 2007 17:03:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH33ok001521 + for ; Tue, 18 Dec 2007 12:03:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH332n001519 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:03:03 -0500 +Date: Tue, 18 Dec 2007 12:03:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39432 - util/trunk/util-impl/impl/src/java/org/sakaiproject/thread_local/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:03:33 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39432 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-18 12:02:58 -0500 (Tue, 18 Dec 2007) +New Revision: 39432 + +Modified: +util/trunk/util-impl/impl/src/java/org/sakaiproject/thread_local/impl/ThreadLocalComponent.java +Log: +SAK-12512 + +Fixed by taking a copy of the values + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Tue Dec 18 12:01:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 12:01:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 12:01:08 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by sleepers.mail.umich.edu () with ESMTP id lBIH17PC028600; + Tue, 18 Dec 2007 12:01:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4767FCCD.C2204.20331 ; + 18 Dec 2007 12:01:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EBA27A3AFA; + Tue, 18 Dec 2007 17:00:46 +0000 (GMT) +Message-ID: <200712181700.lBIH0OH7001505@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 781 + for ; + Tue, 18 Dec 2007 17:00:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 23080238A0 + for ; Tue, 18 Dec 2007 17:00:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH0ONY001507 + for ; Tue, 18 Dec 2007 12:00:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH0OH7001505 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:00:24 -0500 +Date: Tue, 18 Dec 2007 12:00:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r39431 - in gradebook/branches/oncourse_2-4-2/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 12:01:08 2007 +X-DSPAM-Confidence: 0.7554 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39431 + +Author: lance@indiana.edu +Date: 2007-12-18 12:00:22 -0500 (Tue, 18 Dec 2007) +New Revision: 39431 + +Modified: +gradebook/branches/oncourse_2-4-2/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/addAssignment.jsp +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js +Log: +svn merge -c 39113 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ . + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Tue Dec 18 11:41:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 11:41:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 11:41:26 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by mission.mail.umich.edu () with ESMTP id lBIGfPxi017880; + Tue, 18 Dec 2007 11:41:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4767F82D.20344.26597 ; + 18 Dec 2007 11:41:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE5F4A2B9D; + Tue, 18 Dec 2007 16:41:14 +0000 (GMT) +Message-ID: <200712181640.lBIGelu5001477@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 300 + for ; + Tue, 18 Dec 2007 16:40:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 89F253BFC8 + for ; Tue, 18 Dec 2007 16:40:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIGelTY001479 + for ; Tue, 18 Dec 2007 11:40:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIGelu5001477 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:40:47 -0500 +Date: Tue, 18 Dec 2007 11:40:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r39430 - gradebook/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 11:41:26 2007 +X-DSPAM-Confidence: 0.6955 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39430 + +Author: lance@indiana.edu +Date: 2007-12-18 11:40:46 -0500 (Tue, 18 Dec 2007) +New Revision: 39430 + +Added: +gradebook/branches/oncourse_2-4-2/ +Log: +create new branch for 12/30/2007 release - roll back non-calculating items + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 11:25:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 11:25:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 11:25:56 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id lBIGPtl0006431; + Tue, 18 Dec 2007 11:25:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4767F48B.C106.31718 ; + 18 Dec 2007 11:25:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8FAFEA38EE; + Tue, 18 Dec 2007 16:25:42 +0000 (GMT) +Message-ID: <200712181625.lBIGP9a7001435@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 106 + for ; + Tue, 18 Dec 2007 16:25:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C2A7937DF1 + for ; Tue, 18 Dec 2007 16:25:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIGP91S001437 + for ; Tue, 18 Dec 2007 11:25:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIGP9a7001435 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:25:09 -0500 +Date: Tue, 18 Dec 2007 11:25:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39429 - in oncourse/trunk/src/site-manage/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 11:25:56 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39429 + +Author: cwen@iupui.edu +Date: 2007-12-18 11:25:07 -0500 (Tue, 18 Dec 2007) +New Revision: 39429 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +roll back SiteAction again for stg. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 11:15:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 11:15:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 11:15:17 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by score.mail.umich.edu () with ESMTP id lBIGFHLr025663; + Tue, 18 Dec 2007 11:15:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4767F209.BA165.14191 ; + 18 Dec 2007 11:15:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F3094A3A34; + Tue, 18 Dec 2007 16:14:59 +0000 (GMT) +Message-ID: <200712181614.lBIGEaYr001405@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540 + for ; + Tue, 18 Dec 2007 16:14:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EAA1D2E030 + for ; Tue, 18 Dec 2007 16:14:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIGEaXH001407 + for ; Tue, 18 Dec 2007 11:14:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIGEaYr001405 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:14:36 -0500 +Date: Tue, 18 Dec 2007 11:14:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39428 - in oncourse/branches/site-manage-opc-1222007: . site-manage-tool site-manage-tool/tool site-manage-tool/tool/src site-manage-tool/tool/src/bundle site-manage-tool/tool/src/java site-manage-tool/tool/src/java/org site-manage-tool/tool/src/java/org/sakaiproject site-manage-tool/tool/src/java/org/sakaiproject/admin site-manage-tool/tool/src/java/org/sakaiproject/admin/tool site-manage-tool/tool/src/java/org/sakaiproject/site site-manage-tool/tool/src/java/org/sakaiproject/site/tool site-manage-tool/tool/src/webapp site-manage-tool/tool/src/webapp/WEB-INF site-manage-tool/tool/src/webapp/tools site-manage-tool/tool/src/webapp/vm site-manage-tool/tool/src/webapp/vm/admin site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 11:15:17 2007 +X-DSPAM-Confidence: 0.7558 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39428 + +Author: cwen@iupui.edu +Date: 2007-12-18 11:14:32 -0500 (Tue, 18 Dec 2007) +New Revision: 39428 + +Added: +oncourse/branches/site-manage-opc-1222007/site-manage-tool/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/project.xml +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/admin.properties +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/tool/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/tool/DelegationAction.java +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/tool/ITTRResetAction.java +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/WEB-INF/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/WEB-INF/web.xml +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/combinedRedirect.jsp +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/oncourse_ittr_reset.xml +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/sakai.delegation.xml +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/sakai.siteinfo.xml +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/sakai.sitesetup.xml +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/admin/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/admin/oncourse_ittr_reset.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/admin/sakai_delegation_list.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/ +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-notification.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-combine-choose-name.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-combine-confirm.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-combine-rosters.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-separate-rosters.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfo.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-sitemanage-addParticipant.vm +Log: +add site-manage tool overlay to branch. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 11:08:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 11:08:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 11:08:59 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lBIG8w5Y010863; + Tue, 18 Dec 2007 11:08:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4767F082.82F6B.7770 ; + 18 Dec 2007 11:08:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B2B1DA3211; + Tue, 18 Dec 2007 16:08:33 +0000 (GMT) +Message-ID: <200712181608.lBIG83p7001371@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529 + for ; + Tue, 18 Dec 2007 16:08:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDC752E030 + for ; Tue, 18 Dec 2007 16:08:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIG838P001373 + for ; Tue, 18 Dec 2007 11:08:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIG83p7001371 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:08:03 -0500 +Date: Tue, 18 Dec 2007 11:08:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39427 - oncourse/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 11:08:59 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39427 + +Author: cwen@iupui.edu +Date: 2007-12-18 11:08:02 -0500 (Tue, 18 Dec 2007) +New Revision: 39427 + +Added: +oncourse/branches/site-manage-opc-1222007/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Dec 18 10:32:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 10:32:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 10:32:17 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by chaos.mail.umich.edu () with ESMTP id lBIFWGk0002812; + Tue, 18 Dec 2007 10:32:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4767E7ED.13D04.3404 ; + 18 Dec 2007 10:32:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CB63CA38C9; + Tue, 18 Dec 2007 15:31:04 +0000 (GMT) +Message-ID: <200712181530.lBIFUTwS001316@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 762 + for ; + Tue, 18 Dec 2007 15:30:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6019737D23 + for ; Tue, 18 Dec 2007 15:30:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIFUTZG001318 + for ; Tue, 18 Dec 2007 10:30:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIFUTwS001316 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 10:30:29 -0500 +Date: Tue, 18 Dec 2007 10:30:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r39426 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 10:32:17 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39426 + +Author: ajpoland@iupui.edu +Date: 2007-12-18 10:30:26 -0500 (Tue, 18 Dec 2007) +New Revision: 39426 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +ONC-136 when a new combined course membership is populated, add privacy records that correspond to the members' status in the child sites + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 18 09:58:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 09:58:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 09:58:37 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id lBIEwaOl018622; + Tue, 18 Dec 2007 09:58:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4767E016.1762D.11636 ; + 18 Dec 2007 09:58:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 876629B639; + Tue, 18 Dec 2007 14:58:34 +0000 (GMT) +Message-ID: <200712181458.lBIEw5EO001280@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 504 + for ; + Tue, 18 Dec 2007 14:58:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6715D347BC + for ; Tue, 18 Dec 2007 14:58:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIEw5Vx001282 + for ; Tue, 18 Dec 2007 09:58:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIEw5EO001280 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:58:05 -0500 +Date: Tue, 18 Dec 2007 09:58:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39425 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 09:58:37 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39425 + +Author: cwen@iupui.edu +Date: 2007-12-18 09:58:04 -0500 (Tue, 18 Dec 2007) +New Revision: 39425 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix problems with combined roster for SiteAction. merging had problems for impor/export for SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 09:30:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 09:30:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 09:30:37 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lBIEUaYg025519; + Tue, 18 Dec 2007 09:30:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4767D97A.E3EDF.12237 ; + 18 Dec 2007 09:30:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 18F2DA3795; + Tue, 18 Dec 2007 14:30:30 +0000 (GMT) +Message-ID: <200712181429.lBIETrXa001250@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 190 + for ; + Tue, 18 Dec 2007 14:30:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 42AFB3BEAE + for ; Tue, 18 Dec 2007 14:30:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIETrOW001252 + for ; Tue, 18 Dec 2007 09:29:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIETrXa001250 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:29:53 -0500 +Date: Tue, 18 Dec 2007 09:29:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39424 - oncourse/trunk/src/calendar/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 09:30:37 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39424 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 09:29:52 -0500 (Tue, 18 Dec 2007) +New Revision: 39424 + +Modified: +oncourse/trunk/src/calendar/calendar-tool/tool/src/bundle/calendar.properties +Log: +ONC-272 - removing properties from oncourse overlay + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 18 09:19:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 09:19:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 09:19:42 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by panther.mail.umich.edu () with ESMTP id lBIEJf0x028850; + Tue, 18 Dec 2007 09:19:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4767D6F6.B8950.5531 ; + 18 Dec 2007 09:19:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 67E87A3768; + Tue, 18 Dec 2007 14:19:40 +0000 (GMT) +Message-ID: <200712181419.lBIEJ2aD001222@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006 + for ; + Tue, 18 Dec 2007 14:19:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 85D893BF0F + for ; Tue, 18 Dec 2007 14:19:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIEJ3Or001224 + for ; Tue, 18 Dec 2007 09:19:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIEJ2aD001222 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:19:02 -0500 +Date: Tue, 18 Dec 2007 09:19:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39423 - in calendar/branches/oncourse_opc_122007/calendar-tool/tool/src: java/org/sakaiproject/calendar/tool webapp/vm/calendar +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 09:19:42 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39423 + +Author: gjthomas@iupui.edu +Date: 2007-12-18 09:19:00 -0500 (Tue, 18 Dec 2007) +New Revision: 39423 + +Modified: +calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm +Log: +ONC-272 - remove attachments from calendar + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 09:08:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 09:08:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 09:08:11 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id lBIE8Amt007048; + Tue, 18 Dec 2007 09:08:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4767D444.8490D.12185 ; + 18 Dec 2007 09:08:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 568E79AA61; + Tue, 18 Dec 2007 14:08:13 +0000 (GMT) +Message-ID: <200712181407.lBIE7Ws5001210@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807 + for ; + Tue, 18 Dec 2007 14:07:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 33FCA327C3 + for ; Tue, 18 Dec 2007 14:07:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIE7WTH001212 + for ; Tue, 18 Dec 2007 09:07:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIE7Ws5001210 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:07:32 -0500 +Date: Tue, 18 Dec 2007 09:07:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39422 - event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 09:08:11 2007 +X-DSPAM-Confidence: 0.9805 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39422 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 09:07:24 -0500 (Tue, 18 Dec 2007) +New Revision: 39422 + +Modified: +event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceSqlDefault.java +Log: +SAK-6216 Add SESSION_HOSTNAME another place it needs to be. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 18 08:42:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 08:42:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 08:42:24 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id lBIDgLTO001399; + Tue, 18 Dec 2007 08:42:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4767CE30.BF11C.25900 ; + 18 Dec 2007 08:42:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 184D4A36ED; + Tue, 18 Dec 2007 13:41:41 +0000 (GMT) +Message-ID: <200712181341.lBIDf5GJ001161@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 159 + for ; + Tue, 18 Dec 2007 13:41:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0EE583BA49 + for ; Tue, 18 Dec 2007 13:41:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIDf54X001163 + for ; Tue, 18 Dec 2007 08:41:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIDf5GJ001161 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 08:41:05 -0500 +Date: Tue, 18 Dec 2007 08:41:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39421 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 08:42:24 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39421 + +Author: chmaurer@iupui.edu +Date: 2007-12-18 08:41:00 -0500 (Tue, 18 Dec 2007) +New Revision: 39421 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-10215 +Adding some conversion to fix chat tool titles. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 18 08:35:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 08:35:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 08:35:44 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id lBIDZhsg008728; + Tue, 18 Dec 2007 08:35:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4767CCA6.844C.17535 ; + 18 Dec 2007 08:35:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BBA5FA36D0; + Tue, 18 Dec 2007 13:35:25 +0000 (GMT) +Message-ID: <200712181334.lBIDYwce001108@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 753 + for ; + Tue, 18 Dec 2007 13:34:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E3493BA49 + for ; Tue, 18 Dec 2007 13:35:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIDYw7Z001110 + for ; Tue, 18 Dec 2007 08:34:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIDYwce001108 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 08:34:58 -0500 +Date: Tue, 18 Dec 2007 08:34:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39420 - reference/branches/sakai_2-4-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 08:35:44 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39420 + +Author: chmaurer@iupui.edu +Date: 2007-12-18 08:34:55 -0500 (Tue, 18 Dec 2007) +New Revision: 39420 + +Added: +reference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_mysql_conversion_004.sql +reference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_oracle_conversion_004.sql +Log: +SAK-10215 +Adding some conversion to fix chat tool titles. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 18 08:18:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 08:18:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 08:18:36 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by fan.mail.umich.edu () with ESMTP id lBIDIZ5w003762; + Tue, 18 Dec 2007 08:18:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4767C8A4.DF83C.8624 ; + 18 Dec 2007 08:18:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 345E0A34DA; + Tue, 18 Dec 2007 13:18:19 +0000 (GMT) +Message-ID: <200712181317.lBIDHrd7001089@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 345 + for ; + Tue, 18 Dec 2007 13:17:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B12CF3BEB0 + for ; Tue, 18 Dec 2007 13:18:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIDHrYt001091 + for ; Tue, 18 Dec 2007 08:17:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIDHrd7001089 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 08:17:53 -0500 +Date: Tue, 18 Dec 2007 08:17:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39419 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 08:18:36 2007 +X-DSPAM-Confidence: 0.8432 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39419 + +Author: chmaurer@iupui.edu +Date: 2007-12-18 08:17:50 -0500 (Tue, 18 Dec 2007) +New Revision: 39419 + +Added: +content/branches/SAK-12511/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 07:49:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 07:49:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 07:49:52 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by chaos.mail.umich.edu () with ESMTP id lBICnpSV031482; + Tue, 18 Dec 2007 07:49:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4767C1EA.31549.16814 ; + 18 Dec 2007 07:49:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8FE96A35BE; + Tue, 18 Dec 2007 12:46:25 +0000 (GMT) +Message-ID: <200712181249.lBICnAxx001000@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 580 + for ; + Tue, 18 Dec 2007 12:45:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6FDFC3BECA + for ; Tue, 18 Dec 2007 12:49:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICnAXG001002 + for ; Tue, 18 Dec 2007 07:49:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICnAxx001000 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:49:10 -0500 +Date: Tue, 18 Dec 2007 07:49:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39418 - message/branches/sakai_2-5-x/message-impl/impl/src/java/org/sakaiproject/message/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 07:49:52 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39418 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 07:49:02 -0500 (Tue, 18 Dec 2007) +New Revision: 39418 + +Modified: +message/branches/sakai_2-5-x/message-impl/impl/src/java/org/sakaiproject/message/impl/BaseMessageService.java +Log: +SAK-12447 Null results from cache: merge into 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 07:49:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 07:49:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 07:49:28 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by awakenings.mail.umich.edu () with ESMTP id lBICnRh7019071; + Tue, 18 Dec 2007 07:49:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4767C1D1.D0360.4689 ; + 18 Dec 2007 07:49:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AF49FA35C4; + Tue, 18 Dec 2007 12:45:51 +0000 (GMT) +Message-ID: <200712181248.lBICmrLP000988@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 815 + for ; + Tue, 18 Dec 2007 12:45:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8B6313BECA + for ; Tue, 18 Dec 2007 12:49:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICmrp1000990 + for ; Tue, 18 Dec 2007 07:48:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICmrLP000988 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:48:53 -0500 +Date: Tue, 18 Dec 2007 07:48:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39417 - calendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 07:49:28 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39417 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 07:48:43 -0500 (Tue, 18 Dec 2007) +New Revision: 39417 + +Modified: +calendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +Log: +SAK-12447 Null results from cache: merge into 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 07:49:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 07:49:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 07:49:19 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lBICnJxL019027; + Tue, 18 Dec 2007 07:49:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4767C1C7.43923.15942 ; + 18 Dec 2007 07:49:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A38BAA35C1; + Tue, 18 Dec 2007 12:45:33 +0000 (GMT) +Message-ID: <200712181248.lBICmVn7000976@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 332 + for ; + Tue, 18 Dec 2007 12:44:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC3C03BECA + for ; Tue, 18 Dec 2007 12:48:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICmVP2000978 + for ; Tue, 18 Dec 2007 07:48:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICmVn7000976 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:48:31 -0500 +Date: Tue, 18 Dec 2007 07:48:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39416 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 07:49:19 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39416 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 07:48:23 -0500 (Tue, 18 Dec 2007) +New Revision: 39416 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +SAK-12447 Null results from cache: merge into 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 07:49:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 07:49:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 07:49:06 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by flawless.mail.umich.edu () with ESMTP id lBICn6in029102; + Tue, 18 Dec 2007 07:49:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4767C1BB.A0DC9.15198 ; + 18 Dec 2007 07:49:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 308F0A34D6; + Tue, 18 Dec 2007 12:45:14 +0000 (GMT) +Message-ID: <200712181248.lBICm2NW000964@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 329 + for ; + Tue, 18 Dec 2007 12:44:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A3333BECA + for ; Tue, 18 Dec 2007 12:48:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICm2NN000966 + for ; Tue, 18 Dec 2007 07:48:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICm2NW000964 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:48:02 -0500 +Date: Tue, 18 Dec 2007 07:48:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39415 - in memory/branches/sakai_2-5-x/memory-impl: . impl impl/src impl/src/java/org/sakaiproject/memory/impl impl/src/test impl/src/test/org impl/src/test/org/sakai impl/src/test/org/sakai/memory impl/src/test/org/sakai/memory/impl impl/src/test/org/sakai/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 07:49:06 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39415 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 07:47:12 -0500 (Tue, 18 Dec 2007) +New Revision: 39415 + +Added: +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockBasicMemoryService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockEventTrackingService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockSecurityService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockUsageSessionService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/ehcache.xml +Removed: +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/ +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockBasicMemoryService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockEventTrackingService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockSecurityService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockUsageSessionService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/ehcache.xml +Modified: +memory/branches/sakai_2-5-x/memory-impl/.classpath +memory/branches/sakai_2-5-x/memory-impl/impl/pom.xml +memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +Log: +SAK-12447 Null results from cache: merge into 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 07:47:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 07:47:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 07:47:38 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lBIClbZZ013550; + Tue, 18 Dec 2007 07:47:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4767C163.33B31.3657 ; + 18 Dec 2007 07:47:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5B039A35BE; + Tue, 18 Dec 2007 12:44:11 +0000 (GMT) +Message-ID: <200712181247.lBICl1hY000952@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 975 + for ; + Tue, 18 Dec 2007 12:43:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7BF583BECA + for ; Tue, 18 Dec 2007 12:47:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICl1qS000954 + for ; Tue, 18 Dec 2007 07:47:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICl1hY000952 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:47:01 -0500 +Date: Tue, 18 Dec 2007 07:47:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39414 - alias/branches/sakai_2-5-x/alias-impl/impl/src/java/org/sakaiproject/alias/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 07:47:38 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39414 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 07:46:53 -0500 (Tue, 18 Dec 2007) +New Revision: 39414 + +Modified: +alias/branches/sakai_2-5-x/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java +Log: +SAK-12447 Null results from cache: merge into 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 06:56:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:56:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:56:24 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by brazil.mail.umich.edu () with ESMTP id lBIBuOwW018533; + Tue, 18 Dec 2007 06:56:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4767B554.E78.19684 ; + 18 Dec 2007 06:56:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 09C85A34D5; + Tue, 18 Dec 2007 11:44:59 +0000 (GMT) +Message-ID: <200712181155.lBIBtbE2000890@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 674 + for ; + Tue, 18 Dec 2007 11:44:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0DD903203B + for ; Tue, 18 Dec 2007 11:55:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBtbv2000892 + for ; Tue, 18 Dec 2007 06:55:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBtbE2000890 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:55:37 -0500 +Date: Tue, 18 Dec 2007 06:55:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39413 - event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:56:24 2007 +X-DSPAM-Confidence: 0.7545 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39413 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 06:55:27 -0500 (Tue, 18 Dec 2007) +New Revision: 39413 + +Modified: +event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java +event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceSqlDefault.java +Log: +SAK-6216 Optional ability to store client hostname (resolved IP) in SAKAI_SESSION (requires schema change) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 06:55:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:55:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:55:54 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lBIBtsP6032244; + Tue, 18 Dec 2007 06:55:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4767B545.42EF0.24466 ; + 18 Dec 2007 06:55:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 96A93A34CC; + Tue, 18 Dec 2007 11:44:44 +0000 (GMT) +Message-ID: <200712181155.lBIBtMEu000878@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 907 + for ; + Tue, 18 Dec 2007 11:44:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 30AAE3203B + for ; Tue, 18 Dec 2007 11:55:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBtNtR000880 + for ; Tue, 18 Dec 2007 06:55:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBtMEu000878 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:55:22 -0500 +Date: Tue, 18 Dec 2007 06:55:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39412 - event/branches/SAK-6216/event-api/api/src/java/org/sakaiproject/event/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:55:54 2007 +X-DSPAM-Confidence: 0.7541 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39412 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 06:55:15 -0500 (Tue, 18 Dec 2007) +New Revision: 39412 + +Modified: +event/branches/SAK-6216/event-api/api/src/java/org/sakaiproject/event/api/UsageSession.java +Log: +SAK-6216 Optional ability to store client hostname (resolved IP) in SAKAI_SESSION (requires schema change) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 06:51:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:51:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:51:56 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id lBIBpt4c017503; + Tue, 18 Dec 2007 06:51:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4767B44A.CE1D6.8353 ; + 18 Dec 2007 06:51:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 80810A3435; + Tue, 18 Dec 2007 11:40:36 +0000 (GMT) +Message-ID: <200712181151.lBIBpEAq000865@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 214 + for ; + Tue, 18 Dec 2007 11:40:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 821F536F70 + for ; Tue, 18 Dec 2007 11:51:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBpE9O000867 + for ; Tue, 18 Dec 2007 06:51:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBpEAq000865 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:51:14 -0500 +Date: Tue, 18 Dec 2007 06:51:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39411 - event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:51:56 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39411 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 06:51:06 -0500 (Tue, 18 Dec 2007) +New Revision: 39411 + +Modified: +event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java +Log: +SAK-6216 merge r37375 from trunk (update to match 2-5-x) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 06:50:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:50:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:50:02 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id lBIBo1kM012185; + Tue, 18 Dec 2007 06:50:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4767B3E0.7D875.14441 ; + 18 Dec 2007 06:49:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B684158172; + Tue, 18 Dec 2007 11:38:46 +0000 (GMT) +Message-ID: <200712181149.lBIBnPBI000853@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38 + for ; + Tue, 18 Dec 2007 11:38:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AEFFD36F70 + for ; Tue, 18 Dec 2007 11:49:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBnPVr000855 + for ; Tue, 18 Dec 2007 06:49:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBnPBI000853 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:49:25 -0500 +Date: Tue, 18 Dec 2007 06:49:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39410 - event/branches/sakai_2-5-x/event-impl/impl/src/java/org/sakaiproject/event/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:50:02 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39410 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 06:49:17 -0500 (Tue, 18 Dec 2007) +New Revision: 39410 + +Modified: +event/branches/sakai_2-5-x/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java +Log: +SAK-7428 merge change to 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 06:33:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:33:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:33:34 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by chaos.mail.umich.edu () with ESMTP id lBIBXXC8012333; + Tue, 18 Dec 2007 06:33:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4767AFE5.AD7B7.16969 ; + 18 Dec 2007 06:32:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7CCD2A3494; + Tue, 18 Dec 2007 11:22:01 +0000 (GMT) +Message-ID: <200712181132.lBIBWIcQ000827@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1020 + for ; + Tue, 18 Dec 2007 11:21:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0CCA83BA52 + for ; Tue, 18 Dec 2007 11:32:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBWIS1000829 + for ; Tue, 18 Dec 2007 06:32:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBWIcQ000827 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:32:18 -0500 +Date: Tue, 18 Dec 2007 06:32:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39409 - event/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:33:34 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39409 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 06:32:09 -0500 (Tue, 18 Dec 2007) +New Revision: 39409 + +Added: +event/branches/SAK-6216/ +Log: +SAK-6216 Branch event from 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 06:32:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:32:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:32:11 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id lBIBWBHf026947; + Tue, 18 Dec 2007 06:32:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4767AFB4.D4C2F.18086 ; + 18 Dec 2007 06:32:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EB7AAA345C; + Tue, 18 Dec 2007 11:21:10 +0000 (GMT) +Message-ID: <200712181131.lBIBVQNk000812@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791 + for ; + Tue, 18 Dec 2007 11:20:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9801236F70 + for ; Tue, 18 Dec 2007 11:31:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBVQQn000814 + for ; Tue, 18 Dec 2007 06:31:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBVQNk000812 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:31:26 -0500 +Date: Tue, 18 Dec 2007 06:31:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39408 - event/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:32:11 2007 +X-DSPAM-Confidence: 0.8409 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39408 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 06:31:19 -0500 (Tue, 18 Dec 2007) +New Revision: 39408 + +Removed: +event/branches/SAK-6216/ +Log: +SAK-6216 Incorrect copy + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Tue Dec 18 06:31:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:31:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:31:24 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by casino.mail.umich.edu () with ESMTP id lBIBVO1P015836; + Tue, 18 Dec 2007 06:31:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4767AF85.359BB.12126 ; + 18 Dec 2007 06:31:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E74D6A3482; + Tue, 18 Dec 2007 11:20:39 +0000 (GMT) +Message-ID: <200712181129.lBIBTNxZ000799@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494 + for ; + Tue, 18 Dec 2007 11:20:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D2DF36F70 + for ; Tue, 18 Dec 2007 11:29:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBTO0g000801 + for ; Tue, 18 Dec 2007 06:29:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBTNxZ000799 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:29:23 -0500 +Date: Tue, 18 Dec 2007 06:29:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39407 - event/branches/SAK-6216 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:31:24 2007 +X-DSPAM-Confidence: 0.9820 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39407 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-18 06:29:11 -0500 (Tue, 18 Dec 2007) +New Revision: 39407 + +Added: +event/branches/SAK-6216/sakai_2-5-x/ +Log: +SAK-6216 Branch event from 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Dec 18 06:30:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 18 Dec 2007 06:30:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 18 Dec 2007 06:30:59 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by score.mail.umich.edu () with ESMTP id lBIBUvC2008028; + Tue, 18 Dec 2007 06:30:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4767AF68.12898.6028 ; + 18 Dec 2007 06:30:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33AB1A3488; + Tue, 18 Dec 2007 11:20:25 +0000 (GMT) +Message-ID: <200712181127.lBIBRNTx000787@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 641 + for ; + Tue, 18 Dec 2007 11:20:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C479E36F70 + for ; Tue, 18 Dec 2007 11:27:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBRNC7000789 + for ; Tue, 18 Dec 2007 06:27:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBRNTx000787 + for source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:27:23 -0500 +Date: Tue, 18 Dec 2007 06:27:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39406 - citations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 18 06:30:59 2007 +X-DSPAM-Confidence: 0.9780 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39406 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-18 06:27:18 -0500 (Tue, 18 Dec 2007) +New Revision: 39406 + +Modified: +citations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseConfigurationService.java +Log: +SAK-12447 +Reverted bad commit to citations.... sorry citations team. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Dec 17 17:15:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 17:15:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 17:15:54 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by chaos.mail.umich.edu () with ESMTP id lBHMFrUa012963; + Mon, 17 Dec 2007 17:15:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4766F508.3FE19.3677 ; + 17 Dec 2007 17:15:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 56621A292C; + Mon, 17 Dec 2007 22:11:44 +0000 (GMT) +Message-ID: <200712172213.lBHMDCse032184@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 631 + for ; + Mon, 17 Dec 2007 22:10:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 40C3F35F39 + for ; Mon, 17 Dec 2007 22:13:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHMDCwX032186 + for ; Mon, 17 Dec 2007 17:13:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHMDCse032184 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 17:13:12 -0500 +Date: Mon, 17 Dec 2007 17:13:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39404 - in gradebook/trunk/helper-app/src: java/org/sakaiproject/gradebook/tool java/org/sakaiproject/gradebook/tool/beans java/org/sakaiproject/gradebook/tool/helper webapp/WEB-INF webapp/WEB-INF/bundle webapp/content/css webapp/content/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 17:15:54 2007 +X-DSPAM-Confidence: 0.8464 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39404 + +Author: rjlowe@iupui.edu +Date: 2007-12-17 17:13:10 -0500 (Mon, 17 Dec 2007) +New Revision: 39404 + +Added: +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/beans/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/beans/GradebookItemBean.java +gradebook/trunk/helper-app/src/webapp/WEB-INF/bundle/ +gradebook/trunk/helper-app/src/webapp/WEB-INF/bundle/messages.properties +gradebook/trunk/helper-app/src/webapp/content/css/gradebook.css +gradebook/trunk/helper-app/src/webapp/content/templates/add-gradebook-item.html +Removed: +gradebook/trunk/helper-app/src/webapp/content/templates/assignment_add-gradebook-item.html +Modified: +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java +gradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/helper-app/src/webapp/WEB-INF/requestContext.xml +Log: +NOJIRA - Gradebook Helper Iternationalization and styling, set up beans + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 17:12:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 17:12:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 17:12:12 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lBHMCBJi004480; + Mon, 17 Dec 2007 17:12:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4766F433.71F2C.2753 ; + 17 Dec 2007 17:12:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2148C96A17; + Mon, 17 Dec 2007 22:09:36 +0000 (GMT) +Message-ID: <200712172211.lBHMB95I032172@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 370 + for ; + Mon, 17 Dec 2007 22:08:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CAC4363A1 + for ; Mon, 17 Dec 2007 22:11:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHMB9S0032174 + for ; Mon, 17 Dec 2007 17:11:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHMB95I032172 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 17:11:09 -0500 +Date: Mon, 17 Dec 2007 17:11:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39403 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 17:12:12 2007 +X-DSPAM-Confidence: 0.8465 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39403 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 17:11:08 -0500 (Mon, 17 Dec 2007) +New Revision: 39403 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +SAK-12504 +http://jira.sakaiproject.org/jira/browse/SAK-12504 +Viewing "All Grades" page as a TA with grader permissions causes stack trace + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Mon Dec 17 17:00:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 17:00:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 17:00:02 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lBHM01bg013735; + Mon, 17 Dec 2007 17:00:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4766F15B.F237A.10733 ; + 17 Dec 2007 16:59:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AF94AA20CB; + Mon, 17 Dec 2007 22:00:22 +0000 (GMT) +Message-ID: <200712172159.lBHLxYfi032150@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 953 + for ; + Mon, 17 Dec 2007 22:00:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1AF9935FED + for ; Mon, 17 Dec 2007 21:59:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLxYg4032152 + for ; Mon, 17 Dec 2007 16:59:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLxYfi032150 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:59:34 -0500 +Date: Mon, 17 Dec 2007 16:59:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39402 - component/trunk/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 17:00:02 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39402 + +Author: arwhyte@umich.edu +Date: 2007-12-17 16:59:30 -0500 (Mon, 17 Dec 2007) +New Revision: 39402 + +Modified: +component/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +SAK-12481 Re-stealthed sakai.site.roster. Never promoted to core. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Mon Dec 17 16:56:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 16:56:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 16:56:03 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id lBHLtomt020764; + Mon, 17 Dec 2007 16:55:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4766F05E.80E9E.10816 ; + 17 Dec 2007 16:55:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE214A272B; + Mon, 17 Dec 2007 21:53:02 +0000 (GMT) +Message-ID: <200712172155.lBHLtLbL032138@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 34 + for ; + Mon, 17 Dec 2007 21:52:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9EC1135FED + for ; Mon, 17 Dec 2007 21:55:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLtLvB032140 + for ; Mon, 17 Dec 2007 16:55:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLtLbL032138 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:55:21 -0500 +Date: Mon, 17 Dec 2007 16:55:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39401 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 16:56:03 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39401 + +Author: arwhyte@umich.edu +Date: 2007-12-17 16:55:10 -0500 (Mon, 17 Dec 2007) +New Revision: 39401 + +Modified: +component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +SAK-12481 Re-stealth sakai.site.roster. Never promoted to core. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Mon Dec 17 16:41:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 16:41:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 16:41:05 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lBHLf4jl006248; + Mon, 17 Dec 2007 16:41:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4766ECE8.67B1B.17185 ; + 17 Dec 2007 16:41:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B16B8A27BD; + Mon, 17 Dec 2007 21:41:20 +0000 (GMT) +Message-ID: <200712172140.lBHLeNqR032119@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 403 + for ; + Mon, 17 Dec 2007 21:40:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C20113B1F4 + for ; Mon, 17 Dec 2007 21:40:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLeNdG032121 + for ; Mon, 17 Dec 2007 16:40:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLeNqR032119 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:40:23 -0500 +Date: Mon, 17 Dec 2007 16:40:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39400 - bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 16:41:05 2007 +X-DSPAM-Confidence: 0.6934 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39400 + +Author: louis@media.berkeley.edu +Date: 2007-12-17 16:40:20 -0500 (Mon, 17 Dec 2007) +New Revision: 39400 + +Modified: +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +BSP-1376 apllied local customization to assignment tool done earlier in BSP 1259 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 16:34:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 16:34:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 16:34:16 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by flawless.mail.umich.edu () with ESMTP id lBHLYF2i000643; + Mon, 17 Dec 2007 16:34:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4766EB3D.CEC58.5996 ; + 17 Dec 2007 16:33:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0CF9EA2790; + Mon, 17 Dec 2007 21:34:11 +0000 (GMT) +Message-ID: <200712172133.lBHLXR25032067@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 228 + for ; + Mon, 17 Dec 2007 21:33:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AD49E3AC85 + for ; Mon, 17 Dec 2007 21:33:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLXRVB032069 + for ; Mon, 17 Dec 2007 16:33:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLXR25032067 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:33:27 -0500 +Date: Mon, 17 Dec 2007 16:33:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39399 - in user/branches/sakai_2-5-x/user-tool-prefs/tool/src: bundle java/org/sakaiproject/user/tool webapp webapp/WEB-INF webapp/css webapp/prefs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 16:34:16 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39399 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 16:33:12 -0500 (Mon, 17 Dec 2007) +New Revision: 39399 + +Added: +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/css/ +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/css/useDHTMLMore.css +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/prefs/tab-dhtml-moresites.jsp +Removed: +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/css/useDHTMLMore.css +Modified: +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle/user-tool-prefs.properties +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool/UserPrefsTool.java +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/WEB-INF/faces-config.xml +Log: +SAK-11460 +Merged from trunk +svn merge -r 39288:39289 https://source.sakaiproject.org/svn/user/trunk + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 16:30:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 16:30:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 16:30:05 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id lBHLU47U020914; + Mon, 17 Dec 2007 16:30:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4766EA56.7D495.3680 ; + 17 Dec 2007 16:30:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1C840A276E; + Mon, 17 Dec 2007 21:30:22 +0000 (GMT) +Message-ID: <200712172129.lBHLTaWd032027@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 503 + for ; + Mon, 17 Dec 2007 21:30:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 849A13AC85 + for ; Mon, 17 Dec 2007 21:29:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLTas7032029 + for ; Mon, 17 Dec 2007 16:29:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLTaWd032027 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:29:36 -0500 +Date: Mon, 17 Dec 2007 16:29:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39398 - gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 16:30:05 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39398 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 16:29:35 -0500 (Mon, 17 Dec 2007) +New Revision: 39398 + +Modified: +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-10606 +http://bugs.sakaiproject.org/jira/browse/SAK-10606 +GB authorization error in logs when student accesses Forums + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 16:20:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 16:20:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 16:20:51 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id lBHLKohc001615; + Mon, 17 Dec 2007 16:20:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4766E82D.116A9.1965 ; + 17 Dec 2007 16:20:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2E70BA1831; + Mon, 17 Dec 2007 21:21:07 +0000 (GMT) +Message-ID: <200712172120.lBHLKHTG032004@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 779 + for ; + Mon, 17 Dec 2007 21:20:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C39BE3AD1F + for ; Mon, 17 Dec 2007 21:20:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLKHPX032006 + for ; Mon, 17 Dec 2007 16:20:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLKHTG032004 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:20:17 -0500 +Date: Mon, 17 Dec 2007 16:20:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39397 - msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 16:20:51 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39397 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 16:20:16 -0500 (Mon, 17 Dec 2007) +New Revision: 39397 + +Modified: +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java +Log: +SAK-10606 +http://bugs.sakaiproject.org/jira/browse/SAK-10606 +GB authorization error in logs when student accesses Forums + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Mon Dec 17 16:04:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 16:04:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 16:04:53 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBHL4qHh002872; + Mon, 17 Dec 2007 16:04:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4766E465.5ED8C.13788 ; + 17 Dec 2007 16:04:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5330F5DDE4; + Mon, 17 Dec 2007 21:05:00 +0000 (GMT) +Message-ID: <200712172104.lBHL4CIM031960@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 226 + for ; + Mon, 17 Dec 2007 21:04:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2693031ECF + for ; Mon, 17 Dec 2007 21:04:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHL4D8w031962 + for ; Mon, 17 Dec 2007 16:04:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHL4CIM031960 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:04:12 -0500 +Date: Mon, 17 Dec 2007 16:04:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39396 - site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 16:04:53 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39396 + +Author: gsilver@umich.edu +Date: 2007-12-17 16:04:10 -0500 (Mon, 17 Dec 2007) +New Revision: 39396 + +Modified: +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +SAK-12441 +http://jira.sakaiproject.org/jira/browse/SAK-12441 +reclaim bit of whitespace for wsiteinfo display + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 15:38:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 15:38:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 15:38:59 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by panther.mail.umich.edu () with ESMTP id lBHKcwbh007758; + Mon, 17 Dec 2007 15:38:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4766DE53.3E035.6777 ; + 17 Dec 2007 15:38:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A6C8A26CE; + Mon, 17 Dec 2007 20:38:44 +0000 (GMT) +Message-ID: <200712172038.lBHKc5CF031921@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263 + for ; + Mon, 17 Dec 2007 20:38:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 817C13155F + for ; Mon, 17 Dec 2007 20:38:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKc55V031923 + for ; Mon, 17 Dec 2007 15:38:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKc5CF031921 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:38:05 -0500 +Date: Mon, 17 Dec 2007 15:38:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39395 - gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 15:38:59 2007 +X-DSPAM-Confidence: 0.9895 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39395 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 15:38:04 -0500 (Mon, 17 Dec 2007) +New Revision: 39395 + +Modified: +gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +svn merge -r39392:39393 https://source.sakaiproject.org/svn/gradebook/trunk +U app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java + +------------------------------------------------------------------------ +r39393 | wagnermr@iupui.edu | 2007-12-17 15:20:23 -0500 (Mon, 17 Dec 2007) | 3 lines + +SAK-12494 +http://bugs.sakaiproject.org/jira/browse/SAK-12494 +Viewing a non-calculated gb item in a gradebook with grade entry by letter or % results in stack trace +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 17 15:28:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 15:28:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 15:28:02 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lBHKS1bD029555; + Mon, 17 Dec 2007 15:28:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4766DBBC.85926.27124 ; + 17 Dec 2007 15:27:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3C2E8A246C; + Mon, 17 Dec 2007 20:27:44 +0000 (GMT) +Message-ID: <200712172027.lBHKRAZ5031900@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 5 + for ; + Mon, 17 Dec 2007 20:27:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0C95631EE4 + for ; Mon, 17 Dec 2007 20:27:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKRATv031902 + for ; Mon, 17 Dec 2007 15:27:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKRAZ5031900 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:27:10 -0500 +Date: Mon, 17 Dec 2007 15:27:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39394 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 15:28:02 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39394 + +Author: zqian@umich.edu +Date: 2007-12-17 15:27:08 -0500 (Mon, 17 Dec 2007) +New Revision: 39394 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupedit.vm +Log: +Fix to SAK-12476:Setting a section/group title longer than 99 chars causes an error + +Set the maxlength attribute for the group title input field. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 15:20:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 15:20:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 15:20:58 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id lBHKKvYW020296; + Mon, 17 Dec 2007 15:20:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4766DA23.CB17A.14584 ; + 17 Dec 2007 15:20:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 53ACCA09ED; + Mon, 17 Dec 2007 20:20:54 +0000 (GMT) +Message-ID: <200712172020.lBHKKOV4031888@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 596 + for ; + Mon, 17 Dec 2007 20:20:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 681FE1D647 + for ; Mon, 17 Dec 2007 20:20:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKKOwZ031890 + for ; Mon, 17 Dec 2007 15:20:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKKOV4031888 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:20:24 -0500 +Date: Mon, 17 Dec 2007 15:20:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39393 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 15:20:58 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39393 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 15:20:23 -0500 (Mon, 17 Dec 2007) +New Revision: 39393 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +SAK-12494 +http://bugs.sakaiproject.org/jira/browse/SAK-12494 +Viewing a non-calculated gb item in a gradebook with grade entry by letter or % results in stack trace + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Mon Dec 17 15:18:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 15:18:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 15:18:47 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id lBHKIgiH026876; + Mon, 17 Dec 2007 15:18:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4766D99C.AE3B1.2487 ; + 17 Dec 2007 15:18:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 65DECA262F; + Mon, 17 Dec 2007 20:18:39 +0000 (GMT) +Message-ID: <200712172018.lBHKIHwo031873@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 691 + for ; + Mon, 17 Dec 2007 20:18:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E74AA1D647 + for ; Mon, 17 Dec 2007 20:18:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKIHc3031875 + for ; Mon, 17 Dec 2007 15:18:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKIHwo031873 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:18:17 -0500 +Date: Mon, 17 Dec 2007 15:18:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39392 - in osp/branches/sakai_2-4-x: common/api/src/java/org/theospi/portfolio/review/mgt common/api-impl/src/java/org/theospi/portfolio/review/impl common/api-impl/src/java/org/theospi/portfolio/shared/model/impl matrix/api-impl/src/java/org/theospi/portfolio/matrix +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 15:18:47 2007 +X-DSPAM-Confidence: 0.9883 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39392 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-17 15:18:13 -0500 (Mon, 17 Dec 2007) +New Revision: 39392 + +Modified: +osp/branches/sakai_2-4-x/common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java +osp/branches/sakai_2-4-x/common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java +osp/branches/sakai_2-4-x/common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java +osp/branches/sakai_2-4-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java +Log: +SAK-12467 performance issues when portfolios contain a matrix + +--(1514:Mon,17 Dec 07:$)-- wget -q -O- http://bugs.sakaiproject.org/jira/secure/attachment/14931/SAK-12467_2.4.x.patch |patch -p 0 +patching file common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java +patching file common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java +patching file common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java +patching file matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 15:14:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 15:14:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 15:14:24 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBHKENYm004506; + Mon, 17 Dec 2007 15:14:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4766D899.4B1EC.15241 ; + 17 Dec 2007 15:14:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C3B63A09ED; + Mon, 17 Dec 2007 20:14:19 +0000 (GMT) +Message-ID: <200712172013.lBHKDtHX031853@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 381 + for ; + Mon, 17 Dec 2007 20:14:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0CD85212D8 + for ; Mon, 17 Dec 2007 20:14:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKDudY031855 + for ; Mon, 17 Dec 2007 15:13:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKDtHX031853 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:13:56 -0500 +Date: Mon, 17 Dec 2007 15:13:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39391 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 15:14:24 2007 +X-DSPAM-Confidence: 0.8432 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39391 + +Author: cwen@iupui.edu +Date: 2007-12-17 15:13:55 -0500 (Mon, 17 Dec 2007) +New Revision: 39391 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for citation. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Dec 17 14:23:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:23:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:23:58 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lBHJNuBC015672; + Mon, 17 Dec 2007 14:23:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4766CCC1.158B1.30477 ; + 17 Dec 2007 14:23:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 63BE6A2417; + Mon, 17 Dec 2007 19:23:44 +0000 (GMT) +Message-ID: <200712171923.lBHJNMQk031792@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 999 + for ; + Mon, 17 Dec 2007 19:23:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93C2E3AD5F + for ; Mon, 17 Dec 2007 19:23:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJNMt9031794 + for ; Mon, 17 Dec 2007 14:23:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJNMQk031792 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:23:22 -0500 +Date: Mon, 17 Dec 2007 14:23:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39390 - calendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:23:58 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39390 + +Author: mmmay@indiana.edu +Date: 2007-12-17 14:23:21 -0500 (Mon, 17 Dec 2007) +New Revision: 39390 + +Modified: +calendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +Log: +svn merge -r 39289:39290 https://source.sakaiproject.org/svn/calendar/trunk +U calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +in-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 39289:39290 https://source.sakaiproject.org/svn/calendar/trunk +------------------------------------------------------------------------ +r39290 | bkirschn@umich.edu | 2007-12-14 16:16:09 -0500 (Fri, 14 Dec 2007) | 1 line + +SAK-12221 check for null range parm in getEvents() +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Dec 17 14:21:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:21:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:21:29 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by flawless.mail.umich.edu () with ESMTP id lBHJLSOo022303; + Mon, 17 Dec 2007 14:21:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4766CC32.AA992.3207 ; + 17 Dec 2007 14:21:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A4CBBA2417; + Mon, 17 Dec 2007 19:21:23 +0000 (GMT) +Message-ID: <200712171921.lBHJL6ZP031778@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312 + for ; + Mon, 17 Dec 2007 19:21:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1127C35FB5 + for ; Mon, 17 Dec 2007 19:21:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJL6oK031780 + for ; Mon, 17 Dec 2007 14:21:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJL6ZP031778 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:21:06 -0500 +Date: Mon, 17 Dec 2007 14:21:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39389 - in osp/branches/sakai_2-5-x: common/api/src/java/org/theospi/portfolio/review/mgt common/api-impl/src/java/org/theospi/portfolio/review/impl common/api-impl/src/java/org/theospi/portfolio/shared/model/impl matrix/api-impl/src/java/org/theospi/portfolio/matrix +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:21:29 2007 +X-DSPAM-Confidence: 0.7611 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39389 + +Author: mmmay@indiana.edu +Date: 2007-12-17 14:21:03 -0500 (Mon, 17 Dec 2007) +New Revision: 39389 + +Modified: +osp/branches/sakai_2-5-x/common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java +osp/branches/sakai_2-5-x/common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java +osp/branches/sakai_2-5-x/common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java +osp/branches/sakai_2-5-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java +Log: +svn merge -r 39285:39286 https://source.sakaiproject.org/svn/osp/trunk +U common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java +U common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java +U common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java +U matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 39285:39286 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r39286 | jbush@rsmart.com | 2007-12-14 15:39:41 -0500 (Fri, 14 Dec 2007) | 1 line + +SAK-12467 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ssmail@indiana.edu Mon Dec 17 14:20:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:20:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:20:43 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by chaos.mail.umich.edu () with ESMTP id lBHJKgv3013883; + Mon, 17 Dec 2007 14:20:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4766CBEF.D76B2.30898 ; + 17 Dec 2007 14:20:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5157BA2025; + Mon, 17 Dec 2007 19:20:16 +0000 (GMT) +Message-ID: <200712171919.lBHJJtr2031760@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 69 + for ; + Mon, 17 Dec 2007 19:20:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D105435FB5 + for ; Mon, 17 Dec 2007 19:20:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJJugV031762 + for ; Mon, 17 Dec 2007 14:19:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJJtr2031760 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:19:55 -0500 +Date: Mon, 17 Dec 2007 14:19:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f +To: source@collab.sakaiproject.org +From: ssmail@indiana.edu +Subject: [sakai] svn commit: r39388 - citations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:20:43 2007 +X-DSPAM-Confidence: 0.7569 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39388 + +Author: ssmail@indiana.edu +Date: 2007-12-17 14:19:54 -0500 (Mon, 17 Dec 2007) +New Revision: 39388 + +Modified: +citations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse/CampusAssociation.java +citations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse/OncourseOsidConfiguration.java +Log: +NOJIRA: Restrict unknown users to GUEST access - this happens if the user isn't found, or the lookup attempt fails due to an error condition (network problem, etc) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 14:19:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:19:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:19:51 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lBHJJopO000948; + Mon, 17 Dec 2007 14:19:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4766CBCC.971B.6754 ; + 17 Dec 2007 14:19:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 85255A2595; + Mon, 17 Dec 2007 19:19:40 +0000 (GMT) +Message-ID: <200712171919.lBHJJC6Y031748@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754 + for ; + Mon, 17 Dec 2007 19:19:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CB15035FB5 + for ; Mon, 17 Dec 2007 19:19:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJJD1U031750 + for ; Mon, 17 Dec 2007 14:19:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJJC6Y031748 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:19:12 -0500 +Date: Mon, 17 Dec 2007 14:19:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39387 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:19:51 2007 +X-DSPAM-Confidence: 0.9825 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39387 + +Author: cwen@iupui.edu +Date: 2007-12-17 14:19:11 -0500 (Mon, 17 Dec 2007) +New Revision: 39387 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for r39383. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Dec 17 14:19:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:19:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:19:49 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lBHJJmVQ026277; + Mon, 17 Dec 2007 14:19:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4766CBCB.4F3DB.12516 ; + 17 Dec 2007 14:19:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C4B2EA2594; + Mon, 17 Dec 2007 19:19:39 +0000 (GMT) +Message-ID: <200712171919.lBHJJBZL031736@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 259 + for ; + Mon, 17 Dec 2007 19:19:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0921035FB5 + for ; Mon, 17 Dec 2007 19:19:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJJBji031738 + for ; Mon, 17 Dec 2007 14:19:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJJBZL031736 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:19:11 -0500 +Date: Mon, 17 Dec 2007 14:19:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39386 - in entitybroker/branches/sakai_2-5-x: api/src/java/org/sakaiproject/entitybroker api/src/java/org/sakaiproject/entitybroker/util tool/src/java/org/sakaiproject/entitybroker/servlet +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:19:49 2007 +X-DSPAM-Confidence: 0.6566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39386 + +Author: mmmay@indiana.edu +Date: 2007-12-17 14:19:09 -0500 (Mon, 17 Dec 2007) +New Revision: 39386 + +Added: +entitybroker/branches/sakai_2-5-x/api/src/java/org/sakaiproject/entitybroker/util/ +entitybroker/branches/sakai_2-5-x/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java +Removed: +entitybroker/branches/sakai_2-5-x/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java +Modified: +entitybroker/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java +Log: +svn merge -r 39098:39099 https://source.sakaiproject.org/svn/entitybroker/trunk +A api/src/java/org/sakaiproject/entitybroker/util +A api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java +U tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java +in-143-196:~/java/2-5/sakai_2-5-x/entitybroker mmmay$ svn log -r 39098:39099 https://source.sakaiproject.org/svn/entitybroker/trunk +------------------------------------------------------------------------ +r39099 | aaronz@vt.edu | 2007-12-11 02:52:59 -0500 (Tue, 11 Dec 2007) | 1 line + +SAK-12408: Completed fix for the failures caused by classloader confusion, also added in ability for the direct servlet to handle all types of requests +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Dec 17 14:18:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:18:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:18:31 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by casino.mail.umich.edu () with ESMTP id lBHJIUJA024074; + Mon, 17 Dec 2007 14:18:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4766CB7E.AFEE5.17100 ; + 17 Dec 2007 14:18:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B66BBA201B; + Mon, 17 Dec 2007 19:18:19 +0000 (GMT) +Message-ID: <200712171917.lBHJHuEv031712@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 10 + for ; + Mon, 17 Dec 2007 19:18:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93CFC35FB5 + for ; Mon, 17 Dec 2007 19:18:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJHuAI031714 + for ; Mon, 17 Dec 2007 14:17:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJHuEv031712 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:17:56 -0500 +Date: Mon, 17 Dec 2007 14:17:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39385 - in entitybroker/branches/sakai_2-5-x: impl tool/src/java/org/sakaiproject/entitybroker/servlet +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:18:31 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39385 + +Author: mmmay@indiana.edu +Date: 2007-12-17 14:17:55 -0500 (Mon, 17 Dec 2007) +New Revision: 39385 + +Modified: +entitybroker/branches/sakai_2-5-x/impl/pom.xml +entitybroker/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java +Log: +svn merge -r 39085:39086 https://source.sakaiproject.org/svn/entitybroker/trunk +U impl/pom.xml +U tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java +in-143-196:~/java/2-5/sakai_2-5-x/entitybroker mmmay$ svn log -r 39085:39086 https://source.sakaiproject.org/svn/entitybroker/trunk +------------------------------------------------------------------------ +r39086 | aaronz@vt.edu | 2007-12-10 13:26:21 -0500 (Mon, 10 Dec 2007) | 1 line + +SAK-12408: Initial fix for the failures caused by classloader confusion, there will be more to this fix which allows the classloader to be specified by the accessmanager and possibly by the provider as well, still need to think about it more +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 14:15:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:15:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:15:18 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id lBHJFIPv022228; + Mon, 17 Dec 2007 14:15:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4766CAC0.4BB3.32343 ; + 17 Dec 2007 14:15:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E28F1A2590; + Mon, 17 Dec 2007 19:15:12 +0000 (GMT) +Message-ID: <200712171914.lBHJEsIv031654@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 667 + for ; + Mon, 17 Dec 2007 19:15:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 57BC035FB5 + for ; Mon, 17 Dec 2007 19:14:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJEsxS031656 + for ; Mon, 17 Dec 2007 14:14:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJEsIv031654 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:14:54 -0500 +Date: Mon, 17 Dec 2007 14:14:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39384 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:15:18 2007 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39384 + +Author: cwen@iupui.edu +Date: 2007-12-17 14:14:53 -0500 (Mon, 17 Dec 2007) +New Revision: 39384 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external to bump up to r39379. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 14:14:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:14:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:14:55 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id lBHJEsR4021625; + Mon, 17 Dec 2007 14:14:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4766CAA7.94EB3.15170 ; + 17 Dec 2007 14:14:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9130FA258D; + Mon, 17 Dec 2007 19:14:48 +0000 (GMT) +Message-ID: <200712171914.lBHJERsY031642@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904 + for ; + Mon, 17 Dec 2007 19:14:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 711BF35FB5 + for ; Mon, 17 Dec 2007 19:14:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJERCj031644 + for ; Mon, 17 Dec 2007 14:14:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJERsY031642 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:14:27 -0500 +Date: Mon, 17 Dec 2007 14:14:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39383 - in gradebook/branches/oncourse_opc_122007/app: business/src/java/org/sakaiproject/tool/gradebook/business/impl ui/src/java/org/sakaiproject/tool/gradebook/jsf ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:14:55 2007 +X-DSPAM-Confidence: 0.9894 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39383 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 14:14:25 -0500 (Mon, 17 Dec 2007) +New Revision: 39383 + +Modified: +gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +Log: +svn merge -r39373:39374 https://source.sakaiproject.org/svn/gradebook/trunk +U app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java + +------------------------------------------------------------------------ +r39374 | wagnermr@iupui.edu | 2007-12-17 11:56:03 -0500 (Mon, 17 Dec 2007) | 3 lines + +SAK-10067 +http://jira.sakaiproject.org/jira/browse/SAK-10067 +Change Grade log to just keep a record of data entered w/o conversion +------------------------------------------------------------------------ + +svn merge -r39361:39362 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java + +------------------------------------------------------------------------ +r39362 | rjlowe@iupui.edu | 2007-12-17 10:53:09 -0500 (Mon, 17 Dec 2007) | 1 line + +SAK-12465 - Non-Standard grades are not showing up in GB table +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Dec 17 14:12:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 14:12:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 14:12:16 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id lBHJCF54024674; + Mon, 17 Dec 2007 14:12:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4766CA0A.176C.376 ; + 17 Dec 2007 14:12:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 28790A1875; + Mon, 17 Dec 2007 19:12:09 +0000 (GMT) +Message-ID: <200712171911.lBHJBmue031615@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 537 + for ; + Mon, 17 Dec 2007 19:11:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B9AE93AECC + for ; Mon, 17 Dec 2007 19:11:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJBnu5031617 + for ; Mon, 17 Dec 2007 14:11:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJBmue031615 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:11:48 -0500 +Date: Mon, 17 Dec 2007 14:11:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39382 - gradebook/trunk/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 14:12:16 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39382 + +Author: rjlowe@iupui.edu +Date: 2007-12-17 14:11:47 -0500 (Mon, 17 Dec 2007) +New Revision: 39382 + +Modified: +gradebook/trunk/app/ui/src/webapp/js/spreadsheetUI.js +Log: +SAK-12491 - gb / all grades column alignment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Mon Dec 17 13:37:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 13:37:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 13:37:50 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by chaos.mail.umich.edu () with ESMTP id lBHIboRh022497; + Mon, 17 Dec 2007 13:37:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4766C1F8.3AD17.25099 ; + 17 Dec 2007 13:37:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71C4E9BCC6; + Mon, 17 Dec 2007 18:34:44 +0000 (GMT) +Message-ID: <200712171837.lBHIbFXH031487@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 457 + for ; + Mon, 17 Dec 2007 18:34:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D928434F6B + for ; Mon, 17 Dec 2007 18:37:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIbFBW031489 + for ; Mon, 17 Dec 2007 13:37:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIbFXH031487 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:37:15 -0500 +Date: Mon, 17 Dec 2007 13:37:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39381 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 13:37:50 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39381 + +Author: dlhaines@umich.edu +Date: 2007-12-17 13:37:13 -0500 (Mon, 17 Dec 2007) +New Revision: 39381 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update assignments conversion for 2.4.xQ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jlrenfro@ucdavis.edu Mon Dec 17 13:34:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 13:34:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 13:34:32 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id lBHIYVY5019884; + Mon, 17 Dec 2007 13:34:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4766C131.9C24A.14786 ; + 17 Dec 2007 13:34:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74F439C6FA; + Mon, 17 Dec 2007 18:31:23 +0000 (GMT) +Message-ID: <200712171833.lBHIXhim031476@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 608 + for ; + Mon, 17 Dec 2007 18:30:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0F5C434F6B + for ; Mon, 17 Dec 2007 18:33:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIXhji031478 + for ; Mon, 17 Dec 2007 13:33:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIXhim031476 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:33:43 -0500 +Date: Mon, 17 Dec 2007 13:33:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jlrenfro@ucdavis.edu using -f +To: source@collab.sakaiproject.org +From: jlrenfro@ucdavis.edu +Subject: [contrib] svn commit: r44317 - scorm/SCORM.2004.3ED.RTE/trunk/scorm-impl/service/src/java/org/sakaiproject/scorm/service/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 13:34:32 2007 +X-DSPAM-Confidence: 0.7567 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=44317 + +Author: jlrenfro@ucdavis.edu +Date: 2007-12-17 13:33:40 -0500 (Mon, 17 Dec 2007) +New Revision: 44317 + +Modified: +scorm/SCORM.2004.3ED.RTE/trunk/scorm-impl/service/src/java/org/sakaiproject/scorm/service/impl/ScormContentServiceImpl.java +Log: +SCO-8 + +Fixing null pointer exception with getDueOn and getAcceptUntil. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 13:31:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 13:31:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 13:31:25 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by flawless.mail.umich.edu () with ESMTP id lBHIVOmJ022205; + Mon, 17 Dec 2007 13:31:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4766C067.5059A.26406 ; + 17 Dec 2007 13:31:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A2491A2463; + Mon, 17 Dec 2007 18:28:03 +0000 (GMT) +Message-ID: <200712171830.lBHIUVNb031450@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459 + for ; + Mon, 17 Dec 2007 18:27:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 32D9A34F6B + for ; Mon, 17 Dec 2007 18:30:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIUV7D031452 + for ; Mon, 17 Dec 2007 13:30:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIUVNb031450 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:30:31 -0500 +Date: Mon, 17 Dec 2007 13:30:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39379 - gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 13:31:25 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39379 + +Author: cwen@iupui.edu +Date: 2007-12-17 13:30:30 -0500 (Mon, 17 Dec 2007) +New Revision: 39379 + +Modified: +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +Log: +SAK-12486 => svn merge -r39375:39376 https://source.sakaiproject.org/svn/gradebook/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 17 13:31:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 13:31:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 13:31:13 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id lBHIVDsI000386; + Mon, 17 Dec 2007 13:31:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4766C06B.22267.16277 ; + 17 Dec 2007 13:31:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EB95AA246D; + Mon, 17 Dec 2007 18:28:09 +0000 (GMT) +Message-ID: <200712171830.lBHIUd5R031462@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483 + for ; + Mon, 17 Dec 2007 18:27:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 66F2334F6B + for ; Mon, 17 Dec 2007 18:30:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIUdpC031464 + for ; Mon, 17 Dec 2007 13:30:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIUd5R031462 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:30:39 -0500 +Date: Mon, 17 Dec 2007 13:30:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39380 - in assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion: api impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 13:31:13 2007 +X-DSPAM-Confidence: 0.9875 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39380 + +Author: zqian@umich.edu +Date: 2007-12-17 13:30:36 -0500 (Mon, 17 Dec 2007) +New Revision: 39380 + +Modified: +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +Log: +related to SAK-11281: + +combine any instance of submit/feedback text or attachment from all duplicated submissions; + +pass the db driver string into the above routine so as to use different xml write operation in case of MySql db. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Mon Dec 17 13:17:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 13:17:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 13:17:08 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by chaos.mail.umich.edu () with ESMTP id lBHIH7Ve011486; + Mon, 17 Dec 2007 13:17:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4766BD1A.D7649.15900 ; + 17 Dec 2007 13:17:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 63C1CA0993; + Mon, 17 Dec 2007 18:13:25 +0000 (GMT) +Message-ID: <200712171805.lBHI51Pl031427@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 718 + for ; + Mon, 17 Dec 2007 18:02:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6438735C8C + for ; Mon, 17 Dec 2007 18:05:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHI518g031429 + for ; Mon, 17 Dec 2007 13:05:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHI51Pl031427 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:05:01 -0500 +Date: Mon, 17 Dec 2007 13:05:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39378 - reference/branches/sakai_2-5-x/docs/architecture +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 13:17:08 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39378 + +Author: arwhyte@umich.edu +Date: 2007-12-17 13:04:59 -0500 (Mon, 17 Dec 2007) +New Revision: 39378 + +Removed: +reference/branches/sakai_2-5-x/docs/architecture/sakai_maven.doc +Log: +SAK-12490 remove obsolete architecture docs: sakai_maven.doc + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 12:29:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 12:29:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 12:29:53 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lBHHTqMl011786; + Mon, 17 Dec 2007 12:29:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4766B20A.5C7EB.23715 ; + 17 Dec 2007 12:29:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DABBE9A3B8; + Mon, 17 Dec 2007 17:29:56 +0000 (GMT) +Message-ID: <200712171729.lBHHTQui031364@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 440 + for ; + Mon, 17 Dec 2007 17:29:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DBA2131B25 + for ; Mon, 17 Dec 2007 17:29:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHHTQs2031366 + for ; Mon, 17 Dec 2007 12:29:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHHTQui031364 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 12:29:26 -0500 +Date: Mon, 17 Dec 2007 12:29:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39377 - in gradebook/branches/oncourse_opc_122007/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 12:29:53 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39377 + +Author: cwen@iupui.edu +Date: 2007-12-17 12:29:24 -0500 (Mon, 17 Dec 2007) +New Revision: 39377 + +Modified: +gradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12466 svn merge -r39334:39335 https://source.sakaiproject.org/svn/gradebook/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 12:17:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 12:17:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 12:17:25 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by chaos.mail.umich.edu () with ESMTP id lBHHHNtW013002; + Mon, 17 Dec 2007 12:17:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4766AF18.E5FDA.27792 ; + 17 Dec 2007 12:17:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B319E5856E; + Mon, 17 Dec 2007 17:17:22 +0000 (GMT) +Message-ID: <200712171716.lBHHGjnN031320@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 682 + for ; + Mon, 17 Dec 2007 17:16:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1F46031E10 + for ; Mon, 17 Dec 2007 17:16:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHHGj4W031322 + for ; Mon, 17 Dec 2007 12:16:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHHGjnN031320 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 12:16:45 -0500 +Date: Mon, 17 Dec 2007 12:16:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39376 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 12:17:25 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39376 + +Author: cwen@iupui.edu +Date: 2007-12-17 12:16:42 -0500 (Mon, 17 Dec 2007) +New Revision: 39376 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12486 +=> +include non-graded items for grade report page and +student view page. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Mon Dec 17 12:07:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 12:07:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 12:07:00 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id lBHH6xbP017498; + Mon, 17 Dec 2007 12:06:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4766ACA9.57FB5.30104 ; + 17 Dec 2007 12:06:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8D6399B877; + Mon, 17 Dec 2007 17:06:53 +0000 (GMT) +Message-ID: <200712171706.lBHH6Fgd031285@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895 + for ; + Mon, 17 Dec 2007 17:06:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2CED835FAC + for ; Mon, 17 Dec 2007 17:06:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHH6FRS031287 + for ; Mon, 17 Dec 2007 12:06:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHH6Fgd031285 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 12:06:15 -0500 +Date: Mon, 17 Dec 2007 12:06:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39375 - msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 12:07:00 2007 +X-DSPAM-Confidence: 0.9778 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39375 + +Author: nuno@ufp.pt +Date: 2007-12-17 12:06:10 -0500 (Mon, 17 Dec 2007) +New Revision: 39375 + +Modified: +msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 11:56:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:56:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:56:50 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by fan.mail.umich.edu () with ESMTP id lBHGunCe003669; + Mon, 17 Dec 2007 11:56:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4766AA3C.D8300.10452 ; + 17 Dec 2007 11:56:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EECAA722C5; + Mon, 17 Dec 2007 16:53:59 +0000 (GMT) +Message-ID: <200712171656.lBHGu5ct031261@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293 + for ; + Mon, 17 Dec 2007 16:53:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3E4BF3ABD2 + for ; Mon, 17 Dec 2007 16:56:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGu54V031263 + for ; Mon, 17 Dec 2007 11:56:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGu5ct031261 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:56:05 -0500 +Date: Mon, 17 Dec 2007 11:56:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39374 - in gradebook/trunk/app: business/src/java/org/sakaiproject/tool/gradebook/business/impl ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:56:50 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39374 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 11:56:03 -0500 (Mon, 17 Dec 2007) +New Revision: 39374 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +Log: +SAK-10067 +http://jira.sakaiproject.org/jira/browse/SAK-10067 +Change Grade log to just keep a record of data entered w/o conversion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 11:52:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:52:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:52:30 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id lBHGqThF001426; + Mon, 17 Dec 2007 11:52:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4766A93F.6D688.3033 ; + 17 Dec 2007 11:52:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5FEC7A2348; + Mon, 17 Dec 2007 16:50:04 +0000 (GMT) +Message-ID: <200712171650.lBHGoCkO031225@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0 + for ; + Mon, 17 Dec 2007 16:49:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CC8DB3A93E + for ; Mon, 17 Dec 2007 16:50:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGoClg031227 + for ; Mon, 17 Dec 2007 11:50:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGoCkO031225 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:50:12 -0500 +Date: Mon, 17 Dec 2007 11:50:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39372 - citations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:52:30 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39372 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 11:50:08 -0500 (Mon, 17 Dec 2007) +New Revision: 39372 + +Modified: +citations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseConfigurationService.java +Log: +SAK-12447 Fixed possible failures in retrieving values from the Cache + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 11:52:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:52:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:52:21 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id lBHGqKt0011756; + Mon, 17 Dec 2007 11:52:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4766A93D.60D17.14217 ; + 17 Dec 2007 11:52:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5E381A1281; + Mon, 17 Dec 2007 16:50:02 +0000 (GMT) +Message-ID: <200712171650.lBHGoYqi031237@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 393 + for ; + Mon, 17 Dec 2007 16:49:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 544503A990 + for ; Mon, 17 Dec 2007 16:50:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGoYHY031239 + for ; Mon, 17 Dec 2007 11:50:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGoYqi031237 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:50:34 -0500 +Date: Mon, 17 Dec 2007 11:50:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39373 - message/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:52:21 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39373 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 11:50:30 -0500 (Mon, 17 Dec 2007) +New Revision: 39373 + +Modified: +message/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl/BaseMessageService.java +Log: +SAK-12447 Fixed possible failures in retrieving values from the Cache + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 11:51:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:51:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:51:47 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id lBHGpi1m022660; + Mon, 17 Dec 2007 11:51:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4766A91A.71DB5.10007 ; + 17 Dec 2007 11:51:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 23608A23DE; + Mon, 17 Dec 2007 16:49:10 +0000 (GMT) +Message-ID: <200712171649.lBHGngHq031213@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 653 + for ; + Mon, 17 Dec 2007 16:48:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD7D83A939 + for ; Mon, 17 Dec 2007 16:49:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGngBB031215 + for ; Mon, 17 Dec 2007 11:49:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGngHq031213 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:49:42 -0500 +Date: Mon, 17 Dec 2007 11:49:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39371 - calendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:51:47 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39371 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 11:49:38 -0500 (Mon, 17 Dec 2007) +New Revision: 39371 + +Modified: +calendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +Log: +SAK-12447 Fixed possible failures in retrieving values from the Cache + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 11:49:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:49:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:49:46 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by brazil.mail.umich.edu () with ESMTP id lBHGnjAG020959; + Mon, 17 Dec 2007 11:49:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4766A87D.9330D.7439 ; + 17 Dec 2007 11:49:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E4DFCA1281; + Mon, 17 Dec 2007 16:47:55 +0000 (GMT) +Message-ID: <200712171648.lBHGmWMo031201@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284 + for ; + Mon, 17 Dec 2007 16:47:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 751CA3A867 + for ; Mon, 17 Dec 2007 16:48:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGmXrd031203 + for ; Mon, 17 Dec 2007 11:48:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGmWMo031201 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:48:32 -0500 +Date: Mon, 17 Dec 2007 11:48:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39370 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:49:46 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39370 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 11:48:28 -0500 (Mon, 17 Dec 2007) +New Revision: 39370 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +SAK-12447 Fixed possible failures in retrieving values from the Cache + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Mon Dec 17 11:48:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:48:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:48:19 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lBHGmJdE028405; + Mon, 17 Dec 2007 11:48:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4766A84D.28B6D.10070 ; + 17 Dec 2007 11:48:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2456BA23D2; + Mon, 17 Dec 2007 16:46:58 +0000 (GMT) +Message-ID: <200712171647.lBHGlMRd031176@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256 + for ; + Mon, 17 Dec 2007 16:45:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5BAAA3A820 + for ; Mon, 17 Dec 2007 16:47:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGlMKq031178 + for ; Mon, 17 Dec 2007 11:47:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGlMRd031176 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:47:22 -0500 +Date: Mon, 17 Dec 2007 11:47:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39368 - in sam/trunk: samigo-app/src/java/org/sakaiproject/tool/assessment/bundle samigo-services/src/java/org/sakaiproject/tool/assessment/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:48:19 2007 +X-DSPAM-Confidence: 0.9805 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39368 + +Author: nuno@ufp.pt +Date: 2007-12-17 11:46:54 -0500 (Mon, 17 Dec 2007) +New Revision: 39368 + +Added: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_pt_PT.properties +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_pt_PT.properties +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 11:48:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:48:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:48:17 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by casino.mail.umich.edu () with ESMTP id lBHGmGTU026058; + Mon, 17 Dec 2007 11:48:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4766A84B.8B90.27980 ; + 17 Dec 2007 11:48:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 90BD2A23D7; + Mon, 17 Dec 2007 16:46:56 +0000 (GMT) +Message-ID: <200712171647.lBHGlZWv031188@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 883 + for ; + Mon, 17 Dec 2007 16:46:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A3A853A820 + for ; Mon, 17 Dec 2007 16:47:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGlZIi031190 + for ; Mon, 17 Dec 2007 11:47:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGlZWv031188 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:47:35 -0500 +Date: Mon, 17 Dec 2007 11:47:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39369 - alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:48:17 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39369 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 11:47:30 -0500 (Mon, 17 Dec 2007) +New Revision: 39369 + +Modified: +alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java +Log: +SAK-12447 Fixed possible failures in retrieving values from the Cache + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 11:47:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:47:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:47:49 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lBHGlkY6005795; + Mon, 17 Dec 2007 11:47:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4766A82B.F1D30.9429 ; + 17 Dec 2007 11:47:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AA09DA23D1; + Mon, 17 Dec 2007 16:46:03 +0000 (GMT) +Message-ID: <200712171646.lBHGkZms031164@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800 + for ; + Mon, 17 Dec 2007 16:45:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3C8843A7E1 + for ; Mon, 17 Dec 2007 16:46:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGkZ5J031166 + for ; Mon, 17 Dec 2007 11:46:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGkZms031164 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:46:35 -0500 +Date: Mon, 17 Dec 2007 11:46:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39367 - in memory/trunk/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakai/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:47:49 2007 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39367 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 11:46:25 -0500 (Mon, 17 Dec 2007) +New Revision: 39367 + +Modified: +memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java +Log: +SAK-12447 +Fixed cacheContainsKey Method and added long running unit test to reproduce + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 11:45:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:45:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:45:33 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id lBHGjWGr006966; + Mon, 17 Dec 2007 11:45:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4766A79E.91309.20600 ; + 17 Dec 2007 11:45:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B513DA232F; + Mon, 17 Dec 2007 16:44:12 +0000 (GMT) +Message-ID: <200712171644.lBHGinPU031152@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 445 + for ; + Mon, 17 Dec 2007 16:43:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 96E423A7D8 + for ; Mon, 17 Dec 2007 16:44:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGinkF031154 + for ; Mon, 17 Dec 2007 11:44:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGinPU031152 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:44:49 -0500 +Date: Mon, 17 Dec 2007 11:44:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39366 - in gradebook/branches/oncourse_opc_122007/app: sakai-tool/src/webapp/WEB-INF ui/src/bundle/org/sakaiproject/tool/gradebook/bundle ui/src/java/org/sakaiproject/tool/gradebook/jsf ui/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:45:33 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39366 + +Author: cwen@iupui.edu +Date: 2007-12-17 11:44:47 -0500 (Mon, 17 Dec 2007) +New Revision: 39366 + +Added: +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java +Modified: +gradebook/branches/oncourse_opc_122007/app/sakai-tool/src/webapp/WEB-INF/faces-application.xml +gradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/assignmentDetails.jsp +Log: +SAK-12485 => svn merge -r39364:39365 https://source.sakaiproject.org/svn/gradebook/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 11:38:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:38:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:38:15 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by score.mail.umich.edu () with ESMTP id lBHGcE5Z020969; + Mon, 17 Dec 2007 11:38:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4766A5E7.E28F2.14657 ; + 17 Dec 2007 11:38:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 142ECA23A1; + Mon, 17 Dec 2007 16:36:58 +0000 (GMT) +Message-ID: <200712171637.lBHGba3h031140@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619 + for ; + Mon, 17 Dec 2007 16:36:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 20DB63A624 + for ; Mon, 17 Dec 2007 16:37:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGbab9031142 + for ; Mon, 17 Dec 2007 11:37:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGba3h031140 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:37:36 -0500 +Date: Mon, 17 Dec 2007 11:37:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39365 - in gradebook/trunk/app: sakai-tool/src/webapp/WEB-INF ui/src/bundle/org/sakaiproject/tool/gradebook/bundle ui/src/java/org/sakaiproject/tool/gradebook/jsf ui/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:38:15 2007 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39365 + +Author: cwen@iupui.edu +Date: 2007-12-17 11:37:34 -0500 (Mon, 17 Dec 2007) +New Revision: 39365 + +Added: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java +Modified: +gradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/faces-application.xml +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12485 +=> +add validation for non-graded grades. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Mon Dec 17 11:12:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:12:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:12:38 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by mission.mail.umich.edu () with ESMTP id lBHGCbgK017524; + Mon, 17 Dec 2007 11:12:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47669FF0.1F9DF.4144 ; + 17 Dec 2007 11:12:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 13C1EA21DB; + Mon, 17 Dec 2007 16:12:29 +0000 (GMT) +Message-ID: <200712171612.lBHGCBX0031082@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 81 + for ; + Mon, 17 Dec 2007 16:12:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DAF0EB115 + for ; Mon, 17 Dec 2007 16:12:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGCBF2031084 + for ; Mon, 17 Dec 2007 11:12:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGCBX0031082 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:12:11 -0500 +Date: Mon, 17 Dec 2007 11:12:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39364 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:12:38 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39364 + +Author: arwhyte@umich.edu +Date: 2007-12-17 11:12:09 -0500 (Mon, 17 Dec 2007) +New Revision: 39364 + +Modified: +component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +SAK-12481 Removed sakai.site.roster from list of stealthed tools controlled by the stealthTools property in sakai.properties + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Mon Dec 17 11:10:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 11:10:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 11:10:05 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lBHGA4Ig008671; + Mon, 17 Dec 2007 11:10:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47669F54.7411C.19115 ; + 17 Dec 2007 11:09:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 95A4BA21D1; + Mon, 17 Dec 2007 16:09:49 +0000 (GMT) +Message-ID: <200712171609.lBHG9X1J031067@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 782 + for ; + Mon, 17 Dec 2007 16:09:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 53C7A35EB2 + for ; Mon, 17 Dec 2007 16:09:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHG9Ysl031069 + for ; Mon, 17 Dec 2007 11:09:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHG9X1J031067 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:09:33 -0500 +Date: Mon, 17 Dec 2007 11:09:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39363 - component/trunk/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 11:10:05 2007 +X-DSPAM-Confidence: 0.8479 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39363 + +Author: arwhyte@umich.edu +Date: 2007-12-17 11:09:31 -0500 (Mon, 17 Dec 2007) +New Revision: 39363 + +Modified: +component/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +SAK-12481 Removed sakai.site.roster from list of stealthed tools controlled by the stealthTools property in sakai.properties + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Dec 17 10:53:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 10:53:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 10:53:50 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by awakenings.mail.umich.edu () with ESMTP id lBHFrn42009064; + Mon, 17 Dec 2007 10:53:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47669B86.BDE0E.23053 ; + 17 Dec 2007 10:53:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 935D2A21D1; + Mon, 17 Dec 2007 15:53:40 +0000 (GMT) +Message-ID: <200712171553.lBHFrAfL031006@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 825 + for ; + Mon, 17 Dec 2007 15:53:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E75073AA2F + for ; Mon, 17 Dec 2007 15:53:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHFrA4J031008 + for ; Mon, 17 Dec 2007 10:53:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHFrAfL031006 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 10:53:10 -0500 +Date: Mon, 17 Dec 2007 10:53:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39362 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 10:53:50 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39362 + +Author: rjlowe@iupui.edu +Date: 2007-12-17 10:53:09 -0500 (Mon, 17 Dec 2007) +New Revision: 39362 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java +Log: +SAK-12465 - Non-Standard grades are not showing up in GB table + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 10:00:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 10:00:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 10:00:58 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lBHF0vEH032259; + Mon, 17 Dec 2007 10:00:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47668F22.A236F.17322 ; + 17 Dec 2007 10:00:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D02DEA215F; + Mon, 17 Dec 2007 15:00:49 +0000 (GMT) +Message-ID: <200712171500.lBHF0Pwi030990@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 834 + for ; + Mon, 17 Dec 2007 15:00:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 650263A9EA + for ; Mon, 17 Dec 2007 15:00:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHF0P0I030992 + for ; Mon, 17 Dec 2007 10:00:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHF0Pwi030990 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 10:00:25 -0500 +Date: Mon, 17 Dec 2007 10:00:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39361 - in gradebook/branches/sakai_2-5-x: app/sakai-tool/src/webapp/WEB-INF app/standalone-app/src/webapp/WEB-INF app/ui/src/java/org/sakaiproject/tool/gradebook/ui service/api/src/java/org/sakaiproject/service/gradebook/shared service/api/src/java/org/sakaiproject/tool/gradebook/facades service/impl/src/java/org/sakaiproject/component/gradebook service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections service/sakai-pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 10:00:58 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39361 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 10:00:22 -0500 (Mon, 17 Dec 2007) +New Revision: 39361 + +Modified: +gradebook/branches/sakai_2-5-x/app/sakai-tool/src/webapp/WEB-INF/spring-facades.xml +gradebook/branches/sakai_2-5-x/app/standalone-app/src/webapp/WEB-INF/spring-facades.xml +gradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java +gradebook/branches/sakai_2-5-x/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookPermissionService.java +gradebook/branches/sakai_2-5-x/service/api/src/java/org/sakaiproject/tool/gradebook/facades/Authz.java +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookPermissionServiceImpl.java +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +gradebook/branches/sakai_2-5-x/service/sakai-pack/src/webapp/WEB-INF/components.xml +Log: +svn merge -r39137:39138 https://source.sakaiproject.org/svn/gradebook/trunk +U app/sakai-tool/src/webapp/WEB-INF/spring-facades.xml +U app/standalone-app/src/webapp/WEB-INF/spring-facades.xml +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java +C service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +U service/impl/src/java/org/sakaiproject/component/gradebook/GradebookPermissionServiceImpl.java +U service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +U service/sakai-pack/src/webapp/WEB-INF/components.xml +U service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookPermissionService.java +U service/api/src/java/org/sakaiproject/tool/gradebook/facades/Authz.java + +------------------------------------------------------------------------ +r39138 | wagnermr@iupui.edu | 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007) | 3 lines + +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz +------------------------------------------------------------------------ + +svn merge -r39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk +G service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java + +------------------------------------------------------------------------ +r39185 | wagnermr@iupui.edu | 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007) | 4 lines + +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz +fixed class cast exception +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Mon Dec 17 09:36:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 09:36:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 09:36:13 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by brazil.mail.umich.edu () with ESMTP id lBHEaCl2009637; + Mon, 17 Dec 2007 09:36:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47668956.C2665.3805 ; + 17 Dec 2007 09:36:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 80254A20B5; + Mon, 17 Dec 2007 14:36:05 +0000 (GMT) +Message-ID: <200712171435.lBHEZjnl030970@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323 + for ; + Mon, 17 Dec 2007 14:35:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5132C3A9A9 + for ; Mon, 17 Dec 2007 14:35:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHEZjuc030972 + for ; Mon, 17 Dec 2007 09:35:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHEZjnl030970 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 09:35:45 -0500 +Date: Mon, 17 Dec 2007 09:35:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39360 - oncourse/trunk/src/calendar/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 09:36:13 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39360 + +Author: gjthomas@iupui.edu +Date: 2007-12-17 09:35:44 -0500 (Mon, 17 Dec 2007) +New Revision: 39360 + +Modified: +oncourse/trunk/src/calendar/calendar-tool/tool/src/bundle/calendar.properties +Log: +oncourse overlay property for calendar + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Mon Dec 17 09:23:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 09:23:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 09:23:44 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lBHENhku025670; + Mon, 17 Dec 2007 09:23:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47668665.8A91F.24858 ; + 17 Dec 2007 09:23:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 62CA19BACF; + Mon, 17 Dec 2007 14:23:34 +0000 (GMT) +Message-ID: <200712171422.lBHEMvTW030956@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 371 + for ; + Mon, 17 Dec 2007 14:23:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 232323A996 + for ; Mon, 17 Dec 2007 14:23:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHEMwrM030958 + for ; Mon, 17 Dec 2007 09:22:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHEMvTW030956 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 09:22:57 -0500 +Date: Mon, 17 Dec 2007 09:22:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39359 - assignment/trunk/assignment-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 09:23:44 2007 +X-DSPAM-Confidence: 0.9790 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39359 + +Author: nuno@ufp.pt +Date: 2007-12-17 09:22:52 -0500 (Mon, 17 Dec 2007) +New Revision: 39359 + +Added: +assignment/trunk/assignment-bundles/assignment_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 17 09:20:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 09:20:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 09:20:51 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by mission.mail.umich.edu () with ESMTP id lBHEKoTG018304; + Mon, 17 Dec 2007 09:20:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476685AB.98232.14764 ; + 17 Dec 2007 09:20:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A869FA0CE2; + Mon, 17 Dec 2007 14:20:26 +0000 (GMT) +Message-ID: <200712171420.lBHEK76M030944@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 542 + for ; + Mon, 17 Dec 2007 14:20:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A47D35EDC + for ; Mon, 17 Dec 2007 14:20:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHEK7N0030946 + for ; Mon, 17 Dec 2007 09:20:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHEK76M030944 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 09:20:07 -0500 +Date: Mon, 17 Dec 2007 09:20:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39358 - gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 09:20:51 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39358 + +Author: wagnermr@iupui.edu +Date: 2007-12-17 09:20:06 -0500 (Mon, 17 Dec 2007) +New Revision: 39358 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +Re-adding methods to API that were lost in a previous commit + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 08:56:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 08:56:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 08:56:39 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lBHDucId029621; + Mon, 17 Dec 2007 08:56:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47668007.A5FD2.8272 ; + 17 Dec 2007 08:56:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 368A1A1EE7; + Mon, 17 Dec 2007 13:56:20 +0000 (GMT) +Message-ID: <200712171356.lBHDu3rF030883@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 496 + for ; + Mon, 17 Dec 2007 13:56:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D6F335ECF + for ; Mon, 17 Dec 2007 13:56:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDu3Hr030885 + for ; Mon, 17 Dec 2007 08:56:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDu3rF030883 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:56:03 -0500 +Date: Mon, 17 Dec 2007 08:56:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39357 - oncourse/trunk/overlay/sakai/org.sakaiproject.citation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 08:56:39 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39357 + +Author: cwen@iupui.edu +Date: 2007-12-17 08:56:02 -0500 (Mon, 17 Dec 2007) +New Revision: 39357 + +Modified: +oncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-configuration.xml +Log: +get IUPUI configuration back. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 08:32:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 08:32:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 08:32:45 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by panther.mail.umich.edu () with ESMTP id lBHDWjcH019273; + Mon, 17 Dec 2007 08:32:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47667A75.1F6ED.15011 ; + 17 Dec 2007 08:32:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C5B7FA0527; + Mon, 17 Dec 2007 13:32:39 +0000 (GMT) +Message-ID: <200712171332.lBHDWHN1030833@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 785 + for ; + Mon, 17 Dec 2007 13:32:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3B42734C0F + for ; Mon, 17 Dec 2007 13:32:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDWIef030835 + for ; Mon, 17 Dec 2007 08:32:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDWHN1030833 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:32:17 -0500 +Date: Mon, 17 Dec 2007 08:32:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39356 - search/trunk/search-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 08:32:45 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39356 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 08:32:13 -0500 (Mon, 17 Dec 2007) +New Revision: 39356 + +Modified: +search/trunk/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml +Log: +SAK-12459 +threadLocalManager setting in the wrong bean. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 08:27:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 08:27:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 08:27:11 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by brazil.mail.umich.edu () with ESMTP id lBHDRBJH012135; + Mon, 17 Dec 2007 08:27:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4766792A.4880E.11754 ; + 17 Dec 2007 08:27:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DFBA5A2063; + Mon, 17 Dec 2007 13:27:09 +0000 (GMT) +Message-ID: <200712171326.lBHDQdDZ030819@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 343 + for ; + Mon, 17 Dec 2007 13:26:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A883534C0F + for ; Mon, 17 Dec 2007 13:26:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDQd2j030821 + for ; Mon, 17 Dec 2007 08:26:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDQdDZ030819 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:26:39 -0500 +Date: Mon, 17 Dec 2007 08:26:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39355 - oncourse/trunk/overlay/sakai/org.sakaiproject.citation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 08:27:11 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39355 + +Author: cwen@iupui.edu +Date: 2007-12-17 08:26:38 -0500 (Mon, 17 Dec 2007) +New Revision: 39355 + +Added: +oncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-database.xml +Modified: +oncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-configuration.xml +Log: +update overlay for citation for IUPUI library. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Dec 17 08:18:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 08:18:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 08:18:14 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id lBHDIDLT031685; + Mon, 17 Dec 2007 08:18:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4766770D.711C4.24336 ; + 17 Dec 2007 08:18:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8093EA1C23; + Mon, 17 Dec 2007 13:17:58 +0000 (GMT) +Message-ID: <200712171317.lBHDHak9030806@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516 + for ; + Mon, 17 Dec 2007 13:17:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 015693A99C + for ; Mon, 17 Dec 2007 13:17:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDHa16030808 + for ; Mon, 17 Dec 2007 08:17:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDHak9030806 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:17:36 -0500 +Date: Mon, 17 Dec 2007 08:17:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39354 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 08:18:14 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39354 + +Author: cwen@iupui.edu +Date: 2007-12-17 08:17:35 -0500 (Mon, 17 Dec 2007) +New Revision: 39354 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for r39332. Greg - calendar fix. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 06:08:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 06:08:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 06:08:47 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by mission.mail.umich.edu () with ESMTP id lBHB8j2j019608; + Mon, 17 Dec 2007 06:08:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 476658B6.E4D19.10421 ; + 17 Dec 2007 06:08:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8CA65A1DFB; + Mon, 17 Dec 2007 11:08:37 +0000 (GMT) +Message-ID: <200712171108.lBHB8E6L030538@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 782 + for ; + Mon, 17 Dec 2007 11:08:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB4043A7D5 + for ; Mon, 17 Dec 2007 11:08:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHB8ENt030540 + for ; Mon, 17 Dec 2007 06:08:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHB8E6L030538 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 06:08:14 -0500 +Date: Mon, 17 Dec 2007 06:08:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39353 - search/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 06:08:47 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39353 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 06:08:08 -0500 (Mon, 17 Dec 2007) +New Revision: 39353 + +Added: +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java +Log: +SAK-12459 +Missing class fpor unit tests + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 17 05:20:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 05:20:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 05:20:55 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id lBHAKr68031737; + Mon, 17 Dec 2007 05:20:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47664D75.610DF.25841 ; + 17 Dec 2007 05:20:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1E50CA1CCA; + Mon, 17 Dec 2007 10:20:40 +0000 (GMT) +Message-ID: <200712171020.lBHAKGVn030505@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897 + for ; + Mon, 17 Dec 2007 10:20:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D59112F8EF + for ; Mon, 17 Dec 2007 10:20:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHAKGh6030507 + for ; Mon, 17 Dec 2007 05:20:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHAKGVn030505 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 05:20:16 -0500 +Date: Mon, 17 Dec 2007 05:20:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39352 - in memory/trunk/memory-impl: . impl impl/src impl/src/test impl/src/test/org impl/src/test/org/sakai impl/src/test/org/sakai/memory impl/src/test/org/sakai/memory/impl impl/src/test/org/sakai/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 05:20:55 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39352 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-17 05:20:01 -0500 (Mon, 17 Dec 2007) +New Revision: 39352 + +Added: +memory/trunk/memory-impl/impl/src/test/ +memory/trunk/memory-impl/impl/src/test/org/ +memory/trunk/memory-impl/impl/src/test/org/sakai/ +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/ +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/ +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/ +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockBasicMemoryService.java +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockEventTrackingService.java +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockSecurityService.java +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockUsageSessionService.java +memory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/ehcache.xml +Modified: +memory/trunk/memory-impl/.classpath +memory/trunk/memory-impl/impl/pom.xml +Log: +SAK-12447 + +Added Unit Test to memory service to check invalidation process, +no errors found in test. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Mon Dec 17 04:37:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 04:37:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 04:37:10 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id lBH9b82B032206; + Mon, 17 Dec 2007 04:37:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47664332.CC122.24391 ; + 17 Dec 2007 04:36:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7B6345130C; + Mon, 17 Dec 2007 09:36:48 +0000 (GMT) +Message-ID: <200712170936.lBH9aCfD030471@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 597 + for ; + Mon, 17 Dec 2007 09:36:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 66A3031B5D + for ; Mon, 17 Dec 2007 09:36:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH9aD4R030473 + for ; Mon, 17 Dec 2007 04:36:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH9aCfD030471 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 04:36:13 -0500 +Date: Mon, 17 Dec 2007 04:36:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39351 - in gradebook/trunk/helper-app/src: java/org/sakaiproject/gradebook/tool/helper webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 04:37:09 2007 +X-DSPAM-Confidence: 0.8419 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39351 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-17 04:36:03 -0500 (Mon, 17 Dec 2007) +New Revision: 39351 + +Modified: +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java +gradebook/trunk/helper-app/src/webapp/WEB-INF/web.xml +Log: +NOJIRA Works with the entity broker now. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Mon Dec 17 00:25:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 00:25:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 00:25:08 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lBH5P8tT028662; + Mon, 17 Dec 2007 00:25:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4766082E.CB2B5.29478 ; + 17 Dec 2007 00:25:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 37EF3A180A; + Mon, 17 Dec 2007 05:24:56 +0000 (GMT) +Message-ID: <200712170524.lBH5Od1f029849@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 614 + for ; + Mon, 17 Dec 2007 05:24:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CDE3535A2A + for ; Mon, 17 Dec 2007 05:24:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH5Od2H029851 + for ; Mon, 17 Dec 2007 00:24:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH5Od1f029849 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 00:24:39 -0500 +Date: Mon, 17 Dec 2007 00:24:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39350 - component/trunk/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 00:25:08 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39350 + +Author: arwhyte@umich.edu +Date: 2007-12-17 00:24:36 -0500 (Mon, 17 Dec 2007) +New Revision: 39350 + +Modified: +component/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +stealhTools: removed duplicate sakai.site.roster entry; reordered list in alpha order + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Mon Dec 17 00:23:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 00:23:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 00:23:26 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lBH5NPhU014160; + Mon, 17 Dec 2007 00:23:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 476607C0.1F1EA.31759 ; + 17 Dec 2007 00:23:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 40FB3A181A; + Mon, 17 Dec 2007 05:22:50 +0000 (GMT) +Message-ID: <200712170522.lBH5MFMD029831@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 988 + for ; + Mon, 17 Dec 2007 05:22:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD04D399B4 + for ; Mon, 17 Dec 2007 05:22:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH5MFRG029833 + for ; Mon, 17 Dec 2007 00:22:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH5MFMD029831 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 00:22:15 -0500 +Date: Mon, 17 Dec 2007 00:22:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39349 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 00:23:26 2007 +X-DSPAM-Confidence: 0.8487 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39349 + +Author: arwhyte@umich.edu +Date: 2007-12-17 00:22:13 -0500 (Mon, 17 Dec 2007) +New Revision: 39349 + +Modified: +component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +SAK-12257 incorrect stealthed tools in 2-5-x branch; unstealthed OSP and Samigo, removed sakai.assignment (retired), reordered list in alpha order. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Mon Dec 17 00:02:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 17 Dec 2007 00:02:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 17 Dec 2007 00:02:37 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id lBH52aMP008828; + Mon, 17 Dec 2007 00:02:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 476602E7.7F6F8.3806 ; + 17 Dec 2007 00:02:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7A8486F106; + Mon, 17 Dec 2007 05:02:35 +0000 (GMT) +Message-ID: <200712170502.lBH529PE029810@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 216 + for ; + Mon, 17 Dec 2007 05:02:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 84A0E3560B + for ; Mon, 17 Dec 2007 05:02:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH52912029812 + for ; Mon, 17 Dec 2007 00:02:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH529PE029810 + for source@collab.sakaiproject.org; Mon, 17 Dec 2007 00:02:09 -0500 +Date: Mon, 17 Dec 2007 00:02:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39348 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 17 00:02:37 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39348 + +Author: zach.thomas@txstate.edu +Date: 2007-12-17 00:02:06 -0500 (Mon, 17 Dec 2007) +New Revision: 39348 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +removed referencs to Criterion and ConditionTemplate, which aren't ready for inclusion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Sun Dec 16 23:50:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 23:50:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 23:50:58 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by flawless.mail.umich.edu () with ESMTP id lBH4ovtD028026; + Sun, 16 Dec 2007 23:50:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4766002C.9C22C.14978 ; + 16 Dec 2007 23:50:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8A3ADA1781; + Mon, 17 Dec 2007 04:50:20 +0000 (GMT) +Message-ID: <200712170449.lBH4nHS6029790@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 746 + for ; + Mon, 17 Dec 2007 04:49:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 639703560B + for ; Mon, 17 Dec 2007 04:49:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH4nHh4029792 + for ; Sun, 16 Dec 2007 23:49:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH4nHS6029790 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 23:49:17 -0500 +Date: Sun, 16 Dec 2007 23:49:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39347 - event/branches/SAK-12478/event-api/api/src/java/org/sakaiproject/event/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 23:50:58 2007 +X-DSPAM-Confidence: 0.8432 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39347 + +Author: zach.thomas@txstate.edu +Date: 2007-12-16 23:49:14 -0500 (Sun, 16 Dec 2007) +New Revision: 39347 + +Added: +event/branches/SAK-12478/event-api/api/src/java/org/sakaiproject/event/api/Obsoletable.java +Log: +added Obsoletable interface to the event module + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Sun Dec 16 23:07:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 23:07:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 23:07:56 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lBH47tQP027669; + Sun, 16 Dec 2007 23:07:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4765F615.1F9A6.9593 ; + 16 Dec 2007 23:07:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4073179FAE; + Mon, 17 Dec 2007 04:07:45 +0000 (GMT) +Message-ID: <200712170407.lBH47Ri5029754@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 627 + for ; + Mon, 17 Dec 2007 04:07:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 18FCD34BBD + for ; Mon, 17 Dec 2007 04:07:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH47R0I029756 + for ; Sun, 16 Dec 2007 23:07:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH47Ri5029754 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 23:07:27 -0500 +Date: Sun, 16 Dec 2007 23:07:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39346 - in content/branches/SAK-11543: content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/cover content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 23:07:56 2007 +X-DSPAM-Confidence: 0.8426 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39346 + +Author: zach.thomas@txstate.edu +Date: 2007-12-16 23:07:18 -0500 (Sun, 16 Dec 2007) +New Revision: 39346 + +Modified: +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +decided to use ContentHostingService for static final String constants instead of ResourceProperties within entity + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Sun Dec 16 22:43:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 22:43:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 22:43:26 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by chaos.mail.umich.edu () with ESMTP id lBH3hPqg023455; + Sun, 16 Dec 2007 22:43:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4765F056.E9405.12998 ; + 16 Dec 2007 22:43:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D1C0A7057A; + Mon, 17 Dec 2007 03:42:52 +0000 (GMT) +Message-ID: <200712170342.lBH3gufQ029740@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 164 + for ; + Mon, 17 Dec 2007 03:42:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ADEDF2370D + for ; Mon, 17 Dec 2007 03:42:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3gvNk029742 + for ; Sun, 16 Dec 2007 22:42:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3gufQ029740 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:42:57 -0500 +Date: Sun, 16 Dec 2007 22:42:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39345 - gradebook/branches/SAK-11542/app/standalone-app +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 22:43:26 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39345 + +Author: zach.thomas@txstate.edu +Date: 2007-12-16 22:42:54 -0500 (Sun, 16 Dec 2007) +New Revision: 39345 + +Modified: +gradebook/branches/SAK-11542/app/standalone-app/project.xml +Log: +declaring a dependency on sakai-component to make tests run properly + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Sun Dec 16 22:40:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 22:40:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 22:40:14 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lBH3eDFU021145; + Sun, 16 Dec 2007 22:40:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4765EF98.4CC7.3951 ; + 16 Dec 2007 22:40:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9F89B7057A; + Mon, 17 Dec 2007 03:39:28 +0000 (GMT) +Message-ID: <200712170339.lBH3d7Wh029728@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 16 + for ; + Mon, 17 Dec 2007 03:39:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 71ADB3501E + for ; Mon, 17 Dec 2007 03:39:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3d7Ct029730 + for ; Sun, 16 Dec 2007 22:39:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3d7Wh029728 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:39:07 -0500 +Date: Sun, 16 Dec 2007 22:39:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39344 - event/branches/SAK-12478/event-impl/pack +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 22:40:14 2007 +X-DSPAM-Confidence: 0.9800 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39344 + +Author: zach.thomas@txstate.edu +Date: 2007-12-16 22:39:04 -0500 (Sun, 16 Dec 2007) +New Revision: 39344 + +Modified: +event/branches/SAK-12478/event-impl/pack/project.xml +Log: +synching with newer code in Georgia Tech repository + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Sun Dec 16 22:29:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 22:29:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 22:29:54 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by awakenings.mail.umich.edu () with ESMTP id lBH3TrRa018556; + Sun, 16 Dec 2007 22:29:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4765ED2C.601D4.25393 ; + 16 Dec 2007 22:29:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8C4247057A; + Mon, 17 Dec 2007 03:29:45 +0000 (GMT) +Message-ID: <200712170329.lBH3TRpS029714@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425 + for ; + Mon, 17 Dec 2007 03:29:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA7863501E + for ; Mon, 17 Dec 2007 03:29:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3TRSX029716 + for ; Sun, 16 Dec 2007 22:29:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3TRpS029714 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:29:27 -0500 +Date: Sun, 16 Dec 2007 22:29:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39343 - event/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 22:29:54 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39343 + +Author: zach.thomas@txstate.edu +Date: 2007-12-16 22:29:24 -0500 (Sun, 16 Dec 2007) +New Revision: 39343 + +Added: +event/branches/SAK-12478/ +Log: +copying 2.4.x branch of event/ for conditional release purposes + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Sun Dec 16 22:25:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 22:25:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 22:25:32 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lBH3PVUe022864; + Sun, 16 Dec 2007 22:25:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4765EC25.99B3E.19119 ; + 16 Dec 2007 22:25:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74B3D7057A; + Mon, 17 Dec 2007 03:25:21 +0000 (GMT) +Message-ID: <200712170324.lBH3Ov5n029702@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 186 + for ; + Mon, 17 Dec 2007 03:24:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AF38A3501E + for ; Mon, 17 Dec 2007 03:24:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3OvmV029704 + for ; Sun, 16 Dec 2007 22:24:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3Ov5n029702 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:24:57 -0500 +Date: Sun, 16 Dec 2007 22:24:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39342 - in content/branches/SAK-11543: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 22:25:32 2007 +X-DSPAM-Confidence: 0.8427 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39342 + +Author: zach.thomas@txstate.edu +Date: 2007-12-16 22:24:48 -0500 (Sun, 16 Dec 2007) +New Revision: 39342 + +Modified: +content/branches/SAK-11543/content-bundles/content.properties +content/branches/SAK-11543/content-bundles/types.properties +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +content/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties_scripts.vm +Log: +synching with the newer code in Georgia Tech repository + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Sun Dec 16 22:01:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 22:01:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 22:01:55 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by awakenings.mail.umich.edu () with ESMTP id lBH31snC011247; + Sun, 16 Dec 2007 22:01:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4765E69D.6D9EE.20514 ; + 16 Dec 2007 22:01:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 530749AAB0; + Mon, 17 Dec 2007 03:01:45 +0000 (GMT) +Message-ID: <200712170301.lBH31I32029679@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256 + for ; + Mon, 17 Dec 2007 03:01:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1BFA734EDB + for ; Mon, 17 Dec 2007 03:01:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH31IpQ029681 + for ; Sun, 16 Dec 2007 22:01:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH31I32029679 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:01:18 -0500 +Date: Sun, 16 Dec 2007 22:01:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r39341 - in gradebook/branches/SAK-11542: app/ui/src/java/org/sakaiproject/tool/gradebook/ui service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 22:01:55 2007 +X-DSPAM-Confidence: 0.9786 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39341 + +Author: zach.thomas@txstate.edu +Date: 2007-12-16 22:01:11 -0500 (Sun, 16 Dec 2007) +New Revision: 39341 + +Modified: +gradebook/branches/SAK-11542/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/branches/SAK-11542/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java +gradebook/branches/SAK-11542/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +gradebook/branches/SAK-11542/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookExternalAssessmentServiceImpl.java +Log: +synching up with newer code from the Georgia Tech repository + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Dec 16 21:34:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 21:34:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 21:34:16 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBH2YGm7013827; + Sun, 16 Dec 2007 21:34:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4765E021.AD5E2.25208 ; + 16 Dec 2007 21:34:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3DE1078834; + Mon, 17 Dec 2007 02:34:03 +0000 (GMT) +Message-ID: <200712170233.lBH2Xm2d029665@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1021 + for ; + Mon, 17 Dec 2007 02:33:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B52E134BBD + for ; Mon, 17 Dec 2007 02:33:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH2Xmfw029667 + for ; Sun, 16 Dec 2007 21:33:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH2Xm2d029665 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 21:33:48 -0500 +Date: Sun, 16 Dec 2007 21:33:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39340 - citations/branches/sakai_2-4-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 21:34:16 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39340 + +Author: jimeng@umich.edu +Date: 2007-12-16 21:33:46 -0500 (Sun, 16 Dec 2007) +New Revision: 39340 + +Modified: +citations/branches/sakai_2-4-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java +Log: +SAK-10966 +Merging changes for SAK-10966 to sakai_2-4-x btanch of citations. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Dec 16 21:25:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 21:25:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 21:25:56 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id lBH2PtiO032021; + Sun, 16 Dec 2007 21:25:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4765DE2D.A1733.11691 ; + 16 Dec 2007 21:25:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9F68578834; + Mon, 17 Dec 2007 02:25:46 +0000 (GMT) +Message-ID: <200712170225.lBH2PRmv029629@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323 + for ; + Mon, 17 Dec 2007 02:25:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1881734BBD + for ; Mon, 17 Dec 2007 02:25:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH2PR57029631 + for ; Sun, 16 Dec 2007 21:25:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH2PRmv029629 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 21:25:27 -0500 +Date: Sun, 16 Dec 2007 21:25:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39339 - citations/branches/post-2-4/citations-impl/impl/src/java/org/sakaiproject/citation/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 21:25:56 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39339 + +Author: jimeng@umich.edu +Date: 2007-12-16 21:25:25 -0500 (Sun, 16 Dec 2007) +New Revision: 39339 + +Modified: +citations/branches/post-2-4/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java +Log: +SAK-10966 +Merging revision for SAK-10966 to post-2-4 citations branch. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Sun Dec 16 20:40:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 20:40:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 20:40:46 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lBH1ejVk030578; + Sun, 16 Dec 2007 20:40:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4765D398.783F.24119 ; + 16 Dec 2007 20:40:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7613CA15BC; + Mon, 17 Dec 2007 01:39:28 +0000 (GMT) +Message-ID: <200712170140.lBH1eCx6029595@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 125 + for ; + Mon, 17 Dec 2007 01:39:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9DD9831BAF + for ; Mon, 17 Dec 2007 01:40:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH1eCm6029597 + for ; Sun, 16 Dec 2007 20:40:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH1eCx6029595 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 20:40:12 -0500 +Date: Sun, 16 Dec 2007 20:40:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39338 - component/trunk/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 20:40:46 2007 +X-DSPAM-Confidence: 0.9803 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39338 + +Author: arwhyte@umich.edu +Date: 2007-12-16 20:40:10 -0500 (Sun, 16 Dec 2007) +New Revision: 39338 + +Modified: +component/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +Unstealth portfolios, samigo. Remove reference to sakai.assignment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Sun Dec 16 16:53:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 16:53:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 16:53:56 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id lBGLrtPm031933; + Sun, 16 Dec 2007 16:53:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47659E66.AC1E9.1299 ; + 16 Dec 2007 16:53:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BBFFA9F6F0; + Sun, 16 Dec 2007 21:52:18 +0000 (GMT) +Message-ID: <200712162152.lBGLqqXp029499@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 635 + for ; + Sun, 16 Dec 2007 21:51:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 920661FD0C + for ; Sun, 16 Dec 2007 21:52:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBGLqqUs029501 + for ; Sun, 16 Dec 2007 16:52:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBGLqqXp029499 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 16:52:52 -0500 +Date: Sun, 16 Dec 2007 16:52:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39337 - gradebook/trunk/app/ui/src/webapp/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 16:53:56 2007 +X-DSPAM-Confidence: 0.8429 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39337 + +Author: josrodri@iupui.edu +Date: 2007-12-16 16:52:50 -0500 (Sun, 16 Dec 2007) +New Revision: 39337 + +Modified: +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +Log: +SAK-12444, SAK12466: fixed some UI errors introduced by earlier commit + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Sun Dec 16 13:12:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 13:12:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 13:12:31 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id lBGICU3Y017831; + Sun, 16 Dec 2007 13:12:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47656A88.F4209.7107 ; + 16 Dec 2007 13:12:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3754EA0F0C; + Sun, 16 Dec 2007 18:11:04 +0000 (GMT) +Message-ID: <200712161811.lBGIBmAn029355@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 844 + for ; + Sun, 16 Dec 2007 18:10:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9C7AA33E07 + for ; Sun, 16 Dec 2007 18:11:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBGIBn9Q029357 + for ; Sun, 16 Dec 2007 13:11:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBGIBmAn029355 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 13:11:48 -0500 +Date: Sun, 16 Dec 2007 13:11:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39336 - reference/trunk/docs/releaseweb +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 13:12:31 2007 +X-DSPAM-Confidence: 0.9833 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39336 + +Author: arwhyte@umich.edu +Date: 2007-12-16 13:11:02 -0500 (Sun, 16 Dec 2007) +New Revision: 39336 + +Modified: +reference/trunk/docs/releaseweb/index.html +Log: +Text changes + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Sun Dec 16 09:52:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 09:52:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 09:52:42 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by awakenings.mail.umich.edu () with ESMTP id lBGEqf1X014258; + Sun, 16 Dec 2007 09:52:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47653BB4.53D25.18900 ; + 16 Dec 2007 09:52:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0A6C172C12; + Sun, 16 Dec 2007 14:51:04 +0000 (GMT) +Message-ID: <200712161444.lBGEiHG5029209@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 361 + for ; + Sun, 16 Dec 2007 14:50:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0561A24C0D + for ; Sun, 16 Dec 2007 14:52:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBGEiHAm029211 + for ; Sun, 16 Dec 2007 09:44:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBGEiHG5029209 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 09:44:17 -0500 +Date: Sun, 16 Dec 2007 09:44:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39335 - in gradebook/trunk/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 09:52:42 2007 +X-DSPAM-Confidence: 0.7570 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39335 + +Author: josrodri@iupui.edu +Date: 2007-12-16 09:44:12 -0500 (Sun, 16 Dec 2007) +New Revision: 39335 + +Modified: +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12444, SAK12466: delete icon appears on first pane when multiple panes exposed, additional styling changes were needed implementing non-grading option + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Sun Dec 16 03:59:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 03:59:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 03:59:13 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by mission.mail.umich.edu () with ESMTP id lBG8xCVb023289; + Sun, 16 Dec 2007 03:59:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4764E8DA.63F96.27809 ; + 16 Dec 2007 03:59:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 778ABA05D8; + Sun, 16 Dec 2007 08:59:38 +0000 (GMT) +Message-ID: <200712160850.lBG8onXv015998@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 844 + for ; + Sun, 16 Dec 2007 08:59:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ADFF13481A + for ; Sun, 16 Dec 2007 08:58:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG8onKj016000 + for ; Sun, 16 Dec 2007 03:50:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG8onXv015998 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 03:50:49 -0500 +Date: Sun, 16 Dec 2007 03:50:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39334 - presence/branches/sakai_2-5-x/presence-impl/impl/src/java/org/sakaiproject/presence/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 03:59:13 2007 +X-DSPAM-Confidence: 0.9838 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39334 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-16 03:50:41 -0500 (Sun, 16 Dec 2007) +New Revision: 39334 + +Modified: +presence/branches/sakai_2-5-x/presence-impl/impl/src/java/org/sakaiproject/presence/impl/BasePresenceService.java +Log: +SAK-12457 NPE from presence: merge fix to 2-5-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stephen.marquard@uct.ac.za Sun Dec 16 03:57:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 16 Dec 2007 03:57:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 16 Dec 2007 03:57:27 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id lBG8vP7U029019; + Sun, 16 Dec 2007 03:57:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4764E870.5BD81.30701 ; + 16 Dec 2007 03:57:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DD9FEA05D6; + Sun, 16 Dec 2007 08:57:29 +0000 (GMT) +Message-ID: <200712160849.lBG8n0Wx015986@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 3 + for ; + Sun, 16 Dec 2007 08:57:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA99D341C1 + for ; Sun, 16 Dec 2007 08:56:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG8n1db015988 + for ; Sun, 16 Dec 2007 03:49:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG8n0Wx015986 + for source@collab.sakaiproject.org; Sun, 16 Dec 2007 03:49:00 -0500 +Date: Sun, 16 Dec 2007 03:49:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: stephen.marquard@uct.ac.za +Subject: [sakai] svn commit: r39333 - presence/trunk/presence-impl/impl/src/java/org/sakaiproject/presence/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 16 03:57:27 2007 +X-DSPAM-Confidence: 0.9783 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39333 + +Author: stephen.marquard@uct.ac.za +Date: 2007-12-16 03:48:52 -0500 (Sun, 16 Dec 2007) +New Revision: 39333 + +Modified: +presence/trunk/presence-impl/impl/src/java/org/sakaiproject/presence/impl/BasePresenceService.java +Log: +SAK-12457 NPE from presence: check for null tool session attribute + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Sat Dec 15 23:54:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 23:54:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 23:54:43 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by casino.mail.umich.edu () with ESMTP id lBG4sgr4012429; + Sat, 15 Dec 2007 23:54:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4764AF8A.B8672.25714 ; + 15 Dec 2007 23:54:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A8A859FFAF; + Sun, 16 Dec 2007 04:54:01 +0000 (GMT) +Message-ID: <200712160445.lBG4jQ2k015860@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 831 + for ; + Sun, 16 Dec 2007 04:53:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1036E1D2FF + for ; Sun, 16 Dec 2007 04:53:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG4jQUY015862 + for ; Sat, 15 Dec 2007 23:45:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG4jQ2k015860 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 23:45:26 -0500 +Date: Sat, 15 Dec 2007 23:45:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39332 - calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 23:54:43 2007 +X-DSPAM-Confidence: 0.7607 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39332 + +Author: gjthomas@iupui.edu +Date: 2007-12-15 23:45:23 -0500 (Sat, 15 Dec 2007) +New Revision: 39332 + +Modified: +calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm +Log: +oncourse fix - gen.assignmentlink property was not being found. Modified the vm slightly to fix the error. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 20:28:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 20:28:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 20:28:44 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lBG1Sibe007238; + Sat, 15 Dec 2007 20:28:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47647F3B.66667.27839 ; + 15 Dec 2007 20:28:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9ED4CA01F3; + Sun, 16 Dec 2007 01:28:03 +0000 (GMT) +Message-ID: <200712160119.lBG1Jm1m015797@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 824 + for ; + Sun, 16 Dec 2007 01:27:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 55EBD3873B + for ; Sun, 16 Dec 2007 01:27:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG1Jmo3015799 + for ; Sat, 15 Dec 2007 20:19:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG1Jm1m015797 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 20:19:48 -0500 +Date: Sat, 15 Dec 2007 20:19:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39331 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 20:28:44 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39331 + +Author: cwen@iupui.edu +Date: 2007-12-15 20:19:44 -0500 (Sat, 15 Dec 2007) +New Revision: 39331 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for assignment. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 20:23:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 20:23:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 20:23:03 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lBG1N2no018696; + Sat, 15 Dec 2007 20:23:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47647DF1.3ACAD.27836 ; + 15 Dec 2007 20:22:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 94E6E5CE2F; + Sun, 16 Dec 2007 01:22:44 +0000 (GMT) +Message-ID: <200712160114.lBG1EXBF015761@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312 + for ; + Sun, 16 Dec 2007 01:22:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E6178235C2 + for ; Sun, 16 Dec 2007 01:22:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG1EXXK015763 + for ; Sat, 15 Dec 2007 20:14:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG1EXBF015761 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 20:14:33 -0500 +Date: Sat, 15 Dec 2007 20:14:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39330 - in oncourse/trunk/src/site-manage/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 20:23:03 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39330 + +Author: cwen@iupui.edu +Date: 2007-12-15 20:14:26 -0500 (Sat, 15 Dec 2007) +New Revision: 39330 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +update overlay for site-manage for SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 20:02:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 20:02:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 20:02:54 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by sleepers.mail.umich.edu () with ESMTP id lBG12rIu003488; + Sat, 15 Dec 2007 20:02:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47647938.2EA81.20392 ; + 15 Dec 2007 20:02:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2321EA0206; + Sun, 16 Dec 2007 00:47:13 +0000 (GMT) +Message-ID: <200712160034.lBG0Y9sU015695@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 396 + for ; + Sun, 16 Dec 2007 00:46:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BED4139C35 + for ; Sun, 16 Dec 2007 00:42:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG0Y9w1015697 + for ; Sat, 15 Dec 2007 19:34:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG0Y9sU015695 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 19:34:09 -0500 +Date: Sat, 15 Dec 2007 19:34:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39329 - oncourse/trunk/src/calendar/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 20:02:54 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39329 + +Author: cwen@iupui.edu +Date: 2007-12-15 19:34:05 -0500 (Sat, 15 Dec 2007) +New Revision: 39329 + +Modified: +oncourse/trunk/src/calendar/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +Log: +update overlay for calendar for SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 19:34:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 19:34:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 19:34:23 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lBG0YMjm028077; + Sat, 15 Dec 2007 19:34:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47647288.DD682.23282 ; + 15 Dec 2007 19:34:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 317C8A01F6; + Sun, 16 Dec 2007 00:20:11 +0000 (GMT) +Message-ID: <200712160009.lBG092ZA015655@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603 + for ; + Sun, 16 Dec 2007 00:13:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 22D8B39C0A + for ; Sun, 16 Dec 2007 00:16:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG092us015657 + for ; Sat, 15 Dec 2007 19:09:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG092ZA015655 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 19:09:02 -0500 +Date: Sat, 15 Dec 2007 19:09:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39328 - in oncourse/trunk/src: . gmt gmt/datapoint gmt/datapoint/datapoint-impl gmt/datapoint/datapoint-impl/impl gmt/datapoint/datapoint-impl/impl/src gmt/datapoint/datapoint-impl/impl/src/java gmt/datapoint/datapoint-impl/impl/src/java/org gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint/impl gmt/gmt gmt/gmt/gmt-impl gmt/gmt/gmt-impl/impl gmt/gmt/gmt-impl/impl/src gmt/gmt/gmt-impl/impl/src/java gmt/gmt/gmt-impl/impl/src/java/org gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 19:34:23 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39328 + +Author: cwen@iupui.edu +Date: 2007-12-15 19:08:51 -0500 (Sat, 15 Dec 2007) +New Revision: 39328 + +Added: +oncourse/trunk/src/gmt/ +oncourse/trunk/src/gmt/datapoint/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint/impl/ +oncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint/impl/DataPointServiceImpl.java +oncourse/trunk/src/gmt/gmt/ +oncourse/trunk/src/gmt/gmt/gmt-impl/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt/impl/ +oncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt/impl/GmtServiceImpl.java +Log: +SAK-12433 for syracuse. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Sat Dec 15 18:31:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 18:31:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 18:31:44 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by mission.mail.umich.edu () with ESMTP id lBFNVhup028095; + Sat, 15 Dec 2007 18:31:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476463D9.B82AE.25494 ; + 15 Dec 2007 18:31:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 27D2C9DD2B; + Sat, 15 Dec 2007 23:31:34 +0000 (GMT) +Message-ID: <200712152323.lBFNNPE3015614@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 595 + for ; + Sat, 15 Dec 2007 23:31:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 195F53446C + for ; Sat, 15 Dec 2007 23:31:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFNNPPQ015616 + for ; Sat, 15 Dec 2007 18:23:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFNNPE3015614 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 18:23:25 -0500 +Date: Sat, 15 Dec 2007 18:23:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39327 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 18:31:44 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39327 + +Author: gjthomas@iupui.edu +Date: 2007-12-15 18:23:22 -0500 (Sat, 15 Dec 2007) +New Revision: 39327 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +oncourse fix - fixing a bug with writing the assignment id to calendar events + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 18:08:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 18:08:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 18:08:01 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by score.mail.umich.edu () with ESMTP id lBFN80GS029206; + Sat, 15 Dec 2007 18:08:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47645E4B.43FF8.25309 ; + 15 Dec 2007 18:07:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E1539A012F; + Sat, 15 Dec 2007 23:07:52 +0000 (GMT) +Message-ID: <200712152259.lBFMxjsU015519@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 783 + for ; + Sat, 15 Dec 2007 23:07:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 73990330F9 + for ; Sat, 15 Dec 2007 23:07:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMxjVj015521 + for ; Sat, 15 Dec 2007 17:59:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMxjsU015519 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:59:45 -0500 +Date: Sat, 15 Dec 2007 17:59:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39326 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 18:08:01 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39326 + +Author: cwen@iupui.edu +Date: 2007-12-15 17:59:41 -0500 (Sat, 15 Dec 2007) +New Revision: 39326 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +API revert back for SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 18:06:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 18:06:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 18:06:09 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by awakenings.mail.umich.edu () with ESMTP id lBFN67e9018374; + Sat, 15 Dec 2007 18:06:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47645DD3.8A88A.5946 ; + 15 Dec 2007 18:06:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0E6979F549; + Sat, 15 Dec 2007 23:05:52 +0000 (GMT) +Message-ID: <200712152257.lBFMvhF2015507@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906 + for ; + Sat, 15 Dec 2007 23:05:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B7B53330F9 + for ; Sat, 15 Dec 2007 23:05:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMvhZF015509 + for ; Sat, 15 Dec 2007 17:57:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMvhF2015507 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:57:43 -0500 +Date: Sat, 15 Dec 2007 17:57:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39325 - gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 18:06:09 2007 +X-DSPAM-Confidence: 0.9782 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39325 + +Author: cwen@iupui.edu +Date: 2007-12-15 17:57:40 -0500 (Sat, 15 Dec 2007) +New Revision: 39325 + +Modified: +gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +Log: +sak-12433 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 17:56:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 17:56:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 17:56:27 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id lBFMuRMj028179; + Sat, 15 Dec 2007 17:56:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47645B94.50D4C.12916 ; + 15 Dec 2007 17:56:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 032219F549; + Sat, 15 Dec 2007 22:56:18 +0000 (GMT) +Message-ID: <200712152248.lBFMmBvX015481@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 473 + for ; + Sat, 15 Dec 2007 22:56:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 29F2824EB8 + for ; Sat, 15 Dec 2007 22:56:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMmB1w015483 + for ; Sat, 15 Dec 2007 17:48:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMmBvX015481 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:48:11 -0500 +Date: Sat, 15 Dec 2007 17:48:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39324 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 17:56:27 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39324 + +Author: cwen@iupui.edu +Date: 2007-12-15 17:48:07 -0500 (Sat, 15 Dec 2007) +New Revision: 39324 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for gb. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 17:54:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 17:54:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 17:54:27 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lBFMsQuv004768; + Sat, 15 Dec 2007 17:54:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47645B1C.830CA.20096 ; + 15 Dec 2007 17:54:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8F0989FFF8; + Sat, 15 Dec 2007 22:54:13 +0000 (GMT) +Message-ID: <200712152246.lBFMk0kC015469@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751 + for ; + Sat, 15 Dec 2007 22:53:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E82A824EB8 + for ; Sat, 15 Dec 2007 22:53:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMk0pF015471 + for ; Sat, 15 Dec 2007 17:46:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMk0kC015469 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:46:00 -0500 +Date: Sat, 15 Dec 2007 17:46:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39323 - gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 17:54:27 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39323 + +Author: cwen@iupui.edu +Date: 2007-12-15 17:45:57 -0500 (Sat, 15 Dec 2007) +New Revision: 39323 + +Modified: +gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +Log: +SAK-12433 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 17:19:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 17:19:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 17:19:55 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by faithful.mail.umich.edu () with ESMTP id lBFMJsPa025635; + Sat, 15 Dec 2007 17:19:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47645303.FAC8.13788 ; + 15 Dec 2007 17:19:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A5736A00AA; + Sat, 15 Dec 2007 22:19:45 +0000 (GMT) +Message-ID: <200712152211.lBFMBdeM015372@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 322 + for ; + Sat, 15 Dec 2007 22:19:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC8A93446C + for ; Sat, 15 Dec 2007 22:19:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMBd6X015374 + for ; Sat, 15 Dec 2007 17:11:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMBdeM015372 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:11:39 -0500 +Date: Sat, 15 Dec 2007 17:11:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39322 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 17:19:55 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39322 + +Author: cwen@iupui.edu +Date: 2007-12-15 17:11:36 -0500 (Sat, 15 Dec 2007) +New Revision: 39322 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for GB. SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 17:18:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 17:18:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 17:18:57 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lBFMIvLE025465; + Sat, 15 Dec 2007 17:18:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476452C1.E9C8C.10701 ; + 15 Dec 2007 17:18:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5C57AA0091; + Sat, 15 Dec 2007 22:18:37 +0000 (GMT) +Message-ID: <200712152210.lBFMASRX015360@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619 + for ; + Sat, 15 Dec 2007 22:18:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 588C93446C + for ; Sat, 15 Dec 2007 22:18:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMAT6X015362 + for ; Sat, 15 Dec 2007 17:10:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMASRX015360 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:10:28 -0500 +Date: Sat, 15 Dec 2007 17:10:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39321 - gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 17:18:57 2007 +X-DSPAM-Confidence: 0.9781 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39321 + +Author: cwen@iupui.edu +Date: 2007-12-15 17:10:25 -0500 (Sat, 15 Dec 2007) +New Revision: 39321 + +Modified: +gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12433 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 15:02:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 15:02:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 15:02:52 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by flawless.mail.umich.edu () with ESMTP id lBFK2pnN008254; + Sat, 15 Dec 2007 15:02:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 476432D8.9A773.30371 ; + 15 Dec 2007 15:02:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D49A59F694; + Sat, 15 Dec 2007 20:02:33 +0000 (GMT) +Message-ID: <200712151954.lBFJsJ4M015175@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 281 + for ; + Sat, 15 Dec 2007 20:02:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 129613429E + for ; Sat, 15 Dec 2007 20:02:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJsJkI015177 + for ; Sat, 15 Dec 2007 14:54:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJsJ4M015175 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:54:19 -0500 +Date: Sat, 15 Dec 2007 14:54:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39320 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 15:02:52 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39320 + +Author: cwen@iupui.edu +Date: 2007-12-15 14:54:15 -0500 (Sat, 15 Dec 2007) +New Revision: 39320 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +SAK-12433 for gradebook. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 14:59:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 14:59:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 14:59:52 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by awakenings.mail.umich.edu () with ESMTP id lBFJxpje031211; + Sat, 15 Dec 2007 14:59:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47643232.7B7D.18342 ; + 15 Dec 2007 14:59:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 56F949F694; + Sat, 15 Dec 2007 19:59:48 +0000 (GMT) +Message-ID: <200712151951.lBFJpTtd015163@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 942 + for ; + Sat, 15 Dec 2007 19:59:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DA26538733 + for ; Sat, 15 Dec 2007 19:59:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJpT7x015165 + for ; Sat, 15 Dec 2007 14:51:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJpTtd015163 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:51:29 -0500 +Date: Sat, 15 Dec 2007 14:51:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39319 - in gradebook/branches/oncourse_opc_122007/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 14:59:52 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39319 + +Author: cwen@iupui.edu +Date: 2007-12-15 14:51:16 -0500 (Sat, 15 Dec 2007) +New Revision: 39319 + +Modified: +gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java +gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java +gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java +Log: +SAK-12433 => svn merge -r39311:39312 https://source.sakaiproject.org/svn/gradebook/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 14:30:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 14:30:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 14:30:24 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id lBFJUOu1024708; + Sat, 15 Dec 2007 14:30:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47642B4A.513AD.839 ; + 15 Dec 2007 14:30:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6569F9F201; + Sat, 15 Dec 2007 19:30:22 +0000 (GMT) +Message-ID: <200712151922.lBFJM3FK015126@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 885 + for ; + Sat, 15 Dec 2007 19:30:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7F9DFB2AD + for ; Sat, 15 Dec 2007 19:29:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJM3kQ015128 + for ; Sat, 15 Dec 2007 14:22:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJM3FK015126 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:22:03 -0500 +Date: Sat, 15 Dec 2007 14:22:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39318 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 14:30:24 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39318 + +Author: cwen@iupui.edu +Date: 2007-12-15 14:21:59 -0500 (Sat, 15 Dec 2007) +New Revision: 39318 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +SAK-12433 for samigo. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 14:23:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 14:23:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 14:23:15 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id lBFJNEmW022549; + Sat, 15 Dec 2007 14:23:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4764299D.A7C4F.21860 ; + 15 Dec 2007 14:23:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 909E69F201; + Sat, 15 Dec 2007 19:23:12 +0000 (GMT) +Message-ID: <200712151914.lBFJErCP015098@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 579 + for ; + Sat, 15 Dec 2007 19:22:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A80E8B15A + for ; Sat, 15 Dec 2007 19:22:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJEsmL015100 + for ; Sat, 15 Dec 2007 14:14:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJErCP015098 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:14:53 -0500 +Date: Sat, 15 Dec 2007 14:14:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39317 - sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 14:23:15 2007 +X-DSPAM-Confidence: 0.8424 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39317 + +Author: cwen@iupui.edu +Date: 2007-12-15 14:14:50 -0500 (Sat, 15 Dec 2007) +New Revision: 39317 + +Modified: +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentEntityProducer.java +Log: +SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 14:04:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 14:04:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 14:04:44 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by brazil.mail.umich.edu () with ESMTP id lBFJ4hTw012812; + Sat, 15 Dec 2007 14:04:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47642546.28AF5.30736 ; + 15 Dec 2007 14:04:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B4ADF9E612; + Sat, 15 Dec 2007 19:04:23 +0000 (GMT) +Message-ID: <200712151856.lBFIu54f015084@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 464 + for ; + Sat, 15 Dec 2007 19:03:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 01F7A37284 + for ; Sat, 15 Dec 2007 19:04:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFIuA1J015086 + for ; Sat, 15 Dec 2007 13:56:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFIu54f015084 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 13:56:05 -0500 +Date: Sat, 15 Dec 2007 13:56:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39316 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 14:04:44 2007 +X-DSPAM-Confidence: 0.8444 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39316 + +Author: cwen@iupui.edu +Date: 2007-12-15 13:56:01 -0500 (Sat, 15 Dec 2007) +New Revision: 39316 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 13:18:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 13:18:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 13:18:12 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id lBFIIBRp007907; + Sat, 15 Dec 2007 13:18:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47641A5D.DBB87.8490 ; + 15 Dec 2007 13:18:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3FD4F9FA27; + Sat, 15 Dec 2007 18:13:58 +0000 (GMT) +Message-ID: <200712151808.lBFI8lkD015062@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 629 + for ; + Sat, 15 Dec 2007 18:12:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2683038FB9 + for ; Sat, 15 Dec 2007 18:16:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFI8lot015064 + for ; Sat, 15 Dec 2007 13:08:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFI8lkD015062 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 13:08:47 -0500 +Date: Sat, 15 Dec 2007 13:08:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39315 - in oncourse/trunk/src/web: . news-impl news-impl/impl news-impl/impl/src news-impl/impl/src/java news-impl/impl/src/java/org news-impl/impl/src/java/org/sakaiproject news-impl/impl/src/java/org/sakaiproject/news news-impl/impl/src/java/org/sakaiproject/news/impl web-impl web-impl/impl web-impl/impl/src web-impl/impl/src/java web-impl/impl/src/java/org web-impl/impl/src/java/org/sakaiproject web-impl/impl/src/java/org/sakaiproject/web web-impl/impl/src/java/org/sakaiproject/web/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 13:18:12 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39315 + +Author: cwen@iupui.edu +Date: 2007-12-15 13:08:26 -0500 (Sat, 15 Dec 2007) +New Revision: 39315 + +Added: +oncourse/trunk/src/web/news-impl/ +oncourse/trunk/src/web/news-impl/impl/ +oncourse/trunk/src/web/news-impl/impl/src/ +oncourse/trunk/src/web/news-impl/impl/src/java/ +oncourse/trunk/src/web/news-impl/impl/src/java/org/ +oncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/ +oncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/news/ +oncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/news/impl/ +oncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/news/impl/BasicNewsService.java +oncourse/trunk/src/web/web-impl/ +oncourse/trunk/src/web/web-impl/impl/ +oncourse/trunk/src/web/web-impl/impl/src/ +oncourse/trunk/src/web/web-impl/impl/src/java/ +oncourse/trunk/src/web/web-impl/impl/src/java/org/ +oncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/ +oncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/web/ +oncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/web/impl/ +oncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/web/impl/WebServiceImpl.java +Log: +SAK-12433 => merge in r39256, r39258 for web from sakai_2-4-x of r31545. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Sat Dec 15 12:29:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 12:29:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 12:29:53 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lBFHTqmc018393; + Sat, 15 Dec 2007 12:29:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47640F0B.6BD67.19634 ; + 15 Dec 2007 12:29:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 90D779E11E; + Sat, 15 Dec 2007 17:29:08 +0000 (GMT) +Message-ID: <200712151720.lBFHKurr014956@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 442 + for ; + Sat, 15 Dec 2007 17:28:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3F16D3868D + for ; Sat, 15 Dec 2007 17:28:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFHKuo7014958 + for ; Sat, 15 Dec 2007 12:20:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFHKurr014956 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 12:20:56 -0500 +Date: Sat, 15 Dec 2007 12:20:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39314 - alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 12:29:53 2007 +X-DSPAM-Confidence: 0.7544 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39314 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-15 12:20:51 -0500 (Sat, 15 Dec 2007) +New Revision: 39314 + +Modified: +alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java +Log: +SAK-12447 +Added A check for null entries going into the cache + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 12:11:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 12:11:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 12:11:18 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id lBFHBHIE004854; + Sat, 15 Dec 2007 12:11:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47640A9A.1E5F0.28760 ; + 15 Dec 2007 12:11:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 876CC9F721; + Sat, 15 Dec 2007 17:10:43 +0000 (GMT) +Message-ID: <200712151702.lBFH2Yji014935@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949 + for ; + Sat, 15 Dec 2007 17:10:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E89F9378DA + for ; Sat, 15 Dec 2007 17:10:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFH2Y6Q014937 + for ; Sat, 15 Dec 2007 12:02:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFH2Yji014935 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 12:02:34 -0500 +Date: Sat, 15 Dec 2007 12:02:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39313 - calendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 12:11:18 2007 +X-DSPAM-Confidence: 0.9826 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39313 + +Author: cwen@iupui.edu +Date: 2007-12-15 12:02:27 -0500 (Sat, 15 Dec 2007) +New Revision: 39313 + +Modified: +calendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +Log: +SAK-12433 => apply patch for calendar. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From tnguyen@iupui.edu Sat Dec 15 08:54:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 08:54:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 08:54:18 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by brazil.mail.umich.edu () with ESMTP id lBFDsHwr023794; + Sat, 15 Dec 2007 08:54:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4763DC83.ECE9D.23993 ; + 15 Dec 2007 08:54:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 130A550347; + Sat, 15 Dec 2007 13:54:46 +0000 (GMT) +Message-ID: <200712151345.lBFDjlsX014891@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 694 + for ; + Sat, 15 Dec 2007 13:54:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 305FF341FC + for ; Sat, 15 Dec 2007 13:53:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFDjlFi014893 + for ; Sat, 15 Dec 2007 08:45:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFDjlsX014891 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 08:45:47 -0500 +Date: Sat, 15 Dec 2007 08:45:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: tnguyen@iupui.edu +Subject: [sakai] svn commit: r39312 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 08:54:18 2007 +X-DSPAM-Confidence: 0.9784 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39312 + +Author: tnguyen@iupui.edu +Date: 2007-12-15 08:45:40 -0500 (Sat, 15 Dec 2007) +New Revision: 39312 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java +Log: +sak-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 01:32:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 01:32:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 01:32:11 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id lBF6WAom005893; + Sat, 15 Dec 2007 01:32:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 476374E5.55133.12410 ; + 15 Dec 2007 01:32:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CFB1B8DD71; + Sat, 15 Dec 2007 06:26:03 +0000 (GMT) +Message-ID: <200712150623.lBF6NmRu014311@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 581 + for ; + Sat, 15 Dec 2007 06:25:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1435B3956A + for ; Sat, 15 Dec 2007 06:31:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF6NmsX014313 + for ; Sat, 15 Dec 2007 01:23:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF6NmRu014311 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 01:23:48 -0500 +Date: Sat, 15 Dec 2007 01:23:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39311 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 01:32:11 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39311 + +Author: cwen@iupui.edu +Date: 2007-12-15 01:23:44 -0500 (Sat, 15 Dec 2007) +New Revision: 39311 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for SAK-12461 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 01:28:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 01:28:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 01:28:23 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lBF6SM4E004782; + Sat, 15 Dec 2007 01:28:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47637401.9F78E.10376 ; + 15 Dec 2007 01:28:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A62EB5A7E6; + Sat, 15 Dec 2007 06:22:14 +0000 (GMT) +Message-ID: <200712150620.lBF6K8wX014291@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 941 + for ; + Sat, 15 Dec 2007 06:21:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A05313956A + for ; Sat, 15 Dec 2007 06:28:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF6K8oA014294 + for ; Sat, 15 Dec 2007 01:20:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF6K8wX014291 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 01:20:08 -0500 +Date: Sat, 15 Dec 2007 01:20:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39310 - in gradebook/branches/oncourse_opc_122007/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 01:28:23 2007 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39310 + +Author: cwen@iupui.edu +Date: 2007-12-15 01:19:59 -0500 (Sat, 15 Dec 2007) +New Revision: 39310 + +Modified: +gradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/assignmentEditing.jspf +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf +Log: +SAK-12461 => svn merge -r39308:39309 https://source.sakaiproject.org/svn/gradebook/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sat Dec 15 01:21:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 15 Dec 2007 01:21:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 15 Dec 2007 01:21:59 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id lBF6LwNW003555; + Sat, 15 Dec 2007 01:21:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47637281.11776.31544 ; + 15 Dec 2007 01:21:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 76A705A7E6; + Sat, 15 Dec 2007 06:15:19 +0000 (GMT) +Message-ID: <200712150611.lBF6BoSB014274@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984 + for ; + Sat, 15 Dec 2007 06:13:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C426F39582 + for ; Sat, 15 Dec 2007 06:19:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF6BonY014276 + for ; Sat, 15 Dec 2007 01:11:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF6BoSB014274 + for source@collab.sakaiproject.org; Sat, 15 Dec 2007 01:11:50 -0500 +Date: Sat, 15 Dec 2007 01:11:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39309 - in gradebook/trunk/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 15 01:21:59 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39309 + +Author: cwen@iupui.edu +Date: 2007-12-15 01:11:33 -0500 (Sat, 15 Dec 2007) +New Revision: 39309 + +Modified: +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java +gradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12461 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 14 20:12:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 20:12:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 20:12:54 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id lBF1CrHf027650; + Fri, 14 Dec 2007 20:12:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47632A0F.BB794.10862 ; + 14 Dec 2007 20:12:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2AE439EFD4; + Sat, 15 Dec 2007 00:43:49 +0000 (GMT) +Message-ID: <200712150100.lBF10wY5014044@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 616 + for ; + Sat, 15 Dec 2007 00:43:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D27A7BE30 + for ; Sat, 15 Dec 2007 01:08:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF10wcP014046 + for ; Fri, 14 Dec 2007 20:00:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF10wY5014044 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 20:00:58 -0500 +Date: Fri, 14 Dec 2007 20:00:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39308 - alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 20:12:54 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39308 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-14 20:00:54 -0500 (Fri, 14 Dec 2007) +New Revision: 39308 + +Modified: +alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java +Log: +SAK-12447 + +Added a check not to return null aliases. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 19:51:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 19:51:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 19:51:25 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by casino.mail.umich.edu () with ESMTP id lBF0pOc3010179; + Fri, 14 Dec 2007 19:51:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47632507.5E100.8608 ; + 14 Dec 2007 19:51:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 83EC29EFAE; + Sat, 15 Dec 2007 00:22:24 +0000 (GMT) +Message-ID: <200712150023.lBF0Nh6M013976@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 90 + for ; + Sat, 15 Dec 2007 00:22:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 777A8395E3 + for ; Sat, 15 Dec 2007 00:31:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF0NhiL013978 + for ; Fri, 14 Dec 2007 19:23:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF0Nh6M013976 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 19:23:43 -0500 +Date: Fri, 14 Dec 2007 19:23:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39305 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 19:51:25 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39305 + +Author: cwen@iupui.edu +Date: 2007-12-14 19:23:41 -0500 (Fri, 14 Dec 2007) +New Revision: 39305 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for get assignment back to oncourse_2-4-x. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 14 19:47:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 19:47:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 19:47:25 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id lBF0lOa3019264; + Fri, 14 Dec 2007 19:47:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47632417.28568.1005 ; + 14 Dec 2007 19:47:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8A5539EF8A; + Sat, 15 Dec 2007 00:18:23 +0000 (GMT) +Message-ID: <200712150039.lBF0dAMS014002@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 80 + for ; + Sat, 15 Dec 2007 00:18:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 62655395ED + for ; Sat, 15 Dec 2007 00:47:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF0dAPV014004 + for ; Fri, 14 Dec 2007 19:39:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF0dAMS014002 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 19:39:10 -0500 +Date: Fri, 14 Dec 2007 19:39:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39307 - search/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 19:47:25 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39307 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-14 19:39:06 -0500 (Fri, 14 Dec 2007) +New Revision: 39307 + +Modified: +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java +Log: +SAK-12459 + +Added a pre clear to make certain the thread local cache is empty. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 14 19:45:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 19:45:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 19:45:16 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by flawless.mail.umich.edu () with ESMTP id lBF0jF3A009609; + Fri, 14 Dec 2007 19:45:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47632395.55305.22306 ; + 14 Dec 2007 19:45:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 22F7B9EF8A; + Sat, 15 Dec 2007 00:16:15 +0000 (GMT) +Message-ID: <200712150037.lBF0axWs013990@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 750 + for ; + Sat, 15 Dec 2007 00:16:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 69FDC395ED + for ; Sat, 15 Dec 2007 00:44:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF0b0P8013992 + for ; Fri, 14 Dec 2007 19:37:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF0axWs013990 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 19:37:00 -0500 +Date: Fri, 14 Dec 2007 19:37:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39306 - in search/trunk/search-impl: impl/src/java/org/sakaiproject/search/indexer/impl impl/src/test/org/sakaiproject/search/index/soaktest impl/src/test/org/sakaiproject/search/indexer/impl/test pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 19:45:16 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39306 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-14 19:36:42 -0500 (Fri, 14 Dec 2007) +New Revision: 39306 + +Modified: +search/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java +search/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/TransactionalIndexWorkerTest.java +search/trunk/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml +Log: +SAK-12459 + +Possible Fix, +Clearing the thread local cache in the indexer loop, just in case there is stale content. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 14 18:50:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 18:50:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 18:50:15 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by mission.mail.umich.edu () with ESMTP id lBENoDiD020569; + Fri, 14 Dec 2007 18:50:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 476316AF.88541.31709 ; + 14 Dec 2007 18:50:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B26A94C56; + Fri, 14 Dec 2007 23:50:00 +0000 (GMT) +Message-ID: <200712142341.lBENfpSa013962@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1013 + for ; + Fri, 14 Dec 2007 23:49:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B173D3721C + for ; Fri, 14 Dec 2007 23:49:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBENfpNS013964 + for ; Fri, 14 Dec 2007 18:41:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBENfpSa013962 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 18:41:51 -0500 +Date: Fri, 14 Dec 2007 18:41:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39304 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 18:50:15 2007 +X-DSPAM-Confidence: 0.7008 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39304 + +Author: mmmay@indiana.edu +Date: 2007-12-14 18:41:49 -0500 (Fri, 14 Dec 2007) +New Revision: 39304 + +Modified: +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +Log: +Backing out merge in 2.5.x + +svn merge -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk +U service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39185 | wagnermr@iupui.edu | 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007) | 4 lines + +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz +fixed class cast exception + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 18:18:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 18:18:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 18:18:19 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by mission.mail.umich.edu () with ESMTP id lBENIIZU004766; + Fri, 14 Dec 2007 18:18:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47630F34.B4739.24604 ; + 14 Dec 2007 18:18:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 48D409EE3F; + Fri, 14 Dec 2007 23:18:10 +0000 (GMT) +Message-ID: <200712142309.lBEN9wlk013921@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 828 + for ; + Fri, 14 Dec 2007 23:17:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 53A7433F66 + for ; Fri, 14 Dec 2007 23:17:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEN9wgo013923 + for ; Fri, 14 Dec 2007 18:09:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEN9wlk013921 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 18:09:58 -0500 +Date: Fri, 14 Dec 2007 18:09:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39303 - bspace/osp/sakai_2-4-x/warehouse/api-impl/src/java/org/theospi/portfolio/warehouse/sakai/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 18:18:19 2007 +X-DSPAM-Confidence: 0.6950 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39303 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 18:09:54 -0500 (Fri, 14 Dec 2007) +New Revision: 39303 + +Modified: +bspace/osp/sakai_2-4-x/warehouse/api-impl/src/java/org/theospi/portfolio/warehouse/sakai/assignment/AssignmentWarehouseService.java +Log: +BSP-1376 Update Bspace trunk with latest updates from 2.4-x trunk applied patch to osp + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 18:12:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 18:12:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 18:12:25 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id lBENCPR5004788; + Fri, 14 Dec 2007 18:12:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47630DD2.753F0.9443 ; + 14 Dec 2007 18:12:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 943EE9EF23; + Fri, 14 Dec 2007 23:12:13 +0000 (GMT) +Message-ID: <200712142231.lBEMVx2x013704@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516 + for ; + Fri, 14 Dec 2007 23:11:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 60B723940B + for ; Fri, 14 Dec 2007 22:39:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMVxiT013706 + for ; Fri, 14 Dec 2007 17:31:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMVx2x013704 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:31:59 -0500 +Date: Fri, 14 Dec 2007 17:31:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39293 - bspace/osp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 18:12:25 2007 +X-DSPAM-Confidence: 0.6944 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39293 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:31:56 -0500 (Fri, 14 Dec 2007) +New Revision: 39293 + +Removed: +bspace/osp/warehouse/ +Log: +Removed file/folder + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 18:12:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 18:12:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 18:12:22 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id lBENCLZK016004; + Fri, 14 Dec 2007 18:12:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47630DD0.299A6.6635 ; + 14 Dec 2007 18:12:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EB03C9EF22; + Fri, 14 Dec 2007 23:12:12 +0000 (GMT) +Message-ID: <200712142234.lBEMY7i9013752@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 214 + for ; + Fri, 14 Dec 2007 23:11:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 65E8039516 + for ; Fri, 14 Dec 2007 22:41:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMY7Km013754 + for ; Fri, 14 Dec 2007 17:34:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMY7i9013752 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:34:07 -0500 +Date: Fri, 14 Dec 2007 17:34:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39297 - bspace/osp/sakai_2-4x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 18:12:22 2007 +X-DSPAM-Confidence: 0.6953 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39297 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:34:02 -0500 (Fri, 14 Dec 2007) +New Revision: 39297 + +Added: +bspace/osp/sakai_2-4x/sakai_2-4-x/ +Log: +BSP-1376 Update Bspace trunk with latest updates from 2.4-x trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 18:12:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 18:12:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 18:12:21 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lBENCJxT017964; + Fri, 14 Dec 2007 18:12:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47630DCB.CCCB5.26249 ; + 14 Dec 2007 18:12:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BA4F39EF1E; + Fri, 14 Dec 2007 23:12:11 +0000 (GMT) +Message-ID: <200712142233.lBEMXnLP013740@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 759 + for ; + Fri, 14 Dec 2007 23:11:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 89C4439509 + for ; Fri, 14 Dec 2007 22:41:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMXn9d013742 + for ; Fri, 14 Dec 2007 17:33:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMXnLP013740 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:33:49 -0500 +Date: Fri, 14 Dec 2007 17:33:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39296 - discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 18:12:21 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39296 + +Author: cwen@iupui.edu +Date: 2007-12-14 17:33:48 -0500 (Fri, 14 Dec 2007) +New Revision: 39296 + +Modified: +discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/BaseDiscussionService.java +Log: +sak-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 18:12:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 18:12:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 18:12:20 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lBENCJth006011; + Fri, 14 Dec 2007 18:12:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47630DCE.523A1.19407 ; + 14 Dec 2007 18:12:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 70EC89EF20; + Fri, 14 Dec 2007 23:12:12 +0000 (GMT) +Message-ID: <200712142233.lBEMX2hh013728@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 162 + for ; + Fri, 14 Dec 2007 23:11:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EEAFD394A5 + for ; Fri, 14 Dec 2007 22:40:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMX2sc013730 + for ; Fri, 14 Dec 2007 17:33:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMX2hh013728 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:33:02 -0500 +Date: Fri, 14 Dec 2007 17:33:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39295 - bspace/osp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 18:12:20 2007 +X-DSPAM-Confidence: 0.6946 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39295 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:32:59 -0500 (Fri, 14 Dec 2007) +New Revision: 39295 + +Added: +bspace/osp/sakai_2-4x/ +Log: +Created folder remotely + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 18:11:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 18:11:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 18:11:25 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by faithful.mail.umich.edu () with ESMTP id lBENBOdQ013062; + Fri, 14 Dec 2007 18:11:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47630D8B.DD3B3.23884 ; + 14 Dec 2007 18:11:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 042B99EF1F; + Fri, 14 Dec 2007 23:11:07 +0000 (GMT) +Message-ID: <200712142232.lBEMWXlo013716@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 589 + for ; + Fri, 14 Dec 2007 23:10:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4802C39497 + for ; Fri, 14 Dec 2007 22:40:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMWXBB013718 + for ; Fri, 14 Dec 2007 17:32:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMWXlo013716 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:32:33 -0500 +Date: Fri, 14 Dec 2007 17:32:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39294 - bspace/osp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 18:11:25 2007 +X-DSPAM-Confidence: 0.6932 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39294 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:32:30 -0500 (Fri, 14 Dec 2007) +New Revision: 39294 + +Added: +bspace/osp/old-sakai_2-4-x/ +Removed: +bspace/osp/sakai_2-4-x/ +Log: +Renamed remotely + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 17:55:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 17:55:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 17:55:41 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id lBEMtfZj005644; + Fri, 14 Dec 2007 17:55:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 476309E8.20615.18058 ; + 14 Dec 2007 17:55:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5156998946; + Fri, 14 Dec 2007 22:46:37 +0000 (GMT) +Message-ID: <200712142247.lBEMlIRa013868@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 608 + for ; + Fri, 14 Dec 2007 22:46:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 36EBB39502 + for ; Fri, 14 Dec 2007 22:55:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMlItO013870 + for ; Fri, 14 Dec 2007 17:47:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMlIRa013868 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:47:18 -0500 +Date: Fri, 14 Dec 2007 17:47:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39302 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 17:55:41 2007 +X-DSPAM-Confidence: 0.8428 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39302 + +Author: cwen@iupui.edu +Date: 2007-12-14 17:47:16 -0500 (Fri, 14 Dec 2007) +New Revision: 39302 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +sak-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 17:54:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 17:54:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 17:54:57 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id lBEMsuvF006796; + Fri, 14 Dec 2007 17:54:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 476309BA.4CF13.27348 ; + 14 Dec 2007 17:54:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4DBDD9EDA9; + Fri, 14 Dec 2007 22:45:50 +0000 (GMT) +Message-ID: <200712142212.lBEMCZBw013684@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 434 + for ; + Fri, 14 Dec 2007 22:45:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E2E3639532 + for ; Fri, 14 Dec 2007 22:20:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMCZq7013686 + for ; Fri, 14 Dec 2007 17:12:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMCZBw013684 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:12:35 -0500 +Date: Fri, 14 Dec 2007 17:12:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39292 - rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 17:54:57 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39292 + +Author: cwen@iupui.edu +Date: 2007-12-14 17:12:33 -0500 (Fri, 14 Dec 2007) +New Revision: 39292 + +Modified: +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java +Log: +sak-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 17:44:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 17:44:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 17:44:57 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lBEMiujJ032593; + Fri, 14 Dec 2007 17:44:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4763075D.57B69.3575 ; + 14 Dec 2007 17:44:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A205C9ED89; + Fri, 14 Dec 2007 22:35:37 +0000 (GMT) +Message-ID: <200712142236.lBEMaL31013806@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 982 + for ; + Fri, 14 Dec 2007 22:35:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5537B39526 + for ; Fri, 14 Dec 2007 22:44:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMaL4u013808 + for ; Fri, 14 Dec 2007 17:36:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMaL31013806 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:36:21 -0500 +Date: Fri, 14 Dec 2007 17:36:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39301 - bspace/osp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 17:44:57 2007 +X-DSPAM-Confidence: 0.6933 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39301 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:36:19 -0500 (Fri, 14 Dec 2007) +New Revision: 39301 + +Removed: +bspace/osp/sakai/ +Log: +Removed file/folder + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 17:44:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 17:44:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 17:44:35 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id lBEMiYE4002169; + Fri, 14 Dec 2007 17:44:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4763074B.7DCE4.31101 ; + 14 Dec 2007 17:44:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 652129EC6A; + Fri, 14 Dec 2007 22:35:28 +0000 (GMT) +Message-ID: <200712142236.lBEMaD85013794@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 931 + for ; + Fri, 14 Dec 2007 22:35:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E8ED439526 + for ; Fri, 14 Dec 2007 22:44:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMaDCf013796 + for ; Fri, 14 Dec 2007 17:36:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMaD85013794 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:36:13 -0500 +Date: Fri, 14 Dec 2007 17:36:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39300 - bspace/osp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 17:44:35 2007 +X-DSPAM-Confidence: 0.6930 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39300 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:36:10 -0500 (Fri, 14 Dec 2007) +New Revision: 39300 + +Removed: +bspace/osp/old-sakai_2-4-x/ +Log: +Removed file/folder + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 17:44:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 17:44:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 17:44:10 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBEMiASl029764; + Fri, 14 Dec 2007 17:44:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4763072B.59507.13749 ; + 14 Dec 2007 17:44:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 554E198946; + Fri, 14 Dec 2007 22:34:54 +0000 (GMT) +Message-ID: <200712142235.lBEMZkdC013782@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 587 + for ; + Fri, 14 Dec 2007 22:34:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6AA2039526 + for ; Fri, 14 Dec 2007 22:43:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMZkYF013784 + for ; Fri, 14 Dec 2007 17:35:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMZkdC013782 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:35:46 -0500 +Date: Fri, 14 Dec 2007 17:35:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39299 - in bspace/osp: . sakai +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 17:44:10 2007 +X-DSPAM-Confidence: 0.6945 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39299 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:35:42 -0500 (Fri, 14 Dec 2007) +New Revision: 39299 + +Added: +bspace/osp/sakai_2-4-x/ +Removed: +bspace/osp/sakai/sakai_2-4-x/ +Log: +Moved remotely + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Dec 14 17:43:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 17:43:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 17:43:59 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id lBEMhwcA027067; + Fri, 14 Dec 2007 17:43:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47630729.1B763.15491 ; + 14 Dec 2007 17:43:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7FD62778BC; + Fri, 14 Dec 2007 22:34:50 +0000 (GMT) +Message-ID: <200712142235.lBEMZYHW013770@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 654 + for ; + Fri, 14 Dec 2007 22:34:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 56AD739526 + for ; Fri, 14 Dec 2007 22:43:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMZYC5013772 + for ; Fri, 14 Dec 2007 17:35:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMZYHW013770 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:35:34 -0500 +Date: Fri, 14 Dec 2007 17:35:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39298 - bspace/osp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 17:43:59 2007 +X-DSPAM-Confidence: 0.6940 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39298 + +Author: louis@media.berkeley.edu +Date: 2007-12-14 17:35:31 -0500 (Fri, 14 Dec 2007) +New Revision: 39298 + +Added: +bspace/osp/sakai/ +Removed: +bspace/osp/sakai_2-4x/ +Log: +Renamed remotely + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 16:50:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 16:50:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 16:50:38 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lBELobqp009441; + Fri, 14 Dec 2007 16:50:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4762FAA7.5CF9B.24274 ; + 14 Dec 2007 16:50:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EC47A9ED1F; + Fri, 14 Dec 2007 21:50:19 +0000 (GMT) +Message-ID: <200712142141.lBELfwlx013541@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 30 + for ; + Fri, 14 Dec 2007 21:49:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E30CA39349 + for ; Fri, 14 Dec 2007 21:49:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBELfw44013543 + for ; Fri, 14 Dec 2007 16:41:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBELfwlx013541 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 16:41:58 -0500 +Date: Fri, 14 Dec 2007 16:41:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39291 - in site-manage/branches/SAK-12433/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 16:50:38 2007 +X-DSPAM-Confidence: 0.7558 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39291 + +Author: cwen@iupui.edu +Date: 2007-12-14 16:41:56 -0500 (Fri, 14 Dec 2007) +New Revision: 39291 + +Added: +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSitesMigrate.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMigrate.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importSelection.vm +Modified: +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-import.vm +Log: +sak-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Dec 14 16:24:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 16:24:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 16:24:37 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by brazil.mail.umich.edu () with ESMTP id lBELOak0023796; + Fri, 14 Dec 2007 16:24:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4762F48F.58D8.3346 ; + 14 Dec 2007 16:24:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C9D576DB5A; + Fri, 14 Dec 2007 21:24:30 +0000 (GMT) +Message-ID: <200712142116.lBELGAsi013474@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13 + for ; + Fri, 14 Dec 2007 21:24:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A5D283939A + for ; Fri, 14 Dec 2007 21:24:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBELGAJk013476 + for ; Fri, 14 Dec 2007 16:16:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBELGAsi013474 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 16:16:10 -0500 +Date: Fri, 14 Dec 2007 16:16:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r39290 - calendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 16:24:37 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39290 + +Author: bkirschn@umich.edu +Date: 2007-12-14 16:16:09 -0500 (Fri, 14 Dec 2007) +New Revision: 39290 + +Modified: +calendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +Log: +SAK-12221 check for null range parm in getEvents() + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 14 16:13:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 16:13:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 16:13:52 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id lBELDpO6013594; + Fri, 14 Dec 2007 16:13:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4762F20A.884D8.29953 ; + 14 Dec 2007 16:13:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 30B0B9EC4D; + Fri, 14 Dec 2007 21:13:45 +0000 (GMT) +Message-ID: <200712142105.lBEL5SYj013460@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83 + for ; + Fri, 14 Dec 2007 21:13:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2F5793943D + for ; Fri, 14 Dec 2007 21:13:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEL5S5c013462 + for ; Fri, 14 Dec 2007 16:05:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEL5SYj013460 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 16:05:28 -0500 +Date: Fri, 14 Dec 2007 16:05:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39289 - in user/trunk/user-tool-prefs/tool/src: bundle java/org/sakaiproject/user/tool webapp webapp/WEB-INF webapp/css webapp/prefs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 16:13:52 2007 +X-DSPAM-Confidence: 0.8424 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39289 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-14 16:05:16 -0500 (Fri, 14 Dec 2007) +New Revision: 39289 + +Added: +user/trunk/user-tool-prefs/tool/src/webapp/css/ +user/trunk/user-tool-prefs/tool/src/webapp/css/useDHTMLMore.css +user/trunk/user-tool-prefs/tool/src/webapp/prefs/tab-dhtml-moresites.jsp +Modified: +user/trunk/user-tool-prefs/tool/src/bundle/user-tool-prefs.properties +user/trunk/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool/UserPrefsTool.java +user/trunk/user-tool-prefs/tool/src/webapp/WEB-INF/faces-config.xml +Log: +SAK-11460 + +Patch by Anastasia Cheetham & Joseph Scheuhammer applied, Thank you + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 16:07:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 16:07:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 16:07:40 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by casino.mail.umich.edu () with ESMTP id lBEL7dc2005894; + Fri, 14 Dec 2007 16:07:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4762F093.E61D8.26929 ; + 14 Dec 2007 16:07:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 705039EA4C; + Fri, 14 Dec 2007 21:07:31 +0000 (GMT) +Message-ID: <200712142059.lBEKx7nk013432@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 759 + for ; + Fri, 14 Dec 2007 21:07:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8851D39409 + for ; Fri, 14 Dec 2007 21:06:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKx8KK013434 + for ; Fri, 14 Dec 2007 15:59:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKx7nk013432 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:59:07 -0500 +Date: Fri, 14 Dec 2007 15:59:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39288 - content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 16:07:40 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39288 + +Author: cwen@iupui.edu +Date: 2007-12-14 15:59:06 -0500 (Fri, 14 Dec 2007) +New Revision: 39288 + +Modified: +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +sak-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 16:02:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 16:02:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 16:02:35 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by chaos.mail.umich.edu () with ESMTP id lBEL2Y4c015060; + Fri, 14 Dec 2007 16:02:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4762EF64.8F9A4.11891 ; + 14 Dec 2007 16:02:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE3649EA6B; + Fri, 14 Dec 2007 21:02:25 +0000 (GMT) +Message-ID: <200712142054.lBEKsBU4013402@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 400 + for ; + Fri, 14 Dec 2007 21:02:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D4CA039409 + for ; Fri, 14 Dec 2007 21:02:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKsBKW013404 + for ; Fri, 14 Dec 2007 15:54:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKsBU4013402 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:54:11 -0500 +Date: Fri, 14 Dec 2007 15:54:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39287 - entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 16:02:35 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39287 + +Author: cwen@iupui.edu +Date: 2007-12-14 15:54:10 -0500 (Fri, 14 Dec 2007) +New Revision: 39287 + +Modified: +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityTransferrer.java +Log: +SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 15:46:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 15:46:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 15:46:12 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lBEKkB55032640; + Fri, 14 Dec 2007 15:46:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4762EB81.C73B5.10044 ; + 14 Dec 2007 15:45:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 95E999EB99; + Fri, 14 Dec 2007 20:43:59 +0000 (GMT) +Message-ID: <200712142037.lBEKbhZ2013344@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1013 + for ; + Fri, 14 Dec 2007 20:43:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3B44F393F3 + for ; Fri, 14 Dec 2007 20:45:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKbh3T013346 + for ; Fri, 14 Dec 2007 15:37:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKbhZ2013344 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:37:43 -0500 +Date: Fri, 14 Dec 2007 15:37:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39285 - in discussion/branches/SAK-12433: . discussion-api discussion-api/api discussion-api/api/src discussion-api/api/src/java discussion-api/api/src/java/org discussion-api/api/src/java/org/sakaiproject discussion-api/api/src/java/org/sakaiproject/discussion discussion-api/api/src/java/org/sakaiproject/discussion/api discussion-api/api/src/java/org/sakaiproject/discussion/cover discussion-help discussion-help/src discussion-help/src/sakai_discussion discussion-impl discussion-impl/impl discussion-impl/impl/src discussion-impl/impl/src/java discussion-impl/impl/src/java/org discussion-impl/impl/src/java/org/sakaiproject discussion-impl/impl/src/java/org/sakaiproject/discussion discussion-impl/impl/src/java/org/sakaiproject/discussion/impl discussion-impl/impl/src/sql discussion-impl/impl/src/sql/hsqldb discussion-impl/impl/src/sql/mysql discussion-impl/impl/src/sql/oracle discussion-impl/pack discussion-impl/pack/src discussion-impl/pack/src/w! + ebapp discussion-impl/pack/src/webapp/WEB-INF discussion-tool discussion-tool/tool discussion-tool/tool/src discussion-tool/tool/src/bundle discussion-tool/tool/src/java discussion-tool/tool/src/java/org discussion-tool/tool/src/java/org/sakaiproject discussion-tool/tool/src/java/org/sakaiproject/discussion discussion-tool/tool/src/java/org/sakaiproject/discussion/tool discussion-tool/tool/src/webapp discussion-tool/tool/src/webapp/WEB-INF discussion-tool/tool/src/webapp/tools discussion-tool/tool/src/webapp/vm discussion-tool/tool/src/webapp/vm/discussion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 15:46:12 2007 +X-DSPAM-Confidence: 0.6941 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39285 + +Author: cwen@iupui.edu +Date: 2007-12-14 15:37:38 -0500 (Fri, 14 Dec 2007) +New Revision: 39285 + +Added: +discussion/branches/SAK-12433/discussion-api/ +discussion/branches/SAK-12433/discussion-api/.classpath +discussion/branches/SAK-12433/discussion-api/.project +discussion/branches/SAK-12433/discussion-api/api/ +discussion/branches/SAK-12433/discussion-api/api/pom.xml +discussion/branches/SAK-12433/discussion-api/api/project.xml +discussion/branches/SAK-12433/discussion-api/api/src/ +discussion/branches/SAK-12433/discussion-api/api/src/java/ +discussion/branches/SAK-12433/discussion-api/api/src/java/org/ +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/ +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/ +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/ +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionChannel.java +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionChannelEdit.java +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessage.java +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessageEdit.java +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessageHeader.java +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessageHeaderEdit.java +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionService.java +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/cover/ +discussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/cover/DiscussionService.java +discussion/branches/SAK-12433/discussion-help/ +discussion/branches/SAK-12433/discussion-help/pom.xml +discussion/branches/SAK-12433/discussion-help/project.xml +discussion/branches/SAK-12433/discussion-help/src/ +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/ +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arau.html +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/araz.html +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arbb.html +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arca.html +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/ardo.html +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arfh.html +discussion/branches/SAK-12433/discussion-help/src/sakai_discussion/help.xml +discussion/branches/SAK-12433/discussion-impl/ +discussion/branches/SAK-12433/discussion-impl/.classpath +discussion/branches/SAK-12433/discussion-impl/.project +discussion/branches/SAK-12433/discussion-impl/impl/ +discussion/branches/SAK-12433/discussion-impl/impl/pom.xml +discussion/branches/SAK-12433/discussion-impl/impl/project.xml +discussion/branches/SAK-12433/discussion-impl/impl/src/ +discussion/branches/SAK-12433/discussion-impl/impl/src/java/ +discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/ +discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/ +discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/ +discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/ +discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/BaseDiscussionService.java +discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/DbDiscussionService.java +discussion/branches/SAK-12433/discussion-impl/impl/src/sql/ +discussion/branches/SAK-12433/discussion-impl/impl/src/sql/hsqldb/ +discussion/branches/SAK-12433/discussion-impl/impl/src/sql/hsqldb/sakai_discussion.sql +discussion/branches/SAK-12433/discussion-impl/impl/src/sql/mysql/ +discussion/branches/SAK-12433/discussion-impl/impl/src/sql/mysql/sakai_discussion.sql +discussion/branches/SAK-12433/discussion-impl/impl/src/sql/oracle/ +discussion/branches/SAK-12433/discussion-impl/impl/src/sql/oracle/sakai_discussion.sql +discussion/branches/SAK-12433/discussion-impl/pack/ +discussion/branches/SAK-12433/discussion-impl/pack/pom.xml +discussion/branches/SAK-12433/discussion-impl/pack/project.xml +discussion/branches/SAK-12433/discussion-impl/pack/src/ +discussion/branches/SAK-12433/discussion-impl/pack/src/webapp/ +discussion/branches/SAK-12433/discussion-impl/pack/src/webapp/WEB-INF/ +discussion/branches/SAK-12433/discussion-impl/pack/src/webapp/WEB-INF/components.xml +discussion/branches/SAK-12433/discussion-tool/ +discussion/branches/SAK-12433/discussion-tool/.classpath +discussion/branches/SAK-12433/discussion-tool/.project +discussion/branches/SAK-12433/discussion-tool/tool/ +discussion/branches/SAK-12433/discussion-tool/tool/pom.xml +discussion/branches/SAK-12433/discussion-tool/tool/project.xml +discussion/branches/SAK-12433/discussion-tool/tool/src/ +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/ +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ar.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ca.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ca.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_es.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_es.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_fr_CA.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_fr_CA.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ja.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ja.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ko.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ko.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_nl.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_nl.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_sv.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_zh_CN.metaprops +discussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_zh_CN.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/java/ +discussion/branches/SAK-12433/discussion-tool/tool/src/java/org/ +discussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/ +discussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/discussion/ +discussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/discussion/tool/ +discussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/discussion/tool/DiscussionAction.java +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/ +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/WEB-INF/ +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/WEB-INF/web.xml +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/tools/ +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/tools/sakai.discussion.xml +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/velocity.properties +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/ +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/ +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Control.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-DeleteCategoryConfirm.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-DeleteTopicConfirm.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Layout.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-List.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Newcategory.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Newtopic.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Reply.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Reply_Preview.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Toolbar.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-customize.vm +discussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-topic_content.vm +discussion/branches/SAK-12433/pom.xml +Log: +SAK-12433 => from r31545 of sakai_2-4-x. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 15:43:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 15:43:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 15:43:53 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by fan.mail.umich.edu () with ESMTP id lBEKhqWK004376; + Fri, 14 Dec 2007 15:43:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4762EB02.64BA2.13765 ; + 14 Dec 2007 15:43:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2AC696DB5A; + Fri, 14 Dec 2007 20:41:52 +0000 (GMT) +Message-ID: <200712142035.lBEKZZLD013332@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 4 + for ; + Fri, 14 Dec 2007 20:41:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B29AC39393 + for ; Fri, 14 Dec 2007 20:43:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKZZaK013334 + for ; Fri, 14 Dec 2007 15:35:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKZZLD013332 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:35:35 -0500 +Date: Fri, 14 Dec 2007 15:35:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39284 - discussion/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 15:43:53 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39284 + +Author: cwen@iupui.edu +Date: 2007-12-14 15:35:34 -0500 (Fri, 14 Dec 2007) +New Revision: 39284 + +Added: +discussion/branches/SAK-12433/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 15:35:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 15:35:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 15:35:13 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lBEKZAfj026882; + Fri, 14 Dec 2007 15:35:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4762E8F8.91D78.3373 ; + 14 Dec 2007 15:35:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6CD59EB89; + Fri, 14 Dec 2007 20:35:02 +0000 (GMT) +Message-ID: <200712142026.lBEKQiBB013309@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697 + for ; + Fri, 14 Dec 2007 20:34:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0DE01393C6 + for ; Fri, 14 Dec 2007 20:34:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKQi8G013311 + for ; Fri, 14 Dec 2007 15:26:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKQiBB013309 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:26:44 -0500 +Date: Fri, 14 Dec 2007 15:26:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39283 - in sam/branches/SAK-12433: . conf conf/opt conf/opt/j2ee conf/opt/j2ee/dev conf/opt/j2ee/dev/org conf/opt/j2ee/dev/org/sakaiproject conf/opt/j2ee/dev/org/sakaiproject/settings conf/opt/j2ee/dev/org/sakaiproject/settings/sam conf/opt/logs conf/opt/logs/dev conf/opt/logs/dev/Navigo conf/opt/sa_forms conf/opt/sa_forms/java conf/opt/sa_forms/java/dev conf/opt/sa_forms/java/dev/org conf/opt/sa_forms/java/dev/org/sakaiproject conf/opt/sa_forms/java/dev/org/sakaiproject/security conf/opt/sa_forms/java/dev/org/sakaiproject/security/sam docs docs/delivery samigo-api samigo-api/src samigo-api/src/java samigo-api/src/java/org samigo-api/src/java/org/sakaiproject samigo-api/src/java/org/sakaiproject/tool samigo-api/src/java/org/sakaiproject/tool/assessment samigo-api/src/java/org/sakaiproject/tool/assessment/data samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment sam! + igo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/questionpool samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared samigo-api/src/java/org/sakaiproject/tool/assessment/data/model samigo-api/src/java/org/sakaiproject/tool/assessment/samlite samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api samigo-api/src/java/org/sakaiproject/tool/assessment/shared samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/common samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/qti samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/questionpool samigo-api/src/java/org/sakaipro! + ject/tool/dummy samigo-api/src/java/org/sakaiproject/tool/dumm! + y/ifc sa +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 15:35:13 2007 +X-DSPAM-Confidence: 0.5723 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39283 + +Author: cwen@iupui.edu +Date: 2007-12-14 15:24:41 -0500 (Fri, 14 Dec 2007) +New Revision: 39283 + +Added: +sam/branches/SAK-12433/README.txt +sam/branches/SAK-12433/build.xml +sam/branches/SAK-12433/conf/ +sam/branches/SAK-12433/conf/opt/ +sam/branches/SAK-12433/conf/opt/j2ee/ +sam/branches/SAK-12433/conf/opt/j2ee/dev/ +sam/branches/SAK-12433/conf/opt/j2ee/dev/org/ +sam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/ +sam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/ +sam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/ +sam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/OsidImplBindings.properties +sam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/SAM.properties +sam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/spring_contexts.properties +sam/branches/SAK-12433/conf/opt/logs/ +sam/branches/SAK-12433/conf/opt/logs/dev/ +sam/branches/SAK-12433/conf/opt/logs/dev/Navigo/ +sam/branches/SAK-12433/conf/opt/logs/dev/Navigo/README.txt +sam/branches/SAK-12433/conf/opt/readme.txt +sam/branches/SAK-12433/conf/opt/sa_forms/ +sam/branches/SAK-12433/conf/opt/sa_forms/java/ +sam/branches/SAK-12433/conf/opt/sa_forms/java/dev/ +sam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/ +sam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/ +sam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/security/ +sam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/security/sam/ +sam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/security/sam/samigo.xml +sam/branches/SAK-12433/docs/ +sam/branches/SAK-12433/docs/2_1_1_releaseNotes.txt +sam/branches/SAK-12433/docs/2_1_releaseNotes.txt +sam/branches/SAK-12433/docs/LICENSE.txt +sam/branches/SAK-12433/docs/README.STANDALONE.txt +sam/branches/SAK-12433/docs/README.import_export.txt +sam/branches/SAK-12433/docs/README.txt +sam/branches/SAK-12433/docs/delivery/ +sam/branches/SAK-12433/docs/delivery/implementation.txt +sam/branches/SAK-12433/docs/facade_architecture_design.gif +sam/branches/SAK-12433/docs/facade_design_decision.txt +sam/branches/SAK-12433/docs/facade_html.zip +sam/branches/SAK-12433/docs/license_1_0.html +sam/branches/SAK-12433/docs/license_1_0.txt +sam/branches/SAK-12433/docs/license_1_0_boilerplate.txt +sam/branches/SAK-12433/docs/sam_js_licenses.txt +sam/branches/SAK-12433/docs/service_api_design.txt +sam/branches/SAK-12433/hibernate.properties +sam/branches/SAK-12433/maven.xml +sam/branches/SAK-12433/patched-src/ +sam/branches/SAK-12433/pom.xml +sam/branches/SAK-12433/project.properties +sam/branches/SAK-12433/project.xml +sam/branches/SAK-12433/project.xml.standalone +sam/branches/SAK-12433/samigo-api/ +sam/branches/SAK-12433/samigo-api/maven.xml +sam/branches/SAK-12433/samigo-api/pom.xml +sam/branches/SAK-12433/samigo-api/project.xml +sam/branches/SAK-12433/samigo-api/readme.txt +sam/branches/SAK-12433/samigo-api/src/ +sam/branches/SAK-12433/samigo-api/src/java/ +sam/branches/SAK-12433/samigo-api/src/java/org/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AnswerFeedbackIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AnswerIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentAccessControlIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentAttachmentIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentBaseIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentFeedbackIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentMetaDataIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentTemplateIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AttachmentIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/EvaluationModelIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemAttachmentIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemDataIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemFeedbackIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemMetaDataIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemTextIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/PublishedAssessmentIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SectionAttachmentIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SectionDataIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SectionMetaDataIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SecuredIPAddressIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/AuthorizationIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/AuthorizationIteratorIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/FunctionIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/FunctionIteratorIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/QualifierIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/QualifierIteratorIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/AssessmentGradingIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/AssessmentGradingSummaryIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/ItemGradingIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/MediaIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/StudentGradingSummaryIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/questionpool/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/questionpool/QuestionPoolDataIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/questionpool/QuestionPoolItemIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/AgentDataIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/SiteTypeIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/TypeIfc.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/model/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/model/Tree.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/Answer.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/Question.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/QuestionGroup.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/SamLiteService.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/AssessmentServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/ItemServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/PublishedAssessmentServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/SectionServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/common/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/common/MediaServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/common/TypeServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradebookServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingSectionAwareServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/qti/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/qti/QTIServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/questionpool/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/questionpool/QuestionPoolServiceAPI.java +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/dummy/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/dummy/ifc/ +sam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/dummy/ifc/DummyIfc.java +sam/branches/SAK-12433/samigo-api/src/java/xml/ +sam/branches/SAK-12433/samigo-api/src/java/xml/author/ +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/ +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/assessmentTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/audioRecordingTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/essayTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/fibTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/fileUploadTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/finTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/matchTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/mcMCTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/mcSCTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/mcSurveyTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/sectionTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/ +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/10.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/5.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/AGREE.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/AVERAGE.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/EXCELLENT.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/STRONGLY_AGREE.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/UNDECIDED.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/YES.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/trueFalseTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/ +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/assessmentTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/audioRecordingTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/essayTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/fibTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/fileUploadTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/finTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/matchTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/mcMCTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/mcSCTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/sectionTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/ +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/10.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/5.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/AGREE.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/AVERAGE.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/EXCELLENT.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/STRONGLY_AGREE.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/UNDECIDED.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/YES.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/trueFalseTemplate.xml +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/ +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/ +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/README.txt +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/ +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/ +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/extractAssessment.xsl +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/extractItem.xsl +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/extractSection.xsl +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/ +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/extractAssessment.xsl +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/extractItem.xsl +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/extractSection.xsl +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/result/ +sam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/result/extractGrades.xsl +sam/branches/SAK-12433/samigo-app/ +sam/branches/SAK-12433/samigo-app/maven.xml +sam/branches/SAK-12433/samigo-app/patched-src/ +sam/branches/SAK-12433/samigo-app/pom.xml +sam/branches/SAK-12433/samigo-app/project.properties +sam/branches/SAK-12433/samigo-app/project.xml +sam/branches/SAK-12433/samigo-app/readme.txt +sam/branches/SAK-12433/samigo-app/sakai-samigo/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/WEB-INF/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/WEB-INF/web.xml +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/include/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/include/header.inc +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/delivery/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/delivery/login.jsp +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/index/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/index/index.jsp +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/index/mainIndex.jsp +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/security/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/security/roleCheckStaticInclude.jsp +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/tools/ +sam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/tools/sakai.samigo.tool.xml +sam/branches/SAK-12433/samigo-app/src/ +sam/branches/SAK-12433/samigo-app/src/java/ +sam/branches/SAK-12433/samigo-app/src/java/com/ +sam/branches/SAK-12433/samigo-app/src/java/com/corejsf/ +sam/branches/SAK-12433/samigo-app/src/java/com/corejsf/UploadFilter.java +sam/branches/SAK-12433/samigo-app/src/java/com/corejsf/UploadRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/com/corejsf/UploadTag.java +sam/branches/SAK-12433/samigo-app/src/java/com/corejsf/util/ +sam/branches/SAK-12433/samigo-app/src/java/com/corejsf/util/Tags.java +sam/branches/SAK-12433/samigo-app/src/java/log4j.properties +sam/branches/SAK-12433/samigo-app/src/java/options.metaprops +sam/branches/SAK-12433/samigo-app/src/java/options.properties +sam/branches/SAK-12433/samigo-app/src/java/options_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/options_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/options_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/options_es.properties +sam/branches/SAK-12433/samigo-app/src/java/options_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/options_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/options_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/options_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/options_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/component/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/component/RichTextEditArea.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/renderer/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/renderer/RichTextEditArea.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/tag/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/tag/RichTextEditArea.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/util/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/util/SamigoJsfTool.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/SamigoApiFactory.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/spring/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/spring/FactoryUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/spring/SamigoApi.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthzPermissions.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthzPermissions_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SamLite.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SamLite_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ar.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ca.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ca.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_es.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_es.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_fr_CA.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ja.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ja.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_nl.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_nl.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_sv.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_zh_CN.metaprops +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_zh_CN.properties +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/business/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/business/questionpool/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPoolTreeImpl.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/GetTextFromXML.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/ManagedBeanUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/RenderMaker.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/SubstituteProperties.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/AlphaIndexRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/ColorPickerPopupRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/ColorPickerRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/DataLineRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/DatePickerPopupRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/DatePickerRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/HideDivisionRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/NavigationMapRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/PagerButtonControlRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/PagerButtonRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/PagerRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/ScriptRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/StylesheetRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/TimerBarRenderer.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/util/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/util/RendererUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/AlphaIndexTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/ColorPickerPopupTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/ColorPickerTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/DataLineTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/DatePickerPopupTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/DatePickerTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/HideDivisionTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/NavigationMapTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/PagerButtonControlTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/PagerButtonTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/PagerTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/ScriptTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/StylesheetTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/TagUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/TimerBarTag.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/assessment/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/questionpool/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/ApplicationContextLocatorConfigListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/ApplicationEnvironment.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/ApplicationSettings.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/Constants.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/OjbBootStrap.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/OjbConfigListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/OkiOsidConfigListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/PathInfo.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/PathInfoInitListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/impl/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/impl/qti/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/impl/qti/QTIServiceImpl.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AnswerBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AttachmentBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AuthorBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/DeleteConfirmBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/FileUploadBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/IndexBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemAuthorBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemConfigBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/MatchItemBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/MetaDataBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentBeanie.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/SectionBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/TemplateBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/authz/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/authz/AuthorizationBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/cms/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/cms/CourseManagementBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ContentsDeliveryBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBeanie.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DisplayAssetsBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/FeedbackComponent.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/FibBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/FinBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ItemContentsBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/MatchingBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/SectionContentsBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/SelectionBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/SettingsDeliveryBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/resource/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/AgentResults.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/EvaluationResultBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramBarBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramSectionBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/PartData.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/RetakeAssessmentBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/StudentScoresBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/misc/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/misc/BuildInfoBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/XMLController.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/XMLDisplay.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/XMLImportBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/QuestionPoolBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/QuestionPoolDataBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/QuestionPoolDataModel.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/TestPool.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/samlite/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/samlite/SamLiteBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/select/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/select/SelectAssessmentBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/BackingBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/MediaBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/PersonBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/SubBackingBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/EmailBean.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/Validator.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorPartListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorQuestionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorSettingsListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ChooseExportTypeListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmDeleteTemplateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmPublishAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmRemoveAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmRemoveAttachmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmRemovePartListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/DeleteTemplateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditPartListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditPublishedSettingsListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditTemplateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ExportAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ExportItemListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ImportAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemAddListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemModifyListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PreviewAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PreviewPublishedAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveAssessmentThread.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveAttachmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePartListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePublishedAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePublishedAssessmentThread.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveQuestionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ReorderPartsListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ReorderQuestionsListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ResetAssessmentAttachmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ResetItemAttachmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ResetPartAttachmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentAttachmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettingsListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartAttachmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePublishedSettingsListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SortCoreAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SortInactivePublishedAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SortPublishedAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/StartCreateItemListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/StartInsertItemListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateBaseListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateLoadListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateUpdateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TimedAssessmentChangeListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/AudioUploadActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/BeginDeliveryActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/DeliveryActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/LinearAccessDeliveryActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/RedirectLoginListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/ResetDeliveryListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/ReviewActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/ShowFeedbackActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/SubmitToGradingActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/TableOfContentsActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/UpdateTimerFromTOCListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/UpdateTimerListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/ConfirmRetakeAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScorePagerListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreUpdateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/ResetQuestionScoreListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/ResetTotalScoreListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/RetakeAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/StudentScoreListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/StudentScoreUpdateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/SubmissionStatusListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/util/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/util/EvaluationListenerUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/CancelImportToAssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/ImportQuestionsToAuthoring.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/PoolSaveListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/SortQuestionListListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/StartRemoveItemsListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/AssessmentListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/NameListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/ParserListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/QuestionPoolListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/shared/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/shared/ConfirmRemoveMediaListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/shared/RemoveMediaListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/ContextUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/EmailListener.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/TimeUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/PagingModel.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/delivery/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/delivery/TimedAssessmentGradingModel.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/delivery/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/delivery/SubmitTimedAssessmentThread.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/delivery/TimedAssessmentQueue.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/InitMimeTypes.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/StoreApplicationContext.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/cp/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/cp/DownloadCPServlet.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/DownloadAllMediaServlet.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/LoginServlet.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowMediaServlet.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/UploadAudioMediaServlet.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/qti/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/qti/ShowQTIServlet.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/action/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/action/InitAction.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/filter/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/filter/Log4jMdcFilter.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/filter/SetCharacterEncodingFilter.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/session/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/session/SessionUtil.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanDateComparator.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanFloatComparator.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanIntegerComparator.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanSort.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanSortComparator.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/SamigoEmailAuthenticator.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/SamigoEmailService.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/ +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/Item.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/SamigoTool.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/SamigoToolServiceSoapBindingImpl.java +sam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/SamigoToolWebService.java +sam/branches/SAK-12433/samigo-app/src/java/readme_packages.txt +sam/branches/SAK-12433/samigo-app/src/java/reg/ +sam/branches/SAK-12433/samigo-app/src/java/reg/sakai.samigo.xml +sam/branches/SAK-12433/samigo-app/src/java/repository-nav.xml +sam/branches/SAK-12433/samigo-app/src/java/repository.dtd +sam/branches/SAK-12433/samigo-app/src/java/repository.xml +sam/branches/SAK-12433/samigo-app/src/java/test/ +sam/branches/SAK-12433/samigo-app/src/java/test/data/ +sam/branches/SAK-12433/samigo-app/src/java/test/data/imsmanifest.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/realizedAssessment.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/respondus_IMS_QTI_sample12Assessment.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Assessment.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Assessment2.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Item.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Item2.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Section.xml +sam/branches/SAK-12433/samigo-app/src/java/test/data/zip/ +sam/branches/SAK-12433/samigo-app/src/java/test/data/zip/firstfile.txt +sam/branches/SAK-12433/samigo-app/src/java/test/data/zip/secondfile.txt +sam/branches/SAK-12433/samigo-app/src/java/test/data/zip/thirdfile.txt +sam/branches/SAK-12433/samigo-app/src/java/test/org/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/helper/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/helper/AuthoringHelperTest.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/helper/QTITester.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/LinksModelBean.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/SubBackingBean.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestBackingBean.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestLink.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestLinksBean.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestWSBean.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/listener/ +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/listener/FakeBeginDeliveryActionListener.java +sam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/listener/TestActionListener.java +sam/branches/SAK-12433/samigo-app/src/webapp/ +sam/branches/SAK-12433/samigo-app/src/webapp/META-INF/ +sam/branches/SAK-12433/samigo-app/src/webapp/META-INF/MANIFEST.MF +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/ +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/asi.tld +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/faces-config.xml +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/html_basic.tld +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/jsf_core.tld +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/mime.types +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/samigo.tld +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/upload.tld +sam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/web.xml +sam/branches/SAK-12433/samigo-app/src/webapp/crossdomain.xml +sam/branches/SAK-12433/samigo-app/src/webapp/css/ +sam/branches/SAK-12433/samigo-app/src/webapp/css/tool.css +sam/branches/SAK-12433/samigo-app/src/webapp/css/tool_base.css +sam/branches/SAK-12433/samigo-app/src/webapp/css/tool_sam.css +sam/branches/SAK-12433/samigo-app/src/webapp/html/ +sam/branches/SAK-12433/samigo-app/src/webapp/html/calendar.html +sam/branches/SAK-12433/samigo-app/src/webapp/html/picker.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/_test.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/dialog.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/htmlarea.css +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/htmlarea.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_about.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_center.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_justify.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_left.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_right.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_blank.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_charmap.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_color_bg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_color_fg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_copy.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_custom.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_cut.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_bold.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_italic.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_strike.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_sub.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_sup.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_underline.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_help.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_hr.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_html.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_image.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_indent_less.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_indent_more.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_link.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_list_bullet.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_list_num.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_paste.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_redo.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_show_border.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_splitcel.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_undo.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/fullscreen_maximize.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/fullscreen_minimize.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/htmlarea_editor.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/insert_table.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/recordaudio.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/recording.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/recordresponse.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/regular_smile.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/sad_smile.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/toolbar.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/index.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/b5.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/da.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/de.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/es.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/fi.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/fr.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/gb.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/it.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-euc.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-jis.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-sjis.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-utf8.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/nb.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/nl.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/pl.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/pt_br.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ro.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ru.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/se.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/vn.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/license.txt +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_js/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_js/navigo_editor.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_js/spell-checker.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/about.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/editor_help.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/file_upload.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_image.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_image.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_link.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_link.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/blank.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/img/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/img/spell-check.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/lang/ro.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/readme-tech.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-logic.cgi +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-style.css +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-ui.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-ui.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-checker.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-merge.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-prop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-split.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-insert-after.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-insert-before.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-split.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-insert-above.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-insert-under.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-prop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-split.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/table-prop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/fi.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/ro.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/table-operations.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popupdiv.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/ +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/about.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/blank.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/custom2.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/editor_help.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/fullscreen.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/insert_image.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/insert_table.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/old-fullscreen.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/old_insert_image.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/popup.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/select_color.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popupwin.js +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/reference.html +sam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/release-notes.html +sam/branches/SAK-12433/samigo-app/src/webapp/images/ +sam/branches/SAK-12433/samigo-app/src/webapp/images/Mp3.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/PlayDown.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/PlayNormal.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/PlayUp.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/Ppt.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/RecordDown.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/RecordNormal.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/RecordUp.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/StopDown.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/StopNormal.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/StopUp.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/SubmitDown.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/SubmitNormal.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/SubmitUp.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/admin.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/arrow-open.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/audio_play.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/audio_record.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/audio_stop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/barrow.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/barrowsm.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/blackdot.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/blarrowsm.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/bluedot.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/bmp.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/cal.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/ +sam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/cal.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/next.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/next_year.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/pixel.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/prev.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/prev_year.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/cancelled.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/check.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/checked.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/checkmark.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/circle.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/cleardot.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/click.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/crossmark.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/darrow.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/ +sam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/checkmark.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/green.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/red.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/spacer.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/divider.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/divider1.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/divider2.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/djvu.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/doc.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/dot.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/down_arrow.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/exe.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/file.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/folder-closed.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/folder-open.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/gif.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/grarrowsm.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/graytriangle.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/header_background.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/helpSUbut-over.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/helpSUbut.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/hints/ +sam/branches/SAK-12433/samigo-app/src/webapp/images/hints/1.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/hints/1q.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/hints/2.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/hints/3.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/hints/4.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/hints/corner.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/html.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/importInfo.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/jpg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/listen.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/loginBut-over.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/loginBut.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mail.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/menudot.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/ +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/bmp.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/djvu.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/doc.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/exe.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/ghost64.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/gif.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/gsview2.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/hqx.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/html.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/jpg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mht.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/midi.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mm.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mov.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mp3.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mpg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/pdf.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/ppt.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/ps.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/sit.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/spss.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/tif.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/txt.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/unknown.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/wav.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/xls.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/zip.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mov.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/mpg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/next.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/pdf.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/prev.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/printversion.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/printversion_over.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/progressbar.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/radiochecked.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/radiounchecked.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/rarrow.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/rarrowsm.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/recordresponse.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/reddot.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/right_arrow.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/sakai.jpg +sam/branches/SAK-12433/samigo-app/src/webapp/images/sel.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/sortascending.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/sortdescending.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/sound.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/spacer.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/stopsign.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/tif.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/tinyArrowR.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/titleline.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/tree/ +sam/branches/SAK-12433/samigo-app/src/webapp/images/tree/blank.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/tree/closed.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/tree/doc.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/tree/marked.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/tree/open.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/ +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/base.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/empty.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/folder.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/folderopen.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/join.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/joinbottom.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/line.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/minus.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/minusbottom.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/page.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/pixel.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/plus.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/plusbottom.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/ttm.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/txt.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/uarrow.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/unchecked.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/unknown.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/upload.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/view.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/wav.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/wizardtop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/wizardtop_back.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/x.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/xls.gif +sam/branches/SAK-12433/samigo-app/src/webapp/images/zip.gif +sam/branches/SAK-12433/samigo-app/src/webapp/include/ +sam/branches/SAK-12433/samigo-app/src/webapp/include/header.inc +sam/branches/SAK-12433/samigo-app/src/webapp/js/ +sam/branches/SAK-12433/samigo-app/src/webapp/js/authoring.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/browser.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/calendar1.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/calendar2.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/delivery.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/dueDate.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/dueDate2.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/hints.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/hints_cfg.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/navigo.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/picker.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/preview.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/progressBar.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/progressBar2.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/sakai_tool_headscripts.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/samigotree.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/selectbox.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/tigra_tables.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/tree.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/treeJavascript.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/tree_items.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/tree_tpl.js +sam/branches/SAK-12433/samigo-app/src/webapp/js/xmlTree.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/allHeadings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/assessmentHeadings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/authorIndex.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/authorSettings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/authorSettings_attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/confirmAssessmentRetract.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editPart.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editPart_attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editQuestion.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/audioRecording.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/fileUpload.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/fillInNumeric.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/fillInTheBlank.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/itemHeadings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/matching.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/multipleChoice.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/multipleChoiceSurvey.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/shortAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/trueFalse.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/part_attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/previewAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/previewQuestion.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/AudioRecording.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/FileUpload.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/FillInNumeric.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/FillInTheBlank.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/Matching.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/MultipleChoiceMultipleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/MultipleChoiceSingleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/MultipleChoiceSurvey.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/ShortAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/TrueFalse.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/publishAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/publishedSettings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/AudioRecording.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/FileUpload.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/FillInNumeric.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/FillInTheBlank.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/Matching.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/MultipleChoiceMultipleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/MultipleChoiceSingleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/MultipleChoiceSurvey.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/ShortAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/TrueFalse.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeAssessmentAttachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeItemAttachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removePart.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removePartAttachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeQuestion.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/accessDenied.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/accessError.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/anonymousQuitMessage.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/anonymousThankyouMessage.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessmentDeliveryHeading.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessmentHasBeenSubmitted.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessmentNotAvailable.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/beginTakingAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/beginTakingAssessment_viaurl.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/deliverAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/discrepancyInData.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/invalidAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/ipAccessError.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/isRetracted.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/audioApplet.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/audioObject.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/audioSettings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverAudioRecording.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverFileUpload.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverFillInNumeric.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverFillInTheBlank.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverMatching.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverMultipleChoiceMultipleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverMultipleChoiceSingleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverShortAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverShortAnswerLink.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverTrueFalse.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/login.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/mediaAccessDenied.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/noLateSubmission.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/noSubmissionLeft.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/passwordAccessError.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/autoSubmit.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/sessionExpired.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/sessionWillTimeout.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/reviewAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/stub.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/submitted.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/tableOfContents.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/timeExpired.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/timeout.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/welcome.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/confirmEmailSent.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/confirmRetake.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/createNewEmail.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/emailAttachment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/emailError.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/evaluationHeadings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/fullShortAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/gradeStudentResult.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayAudioRecording.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayAudioRecordingAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayAudioRecordingQuestion.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFileUpload.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFileUploadAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFileUploadQuestion.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFillInNumeric.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFillInTheBlank.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayMatching.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayMultipleChoiceMultipleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayMultipleChoiceSingleCorrect.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayShortAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayTrueFalse.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/modelShortAnswer.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/modelShortAnswerQS.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/questionScore.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/rationale.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/submissionStatus.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/totalScores.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/index/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/index/exit.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/index/index.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/chooseExportType.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/exportAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/exportDenied.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/exportItem.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/importAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/importPool.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/xmlDisplay.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/xmlDisplay.jsp.license.txt +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/addPool.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/addToAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/copyPool.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/copyPoolTree.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/copyQuestion.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/editPool.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/index_error.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/movePool.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/movePoolTree.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/newtestdt.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/pagertest.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/poolList.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/poolTree.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/poolTreeTable.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/questionTreeTable.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/questionpoolHeadings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/removePool.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/removeQuestion.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/selectQuestionType.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/subpoolsTreeTable.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/test.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/review/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/review/reviewAssessment.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/samlite/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/samlite/samLiteEntry.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/samlite/samLiteValidation.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/security/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/security/roleCheckStandaloneStaticInclude.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/select/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/select/selectIndex.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/shared/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/shared/mimeicon.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/shared/removeMedia.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/confirmTempRemove.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/templateEditor.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/templateHeadings.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/templateIndex.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/upload/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/upload/closeWindow.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/upload/uploadFile.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/colorpicker/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/colorpicker/colorpicker.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/colorpicker/colorpicker.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/calendar.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/datepicker.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/datepicker.jsp +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/hideDivision/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/hideDivision/hideDivision.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/timerBar/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/timerBar/timerbar.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/tree/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/tree/tree.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/ChangeLog +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/dialog.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/2-areas.cgi +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/2-areas.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/context-menu.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/core.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/css.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/custom.css +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/full-page.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/fully-loaded.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/index.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/spell-checker.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/table-operations.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/test.cgi +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/htmlarea.css +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/htmlarea.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_about.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_center.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_justify.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_left.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_right.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_blank.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_charmap.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_color_bg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_color_fg.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_copy.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_custom.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_cut.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_bold.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_italic.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_strike.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_sub.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_sup.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_underline.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_help.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_hr.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_html.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_image.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_indent_less.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_indent_more.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_left_to_right.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_link.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_list_bullet.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_list_num.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_paste.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_redo.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_right_to_left.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_save.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_show_border.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_splitcel.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_undo.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/fullscreen_maximize.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/fullscreen_minimize.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/insert_table.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/index.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/b5.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ch.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/cz.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/da.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/de.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ee.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/el.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/es.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/fi.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/fr.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/gb.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/he.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/hu.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/it.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-euc.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-jis.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-sjis.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-utf8.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/lt.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/lv.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/nb.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/nl.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/no.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/pl.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/pt_br.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ro.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ru.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/se.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/si.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/vn.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/license.txt +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/css.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/context-menu.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/de.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/el.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/nl.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/menu.css +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/full-page.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/img/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/img/docprop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/he.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/ro.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/popups/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/popups/docprop.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/test.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ListType/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ListType/list-type.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/img/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/img/spell-check.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/cz.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/da.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/de.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/hu.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/it.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/ro.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/readme-tech.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-logic.cgi +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-style.css +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-ui.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-ui.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-checker.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-merge.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-prop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-split.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-insert-after.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-insert-before.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-split.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-delete.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-insert-above.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-insert-under.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-prop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-split.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/table-prop.gif +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/cz.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/da.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/de.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/el.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/en.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/fi.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/hu.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/it.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/nl.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/no.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/ro.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/table-operations.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popupdiv.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/about.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/blank.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/custom2.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/editor_help.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/fullscreen.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/insert_image.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/insert_table.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/link.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/old-fullscreen.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/old_insert_image.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/popup.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/select_color.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popupwin.js +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/reference.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/release-notes.html +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/samigo/ +sam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/samigo/wysiwyg.js +sam/branches/SAK-12433/samigo-app/src/webapp/title.jsp +sam/branches/SAK-12433/samigo-archive/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/pom.xml +sam/branches/SAK-12433/samigo-archive/sam-handlers/project.xml +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/impl/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/impl/handlers/ +sam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/impl/handlers/SamigoHandler.java +sam/branches/SAK-12433/samigo-audio/ +sam/branches/SAK-12433/samigo-audio/example/ +sam/branches/SAK-12433/samigo-audio/example/audiorecordertest.html +sam/branches/SAK-12433/samigo-audio/install_audio_1.3.sh +sam/branches/SAK-12433/samigo-audio/maven.xml +sam/branches/SAK-12433/samigo-audio/pom.xml +sam/branches/SAK-12433/samigo-audio/project.xml +sam/branches/SAK-12433/samigo-audio/src/ +sam/branches/SAK-12433/samigo-audio/src/java/ +sam/branches/SAK-12433/samigo-audio/src/java/org/ +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/ +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioConfigHelp.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioControlContext.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioFormatPanel.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioPanel.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioRecorder.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioRecorderApplet.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioRecorderParams.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources.properties +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_ar.properties +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_ca.properties +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_fr_CA.properties +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_zh_CN.properties +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioSampleGraphPanel.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioSamplingData.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioUtil.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/ColorBackgroundPanel.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/ColorModel.java +sam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/colors.properties +sam/branches/SAK-12433/samigo-cp/ +sam/branches/SAK-12433/samigo-cp/pom.xml +sam/branches/SAK-12433/samigo-cp/project.xml +sam/branches/SAK-12433/samigo-cp/src/ +sam/branches/SAK-12433/samigo-cp/src/java/ +sam/branches/SAK-12433/samigo-cp/src/java/org/ +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/ +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/ExportService.java +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/ImportService.java +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/Manifest.java +sam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/ManifestGenerator.java +sam/branches/SAK-12433/samigo-help/ +sam/branches/SAK-12433/samigo-help/pom.xml +sam/branches/SAK-12433/samigo-help/project.xml +sam/branches/SAK-12433/samigo-help/src/ +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/ +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/aqyr.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/aqys.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arab.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arag.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arba.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbn.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbq.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbr.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbx.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbz.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arcq.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arcs.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arcx.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardc.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arde.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardf.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardi.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardm.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardr.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arec.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/areg.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arej.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arek.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arev.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/arfk.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/argy.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/aszx.html +sam/branches/SAK-12433/samigo-help/src/sakai_samigo/help.xml +sam/branches/SAK-12433/samigo-hibernate/ +sam/branches/SAK-12433/samigo-hibernate/maven.xml +sam/branches/SAK-12433/samigo-hibernate/pom.xml +sam/branches/SAK-12433/samigo-hibernate/project.xml +sam/branches/SAK-12433/samigo-hibernate/readme.txt +sam/branches/SAK-12433/samigo-hibernate/src/ +sam/branches/SAK-12433/samigo-hibernate/src/java/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/Answer.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AnswerFeedback.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentAccessControl.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentAttachment.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentBase.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentBaseData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentFeedback.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentMetaData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentTemplateData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AttachmentData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/EvaluationModel.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemAttachment.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemData.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemFeedback.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemMetaData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemText.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemType.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAccessControl.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAnswer.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAnswerFeedback.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessment.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessmentAttachment.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessmentData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAttachmentData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedEvaluationModel.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedFeedback.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemAttachment.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemData.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemFeedback.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemMetaData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemText.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedMetaData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSectionAttachment.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSectionData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSectionMetaData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSecuredIPAddress.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SectionAttachment.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SectionData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SectionMetaData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SecuredIPAddress.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/AuthorizationData.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/AuthorizationData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/FunctionData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/QualifierData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/QualifierHierarchyData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/AssessmentGradingData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/AssessmentGradingSummaryData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/GradingData.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/ItemGradingData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/MediaData.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/MediaData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/StudentGradingSummaryData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolAccessData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolData.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolItemData.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/shared/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/shared/TypeD.java +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/shared/TypeData.hbm.xml +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/dummy/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/dummy/impl/ +sam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/dummy/impl/DummyImpl.java +sam/branches/SAK-12433/samigo-pack/ +sam/branches/SAK-12433/samigo-pack/hibernate.properties +sam/branches/SAK-12433/samigo-pack/maven.xml +sam/branches/SAK-12433/samigo-pack/pom.xml +sam/branches/SAK-12433/samigo-pack/project.xml +sam/branches/SAK-12433/samigo-pack/src/ +sam/branches/SAK-12433/samigo-pack/src/java/ +sam/branches/SAK-12433/samigo-pack/src/java/org/ +sam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/assessment/shared/ +sam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/assessment/shared/SakaiBootStrap.java +sam/branches/SAK-12433/samigo-pack/src/sql/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/FixAnswerScore.class +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/FixAnswerScore.java +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/README.txt +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/database.properties +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/lib/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/FixRealmPermission.class +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/FixRealmPermission.java +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/README.txt +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/database.properties +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/lib/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/FixAssessmentScore.java +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/README.txt +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/database.properties +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/lib/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/ +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/FixGradingScore.class +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/FixGradingScore.java +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/README.txt +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/database.properties +sam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/lib/ +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/ +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/ +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-1659.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-1894.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-2179.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-2360.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-2862.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4134.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4136.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4396.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4427.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-5564.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-5595.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_1_2.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_2.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_3.sql +sam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_4.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/ +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/ +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-1659.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-1894.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2179.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2360.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2753.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2862.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4134.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4136.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4396.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4427.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-5564.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-5595.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-6790.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-8727.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_1_2.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_2.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_3.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_4.sql +sam/branches/SAK-12433/samigo-pack/src/sql/mysql/samigo_er_mysql.pdf +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/ +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/02_migrateData_v1_to_v1_5_oracle.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/ +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-1659.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-1894.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-2179.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-2360.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-2862.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4134.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4136.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4396.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4427.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-5564.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-5595.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-6790.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-8727.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_1_2.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_2.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_3.sql +sam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_4.sql +sam/branches/SAK-12433/samigo-pack/src/webapp/ +sam/branches/SAK-12433/samigo-pack/src/webapp/WEB-INF/ +sam/branches/SAK-12433/samigo-pack/src/webapp/WEB-INF/components.xml +sam/branches/SAK-12433/samigo-pack/src/webapp/WEB-INF/testbeans.xml +sam/branches/SAK-12433/samigo-qti/ +sam/branches/SAK-12433/samigo-qti/pom.xml +sam/branches/SAK-12433/samigo-qti/project.xml +sam/branches/SAK-12433/samigo-qti/src/ +sam/branches/SAK-12433/samigo-qti/src/java/ +sam/branches/SAK-12433/samigo-qti/src/java/org/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/ASIBaseClass.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/Assessment.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/Item.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/Section.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/exception/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/exception/FormatException.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/exception/Iso8601FormatException.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/AttachmentHelper.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/AuthoringHelper.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/AuthoringXml.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/ExtractionHelper.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/MetaDataList.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/QTIHelperFactory.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelper12Impl.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelper20Impl.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelperBase.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelperIfc.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelper12Impl.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelper20Impl.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelperBase.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelperIfc.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemTypeExtractionStrategy.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelper12Impl.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelper20Impl.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelperBase.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelperIfc.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/Iso8601DateFormat.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/Iso8601TimeInterval.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/PathInfo.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/URIResolver.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/XmlMapper.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/XmlStringBuffer.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/XmlUtil.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/qti/ +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/qti/QTIService.java +sam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/qti/QTIServiceException.java +sam/branches/SAK-12433/samigo-services/ +sam/branches/SAK-12433/samigo-services/maven.xml.bak +sam/branches/SAK-12433/samigo-services/pom.xml +sam/branches/SAK-12433/samigo-services/project.xml +sam/branches/SAK-12433/samigo-services/src/ +sam/branches/SAK-12433/samigo-services/src/java/ +sam/branches/SAK-12433/samigo-services/src/java/org/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/BeanDefinitions.xml +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/BeanDefinitionsStandalone.xml +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/DataSourceWrapperAutoCommit.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/SpringBeanLocator.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/applicationContext.xml +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/applicationContextStandalone.xml +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/integrationContext.xml +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/integrationContextStandalone.xml +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/samigoApi.xml +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages.metaprops +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages.properties +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_ar.properties +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_ca.metaprops +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_ca.properties +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_es.properties +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_fr_CA.metaprops +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_fr_CA.properties +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_nl.properties +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/FileNamer.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/RecordingData.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/SortableDate.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/AccessGroup.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/AllChoices.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/FeedbackModel.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/IPMaskData.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/ScoringModel.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/SubmissionModel.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPool.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPoolException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPoolIterator.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AgentFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AgentIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentBaseFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentBaseIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingSummaryFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentTemplateFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentTemplateIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthorizationFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/DataFacadeException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/GradebookFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemGradingFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemManager.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationFacadeQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationFacadeQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/FunctionFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/FunctionIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/QualifierFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/QualifierIteratorFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/resource/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/resource/AuthzResource.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/util/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/util/PagingUtilQueries.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/util/PagingUtilQueriesAPI.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/IntegrationContextFactory.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/spring/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/spring/FactoryUtil.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/spring/IntegrationContext.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/delivery/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/AgentHelper.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/GradebookHelper.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/GradebookServiceHelper.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/PublishingTargetHelper.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/SectionAwareServiceHelper.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/ServerConfigurationServiceHelper.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/AbstractSectionsImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/AgentHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/FacadeUtils.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/GradebookHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/GradebookServiceHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/PublishingTargetHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/ServerConfigurationServiceHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/sed +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/AbstractSectionsImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/AgentHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/FacadeUtils.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/GradebookHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/GradebookServiceHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/PublishingTargetHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/SectionAwareServiceHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/ServerConfigurationServiceHelperImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/AssessmentImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/AssessmentIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/ItemImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/ItemIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/SectionImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/SectionIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/AuthorizationImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/AuthorizationIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/FunctionImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/FunctionIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/QualifierImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/QualifierIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/QuestionPoolImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/QuestionPoolIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/extension/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/extension/TypeExtension.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/AgentImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/IdImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/ObjectIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/PropertiesImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/PropertiesIteratorImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/AuthoringConstantStrings.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/QTIConstantStrings.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/QTIVersion.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/CommonServiceException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradebookServiceException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingServiceException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/ItemService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/PersistenceService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/QuestionPoolService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/QuestionPoolServiceException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/SectionService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentEntityProducer.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentServiceException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/gradebook/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/gradebook/GradebookServiceHelper.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/shared/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/shared/MediaService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/shared/TypeService.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/AssessmentServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/ItemServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/PublishedAssessmentServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/SectionServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/common/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/common/MediaServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/common/TypeServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradebookServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingSectionAwareServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/questionpool/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/questionpool/QuestionPoolServiceImpl.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/ +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/DateHandlerWithNull.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/FormatException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/HibernateUtil.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/Iso8601FormatException.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/LabelValue.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/MimeType.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/MimeTypesLocator.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/StringParseUtils.java +sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/TextFormat.java +sam/branches/SAK-12433/samlite-impl/ +sam/branches/SAK-12433/samlite-impl/pom.xml +sam/branches/SAK-12433/samlite-impl/project.xml +sam/branches/SAK-12433/samlite-impl/src/ +sam/branches/SAK-12433/samlite-impl/src/java/ +sam/branches/SAK-12433/samlite-impl/src/java/org/ +sam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/ +sam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/samlite/ +sam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/samlite/impl/ +sam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/samlite/impl/SamLiteServiceImpl.java +sam/branches/SAK-12433/testdata/ +sam/branches/SAK-12433/testdata/qti/ +sam/branches/SAK-12433/testdata/qti/respondus/ +sam/branches/SAK-12433/testdata/qti/respondus/RespondusEssayFeedback.xml +sam/branches/SAK-12433/testdata/qti/respondus/RespondusEssayNoFeedback.xml +sam/branches/SAK-12433/testdata/qti/respondus/RespondusFIB.xml +sam/branches/SAK-12433/testdata/qti/respondus/RespondusMatch.xml +sam/branches/SAK-12433/testdata/qti/respondus/RespondusMultipleChoice.xml +sam/branches/SAK-12433/testdata/qti/respondus/RespondusTrueFalse.xml +sam/branches/SAK-12433/testdata/qti/xsl/ +sam/branches/SAK-12433/tests/ +sam/branches/SAK-12433/tests/README.txt +sam/branches/SAK-12433/tests/src/ +sam/branches/SAK-12433/tests/src/hibernate/ +sam/branches/SAK-12433/tests/src/hibernate/org/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentBase.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/ItemData.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessment.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemData.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/authz/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/authz/AuthorizationData.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/grading/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/grading/GradingData.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/grading/MediaData.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/questionpool/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolData.hbm.xml +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/shared/ +sam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/shared/TypeData.hbm.xml +sam/branches/SAK-12433/tests/src/java/ +sam/branches/SAK-12433/tests/src/java/org/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/integration/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/integration/helper/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/test/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/test/SamLiteServiceTest.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/test/TestQuiz.txt +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/TestIntCtxtFactoryMethods.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/TestIntegrationContextFactory.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/spring/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/spring/TestFactoryUtil.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestAgentHelper.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestAuthzHelper.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestGradebookHelper.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestGradebookServiceHelper.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestPublishingTargetHelper.java +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/tool/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/tool/integration/ +sam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/tool/integration/context/ +sam/branches/SAK-12433/tests/src/spring/ +sam/branches/SAK-12433/tests/src/spring/org/ +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/ +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/ +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/BeanDefinitions.xml +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/README.txt +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/applicationContext.xml.integrated +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/applicationContext.xml.standalone +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/integrationContext.xml.integrated +sam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/integrationContext.xml.standalone +Log: +SAK-12433 => from r31545 of sakai_2-4-x. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 15:22:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 15:22:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 15:22:19 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lBEKMIhX000375; + Fri, 14 Dec 2007 15:22:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4762E5F3.8AB78.23752 ; + 14 Dec 2007 15:22:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9017F9EB4A; + Fri, 14 Dec 2007 20:22:13 +0000 (GMT) +Message-ID: <200712142014.lBEKE2vZ013276@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 718 + for ; + Fri, 14 Dec 2007 20:21:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0CF153939A + for ; Fri, 14 Dec 2007 20:21:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKE2PQ013278 + for ; Fri, 14 Dec 2007 15:14:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKE2vZ013276 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:14:02 -0500 +Date: Fri, 14 Dec 2007 15:14:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39282 - sam/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 15:22:19 2007 +X-DSPAM-Confidence: 0.9805 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39282 + +Author: cwen@iupui.edu +Date: 2007-12-14 15:14:01 -0500 (Fri, 14 Dec 2007) +New Revision: 39282 + +Added: +sam/branches/SAK-12433/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 15:13:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 15:13:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 15:13:05 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by chaos.mail.umich.edu () with ESMTP id lBEKD2qX024844; + Fri, 14 Dec 2007 15:13:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4762E3B6.2725E.30735 ; + 14 Dec 2007 15:12:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D28D089BCA; + Fri, 14 Dec 2007 20:12:42 +0000 (GMT) +Message-ID: <200712142004.lBEK4RpU013237@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 554 + for ; + Fri, 14 Dec 2007 20:12:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CB9D63937A + for ; Fri, 14 Dec 2007 20:12:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEK4R23013239 + for ; Fri, 14 Dec 2007 15:04:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEK4RpU013237 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:04:27 -0500 +Date: Fri, 14 Dec 2007 15:04:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39281 - in rwiki/branches/SAK-12433: . rwiki-api rwiki-api/api rwiki-api/api/src rwiki-api/api/src/java rwiki-api/api/src/java/org rwiki-api/api/src/java/org/radeox rwiki-api/api/src/java/org/radeox/api rwiki-api/api/src/java/org/radeox/api/engine rwiki-api/api/src/java/org/radeox/api/engine/context rwiki-api/api/src/java/org/radeox/api/macro rwiki-api/api/src/java/uk rwiki-api/api/src/java/uk/ac rwiki-api/api/src/java/uk/ac/cam rwiki-api/api/src/java/uk/ac/cam/caret rwiki-api/api/src/java/uk/ac/cam/caret/sakai rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exce! + ption rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model rwiki-api/api/src/test rwiki-api/api/src/test/uk rwiki-api/api/src/test/uk/ac rwiki-api/api/src/test/uk/ac/cam rwiki-api/api/src/test/uk/ac/cam/caret rwiki-api/api/src/test/uk/ac/cam/caret/sakai rwiki-api/api/src/test/uk/ac/cam/caret/sakai/rwiki rwiki-api/api/xdocs rwiki-help rwiki-help/src rwiki-help/src/sakai_rwiki rwiki-impl rwiki-impl/impl rwiki-impl/impl/src rwiki-impl/impl/src/bundle rwiki-impl/impl/src/bundle/uk rwiki-impl/impl/src/bundle/uk/ac rwiki-impl/impl/src/bundle/uk/ac/cam rwiki-impl/impl/src/bundle/uk/ac/cam/caret rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwi! + ki/component rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/! + rwiki/co +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 15:13:05 2007 +X-DSPAM-Confidence: 0.6191 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39281 + +Author: cwen@iupui.edu +Date: 2007-12-14 15:02:09 -0500 (Fri, 14 Dec 2007) +New Revision: 39281 + +Added: +rwiki/branches/SAK-12433/README +rwiki/branches/SAK-12433/README.QA +rwiki/branches/SAK-12433/maven.xml +rwiki/branches/SAK-12433/pom.xml +rwiki/branches/SAK-12433/project.properties +rwiki/branches/SAK-12433/project.xml +rwiki/branches/SAK-12433/readme.txt +rwiki/branches/SAK-12433/rwiki-api/ +rwiki/branches/SAK-12433/rwiki-api/.classpath +rwiki/branches/SAK-12433/rwiki-api/.cvsignore +rwiki/branches/SAK-12433/rwiki-api/.project +rwiki/branches/SAK-12433/rwiki-api/LICENSE.txt +rwiki/branches/SAK-12433/rwiki-api/api/ +rwiki/branches/SAK-12433/rwiki-api/api/pom.xml +rwiki/branches/SAK-12433/rwiki-api/api/project.properties +rwiki/branches/SAK-12433/rwiki-api/api/project.xml +rwiki/branches/SAK-12433/rwiki-api/api/src/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/ImageRenderEngine.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/IncludeRenderEngine.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/RenderEngine.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/WikiRenderEngine.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/context/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/context/InitialRenderContext.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/context/RenderContext.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/macro/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/macro/Macro.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/macro/MacroParameter.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/DefaultRole.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/EntityHandler.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/PageLinkRenderer.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/RWikiObjectService.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/RWikiSecurityService.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/RenderService.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/ObjectProxy.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiCurrentObjectDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiHistoryObjectDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiObjectContentDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiObjectDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiPropertyDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/DataMigrationAgent.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/DataMigrationController.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiCurrentObject.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiCurrentObjectContent.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiEntity.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiHistoryObject.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiHistoryObjectContent.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiObject.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiObjectContent.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiPermissions.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiProperty.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/CachableRenderContext.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/RenderCache.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/RenderContextFactory.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/RenderEngineFactory.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/CreatePermissionException.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/PermissionException.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/ReadPermissionException.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/UpdatePermissionException.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/VersionException.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/MessageService.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/PreferenceService.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/TriggerHandler.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/TriggerService.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/MessageDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/PagePresenceDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/PreferenceDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/TriggerDao.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/ +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/Message.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/PagePresence.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/Preference.java +rwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/Trigger.java +rwiki/branches/SAK-12433/rwiki-api/api/src/test/ +rwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ +rwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/ +rwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/sakai/rwiki/model/ +rwiki/branches/SAK-12433/rwiki-api/api/xdocs/ +rwiki/branches/SAK-12433/rwiki-api/api/xdocs/navigation.xml +rwiki/branches/SAK-12433/rwiki-help/ +rwiki/branches/SAK-12433/rwiki-help/.classpath +rwiki/branches/SAK-12433/rwiki-help/.project +rwiki/branches/SAK-12433/rwiki-help/pom.xml +rwiki/branches/SAK-12433/rwiki-help/project.xml +rwiki/branches/SAK-12433/rwiki-help/src/ +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/ +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/adding_images.htm +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/creating_pages.htm +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/editing_pages.htm +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/help.xml +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/overview.htm +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/setting_permissions.htm +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/viewing_history.htm +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/viewing_info.htm +rwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/viewing_pages.htm +rwiki/branches/SAK-12433/rwiki-impl/ +rwiki/branches/SAK-12433/rwiki-impl/.classpath +rwiki/branches/SAK-12433/rwiki-impl/.project +rwiki/branches/SAK-12433/rwiki-impl/impl/ +rwiki/branches/SAK-12433/rwiki-impl/impl/pom.xml +rwiki/branches/SAK-12433/rwiki-impl/impl/project.xml +rwiki/branches/SAK-12433/rwiki-impl/impl/src/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages.properties +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_ca.properties +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_fr_CA.properties +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_ja.properties +rwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_nl.properties +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/Messages.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/IteratorProxy.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/ListIteratorProxy.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/ListProxy.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiCurrentObjectContentDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiCurrentObjectDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiHistoryObjectContentDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiHistoryObjectDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiPropertyDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/AnchorMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/BackgroundColorMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/BlockMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/ColorMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/ImageMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/IndexMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/MathMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/RecentChangesMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/SakaiLinkMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/SectionsMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/SpanMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/WorksiteInfoMacro.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/MessageServiceImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/PreferenceServiceImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/TriggerServiceImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/MessageDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/PagePresenceDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/PreferenceDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/TriggerDaoImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/DataMigrationSpecification.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/RWikiEntityImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/SHAHashMigration.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/SQLScriptMigration.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RWikiBaseRenderEngine.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RenderCacheImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RenderContextFactoryImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RenderEngineFactoryImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/SpecializedRenderContext.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/SpecializedRenderEngine.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/BaseEntityHandlerImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/BaseFOPSerializer.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/ComponentPageLinkRenderImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/Decoded.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/DefaultRoleImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/FOP2PDFSerializer.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/FOP2RTFSerializer.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/PageVisits.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiSecurityServiceImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RenderServiceImpl.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XHTMLSerializer.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XLSTChangesHandler.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XSLTEntityHandler.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XSLTTransform.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/fop.cfg.xml +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/null.xslt +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/toatom03.xslt +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/tohtml.xslt +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/torss091.xslt +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/torss10.xslt +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/torss20.xslt +rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/xhtml2fo.xslt +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/ +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/XSLTEntityHandlerTest.java +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/testinput.xml +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/testpattern.xhtml +rwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/testutil/ +rwiki/branches/SAK-12433/rwiki-impl/pack/ +rwiki/branches/SAK-12433/rwiki-impl/pack/pom.xml +rwiki/branches/SAK-12433/rwiki-impl/pack/project.properties +rwiki/branches/SAK-12433/rwiki-impl/pack/project.xml +rwiki/branches/SAK-12433/rwiki-impl/pack/src/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/META-INF/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/META-INF/services/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/META-INF/services/org.radeox.macro.Macro +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/ehcache.xml +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051017.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051026.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051107.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051017.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051026.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051107.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051017.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051026.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051107.sql +rwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/ +rwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/components.xml +rwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/coreDaoComponents.xml +rwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml +rwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/datamigrationComponents.xml +rwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/messagingComponents.xml +rwiki/branches/SAK-12433/rwiki-integration-test/ +rwiki/branches/SAK-12433/rwiki-integration-test/.classpath +rwiki/branches/SAK-12433/rwiki-integration-test/.project +rwiki/branches/SAK-12433/rwiki-integration-test/pom.xml +rwiki/branches/SAK-12433/rwiki-integration-test/project.properties +rwiki/branches/SAK-12433/rwiki-integration-test/project.xml +rwiki/branches/SAK-12433/rwiki-integration-test/src/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/conf/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/conf/log4j.properties +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/test/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/test/ComponentIntegrationTest.java +rwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/test/archive.xml +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/META-INF/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/META-INF/services/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/META-INF/services/org.radeox.macro.Macro +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/ehcache.xml +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051017.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051026.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051107.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051017.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051026.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051107.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/ +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051017.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051026.sql +rwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051107.sql +rwiki/branches/SAK-12433/rwiki-integration-test/wikitestdir/ +rwiki/branches/SAK-12433/rwiki-model/ +rwiki/branches/SAK-12433/rwiki-model/.classpath +rwiki/branches/SAK-12433/rwiki-model/.project +rwiki/branches/SAK-12433/rwiki-model/pom.xml +rwiki/branches/SAK-12433/rwiki-model/project.properties +rwiki/branches/SAK-12433/rwiki-model/project.xml +rwiki/branches/SAK-12433/rwiki-model/schemabuild/ +rwiki/branches/SAK-12433/rwiki-model/schemabuild/hsqldb.properties +rwiki/branches/SAK-12433/rwiki-model/schemabuild/mysql.properties +rwiki/branches/SAK-12433/rwiki-model/schemabuild/oracle.properties +rwiki/branches/SAK-12433/rwiki-model/src/ +rwiki/branches/SAK-12433/rwiki-model/src/java/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/PagePresenceImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/PreferenceImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/RwikiMessageImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/RwikiTriggerImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/message.hbm.xml +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/ +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWiki.hbm.xml +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiCurrentObjectContentImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiCurrentObjectImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiHistoryObjectContentImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiHistoryObjectImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiObjectContentImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiObjectImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiPermissionsImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiPropertyImpl.java +rwiki/branches/SAK-12433/rwiki-model/src/test/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/model/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/model/test/ +rwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/model/test/RWikiObjectContentImplTest.java +rwiki/branches/SAK-12433/rwiki-tool/ +rwiki/branches/SAK-12433/rwiki-tool/.checkclipse +rwiki/branches/SAK-12433/rwiki-tool/.checkstyle +rwiki/branches/SAK-12433/rwiki-tool/.classpath +rwiki/branches/SAK-12433/rwiki-tool/.cvsignore +rwiki/branches/SAK-12433/rwiki-tool/.project +rwiki/branches/SAK-12433/rwiki-tool/.springBeans +rwiki/branches/SAK-12433/rwiki-tool/.springBeansProject +rwiki/branches/SAK-12433/rwiki-tool/LICENSE.txt +rwiki/branches/SAK-12433/rwiki-tool/tool/ +rwiki/branches/SAK-12433/rwiki-tool/tool/checkstyle.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/pom.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/project.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/project.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/src/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/META-INF/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/META-INF/services/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_ca.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_fr_CA.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_ja.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_nl.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_ca.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_fr_CA.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_ja.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_nl.properties +rwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/rwikivelocity.config +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/DefaultRequestDispatcher.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/ExcludeEscapeHtmlReference.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/MapDispatcher.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/ModelMigrationContextListener.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RWikiServlet.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/VelocityDispatchServlet.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/VelocityInlineDispatcher.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/WebappLoader.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/CommandService.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/HttpCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/PopulateService.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/ToolRenderService.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/AuthZGroupBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/AuthZGroupCollectionBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/AuthZGroupEditBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/DiffBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/EditBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ErrorBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/FullSearchBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/GenericDiffBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/HistoryBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/HomeBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/MultiRealmEditBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PermissionsBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PrePopulateBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PreferencesBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PresenceBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/RecentlyVisitedBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ReferencesBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/RenderBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ResourceLoaderBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/RoleBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/SearchBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ToolConfigBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/UpdatePermissionsBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ViewBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/AuthZGroupBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/AuthZGroupCollectionBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/AuthZGroupEditBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/DiffHelperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/MultiRealmEditBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/PreferencesBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/PresenceBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/RecentlyVisitedHelperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ResourceLoaderHelperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ReverseHistoryHelperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ReviewHelperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/UpdatePermissionsBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/UserHelperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ViewParamsHelperBean.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/AddAttachmentReturnCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/BasicHttpCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/CommentNewCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/CommentSaveCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/Dispatcher.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/EditAuthZGroupCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/EditManyAuthZGroupCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/HelperCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/RevertCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/SaveCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/SimpleCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePermissionsCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/helper/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/helper/ErrorBeanHelper.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/CommandServiceImpl.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PageLinkRendererImpl.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PopulateServiceImpl.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PrintPageLinkRendererImpl.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PublicPageLinkRendererImpl.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/ToolRenderServiceImpl.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/util/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/util/WikiPageAction.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/GenericDiffBeanTest.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/RenderBeanTest.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/ViewBeanTest.java +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/model/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/model/impl/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/model/impl/test/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/model/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/model/impl/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/model/impl/test/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/Title.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/breadcrumb.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commentedit.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commenteditcomplete.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commenteditconflict.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commentnew.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/comments.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commentslist.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/diff.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/edit.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/editRealm-many.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/editRealm-manyv2.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/editRealm.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/edittoolbar.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/errorpage.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/footer.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/fragmentpreview.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/fragmentview.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/full_search.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/header.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/history.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/info.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/permission.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/preferences.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/presencechat.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/presencechatlist.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/presencelist.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/preview.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/publicbreadcrumb.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/publicview.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/realmIdInUse.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/realmUnknown.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/review.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/search.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/sidebar-switcher.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/sidebar.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/test.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/view.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/wikiStyle.jsp +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/commandComponents.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/components.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/prepopulateComponents.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/rwiki.tld +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/CommandLinks.tag +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/FormatDisplayName.tag +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/InfoPageGranted.tag +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/toolComponents.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/diff.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/edit.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/editRealm-many.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/editRealm-manyv2.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/editRealm.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/fragmentpreview.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/fragmentview.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/full_search.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/history.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/info.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/macros.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/permission.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/preferences.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/preview.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/printview.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/publicview.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/review.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/search.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/title.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/view.vm +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/web.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/ajaxload.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/akaxload.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/atom03.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/feed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/i-bottom.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/i-repeater.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/icklearrow.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/l.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/minus.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/page-file.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/page-foldericon.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/page-openfoldericon.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/plus.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/printer.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss091.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss10.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss20.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/accept.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/anchor.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_cascade.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_double.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_get.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_home.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_osx.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_osx_terminal.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_put.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_boxes.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_contract.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_expand.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_list.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_tree.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_split.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_tile_horizontal.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_tile_vertical.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_columns.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_detail.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_gallery.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_icons.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_list.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_tile.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_xp.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_xp_terminal.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_branch.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_divide.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_down.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_in.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_inout.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_join.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_left.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_merge.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_out.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_redo.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_refresh.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_refresh_small.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_right.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_rotate_anticlockwise.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_rotate_clockwise.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_switch.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_turn_left.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_turn_right.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_undo.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_up.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/asterisk_orange.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/asterisk_yellow.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/attach.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_bronze_1.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_bronze_2.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_bronze_3.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_gold_1.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_gold_2.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_gold_3.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_silver_1.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_silver_2.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_silver_3.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_put.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_remove.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bin.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bin_closed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bin_empty.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bomb.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_addresses.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_next.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_open.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_previous.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/box.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bricks.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/briefcase.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_bottom.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_down.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_top.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_up.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_black.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_disk.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_feed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_green.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_orange.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_picture.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_pink.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_purple.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_star.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_toggle_minus.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_toggle_plus.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_white.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_wrench.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_yellow.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cake.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_view_day.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_view_month.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_view_week.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_small.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cancel.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/car.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/car_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/car_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_put.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_remove.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_burn.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_eject.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_organisation.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_organisation_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_organisation_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_pause.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_play.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_stop.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/coins.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/coins_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/coins_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/color_swatch.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/color_wheel.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comments.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comments_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comments_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/compress.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/connect.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_decrease.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_high.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_increase.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_low.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_eject.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_eject_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_end.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_end_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_equalizer.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_equalizer_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_fastforward.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_fastforward_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_pause.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_pause_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_play.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_play_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_repeat.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_repeat_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_rewind.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_rewind_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_start.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_start_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_stop.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_stop_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/creditcards.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cross.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_valid.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cursor.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cut.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cut_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_connect.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_gear.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_refresh.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_save.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_table.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_next.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_previous.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/disconnect.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/disk.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/disk_multiple.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door_in.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door_open.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door_out.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drink.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drink_empty.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_burn.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_cd.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_cd_empty.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_disk.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_network.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_rename.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_user.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_web.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_attach.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_open.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_open_image.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_evilgrin.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_grin.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_happy.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_smile.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_surprised.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_tongue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_unhappy.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_waii.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_wink.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/exclamation.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/eye.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_disk.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/female.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_save.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/find.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_green.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_orange.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_pink.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_purple.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_yellow.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_bell.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_brick.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_bug.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_camera.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_database.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_explore.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_feed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_find.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_heart.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_image.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_lightbulb.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_page.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_page_white.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_palette.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_picture.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_star.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_table.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_user.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_wrench.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_gear.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/heart.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/heart_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/heart_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/help.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/house.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/house_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/house_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_valid.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/images.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/information.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_cast.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_cast_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_cast_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_sound.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layers.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_content.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_header.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_sidebar.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb_off.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_break.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_break.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_open.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_flatbed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/magifier_zoom_out.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/magnifier.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/magnifier_zoom_in.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/male.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_1.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_2.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_3.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_1.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_2.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_3.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_1.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_2.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_3.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_dollar.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_euro.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_pound.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_yen.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/music.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/new.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/overlays.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_green.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_attach.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_code.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_copy.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_excel.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_find.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_gear.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_green.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_paintbrush.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_paste.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_refresh.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_save.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_acrobat.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_actionscript.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_c.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_camera.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_cd.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_code.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_code_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_coldfusion.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_compressed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_copy.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_cplusplus.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_csharp.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_cup.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_database.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_dvd.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_excel.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_find.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_flash.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_freehand.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_gear.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_get.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_h.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_horizontal.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_medal.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_office.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_paint.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_paintbrush.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_paste.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_php.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_picture.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_powerpoint.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_put.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_ruby.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_stack.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_star.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_swoosh.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_text.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_text_width.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_tux.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_vector.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_visualstudio.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_width.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_word.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_world.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_wrench.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_zip.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_word.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_world.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paintbrush.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paintcan.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/palette.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paste_plain.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paste_word.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone_sound.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photos.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_empty.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_save.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pictures.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pilcrow.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_disabled.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_empty.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rainbow.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_disk.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_magnify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_picture.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_user.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_word.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_first.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_last.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_next.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_previous.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rosette.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_valid.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_gear.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_get.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_put.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_code.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_code_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_gear.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_palette.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_save.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_chart.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_compressed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_connect.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_database.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_uncompressed.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shading.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_bottom.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_center.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_left.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_middle.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_right.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_top.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_flip_horizontal.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_flip_vertical.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_group.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_handles.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_back.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_backwards.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_forwards.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_front.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_rotate_anticlockwise.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_rotate_clockwise.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_ungroup.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sitemap.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sitemap_color.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_low.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_mute.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_none.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/spellcheck.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_8ball.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_basketball.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_football.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_golf.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_raquet.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_shuttlecock.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_soccer.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_tennis.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/star.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_away.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_busy.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_offline.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_online.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/stop.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sum.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_gear.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_multiple.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_refresh.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_relationship.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_row_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_row_insert.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_save.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_sort.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_green.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_orange.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_pink.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_purple.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_yellow.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/television.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/television_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/television_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_center.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_justify.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_left.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_right.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_allcaps.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_bold.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_columns.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_dropcaps.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_1.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_2.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_3.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_4.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_5.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_6.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_horizontalrule.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_indent.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_indent_remove.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_italic.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_kerning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_letter_omega.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_letterspacing.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_linespacing.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_list_bullets.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_list_numbers.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_lowercase.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_bottom.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_left.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_right.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_top.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_replace.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_signature.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_smallcaps.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_strikethrough.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_subscript.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_superscript.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_underline.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_uppercase.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_key.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_rename.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/thumb_down.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/thumb_up.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tick.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/timeline_marker.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_blue.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tux.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_comment.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_female.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_gray.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_green.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_orange.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_red.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_suit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vector.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vector_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vector_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/wand.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_clouds.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_cloudy.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_lightning.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_rain.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_snow.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_sun.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam_error.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_edit.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_link.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/wrench.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/wrench_orange.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_add.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_delete.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_go.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_valid.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/zoom.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/zoom_in.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/zoom_out.png +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/readme.html +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/readme.txt +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/t.gif +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/index.html +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/ajaxpopup.js +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/asyncload.js +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/autosave.js +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/flashbridge.js +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/localstore.fla +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/localstore.swd +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/localstore.swf +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/logger.js +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/stateswitcher.js +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/wikiStyle.css +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/wikiStyleIE6.css +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/wikiStyleIE7.css +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/tools/ +rwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/tools/sakai.rwiki.xml +rwiki/branches/SAK-12433/rwiki-tool/tool/xdocs/ +rwiki/branches/SAK-12433/rwiki-tool/tool/xdocs/navigation.xml +rwiki/branches/SAK-12433/rwiki-util/ +rwiki/branches/SAK-12433/rwiki-util/.classpath +rwiki/branches/SAK-12433/rwiki-util/.project +rwiki/branches/SAK-12433/rwiki-util/foppatch/ +rwiki/branches/SAK-12433/rwiki-util/foppatch/rtfgifpatch.patch +rwiki/branches/SAK-12433/rwiki-util/jrcs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/Jakarta ORO.library +rwiki/branches/SAK-12433/rwiki-util/jrcs/LICENSE.txt +rwiki/branches/SAK-12433/rwiki-util/jrcs/build.xml +rwiki/branches/SAK-12433/rwiki-util/jrcs/doc/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/doc/default.css +rwiki/branches/SAK-12433/rwiki-util/jrcs/doc/index.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/doc/jrcs.gif +rwiki/branches/SAK-12433/rwiki-util/jrcs/pom.xml +rwiki/branches/SAK-12433/rwiki-util/jrcs/project.xml +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/AddDelta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/ChangeDelta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Chunk.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DeleteDelta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Delta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Diff.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DiffAlgorithm.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DiffException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DifferentiationFailedException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/PatchFailedException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Revision.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/RevisionVisitor.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/SimpleDiff.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/DiffNode.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/MyersDiff.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/PathNode.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/Snake.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/package.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/package.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/overview.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Archive.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParser.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParser.jj +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParserConstants.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParserTokenManager.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/BranchNode.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/BranchNotFoundException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/HeadAlreadySetException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidBranchVersionNumberException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidFileFormatException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidTrunkVersionNumberException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidVersionNumberException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/KeywordsFormat.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Line.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Lines.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Node.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/NodeNotFoundException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ParseException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Path.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Phrases.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/RCSException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/SimpleCharStream.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Token.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/TokenMgrError.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/TrunkNode.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Version.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/package.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/JDiff.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/JRCS.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/package.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/util/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/util/ToString.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/AllTests.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/DiffTest.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/MyersDiffTests.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/SimpleDiffTests.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/ArchiveTest.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/ChangeDeltaTest.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/KeywordsFormatTest.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/ParsingTest.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/idchar.testfile +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/make_idchar_test.sh +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/test.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/test.txt +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/AddDelta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/ChangeDelta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Chunk.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DeleteDelta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Delta.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Diff.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DiffAlgorithm.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DiffException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DifferentiationFailedException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/PatchFailedException.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Revision.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/RevisionVisitor.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/SimpleDiff.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/DiffNode.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/MyersDiff.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/PathNode.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/Snake.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/package.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/package.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/overview.html +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/util/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/util/ToString.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/AllTests.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/DiffTest.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/MyersDiffTests.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/SimpleDiffTests.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/test.java +rwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/test.txt +rwiki/branches/SAK-12433/rwiki-util/jrcs/xdocs/ +rwiki/branches/SAK-12433/rwiki-util/jrcs/xdocs/index.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/ +rwiki/branches/SAK-12433/rwiki-util/radeox/.cvsignore +rwiki/branches/SAK-12433/rwiki-util/radeox/Changes.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/README +rwiki/branches/SAK-12433/rwiki-util/radeox/Radeox.version +rwiki/branches/SAK-12433/rwiki-util/radeox/build.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/doc/ +rwiki/branches/SAK-12433/rwiki-util/radeox/doc/api/ +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/ +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/Radeox_Developer.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/Radeox_Developer.tex +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/cut.rb +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/ +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/AllTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/ContentHelloWorldMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/FilterExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/GroovyMacro.groovy +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/GroovyMacroCompiler.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/HelloWorldMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/InitialRenderContextHelloWorldMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/LocaleSmileyFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MacroExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyInitialRenderContext.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyRenderEngine.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyRenderEngineExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyWikiRenderEngine.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/ParameterHelloWorldMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/PicoContainerExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/RadeoxTestSupport.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/RenderEngineExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/SmileyFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/SquareFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/build.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/radeox_markup_mywiki.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/radeox_markup_xml.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/ +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Architecture.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Filter.graffle +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Filter.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/InitialRenderContextPicoContainer.graffle +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/InitialRenderContextPicoContainer.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/MacroParameter.graffle +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/MacroParameter.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Radeox.graffle +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/SnipRadeox.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiArchitecture.graffle +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiArchitecture.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiLand.graffle +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiLand.pdf +rwiki/branches/SAK-12433/rwiki-util/radeox/documentation/insert_source.sh +rwiki/branches/SAK-12433/rwiki-util/radeox/license.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/maven.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/pom.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/project.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/project.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/manifest.radeox +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/manifest.radeox-api +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.filter.Filter +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.Macro +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.code.SourceCodeFormatter +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.list.ListFormatter +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.table.Function +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/apidocs.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/asinservices.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/bookservices.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/intermap.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/wiki.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/xref.txt +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/Messages.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/Messages_ca.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/Messages_ja.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_ja.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_otherwiki.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_otherwiki_ca.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_sv.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages.metaprops +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_ca.metaprops +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_ca.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_es.metaprops +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_es.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_fr_CA.metaprops +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_fr_CA.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_ja.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_nl.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_sv.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/simplelog.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/simplelog_ar.properties +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest0_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest1_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest2_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest3_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest4_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest5_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest6_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest7_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest8_in.xml +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/EngineManager.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/Messages.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/api/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/api/engine/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/BaseRenderEngine.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/context/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/context/BaseInitialRenderContext.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/context/BaseRenderContext.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/InteractiveExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/PicoExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/RadeoxTemplateEngine.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/RenderEngineExample.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/XSLTExtension.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/BalanceFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/BoldFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/CacheFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/EscapeFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/Filter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/FilterPipe.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/FilterSupport.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/HeadingFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/HtmlRemoveFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ItalicFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/KeyFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/LineFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/LinkTestFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/LinkTester.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ListFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/MacroFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/MarkFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/NewlineFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ParagraphFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ParamFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/SmileyFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/StrikeThroughFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/TypographyFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/UrlFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/WikiLinkFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/XHTMLFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/balance/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/balance/Balancer.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/BaseFilterContext.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/BaseInitialFilterContext.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/FilterContext.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/InitialFilterContext.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/interwiki/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/interwiki/InterWiki.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/LocaleRegexReplaceFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/LocaleRegexTokenFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/RegexFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/RegexReplaceFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/RegexTokenFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/ApiDocMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/ApiMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/AsinMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/BaseLocaleMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/BaseMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/CodeMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/FilePathMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/HelloWorldMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/InterWikiMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/IsbnMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/LinkMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/LocaleMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/LocalePreserved.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/Macro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MacroListMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MacroLoader.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MacroRepository.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MailToMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/PluginLoader.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/PluginRepository.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/Preserved.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/QuoteMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/Repository.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/RfcMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/TableMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/XrefMacro.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/ApiConverter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/ApiDoc.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/BaseApiConverter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/JavaApiConverter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/RubyApiConverter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/AsinServices.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/BookServices.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/TextFileUrlMapper.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/UrlMapper.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/DefaultRegexCodeFormatter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/JavaCodeFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/NullCodeFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/SourceCodeFormatter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/SqlCodeFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/XmlCodeFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/AtoZListFormatter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/ExampleListFormatter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/ListFormatter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/SimpleList.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/parameter/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/parameter/BaseMacroParameter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/AvgFunction.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/Function.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/FunctionLoader.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/FunctionRepository.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/MaxFunction.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/MinFunction.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/SumFunction.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/Table.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/TableBuilder.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/xref/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/xref/XrefMapper.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Compiler.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkCompiler.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkMatchResult.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkMatcher.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkPattern.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/MatchResult.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Matcher.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Pattern.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Substitution.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/AllTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/BaseRenderEngineTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/PerformanceTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/RegexpTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/RenderEnginePerformanceTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/AllFilterTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/BasicRegexTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/BoldFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/EscapeFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/FilterPipeTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/FilterTestSupport.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/HeadingFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/HtmlRemoveFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/InterWikiTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ItalicFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/KeyFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/LineFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/LinkTestFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ListFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/NewlineFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ParagraphFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ParamFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/SmileyFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/StrikeThroughFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/TypographyFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/UrlFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/WikiLinkFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/XHTMLFilterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockInterWikiRenderEngine.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockOldWikiRenderEngine.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockReplacedFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockReplacesFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockWikiRenderEngine.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/groovy/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/groovy/AllGroovyTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/groovy/RadeoxTemplateEngineTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/AllMacroTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/ApiDocMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/ApiMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/AsinMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/FilePathMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/IsbnMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/LinkMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/MacroTestSupport.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/MailToMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/ParamMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/RfcMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/TableMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/XrefMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/YipeeTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/code/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/code/AllCodeMacroTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/code/XmlCodeMacroTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/AllListTests.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/AtoZListFormatterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/ExampleListFormatterTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/ListFormatterSupport.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/SimpleListTest.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Encoder.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Linkable.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Nameable.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Service.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/StringBufferWriter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/LogHandler.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/Logger.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/NullLogger.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/SystemErrLogger.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/SystemOutLogger.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/PreEscapeMathFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/SubscriptFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/SuperscriptFilter.java +rwiki/branches/SAK-12433/rwiki-util/radeox/src/test/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/test/radeox/ +rwiki/branches/SAK-12433/rwiki-util/radeox/src/test/radeox/test/ +rwiki/branches/SAK-12433/rwiki-util/radeox/xdocs/ +rwiki/branches/SAK-12433/rwiki-util/radeox/xdocs/faq.fml +rwiki/branches/SAK-12433/rwiki-util/radeox/xdocs/navigation.xml +rwiki/branches/SAK-12433/rwiki-util/util/ +rwiki/branches/SAK-12433/rwiki-util/util/pom.xml +rwiki/branches/SAK-12433/rwiki-util/util/project.xml +rwiki/branches/SAK-12433/rwiki-util/util/src/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/ +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages.properties +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_ar.properties +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_ca.properties +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_fr_CA.properties +rwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_ja.properties +rwiki/branches/SAK-12433/rwiki-util/util/src/java/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/ +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/DebugContentHandler.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/DigestHtml.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/Digester.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/Messages.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/NameHelper.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/SchemaNames.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/SimpleCoverage.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/TimeLogger.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/UserDisplayHelper.java +rwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/XmlEscaper.java +rwiki/branches/SAK-12433/rwiki-util/util/src/test/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/utils/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/utils/test/ +rwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/utils/test/NameHelperTest.java +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/utils/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/utils/test/ +rwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/utils/test/NameHelperTest.test +rwiki/branches/SAK-12433/xdocs/ +rwiki/branches/SAK-12433/xdocs/canadminaction.graffle +rwiki/branches/SAK-12433/xdocs/canadminaction.pdf +rwiki/branches/SAK-12433/xdocs/cancreateaction.graffle +rwiki/branches/SAK-12433/xdocs/cancreateaction.pdf +rwiki/branches/SAK-12433/xdocs/canreadaction.graffle +rwiki/branches/SAK-12433/xdocs/canreadaction.pdf +rwiki/branches/SAK-12433/xdocs/canwriteaction.graffle +rwiki/branches/SAK-12433/xdocs/canwriteaction.pdf +rwiki/branches/SAK-12433/xdocs/design.xml +rwiki/branches/SAK-12433/xdocs/entitymodel.graffle +rwiki/branches/SAK-12433/xdocs/entitymodel.pdf +rwiki/branches/SAK-12433/xdocs/faq.fml +rwiki/branches/SAK-12433/xdocs/frs.xml +rwiki/branches/SAK-12433/xdocs/images/ +rwiki/branches/SAK-12433/xdocs/images/frs1.png +rwiki/branches/SAK-12433/xdocs/images/frs2.png +rwiki/branches/SAK-12433/xdocs/images/frs3.png +rwiki/branches/SAK-12433/xdocs/images/frs4.png +rwiki/branches/SAK-12433/xdocs/images/frs5.png +rwiki/branches/SAK-12433/xdocs/images/frs6.png +rwiki/branches/SAK-12433/xdocs/images/frs7.png +rwiki/branches/SAK-12433/xdocs/images/frs8.png +rwiki/branches/SAK-12433/xdocs/images/frs9.png +rwiki/branches/SAK-12433/xdocs/infopage2.png +rwiki/branches/SAK-12433/xdocs/infopagewireframe.graffle +rwiki/branches/SAK-12433/xdocs/infopagewireframe.pdf +rwiki/branches/SAK-12433/xdocs/navigation.xml +rwiki/branches/SAK-12433/xdocs/requestprocessing.graffle +rwiki/branches/SAK-12433/xdocs/requestprocessing.pdf +rwiki/branches/SAK-12433/xdocs/srs.xml +rwiki/branches/SAK-12433/xdocs/tc-matrix-rwiki.xls +rwiki/branches/SAK-12433/xdocs/testing.xml +rwiki/branches/SAK-12433/xdocs/usecase1.xml +rwiki/branches/SAK-12433/xdocs/usecase2.xml +rwiki/branches/SAK-12433/xdocs/usecase3.xml +rwiki/branches/SAK-12433/xdocs/usecase4.xml +rwiki/branches/SAK-12433/xdocs/usecases.xml +Log: +SAK-12433 => r31545 of sakai_2-4-x. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Dec 14 15:05:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 15:05:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 15:05:16 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by awakenings.mail.umich.edu () with ESMTP id lBEK5FO4023380; + Fri, 14 Dec 2007 15:05:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4762E1F4.AC412.27024 ; + 14 Dec 2007 15:05:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A1DD589BCA; + Fri, 14 Dec 2007 20:05:14 +0000 (GMT) +Message-ID: <200712141957.lBEJv0iR013058@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848 + for ; + Fri, 14 Dec 2007 20:04:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 24A2633B7C + for ; Fri, 14 Dec 2007 20:04:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJv0ic013061 + for ; Fri, 14 Dec 2007 14:57:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJv0iR013058 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:57:00 -0500 +Date: Fri, 14 Dec 2007 14:57:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39280 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 15:05:16 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39280 + +Author: dlhaines@umich.edu +Date: 2007-12-14 14:56:59 -0500 (Fri, 14 Dec 2007) +New Revision: 39280 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: pick up sql string update fix for assignments conversion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 14 15:00:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 15:00:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 15:00:38 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by awakenings.mail.umich.edu () with ESMTP id lBEK0cdY020962; + Fri, 14 Dec 2007 15:00:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4762E0DA.96940.17799 ; + 14 Dec 2007 15:00:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2B6859CE78; + Fri, 14 Dec 2007 20:00:34 +0000 (GMT) +Message-ID: <200712141952.lBEJqK99012941@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 866 + for ; + Fri, 14 Dec 2007 20:00:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E61F533264 + for ; Fri, 14 Dec 2007 20:00:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJqKFd012943 + for ; Fri, 14 Dec 2007 14:52:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJqK99012941 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:52:20 -0500 +Date: Fri, 14 Dec 2007 14:52:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39279 - assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 15:00:38 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39279 + +Author: zqian@umich.edu +Date: 2007-12-14 14:52:17 -0500 (Fri, 14 Dec 2007) +New Revision: 39279 + +Modified: +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +Log: +use of setCharacterStream instead of setString to deal with large CLOB data and avoid error like 'java.sql.SQLException: setString can only process strings of less than 32766 chararacters' + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 14 14:58:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 14:58:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 14:58:55 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id lBEJwstG014182; + Fri, 14 Dec 2007 14:58:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4762E076.9A7.2327 ; + 14 Dec 2007 14:58:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 31D929EB19; + Fri, 14 Dec 2007 19:58:53 +0000 (GMT) +Message-ID: <200712141950.lBEJob9T012929@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 672 + for ; + Fri, 14 Dec 2007 19:58:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B1D533B5A + for ; Fri, 14 Dec 2007 19:58:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJobgB012931 + for ; Fri, 14 Dec 2007 14:50:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJob9T012929 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:50:37 -0500 +Date: Fri, 14 Dec 2007 14:50:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39278 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 14:58:55 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39278 + +Author: mmmay@indiana.edu +Date: 2007-12-14 14:50:36 -0500 (Fri, 14 Dec 2007) +New Revision: 39278 + +Modified: +gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +Log: +svn merge -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk +U service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39185 | wagnermr@iupui.edu | 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007) | 4 lines + +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz +fixed class cast exception +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 14:58:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 14:58:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 14:58:35 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by casino.mail.umich.edu () with ESMTP id lBEJwYwB000572; + Fri, 14 Dec 2007 14:58:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4762E065.39615.27132 ; + 14 Dec 2007 14:58:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 557579CE78; + Fri, 14 Dec 2007 19:58:28 +0000 (GMT) +Message-ID: <200712141950.lBEJoHiK012917@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 527 + for ; + Fri, 14 Dec 2007 19:58:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB4C833264 + for ; Fri, 14 Dec 2007 19:58:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJoHng012919 + for ; Fri, 14 Dec 2007 14:50:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJoHiK012917 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:50:17 -0500 +Date: Fri, 14 Dec 2007 14:50:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39277 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 14:58:35 2007 +X-DSPAM-Confidence: 0.8427 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39277 + +Author: cwen@iupui.edu +Date: 2007-12-14 14:50:16 -0500 (Fri, 14 Dec 2007) +New Revision: 39277 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +Log: +update externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 14 14:56:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 14:56:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 14:56:55 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lBEJuqq3018703; + Fri, 14 Dec 2007 14:56:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4762DFFA.45F8A.24108 ; + 14 Dec 2007 14:56:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4CE6A9EAFB; + Fri, 14 Dec 2007 19:56:43 +0000 (GMT) +Message-ID: <200712141948.lBEJmRj7012905@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 908 + for ; + Fri, 14 Dec 2007 19:56:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB5DB30291 + for ; Fri, 14 Dec 2007 19:56:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJmRiG012907 + for ; Fri, 14 Dec 2007 14:48:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJmRj7012905 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:48:27 -0500 +Date: Fri, 14 Dec 2007 14:48:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39276 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 14:56:55 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39276 + +Author: mmmay@indiana.edu +Date: 2007-12-14 14:48:25 -0500 (Fri, 14 Dec 2007) +New Revision: 39276 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 39228:39229 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ export EDITOR=pico +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 39228:39229 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r39229 | zqian@umich.edu | 2007-12-13 15:05:48 -0500 (Thu, 13 Dec 2007) | 1 line + +fix to SAK-12422: Assignments upload all (grades.csv) does not handle DOS line breaks correctly +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 14:44:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 14:44:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 14:44:08 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lBEJi7jW006050; + Fri, 14 Dec 2007 14:44:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4762DCFF.A7E53.3815 ; + 14 Dec 2007 14:44:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 179D59EACC; + Fri, 14 Dec 2007 19:44:01 +0000 (GMT) +Message-ID: <200712141935.lBEJZqgM012874@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640 + for ; + Fri, 14 Dec 2007 19:43:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9113D3938C + for ; Fri, 14 Dec 2007 19:43:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJZqZH012876 + for ; Fri, 14 Dec 2007 14:35:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJZqgM012874 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:35:52 -0500 +Date: Fri, 14 Dec 2007 14:35:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39275 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 14:44:08 2007 +X-DSPAM-Confidence: 0.8442 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39275 + +Author: cwen@iupui.edu +Date: 2007-12-14 14:35:51 -0500 (Fri, 14 Dec 2007) +New Revision: 39275 + +Modified: +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update externals for SAK-12305. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 14:38:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 14:38:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 14:38:56 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lBEJctXN022023; + Fri, 14 Dec 2007 14:38:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4762DBC3.DF0F.9539 ; + 14 Dec 2007 14:38:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E40069EA9E; + Fri, 14 Dec 2007 19:38:45 +0000 (GMT) +Message-ID: <200712141930.lBEJUdDd012862@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 500 + for ; + Fri, 14 Dec 2007 19:38:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BFE383938C + for ; Fri, 14 Dec 2007 19:38:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJUd6x012864 + for ; Fri, 14 Dec 2007 14:30:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJUdDd012862 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:30:39 -0500 +Date: Fri, 14 Dec 2007 14:30:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39274 - gradebook/branches/oncourse_opc_122007/app/ui/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 14:38:56 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39274 + +Author: cwen@iupui.edu +Date: 2007-12-14 14:30:38 -0500 (Fri, 14 Dec 2007) +New Revision: 39274 + +Modified: +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/gradebookSetup.jsp +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12305 => svn merge -r38873:38874 https://source.sakaiproject.org/svn/gradebook/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Fri Dec 14 12:30:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 12:30:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 12:30:26 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by sleepers.mail.umich.edu () with ESMTP id lBEHUPON020544; + Fri, 14 Dec 2007 12:30:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4762BD9C.261D7.19433 ; + 14 Dec 2007 12:30:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1034185D10; + Fri, 14 Dec 2007 17:28:23 +0000 (GMT) +Message-ID: <200712141721.lBEHLbPg012661@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79 + for ; + Fri, 14 Dec 2007 17:28:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE58F3327E + for ; Fri, 14 Dec 2007 17:29:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEHLb9b012663 + for ; Fri, 14 Dec 2007 12:21:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEHLbPg012661 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 12:21:37 -0500 +Date: Fri, 14 Dec 2007 12:21:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r39273 - in courier/trunk: courier-impl/impl/src/java/org/sakaiproject/courier/impl courier-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 12:30:26 2007 +X-DSPAM-Confidence: 0.7554 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39273 + +Author: lance@indiana.edu +Date: 2007-12-14 12:21:34 -0500 (Fri, 14 Dec 2007) +New Revision: 39273 + +Modified: +courier/trunk/courier-impl/impl/src/java/org/sakaiproject/courier/impl/BasicCourierService.java +courier/trunk/courier-util/util/src/java/org/sakaiproject/util/BaseDelivery.java +Log: +SAK-12446 +http://jira.sakaiproject.org/jira/browse/SAK-12446 +Convert HashMap m_addresses to ConcurrentHashMap in BasicCourierService + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 11:37:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 11:37:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 11:37:09 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by jacknife.mail.umich.edu () with ESMTP id lBEGb8Bs018742; + Fri, 14 Dec 2007 11:37:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4762B12B.81F2C.14338 ; + 14 Dec 2007 11:37:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 37CC99E791; + Fri, 14 Dec 2007 16:36:01 +0000 (GMT) +Message-ID: <200712141628.lBEGSqtL012596@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467 + for ; + Fri, 14 Dec 2007 16:35:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A0C1C39281 + for ; Fri, 14 Dec 2007 16:36:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGSqGd012598 + for ; Fri, 14 Dec 2007 11:28:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGSqtL012596 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:28:52 -0500 +Date: Fri, 14 Dec 2007 11:28:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39272 - rwiki/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 11:37:09 2007 +X-DSPAM-Confidence: 0.8442 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39272 + +Author: cwen@iupui.edu +Date: 2007-12-14 11:28:51 -0500 (Fri, 14 Dec 2007) +New Revision: 39272 + +Added: +rwiki/branches/SAK-12433/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 11:34:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 11:34:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 11:34:00 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lBEGXxGO016782; + Fri, 14 Dec 2007 11:33:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4762B06F.AA1A2.6368 ; + 14 Dec 2007 11:33:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CC3EA9E774; + Fri, 14 Dec 2007 16:32:53 +0000 (GMT) +Message-ID: <200712141625.lBEGPfvv012584@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1016 + for ; + Fri, 14 Dec 2007 16:32:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 793C139281 + for ; Fri, 14 Dec 2007 16:33:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGPfLF012586 + for ; Fri, 14 Dec 2007 11:25:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGPfvv012584 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:25:41 -0500 +Date: Fri, 14 Dec 2007 11:25:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39271 - in content/branches/SAK-12433: . content-api content-api/api content-api/api/src content-api/api/src/java content-api/api/src/java/org content-api/api/src/java/org/sakaiproject content-api/api/src/java/org/sakaiproject/content content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/cover content-bundles content-help content-help/src content-help/src/sakai_dropbox content-help/src/sakai_resources content-impl content-impl/hbm content-impl/hbm/src content-impl/hbm/src/java content-impl/hbm/src/java/org content-impl/hbm/src/java/org/sakaiproject content-impl/hbm/src/java/org/sakaiproject/content content-impl/hbm/src/java/org/sakaiproject/content/hbm content-impl/impl content-impl/impl/src content-impl/impl/src/bundle content-impl/impl/src/config content-impl/impl/src/java content-impl/impl/src/java/org content-impl/impl/src/java/org/sakaiproject content-impl/impl/src/java/org/sakaiproject/cont! + ent content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/types content-impl/impl/src/sql content-impl/impl/src/sql/hsqldb content-impl/impl/src/sql/mysql content-impl/impl/src/sql/oracle content-impl/pack content-impl/pack/src content-impl/pack/src/webapp content-impl/pack/src/webapp/WEB-INF content-tool content-tool/tool content-tool/tool/src content-tool/tool/src/bundle content-tool/tool/src/java content-tool/tool/src/java/org content-tool/tool/src/java/org/sakaiproject content-tool/tool/src/java/org/sakaiproject/content content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp content-tool/tool/src/webapp/WEB-INF content-tool/tool/src/webapp/tools content-tool/tool/src/webapp/vm content-tool/tool/src/webapp/vm/content content-tool/tool/src/webapp/vm/resources content-util content-util/util content-util/util/src content-util/util/src/java content-util/util/src/java/org content-util/util/sr! + c/java/org/sakaiproject content-util/util/src/java/org/sakaipr! + oject/co +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 11:34:00 2007 +X-DSPAM-Confidence: 0.6935 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39271 + +Author: cwen@iupui.edu +Date: 2007-12-14 11:25:21 -0500 (Fri, 14 Dec 2007) +New Revision: 39271 + +Added: +content/branches/SAK-12433/content-api/ +content/branches/SAK-12433/content-api/.classpath +content/branches/SAK-12433/content-api/.project +content/branches/SAK-12433/content-api/api/ +content/branches/SAK-12433/content-api/api/pom.xml +content/branches/SAK-12433/content-api/api/project.xml +content/branches/SAK-12433/content-api/api/src/ +content/branches/SAK-12433/content-api/api/src/java/ +content/branches/SAK-12433/content-api/api/src/java/org/ +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/ +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/ +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentCollection.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentCollectionEdit.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentEntity.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentResource.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentResourceEdit.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentResourceFilter.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentTypeImageService.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/CustomToolAction.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ExpandableResourceType.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/GroupAwareEdit.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/GroupAwareEntity.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/Lock.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/LockManager.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/MultiFileUploadPipe.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceEditingHelper.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/SiteSpecificResourceType.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/cover/ +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/cover/ContentTypeImageService.java +content/branches/SAK-12433/content-bundles/ +content/branches/SAK-12433/content-bundles/.classpath +content/branches/SAK-12433/content-bundles/.project +content/branches/SAK-12433/content-bundles/content.metaprops +content/branches/SAK-12433/content-bundles/content.properties +content/branches/SAK-12433/content-bundles/content_ar.properties +content/branches/SAK-12433/content-bundles/content_ca.metaprops +content/branches/SAK-12433/content-bundles/content_ca.properties +content/branches/SAK-12433/content-bundles/content_es.metaprops +content/branches/SAK-12433/content-bundles/content_es.properties +content/branches/SAK-12433/content-bundles/content_fr_CA.metaprops +content/branches/SAK-12433/content-bundles/content_fr_CA.properties +content/branches/SAK-12433/content-bundles/content_ja.metaprops +content/branches/SAK-12433/content-bundles/content_ja.properties +content/branches/SAK-12433/content-bundles/content_ko.metaprops +content/branches/SAK-12433/content-bundles/content_ko.properties +content/branches/SAK-12433/content-bundles/content_nl.metaprops +content/branches/SAK-12433/content-bundles/content_nl.properties +content/branches/SAK-12433/content-bundles/content_sv.properties +content/branches/SAK-12433/content-bundles/content_zh_CN.metaprops +content/branches/SAK-12433/content-bundles/content_zh_CN.properties +content/branches/SAK-12433/content-bundles/types.properties +content/branches/SAK-12433/content-bundles/types_ar.properties +content/branches/SAK-12433/content-bundles/types_ca.properties +content/branches/SAK-12433/content-bundles/types_es.properties +content/branches/SAK-12433/content-bundles/types_fr_CA.properties +content/branches/SAK-12433/content-bundles/types_ja.properties +content/branches/SAK-12433/content-help/ +content/branches/SAK-12433/content-help/pom.xml +content/branches/SAK-12433/content-help/project.xml +content/branches/SAK-12433/content-help/src/ +content/branches/SAK-12433/content-help/src/sakai_dropbox/ +content/branches/SAK-12433/content-help/src/sakai_dropbox/aqyu.html +content/branches/SAK-12433/content-help/src/sakai_dropbox/aqzb.html +content/branches/SAK-12433/content-help/src/sakai_dropbox/aqzd.html +content/branches/SAK-12433/content-help/src/sakai_dropbox/aqzl.html +content/branches/SAK-12433/content-help/src/sakai_dropbox/ardv.html +content/branches/SAK-12433/content-help/src/sakai_dropbox/arfc.html +content/branches/SAK-12433/content-help/src/sakai_dropbox/help.xml +content/branches/SAK-12433/content-help/src/sakai_resources/ +content/branches/SAK-12433/content-help/src/sakai_resources/aqyf.html +content/branches/SAK-12433/content-help/src/sakai_resources/aqyi.html +content/branches/SAK-12433/content-help/src/sakai_resources/aqyy.html +content/branches/SAK-12433/content-help/src/sakai_resources/araf.html +content/branches/SAK-12433/content-help/src/sakai_resources/arbe.html +content/branches/SAK-12433/content-help/src/sakai_resources/area.html +content/branches/SAK-12433/content-help/src/sakai_resources/arex.html +content/branches/SAK-12433/content-help/src/sakai_resources/arfd.html +content/branches/SAK-12433/content-help/src/sakai_resources/arsl.html +content/branches/SAK-12433/content-help/src/sakai_resources/atkh.html +content/branches/SAK-12433/content-help/src/sakai_resources/atla.html +content/branches/SAK-12433/content-help/src/sakai_resources/aude.html +content/branches/SAK-12433/content-help/src/sakai_resources/audh.html +content/branches/SAK-12433/content-help/src/sakai_resources/auen.html +content/branches/SAK-12433/content-help/src/sakai_resources/aukb.html +content/branches/SAK-12433/content-help/src/sakai_resources/auta.html +content/branches/SAK-12433/content-help/src/sakai_resources/auze.html +content/branches/SAK-12433/content-help/src/sakai_resources/avbw.html +content/branches/SAK-12433/content-help/src/sakai_resources/avby.html +content/branches/SAK-12433/content-help/src/sakai_resources/avbz.html +content/branches/SAK-12433/content-help/src/sakai_resources/avcb.html +content/branches/SAK-12433/content-help/src/sakai_resources/avcc.html +content/branches/SAK-12433/content-help/src/sakai_resources/avcd.html +content/branches/SAK-12433/content-help/src/sakai_resources/avcg.html +content/branches/SAK-12433/content-help/src/sakai_resources/help.xml +content/branches/SAK-12433/content-impl/ +content/branches/SAK-12433/content-impl/.classpath +content/branches/SAK-12433/content-impl/.project +content/branches/SAK-12433/content-impl/hbm/ +content/branches/SAK-12433/content-impl/hbm/pom.xml +content/branches/SAK-12433/content-impl/hbm/project.xml +content/branches/SAK-12433/content-impl/hbm/src/ +content/branches/SAK-12433/content-impl/hbm/src/java/ +content/branches/SAK-12433/content-impl/hbm/src/java/org/ +content/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/ +content/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/ +content/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/hbm/ +content/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/hbm/Lock.java +content/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/hbm/LockManager.hbm.xml +content/branches/SAK-12433/content-impl/impl/ +content/branches/SAK-12433/content-impl/impl/pom.xml +content/branches/SAK-12433/content-impl/impl/project.xml +content/branches/SAK-12433/content-impl/impl/src/ +content/branches/SAK-12433/content-impl/impl/src/bundle/ +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon.metaprops +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon.properties +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_ar.properties +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_ca.metaprops +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_ca.properties +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_fr_CA.properties +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_sv.properties +content/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_zh_CN.properties +content/branches/SAK-12433/content-impl/impl/src/config/ +content/branches/SAK-12433/content-impl/impl/src/config/content_type_extensions.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_extensions_sv.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_images.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_images_ja.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_images_sv.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_names.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_names_ca.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_names_es.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_names_fr_CA.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_names_ja.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_names_nl.properties +content/branches/SAK-12433/content-impl/impl/src/config/content_type_names_sv.properties +content/branches/SAK-12433/content-impl/impl/src/java/ +content/branches/SAK-12433/content-impl/impl/src/java/org/ +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/ +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/ +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/ +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentHostingHandlerResolver.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseExtensionResourceFilter.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicContentTypeImageService.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/CollectionAccessFormatter.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingComparator.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/DbResourceTypeRegistry.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/LockManagerImpl.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/SiteEmailNotificationContent.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/ +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java +content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java +content/branches/SAK-12433/content-impl/impl/src/sql/ +content/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/ +content/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content.sql +content/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content_2_1_0.sql +content/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql +content/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content_registry.sql +content/branches/SAK-12433/content-impl/impl/src/sql/mysql/ +content/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content.sql +content/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content_2_1_0.sql +content/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content_delete.sql +content/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content_registry.sql +content/branches/SAK-12433/content-impl/impl/src/sql/oracle/ +content/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content.sql +content/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content_2_1_0.sql +content/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content_delete.sql +content/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content_registry.sql +content/branches/SAK-12433/content-impl/pack/ +content/branches/SAK-12433/content-impl/pack/pom.xml +content/branches/SAK-12433/content-impl/pack/project.xml +content/branches/SAK-12433/content-impl/pack/src/ +content/branches/SAK-12433/content-impl/pack/src/webapp/ +content/branches/SAK-12433/content-impl/pack/src/webapp/WEB-INF/ +content/branches/SAK-12433/content-impl/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12433/content-tool/ +content/branches/SAK-12433/content-tool/.classpath +content/branches/SAK-12433/content-tool/.project +content/branches/SAK-12433/content-tool/pom.xml +content/branches/SAK-12433/content-tool/tool/ +content/branches/SAK-12433/content-tool/tool/pom.xml +content/branches/SAK-12433/content-tool/tool/project.xml +content/branches/SAK-12433/content-tool/tool/src/ +content/branches/SAK-12433/content-tool/tool/src/bundle/ +content/branches/SAK-12433/content-tool/tool/src/bundle/helper.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_ar.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_ca.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_ca.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_es.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_es.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_fr_CA.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_fr_CA.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_ja.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_ja.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_ko.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_ko.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_nl.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_nl.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_sv.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_zh_CN.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/helper_zh_CN.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/right.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right_ar.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right_ca.metaprops +content/branches/SAK-12433/content-tool/tool/src/bundle/right_ca.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right_es.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right_fr_CA.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right_ja.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right_nl.properties +content/branches/SAK-12433/content-tool/tool/src/bundle/right_sv.properties +content/branches/SAK-12433/content-tool/tool/src/java/ +content/branches/SAK-12433/content-tool/tool/src/java/org/ +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/ +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/ +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/AttachmentAction.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/BasicRightsAssignment.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/EntityCounter.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourceTypeLabeler.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesBrowseItem.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesEditItem.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesItem.java +content/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java +content/branches/SAK-12433/content-tool/tool/src/webapp/ +content/branches/SAK-12433/content-tool/tool/src/webapp/WEB-INF/ +content/branches/SAK-12433/content-tool/tool/src/webapp/WEB-INF/web.xml +content/branches/SAK-12433/content-tool/tool/src/webapp/tools/ +content/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.dropbox.xml +content/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.filepicker.xml +content/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml +content/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.resources.xml +content/branches/SAK-12433/content-tool/tool/src/webapp/velocity.properties +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/ +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/ +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources-customize.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_create.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_deleteConfirm.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_edit.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_itemtype.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_list.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_more.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_properties.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_reorder.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_replace.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_show.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_filepicker_attach.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_filepicker_select.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_deleteFinish.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_options.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/ +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_folders.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_html.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_upload.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_url.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_properties_scripts.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm +content/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm +content/branches/SAK-12433/content-util/ +content/branches/SAK-12433/content-util/.classpath +content/branches/SAK-12433/content-util/.project +content/branches/SAK-12433/content-util/util/ +content/branches/SAK-12433/content-util/util/pom.xml +content/branches/SAK-12433/content-util/util/project.xml +content/branches/SAK-12433/content-util/util/src/ +content/branches/SAK-12433/content-util/util/src/java/ +content/branches/SAK-12433/content-util/util/src/java/org/ +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/ +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/ +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/ +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseInteractionAction.java +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceAction.java +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseServiceLevelAction.java +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java +content/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java +content/branches/SAK-12433/pom.xml +Log: +SAK-12433 => r34172 of branch of SAK-10581. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 11:29:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 11:29:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 11:29:44 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by sleepers.mail.umich.edu () with ESMTP id lBEGThuO017550; + Fri, 14 Dec 2007 11:29:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4762AF5C.801F.706 ; + 14 Dec 2007 11:29:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A6B1C9E7B5; + Fri, 14 Dec 2007 16:28:18 +0000 (GMT) +Message-ID: <200712141621.lBEGL7wB012570@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242 + for ; + Fri, 14 Dec 2007 16:28:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 686D93328D + for ; Fri, 14 Dec 2007 16:28:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGL7mY012572 + for ; Fri, 14 Dec 2007 11:21:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGL7wB012570 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:21:07 -0500 +Date: Fri, 14 Dec 2007 11:21:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39270 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 11:29:44 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39270 + +Author: cwen@iupui.edu +Date: 2007-12-14 11:21:05 -0500 (Fri, 14 Dec 2007) +New Revision: 39270 + +Added: +content/branches/SAK-12433/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 11:25:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 11:25:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 11:25:17 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by panther.mail.umich.edu () with ESMTP id lBEGPGbQ001127; + Fri, 14 Dec 2007 11:25:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4762AE44.3EE79.3951 ; + 14 Dec 2007 11:24:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 114479E63F; + Fri, 14 Dec 2007 16:23:34 +0000 (GMT) +Message-ID: <200712141616.lBEGGH5E012558@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 927 + for ; + Fri, 14 Dec 2007 16:23:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 227013328D + for ; Fri, 14 Dec 2007 16:24:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGGIWL012560 + for ; Fri, 14 Dec 2007 11:16:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGGH5E012558 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:16:17 -0500 +Date: Fri, 14 Dec 2007 11:16:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39269 - calendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 11:25:17 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39269 + +Author: cwen@iupui.edu +Date: 2007-12-14 11:16:15 -0500 (Fri, 14 Dec 2007) +New Revision: 39269 + +Modified: +calendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java +Log: +SAK-12433. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 11:09:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 11:09:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 11:09:19 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id lBEG9IPm029260; + Fri, 14 Dec 2007 11:09:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4762AAA3.2D97F.14128 ; + 14 Dec 2007 11:09:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2CF4A9E70D; + Fri, 14 Dec 2007 16:08:12 +0000 (GMT) +Message-ID: <200712141600.lBEG0vmY012525@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 928 + for ; + Fri, 14 Dec 2007 16:07:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4E2013929D + for ; Fri, 14 Dec 2007 16:08:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEG0v3o012527 + for ; Fri, 14 Dec 2007 11:00:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEG0vmY012525 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:00:57 -0500 +Date: Fri, 14 Dec 2007 11:00:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39268 - in site-manage/branches/SAK-12433: . pageorder pageorder/tool pageorder/tool/src pageorder/tool/src/bundle pageorder/tool/src/bundle/org pageorder/tool/src/bundle/org/sakaiproject pageorder/tool/src/bundle/org/sakaiproject/tool pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle pageorder/tool/src/bundle/org/sakaiproject/tool/sitepageorder pageorder/tool/src/java pageorder/tool/src/java/org pageorder/tool/src/java/org/sakaiproject pageorder/tool/src/java/org/sakaiproject/site pageorder/tool/src/java/org/sakaiproject/site/tool pageorder/tool/src/java/org/sakaiproject/site/tool/helper pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/impl pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf pageorder/tool/src/webapp pageorder/tool/src/webapp/WEB-INF pageorder/tool/src/webapp/con! + tent pageorder/tool/src/webapp/content/css pageorder/tool/src/webapp/content/images pageorder/tool/src/webapp/content/js pageorder/tool/src/webapp/content/js/jquery pageorder/tool/src/webapp/content/templates pageorder/tool/src/webapp/tools site-manage-api site-manage-api/api site-manage-api/api/src site-manage-api/api/src/java site-manage-api/api/src/java/org site-manage-api/api/src/java/org/sakaiproject site-manage-api/api/src/java/org/sakaiproject/sitemanage site-manage-api/api/src/java/org/sakaiproject/sitemanage/api site-manage-api/api/src/java/org/sakaiproject/sitemanage/cover site-manage-help site-manage-help/src site-manage-help/src/sakai_siteinfo site-manage-impl site-manage-impl/impl site-manage-impl/impl/src site-manage-impl/impl/src/bundle site-manage-impl/impl/src/java site-manage-impl/impl/src/java/org site-manage-impl/impl/src/java/org/sakaiproject site-manage-impl/impl/src/java/org/sakaiproject/site site-manage-impl/impl/src/java/org/sakaiproject/sitemanage ! + site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/imp! + l site-m +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 11:09:19 2007 +X-DSPAM-Confidence: 0.6957 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39268 + +Author: cwen@iupui.edu +Date: 2007-12-14 11:00:39 -0500 (Fri, 14 Dec 2007) +New Revision: 39268 + +Added: +site-manage/branches/SAK-12433/pageorder/ +site-manage/branches/SAK-12433/pageorder/.classpath +site-manage/branches/SAK-12433/pageorder/.project +site-manage/branches/SAK-12433/pageorder/INSTALL +site-manage/branches/SAK-12433/pageorder/project.properties +site-manage/branches/SAK-12433/pageorder/project.xml +site-manage/branches/SAK-12433/pageorder/tool/ +site-manage/branches/SAK-12433/pageorder/tool/.svnignore +site-manage/branches/SAK-12433/pageorder/tool/project.properties +site-manage/branches/SAK-12433/pageorder/tool/project.xml +site-manage/branches/SAK-12433/pageorder/tool/src/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages.properties +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_ca.properties +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_es.properties +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/sitepageorder/ +site-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/sitepageorder/bundle/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/impl/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/impl/SitePageEditHandler.java +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/ +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageAddProducer.java +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageAddViewParameters.java +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageDelProducer.java +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageEditProducer.java +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageEditViewParameters.java +site-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageListProducer.java +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/applicationContext.xml +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/requestContext.xml +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/web.xml +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/css/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/css/PageList.css +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/accept.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/add.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/application_edit.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/arrow_refresh.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/cancel.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/cross.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/delete.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/exclamation.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/indicator.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lightbulb.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lightbulb_off.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lock.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lock_add.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lock_break.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/page_edit.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/page_white_edit.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/pencil.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/plugin_edit.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/wrench.gif +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/editUtil.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/idrag.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/idrop.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/iexpander.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifx.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxblind.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxbounce.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxdrop.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxfold.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxhighlight.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxopenclose.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxpulsate.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxscale.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxscrollto.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxshake.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxslide.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxtransfer.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/interface.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/iselect.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/islider.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/isortables.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/itooltip.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ittabs.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/iutil.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/jquery-1.0.1.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/jquery-1.0.1.pack.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/orderUtil.js +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageAdd.html +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageDel.html +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageEdit.html +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageList.html +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/tools/ +site-manage/branches/SAK-12433/pageorder/tool/src/webapp/tools/sakai.site.pageorder.xml +site-manage/branches/SAK-12433/pom.xml +site-manage/branches/SAK-12433/site-manage-api/ +site-manage/branches/SAK-12433/site-manage-api/.classpath +site-manage/branches/SAK-12433/site-manage-api/.project +site-manage/branches/SAK-12433/site-manage-api/api/ +site-manage/branches/SAK-12433/site-manage-api/api/pom.xml +site-manage/branches/SAK-12433/site-manage-api/api/project.xml +site-manage/branches/SAK-12433/site-manage-api/api/src/ +site-manage/branches/SAK-12433/site-manage-api/api/src/java/ +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/ +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/ +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/ +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/ +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/SectionField.java +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/SectionFieldManager.java +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/cover/ +site-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/cover/SectionFieldManager.java +site-manage/branches/SAK-12433/site-manage-help/ +site-manage/branches/SAK-12433/site-manage-help/pom.xml +site-manage/branches/SAK-12433/site-manage-help/project.xml +site-manage/branches/SAK-12433/site-manage-help/src/ +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aqym.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aqzx.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/araa.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arai.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aral.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arao.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arav.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/araw.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arci.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardg.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardu.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardw.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardx.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arfb.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/atcs.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aueu.html +site-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/help.xml +site-manage/branches/SAK-12433/site-manage-impl/ +site-manage/branches/SAK-12433/site-manage-impl/.classpath +site-manage/branches/SAK-12433/site-manage-impl/.project +site-manage/branches/SAK-12433/site-manage-impl/impl/ +site-manage/branches/SAK-12433/site-manage-impl/impl/pom.xml +site-manage/branches/SAK-12433/site-manage-impl/impl/project.xml +site-manage/branches/SAK-12433/site-manage-impl/impl/src/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SampleCourseManagementProvider_ar.properties +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SampleCourseManagementProvider_es.properties +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SampleCourseManagementProvider_ja.properties +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields.properties +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields_ca.properties +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields_es.properties +site-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields_ja.properties +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/site/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/site/impl/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/ +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/SectionFieldImpl.java +site-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/SectionFieldManagerImpl.java +site-manage/branches/SAK-12433/site-manage-impl/pack/ +site-manage/branches/SAK-12433/site-manage-impl/pack/pom.xml +site-manage/branches/SAK-12433/site-manage-impl/pack/project.xml +site-manage/branches/SAK-12433/site-manage-impl/pack/src/ +site-manage/branches/SAK-12433/site-manage-impl/pack/src/webapp/ +site-manage/branches/SAK-12433/site-manage-impl/pack/src/webapp/WEB-INF/ +site-manage/branches/SAK-12433/site-manage-impl/pack/src/webapp/WEB-INF/components.xml +site-manage/branches/SAK-12433/site-manage-tool/ +site-manage/branches/SAK-12433/site-manage-tool/.classpath +site-manage/branches/SAK-12433/site-manage-tool/.project +site-manage/branches/SAK-12433/site-manage-tool/tool/ +site-manage/branches/SAK-12433/site-manage-tool/tool/maven.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/pom.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/project.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/src/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ar.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ca.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ca.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_es.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_es.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_fr_CA.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_fr_CA.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ja.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ja.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ko.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ko.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_nl.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_nl.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_sv.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_zh_CN.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_zh_CN.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ar.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ca.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ca.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_es.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_es.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_fr_CA.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_fr_CA.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ja.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ja.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ko.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ko.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_nl.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_nl.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_sv.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_zh_CN.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_zh_CN.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ar.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ca.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ca.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_es.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_es.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_fr_CA.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_fr_CA.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ja.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ja.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ko.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ko.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_sv.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_zh_CN.metaprops +site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_zh_CN.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/MembershipAction.java +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteBrowserAction.java +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/WEB-INF/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/WEB-INF/applicationContext.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/WEB-INF/web.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.membership.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.sitebrowser.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.siteinfo.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.sitesetup.xml +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/velocity.properties +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/chef_membership.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/chef_membership_confirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/chef_membership_joinable.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_list.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_simpleSearch.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_visit.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/ +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-confirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-differentRole.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-notification.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-sameRole.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeature.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeatureConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles-confirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-gradtoolsConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-list.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-modifyENW.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteFeatures.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSitePublishUnpublish.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-confirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-sendEmail.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-removeParticipants.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteDeleteConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-addCourseConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess-confirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editClass.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfo.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfoConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupDeleteConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupedit.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-import.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlCopy.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlCopyConfirm.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlCopyConfirmMsg.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlMaster.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm +site-manage/branches/SAK-12433/site-manage-util/ +site-manage/branches/SAK-12433/site-manage-util/.classpath +site-manage/branches/SAK-12433/site-manage-util/.project +site-manage/branches/SAK-12433/site-manage-util/util/ +site-manage/branches/SAK-12433/site-manage-util/util/pom.xml +site-manage/branches/SAK-12433/site-manage-util/util/project.xml +site-manage/branches/SAK-12433/site-manage-util/util/src/ +site-manage/branches/SAK-12433/site-manage-util/util/src/bundle/ +site-manage/branches/SAK-12433/site-manage-util/util/src/bundle/SampleCourseManagementProvider.properties +site-manage/branches/SAK-12433/site-manage-util/util/src/bundle/SampleCourseManagementProvider_ca.properties +site-manage/branches/SAK-12433/site-manage-util/util/src/bundle/SampleCourseManagementProvider_fr_CA.properties +site-manage/branches/SAK-12433/site-manage-util/util/src/java/ +site-manage/branches/SAK-12433/site-manage-util/util/src/java/org/ +site-manage/branches/SAK-12433/site-manage-util/util/src/java/org/sakaiproject/ +site-manage/branches/SAK-12433/site-manage-util/util/src/java/org/sakaiproject/util/ +site-manage/branches/SAK-12433/site-manage-util/util/src/java/org/sakaiproject/util/SubjectAffiliates.java +Log: +SAK-12433 => from r31545 of sakai_2-4-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Fri Dec 14 11:07:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 11:07:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 11:07:48 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id lBEG7m5B028613; + Fri, 14 Dec 2007 11:07:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4762AA4D.94C58.31366 ; + 14 Dec 2007 11:07:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B04D19E3C1; + Fri, 14 Dec 2007 16:06:43 +0000 (GMT) +Message-ID: <200712141559.lBEFxVvn012513@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 515 + for ; + Fri, 14 Dec 2007 16:06:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CDF933929D + for ; Fri, 14 Dec 2007 16:07:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFxVDM012515 + for ; Fri, 14 Dec 2007 10:59:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFxVvn012513 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:59:31 -0500 +Date: Fri, 14 Dec 2007 10:59:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39267 - reference/branches/SAK-8152/library/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 11:07:48 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39267 + +Author: josrodri@iupui.edu +Date: 2007-12-14 10:59:29 -0500 (Fri, 14 Dec 2007) +New Revision: 39267 + +Modified: +reference/branches/SAK-8152/library/src/webapp/js/headscripts.js +Log: +SAK-8152: merged current trunk into branch to bring up to date so ready to be merged back into trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 11:02:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 11:02:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 11:02:09 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by flawless.mail.umich.edu () with ESMTP id lBEG28IH024183; + Fri, 14 Dec 2007 11:02:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4762A8F7.A9556.31790 ; + 14 Dec 2007 11:02:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2B70C9E6E6; + Fri, 14 Dec 2007 16:01:04 +0000 (GMT) +Message-ID: <200712141553.lBEFrgnk012470@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 58 + for ; + Fri, 14 Dec 2007 16:00:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AC6A439291 + for ; Fri, 14 Dec 2007 16:01:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFrgM4012472 + for ; Fri, 14 Dec 2007 10:53:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFrgnk012470 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:53:42 -0500 +Date: Fri, 14 Dec 2007 10:53:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39266 - site-manage/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 11:02:09 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39266 + +Author: cwen@iupui.edu +Date: 2007-12-14 10:53:39 -0500 (Fri, 14 Dec 2007) +New Revision: 39266 + +Added: +site-manage/branches/SAK-12433/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 10:55:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 10:55:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 10:55:48 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lBEFtl3k032126; + Fri, 14 Dec 2007 10:55:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4762A76B.8D239.17457 ; + 14 Dec 2007 10:55:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 686B19E6EE; + Fri, 14 Dec 2007 15:54:25 +0000 (GMT) +Message-ID: <200712141546.lBEFkmWA012458@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022 + for ; + Fri, 14 Dec 2007 15:53:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A68338729 + for ; Fri, 14 Dec 2007 15:54:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFkmGp012460 + for ; Fri, 14 Dec 2007 10:46:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFkmWA012458 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:46:48 -0500 +Date: Fri, 14 Dec 2007 10:46:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39265 - in entity/branches/SAK-12433: . entity-api entity-api/api entity-api/api/src entity-api/api/src/java entity-api/api/src/java/org entity-api/api/src/java/org/sakaiproject entity-api/api/src/java/org/sakaiproject/entity entity-api/api/src/java/org/sakaiproject/entity/api entity-api/api/src/java/org/sakaiproject/entity/cover entity-impl entity-impl/impl entity-impl/impl/src entity-impl/impl/src/java entity-impl/impl/src/java/org entity-impl/impl/src/java/org/sakaiproject entity-impl/impl/src/java/org/sakaiproject/entity entity-impl/impl/src/java/org/sakaiproject/entity/impl entity-impl/pack entity-impl/pack/src entity-impl/pack/src/webapp entity-impl/pack/src/webapp/WEB-INF entity-util entity-util/util entity-util/util/src entity-util/util/src/java entity-util/util/src/java/org entity-util/util/src/java/org/sakaiproject entity-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 10:55:48 2007 +X-DSPAM-Confidence: 0.9838 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39265 + +Author: cwen@iupui.edu +Date: 2007-12-14 10:46:41 -0500 (Fri, 14 Dec 2007) +New Revision: 39265 + +Added: +entity/branches/SAK-12433/entity-api/ +entity/branches/SAK-12433/entity-api/.classpath +entity/branches/SAK-12433/entity-api/.project +entity/branches/SAK-12433/entity-api/api/ +entity/branches/SAK-12433/entity-api/api/pom.xml +entity/branches/SAK-12433/entity-api/api/project.xml +entity/branches/SAK-12433/entity-api/api/src/ +entity/branches/SAK-12433/entity-api/api/src/java/ +entity/branches/SAK-12433/entity-api/api/src/java/org/ +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/ +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/ +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/ +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/AttachmentContainer.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/AttachmentContainerEdit.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/ContextObserver.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Edit.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Entity.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityAccessOverloadException.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityCopyrightException.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityManager.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityNotDefinedException.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityPermissionException.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityProducer.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityPropertyNotDefinedException.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityPropertyTypeException.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntitySummary.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityTransferrer.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/HttpAccess.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Reference.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/ResourcePropertiesEdit.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Summary.java +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/cover/ +entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/cover/EntityManager.java +entity/branches/SAK-12433/entity-api/bin/ +entity/branches/SAK-12433/entity-impl/ +entity/branches/SAK-12433/entity-impl/.classpath +entity/branches/SAK-12433/entity-impl/.project +entity/branches/SAK-12433/entity-impl/bin/ +entity/branches/SAK-12433/entity-impl/impl/ +entity/branches/SAK-12433/entity-impl/impl/pom.xml +entity/branches/SAK-12433/entity-impl/impl/project.xml +entity/branches/SAK-12433/entity-impl/impl/src/ +entity/branches/SAK-12433/entity-impl/impl/src/java/ +entity/branches/SAK-12433/entity-impl/impl/src/java/org/ +entity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/ +entity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/ +entity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ +entity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java +entity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceComponent.java +entity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceVectorComponent.java +entity/branches/SAK-12433/entity-impl/pack/ +entity/branches/SAK-12433/entity-impl/pack/pom.xml +entity/branches/SAK-12433/entity-impl/pack/project.xml +entity/branches/SAK-12433/entity-impl/pack/src/ +entity/branches/SAK-12433/entity-impl/pack/src/webapp/ +entity/branches/SAK-12433/entity-impl/pack/src/webapp/WEB-INF/ +entity/branches/SAK-12433/entity-impl/pack/src/webapp/WEB-INF/components.xml +entity/branches/SAK-12433/entity-util/ +entity/branches/SAK-12433/entity-util/.classpath +entity/branches/SAK-12433/entity-util/.project +entity/branches/SAK-12433/entity-util/bin/ +entity/branches/SAK-12433/entity-util/util/ +entity/branches/SAK-12433/entity-util/util/pom.xml +entity/branches/SAK-12433/entity-util/util/project.xml +entity/branches/SAK-12433/entity-util/util/src/ +entity/branches/SAK-12433/entity-util/util/src/java/ +entity/branches/SAK-12433/entity-util/util/src/java/org/ +entity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/ +entity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/util/ +entity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java +entity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/util/BaseResourcePropertiesEdit.java +entity/branches/SAK-12433/pom.xml +Log: +SAK-12433 => from -r38226 of sakai_2-4-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 10:32:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 10:32:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 10:32:16 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id lBEFWF0Q019656; + Fri, 14 Dec 2007 10:32:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4762A1FA.2E5C0.16595 ; + 14 Dec 2007 10:32:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 48C549D0CD; + Fri, 14 Dec 2007 15:30:56 +0000 (GMT) +Message-ID: <200712141523.lBEFNXTB012433@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 513 + for ; + Fri, 14 Dec 2007 15:30:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0975D37EF3 + for ; Fri, 14 Dec 2007 15:31:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFNXpO012435 + for ; Fri, 14 Dec 2007 10:23:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFNXTB012433 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:23:33 -0500 +Date: Fri, 14 Dec 2007 10:23:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39264 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 10:32:16 2007 +X-DSPAM-Confidence: 0.9782 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39264 + +Author: cwen@iupui.edu +Date: 2007-12-14 10:23:30 -0500 (Fri, 14 Dec 2007) +New Revision: 39264 + +Removed: +entity/branches/oncourse_opc_122007/ +Log: +remove this branch for SAK-12433 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 10:24:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 10:24:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 10:24:54 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id lBEFOsoe009677; + Fri, 14 Dec 2007 10:24:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4762A040.CA30D.4257 ; + 14 Dec 2007 10:24:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 430E89E6B7; + Fri, 14 Dec 2007 15:24:49 +0000 (GMT) +Message-ID: <200712141516.lBEFGXbW012373@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477 + for ; + Fri, 14 Dec 2007 15:24:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B0FD379B8 + for ; Fri, 14 Dec 2007 15:24:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFGX9L012375 + for ; Fri, 14 Dec 2007 10:16:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFGXbW012373 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:16:33 -0500 +Date: Fri, 14 Dec 2007 10:16:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39263 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 10:24:54 2007 +X-DSPAM-Confidence: 0.9778 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39263 + +Author: cwen@iupui.edu +Date: 2007-12-14 10:16:30 -0500 (Fri, 14 Dec 2007) +New Revision: 39263 + +Added: +entity/branches/SAK-12433/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 10:07:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 10:07:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 10:07:56 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lBEF7tGg032765; + Fri, 14 Dec 2007 10:07:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47629C44.6461.22851 ; + 14 Dec 2007 10:07:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A96C69E647; + Fri, 14 Dec 2007 15:07:42 +0000 (GMT) +Message-ID: <200712141459.lBEExaAi012348@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 889 + for ; + Fri, 14 Dec 2007 15:07:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 704D5332ED + for ; Fri, 14 Dec 2007 15:07:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEExasx012350 + for ; Fri, 14 Dec 2007 09:59:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEExaAi012348 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:59:36 -0500 +Date: Fri, 14 Dec 2007 09:59:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39262 - entity/branches/oncourse_opc_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 10:07:56 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39262 + +Author: cwen@iupui.edu +Date: 2007-12-14 09:59:34 -0500 (Fri, 14 Dec 2007) +New Revision: 39262 + +Removed: +entity/branches/oncourse_opc_122007/sakai_2-4-x/ +Log: +revert this branch back + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 10:06:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 10:06:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 10:06:58 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id lBEF6v78015941; + Fri, 14 Dec 2007 10:06:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47629C00.5DA63.29421 ; + 14 Dec 2007 10:06:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 738569E644; + Fri, 14 Dec 2007 15:06:27 +0000 (GMT) +Message-ID: <200712141458.lBEEwUYV012333@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 141 + for ; + Fri, 14 Dec 2007 15:06:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1C28324C44 + for ; Fri, 14 Dec 2007 15:06:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEwUEC012335 + for ; Fri, 14 Dec 2007 09:58:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEwUYV012333 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:58:30 -0500 +Date: Fri, 14 Dec 2007 09:58:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39261 - entity/branches/oncourse_opc_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 10:06:58 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39261 + +Author: cwen@iupui.edu +Date: 2007-12-14 09:58:27 -0500 (Fri, 14 Dec 2007) +New Revision: 39261 + +Added: +entity/branches/oncourse_opc_122007/sakai_2-4-x/ +Log: +SAK-12433 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 09:47:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 09:47:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 09:47:59 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by chaos.mail.umich.edu () with ESMTP id lBEElwOw006036; + Fri, 14 Dec 2007 09:47:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47629798.918F9.8726 ; + 14 Dec 2007 09:47:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B1859E389; + Fri, 14 Dec 2007 14:46:06 +0000 (GMT) +Message-ID: <200712141439.lBEEdfRJ012310@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 439 + for ; + Fri, 14 Dec 2007 14:45:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DA1073921A + for ; Fri, 14 Dec 2007 14:47:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEdfS3012312 + for ; Fri, 14 Dec 2007 09:39:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEdfRJ012310 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:39:41 -0500 +Date: Fri, 14 Dec 2007 09:39:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39260 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 09:47:59 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39260 + +Author: cwen@iupui.edu +Date: 2007-12-14 09:39:39 -0500 (Fri, 14 Dec 2007) +New Revision: 39260 + +Added: +entity/branches/oncourse_opc_122007/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 09:42:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 09:42:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 09:42:50 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by panther.mail.umich.edu () with ESMTP id lBEEgnGm002793; + Fri, 14 Dec 2007 09:42:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47629662.A23D5.21764 ; + 14 Dec 2007 09:42:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2D3D69E4D5; + Fri, 14 Dec 2007 14:40:42 +0000 (GMT) +Message-ID: <200712141434.lBEEYUKX012298@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 436 + for ; + Fri, 14 Dec 2007 14:40:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C262939219 + for ; Fri, 14 Dec 2007 14:42:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEYUsu012300 + for ; Fri, 14 Dec 2007 09:34:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEYUKX012298 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:34:30 -0500 +Date: Fri, 14 Dec 2007 09:34:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39259 - announcement/branches/oncourse_opc_122007/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 09:42:50 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39259 + +Author: cwen@iupui.edu +Date: 2007-12-14 09:34:28 -0500 (Fri, 14 Dec 2007) +New Revision: 39259 + +Modified: +announcement/branches/oncourse_opc_122007/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl/BaseAnnouncementService.java +Log: +SAK-12433 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 09:18:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 09:18:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 09:18:44 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id lBEEIhid005424; + Fri, 14 Dec 2007 09:18:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476290BC.A8E5B.24185 ; + 14 Dec 2007 09:18:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 798F99E1B6; + Fri, 14 Dec 2007 14:16:48 +0000 (GMT) +Message-ID: <200712141410.lBEEAWb2012282@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 616 + for ; + Fri, 14 Dec 2007 14:16:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 25A7938735 + for ; Fri, 14 Dec 2007 14:18:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEAW6e012284 + for ; Fri, 14 Dec 2007 09:10:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEAWb2012282 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:10:32 -0500 +Date: Fri, 14 Dec 2007 09:10:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39258 - web/branches/sakai_2-4-x/news-impl/impl/src/java/org/sakaiproject/news/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 09:18:44 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39258 + +Author: cwen@iupui.edu +Date: 2007-12-14 09:10:31 -0500 (Fri, 14 Dec 2007) +New Revision: 39258 + +Modified: +web/branches/sakai_2-4-x/news-impl/impl/src/java/org/sakaiproject/news/impl/BasicNewsService.java +Log: +SAK-12433 svn merge -r39236:39237 https://source.sakaiproject.org/svn/web/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 09:15:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 09:15:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 09:15:39 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by flawless.mail.umich.edu () with ESMTP id lBEEFcSW029882; + Fri, 14 Dec 2007 09:15:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47629004.D70C3.21589 ; + 14 Dec 2007 09:15:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9F1459DEA1; + Fri, 14 Dec 2007 14:13:30 +0000 (GMT) +Message-ID: <200712141407.lBEE78Ev012256@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 674 + for ; + Fri, 14 Dec 2007 14:13:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B790F392C4 + for ; Fri, 14 Dec 2007 14:14:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEE78Jq012258 + for ; Fri, 14 Dec 2007 09:07:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEE78Ev012256 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:07:08 -0500 +Date: Fri, 14 Dec 2007 09:07:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39257 - in osp/branches/oncourse_2-4-x: glossary/api-impl/src/java/org/theospi/portfolio/help/impl matrix/api-impl/src/java/org/theospi/portfolio/matrix/model/impl presentation/api-impl/src/java/org/theospi/portfolio/presentation/model/impl wizard/api-impl/src/java/org/theospi/portfolio/wizard/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 09:15:39 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39257 + +Author: cwen@iupui.edu +Date: 2007-12-14 09:07:05 -0500 (Fri, 14 Dec 2007) +New Revision: 39257 + +Modified: +osp/branches/oncourse_2-4-x/glossary/api-impl/src/java/org/theospi/portfolio/help/impl/GlossaryEntityProducer.java +osp/branches/oncourse_2-4-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/model/impl/MatrixContentEntityProducer.java +osp/branches/oncourse_2-4-x/presentation/api-impl/src/java/org/theospi/portfolio/presentation/model/impl/PresentationContentEntityProducer.java +osp/branches/oncourse_2-4-x/wizard/api-impl/src/java/org/theospi/portfolio/wizard/impl/WizardEntityProducer.java +Log: +SAK-12433 svn merge -r39226:39227 https://source.sakaiproject.org/svn/osp/trunk, svn merge -r39227:39228 https://source.sakaiproject.org/svn/osp/trunk, svn merge -r39229:39230 https://source.sakaiproject.org/svn/osp/trunk, svn merge -r39230:39231 https://source.sakaiproject.org/svn/osp/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 09:02:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 09:02:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 09:02:32 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id lBEE2VjL025617; + Fri, 14 Dec 2007 09:02:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47628CF0.F0000.10360 ; + 14 Dec 2007 09:02:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BBA189E3C2; + Fri, 14 Dec 2007 14:00:34 +0000 (GMT) +Message-ID: <200712141354.lBEDs2bB012239@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 707 + for ; + Fri, 14 Dec 2007 14:00:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3EDFC392C4 + for ; Fri, 14 Dec 2007 14:01:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDs294012241 + for ; Fri, 14 Dec 2007 08:54:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDs2bB012239 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:54:02 -0500 +Date: Fri, 14 Dec 2007 08:54:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39256 - web/branches/sakai_2-4-x/web-impl/impl/src/java/org/sakaiproject/web/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 09:02:32 2007 +X-DSPAM-Confidence: 0.9833 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39256 + +Author: cwen@iupui.edu +Date: 2007-12-14 08:54:01 -0500 (Fri, 14 Dec 2007) +New Revision: 39256 + +Modified: +web/branches/sakai_2-4-x/web-impl/impl/src/java/org/sakaiproject/web/impl/WebServiceImpl.java +Log: +SAK-12433 svn merge -r39225:39226 https://source.sakaiproject.org/svn/web/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 08:40:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 08:40:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 08:40:34 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by sleepers.mail.umich.edu () with ESMTP id lBEDeYFS022318; + Fri, 14 Dec 2007 08:40:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476287CB.23758.16675 ; + 14 Dec 2007 08:40:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 028C99B0EF; + Fri, 14 Dec 2007 13:40:25 +0000 (GMT) +Message-ID: <200712141332.lBEDWLBI011988@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 172 + for ; + Fri, 14 Dec 2007 13:40:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 512AD32CC0 + for ; Fri, 14 Dec 2007 13:40:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDWLVN011990 + for ; Fri, 14 Dec 2007 08:32:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDWLBI011988 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:32:21 -0500 +Date: Fri, 14 Dec 2007 08:32:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39255 - syllabus/branches/sakai_2-4-x/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 08:40:34 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39255 + +Author: cwen@iupui.edu +Date: 2007-12-14 08:32:20 -0500 (Fri, 14 Dec 2007) +New Revision: 39255 + +Modified: +syllabus/branches/sakai_2-4-x/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java +Log: +SAK-12433 svn merge -r39224:39225 https://source.sakaiproject.org/svn/syllabus/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 08:37:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 08:37:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 08:37:16 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lBEDbF35031179; + Fri, 14 Dec 2007 08:37:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47628703.5409D.23061 ; + 14 Dec 2007 08:37:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 625789B0EF; + Fri, 14 Dec 2007 13:37:06 +0000 (GMT) +Message-ID: <200712141329.lBEDT0sf011969@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459 + for ; + Fri, 14 Dec 2007 13:36:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DA11032CC0 + for ; Fri, 14 Dec 2007 13:36:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDT0L2011971 + for ; Fri, 14 Dec 2007 08:29:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDT0sf011969 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:29:00 -0500 +Date: Fri, 14 Dec 2007 08:29:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39254 - metaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/shared/mgt/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 08:37:16 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39254 + +Author: cwen@iupui.edu +Date: 2007-12-14 08:28:59 -0500 (Fri, 14 Dec 2007) +New Revision: 39254 + +Modified: +metaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/shared/mgt/impl/MetaobjEntityProducer.java +Log: +SAK-12433 svn merge -r39223:39224 https://source.sakaiproject.org/svn/metaobj/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Dec 14 08:31:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 08:31:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 08:31:45 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by chaos.mail.umich.edu () with ESMTP id lBEDViDh001965; + Fri, 14 Dec 2007 08:31:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 476285B9.31808.24682 ; + 14 Dec 2007 08:31:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 37AF856558; + Fri, 14 Dec 2007 13:31:35 +0000 (GMT) +Message-ID: <200712141323.lBEDNTvR011923@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 102 + for ; + Fri, 14 Dec 2007 13:31:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EF07C32CC0 + for ; Fri, 14 Dec 2007 13:31:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDNTgh011925 + for ; Fri, 14 Dec 2007 08:23:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDNTvR011923 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:23:29 -0500 +Date: Fri, 14 Dec 2007 08:23:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39253 - in chat/branches/oncourse_2-4-x/chat-impl/impl/src/java/org/sakaiproject: chat/impl chat2/model/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 08:31:45 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39253 + +Author: cwen@iupui.edu +Date: 2007-12-14 08:23:28 -0500 (Fri, 14 Dec 2007) +New Revision: 39253 + +Modified: +chat/branches/oncourse_2-4-x/chat-impl/impl/src/java/org/sakaiproject/chat/impl/BaseChatService.java +chat/branches/oncourse_2-4-x/chat-impl/impl/src/java/org/sakaiproject/chat2/model/impl/ChatEntityProducer.java +Log: +SAK-12433 => svn merge -r39220:39221 https://source.sakaiproject.org/svn/chat/trunk, svn merge -r39221:39222 https://source.sakaiproject.org/svn/chat/tr +unk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 14 03:31:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 14 Dec 2007 03:31:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 14 Dec 2007 03:31:09 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id lBE8V8io020306; + Fri, 14 Dec 2007 03:31:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47623F47.A8D2D.21936 ; + 14 Dec 2007 03:31:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5946C9DFFC; + Fri, 14 Dec 2007 08:30:01 +0000 (GMT) +Message-ID: <200712140822.lBE8Mml0011223@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 724 + for ; + Fri, 14 Dec 2007 08:29:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2D5B733141 + for ; Fri, 14 Dec 2007 08:30:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBE8MoMm011225 + for ; Fri, 14 Dec 2007 03:22:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBE8Mml0011223 + for source@collab.sakaiproject.org; Fri, 14 Dec 2007 03:22:48 -0500 +Date: Fri, 14 Dec 2007 03:22:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39252 - reference/branches/sakai_2-5-x/library/src/webapp/js search/branches/sakai_2-5-x/search-tool/tool/src/webapp/scripts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 14 03:31:09 2007 +X-DSPAM-Confidence: 0.8433 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39252 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-14 03:22:26 -0500 (Fri, 14 Dec 2007) +New Revision: 39252 + +Modified: +reference/branches/sakai_2-5-x/library/src/webapp/js/headscripts.js +search/branches/sakai_2-5-x/search-tool/tool/src/webapp/scripts/search.js +Log: +SAK-11014 revert changes need to propegate to branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Dec 13 21:22:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 21:22:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 21:22:17 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by mission.mail.umich.edu () with ESMTP id lBE2MGGl023121; + Thu, 13 Dec 2007 21:22:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4761E8C8.CF9D0.26898 ; + 13 Dec 2007 21:22:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9C1F99DBB9; + Fri, 14 Dec 2007 02:22:10 +0000 (GMT) +Message-ID: <200712140213.lBE2Dc5J011017@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 670 + for ; + Fri, 14 Dec 2007 02:21:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 127D638602 + for ; Fri, 14 Dec 2007 02:21:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBE2Dc17011019 + for ; Thu, 13 Dec 2007 21:13:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBE2Dc5J011017 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 21:13:38 -0500 +Date: Thu, 13 Dec 2007 21:13:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39251 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 21:22:17 2007 +X-DSPAM-Confidence: 0.8426 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39251 + +Author: rjlowe@iupui.edu +Date: 2007-12-13 21:13:33 -0500 (Thu, 13 Dec 2007) +New Revision: 39251 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java +Log: +Gradebook - unmerging SAK-12433, r39236, r39235, r39234, r39232 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Dec 13 21:22:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 21:22:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 21:22:01 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id lBE2M0RP001427; + Thu, 13 Dec 2007 21:22:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4761E8B4.9FDF3.9709 ; + 13 Dec 2007 21:21:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E50FB760C4; + Fri, 14 Dec 2007 02:21:41 +0000 (GMT) +Message-ID: <200712140213.lBE2DBUg011005@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 442 + for ; + Fri, 14 Dec 2007 02:20:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CE0673828D + for ; Fri, 14 Dec 2007 02:21:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBE2DBF2011007 + for ; Thu, 13 Dec 2007 21:13:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBE2DBUg011005 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 21:13:11 -0500 +Date: Thu, 13 Dec 2007 21:13:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39250 - in gradebook/trunk/helper-app/src: java/org/sakaiproject/gradebook/tool/entity webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 21:22:01 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39250 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-13 21:12:51 -0500 (Thu, 13 Dec 2007) +New Revision: 39250 + +Added: +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProvider.java +Removed: +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProducer.java +Modified: +gradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/helper-app/src/webapp/WEB-INF/web.xml +Log: +NOJIRA Working on getting the EB to work from just a webapp. Not quite there yet. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Dec 13 18:33:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:33:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:33:07 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id lBDNX702032532; + Thu, 13 Dec 2007 18:33:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4761C12B.D7B8F.23680 ; + 13 Dec 2007 18:33:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A41259DAA3; + Thu, 13 Dec 2007 23:32:59 +0000 (GMT) +Message-ID: <200712132324.lBDNOio3010784@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 725 + for ; + Thu, 13 Dec 2007 23:32:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DE7853858D + for ; Thu, 13 Dec 2007 23:32:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDNOibw010786 + for ; Thu, 13 Dec 2007 18:24:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDNOio3010784 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:24:44 -0500 +Date: Thu, 13 Dec 2007 18:24:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39249 - bspace/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:33:07 2007 +X-DSPAM-Confidence: 0.6940 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39249 + +Author: louis@media.berkeley.edu +Date: 2007-12-13 18:24:39 -0500 (Thu, 13 Dec 2007) +New Revision: 39249 + +Added: +bspace/assignment/post-2-4/ +Log: +Copied remotely + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Dec 13 18:32:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:32:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:32:32 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lBDNWVPa022696; + Thu, 13 Dec 2007 18:32:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4761C109.18906.26420 ; + 13 Dec 2007 18:32:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6D3639DAA1; + Thu, 13 Dec 2007 23:32:27 +0000 (GMT) +Message-ID: <200712132324.lBDNOB8V010772@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 300 + for ; + Thu, 13 Dec 2007 23:32:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 89DCC3858D + for ; Thu, 13 Dec 2007 23:32:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDNOCuP010774 + for ; Thu, 13 Dec 2007 18:24:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDNOB8V010772 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:24:11 -0500 +Date: Thu, 13 Dec 2007 18:24:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39248 - bspace/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:32:32 2007 +X-DSPAM-Confidence: 0.6937 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39248 + +Author: louis@media.berkeley.edu +Date: 2007-12-13 18:24:07 -0500 (Thu, 13 Dec 2007) +New Revision: 39248 + +Added: +bspace/assignment/old-post-2-4/ +Removed: +bspace/assignment/post-2-4/ +Log: +Renamed remotely + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Thu Dec 13 18:25:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:25:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:25:49 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by flawless.mail.umich.edu () with ESMTP id lBDNPmlY022958; + Thu, 13 Dec 2007 18:25:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4761BF77.979DB.9633 ; + 13 Dec 2007 18:25:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A2396DF23; + Thu, 13 Dec 2007 23:25:44 +0000 (GMT) +Message-ID: <200712132317.lBDNHTZm010752@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 346 + for ; + Thu, 13 Dec 2007 23:25:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 597053858D + for ; Thu, 13 Dec 2007 23:25:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDNHT9H010754 + for ; Thu, 13 Dec 2007 18:17:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDNHTZm010752 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:17:29 -0500 +Date: Thu, 13 Dec 2007 18:17:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r39247 - in sam/trunk: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/services +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:25:49 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39247 + +Author: ktsao@stanford.edu +Date: 2007-12-13 18:17:14 -0500 (Thu, 13 Dec 2007) +New Revision: 39247 + +Modified: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java +Log: +SAK-12098 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Dec 13 18:11:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:11:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:11:24 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by faithful.mail.umich.edu () with ESMTP id lBDNBNod031831; + Thu, 13 Dec 2007 18:11:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4761BC15.C0CD0.10749 ; + 13 Dec 2007 18:11:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 792359DA49; + Thu, 13 Dec 2007 23:11:16 +0000 (GMT) +Message-ID: <200712132303.lBDN36rA010719@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617 + for ; + Thu, 13 Dec 2007 23:10:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A636385F7 + for ; Thu, 13 Dec 2007 23:10:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDN376Q010721 + for ; Thu, 13 Dec 2007 18:03:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDN36rA010719 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:03:06 -0500 +Date: Thu, 13 Dec 2007 18:03:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39246 - in user/trunk/user-impl/integration-test/src/test: java/org/sakaiproject/user/impl resources resources/nocache +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:11:24 2007 +X-DSPAM-Confidence: 0.7563 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39246 + +Author: ray@media.berkeley.edu +Date: 2007-12-13 18:03:01 -0500 (Thu, 13 Dec 2007) +New Revision: 39246 + +Added: +user/trunk/user-impl/integration-test/src/test/resources/nocache/ +user/trunk/user-impl/integration-test/src/test/resources/nocache/sakai.properties +Modified: +user/trunk/user-impl/integration-test/src/test/java/org/sakaiproject/user/impl/AuthenticatedUserProviderTest.java +Log: +SAK-12435 Add test code demonstrating how a user provider might create and update Sakai-stored user records (with a certain amount of hoop-jumping) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 18:09:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:09:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:09:24 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by sleepers.mail.umich.edu () with ESMTP id lBDN9NvG017517; + Thu, 13 Dec 2007 18:09:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4761BB98.D0F65.23422 ; + 13 Dec 2007 18:09:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 90A378405E; + Thu, 13 Dec 2007 23:09:12 +0000 (GMT) +Message-ID: <200712132301.lBDN1AOr010707@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 892 + for ; + Thu, 13 Dec 2007 23:09:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A938B385F7 + for ; Thu, 13 Dec 2007 23:08:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDN1AEB010709 + for ; Thu, 13 Dec 2007 18:01:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDN1AOr010707 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:01:10 -0500 +Date: Thu, 13 Dec 2007 18:01:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39245 - master/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:09:24 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39245 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 18:01:06 -0500 (Thu, 13 Dec 2007) +New Revision: 39245 + +Modified: +master/trunk/pom.xml +Log: +SAK-12454 +Added Jackrabbit version + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 18:06:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:06:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:06:17 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lBDN6HKN008003; + Thu, 13 Dec 2007 18:06:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4761BAE3.31811.2690 ; + 13 Dec 2007 18:06:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ECCFC8405E; + Thu, 13 Dec 2007 23:06:11 +0000 (GMT) +Message-ID: <200712132258.lBDMw87E010687@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984 + for ; + Thu, 13 Dec 2007 23:05:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 308EA385F7 + for ; Thu, 13 Dec 2007 23:05:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDMw87W010689 + for ; Thu, 13 Dec 2007 17:58:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDMw87E010687 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 17:58:08 -0500 +Date: Thu, 13 Dec 2007 17:58:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39244 - in content/trunk: . content-api/api/src/java/org/sakaiproject/content/api content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/pack/src/webapp/WEB-INF content-impl-jcr/impl content-impl-jcr/impl/src/java/org/sakaiproject/content/impl content-impl-jcr/pack content-impl-jcr/pack/src/webapp/WEB-INF content-jcr-migration-api content-jcr-migration-api/src content-jcr-migration-api/src/java content-jcr-migration-api/src/java/org content-jcr-migration-api/src/java/org/sakaiproject content-jcr-migration-api/src/java/org/sakaiproject/content content-jcr-migration-api/src/java/org/sakaiproject/content/migration content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api content-jcr-migration-impl content-jcr-migration-impl/.settings content-jcr-migration-impl/src content-jcr-migration-impl/src/java content-jcr-migration-impl/src/java/org content-jcr-migration-impl/src/java/org/sakaiproject content-jcr-migration-impl/! + src/java/org/sakaiproject/content content-jcr-migration-impl/src/java/org/sakaiproject/content/migration content-jcr-migration-impl/src/sql content-jcr-migration-impl/src/sql/mysql contentmultiplex-impl contentmultiplex-impl/impl contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:06:17 2007 +X-DSPAM-Confidence: 0.7603 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39244 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 17:57:08 -0500 (Thu, 13 Dec 2007) +New Revision: 39244 + +Added: +content/trunk/content-jcr-migration-api/ +content/trunk/content-jcr-migration-api/.classpath +content/trunk/content-jcr-migration-api/.project +content/trunk/content-jcr-migration-api/pom.xml +content/trunk/content-jcr-migration-api/src/ +content/trunk/content-jcr-migration-api/src/java/ +content/trunk/content-jcr-migration-api/src/java/org/ +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/ +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/ +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/ +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/CHStoJCRMigrator.java +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/MigrationStatusReporter.java +content/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/RequestThreadServiceSwitcher.java +content/trunk/content-jcr-migration-impl/ +content/trunk/content-jcr-migration-impl/.classpath +content/trunk/content-jcr-migration-impl/.project +content/trunk/content-jcr-migration-impl/.settings/ +content/trunk/content-jcr-migration-impl/.settings/org.eclipse.jdt.core.prefs +content/trunk/content-jcr-migration-impl/pom.xml +content/trunk/content-jcr-migration-impl/src/ +content/trunk/content-jcr-migration-impl/src/java/ +content/trunk/content-jcr-migration-impl/src/java/org/ +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/ +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/ +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/ +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/CHStoJCRMigratorImpl.java +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/ContentToJCRCopierImpl.java +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationConstants.java +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationInProgressObserver.java +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationSqlQueries.java +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationStatusReporterImpl.java +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationTableSqlReader.java +content/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/ThingToMigrate.java +content/trunk/content-jcr-migration-impl/src/sql/ +content/trunk/content-jcr-migration-impl/src/sql/mysql/ +content/trunk/content-jcr-migration-impl/src/sql/mysql/setup-migration-dbtables.sql +content/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingTargetSource.java +Modified: +content/trunk/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/trunk/content-impl-jcr/impl/pom.xml +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java +content/trunk/content-impl-jcr/pack/pom.xml +content/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/trunk/content-impl/pack/src/webapp/WEB-INF/components.xml +content/trunk/contentmultiplex-impl/.classpath +content/trunk/contentmultiplex-impl/impl/pom.xml +content/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +content/trunk/pom.xml +Log: +SAK-12454 + +Merge of CHS-JCR intro trunk containing SAK-12105 fixes and modifications to make sakai.properties work + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 18:04:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:04:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:04:40 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by godsend.mail.umich.edu () with ESMTP id lBDN4cWm007389; + Thu, 13 Dec 2007 18:04:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4761BA80.BD402.20457 ; + 13 Dec 2007 18:04:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 680649DA49; + Thu, 13 Dec 2007 23:04:31 +0000 (GMT) +Message-ID: <200712132256.lBDMuT5U010675@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 621 + for ; + Thu, 13 Dec 2007 23:04:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3B00F385F7 + for ; Thu, 13 Dec 2007 23:04:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDMuT8B010677 + for ; Thu, 13 Dec 2007 17:56:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDMuT5U010675 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 17:56:29 -0500 +Date: Thu, 13 Dec 2007 17:56:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39243 - in jcr/trunk: . jackrabbit-impl jackrabbit-impl/impl jackrabbit-impl/impl/.settings jackrabbit-impl/impl/src jackrabbit-impl/impl/src/java jackrabbit-impl/impl/src/java/org jackrabbit-impl/impl/src/java/org/apache jackrabbit-impl/impl/src/java/org/apache/jackrabbit jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core/journal jackrabbit-impl/impl/src/java/org/sakaiproject jackrabbit-impl/impl/src/java/org/sakaiproject/jcr jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/preload jackrabbit-impl/impl/src/test jackrabbit-impl/impl/src/test/org jackrabbit-impl/impl/src/test/org/sakaiproject jackrabbit-impl/impl/src/test/org/sakaiproject! + /jcr jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock jackrabbit-impl/pack jackrabbit-impl/pack/.settings jackrabbit-impl/pack/src jackrabbit-impl/pack/src/webapp jackrabbit-impl/pack/src/webapp/WEB-INF jcr-api/api/src/java/org/sakaiproject/jcr/api jcr-util jcr-util/.settings jcr-util/src jcr-util/src/java jcr-util/src/java/org jcr-util/src/java/org/sakaiproject jcr-util/src/java/org/sakaiproject/jcr jcr-util/src/java/org/sakaiproject/jcr/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:04:40 2007 +X-DSPAM-Confidence: 0.8464 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39243 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 17:55:15 -0500 (Thu, 13 Dec 2007) +New Revision: 39243 + +Added: +jcr/trunk/jackrabbit-impl/ +jcr/trunk/jackrabbit-impl/impl/ +jcr/trunk/jackrabbit-impl/impl/.classpath +jcr/trunk/jackrabbit-impl/impl/.project +jcr/trunk/jackrabbit-impl/impl/.settings/ +jcr/trunk/jackrabbit-impl/impl/.settings/org.eclipse.jdt.core.prefs +jcr/trunk/jackrabbit-impl/impl/pom.xml +jcr/trunk/jackrabbit-impl/impl/src/ +jcr/trunk/jackrabbit-impl/impl/src/bundle/ +jcr/trunk/jackrabbit-impl/impl/src/java/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/apache/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core/journal/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core/journal/SakaiDatabaseJournal.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/Preload.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/SakaiUserPrincipal.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/StartupAction.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRAnonymousPrincipal.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRRegistrationServiceImpl.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRServiceImpl.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRSystemPrincipal.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/NodeTypes.xml +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/RepositoryBuilder.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/RepositoryConfig.xml +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/SessionHolder.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/UnboundJCRServiceImpl.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/JCRSecurityServiceAdapterImpl.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiAccessManager.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiJCRCredentials.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiLoginModule.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiPersistanceManager.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiRepositoryStartup.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiUserPrincipalImpl.java +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/test.xml +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/preload/ +jcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/preload/Dumper.java +jcr/trunk/jackrabbit-impl/impl/src/test/ +jcr/trunk/jackrabbit-impl/impl/src/test/log4j.properties +jcr/trunk/jackrabbit-impl/impl/src/test/org/ +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/ +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/ +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/ +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/ExportDocViewTestData.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/LoadRepository.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/NodeTestData.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/PropertyTestData.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/QueryTestData.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/RepositoryConfig.xml +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/SakaiRepositoryStub.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/TestAll.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/TestNodeTypes.xml +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/ +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockComponentManager.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockFunctionManager.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSakaiAccessManager.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSakaiLoginModule.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSecurityService.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockServerConfiguratonService.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSqlService.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockTestUser.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockThreadLocalManager.java +jcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockUserDirectoryService.java +jcr/trunk/jackrabbit-impl/impl/src/test/repositoryStubImpl.properties +jcr/trunk/jackrabbit-impl/pack/ +jcr/trunk/jackrabbit-impl/pack/.project +jcr/trunk/jackrabbit-impl/pack/.settings/ +jcr/trunk/jackrabbit-impl/pack/.settings/org.eclipse.jdt.core.prefs +jcr/trunk/jackrabbit-impl/pack/pom.xml +jcr/trunk/jackrabbit-impl/pack/src/ +jcr/trunk/jackrabbit-impl/pack/src/webapp/ +jcr/trunk/jackrabbit-impl/pack/src/webapp/WEB-INF/ +jcr/trunk/jackrabbit-impl/pack/src/webapp/WEB-INF/components.xml +jcr/trunk/jackrabbit-impl/pack/src/webapp/WEB-INF/preloadcontent.xml +jcr/trunk/jackrabbit-impl/pom.xml +jcr/trunk/jcr-util/ +jcr/trunk/jcr-util/.classpath +jcr/trunk/jcr-util/.project +jcr/trunk/jcr-util/.settings/ +jcr/trunk/jcr-util/.settings/org.eclipse.jdt.core.prefs +jcr/trunk/jcr-util/pom.xml +jcr/trunk/jcr-util/project.xml +jcr/trunk/jcr-util/src/ +jcr/trunk/jcr-util/src/java/ +jcr/trunk/jcr-util/src/java/org/ +jcr/trunk/jcr-util/src/java/org/sakaiproject/ +jcr/trunk/jcr-util/src/java/org/sakaiproject/jcr/ +jcr/trunk/jcr-util/src/java/org/sakaiproject/jcr/util/ +jcr/trunk/jcr-util/src/java/org/sakaiproject/jcr/util/AdditionalNodeTypes.java +Modified: +jcr/trunk/jcr-api/api/src/java/org/sakaiproject/jcr/api/JCRService.java +jcr/trunk/pom.xml +Log: +SAK-12454 + +Merge of jackrabbit provider into trunk + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 18:00:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 18:00:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 18:00:12 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lBDN0AYG014604; + Thu, 13 Dec 2007 18:00:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4761B975.8A676.5055 ; + 13 Dec 2007 18:00:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 46A768405E; + Thu, 13 Dec 2007 23:00:04 +0000 (GMT) +Message-ID: <200712132251.lBDMpuY4010650@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293 + for ; + Thu, 13 Dec 2007 22:59:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 21AF6385FE + for ; Thu, 13 Dec 2007 22:59:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDMpujq010652 + for ; Thu, 13 Dec 2007 17:51:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDMpuY4010650 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 17:51:56 -0500 +Date: Thu, 13 Dec 2007 17:51:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39242 - sakai-mock/trunk/src/main/java/org/sakaiproject/mock/service +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 18:00:12 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39242 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 17:51:52 -0500 (Thu, 13 Dec 2007) +New Revision: 39242 + +Modified: +sakai-mock/trunk/src/main/java/org/sakaiproject/mock/service/SiteService.java +Log: +SAK-12324 + +Fixed build + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 13 16:57:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 16:57:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 16:57:53 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id lBDLvoLY011929; + Thu, 13 Dec 2007 16:57:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4761AAD9.ACB33.649 ; + 13 Dec 2007 16:57:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2A4929D0CC; + Thu, 13 Dec 2007 21:57:43 +0000 (GMT) +Message-ID: <200712132149.lBDLnexo010597@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 910 + for ; + Thu, 13 Dec 2007 21:57:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2C78D385CB + for ; Thu, 13 Dec 2007 21:57:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLneCw010599 + for ; Thu, 13 Dec 2007 16:49:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLnexo010597 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:49:40 -0500 +Date: Thu, 13 Dec 2007 16:49:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39241 - msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 16:57:53 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39241 + +Author: cwen@iupui.edu +Date: 2007-12-13 16:49:40 -0500 (Thu, 13 Dec 2007) +New Revision: 39241 + +Modified: +msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java +Log: +SAK-12433 => svn merge -r39215:39216 https://source.sakaiproject.org/svn/msgcntr/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Thu Dec 13 16:48:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 16:48:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 16:48:42 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lBDLmf8I029365; + Thu, 13 Dec 2007 16:48:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4761A8B2.E4EAF.20431 ; + 13 Dec 2007 16:48:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E51449D0CC; + Thu, 13 Dec 2007 21:48:37 +0000 (GMT) +Message-ID: <200712132140.lBDLeQc5010547@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 609 + for ; + Thu, 13 Dec 2007 21:48:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9CFAD385D3 + for ; Thu, 13 Dec 2007 21:48:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLeQr7010549 + for ; Thu, 13 Dec 2007 16:40:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLeQc5010547 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:40:26 -0500 +Date: Thu, 13 Dec 2007 16:40:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39240 - reference/trunk/docs/releaseweb +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 16:48:42 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39240 + +Author: arwhyte@umich.edu +Date: 2007-12-13 16:39:41 -0500 (Thu, 13 Dec 2007) +New Revision: 39240 + +Modified: +reference/trunk/docs/releaseweb/index.html +Log: +Prep for 2.5 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Thu Dec 13 16:47:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 16:47:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 16:47:25 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by faithful.mail.umich.edu () with ESMTP id lBDLlOtx021532; + Thu, 13 Dec 2007 16:47:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4761A863.42440.17819 ; + 13 Dec 2007 16:47:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2F1EC980F0; + Thu, 13 Dec 2007 21:47:18 +0000 (GMT) +Message-ID: <200712132138.lBDLcs4m010535@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 678 + for ; + Thu, 13 Dec 2007 21:46:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CF1E6385D3 + for ; Thu, 13 Dec 2007 21:46:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLcsOS010537 + for ; Thu, 13 Dec 2007 16:38:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLcs4m010535 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:38:54 -0500 +Date: Thu, 13 Dec 2007 16:38:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39239 - reference/trunk/docs/releaseweb/styles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 16:47:25 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39239 + +Author: arwhyte@umich.edu +Date: 2007-12-13 16:38:12 -0500 (Thu, 13 Dec 2007) +New Revision: 39239 + +Modified: +reference/trunk/docs/releaseweb/styles/stylesr.css +Log: +added style + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Thu Dec 13 16:41:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 16:41:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 16:41:21 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lBDLfKTk028447; + Thu, 13 Dec 2007 16:41:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4761A6FB.9463D.13982 ; + 13 Dec 2007 16:41:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EAD919D654; + Thu, 13 Dec 2007 21:41:07 +0000 (GMT) +Message-ID: <200712132132.lBDLWx1c010522@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 509 + for ; + Thu, 13 Dec 2007 21:40:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6F075385CF + for ; Thu, 13 Dec 2007 21:40:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLWxrB010524 + for ; Thu, 13 Dec 2007 16:32:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLWx1c010522 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:32:59 -0500 +Date: Thu, 13 Dec 2007 16:32:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r39238 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 16:41:21 2007 +X-DSPAM-Confidence: 0.8502 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39238 + +Author: ostermmg@whitman.edu +Date: 2007-12-13 16:32:56 -0500 (Thu, 13 Dec 2007) +New Revision: 39238 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +svn merge -c39208 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java + +svn log -r39208 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r39208 | jimeng@umich.edu | 2007-12-13 08:08:24 -0800 (Thu, 13 Dec 2007) | 3 lines + +SAK-10042 +File-count was being set to zero when quota was exceeded. It needs to be >1 to show the input form for uploading a file, and the input form needs to be there for the "add another" link to work. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 13 15:18:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 15:18:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 15:18:59 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id lBDKIwgA020793; + Thu, 13 Dec 2007 15:18:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 476193AA.8E3EE.30919 ; + 13 Dec 2007 15:18:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8431F9D768; + Thu, 13 Dec 2007 20:18:45 +0000 (GMT) +Message-ID: <200712132010.lBDKAVOe010336@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556 + for ; + Thu, 13 Dec 2007 20:18:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6974338492 + for ; Thu, 13 Dec 2007 20:18:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDKAVp4010338 + for ; Thu, 13 Dec 2007 15:10:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDKAVOe010336 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 15:10:31 -0500 +Date: Thu, 13 Dec 2007 15:10:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39233 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 15:18:59 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39233 + +Author: zqian@umich.edu +Date: 2007-12-13 15:10:29 -0500 (Thu, 13 Dec 2007) +New Revision: 39233 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +Fix to SAK-12422: Assignments upload all (grades.csv) does not handle DOS line breaks correctly + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 13 15:14:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 15:14:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 15:14:19 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by faithful.mail.umich.edu () with ESMTP id lBDKEIm7003992; + Thu, 13 Dec 2007 15:14:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47619293.F09EB.2396 ; + 13 Dec 2007 15:14:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E164A8098C; + Thu, 13 Dec 2007 20:14:08 +0000 (GMT) +Message-ID: <200712132005.lBDK5oMb010288@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 414 + for ; + Thu, 13 Dec 2007 20:13:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5469D3839F + for ; Thu, 13 Dec 2007 20:13:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDK5oPJ010290 + for ; Thu, 13 Dec 2007 15:05:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDK5oMb010288 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 15:05:50 -0500 +Date: Thu, 13 Dec 2007 15:05:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39229 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 15:14:19 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39229 + +Author: zqian@umich.edu +Date: 2007-12-13 15:05:48 -0500 (Thu, 13 Dec 2007) +New Revision: 39229 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12422: Assignments upload all (grades.csv) does not handle DOS line breaks correctly + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Dec 13 15:06:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 15:06:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 15:06:14 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id lBDK6EY1014581; + Thu, 13 Dec 2007 15:06:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 476190B1.2934E.25237 ; + 13 Dec 2007 15:06:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B1EBD9D4FF; + Thu, 13 Dec 2007 20:06:07 +0000 (GMT) +Message-ID: <200712131958.lBDJw0a7010214@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 174 + for ; + Thu, 13 Dec 2007 20:05:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 164EF3839F + for ; Thu, 13 Dec 2007 20:05:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJw0b3010216 + for ; Thu, 13 Dec 2007 14:58:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJw0a7010214 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:58:00 -0500 +Date: Thu, 13 Dec 2007 14:58:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39223 - content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 15:06:14 2007 +X-DSPAM-Confidence: 0.7004 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39223 + +Author: mmmay@indiana.edu +Date: 2007-12-13 14:57:58 -0500 (Thu, 13 Dec 2007) +New Revision: 39223 + +Modified: +content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +svn merge -r 39207:39208 https://source.sakaiproject.org/svn/content/trunk +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +in-143-196:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 39207:39208 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r39208 | jimeng@umich.edu | 2007-12-13 11:08:24 -0500 (Thu, 13 Dec 2007) | 3 lines + +SAK-10042 +File-count was being set to zero when quota was exceeded. It needs to be >1 to show the input form for uploading a file, and the input form needs to be there for the "add another" link to work. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Dec 13 14:59:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:59:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:59:52 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id lBDJxp2C028306; + Thu, 13 Dec 2007 14:59:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47618F26.CBA.12804 ; + 13 Dec 2007 14:59:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B22DC9D603; + Thu, 13 Dec 2007 19:49:33 +0000 (GMT) +Message-ID: <200712131951.lBDJpNf4010145@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 521 + for ; + Thu, 13 Dec 2007 19:49:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDAF938327 + for ; Thu, 13 Dec 2007 19:59:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJpNwF010147 + for ; Thu, 13 Dec 2007 14:51:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJpNf4010145 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:51:23 -0500 +Date: Thu, 13 Dec 2007 14:51:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39220 - portal/branches/sakai_2-5-x/portal-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:59:52 2007 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39220 + +Author: mmmay@indiana.edu +Date: 2007-12-13 14:51:22 -0500 (Thu, 13 Dec 2007) +New Revision: 39220 + +Modified: +portal/branches/sakai_2-5-x/portal-impl/impl/src/bundle/sitenav.properties +Log: +svn merge -r 39177:39178 https://source.sakaiproject.org/svn/portal/trunk +U portal-impl/impl/src/bundle/sitenav.properties +in-143-196:~/java/2-5/sakai_2-5-x/portal mmmay$ svn log -r 39177:39178 https://source.sakaiproject.org/svn/portal/trunk +------------------------------------------------------------------------ +r39177 | ian@caret.cam.ac.uk | 2007-12-13 04:46:48 -0500 (Thu, 13 Dec 2007) | 4 lines + +SAK-12112 +Patch Applied + + +------------------------------------------------------------------------ +r39178 | ian@caret.cam.ac.uk | 2007-12-13 04:48:42 -0500 (Thu, 13 Dec 2007) | 4 lines + +SAK-12273 +Patch applied + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Dec 13 14:58:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:58:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:58:54 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by brazil.mail.umich.edu () with ESMTP id lBDJwrRZ029980; + Thu, 13 Dec 2007 14:58:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47618EF3.C4578.9263 ; + 13 Dec 2007 14:58:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1E08F9D652; + Thu, 13 Dec 2007 19:48:37 +0000 (GMT) +Message-ID: <200712131950.lBDJoIOF010133@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26 + for ; + Thu, 13 Dec 2007 19:48:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 09F7138327 + for ; Thu, 13 Dec 2007 19:58:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJoJSJ010135 + for ; Thu, 13 Dec 2007 14:50:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJoIOF010133 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:50:19 -0500 +Date: Thu, 13 Dec 2007 14:50:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39219 - content/trunk/content-tool/tool/src/webapp/vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:58:54 2007 +X-DSPAM-Confidence: 0.8435 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39219 + +Author: gsilver@umich.edu +Date: 2007-12-13 14:50:17 -0500 (Thu, 13 Dec 2007) +New Revision: 39219 + +Modified: +content/trunk/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +Log: +SAK-12442 +http://jira.sakaiproject.org/jira/browse/SAK-12442 +- tweak the default sakadojo theme for resources actions + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Dec 13 14:58:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:58:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:58:46 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id lBDJwjQR007797; + Thu, 13 Dec 2007 14:58:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47618EF0.7DDAA.11360 ; + 13 Dec 2007 14:58:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0667D9D654; + Thu, 13 Dec 2007 19:48:36 +0000 (GMT) +Message-ID: <200712131950.lBDJoGAN010121@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 475 + for ; + Thu, 13 Dec 2007 19:48:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 772A038327 + for ; Thu, 13 Dec 2007 19:58:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJoGWF010123 + for ; Thu, 13 Dec 2007 14:50:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJoGAN010121 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:50:16 -0500 +Date: Thu, 13 Dec 2007 14:50:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r39218 - in reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo: . images +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:58:46 2007 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39218 + +Author: gsilver@umich.edu +Date: 2007-12-13 14:50:14 -0500 (Thu, 13 Dec 2007) +New Revision: 39218 + +Modified: +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css +Log: +SAK-12442 +http://jira.sakaiproject.org/jira/browse/SAK-12442 +- tweak the default sakadojo theme for resources actions + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Dec 13 14:58:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:58:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:58:26 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by chaos.mail.umich.edu () with ESMTP id lBDJwQM6012863; + Thu, 13 Dec 2007 14:58:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47618ED8.62903.25161 ; + 13 Dec 2007 14:58:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 278C29D605; + Thu, 13 Dec 2007 19:48:16 +0000 (GMT) +Message-ID: <200712131950.lBDJo6XC010109@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312 + for ; + Thu, 13 Dec 2007 19:47:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5745E38327 + for ; Thu, 13 Dec 2007 19:57:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJo69L010111 + for ; Thu, 13 Dec 2007 14:50:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJo6XC010109 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:50:06 -0500 +Date: Thu, 13 Dec 2007 14:50:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39217 - portal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:58:26 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39217 + +Author: mmmay@indiana.edu +Date: 2007-12-13 14:50:05 -0500 (Thu, 13 Dec 2007) +New Revision: 39217 + +Modified: +portal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts/portalscripts.js +Log: +svn merge -r 39176:39177 https://source.sakaiproject.org/svn/portal/trunk +U portal-charon/charon/src/webapp/scripts/portalscripts.js +in-143-196:~/java/2-5/sakai_2-5-x/portal mmmay$ svn log -r 39176:39177 https://source.sakaiproject.org/svn/portal/trunk +------------------------------------------------------------------------ +r39177 | ian@caret.cam.ac.uk | 2007-12-13 04:46:48 -0500 (Thu, 13 Dec 2007) | 4 lines + +SAK-12112 +Patch Applied + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Dec 13 14:58:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:58:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:58:10 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by godsend.mail.umich.edu () with ESMTP id lBDJw9vl003915; + Thu, 13 Dec 2007 14:58:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47618ECB.EE50A.24421 ; + 13 Dec 2007 14:58:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BB1B59D65D; + Thu, 13 Dec 2007 19:47:58 +0000 (GMT) +Message-ID: <200712131918.lBDJI68Z009927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 174 + for ; + Thu, 13 Dec 2007 19:47:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 59F9132ABE + for ; Thu, 13 Dec 2007 19:25:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJI6fR009929 + for ; Thu, 13 Dec 2007 14:18:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJI68Z009927 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:18:06 -0500 +Date: Thu, 13 Dec 2007 14:18:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39215 - reference/branches/sakai_2-5-x/licenses +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:58:10 2007 +X-DSPAM-Confidence: 0.7556 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39215 + +Author: mmmay@indiana.edu +Date: 2007-12-13 14:18:05 -0500 (Thu, 13 Dec 2007) +New Revision: 39215 + +Added: +reference/branches/sakai_2-5-x/licenses/jsr170-api.license.txt +Log: +vn merge -r 39213:39214 https://source.sakaiproject.org/svn/reference/trunk +A licenses/jsr170-api.license.txt SAK-1194 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 13 14:42:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:42:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:42:45 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lBDJgih0001236; + Thu, 13 Dec 2007 14:42:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47618B21.3ED4A.3413 ; + 13 Dec 2007 14:42:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2D33A9D5F3; + Thu, 13 Dec 2007 19:32:24 +0000 (GMT) +Message-ID: <200712131904.lBDJ4xJw009892@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 167 + for ; + Thu, 13 Dec 2007 19:31:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC20438499 + for ; Thu, 13 Dec 2007 19:12:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ4x64009894 + for ; Thu, 13 Dec 2007 14:05:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ4xJw009892 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:04:59 -0500 +Date: Thu, 13 Dec 2007 14:04:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39213 - in authz/trunk/authz-impl/impl/src/sql: hsqldb mssql mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:42:45 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39213 + +Author: zqian@umich.edu +Date: 2007-12-13 14:04:57 -0500 (Thu, 13 Dec 2007) +New Revision: 39213 + +Modified: +authz/trunk/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql +authz/trunk/authz-impl/impl/src/sql/mssql/sakai_realm.sql +authz/trunk/authz-impl/impl/src/sql/mysql/sakai_realm.sql +authz/trunk/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +set the .authz role in !user.template.maintain, !user.template.registered and !user.template.sample to have the newly added permission-site.add.course, see SAK-12324 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 13 14:41:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:41:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:41:44 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id lBDJfiiB000665; + Thu, 13 Dec 2007 14:41:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47618AEF.2E4F2.5241 ; + 13 Dec 2007 14:41:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6FC909D460; + Thu, 13 Dec 2007 19:31:25 +0000 (GMT) +Message-ID: <200712131902.lBDJ2Vc4009867@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339 + for ; + Thu, 13 Dec 2007 19:31:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9A1273848E + for ; Thu, 13 Dec 2007 19:10:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ2VEC009869 + for ; Thu, 13 Dec 2007 14:02:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ2Vc4009867 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:02:31 -0500 +Date: Thu, 13 Dec 2007 14:02:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39211 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:41:44 2007 +X-DSPAM-Confidence: 0.7608 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39211 + +Author: zqian@umich.edu +Date: 2007-12-13 14:02:28 -0500 (Thu, 13 Dec 2007) +New Revision: 39211 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm +Log: +merge in SAK-12324 fixes: +#38981 Thu Dec 06 03:19:40 MST 2007 david.horwitz@uct.ac.za SAK-12324 Modifications to site-manage +Files Changed +MODIFY /site-manage/branches/SAK-12324/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +MODIFY /site-manage/branches/SAK-12324/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Dec 13 14:41:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:41:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:41:38 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id lBDJfcIZ029695; + Thu, 13 Dec 2007 14:41:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47618ADA.4C4DC.11397 ; + 13 Dec 2007 14:41:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 86B169D52A; + Thu, 13 Dec 2007 19:31:11 +0000 (GMT) +Message-ID: <200712131906.lBDJ6iEK009904@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821 + for ; + Thu, 13 Dec 2007 19:30:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4C6273849B + for ; Thu, 13 Dec 2007 19:14:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ6iUL009906 + for ; Thu, 13 Dec 2007 14:06:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ6iEK009904 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:06:44 -0500 +Date: Thu, 13 Dec 2007 14:06:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39214 - reference/trunk/licenses +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:41:38 2007 +X-DSPAM-Confidence: 0.7563 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39214 + +Author: mmmay@indiana.edu +Date: 2007-12-13 14:06:43 -0500 (Thu, 13 Dec 2007) +New Revision: 39214 + +Added: +reference/trunk/licenses/jsr170-api.license.txt +Log: +add jsr170 license + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 13 14:41:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 14:41:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 14:41:24 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lBDJfNP2022184; + Thu, 13 Dec 2007 14:41:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47618AD4.83E7.32063 ; + 13 Dec 2007 14:41:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 97FB59D52D; + Thu, 13 Dec 2007 19:31:04 +0000 (GMT) +Message-ID: <200712131903.lBDJ3Pnc009880@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 380 + for ; + Thu, 13 Dec 2007 19:30:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 33BAC38496 + for ; Thu, 13 Dec 2007 19:11:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ3PWC009882 + for ; Thu, 13 Dec 2007 14:03:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ3Pnc009880 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:03:25 -0500 +Date: Thu, 13 Dec 2007 14:03:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39212 - in site/trunk: site-api/api/src/java/org/sakaiproject/site/api site-api/api/src/java/org/sakaiproject/site/cover site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 14:41:24 2007 +X-DSPAM-Confidence: 0.8511 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39212 + +Author: zqian@umich.edu +Date: 2007-12-13 14:03:22 -0500 (Thu, 13 Dec 2007) +New Revision: 39212 + +Modified: +site/trunk/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/trunk/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +merge in SAK-12324 fixes into trunk: + +#39019 Fri Dec 07 00:55:01 MST 2007 david.horwitz@uct.ac.za SAK-12324 Modify site +Files Changed +MODIFY /site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +MODIFY /site/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +MODIFY /site/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java + +#39020 Fri Dec 07 02:53:25 MST 2007 david.horwitz@uct.ac.za SAK-12324 add the course site logic to allowAddCourseSite(id) +Files Changed +MODIFY /site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Dec 13 11:57:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 11:57:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 11:57:10 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by chaos.mail.umich.edu () with ESMTP id lBDGv9RB009616; + Thu, 13 Dec 2007 11:57:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4761645E.18068.7561 ; + 13 Dec 2007 11:57:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2C19E81C39; + Thu, 13 Dec 2007 16:56:59 +0000 (GMT) +Message-ID: <200712131648.lBDGmwAQ009628@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 544 + for ; + Thu, 13 Dec 2007 16:56:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3C87E382EF + for ; Thu, 13 Dec 2007 16:56:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDGmwLV009630 + for ; Thu, 13 Dec 2007 11:48:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDGmwAQ009628 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 11:48:58 -0500 +Date: Thu, 13 Dec 2007 11:48:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39210 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 11:57:10 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39210 + +Author: dlhaines@umich.edu +Date: 2007-12-13 11:48:56 -0500 (Thu, 13 Dec 2007) +New Revision: 39210 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update for assignments source location typo 2.4.xQ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Dec 13 11:51:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 11:51:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 11:51:42 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lBDGpfRV006349; + Thu, 13 Dec 2007 11:51:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47616318.47F92.1615 ; + 13 Dec 2007 11:51:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F50E9D256; + Thu, 13 Dec 2007 16:51:35 +0000 (GMT) +Message-ID: <200712131643.lBDGhToF009605@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 723 + for ; + Thu, 13 Dec 2007 16:51:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 10513382F1 + for ; Thu, 13 Dec 2007 16:51:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDGhT8H009607 + for ; Thu, 13 Dec 2007 11:43:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDGhToF009605 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 11:43:29 -0500 +Date: Thu, 13 Dec 2007 11:43:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39209 - sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 11:51:42 2007 +X-DSPAM-Confidence: 0.8427 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39209 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-12-13 11:43:19 -0500 (Thu, 13 Dec 2007) +New Revision: 39209 + +Modified: +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +Log: +SAK-12065 Group release bug fixes + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Dec 13 11:16:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 11:16:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 11:16:40 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by godsend.mail.umich.edu () with ESMTP id lBDGGdxB010443; + Thu, 13 Dec 2007 11:16:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47615ADC.E457A.28407 ; + 13 Dec 2007 11:16:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D020B650F8; + Thu, 13 Dec 2007 16:16:26 +0000 (GMT) +Message-ID: <200712131608.lBDG8PeA009396@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 232 + for ; + Thu, 13 Dec 2007 16:16:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 34478382D8 + for ; Thu, 13 Dec 2007 16:16:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDG8PIE009398 + for ; Thu, 13 Dec 2007 11:08:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDG8PeA009396 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 11:08:25 -0500 +Date: Thu, 13 Dec 2007 11:08:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39208 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 11:16:40 2007 +X-DSPAM-Confidence: 0.9865 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39208 + +Author: jimeng@umich.edu +Date: 2007-12-13 11:08:24 -0500 (Thu, 13 Dec 2007) +New Revision: 39208 + +Modified: +content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-10042 +File-count was being set to zero when quota was exceeded. It needs to be >1 to show the input form for uploading a file, and the input form needs to be there for the "add another" link to work. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Thu Dec 13 10:54:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:54:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:54:45 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id lBDFsjNt025358; + Thu, 13 Dec 2007 10:54:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 476155B7.85E26.31499 ; + 13 Dec 2007 10:54:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AB6AF9D110; + Thu, 13 Dec 2007 15:51:30 +0000 (GMT) +Message-ID: <200712131546.lBDFkSNf009370@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 404 + for ; + Thu, 13 Dec 2007 15:51:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 83A9F37ACD + for ; Thu, 13 Dec 2007 15:54:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFkSt9009372 + for ; Thu, 13 Dec 2007 10:46:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFkSNf009370 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:46:28 -0500 +Date: Thu, 13 Dec 2007 10:46:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39207 - in gradebook/trunk/app/ui/src/webapp: . inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:54:45 2007 +X-DSPAM-Confidence: 0.9800 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39207 + +Author: josrodri@iupui.edu +Date: 2007-12-13 10:46:27 -0500 (Thu, 13 Dec 2007) +New Revision: 39207 + +Modified: +gradebook/trunk/app/ui/src/webapp/addAssignment.jsp +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +Log: +SAK-12444, SAK-12287: Redid styling + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:39:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:39:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:39:01 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by casino.mail.umich.edu () with ESMTP id lBDFd0xq019973; + Thu, 13 Dec 2007 10:39:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4761520E.354C8.24668 ; + 13 Dec 2007 10:38:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DC39E9D0DB; + Thu, 13 Dec 2007 15:35:53 +0000 (GMT) +Message-ID: <200712131530.lBDFUb94009352@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 503 + for ; + Thu, 13 Dec 2007 15:35:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 47FBA37E45 + for ; Thu, 13 Dec 2007 15:38:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFUbVR009354 + for ; Thu, 13 Dec 2007 10:30:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFUb94009352 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:30:37 -0500 +Date: Thu, 13 Dec 2007 10:30:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39206 - in site-manage/trunk: pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle site-manage-impl/impl/src/bundle site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:39:01 2007 +X-DSPAM-Confidence: 0.9763 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39206 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:30:17 -0500 (Thu, 13 Dec 2007) +New Revision: 39206 + +Added: +site-manage/trunk/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_pt_PT.properties +site-manage/trunk/site-manage-impl/impl/src/bundle/SectionFields_pt_PT.properties +site-manage/trunk/site-manage-tool/tool/src/bundle/membership_pt_PT.properties +site-manage/trunk/site-manage-tool/tool/src/bundle/sitebrowser_pt_PT.properties +site-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:37:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:37:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:37:37 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by casino.mail.umich.edu () with ESMTP id lBDFbbpk019336; + Thu, 13 Dec 2007 10:37:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476151BA.BFA78.20820 ; + 13 Dec 2007 10:37:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DB33C5EF5E; + Thu, 13 Dec 2007 15:34:03 +0000 (GMT) +Message-ID: <200712131529.lBDFTGXV009340@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356 + for ; + Thu, 13 Dec 2007 15:33:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 27D8F37E3A + for ; Thu, 13 Dec 2007 15:37:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFTGtP009342 + for ; Thu, 13 Dec 2007 10:29:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFTGXV009340 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:29:16 -0500 +Date: Thu, 13 Dec 2007 10:29:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39205 - in rwiki/trunk: rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle rwiki-util/radeox/src/bundle rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:37:37 2007 +X-DSPAM-Confidence: 0.8393 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39205 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:28:50 -0500 (Thu, 13 Dec 2007) +New Revision: 39205 + +Added: +rwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_pt_PT.properties +rwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_pt_PT.properties +rwiki/trunk/rwiki-util/radeox/src/bundle/radeox_messages_pt_PT.properties +rwiki/trunk/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:36:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:36:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:36:26 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by awakenings.mail.umich.edu () with ESMTP id lBDFaPtC012426; + Thu, 13 Dec 2007 10:36:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47615171.4D0B9.5693 ; + 13 Dec 2007 10:36:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 359159D0ED; + Thu, 13 Dec 2007 15:32:44 +0000 (GMT) +Message-ID: <200712131527.lBDFRa00009328@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 739 + for ; + Thu, 13 Dec 2007 15:32:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C449337E3A + for ; Thu, 13 Dec 2007 15:35:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFRa5V009330 + for ; Thu, 13 Dec 2007 10:27:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFRa00009328 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:27:36 -0500 +Date: Thu, 13 Dec 2007 10:27:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39204 - velocity/trunk/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:36:26 2007 +X-DSPAM-Confidence: 0.9770 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39204 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:27:30 -0500 (Thu, 13 Dec 2007) +New Revision: 39204 + +Added: +velocity/trunk/tool/src/bundle/velocity-tool_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:36:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:36:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:36:20 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by fan.mail.umich.edu () with ESMTP id lBDFaJdH023874; + Thu, 13 Dec 2007 10:36:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4761513F.3552C.11923 ; + 13 Dec 2007 10:35:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 82C359D0E4; + Thu, 13 Dec 2007 15:32:11 +0000 (GMT) +Message-ID: <200712131526.lBDFQv3u009316@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 586 + for ; + Thu, 13 Dec 2007 15:31:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DD0AC37E3A + for ; Thu, 13 Dec 2007 15:34:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFQvKG009318 + for ; Thu, 13 Dec 2007 10:26:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFQv3u009316 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:26:57 -0500 +Date: Thu, 13 Dec 2007 10:26:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39203 - usermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:36:20 2007 +X-DSPAM-Confidence: 0.9736 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39203 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:26:52 -0500 (Thu, 13 Dec 2007) +New Revision: 39203 + +Modified: +usermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:34:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:34:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:34:51 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lBDFYmve015155; + Thu, 13 Dec 2007 10:34:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47615113.5EBAE.31078 ; + 13 Dec 2007 10:34:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 716AA9D0D6; + Thu, 13 Dec 2007 15:31:41 +0000 (GMT) +Message-ID: <200712131526.lBDFQSiV009304@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611 + for ; + Thu, 13 Dec 2007 15:31:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7B87537E3A + for ; Thu, 13 Dec 2007 15:34:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFQSAa009306 + for ; Thu, 13 Dec 2007 10:26:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFQSiV009304 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:26:28 -0500 +Date: Thu, 13 Dec 2007 10:26:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39202 - search/trunk/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:34:51 2007 +X-DSPAM-Confidence: 0.9760 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39202 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:26:22 -0500 (Thu, 13 Dec 2007) +New Revision: 39202 + +Added: +search/trunk/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:34:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:34:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:34:12 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by mission.mail.umich.edu () with ESMTP id lBDFYAHZ016527; + Thu, 13 Dec 2007 10:34:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 476150E9.CDECF.12146 ; + 13 Dec 2007 10:34:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 607209D0DE; + Thu, 13 Dec 2007 15:31:10 +0000 (GMT) +Message-ID: <200712131525.lBDFPJGJ009292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 705 + for ; + Thu, 13 Dec 2007 15:30:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0131137E3A + for ; Thu, 13 Dec 2007 15:33:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFPJlO009294 + for ; Thu, 13 Dec 2007 10:25:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFPJGJ009292 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:25:19 -0500 +Date: Thu, 13 Dec 2007 10:25:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39201 - roster/trunk/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:34:12 2007 +X-DSPAM-Confidence: 0.9761 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39201 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:25:14 -0500 (Thu, 13 Dec 2007) +New Revision: 39201 + +Added: +roster/trunk/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:32:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:32:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:32:51 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by panther.mail.umich.edu () with ESMTP id lBDFWoj6032659; + Thu, 13 Dec 2007 10:32:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47615097.4585A.7935 ; + 13 Dec 2007 10:32:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A8A819D0D1; + Thu, 13 Dec 2007 15:30:34 +0000 (GMT) +Message-ID: <200712131524.lBDFOCPo009268@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973 + for ; + Thu, 13 Dec 2007 15:30:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EFAF237E3A + for ; Thu, 13 Dec 2007 15:31:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFOChb009270 + for ; Thu, 13 Dec 2007 10:24:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFOCPo009268 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:24:12 -0500 +Date: Thu, 13 Dec 2007 10:24:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39200 - in content/trunk: content-bundles content-impl/impl/src/bundle content-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:32:51 2007 +X-DSPAM-Confidence: 0.9790 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39200 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:23:57 -0500 (Thu, 13 Dec 2007) +New Revision: 39200 + +Added: +content/trunk/content-bundles/content_pt_PT.properties +content/trunk/content-bundles/types_pt_PT.properties +content/trunk/content-impl/impl/src/bundle/siteemacon_pt_PT.properties +content/trunk/content-tool/tool/src/bundle/helper_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:32:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:32:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:32:29 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by sleepers.mail.umich.edu () with ESMTP id lBDFWSA3010849; + Thu, 13 Dec 2007 10:32:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47615085.443B2.3114 ; + 13 Dec 2007 10:32:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CD1B09D0D0; + Thu, 13 Dec 2007 15:30:24 +0000 (GMT) +Message-ID: <200712131522.lBDFMcOk009253@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 224 + for ; + Thu, 13 Dec 2007 15:30:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ED01B37E3B + for ; Thu, 13 Dec 2007 15:30:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFMc32009255 + for ; Thu, 13 Dec 2007 10:22:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFMcOk009253 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:22:38 -0500 +Date: Thu, 13 Dec 2007 10:22:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39199 - citations/trunk/citations-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:32:29 2007 +X-DSPAM-Confidence: 0.9757 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39199 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:22:32 -0500 (Thu, 13 Dec 2007) +New Revision: 39199 + +Added: +citations/trunk/citations-util/util/src/bundle/citations_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:29:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:29:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:29:39 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by godsend.mail.umich.edu () with ESMTP id lBDFTc2Y018361; + Thu, 13 Dec 2007 10:29:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47614FDB.313EB.30099 ; + 13 Dec 2007 10:29:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1381655593; + Thu, 13 Dec 2007 15:26:45 +0000 (GMT) +Message-ID: <200712131518.lBDFIhNd009199@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 466 + for ; + Thu, 13 Dec 2007 15:26:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 19D3137D27 + for ; Thu, 13 Dec 2007 15:26:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFIh8m009201 + for ; Thu, 13 Dec 2007 10:18:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFIhNd009199 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:18:43 -0500 +Date: Thu, 13 Dec 2007 10:18:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39198 - presence/trunk/presence-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:29:39 2007 +X-DSPAM-Confidence: 0.9765 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39198 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:18:38 -0500 (Thu, 13 Dec 2007) +New Revision: 39198 + +Added: +presence/trunk/presence-tool/tool/src/bundle/admin_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:25:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:25:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:25:37 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by flawless.mail.umich.edu () with ESMTP id lBDFPahD019491; + Thu, 13 Dec 2007 10:25:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47614EEA.38545.20994 ; + 13 Dec 2007 10:25:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 184B89D09B; + Thu, 13 Dec 2007 15:25:28 +0000 (GMT) +Message-ID: <200712131517.lBDFHSsX009187@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 5 + for ; + Thu, 13 Dec 2007 15:25:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 74C1D37D27 + for ; Thu, 13 Dec 2007 15:25:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFHSo6009189 + for ; Thu, 13 Dec 2007 10:17:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFHSsX009187 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:17:28 -0500 +Date: Thu, 13 Dec 2007 10:17:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39197 - user/trunk/user-tool-prefs/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:25:37 2007 +X-DSPAM-Confidence: 0.9783 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39197 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:17:22 -0500 (Thu, 13 Dec 2007) +New Revision: 39197 + +Added: +user/trunk/user-tool-prefs/tool/src/bundle/user-tool-prefs_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:25:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:25:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:25:18 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by casino.mail.umich.edu () with ESMTP id lBDFPHLt012352; + Thu, 13 Dec 2007 10:25:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47614EC5.B3B3C.26887 ; + 13 Dec 2007 10:24:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8A61C9D0B4; + Thu, 13 Dec 2007 15:24:50 +0000 (GMT) +Message-ID: <200712131516.lBDFGmLN009175@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 384 + for ; + Thu, 13 Dec 2007 15:24:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7971137D27 + for ; Thu, 13 Dec 2007 15:24:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFGm6h009177 + for ; Thu, 13 Dec 2007 10:16:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFGmLN009175 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:16:48 -0500 +Date: Thu, 13 Dec 2007 10:16:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39196 - in login/trunk: login-authn-tool/tool/src/bundle login-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:25:18 2007 +X-DSPAM-Confidence: 0.9733 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39196 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:16:36 -0500 (Thu, 13 Dec 2007) +New Revision: 39196 + +Added: +login/trunk/login-authn-tool/tool/src/bundle/sitenav_pt_PT.properties +login/trunk/login-tool/tool/src/bundle/auth_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:22:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:22:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:22:57 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lBDFMuTM006229; + Thu, 13 Dec 2007 10:22:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47614E4B.ACB7F.15398 ; + 13 Dec 2007 10:22:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A6DE9C627; + Thu, 13 Dec 2007 15:22:49 +0000 (GMT) +Message-ID: <200712131514.lBDFEkFs009163@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 847 + for ; + Thu, 13 Dec 2007 15:22:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EC08B37E3B + for ; Thu, 13 Dec 2007 15:22:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFEk0T009165 + for ; Thu, 13 Dec 2007 10:14:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFEkFs009163 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:14:46 -0500 +Date: Thu, 13 Dec 2007 10:14:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39195 - in portal/trunk: portal-impl/impl/src/bundle portal-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:22:57 2007 +X-DSPAM-Confidence: 0.7536 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39195 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:14:32 -0500 (Thu, 13 Dec 2007) +New Revision: 39195 + +Added: +portal/trunk/portal-impl/impl/src/bundle/sitenav_pt_PT.properties +portal/trunk/portal-util/util/src/bundle/portal-util_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:19:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:19:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:19:22 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by godsend.mail.umich.edu () with ESMTP id lBDFJMfg013171; + Thu, 13 Dec 2007 10:19:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47614D5A.7144.4668 ; + 13 Dec 2007 10:18:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4DAF19D095; + Thu, 13 Dec 2007 15:18:50 +0000 (GMT) +Message-ID: <200712131510.lBDFAkP7009151@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 648 + for ; + Thu, 13 Dec 2007 15:18:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DB2FD37E28 + for ; Thu, 13 Dec 2007 15:18:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFAkDH009153 + for ; Thu, 13 Dec 2007 10:10:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFAkP7009151 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:10:46 -0500 +Date: Thu, 13 Dec 2007 10:10:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39194 - message/trunk/message-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:19:22 2007 +X-DSPAM-Confidence: 0.9735 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39194 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:10:40 -0500 (Thu, 13 Dec 2007) +New Revision: 39194 + +Added: +message/trunk/message-tool/tool/src/bundle/recent_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:18:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:18:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:18:18 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by chaos.mail.umich.edu () with ESMTP id lBDFIH6l021568; + Thu, 13 Dec 2007 10:18:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47614D2F.69829.14563 ; + 13 Dec 2007 10:18:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 36F7F9D090; + Thu, 13 Dec 2007 15:18:06 +0000 (GMT) +Message-ID: <200712131510.lBDFA5Ao009139@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619 + for ; + Thu, 13 Dec 2007 15:17:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6823037E28 + for ; Thu, 13 Dec 2007 15:17:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFA6ZJ009141 + for ; Thu, 13 Dec 2007 10:10:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFA5Ao009139 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:10:05 -0500 +Date: Thu, 13 Dec 2007 10:10:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39193 - msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:18:18 2007 +X-DSPAM-Confidence: 0.9721 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39193 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:10:00 -0500 (Thu, 13 Dec 2007) +New Revision: 39193 + +Added: +msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:17:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:17:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:17:40 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by chaos.mail.umich.edu () with ESMTP id lBDFHddk021256; + Thu, 13 Dec 2007 10:17:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47614CFD.5EF37.14639 ; + 13 Dec 2007 10:17:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B58D79D091; + Thu, 13 Dec 2007 15:17:17 +0000 (GMT) +Message-ID: <200712131509.lBDF9HhW009127@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 235 + for ; + Thu, 13 Dec 2007 15:17:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1169837E28 + for ; Thu, 13 Dec 2007 15:17:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF9HSf009129 + for ; Thu, 13 Dec 2007 10:09:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF9HhW009127 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:09:17 -0500 +Date: Thu, 13 Dec 2007 10:09:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39192 - in mailarchive/trunk: mailarchive-impl/impl/src/bundle mailarchive-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:17:40 2007 +X-DSPAM-Confidence: 0.8415 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39192 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:09:06 -0500 (Thu, 13 Dec 2007) +New Revision: 39192 + +Added: +mailarchive/trunk/mailarchive-impl/impl/src/bundle/siteemaanc_pt_PT.properties +mailarchive/trunk/mailarchive-tool/tool/src/bundle/email_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:16:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:16:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:16:29 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lBDFGSVA013958; + Thu, 13 Dec 2007 10:16:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47614CC4.E834A.26752 ; + 13 Dec 2007 10:16:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B7129D088; + Thu, 13 Dec 2007 15:16:21 +0000 (GMT) +Message-ID: <200712131508.lBDF8Fpp009115@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 311 + for ; + Thu, 13 Dec 2007 15:16:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EC83B37E2A + for ; Thu, 13 Dec 2007 15:16:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF8FQk009117 + for ; Thu, 13 Dec 2007 10:08:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF8Fpp009115 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:08:15 -0500 +Date: Thu, 13 Dec 2007 10:08:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39191 - email/trunk/email-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:16:29 2007 +X-DSPAM-Confidence: 0.9738 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39191 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:08:10 -0500 (Thu, 13 Dec 2007) +New Revision: 39191 + +Added: +email/trunk/email-impl/impl/src/bundle/email-impl_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:15:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:15:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:15:36 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id lBDFFZL4007271; + Thu, 13 Dec 2007 10:15:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47614C8E.2D8E.25482 ; + 13 Dec 2007 10:15:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2DBBD5FD67; + Thu, 13 Dec 2007 15:15:26 +0000 (GMT) +Message-ID: <200712131507.lBDF7KAP009103@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 723 + for ; + Thu, 13 Dec 2007 15:15:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6544D37E28 + for ; Thu, 13 Dec 2007 15:15:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF7LZM009105 + for ; Thu, 13 Dec 2007 10:07:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF7KAP009103 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:07:21 -0500 +Date: Thu, 13 Dec 2007 10:07:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39190 - in chat/trunk: chat-impl/impl/src/bundle chat-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:15:36 2007 +X-DSPAM-Confidence: 0.9748 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39190 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:07:09 -0500 (Thu, 13 Dec 2007) +New Revision: 39190 + +Added: +chat/trunk/chat-impl/impl/src/bundle/chat_pt_PT.properties +chat/trunk/chat-tool/tool/src/bundle/chat_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:14:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:14:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:14:34 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by awakenings.mail.umich.edu () with ESMTP id lBDFEXOG001357; + Thu, 13 Dec 2007 10:14:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47614C53.ECA5B.22664 ; + 13 Dec 2007 10:14:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33AE89D05E; + Thu, 13 Dec 2007 15:14:28 +0000 (GMT) +Message-ID: <200712131506.lBDF6LTv009091@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 797 + for ; + Thu, 13 Dec 2007 15:14:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 57C1937E28 + for ; Thu, 13 Dec 2007 15:14:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF6MkO009093 + for ; Thu, 13 Dec 2007 10:06:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF6LTv009091 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:06:22 -0500 +Date: Thu, 13 Dec 2007 10:06:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39189 - in calendar/trunk: calendar-impl/impl/src/bundle calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:14:34 2007 +X-DSPAM-Confidence: 0.8416 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39189 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:06:04 -0500 (Thu, 13 Dec 2007) +New Revision: 39189 + +Added: +calendar/trunk/calendar-impl/impl/src/bundle/calendarimpl_pt_PT.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_pt_PT.properties +calendar/trunk/calendar-tool/tool/src/bundle/calendar_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:12:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:12:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:12:36 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by godsend.mail.umich.edu () with ESMTP id lBDFCZ25009018; + Thu, 13 Dec 2007 10:12:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47614BDE.952AD.2445 ; + 13 Dec 2007 10:12:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 839A98C0BB; + Thu, 13 Dec 2007 15:12:28 +0000 (GMT) +Message-ID: <200712131504.lBDF4NTo009079@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 46 + for ; + Thu, 13 Dec 2007 15:12:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 376BC37E2F + for ; Thu, 13 Dec 2007 15:12:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF4NG9009081 + for ; Thu, 13 Dec 2007 10:04:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF4NTo009079 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:04:23 -0500 +Date: Thu, 13 Dec 2007 10:04:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39188 - blog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:12:36 2007 +X-DSPAM-Confidence: 0.9770 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39188 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:04:18 -0500 (Thu, 13 Dec 2007) +New Revision: 39188 + +Added: +blog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:10:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:10:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:10:00 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lBDF9wM9031304; + Thu, 13 Dec 2007 10:09:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47614B37.32F62.30303 ; + 13 Dec 2007 10:09:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 79CBA5E783; + Thu, 13 Dec 2007 15:09:42 +0000 (GMT) +Message-ID: <200712131501.lBDF1ftp009066@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 894 + for ; + Thu, 13 Dec 2007 15:09:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8421737E2D + for ; Thu, 13 Dec 2007 15:09:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF1fL1009068 + for ; Thu, 13 Dec 2007 10:01:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF1ftp009066 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:01:41 -0500 +Date: Thu, 13 Dec 2007 10:01:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39187 - in announcement/trunk: announcement-impl/impl/src/bundle announcement-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:10:00 2007 +X-DSPAM-Confidence: 0.9741 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39187 + +Author: nuno@ufp.pt +Date: 2007-12-13 10:01:28 -0500 (Thu, 13 Dec 2007) +New Revision: 39187 + +Added: +announcement/trunk/announcement-impl/impl/src/bundle/annc-access_pt_PT.properties +announcement/trunk/announcement-impl/impl/src/bundle/siteemaanc_pt_PT.properties +announcement/trunk/announcement-tool/tool/src/bundle/announcement_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Thu Dec 13 10:08:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 10:08:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 10:08:29 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id lBDF8Pp6031856; + Thu, 13 Dec 2007 10:08:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47614ADA.94EC1.11261 ; + 13 Dec 2007 10:08:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4663B65E53; + Thu, 13 Dec 2007 15:08:05 +0000 (GMT) +Message-ID: <200712131500.lBDF02av009052@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971 + for ; + Thu, 13 Dec 2007 15:07:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 00D8637E2D + for ; Thu, 13 Dec 2007 15:07:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF02f1009054 + for ; Thu, 13 Dec 2007 10:00:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF02av009052 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:00:02 -0500 +Date: Thu, 13 Dec 2007 10:00:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r39186 - access/trunk/access-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 10:08:29 2007 +X-DSPAM-Confidence: 0.9786 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39186 + +Author: nuno@ufp.pt +Date: 2007-12-13 09:59:56 -0500 (Thu, 13 Dec 2007) +New Revision: 39186 + +Added: +access/trunk/access-impl/impl/src/bundle/access_pt_PT.properties +Log: +SAK-12044: Add Portuguese translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Dec 13 09:38:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 09:38:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 09:38:02 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by chaos.mail.umich.edu () with ESMTP id lBDEc2fU001122; + Thu, 13 Dec 2007 09:38:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476143C4.9D898.7770 ; + 13 Dec 2007 09:37:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BDD949C708; + Thu, 13 Dec 2007 14:37:52 +0000 (GMT) +Message-ID: <200712131429.lBDETktR008990@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 626 + for ; + Thu, 13 Dec 2007 14:37:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A863E37DF8 + for ; Thu, 13 Dec 2007 14:37:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDETk4B008992 + for ; Thu, 13 Dec 2007 09:29:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDETktR008990 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:29:46 -0500 +Date: Thu, 13 Dec 2007 09:29:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39185 - gradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 09:38:02 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39185 + +Author: wagnermr@iupui.edu +Date: 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007) +New Revision: 39185 + +Modified: +gradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +Log: +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz +fixed class cast exception + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 13 09:35:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 09:35:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 09:35:47 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by score.mail.umich.edu () with ESMTP id lBDEZk9p018508; + Thu, 13 Dec 2007 09:35:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4761433B.7A4E3.16428 ; + 13 Dec 2007 09:35:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7BC589B820; + Thu, 13 Dec 2007 14:35:38 +0000 (GMT) +Message-ID: <200712131427.lBDERPYg008971@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 60 + for ; + Thu, 13 Dec 2007 14:35:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 27A1E37DF8 + for ; Thu, 13 Dec 2007 14:35:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDERPQC008973 + for ; Thu, 13 Dec 2007 09:27:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDERPYg008971 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:27:25 -0500 +Date: Thu, 13 Dec 2007 09:27:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39184 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 09:35:47 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39184 + +Author: cwen@iupui.edu +Date: 2007-12-13 09:27:24 -0500 (Thu, 13 Dec 2007) +New Revision: 39184 + +Modified: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css +Log: +merge r39165 for role swapping. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 09:26:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 09:26:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 09:26:02 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lBDEQ2HJ017997; + Thu, 13 Dec 2007 09:26:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476140DF.C6B95.26098 ; + 13 Dec 2007 09:25:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8377A9D007; + Thu, 13 Dec 2007 14:25:21 +0000 (GMT) +Message-ID: <200712131417.lBDEHG6Z008957@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 581 + for ; + Thu, 13 Dec 2007 14:24:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2FF1C37ADF + for ; Thu, 13 Dec 2007 14:25:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDEHGt9008959 + for ; Thu, 13 Dec 2007 09:17:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDEHG6Z008957 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:17:16 -0500 +Date: Thu, 13 Dec 2007 09:17:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39183 - search/trunk/search-tool/tool/src/webapp/scripts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 09:26:02 2007 +X-DSPAM-Confidence: 0.8503 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39183 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 09:17:13 -0500 (Thu, 13 Dec 2007) +New Revision: 39183 + +Modified: +search/trunk/search-tool/tool/src/webapp/scripts/search.js +Log: +Reverted the Following Revision on SAK-11014 + + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=36859 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-15 13:16:59 -0400 (Mon, 15 Oct 2007) +New Revision: 36859 + +Modified: +search/trunk/search-tool/tool/src/webapp/scripts/search.js +Log: +http://jira.sakaiproject.org/jira/browse/SAK-11014 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 09:21:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 09:21:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 09:21:54 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by sleepers.mail.umich.edu () with ESMTP id lBDELr47004725; + Thu, 13 Dec 2007 09:21:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47613FFA.56380.23497 ; + 13 Dec 2007 09:21:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B2F589CE1A; + Thu, 13 Dec 2007 14:21:34 +0000 (GMT) +Message-ID: <200712131413.lBDEDWnq008927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 735 + for ; + Thu, 13 Dec 2007 14:21:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5354437D22 + for ; Thu, 13 Dec 2007 14:21:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDEDXnc008929 + for ; Thu, 13 Dec 2007 09:13:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDEDWnq008927 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:13:32 -0500 +Date: Thu, 13 Dec 2007 09:13:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39182 - reference/trunk/library/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 09:21:54 2007 +X-DSPAM-Confidence: 0.9739 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39182 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 09:13:29 -0500 (Thu, 13 Dec 2007) +New Revision: 39182 + +Modified: +reference/trunk/library/src/webapp/js/headscripts.js +Log: +SAK-11014 +Reverted, + +The orriginal commit which didnt get into jira is +http://source.sakaiproject.org/viewsvn/?view=rev&rev=36843 + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Dec 13 08:53:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 08:53:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 08:53:01 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id lBDDr0PF002129; + Thu, 13 Dec 2007 08:53:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47613937.1614A.23012 ; + 13 Dec 2007 08:52:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2C43C9CE6A; + Thu, 13 Dec 2007 13:52:59 +0000 (GMT) +Message-ID: <200712131344.lBDDigtL008890@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467 + for ; + Thu, 13 Dec 2007 13:52:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5A11F37D20 + for ; Thu, 13 Dec 2007 13:52:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDDigPJ008892 + for ; Thu, 13 Dec 2007 08:44:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDDigtL008890 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 08:44:42 -0500 +Date: Thu, 13 Dec 2007 08:44:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39181 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/authz samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 08:53:01 2007 +X-DSPAM-Confidence: 0.8441 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39181 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-12-13 08:44:03 -0500 (Thu, 13 Dec 2007) +New Revision: 39181 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/authz/AuthorizationBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +Log: +SAK-12065 Group Release Bug Fixes (Partial) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Thu Dec 13 08:44:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 08:44:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 08:44:32 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by brazil.mail.umich.edu () with ESMTP id lBDDiVwG005139; + Thu, 13 Dec 2007 08:44:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4761373A.13D5C.28947 ; + 13 Dec 2007 08:44:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 97ED89CF5F; + Thu, 13 Dec 2007 13:44:29 +0000 (GMT) +Message-ID: <200712131336.lBDDaKM8008862@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 52 + for ; + Thu, 13 Dec 2007 13:44:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D9047325DE + for ; Thu, 13 Dec 2007 13:44:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDDaKI7008864 + for ; Thu, 13 Dec 2007 08:36:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDDaKM8008862 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 08:36:20 -0500 +Date: Thu, 13 Dec 2007 08:36:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r39180 - webservices/branches/sakai_2-4-x/axis/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 08:44:32 2007 +X-DSPAM-Confidence: 0.9784 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39180 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-13 08:36:19 -0500 (Thu, 13 Dec 2007) +New Revision: 39180 + +Modified: +webservices/branches/sakai_2-4-x/axis/src/webapp/SakaiPortalLogin.jws +Log: +SAK-9868 Remove cleartext printing of passwords to catalina.out + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Dec 13 08:40:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 08:40:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 08:40:47 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by faithful.mail.umich.edu () with ESMTP id lBDDek9u023095; + Thu, 13 Dec 2007 08:40:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47613659.84181.16312 ; + 13 Dec 2007 08:40:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D67649CF01; + Thu, 13 Dec 2007 13:40:43 +0000 (GMT) +Message-ID: <200712131332.lBDDWZBR008839@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 328 + for ; + Thu, 13 Dec 2007 13:40:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 64BF8372A0 + for ; Thu, 13 Dec 2007 13:40:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDDWZ6K008841 + for ; Thu, 13 Dec 2007 08:32:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDDWZBR008839 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 08:32:35 -0500 +Date: Thu, 13 Dec 2007 08:32:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39179 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 08:40:47 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39179 + +Author: cwen@iupui.edu +Date: 2007-12-13 08:32:34 -0500 (Thu, 13 Dec 2007) +New Revision: 39179 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +update external for role swapping. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 04:56:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 04:56:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 04:56:59 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lBD9uwIC031501; + Thu, 13 Dec 2007 04:56:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 476101E5.64BF7.31950 ; + 13 Dec 2007 04:56:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C3F4D722C5; + Thu, 13 Dec 2007 09:56:48 +0000 (GMT) +Message-ID: <200712130948.lBD9mk23008692@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713 + for ; + Thu, 13 Dec 2007 09:56:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4F7DF36F6E + for ; Thu, 13 Dec 2007 09:56:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD9mkrV008694 + for ; Thu, 13 Dec 2007 04:48:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD9mk23008692 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 04:48:46 -0500 +Date: Thu, 13 Dec 2007 04:48:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39178 - portal/trunk/portal-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 04:56:59 2007 +X-DSPAM-Confidence: 0.9770 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39178 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 04:48:42 -0500 (Thu, 13 Dec 2007) +New Revision: 39178 + +Modified: +portal/trunk/portal-impl/impl/src/bundle/sitenav.properties +Log: +SAK-12273 +Patch applied + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 13 04:55:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 13 Dec 2007 04:55:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 13 Dec 2007 04:55:01 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by awakenings.mail.umich.edu () with ESMTP id lBD9t0f9026681; + Thu, 13 Dec 2007 04:55:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4761016E.99AFB.7944 ; + 13 Dec 2007 04:54:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3B469C64F; + Thu, 13 Dec 2007 09:54:52 +0000 (GMT) +Message-ID: <200712130946.lBD9kqcG008680@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 53 + for ; + Thu, 13 Dec 2007 09:54:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C55FD36F61 + for ; Thu, 13 Dec 2007 09:54:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD9kruJ008682 + for ; Thu, 13 Dec 2007 04:46:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD9kqcG008680 + for source@collab.sakaiproject.org; Thu, 13 Dec 2007 04:46:52 -0500 +Date: Thu, 13 Dec 2007 04:46:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39177 - portal/trunk/portal-charon/charon/src/webapp/scripts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 13 04:55:01 2007 +X-DSPAM-Confidence: 0.9784 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39177 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-13 04:46:48 -0500 (Thu, 13 Dec 2007) +New Revision: 39177 + +Modified: +portal/trunk/portal-charon/charon/src/webapp/scripts/portalscripts.js +Log: +SAK-12112 +Patch Applied + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 22:33:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 22:33:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 22:33:27 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lBD3XQGG025974; + Wed, 12 Dec 2007 22:33:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4760A801.62903.21783 ; + 12 Dec 2007 22:33:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5B3F7789E4; + Thu, 13 Dec 2007 03:32:59 +0000 (GMT) +Message-ID: <200712130325.lBD3PDL3007910@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 432 + for ; + Thu, 13 Dec 2007 03:32:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A1753643E + for ; Thu, 13 Dec 2007 03:32:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD3PD0d007912 + for ; Wed, 12 Dec 2007 22:25:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD3PDL3007910 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 22:25:13 -0500 +Date: Wed, 12 Dec 2007 22:25:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39176 - content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 22:33:27 2007 +X-DSPAM-Confidence: 0.7000 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39176 + +Author: mmmay@indiana.edu +Date: 2007-12-12 22:25:12 -0500 (Wed, 12 Dec 2007) +New Revision: 39176 + +Modified: +content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +svn merge -r 39124:39125 https://source.sakaiproject.org/svn/content/trunk +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +sillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 39124:39125 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r39125 | jimeng@umich.edu | 2007-12-11 18:34:03 -0500 (Tue, 11 Dec 2007) | 3 lines + +SAK-12402 +Remove pipe from tool-session when it is found and actioned is not completed, canceled or in error condition. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 21:49:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 21:49:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 21:49:18 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by score.mail.umich.edu () with ESMTP id lBD2nI8P014638; + Wed, 12 Dec 2007 21:49:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47609DA3.71734.27719 ; + 12 Dec 2007 21:49:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7258950485; + Thu, 13 Dec 2007 02:48:57 +0000 (GMT) +Message-ID: <200712130241.lBD2f2pr007788@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906 + for ; + Thu, 13 Dec 2007 02:48:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 10C5C35F28 + for ; Thu, 13 Dec 2007 02:48:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD2f2Ab007790 + for ; Wed, 12 Dec 2007 21:41:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD2f2pr007788 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:41:02 -0500 +Date: Wed, 12 Dec 2007 21:41:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39175 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 21:49:18 2007 +X-DSPAM-Confidence: 0.7000 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39175 + +Author: mmmay@indiana.edu +Date: 2007-12-12 21:41:00 -0500 (Wed, 12 Dec 2007) +New Revision: 39175 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -r 39152:39153 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +sillybunny:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 39152:39153 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r39153 | cwen@iupui.edu | 2007-12-12 15:45:36 -0500 (Wed, 12 Dec 2007) | 1 line + +SAK-12429 => add index for gradebook. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 21:28:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 21:28:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 21:28:15 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lBD2SEv0018596; + Wed, 12 Dec 2007 21:28:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 476098B9.2CEA4.25775 ; + 12 Dec 2007 21:28:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D2EF26047E; + Thu, 13 Dec 2007 02:28:07 +0000 (GMT) +Message-ID: <200712130219.lBD2Jphf007774@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622 + for ; + Thu, 13 Dec 2007 02:27:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 68F233619B + for ; Thu, 13 Dec 2007 02:27:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD2JpST007776 + for ; Wed, 12 Dec 2007 21:19:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD2Jphf007774 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:19:51 -0500 +Date: Wed, 12 Dec 2007 21:19:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39174 - gradebook/branches/sakai_2-5-x/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 21:28:15 2007 +X-DSPAM-Confidence: 0.6566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39174 + +Author: mmmay@indiana.edu +Date: 2007-12-12 21:19:50 -0500 (Wed, 12 Dec 2007) +New Revision: 39174 + +Modified: +gradebook/branches/sakai_2-5-x/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml +Log: +svn merge -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk +U service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml +sillybunny:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39138 | wagnermr@iupui.edu | 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007) | 3 lines + +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz +------------------------------------------------------------------------ +r39139 | cwen@iupui.edu | 2007-12-12 10:41:58 -0500 (Wed, 12 Dec 2007) | 2 lines + +SAK-12429 => +add index to hibernate mapping. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 21:27:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 21:27:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 21:27:12 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by score.mail.umich.edu () with ESMTP id lBD2RCNv005923; + Wed, 12 Dec 2007 21:27:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4760987A.10382.31358 ; + 12 Dec 2007 21:27:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3255858AD9; + Thu, 13 Dec 2007 02:26:53 +0000 (GMT) +Message-ID: <200712130218.lBD2IiIZ007762@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 439 + for ; + Thu, 13 Dec 2007 02:26:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7F9E631D78 + for ; Thu, 13 Dec 2007 02:26:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD2Ii5N007764 + for ; Wed, 12 Dec 2007 21:18:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD2IiIZ007762 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:18:44 -0500 +Date: Wed, 12 Dec 2007 21:18:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39173 - in gradebook/branches/sakai_2-5-x/app/business/src/sql: mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 21:27:12 2007 +X-DSPAM-Confidence: 0.7614 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39173 + +Author: mmmay@indiana.edu +Date: 2007-12-12 21:18:41 -0500 (Wed, 12 Dec 2007) +New Revision: 39173 + +Added: +gradebook/branches/sakai_2-5-x/app/business/src/sql/mysql/SAK-12429.sql +gradebook/branches/sakai_2-5-x/app/business/src/sql/oracle/SAK-12429.sql +Log: +svn merge -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk +A app/business/src/sql/mysql/SAK-12429.sql +A app/business/src/sql/oracle/SAK-12429.sql +sillybunny:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39137 | cwen@iupui.edu | 2007-12-12 10:05:59 -0500 (Wed, 12 Dec 2007) | 1 line + +SAK-12429 => add index for improving performance. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 21:16:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 21:16:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 21:16:38 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id lBD2Gc4x006843; + Wed, 12 Dec 2007 21:16:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47609601.7B192.16867 ; + 12 Dec 2007 21:16:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2539E9984B; + Thu, 13 Dec 2007 02:16:29 +0000 (GMT) +Message-ID: <200712130208.lBD28LCT007730@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 201 + for ; + Thu, 13 Dec 2007 02:16:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1232D36507 + for ; Thu, 13 Dec 2007 02:16:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD28LNR007732 + for ; Wed, 12 Dec 2007 21:08:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD28LCT007730 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:08:21 -0500 +Date: Wed, 12 Dec 2007 21:08:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39172 - syllabus/branches/sakai_2-5-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 21:16:38 2007 +X-DSPAM-Confidence: 0.7612 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39172 + +Author: mmmay@indiana.edu +Date: 2007-12-12 21:08:19 -0500 (Wed, 12 Dec 2007) +New Revision: 39172 + +Modified: +syllabus/branches/sakai_2-5-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +Log: +svn merge -r 38964:38965 https://source.sakaiproject.org/svn/syllabus/trunk +U syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +sillybunny:~/java/2-5/sakai_2-5-x/syllabus mmmay$ svn log -r 38964:38965 https://source.sakaiproject.org/svn/syllabus/trunk +------------------------------------------------------------------------ +r38965 | josrodri@iupui.edu | 2007-12-04 14:07:49 -0500 (Tue, 04 Dec 2007) | 1 line + +SAK-12234 - will check if a SyllabusItem was actually retrieved before grabbing redirect url +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 21:07:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 21:07:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 21:07:12 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lBD27BNc000587; + Wed, 12 Dec 2007 21:07:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 476093CA.AC4FF.12984 ; + 12 Dec 2007 21:07:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A4C39B0C5; + Thu, 13 Dec 2007 02:07:02 +0000 (GMT) +Message-ID: <200712130158.lBD1wavx007660@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26 + for ; + Thu, 13 Dec 2007 02:06:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C3DE63636D + for ; Thu, 13 Dec 2007 02:06:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1waU6007662 + for ; Wed, 12 Dec 2007 20:58:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1wavx007660 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:58:36 -0500 +Date: Wed, 12 Dec 2007 20:58:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39171 - content/branches/sakai_2-5-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 21:07:12 2007 +X-DSPAM-Confidence: 0.7008 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39171 + +Author: mmmay@indiana.edu +Date: 2007-12-12 20:58:34 -0500 (Wed, 12 Dec 2007) +New Revision: 39171 + +Modified: +content/branches/sakai_2-5-x/runconversion.sh +content/branches/sakai_2-5-x/upgradeschema-mysql.config +Log: +svn merge -r 39156:39157 https://source.sakaiproject.org/svn/content/trunk +U upgradeschema-mysql.config +U runconversion.sh +sillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 39156:39157 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r39157 | jimeng@umich.edu | 2007-12-12 15:56:53 -0500 (Wed, 12 Dec 2007) | 4 lines + +SAK-12249 +Added mysql config for converting delete table. +Updated runconversion script to include commons-collections in classpath. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 20:58:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 20:58:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 20:58:30 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lBD1wTXd010999; + Wed, 12 Dec 2007 20:58:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476091BF.A5A4B.5818 ; + 12 Dec 2007 20:58:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 19E549B0C5; + Thu, 13 Dec 2007 01:58:20 +0000 (GMT) +Message-ID: <200712130150.lBD1oGZe007636@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516 + for ; + Thu, 13 Dec 2007 01:58:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6F4143636D + for ; Thu, 13 Dec 2007 01:58:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1oHv3007638 + for ; Wed, 12 Dec 2007 20:50:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1oGZe007636 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:50:17 -0500 +Date: Wed, 12 Dec 2007 20:50:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39170 - in citations/branches/sakai_2-5-x: citations-impl/impl/src/java/org/sakaiproject/citation/impl citations-tool/tool/src/webapp/vm/citation citations-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 20:58:30 2007 +X-DSPAM-Confidence: 0.6519 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39170 + +Author: mmmay@indiana.edu +Date: 2007-12-12 20:50:12 -0500 (Wed, 12 Dec 2007) +New Revision: 39170 + +Modified: +citations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseSearchManager.java +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/_databases.vm +citations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations.properties +Log: +svn merge -r 39121:39122 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/webapp/vm/citation/_databases.vm +U citations-util/util/src/bundle/citations.properties +U citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseSearchManager.java +sillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 39121:39122 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r39122 | gbhatnag@umich.edu | 2007-12-11 17:34:44 -0500 (Tue, 11 Dec 2007) | 2 lines + +SAK-11999 catching for undefined databases and empty categories in BaseSearchManager.BasicSearchDatabaseHierarchy.BasicSearchCategory. Template changes to account for empty categories. + +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 20:55:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 20:55:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 20:55:24 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id lBD1tNH2028214; + Wed, 12 Dec 2007 20:55:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47609100.9F103.4248 ; + 12 Dec 2007 20:55:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B55099B0C5; + Thu, 13 Dec 2007 01:55:08 +0000 (GMT) +Message-ID: <200712130147.lBD1l9qt007624@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 259 + for ; + Thu, 13 Dec 2007 01:54:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 422D93636D + for ; Thu, 13 Dec 2007 01:54:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1l9Bt007626 + for ; Wed, 12 Dec 2007 20:47:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1l9qt007624 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:47:09 -0500 +Date: Wed, 12 Dec 2007 20:47:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39169 - citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 20:55:24 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39169 + +Author: mmmay@indiana.edu +Date: 2007-12-12 20:47:08 -0500 (Wed, 12 Dec 2007) +New Revision: 39169 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +Log: +svn merge -r 39114:39115 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +sillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 39114:39115 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r39115 | gbhatnag@umich.edu | 2007-12-11 15:04:40 -0500 (Tue, 11 Dec 2007) | 1 line + +SAK-11362 using the pipe's initializationId to track a new Resources action and point the user to the proper starting view instead of entering a view that is not in a sane state, avoiding giving the user an unusable interface. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 20:53:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 20:53:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 20:53:00 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id lBD1r0cG027353; + Wed, 12 Dec 2007 20:53:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47609075.AEF0C.6932 ; + 12 Dec 2007 20:52:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C20249C67E; + Thu, 13 Dec 2007 01:52:51 +0000 (GMT) +Message-ID: <200712130144.lBD1is9Z007612@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131 + for ; + Thu, 13 Dec 2007 01:52:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E3362F89C + for ; Thu, 13 Dec 2007 01:52:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1is0p007614 + for ; Wed, 12 Dec 2007 20:44:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1is9Z007612 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:44:54 -0500 +Date: Wed, 12 Dec 2007 20:44:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39168 - citations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/xserver +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 20:53:00 2007 +X-DSPAM-Confidence: 0.6192 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39168 + +Author: mmmay@indiana.edu +Date: 2007-12-12 20:44:51 -0500 (Wed, 12 Dec 2007) +New Revision: 39168 + +Modified: +citations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java +Log: +svn merge -r 38822:38823 https://source.sakaiproject.org/svn/citations/trunk +U citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java +sillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38822:38823 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38823 | ssmail@indiana.edu | 2007-11-28 10:37:41 -0500 (Wed, 28 Nov 2007) | 1 line + +SAK-12297: Reworked the asset caching logic to avoid discarding search results +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Dec 12 20:51:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 20:51:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 20:51:16 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by casino.mail.umich.edu () with ESMTP id lBD1pGcQ027951; + Wed, 12 Dec 2007 20:51:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4760900E.20782.2765 ; + 12 Dec 2007 20:51:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0144D9C67E; + Thu, 13 Dec 2007 01:51:05 +0000 (GMT) +Message-ID: <200712130143.lBD1h4ea007600@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1019 + for ; + Thu, 13 Dec 2007 01:50:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AA1A52F89C + for ; Thu, 13 Dec 2007 01:50:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1h4Vr007602 + for ; Wed, 12 Dec 2007 20:43:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1h4ea007600 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:43:04 -0500 +Date: Wed, 12 Dec 2007 20:43:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39167 - in citations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary: osid/repository/xserver xserver +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 20:51:16 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39167 + +Author: mmmay@indiana.edu +Date: 2007-12-12 20:43:01 -0500 (Wed, 12 Dec 2007) +New Revision: 39167 + +Modified: +citations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java +citations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java +Log: +svn merge -r 38812:38813 https://source.sakaiproject.org/svn/citations/trunk +U citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java +U citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java +sillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38812:38813 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38813 | ssmail@indiana.edu | 2007-11-27 17:09:07 -0500 (Tue, 27 Nov 2007) | 1 line + +SAK-12282: throw NO_MORE_ITERATOR_ELEMENTS exception for anticipated errors +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Dec 12 20:06:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 20:06:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 20:06:09 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lBD168Tq006716; + Wed, 12 Dec 2007 20:06:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47608579.88F6C.11032 ; + 12 Dec 2007 20:06:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 409B69C05B; + Thu, 13 Dec 2007 00:32:58 +0000 (GMT) +Message-ID: <200712130057.lBD0vjdl007533@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959 + for ; + Thu, 13 Dec 2007 00:32:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B435F2B675 + for ; Thu, 13 Dec 2007 01:05:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD0vjDr007535 + for ; Wed, 12 Dec 2007 19:57:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD0vjdl007533 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 19:57:45 -0500 +Date: Wed, 12 Dec 2007 19:57:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39166 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 20:06:09 2007 +X-DSPAM-Confidence: 0.7549 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39166 + +Author: gjthomas@iupui.edu +Date: 2007-12-12 19:57:44 -0500 (Wed, 12 Dec 2007) +New Revision: 39166 + +Modified: +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +SAK-7924 - UI update for oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Dec 12 20:02:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 20:02:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 20:02:49 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by faithful.mail.umich.edu () with ESMTP id lBD12nYr000822; + Wed, 12 Dec 2007 20:02:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 476084A9.7ECD4.9858 ; + 12 Dec 2007 20:02:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1C6FA9B90A; + Thu, 13 Dec 2007 00:28:20 +0000 (GMT) +Message-ID: <200712130049.lBD0nIZs007491@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 519 + for ; + Thu, 13 Dec 2007 00:28:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ED69831FC9 + for ; Thu, 13 Dec 2007 00:57:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD0nIfM007493 + for ; Wed, 12 Dec 2007 19:49:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD0nIZs007491 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 19:49:18 -0500 +Date: Wed, 12 Dec 2007 19:49:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39165 - oncourse/trunk/src/reference/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 20:02:49 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39165 + +Author: gjthomas@iupui.edu +Date: 2007-12-12 19:49:17 -0500 (Wed, 12 Dec 2007) +New Revision: 39165 + +Modified: +oncourse/trunk/src/reference/library/src/webapp/skin/default/portal.css +Log: +SAK-7924 - UI update for oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 12 19:53:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 19:53:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 19:53:27 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by faithful.mail.umich.edu () with ESMTP id lBD0rRVM029121; + Wed, 12 Dec 2007 19:53:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4760827F.D13BC.10977 ; + 12 Dec 2007 19:53:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DDA3D9C688; + Thu, 13 Dec 2007 00:23:59 +0000 (GMT) +Message-ID: <200712130045.lBD0j4Uw007468@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 817 + for ; + Thu, 13 Dec 2007 00:23:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C9D2A36414 + for ; Thu, 13 Dec 2007 00:52:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD0j4Tn007470 + for ; Wed, 12 Dec 2007 19:45:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD0j4Uw007468 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 19:45:04 -0500 +Date: Wed, 12 Dec 2007 19:45:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39164 - ctools/trunk/builds +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 19:53:27 2007 +X-DSPAM-Confidence: 0.8477 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39164 + +Author: dlhaines@umich.edu +Date: 2007-12-12 19:45:02 -0500 (Wed, 12 Dec 2007) +New Revision: 39164 + +Removed: +ctools/trunk/builds/externals/ +Log: +CTools: delete unused and misleading externals directory. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 12 16:27:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:27:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:27:02 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by awakenings.mail.umich.edu () with ESMTP id lBCLQxxR005651; + Wed, 12 Dec 2007 16:27:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4760521D.B2A31.10834 ; + 12 Dec 2007 16:26:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6575F9C388; + Wed, 12 Dec 2007 21:26:51 +0000 (GMT) +Message-ID: <200712122118.lBCLItiD007115@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651 + for ; + Wed, 12 Dec 2007 21:26:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E078F31E96 + for ; Wed, 12 Dec 2007 21:26:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLItoH007117 + for ; Wed, 12 Dec 2007 16:18:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLItiD007115 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:18:55 -0500 +Date: Wed, 12 Dec 2007 16:18:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39163 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:27:02 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39163 + +Author: dlhaines@umich.edu +Date: 2007-12-12 16:18:52 -0500 (Wed, 12 Dec 2007) +New Revision: 39163 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: more updates for assignment and content conversions. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 16:20:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:20:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:20:55 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lBCLKtku019421; + Wed, 12 Dec 2007 16:20:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 476050B0.9A22B.30845 ; + 12 Dec 2007 16:20:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F7239C376; + Wed, 12 Dec 2007 21:20:47 +0000 (GMT) +Message-ID: <200712122112.lBCLCjcL007103@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 413 + for ; + Wed, 12 Dec 2007 21:20:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6656B2AD4C + for ; Wed, 12 Dec 2007 21:20:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLCjxh007105 + for ; Wed, 12 Dec 2007 16:12:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLCjcL007103 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:12:45 -0500 +Date: Wed, 12 Dec 2007 16:12:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39162 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:20:55 2007 +X-DSPAM-Confidence: 0.7543 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39162 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 16:12:44 -0500 (Wed, 12 Dec 2007) +New Revision: 39162 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +revving up portal for more student view fixes + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Dec 12 16:20:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:20:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:20:04 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by casino.mail.umich.edu () with ESMTP id lBCLK4Um025504; + Wed, 12 Dec 2007 16:20:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4760507E.33419.6643 ; + 12 Dec 2007 16:20:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E9C869C370; + Wed, 12 Dec 2007 21:19:55 +0000 (GMT) +Message-ID: <200712122111.lBCLBsaq007091@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 817 + for ; + Wed, 12 Dec 2007 21:19:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0C6F92AD4C + for ; Wed, 12 Dec 2007 21:19:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLBsZN007093 + for ; Wed, 12 Dec 2007 16:11:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLBsaq007091 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:11:54 -0500 +Date: Wed, 12 Dec 2007 16:11:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39161 - in assignment/branches/post-2-4-umich: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:20:04 2007 +X-DSPAM-Confidence: 0.8442 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39161 + +Author: zqian@umich.edu +Date: 2007-12-12 16:11:50 -0500 (Wed, 12 Dec 2007) +New Revision: 39161 + +Modified: +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +assignment/branches/post-2-4-umich/runconversion.sh +assignment/branches/post-2-4-umich/upgradeschema_mysql.config +assignment/branches/post-2-4-umich/upgradeschema_oracle.config +Log: +fix the CombineDupliateSubmissions error where no combine process is executed during the conversion process. SAK-11281 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 12 16:19:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:19:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:19:28 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id lBCLJRsX008670; + Wed, 12 Dec 2007 16:19:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4760505A.6F2E4.16566 ; + 12 Dec 2007 16:19:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DA0239C305; + Wed, 12 Dec 2007 21:19:18 +0000 (GMT) +Message-ID: <200712122111.lBCLBGs3007079@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 252 + for ; + Wed, 12 Dec 2007 21:18:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6D0202AD4C + for ; Wed, 12 Dec 2007 21:18:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLBHo1007081 + for ; Wed, 12 Dec 2007 16:11:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLBGs3007079 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:11:16 -0500 +Date: Wed, 12 Dec 2007 16:11:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39160 - content/branches/SAK-12239 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:19:28 2007 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39160 + +Author: jimeng@umich.edu +Date: 2007-12-12 16:11:15 -0500 (Wed, 12 Dec 2007) +New Revision: 39160 + +Modified: +content/branches/SAK-12239/upgradeschema-mysql.config +content/branches/SAK-12239/upgradeschema-oracle.config +Log: +SAK-12239 +SAK-12249 +Added config to deal with delete table. +Updated oracle config file. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Dec 12 16:17:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:17:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:17:50 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id lBCLHo4E001514; + Wed, 12 Dec 2007 16:17:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47604FF8.53DB2.22822 ; + 12 Dec 2007 16:17:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9A8A49C10C; + Wed, 12 Dec 2007 21:17:42 +0000 (GMT) +Message-ID: <200712122109.lBCL9iKA007051@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680 + for ; + Wed, 12 Dec 2007 21:17:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4931F2AD4C + for ; Wed, 12 Dec 2007 21:17:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCL9ijZ007054 + for ; Wed, 12 Dec 2007 16:09:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCL9iKA007051 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:09:44 -0500 +Date: Wed, 12 Dec 2007 16:09:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39159 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:17:50 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39159 + +Author: gjthomas@iupui.edu +Date: 2007-12-12 16:09:43 -0500 (Wed, 12 Dec 2007) +New Revision: 39159 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-7924 - Fix for the "tab disappearing" problem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Dec 12 16:16:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:16:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:16:34 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by casino.mail.umich.edu () with ESMTP id lBCLGYZu023834; + Wed, 12 Dec 2007 16:16:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47604FAB.F3144.13573 ; + 12 Dec 2007 16:16:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 874605954A; + Wed, 12 Dec 2007 21:16:24 +0000 (GMT) +Message-ID: <200712122108.lBCL8Mlp007038@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 180 + for ; + Wed, 12 Dec 2007 21:16:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 86C632AD4C + for ; Wed, 12 Dec 2007 21:16:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCL8M5A007040 + for ; Wed, 12 Dec 2007 16:08:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCL8Mlp007038 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:08:22 -0500 +Date: Wed, 12 Dec 2007 16:08:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39158 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:16:34 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39158 + +Author: gjthomas@iupui.edu +Date: 2007-12-12 16:08:20 -0500 (Wed, 12 Dec 2007) +New Revision: 39158 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-7924 - Fix for the "tab disappearing" problem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 12 16:05:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:05:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:05:10 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id lBCL594M020053; + Wed, 12 Dec 2007 16:05:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47604CFF.6B9D2.25667 ; + 12 Dec 2007 16:05:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9726A96A17; + Wed, 12 Dec 2007 21:04:59 +0000 (GMT) +Message-ID: <200712122056.lBCKutjx007024@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506 + for ; + Wed, 12 Dec 2007 21:04:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 835641D7C8 + for ; Wed, 12 Dec 2007 21:04:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKutlA007026 + for ; Wed, 12 Dec 2007 15:56:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKutjx007024 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:56:55 -0500 +Date: Wed, 12 Dec 2007 15:56:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39157 - content/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:05:10 2007 +X-DSPAM-Confidence: 0.9886 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39157 + +Author: jimeng@umich.edu +Date: 2007-12-12 15:56:53 -0500 (Wed, 12 Dec 2007) +New Revision: 39157 + +Modified: +content/trunk/runconversion.sh +content/trunk/upgradeschema-mysql.config +Log: +SAK-12249 +Added mysql config for converting delete table. +Updated runconversion script to include commons-collections in classpath. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Dec 12 16:02:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:02:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:02:35 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lBCL2YLB024060; + Wed, 12 Dec 2007 16:02:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47604C63.DC1DF.27224 ; + 12 Dec 2007 16:02:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 81DDF4EB62; + Wed, 12 Dec 2007 21:02:21 +0000 (GMT) +Message-ID: <200712122054.lBCKs4La007012@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 36 + for ; + Wed, 12 Dec 2007 20:54:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D83641D7C8 + for ; Wed, 12 Dec 2007 21:01:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKs4CV007014 + for ; Wed, 12 Dec 2007 15:54:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKs4La007012 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:54:04 -0500 +Date: Wed, 12 Dec 2007 15:54:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39156 - assignment/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:02:35 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39156 + +Author: zqian@umich.edu +Date: 2007-12-12 15:54:02 -0500 (Wed, 12 Dec 2007) +New Revision: 39156 + +Added: +assignment/branches/post-2-4-umich/ +Log: +Add this brach as the testbed for assignment conversion SAK-11821 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 12 16:02:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 16:02:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 16:02:01 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id lBCL209X007648; + Wed, 12 Dec 2007 16:02:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47604C40.8336E.4759 ; + 12 Dec 2007 16:01:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DC5BC96A17; + Wed, 12 Dec 2007 20:54:48 +0000 (GMT) +Message-ID: <200712122053.lBCKrm7a007000@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786 + for ; + Wed, 12 Dec 2007 20:54:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4A6831D7C8 + for ; Wed, 12 Dec 2007 21:01:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKrmMR007002 + for ; Wed, 12 Dec 2007 15:53:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKrm7a007000 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:53:48 -0500 +Date: Wed, 12 Dec 2007 15:53:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39155 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 16:02:01 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39155 + +Author: cwen@iupui.edu +Date: 2007-12-12 15:53:46 -0500 (Wed, 12 Dec 2007) +New Revision: 39155 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +more conversion statements for SAK-10427. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Wed Dec 12 15:57:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 15:57:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 15:57:10 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lBCKv9xd022985; + Wed, 12 Dec 2007 15:57:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47604B17.E77AF.7668 ; + 12 Dec 2007 15:56:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 599139C106; + Wed, 12 Dec 2007 20:49:39 +0000 (GMT) +Message-ID: <200712122048.lBCKmqmY006988@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 533 + for ; + Wed, 12 Dec 2007 20:49:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AC9E51D7C8 + for ; Wed, 12 Dec 2007 20:56:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKmqPe006990 + for ; Wed, 12 Dec 2007 15:48:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKmqmY006988 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:48:52 -0500 +Date: Wed, 12 Dec 2007 15:48:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r39154 - reference/trunk/docs/releaseweb/images +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 15:57:10 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39154 + +Author: arwhyte@umich.edu +Date: 2007-12-12 15:48:48 -0500 (Wed, 12 Dec 2007) +New Revision: 39154 + +Added: +reference/trunk/docs/releaseweb/images/sakailogo_51X31.gif +reference/trunk/docs/releaseweb/images/sakailogo_74X45.gif +reference/trunk/docs/releaseweb/images/sakailogo_98X59.gif +Log: +Sakai logos for releaseweb docs. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 15:54:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 15:54:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 15:54:48 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lBCKslOj023027; + Wed, 12 Dec 2007 15:54:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47604A92.6D9A8.9230 ; + 12 Dec 2007 15:54:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2AE649C32F; + Wed, 12 Dec 2007 20:47:40 +0000 (GMT) +Message-ID: <200712122017.lBCKHHeF006841@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713 + for ; + Wed, 12 Dec 2007 20:47:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9A9EF360B1 + for ; Wed, 12 Dec 2007 20:24:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKHHJB006843 + for ; Wed, 12 Dec 2007 15:17:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKHHeF006841 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:17:17 -0500 +Date: Wed, 12 Dec 2007 15:17:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39149 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 15:54:48 2007 +X-DSPAM-Confidence: 0.9805 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39149 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 15:17:16 -0500 (Wed, 12 Dec 2007) +New Revision: 39149 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +updating citations revision + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 12 15:53:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 15:53:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 15:53:45 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lBCKrim2022252; + Wed, 12 Dec 2007 15:53:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47604A52.614C7.20109 ; + 12 Dec 2007 15:53:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3F5D9BB3F; + Wed, 12 Dec 2007 20:46:34 +0000 (GMT) +Message-ID: <200712122045.lBCKjcXt006976@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 555 + for ; + Wed, 12 Dec 2007 20:46:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 94AF735FEB + for ; Wed, 12 Dec 2007 20:53:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKjcTF006978 + for ; Wed, 12 Dec 2007 15:45:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKjcXt006976 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:45:38 -0500 +Date: Wed, 12 Dec 2007 15:45:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39153 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 15:53:45 2007 +X-DSPAM-Confidence: 0.8433 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39153 + +Author: cwen@iupui.edu +Date: 2007-12-12 15:45:36 -0500 (Wed, 12 Dec 2007) +New Revision: 39153 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-12429 => add index for gradebook. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 15:44:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 15:44:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 15:44:10 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id lBCKi9wS015898; + Wed, 12 Dec 2007 15:44:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47604812.A78D5.30323 ; + 12 Dec 2007 15:44:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 572A59C104; + Wed, 12 Dec 2007 20:37:00 +0000 (GMT) +Message-ID: <200712122035.lBCKZuf6006953@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 938 + for ; + Wed, 12 Dec 2007 20:36:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0329535FEB + for ; Wed, 12 Dec 2007 20:43:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKZuC9006955 + for ; Wed, 12 Dec 2007 15:35:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKZuf6006953 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:35:56 -0500 +Date: Wed, 12 Dec 2007 15:35:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39152 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 15:44:10 2007 +X-DSPAM-Confidence: 0.8432 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39152 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 15:35:55 -0500 (Wed, 12 Dec 2007) +New Revision: 39152 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +revving up portal and citations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 15:42:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 15:42:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 15:42:09 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id lBCKg8Um022819; + Wed, 12 Dec 2007 15:42:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4760479B.A1F17.23036 ; + 12 Dec 2007 15:42:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A0D559C2DC; + Wed, 12 Dec 2007 20:34:57 +0000 (GMT) +Message-ID: <200712122033.lBCKXvkY006941@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751 + for ; + Wed, 12 Dec 2007 20:34:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F292835FA7 + for ; Wed, 12 Dec 2007 20:41:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKXvXb006943 + for ; Wed, 12 Dec 2007 15:33:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKXvkY006941 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:33:57 -0500 +Date: Wed, 12 Dec 2007 15:33:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39151 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 15:42:09 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39151 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 15:33:56 -0500 (Wed, 12 Dec 2007) +New Revision: 39151 + +Modified: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css +Log: +adjusting the border color for the timeout popup to be IU-ish + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Dec 12 15:40:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 15:40:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 15:40:13 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id lBCKeC0B005132; + Wed, 12 Dec 2007 15:40:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47604717.577CD.28486 ; + 12 Dec 2007 15:39:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BD12F9BB89; + Wed, 12 Dec 2007 20:32:48 +0000 (GMT) +Message-ID: <200712122031.lBCKVjb5006907@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949 + for ; + Wed, 12 Dec 2007 20:32:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A3B135EEF + for ; Wed, 12 Dec 2007 20:39:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKVjtI006909 + for ; Wed, 12 Dec 2007 15:31:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKVjb5006907 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:31:45 -0500 +Date: Wed, 12 Dec 2007 15:31:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39150 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 15:40:13 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39150 + +Author: gjthomas@iupui.edu +Date: 2007-12-12 15:31:44 -0500 (Wed, 12 Dec 2007) +New Revision: 39150 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-7924 - Fix for the "tab disappearing" problem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 12 14:54:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 14:54:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 14:54:04 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lBCJs3NX018797; + Wed, 12 Dec 2007 14:54:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47603C55.9D53D.31117 ; + 12 Dec 2007 14:54:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 86F9B9C121; + Wed, 12 Dec 2007 19:52:57 +0000 (GMT) +Message-ID: <200712121945.lBCJjnCa006799@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 597 + for ; + Wed, 12 Dec 2007 19:52:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E4E6B35DDA + for ; Wed, 12 Dec 2007 19:53:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJjnmO006801 + for ; Wed, 12 Dec 2007 14:45:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJjnCa006799 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:45:49 -0500 +Date: Wed, 12 Dec 2007 14:45:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39148 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 14:54:04 2007 +X-DSPAM-Confidence: 0.9871 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39148 + +Author: dlhaines@umich.edu +Date: 2007-12-12 14:45:48 -0500 (Wed, 12 Dec 2007) +New Revision: 39148 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update for new tool configuration for project sites. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 12 14:53:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 14:53:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 14:53:09 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lBCJr8M4000690; + Wed, 12 Dec 2007 14:53:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47603BF2.7CDB.26754 ; + 12 Dec 2007 14:52:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 027639C121; + Wed, 12 Dec 2007 19:51:15 +0000 (GMT) +Message-ID: <200712121944.lBCJiCHT006776@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 289 + for ; + Wed, 12 Dec 2007 19:50:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 96C8B2EDC4 + for ; Wed, 12 Dec 2007 19:51:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJiCVs006778 + for ; Wed, 12 Dec 2007 14:44:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJiCHT006776 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:44:12 -0500 +Date: Wed, 12 Dec 2007 14:44:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39147 - ctools/trunk/builds/ctools_2-4/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 14:53:09 2007 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39147 + +Author: dlhaines@umich.edu +Date: 2007-12-12 14:44:11 -0500 (Wed, 12 Dec 2007) +New Revision: 39147 + +Modified: +ctools/trunk/builds/ctools_2-4/tools/build-ctools.xml +Log: +CTools: update to remove melete and drop box from project sites. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Wed Dec 12 14:49:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 14:49:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 14:49:06 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lBCJn5im014571; + Wed, 12 Dec 2007 14:49:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47603B25.DD591.26174 ; + 12 Dec 2007 14:48:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EFE6C9C1A2; + Wed, 12 Dec 2007 19:47:47 +0000 (GMT) +Message-ID: <200712121940.lBCJeY9M006756@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 648 + for ; + Wed, 12 Dec 2007 19:47:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BFCC62B027 + for ; Wed, 12 Dec 2007 19:48:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJeYG6006758 + for ; Wed, 12 Dec 2007 14:40:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJeY9M006756 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:40:34 -0500 +Date: Wed, 12 Dec 2007 14:40:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39146 - in podcasts/trunk/podcasts-app/src/webapp: css images podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 14:49:06 2007 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39146 + +Author: josrodri@iupui.edu +Date: 2007-12-12 14:40:33 -0500 (Wed, 12 Dec 2007) +New Revision: 39146 + +Removed: +podcasts/trunk/podcasts-app/src/webapp/images/rss-feed-icon.png +podcasts/trunk/podcasts-app/src/webapp/podcasts/podPermissions.jsp +Modified: +podcasts/trunk/podcasts-app/src/webapp/css/podcaster.css +podcasts/trunk/podcasts-app/src/webapp/podcasts/podDelete.jsp +podcasts/trunk/podcasts-app/src/webapp/podcasts/podMain.jsp +podcasts/trunk/podcasts-app/src/webapp/podcasts/podNoResource.jsp +podcasts/trunk/podcasts-app/src/webapp/podcasts/podOptions.jsp +Log: +SAK-9882: refactored the other pages as well to take advantage of proper jsp components as well as validation cleanup. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 12 14:24:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 14:24:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 14:24:19 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id lBCJOJlb025316; + Wed, 12 Dec 2007 14:24:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47603542.92A74.7059 ; + 12 Dec 2007 14:23:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E4B6C9C088; + Wed, 12 Dec 2007 19:23:44 +0000 (GMT) +Message-ID: <200712121915.lBCJFqX1006595@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351 + for ; + Wed, 12 Dec 2007 19:23:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C169D2F071 + for ; Wed, 12 Dec 2007 19:23:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJFqhU006597 + for ; Wed, 12 Dec 2007 14:15:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJFqX1006595 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:15:52 -0500 +Date: Wed, 12 Dec 2007 14:15:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39145 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 14:24:19 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39145 + +Author: dlhaines@umich.edu +Date: 2007-12-12 14:15:51 -0500 (Wed, 12 Dec 2007) +New Revision: 39145 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update 2.4.xQ build with resources conversion again. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 12 14:17:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 14:17:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 14:17:28 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by godsend.mail.umich.edu () with ESMTP id lBCJHREk029496; + Wed, 12 Dec 2007 14:17:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476033C0.98989.4053 ; + 12 Dec 2007 14:17:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 186DA9C0F5; + Wed, 12 Dec 2007 19:17:20 +0000 (GMT) +Message-ID: <200712121909.lBCJ9U7d006476@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 879 + for ; + Wed, 12 Dec 2007 19:17:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E809F2AD5C + for ; Wed, 12 Dec 2007 19:17:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJ9USG006478 + for ; Wed, 12 Dec 2007 14:09:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJ9U7d006476 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:09:30 -0500 +Date: Wed, 12 Dec 2007 14:09:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39144 - db/branches/SAK-12239/db-util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 14:17:28 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39144 + +Author: jimeng@umich.edu +Date: 2007-12-12 14:09:29 -0500 (Wed, 12 Dec 2007) +New Revision: 39144 + +Modified: +db/branches/SAK-12239/db-util/.classpath +Log: +SAK-12239 +Set svn:eol-style=native recursively in db module of SAK-12239 branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Dec 12 14:17:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 14:17:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 14:17:01 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by mission.mail.umich.edu () with ESMTP id lBCJH0Oc021038; + Wed, 12 Dec 2007 14:17:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47603398.2932C.23850 ; + 12 Dec 2007 14:16:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EFB029C0F3; + Wed, 12 Dec 2007 19:16:38 +0000 (GMT) +Message-ID: <200712121908.lBCJ8dtO006464@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357 + for ; + Wed, 12 Dec 2007 19:16:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 10C6A2AD5C + for ; Wed, 12 Dec 2007 19:16:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJ8eiL006466 + for ; Wed, 12 Dec 2007 14:08:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJ8dtO006464 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:08:40 -0500 +Date: Wed, 12 Dec 2007 14:08:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39143 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 14:17:01 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39143 + +Author: dlhaines@umich.edu +Date: 2007-12-12 14:08:38 -0500 (Wed, 12 Dec 2007) +New Revision: 39143 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update 2.4.xQ build with resources conversion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 12 14:16:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 14:16:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 14:16:36 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lBCJGZ1b009120; + Wed, 12 Dec 2007 14:16:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47603389.75E70.31935 ; + 12 Dec 2007 14:16:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ED9619BF2C; + Wed, 12 Dec 2007 19:16:22 +0000 (GMT) +Message-ID: <200712121908.lBCJ8UOY006452@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997 + for ; + Wed, 12 Dec 2007 19:16:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0443F2AD5C + for ; Wed, 12 Dec 2007 19:16:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJ8U2p006454 + for ; Wed, 12 Dec 2007 14:08:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJ8UOY006452 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:08:30 -0500 +Date: Wed, 12 Dec 2007 14:08:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39142 - in content/branches/SAK-12239: . content-api/api/src/java/org/sakaiproject/content/api content-bundles content-help content-help/src/sakai_resources content-impl/impl/src/bundle content-impl/impl/src/config content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion content-impl/impl/src/java/org/sakaiproject/content/types content-tool/tool/src/bundle content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/tools content-tool/tool/src/webapp/vm/content content-tool/tool/src/webapp/vm/resources content-util/util/src/java/org/sakaiproject/content/util contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 14:16:36 2007 +X-DSPAM-Confidence: 0.7603 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39142 + +Author: jimeng@umich.edu +Date: 2007-12-12 14:08:13 -0500 (Wed, 12 Dec 2007) +New Revision: 39142 + +Modified: +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ExpandableResourceType.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java +content/branches/SAK-12239/content-bundles/content.metaprops +content/branches/SAK-12239/content-bundles/content_ar.properties +content/branches/SAK-12239/content-bundles/content_ca.metaprops +content/branches/SAK-12239/content-bundles/content_es.metaprops +content/branches/SAK-12239/content-bundles/content_fr_CA.metaprops +content/branches/SAK-12239/content-bundles/content_ja.metaprops +content/branches/SAK-12239/content-bundles/content_ko.metaprops +content/branches/SAK-12239/content-bundles/content_nl.metaprops +content/branches/SAK-12239/content-bundles/content_zh_CN.metaprops +content/branches/SAK-12239/content-bundles/types.properties +content/branches/SAK-12239/content-bundles/types_ar.properties +content/branches/SAK-12239/content-bundles/types_ca.properties +content/branches/SAK-12239/content-bundles/types_es.properties +content/branches/SAK-12239/content-bundles/types_fr_CA.properties +content/branches/SAK-12239/content-bundles/types_ja.properties +content/branches/SAK-12239/content-help/project.xml +content/branches/SAK-12239/content-help/src/sakai_resources/aqyi.html +content/branches/SAK-12239/content-help/src/sakai_resources/aqyy.html +content/branches/SAK-12239/content-help/src/sakai_resources/araf.html +content/branches/SAK-12239/content-help/src/sakai_resources/arsl.html +content/branches/SAK-12239/content-help/src/sakai_resources/atkh.html +content/branches/SAK-12239/content-help/src/sakai_resources/atla.html +content/branches/SAK-12239/content-help/src/sakai_resources/aude.html +content/branches/SAK-12239/content-help/src/sakai_resources/audh.html +content/branches/SAK-12239/content-help/src/sakai_resources/auen.html +content/branches/SAK-12239/content-help/src/sakai_resources/aukb.html +content/branches/SAK-12239/content-help/src/sakai_resources/auta.html +content/branches/SAK-12239/content-help/src/sakai_resources/auze.html +content/branches/SAK-12239/content-help/src/sakai_resources/avbw.html +content/branches/SAK-12239/content-help/src/sakai_resources/avby.html +content/branches/SAK-12239/content-help/src/sakai_resources/avbz.html +content/branches/SAK-12239/content-help/src/sakai_resources/avcb.html +content/branches/SAK-12239/content-help/src/sakai_resources/avcc.html +content/branches/SAK-12239/content-help/src/sakai_resources/avcd.html +content/branches/SAK-12239/content-help/src/sakai_resources/avcg.html +content/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon.metaprops +content/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_ar.properties +content/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_ca.metaprops +content/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops +content/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_sv.properties +content/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_zh_CN.properties +content/branches/SAK-12239/content-impl/impl/src/config/content_type_images_ja.properties +content/branches/SAK-12239/content-impl/impl/src/config/content_type_names_ca.properties +content/branches/SAK-12239/content-impl/impl/src/config/content_type_names_ja.properties +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java +content/branches/SAK-12239/content-tool/tool/src/bundle/helper.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_ar.properties +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_ca.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_es.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_fr_CA.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_ja.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_ko.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_nl.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/helper_zh_CN.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/right.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/right_ar.properties +content/branches/SAK-12239/content-tool/tool/src/bundle/right_ca.metaprops +content/branches/SAK-12239/content-tool/tool/src/bundle/right_fr_CA.properties +content/branches/SAK-12239/content-tool/tool/src/bundle/right_ja.properties +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/SAK-12239/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/chef_resources_reorder.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm +content/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java +content/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +content/branches/SAK-12239/upgradeschema-mysql.config +content/branches/SAK-12239/upgradeschema-oracle.config +Log: +SAK-12239 +Set svn:eol-style=native for all files in content module of SAK-12239 branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Wed Dec 12 13:00:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 13:00:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 13:00:27 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by awakenings.mail.umich.edu () with ESMTP id lBCI0QxN010036; + Wed, 12 Dec 2007 13:00:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 476021B3.CB56C.16602 ; + 12 Dec 2007 13:00:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E540A9BDDE; + Wed, 12 Dec 2007 18:00:18 +0000 (GMT) +Message-ID: <200712121752.lBCHq5uZ006283@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 547 + for ; + Wed, 12 Dec 2007 17:59:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2217E353F5 + for ; Wed, 12 Dec 2007 17:59:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCHq5uo006285 + for ; Wed, 12 Dec 2007 12:52:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCHq5uZ006283 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 12:52:05 -0500 +Date: Wed, 12 Dec 2007 12:52:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39141 - in component/branches/SAK-8315: . component-api/api component-api/component component-impl/impl component-impl/integration-test component-impl/pack component-shared-deploy +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 13:00:27 2007 +X-DSPAM-Confidence: 0.7599 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39141 + +Author: ray@media.berkeley.edu +Date: 2007-12-12 12:51:57 -0500 (Wed, 12 Dec 2007) +New Revision: 39141 + +Modified: +component/branches/SAK-8315/component-api/api/pom.xml +component/branches/SAK-8315/component-api/component/pom.xml +component/branches/SAK-8315/component-impl/impl/pom.xml +component/branches/SAK-8315/component-impl/integration-test/pom.xml +component/branches/SAK-8315/component-impl/pack/pom.xml +component/branches/SAK-8315/component-shared-deploy/pom.xml +component/branches/SAK-8315/pom.xml +Log: +Merge -c38279 from trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 12:40:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 12:40:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 12:40:44 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lBCHehbw014303; + Wed, 12 Dec 2007 12:40:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47601D12.43CF3.18274 ; + 12 Dec 2007 12:40:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0F31C5DA04; + Wed, 12 Dec 2007 17:40:37 +0000 (GMT) +Message-ID: <200712121732.lBCHWVFh006140@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 779 + for ; + Wed, 12 Dec 2007 17:40:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 60E8935F7A + for ; Wed, 12 Dec 2007 17:40:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCHWWvH006142 + for ; Wed, 12 Dec 2007 12:32:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCHWVFh006140 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 12:32:31 -0500 +Date: Wed, 12 Dec 2007 12:32:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39140 - event/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 12:40:44 2007 +X-DSPAM-Confidence: 0.9802 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39140 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 12:32:29 -0500 (Wed, 12 Dec 2007) +New Revision: 39140 + +Added: +event/branches/SAK-6216/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 12 10:50:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 10:50:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 10:50:37 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by mission.mail.umich.edu () with ESMTP id lBCFoYYt018353; + Wed, 12 Dec 2007 10:50:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47600336.F163E.3184 ; + 12 Dec 2007 10:50:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DC1FC9A46E; + Wed, 12 Dec 2007 15:46:15 +0000 (GMT) +Message-ID: <200712121541.lBCFfxWG005972@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26 + for ; + Wed, 12 Dec 2007 15:45:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D794335F60 + for ; Wed, 12 Dec 2007 15:49:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCFfxS5005974 + for ; Wed, 12 Dec 2007 10:41:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCFfxWG005972 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 10:41:59 -0500 +Date: Wed, 12 Dec 2007 10:41:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39139 - gradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 10:50:37 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39139 + +Author: cwen@iupui.edu +Date: 2007-12-12 10:41:58 -0500 (Wed, 12 Dec 2007) +New Revision: 39139 + +Modified: +gradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml +Log: +SAK-12429 => +add index to hibernate mapping. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Dec 12 10:18:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 10:18:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 10:18:51 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lBCFIogC026281; + Wed, 12 Dec 2007 10:18:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475FFBD4.B27F8.22102 ; + 12 Dec 2007 10:18:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9AE329BB8B; + Wed, 12 Dec 2007 15:18:23 +0000 (GMT) +Message-ID: <200712121510.lBCFAaHS005894@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848 + for ; + Wed, 12 Dec 2007 15:18:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5080531B89 + for ; Wed, 12 Dec 2007 15:18:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCFAb0p005896 + for ; Wed, 12 Dec 2007 10:10:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCFAaHS005894 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 10:10:37 -0500 +Date: Wed, 12 Dec 2007 10:10:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39138 - in gradebook/trunk: app/sakai-tool/src/webapp/WEB-INF app/standalone-app/src/webapp/WEB-INF app/ui/src/java/org/sakaiproject/tool/gradebook/ui service/api/src/java/org/sakaiproject/service/gradebook/shared service/api/src/java/org/sakaiproject/tool/gradebook/facades service/impl/src/java/org/sakaiproject/component/gradebook service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections service/sakai-pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 10:18:51 2007 +X-DSPAM-Confidence: 0.8430 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39138 + +Author: wagnermr@iupui.edu +Date: 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007) +New Revision: 39138 + +Modified: +gradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/spring-facades.xml +gradebook/trunk/app/standalone-app/src/webapp/WEB-INF/spring-facades.xml +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookPermissionService.java +gradebook/trunk/service/api/src/java/org/sakaiproject/tool/gradebook/facades/Authz.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookPermissionServiceImpl.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java +gradebook/trunk/service/sakai-pack/src/webapp/WEB-INF/components.xml +Log: +SAK-12432 +http://bugs.sakaiproject.org/jira/browse/SAK-12432 +Circular dependency between GradebookService and facade Authz + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Dec 12 10:14:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 10:14:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 10:14:14 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lBCFEDJQ018438; + Wed, 12 Dec 2007 10:14:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 475FFABE.13299.9399 ; + 12 Dec 2007 10:14:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 78F759BB91; + Wed, 12 Dec 2007 15:13:48 +0000 (GMT) +Message-ID: <200712121506.lBCF62NU005882@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 996 + for ; + Wed, 12 Dec 2007 15:13:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB18231B89 + for ; Wed, 12 Dec 2007 15:13:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCF62LP005884 + for ; Wed, 12 Dec 2007 10:06:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCF62NU005882 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 10:06:02 -0500 +Date: Wed, 12 Dec 2007 10:06:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39137 - in gradebook/trunk/app/business/src/sql: mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 10:14:14 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39137 + +Author: cwen@iupui.edu +Date: 2007-12-12 10:05:59 -0500 (Wed, 12 Dec 2007) +New Revision: 39137 + +Added: +gradebook/trunk/app/business/src/sql/mysql/SAK-12429.sql +gradebook/trunk/app/business/src/sql/oracle/SAK-12429.sql +Log: +SAK-12429 => add index for improving performance. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ssmail@indiana.edu Wed Dec 12 09:34:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 09:34:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 09:34:59 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id lBCEYwcq007405; + Wed, 12 Dec 2007 09:34:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 475FF186.A3F57.4473 ; + 12 Dec 2007 09:34:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D87BB9BB40; + Wed, 12 Dec 2007 14:34:56 +0000 (GMT) +Message-ID: <200712121427.lBCER8Zo005798@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 625 + for ; + Wed, 12 Dec 2007 14:34:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CC69735EBC + for ; Wed, 12 Dec 2007 14:34:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCER8cu005800 + for ; Wed, 12 Dec 2007 09:27:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCER8Zo005798 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:27:08 -0500 +Date: Wed, 12 Dec 2007 09:27:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f +To: source@collab.sakaiproject.org +From: ssmail@indiana.edu +Subject: [sakai] svn commit: r39136 - in citations/branches/oncourse_2-4-x: citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver citations-osid/xserver/src/java/org/sakaibrary/xserver citations-tool/tool/src/java/org/sakaiproject/citation/tool oncourse-config/config/src/java/edu/indiana/osid/oncourse oncourse-config/config/src/java/edu/iu/oncourse/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 09:34:59 2007 +X-DSPAM-Confidence: 0.7551 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39136 + +Author: ssmail@indiana.edu +Date: 2007-12-12 09:27:04 -0500 (Wed, 12 Dec 2007) +New Revision: 39136 + +Modified: +citations/branches/oncourse_2-4-x/citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java +citations/branches/oncourse_2-4-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java +citations/branches/oncourse_2-4-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java +citations/branches/oncourse_2-4-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +citations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse/OncourseOsidConfiguration.java +citations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/iu/oncourse/util/CampusAffiliationService.java +Log: +Update to support Library Search at IUPUI + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 09:32:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 09:32:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 09:32:40 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id lBCEWet6005946; + Wed, 12 Dec 2007 09:32:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 475FF100.21D76.32370 ; + 12 Dec 2007 09:32:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C44215055B; + Wed, 12 Dec 2007 14:32:52 +0000 (GMT) +Message-ID: <200712121424.lBCEOpEM005786@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 72 + for ; + Wed, 12 Dec 2007 14:32:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5A2B735EBC + for ; Wed, 12 Dec 2007 14:32:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCEOpWI005788 + for ; Wed, 12 Dec 2007 09:24:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCEOpEM005786 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:24:51 -0500 +Date: Wed, 12 Dec 2007 09:24:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39135 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 09:32:40 2007 +X-DSPAM-Confidence: 0.7542 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39135 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 09:24:50 -0500 (Wed, 12 Dec 2007) +New Revision: 39135 + +Modified: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css +Log: +making adjustments for IU color scheme + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 09:22:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 09:22:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 09:22:39 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by fan.mail.umich.edu () with ESMTP id lBCEMcaJ027700; + Wed, 12 Dec 2007 09:22:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 475FEEA9.3FC60.2011 ; + 12 Dec 2007 09:22:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3220D6496E; + Wed, 12 Dec 2007 14:22:38 +0000 (GMT) +Message-ID: <200712121414.lBCEEen5005760@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 434 + for ; + Wed, 12 Dec 2007 14:22:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B7DF73583F + for ; Wed, 12 Dec 2007 14:22:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCEEeC3005762 + for ; Wed, 12 Dec 2007 09:14:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCEEen5005760 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:14:40 -0500 +Date: Wed, 12 Dec 2007 09:14:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39134 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 09:22:39 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39134 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 09:14:39 -0500 (Wed, 12 Dec 2007) +New Revision: 39134 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +revving up portal to get the timeout alert stuff + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 12 09:21:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 09:21:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 09:21:40 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lBCELZNE026722; + Wed, 12 Dec 2007 09:21:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 475FEE66.DE0B5.29176 ; + 12 Dec 2007 09:21:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 930F35055B; + Wed, 12 Dec 2007 14:21:48 +0000 (GMT) +Message-ID: <200712121413.lBCEDjxP005747@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 126 + for ; + Wed, 12 Dec 2007 14:21:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5FA0C3583F + for ; Wed, 12 Dec 2007 14:21:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCEDjDM005749 + for ; Wed, 12 Dec 2007 09:13:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCEDjxP005747 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:13:45 -0500 +Date: Wed, 12 Dec 2007 09:13:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39133 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 09:21:40 2007 +X-DSPAM-Confidence: 0.6527 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39133 + +Author: chmaurer@iupui.edu +Date: 2007-12-12 09:13:44 -0500 (Wed, 12 Dec 2007) +New Revision: 39133 + +Modified: +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +svn merge -c 39132 https://source.sakaiproject.org/svn/portal/branches/SAK-8152 +U portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm + +svn log -r 39132 https://source.sakaiproject.org/svn/portal/branches/SAK-8152 +------------------------------------------------------------------------ +r39132 | josrodri@iupui.edu | 2007-12-12 09:08:18 -0500 (Wed, 12 Dec 2007) | 1 line + +SAK-8152: forgot the changes to macros.vm (ie, popup page - oops) +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Wed Dec 12 09:16:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 09:16:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 09:16:16 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lBCEGFX3001219; + Wed, 12 Dec 2007 09:16:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 475FED29.EDC6.19323 ; + 12 Dec 2007 09:16:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 10A7C5055B; + Wed, 12 Dec 2007 14:16:17 +0000 (GMT) +Message-ID: <200712121408.lBCE8JOg005727@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 535 + for ; + Wed, 12 Dec 2007 14:15:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 290A83583F + for ; Wed, 12 Dec 2007 14:15:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCE8JxL005729 + for ; Wed, 12 Dec 2007 09:08:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCE8JOg005727 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:08:19 -0500 +Date: Wed, 12 Dec 2007 09:08:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39132 - portal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 09:16:16 2007 +X-DSPAM-Confidence: 0.6951 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39132 + +Author: josrodri@iupui.edu +Date: 2007-12-12 09:08:18 -0500 (Wed, 12 Dec 2007) +New Revision: 39132 + +Modified: +portal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +SAK-8152: forgot the changes to macros.vm (ie, popup page - oops) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Wed Dec 12 01:29:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 12 Dec 2007 01:29:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 12 Dec 2007 01:29:34 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by mission.mail.umich.edu () with ESMTP id lBC6TXER003628; + Wed, 12 Dec 2007 01:29:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 475F7FC5.C66A4.24956 ; + 12 Dec 2007 01:29:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 134CD9B5B7; + Wed, 12 Dec 2007 06:16:06 +0000 (GMT) +Message-ID: <200712120603.lBC63S17004247@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 663 + for ; + Wed, 12 Dec 2007 06:04:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 528B935A06 + for ; Wed, 12 Dec 2007 06:10:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC63TtC004249 + for ; Wed, 12 Dec 2007 01:03:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC63S17004247 + for source@collab.sakaiproject.org; Wed, 12 Dec 2007 01:03:28 -0500 +Date: Wed, 12 Dec 2007 01:03:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r39131 - in gradebook/trunk: . helper-app helper-app/src helper-app/src/java helper-app/src/java/org helper-app/src/java/org/sakaiproject helper-app/src/java/org/sakaiproject/gradebook helper-app/src/java/org/sakaiproject/gradebook/tool helper-app/src/java/org/sakaiproject/gradebook/tool/entity helper-app/src/java/org/sakaiproject/gradebook/tool/helper helper-app/src/webapp helper-app/src/webapp/WEB-INF helper-app/src/webapp/content helper-app/src/webapp/content/templates helper-app/src/webapp/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 12 01:29:34 2007 +X-DSPAM-Confidence: 0.9791 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39131 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-12 01:03:24 -0500 (Wed, 12 Dec 2007) +New Revision: 39131 + +Added: +gradebook/trunk/helper-app/ +gradebook/trunk/helper-app/pom.xml +gradebook/trunk/helper-app/src/ +gradebook/trunk/helper-app/src/java/ +gradebook/trunk/helper-app/src/java/org/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProducer.java +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/ +gradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java +gradebook/trunk/helper-app/src/webapp/ +gradebook/trunk/helper-app/src/webapp/WEB-INF/ +gradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml +gradebook/trunk/helper-app/src/webapp/WEB-INF/requestContext.xml +gradebook/trunk/helper-app/src/webapp/WEB-INF/web.xml +gradebook/trunk/helper-app/src/webapp/content/ +gradebook/trunk/helper-app/src/webapp/content/css/ +gradebook/trunk/helper-app/src/webapp/content/js/ +gradebook/trunk/helper-app/src/webapp/content/templates/ +gradebook/trunk/helper-app/src/webapp/content/templates/assignment_add-gradebook-item.html +gradebook/trunk/helper-app/src/webapp/tools/ +gradebook/trunk/helper-app/src/webapp/tools/sakai.gradebook.helpers.xml +Log: +NOJIRA Working on POST style Gradeitem Helper + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Dec 11 23:56:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 23:56:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 23:56:36 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by panther.mail.umich.edu () with ESMTP id lBC4uZHk031437; + Tue, 11 Dec 2007 23:56:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 475F69FD.A4EA3.13803 ; + 11 Dec 2007 23:56:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5CA499B461; + Wed, 12 Dec 2007 04:56:27 +0000 (GMT) +Message-ID: <200712120448.lBC4mn2B004010@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 63 + for ; + Wed, 12 Dec 2007 04:56:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8D16131B0D + for ; Wed, 12 Dec 2007 04:56:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC4mnfM004012 + for ; Tue, 11 Dec 2007 23:48:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC4mn2B004010 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 23:48:49 -0500 +Date: Tue, 11 Dec 2007 23:48:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39130 - content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 23:56:36 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39130 + +Author: jimeng@umich.edu +Date: 2007-12-11 23:48:45 -0500 (Tue, 11 Dec 2007) +New Revision: 39130 + +Modified: +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +Log: +SAK-12238 +Merging in changes from sak jira ticket 12426 to allow quota query to replace cache for getting size of site resources collection. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Dec 11 23:34:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 23:34:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 23:34:42 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBC4YfJC020812; + Tue, 11 Dec 2007 23:34:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 475F64DA.1342D.30317 ; + 11 Dec 2007 23:34:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4F1445A8CE; + Wed, 12 Dec 2007 04:34:45 +0000 (GMT) +Message-ID: <200712120426.lBC4QqUa003998@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38 + for ; + Wed, 12 Dec 2007 04:34:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C3CFD3560A + for ; Wed, 12 Dec 2007 04:34:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC4Qqnm004000 + for ; Tue, 11 Dec 2007 23:26:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC4QqUa003998 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 23:26:52 -0500 +Date: Tue, 11 Dec 2007 23:26:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39129 - in content/trunk: content-api/api/src/java/org/sakaiproject/content/api content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 23:34:42 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39129 + +Author: jimeng@umich.edu +Date: 2007-12-11 23:26:44 -0500 (Tue, 11 Dec 2007) +New Revision: 39129 + +Modified: +content/trunk/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12426 +Use new query if new columns are ready. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Tue Dec 11 20:19:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 20:19:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 20:19:22 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by chaos.mail.umich.edu () with ESMTP id lBC1JLFf014594; + Tue, 11 Dec 2007 20:19:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 475F3712.6A5D6.6102 ; + 11 Dec 2007 20:19:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C9AF69B356; + Wed, 12 Dec 2007 00:34:33 +0000 (GMT) +Message-ID: <200712120008.lBC08Qvc003703@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494 + for ; + Wed, 12 Dec 2007 00:33:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B983135096 + for ; Wed, 12 Dec 2007 00:15:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC08QDH003705 + for ; Tue, 11 Dec 2007 19:08:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC08Qvc003703 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 19:08:26 -0500 +Date: Tue, 11 Dec 2007 19:08:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r39128 - in sam/trunk: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-app/src/webapp/jsf/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/services +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 20:19:22 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39128 + +Author: ktsao@stanford.edu +Date: 2007-12-11 19:08:16 -0500 (Tue, 11 Dec 2007) +New Revision: 39128 + +Modified: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java +sam/trunk/samigo-app/src/webapp/jsf/evaluation/totalScores.jsp +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java +Log: +revert last checkin for SAK-12098 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Tue Dec 11 19:00:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 19:00:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 19:00:21 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by score.mail.umich.edu () with ESMTP id lBC00JUc024481; + Tue, 11 Dec 2007 19:00:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 475F248C.D9CC1.13253 ; + 11 Dec 2007 19:00:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 968709988F; + Wed, 12 Dec 2007 00:00:07 +0000 (GMT) +Message-ID: <200712112352.lBBNqKOM003656@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 504 + for ; + Tue, 11 Dec 2007 23:59:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9D69F34EAE + for ; Tue, 11 Dec 2007 23:59:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNqKsq003658 + for ; Tue, 11 Dec 2007 18:52:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNqKOM003656 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:52:20 -0500 +Date: Tue, 11 Dec 2007 18:52:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39127 - in component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject: component/impl util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 19:00:21 2007 +X-DSPAM-Confidence: 0.6945 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39127 + +Author: ray@media.berkeley.edu +Date: 2007-12-11 18:52:11 -0500 (Tue, 11 Dec 2007) +New Revision: 39127 + +Added: +component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentApplicationContext.java +component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ContainerApplicationContext.java +Removed: +component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java +Modified: +component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java +Log: +Show how application context hierarchies and proxied component services can be combined with normal Spring bean-definition-based configuration; not bothering to work around Ehcache and Hibernate issues since all-or-nothing implicit proxying seems too problematic to pursue + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Tue Dec 11 18:51:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 18:51:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 18:51:40 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lBBNpdfV011970; + Tue, 11 Dec 2007 18:51:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 475F2280.13E5E.727 ; + 11 Dec 2007 18:51:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 869FB50B73; + Tue, 11 Dec 2007 23:51:27 +0000 (GMT) +Message-ID: <200712112343.lBBNho2t003644@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 830 + for ; + Tue, 11 Dec 2007 23:51:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A753434EAE + for ; Tue, 11 Dec 2007 23:51:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNhovc003646 + for ; Tue, 11 Dec 2007 18:43:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNho2t003644 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:43:50 -0500 +Date: Tue, 11 Dec 2007 18:43:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39126 - component/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 18:51:40 2007 +X-DSPAM-Confidence: 0.7548 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39126 + +Author: ray@media.berkeley.edu +Date: 2007-12-11 18:43:47 -0500 (Tue, 11 Dec 2007) +New Revision: 39126 + +Added: +component/branches/SAK-8315-SAK-12166/ +Log: +Temporary branch for proof of concept combination of standard bean definition configurations and proxied component services + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Dec 11 18:42:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 18:42:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 18:42:03 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lBBNg18f011569; + Tue, 11 Dec 2007 18:42:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475F2044.FD1.7445 ; + 11 Dec 2007 18:41:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ED7E1517C3; + Tue, 11 Dec 2007 23:41:52 +0000 (GMT) +Message-ID: <200712112334.lBBNY7s0003632@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 527 + for ; + Tue, 11 Dec 2007 23:41:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 285AB34E38 + for ; Tue, 11 Dec 2007 23:41:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNY8Ef003634 + for ; Tue, 11 Dec 2007 18:34:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNY7s0003632 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:34:07 -0500 +Date: Tue, 11 Dec 2007 18:34:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39125 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 18:42:03 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39125 + +Author: jimeng@umich.edu +Date: 2007-12-11 18:34:03 -0500 (Tue, 11 Dec 2007) +New Revision: 39125 + +Modified: +content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +SAK-12402 +Remove pipe from tool-session when it is found and actioned is not completed, canceled or in error condition. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Tue Dec 11 18:23:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 18:23:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 18:23:36 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id lBBNNY4F003476; + Tue, 11 Dec 2007 18:23:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 475F1BF1.8F5F2.19991 ; + 11 Dec 2007 18:23:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E944251AC2; + Tue, 11 Dec 2007 23:23:26 +0000 (GMT) +Message-ID: <200712112315.lBBNFpqX003595@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 411 + for ; + Tue, 11 Dec 2007 23:23:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB55A316EF + for ; Tue, 11 Dec 2007 23:23:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNFpSX003597 + for ; Tue, 11 Dec 2007 18:15:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNFpqX003595 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:15:51 -0500 +Date: Tue, 11 Dec 2007 18:15:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r39124 - sections/branches/sakai_2-5-x/sections-app-util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 18:23:36 2007 +X-DSPAM-Confidence: 0.6939 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39124 + +Author: louis@media.berkeley.edu +Date: 2007-12-11 18:15:47 -0500 (Tue, 11 Dec 2007) +New Revision: 39124 + +Modified: +sections/branches/sakai_2-5-x/sections-app-util/src/bundle/sections.properties +Log: +SAK-9274 TA role can't assign TAs in Section Info; instructions indicate that TAs can + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Tue Dec 11 17:56:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 17:56:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 17:56:15 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by flawless.mail.umich.edu () with ESMTP id lBBMuEZu019299; + Tue, 11 Dec 2007 17:56:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 475F1587.C45B8.12352 ; + 11 Dec 2007 17:56:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5C9689B12F; + Tue, 11 Dec 2007 22:56:06 +0000 (GMT) +Message-ID: <200712112248.lBBMmVOR003557@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022 + for ; + Tue, 11 Dec 2007 22:55:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D0AE7350CB + for ; Tue, 11 Dec 2007 22:55:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBMmVNU003559 + for ; Tue, 11 Dec 2007 17:48:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBMmVOR003557 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 17:48:31 -0500 +Date: Tue, 11 Dec 2007 17:48:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r39123 - in sam/trunk: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-services samigo-services/src/java/org/sakaiproject/tool/assessment/services +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 17:56:15 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39123 + +Author: ktsao@stanford.edu +Date: 2007-12-11 17:48:22 -0500 (Tue, 11 Dec 2007) +New Revision: 39123 + +Modified: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreUpdateListener.java +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/StudentScoreUpdateListener.java +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java +sam/trunk/samigo-services/pom.xml +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java +Log: +SAK-12348 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gbhatnag@umich.edu Tue Dec 11 17:42:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 17:42:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 17:42:41 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id lBBMgeZH005085; + Tue, 11 Dec 2007 17:42:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 475F1259.9E08E.9848 ; + 11 Dec 2007 17:42:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 539636D6F2; + Tue, 11 Dec 2007 22:42:31 +0000 (GMT) +Message-ID: <200712112234.lBBMYoHA003526@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859 + for ; + Tue, 11 Dec 2007 22:42:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B8DB316EA + for ; Tue, 11 Dec 2007 22:42:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBMYpl5003528 + for ; Tue, 11 Dec 2007 17:34:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBMYoHA003526 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 17:34:50 -0500 +Date: Tue, 11 Dec 2007 17:34:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gbhatnag@umich.edu using -f +To: source@collab.sakaiproject.org +From: gbhatnag@umich.edu +Subject: [sakai] svn commit: r39122 - in citations/trunk: citations-impl/impl/src/java/org/sakaiproject/citation/impl citations-tool/tool/src/webapp/vm/citation citations-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 17:42:41 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39122 + +Author: gbhatnag@umich.edu +Date: 2007-12-11 17:34:44 -0500 (Tue, 11 Dec 2007) +New Revision: 39122 + +Modified: +citations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseSearchManager.java +citations/trunk/citations-tool/tool/src/webapp/vm/citation/_databases.vm +citations/trunk/citations-util/util/src/bundle/citations.properties +Log: +SAK-11999 catching for undefined databases and empty categories in BaseSearchManager.BasicSearchDatabaseHierarchy.BasicSearchCategory. Template changes to account for empty categories. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Tue Dec 11 17:13:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 17:13:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 17:13:12 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by chaos.mail.umich.edu () with ESMTP id lBBMDBQY030296; + Tue, 11 Dec 2007 17:13:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 475F0B6E.AD148.7188 ; + 11 Dec 2007 17:13:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07C8B9ABD6; + Tue, 11 Dec 2007 22:13:00 +0000 (GMT) +Message-ID: <200712112205.lBBM58ab003483@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 591 + for ; + Tue, 11 Dec 2007 22:12:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EC4EF316EF + for ; Tue, 11 Dec 2007 22:12:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBM583a003485 + for ; Tue, 11 Dec 2007 17:05:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBM58ab003483 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 17:05:08 -0500 +Date: Tue, 11 Dec 2007 17:05:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r39121 - sam/trunk/samigo-app/src/webapp/jsf/delivery +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 17:13:12 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39121 + +Author: ktsao@stanford.edu +Date: 2007-12-11 17:05:03 -0500 (Tue, 11 Dec 2007) +New Revision: 39121 + +Modified: +sam/trunk/samigo-app/src/webapp/jsf/delivery/deliverAssessment.jsp +Log: +SAK-12269 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 16:06:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 16:06:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 16:06:29 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id lBBL6Sox006081; + Tue, 11 Dec 2007 16:06:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 475EFBCF.6C858.13190 ; + 11 Dec 2007 16:06:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4757A9B189; + Tue, 11 Dec 2007 21:06:12 +0000 (GMT) +Message-ID: <200712112058.lBBKwVn0003283@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 830 + for ; + Tue, 11 Dec 2007 21:05:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7CEB3152D + for ; Tue, 11 Dec 2007 21:05:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKwVTx003285 + for ; Tue, 11 Dec 2007 15:58:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKwVn0003283 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:58:31 -0500 +Date: Tue, 11 Dec 2007 15:58:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39120 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 16:06:29 2007 +X-DSPAM-Confidence: 0.9795 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39120 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 15:58:30 -0500 (Tue, 11 Dec 2007) +New Revision: 39120 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Including some more gradebook stuff and timeout alert + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 15:59:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 15:59:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 15:59:51 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lBBKxoTG013578; + Tue, 11 Dec 2007 15:59:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 475EFA40.30B6A.19991 ; + 11 Dec 2007 15:59:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 34EFB9B17A; + Tue, 11 Dec 2007 20:59:43 +0000 (GMT) +Message-ID: <200712112052.lBBKqBPe003270@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 629 + for ; + Tue, 11 Dec 2007 20:59:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4163234EA0 + for ; Tue, 11 Dec 2007 20:59:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKqBBc003272 + for ; Tue, 11 Dec 2007 15:52:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKqBPe003270 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:52:11 -0500 +Date: Tue, 11 Dec 2007 15:52:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39119 - in portal/branches/oncourse_opc_122007/portal-impl/impl/src: bundle java/org/sakaiproject/portal/charon +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 15:59:51 2007 +X-DSPAM-Confidence: 0.9888 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39119 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 15:52:09 -0500 (Tue, 11 Dec 2007) +New Revision: 39119 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle/sitenav.properties +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +Log: + +svn merge -c 39109 https://source.sakaiproject.org/svn/portal/branches/SAK-8152 +U portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +C portal-impl/impl/src/bundle/sitenav.properties + +svn log -r 39109 https://source.sakaiproject.org/svn/portal/branches/SAK-8152 +------------------------------------------------------------------------ +r39109 | josrodri@iupui.edu | 2007-12-11 14:10:26 -0500 (Tue, 11 Dec 2007) | 1 line + +SAK-8152: changes to support timeout alert popup - bundle messages for UI, changes to SkinnableCharonPortal.java to put additional values into context +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 15:58:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 15:58:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 15:58:22 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lBBKwLTA005931; + Tue, 11 Dec 2007 15:58:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 475EF9E5.7DA3.15408 ; + 11 Dec 2007 15:58:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0752E9B148; + Tue, 11 Dec 2007 20:58:12 +0000 (GMT) +Message-ID: <200712112050.lBBKoefm003258@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 986 + for ; + Tue, 11 Dec 2007 20:58:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D0D9134EA0 + for ; Tue, 11 Dec 2007 20:58:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKoeUA003260 + for ; Tue, 11 Dec 2007 15:50:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKoefm003258 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:50:40 -0500 +Date: Tue, 11 Dec 2007 15:50:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39118 - in oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp: js skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 15:58:22 2007 +X-DSPAM-Confidence: 0.8496 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39118 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 15:50:39 -0500 (Tue, 11 Dec 2007) +New Revision: 39118 + +Modified: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css +Log: +svn merge -c 39110 https://source.sakaiproject.org/svn/reference/branches/SAK-8152 +C library/src/webapp/skin/default/portal.css +C library/src/webapp/js/headscripts.js + +svn log -r 39110 https://source.sakaiproject.org/svn/reference/branches/SAK-8152 +------------------------------------------------------------------------ +r39110 | josrodri@iupui.edu | 2007-12-11 14:16:48 -0500 (Tue, 11 Dec 2007) | 1 line + +SAK-8152: display/hiding of timeout alert does via javascript, promoted css class portletTitleWrap to be on its own and not within #col1, etc. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 15:47:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 15:47:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 15:47:14 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lBBKlDpO011631; + Tue, 11 Dec 2007 15:47:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 475EF74B.86657.24164 ; + 11 Dec 2007 15:47:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 674EA9B148; + Tue, 11 Dec 2007 20:47:03 +0000 (GMT) +Message-ID: <200712112039.lBBKdGgQ003212@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 723 + for ; + Tue, 11 Dec 2007 20:46:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 821BA34EA0 + for ; Tue, 11 Dec 2007 20:46:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKdGJF003214 + for ; Tue, 11 Dec 2007 15:39:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKdGgQ003212 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:39:16 -0500 +Date: Tue, 11 Dec 2007 15:39:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39117 - in oncourse/branches/reference_overlay_oncourse_opc_122007/library: . src/webapp src/webapp/js src/webapp/skin src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 15:47:14 2007 +X-DSPAM-Confidence: 0.9792 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39117 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 15:39:14 -0500 (Tue, 11 Dec 2007) +New Revision: 39117 + +Removed: +oncourse/branches/reference_overlay_oncourse_opc_122007/library/maven.xml +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/content/ +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/image/ +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/jquery-1.1.2.js +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/jquery.js +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/searchbox.js +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/access.css +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/images/ +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/tool.css +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/home/ +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/portfolio/ +oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/tool_base.css +Log: +removing unneeded stuff + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 15:39:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 15:39:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 15:39:40 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by casino.mail.umich.edu () with ESMTP id lBBKddAl001070; + Tue, 11 Dec 2007 15:39:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475EF585.8C047.18010 ; + 11 Dec 2007 15:39:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 476609B14B; + Tue, 11 Dec 2007 20:39:29 +0000 (GMT) +Message-ID: <200712112031.lBBKVoed003200@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 160 + for ; + Tue, 11 Dec 2007 20:39:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7B8FC34EA0 + for ; Tue, 11 Dec 2007 20:39:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKVom2003202 + for ; Tue, 11 Dec 2007 15:31:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKVoed003200 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:31:50 -0500 +Date: Tue, 11 Dec 2007 15:31:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39116 - oncourse/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 15:39:40 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39116 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 15:31:49 -0500 (Tue, 11 Dec 2007) +New Revision: 39116 + +Added: +oncourse/branches/reference_overlay_oncourse_opc_122007/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gbhatnag@umich.edu Tue Dec 11 15:12:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 15:12:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 15:12:30 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id lBBKCUuq018779; + Tue, 11 Dec 2007 15:12:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 475EEF26.E5853.15117 ; + 11 Dec 2007 15:12:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 10EB59B114; + Tue, 11 Dec 2007 20:12:22 +0000 (GMT) +Message-ID: <200712112004.lBBK4f6W003089@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 517 + for ; + Tue, 11 Dec 2007 20:12:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 21FB933C77 + for ; Tue, 11 Dec 2007 20:12:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBK4gJW003091 + for ; Tue, 11 Dec 2007 15:04:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBK4f6W003089 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:04:42 -0500 +Date: Tue, 11 Dec 2007 15:04:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gbhatnag@umich.edu using -f +To: source@collab.sakaiproject.org +From: gbhatnag@umich.edu +Subject: [sakai] svn commit: r39115 - citations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 15:12:30 2007 +X-DSPAM-Confidence: 0.9825 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39115 + +Author: gbhatnag@umich.edu +Date: 2007-12-11 15:04:40 -0500 (Tue, 11 Dec 2007) +New Revision: 39115 + +Modified: +citations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +Log: +SAK-11362 using the pipe's initializationId to track a new Resources action and point the user to the proper starting view instead of entering a view that is not in a sane state, avoiding giving the user an unusable interface. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Dec 11 15:11:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 15:11:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 15:11:08 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lBBKB7Dn023033; + Tue, 11 Dec 2007 15:11:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 475EEEC9.5DDDB.19253 ; + 11 Dec 2007 15:10:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8B7F29B116; + Tue, 11 Dec 2007 20:10:45 +0000 (GMT) +Message-ID: <200712112003.lBBK37pb003077@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 154 + for ; + Tue, 11 Dec 2007 20:10:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C3B9134E24 + for ; Tue, 11 Dec 2007 20:10:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBK37oX003079 + for ; Tue, 11 Dec 2007 15:03:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBK37pb003077 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:03:07 -0500 +Date: Tue, 11 Dec 2007 15:03:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39114 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 15:11:08 2007 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39114 + +Author: dlhaines@umich.edu +Date: 2007-12-11 15:03:06 -0500 (Tue, 11 Dec 2007) +New Revision: 39114 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update patch configuration for 2.4.xQ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 15:02:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 15:02:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 15:02:54 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by mission.mail.umich.edu () with ESMTP id lBBK2p8h015907; + Tue, 11 Dec 2007 15:02:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475EECE4.34BEC.27016 ; + 11 Dec 2007 15:02:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A41A39AC21; + Tue, 11 Dec 2007 20:02:41 +0000 (GMT) +Message-ID: <200712111954.lBBJspCF003045@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366 + for ; + Tue, 11 Dec 2007 20:02:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 199BE34E1A + for ; Tue, 11 Dec 2007 20:02:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJsqrB003047 + for ; Tue, 11 Dec 2007 14:54:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJspCF003045 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:54:51 -0500 +Date: Tue, 11 Dec 2007 14:54:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39113 - in gradebook/branches/oncourse_opc_122007/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 15:02:54 2007 +X-DSPAM-Confidence: 0.7626 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39113 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 14:54:49 -0500 (Tue, 11 Dec 2007) +New Revision: 39113 + +Modified: +gradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/addAssignment.jsp +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/js/multiItemAdd.js +Log: +svn merge -c 38968 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +U app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +U app/ui/src/webapp/inc/bulkNewItems.jspf +U app/ui/src/webapp/js/multiItemAdd.js +U app/ui/src/webapp/addAssignment.jsp + +svn log -r 38968 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r38968 | josrodri@iupui.edu | 2007-12-04 15:36:51 -0500 (Tue, 04 Dec 2007) | 4 lines + +SAK-12285: removed dropdown to expose a specific number of add panes at once +SAK-12287: added highlight for alternate add panes (Resources file upload pane styling/coloring) +SAK-12288: trivial capitalization fix +SAK-12286: re-added '* means required' text to add page +------------------------------------------------------------------------ + +svn merge -c 39030 https://source.sakaiproject.org/svn/gradebook/trunk +G app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +G app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +G app/ui/src/webapp/inc/bulkNewItems.jspf +G app/ui/src/webapp/js/multiItemAdd.js + +svn log -r 39030 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39030 | josrodri@iupui.edu | 2007-12-07 10:51:35 -0500 (Fri, 07 Dec 2007) | 3 lines + +SAK-12114: main bulk gradebook item add +SAK-12287: redid styling +SAK-12284: removal of item in FF with exactly 2 items now working +------------------------------------------------------------------------ + +svn merge -c 39111 https://source.sakaiproject.org/svn/gradebook/trunk +U app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java + +svn log -r 39111 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r39111 | cwen@iupui.edu | 2007-12-11 14:26:27 -0500 (Tue, 11 Dec 2007) | 1 line + +SAK-10427 & SAK-12114 => bulk creation for ungraded items. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 11 14:51:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 14:51:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 14:51:17 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lBBJpGEa010402; + Tue, 11 Dec 2007 14:51:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475EEA2E.E49E3.1817 ; + 11 Dec 2007 14:51:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3DA509B0E5; + Tue, 11 Dec 2007 19:50:57 +0000 (GMT) +Message-ID: <200712111943.lBBJh6XA003023@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 410 + for ; + Tue, 11 Dec 2007 19:50:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C0A9934C67 + for ; Tue, 11 Dec 2007 19:50:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJh60Z003025 + for ; Tue, 11 Dec 2007 14:43:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJh6XA003023 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:43:06 -0500 +Date: Tue, 11 Dec 2007 14:43:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39112 - in gradebook/branches/oncourse_opc_122007: app/business/src/java/org/sakaiproject/tool/gradebook/business app/business/src/java/org/sakaiproject/tool/gradebook/business/impl app/business/src/sql/mysql app/business/src/sql/oracle app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle app/ui/src/java/org/sakaiproject/tool/gradebook/jsf app/ui/src/java/org/sakaiproject/tool/gradebook/ui app/ui/src/webapp app/ui/src/webapp/inc service/api/src/java/org/sakaiproject/service/gradebook/shared service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook service/hibernate/src/java/org/sakaiproject/tool/gradebook service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 14:51:17 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39112 + +Author: cwen@iupui.edu +Date: 2007-12-11 14:43:02 -0500 (Tue, 11 Dec 2007) +New Revision: 39112 + +Modified: +gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/branches/oncourse_opc_122007/app/business/src/sql/mysql/SAK-10427.sql +gradebook/branches/oncourse_opc_122007/app/business/src/sql/oracle/SAK-10427.sql +gradebook/branches/oncourse_opc_122007/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java +gradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/assignmentDetails.jsp +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/gradebookSetup.jsp +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/assignmentEditing.jspf +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/instructorView.jsp +gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/branches/oncourse_opc_122007/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml +gradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Assignment.java +gradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java +gradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Category.java +gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +merge for SAK-10427 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Dec 11 14:34:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 14:34:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 14:34:28 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lBBJYRgX029388; + Tue, 11 Dec 2007 14:34:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 475EE63D.78748.25369 ; + 11 Dec 2007 14:34:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 562369B0B2; + Tue, 11 Dec 2007 19:34:19 +0000 (GMT) +Message-ID: <200712111926.lBBJQSrv002975@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 424 + for ; + Tue, 11 Dec 2007 19:33:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A25C634C9D + for ; Tue, 11 Dec 2007 19:33:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJQShD002977 + for ; Tue, 11 Dec 2007 14:26:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJQSrv002975 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:26:28 -0500 +Date: Tue, 11 Dec 2007 14:26:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r39111 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 14:34:28 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39111 + +Author: cwen@iupui.edu +Date: 2007-12-11 14:26:27 -0500 (Tue, 11 Dec 2007) +New Revision: 39111 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +SAK-10427 & SAK-12114 => bulk creation for ungraded items. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Dec 11 14:24:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 14:24:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 14:24:48 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id lBBJOk4I006053; + Tue, 11 Dec 2007 14:24:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 475EE3F9.63D0.23778 ; + 11 Dec 2007 14:24:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 46D179B021; + Tue, 11 Dec 2007 19:24:37 +0000 (GMT) +Message-ID: <200712111916.lBBJGomV002954@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 412 + for ; + Tue, 11 Dec 2007 19:24:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 49D1F34C9D + for ; Tue, 11 Dec 2007 19:24:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJGo5J002956 + for ; Tue, 11 Dec 2007 14:16:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJGomV002954 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:16:50 -0500 +Date: Tue, 11 Dec 2007 14:16:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39110 - in reference/branches/SAK-8152/library/src/webapp: js skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 14:24:48 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39110 + +Author: josrodri@iupui.edu +Date: 2007-12-11 14:16:48 -0500 (Tue, 11 Dec 2007) +New Revision: 39110 + +Modified: +reference/branches/SAK-8152/library/src/webapp/js/headscripts.js +reference/branches/SAK-8152/library/src/webapp/skin/default/portal.css +Log: +SAK-8152: display/hiding of timeout alert does via javascript, promoted css class portletTitleWrap to be on its own and not within #col1, etc. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Dec 11 14:18:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 14:18:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 14:18:16 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lBBJIF9J018204; + Tue, 11 Dec 2007 14:18:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 475EE26F.5CBCA.26175 ; + 11 Dec 2007 14:18:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0037F99753; + Tue, 11 Dec 2007 19:18:04 +0000 (GMT) +Message-ID: <200712111910.lBBJASdb002942@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 919 + for ; + Tue, 11 Dec 2007 19:17:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 32FF734D47 + for ; Tue, 11 Dec 2007 19:17:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJASSg002944 + for ; Tue, 11 Dec 2007 14:10:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJASdb002942 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:10:28 -0500 +Date: Tue, 11 Dec 2007 14:10:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39109 - in portal/branches/SAK-8152/portal-impl/impl/src: bundle java/org/sakaiproject/portal/charon +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 14:18:16 2007 +X-DSPAM-Confidence: 0.9826 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39109 + +Author: josrodri@iupui.edu +Date: 2007-12-11 14:10:26 -0500 (Tue, 11 Dec 2007) +New Revision: 39109 + +Modified: +portal/branches/SAK-8152/portal-impl/impl/src/bundle/sitenav.properties +portal/branches/SAK-8152/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +Log: +SAK-8152: changes to support timeout alert popup - bundle messages for UI, changes to SkinnableCharonPortal.java to put additional values into context + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Dec 11 13:28:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 13:28:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 13:28:39 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id lBBIScu1024968; + Tue, 11 Dec 2007 13:28:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 475ED6C8.19C8C.23078 ; + 11 Dec 2007 13:28:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 63C8E9984B; + Tue, 11 Dec 2007 18:28:09 +0000 (GMT) +Message-ID: <200712111808.lBBI8Blt002875@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 398 + for ; + Tue, 11 Dec 2007 18:15:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 32F4234C9D + for ; Tue, 11 Dec 2007 18:15:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBI8BY2002877 + for ; Tue, 11 Dec 2007 13:08:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBI8Blt002875 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 13:08:11 -0500 +Date: Tue, 11 Dec 2007 13:08:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r39108 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 13:28:39 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39108 + +Author: dlhaines@umich.edu +Date: 2007-12-11 13:08:09 -0500 (Tue, 11 Dec 2007) +New Revision: 39108 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: add latest assignments post-2-4 to build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Dec 11 12:58:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 12:58:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 12:58:11 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id lBBHwBZE013206; + Tue, 11 Dec 2007 12:58:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 475ECFAE.35CA9.12543 ; + 11 Dec 2007 12:58:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D4C0A9AFD8; + Tue, 11 Dec 2007 17:40:59 +0000 (GMT) +Message-ID: <200712111719.lBBHJMGp002734@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 480 + for ; + Tue, 11 Dec 2007 17:40:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B507A34C85 + for ; Tue, 11 Dec 2007 17:26:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBHJMqC002736 + for ; Tue, 11 Dec 2007 12:19:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBHJMGp002734 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 12:19:22 -0500 +Date: Tue, 11 Dec 2007 12:19:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39107 - assignment/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 12:58:11 2007 +X-DSPAM-Confidence: 0.9902 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39107 + +Author: zqian@umich.edu +Date: 2007-12-11 12:19:21 -0500 (Tue, 11 Dec 2007) +New Revision: 39107 + +Removed: +assignment/branches/post-2-4-solution1/ +Log: +The branch is no longer needed. Was created for testing a fix only. And the fix has been merged into post-2-4 in r39106. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Dec 11 12:42:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 12:42:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 12:42:20 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lBBHgJAV027157; + Tue, 11 Dec 2007 12:42:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 475ECBEE.75097.20141 ; + 11 Dec 2007 12:42:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ACA9F9AF41; + Tue, 11 Dec 2007 17:25:00 +0000 (GMT) +Message-ID: <200712111716.lBBHGCaC002708@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 520 + for ; + Tue, 11 Dec 2007 17:23:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2BFB334C7B + for ; Tue, 11 Dec 2007 17:23:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBHGC0e002710 + for ; Tue, 11 Dec 2007 12:16:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBHGCaC002708 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 12:16:12 -0500 +Date: Tue, 11 Dec 2007 12:16:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39106 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 12:42:20 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39106 + +Author: zqian@umich.edu +Date: 2007-12-11 12:16:10 -0500 (Tue, 11 Dec 2007) +New Revision: 39106 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +Log: +Fix to SAK-11821: + +commit the connection to avoid the 'set transaction' problem message when running with Oracle. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Tue Dec 11 10:21:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 10:21:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 10:21:17 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by panther.mail.umich.edu () with ESMTP id lBBFLG25004960; + Tue, 11 Dec 2007 10:21:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 475EAAE1.16046.31199 ; + 11 Dec 2007 10:21:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F053E9AAD6; + Tue, 11 Dec 2007 15:21:03 +0000 (GMT) +Message-ID: <200712111513.lBBFDMjt002426@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 672 + for ; + Tue, 11 Dec 2007 15:20:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9580134B46 + for ; Tue, 11 Dec 2007 15:20:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBFDMRB002428 + for ; Tue, 11 Dec 2007 10:13:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBFDMjt002426 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 10:13:22 -0500 +Date: Tue, 11 Dec 2007 10:13:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39105 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 10:21:17 2007 +X-DSPAM-Confidence: 0.9806 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39105 + +Author: wagnermr@iupui.edu +Date: 2007-12-11 10:13:21 -0500 (Tue, 11 Dec 2007) +New Revision: 39105 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getAllGbItems + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 10:06:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 10:06:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 10:06:08 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id lBBF672u021652; + Tue, 11 Dec 2007 10:06:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 475EA744.405FE.23734 ; + 11 Dec 2007 10:05:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 296529AA72; + Tue, 11 Dec 2007 15:05:11 +0000 (GMT) +Message-ID: <200712111458.lBBEw6Jt002360@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 684 + for ; + Tue, 11 Dec 2007 15:04:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3775831555 + for ; Tue, 11 Dec 2007 15:05:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEw6vj002362 + for ; Tue, 11 Dec 2007 09:58:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEw6Jt002360 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:58:06 -0500 +Date: Tue, 11 Dec 2007 09:58:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39104 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 10:06:08 2007 +X-DSPAM-Confidence: 0.8419 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39104 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 09:58:05 -0500 (Tue, 11 Dec 2007) +New Revision: 39104 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Revving up externals + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 11 09:51:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 09:51:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 09:51:29 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by jacknife.mail.umich.edu () with ESMTP id lBBEpTvj019488; + Tue, 11 Dec 2007 09:51:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 475EA3E2.B10F9.4939 ; + 11 Dec 2007 09:51:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C8F129AAAE; + Tue, 11 Dec 2007 14:49:12 +0000 (GMT) +Message-ID: <200712111442.lBBEg4BV002332@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 168 + for ; + Tue, 11 Dec 2007 14:48:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9B17234AA5 + for ; Tue, 11 Dec 2007 14:49:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEg4ew002334 + for ; Tue, 11 Dec 2007 09:42:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEg4BV002332 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:42:04 -0500 +Date: Tue, 11 Dec 2007 09:42:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39103 - msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 09:51:29 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39103 + +Author: chmaurer@iupui.edu +Date: 2007-12-11 09:42:03 -0500 (Tue, 11 Dec 2007) +New Revision: 39103 + +Modified: +msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java +Log: +svn merge -c 39087 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java + +svn log -r 39087 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r39087 | wang58@iupui.edu | 2007-12-10 13:48:59 -0500 (Mon, 10 Dec 2007) | 1 line + +SAK-12176 Messages-Send cc to recipients' email address(es). +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 11 09:39:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 09:39:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 09:39:18 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by flawless.mail.umich.edu () with ESMTP id lBBEdIRv019319; + Tue, 11 Dec 2007 09:39:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 475EA10F.E9C15.24282 ; + 11 Dec 2007 09:39:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E4D176AB54; + Tue, 11 Dec 2007 14:39:04 +0000 (GMT) +Message-ID: <200712111431.lBBEVULf002293@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1015 + for ; + Tue, 11 Dec 2007 14:38:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 96BFD2DFFA + for ; Tue, 11 Dec 2007 14:38:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEVUNe002295 + for ; Tue, 11 Dec 2007 09:31:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEVULf002293 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:31:30 -0500 +Date: Tue, 11 Dec 2007 09:31:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39102 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 09:39:18 2007 +X-DSPAM-Confidence: 0.9777 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39102 + +Author: gjthomas@iupui.edu +Date: 2007-12-11 09:31:30 -0500 (Tue, 11 Dec 2007) +New Revision: 39102 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-7924 - Adding some debugging for oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 11 09:38:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 09:38:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 09:38:18 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lBBEcImC018826; + Tue, 11 Dec 2007 09:38:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 475EA0D4.7104A.9601 ; + 11 Dec 2007 09:38:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D7E4F9AA8E; + Tue, 11 Dec 2007 14:37:57 +0000 (GMT) +Message-ID: <200712111430.lBBEUUIX002267@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 261 + for ; + Tue, 11 Dec 2007 14:37:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 699FF2DFFA + for ; Tue, 11 Dec 2007 14:37:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEUUHM002269 + for ; Tue, 11 Dec 2007 09:30:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEUUIX002267 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:30:30 -0500 +Date: Tue, 11 Dec 2007 09:30:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39101 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 09:38:18 2007 +X-DSPAM-Confidence: 0.8428 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39101 + +Author: gjthomas@iupui.edu +Date: 2007-12-11 09:30:29 -0500 (Tue, 11 Dec 2007) +New Revision: 39101 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java +Log: +SAK-7924 - Adding some debugging for oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Dec 11 09:37:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 09:37:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 09:37:07 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id lBBEb7EE012228; + Tue, 11 Dec 2007 09:37:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 475EA08D.E48E.13066 ; + 11 Dec 2007 09:37:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0744863792; + Tue, 11 Dec 2007 14:36:28 +0000 (GMT) +Message-ID: <200712111429.lBBETM4I002254@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529 + for ; + Tue, 11 Dec 2007 14:36:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BCDD434A90 + for ; Tue, 11 Dec 2007 14:36:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBETNFn002256 + for ; Tue, 11 Dec 2007 09:29:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBETM4I002254 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:29:22 -0500 +Date: Tue, 11 Dec 2007 09:29:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39100 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 09:37:07 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39100 + +Author: gjthomas@iupui.edu +Date: 2007-12-11 09:29:21 -0500 (Tue, 11 Dec 2007) +New Revision: 39100 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +SQL Update - will move related SQL to a seperate file + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Dec 11 03:00:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 11 Dec 2007 03:00:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 11 Dec 2007 03:00:52 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id lBB80pnm026214; + Tue, 11 Dec 2007 03:00:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 475E43AD.40DF1.31037 ; + 11 Dec 2007 03:00:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CC5A64FFC2; + Tue, 11 Dec 2007 08:00:43 +0000 (GMT) +Message-ID: <200712110753.lBB7r9Ph001318@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761 + for ; + Tue, 11 Dec 2007 08:00:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B44EE309C9 + for ; Tue, 11 Dec 2007 08:00:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB7r920001320 + for ; Tue, 11 Dec 2007 02:53:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB7r9Ph001318 + for source@collab.sakaiproject.org; Tue, 11 Dec 2007 02:53:09 -0500 +Date: Tue, 11 Dec 2007 02:53:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r39099 - in entitybroker/trunk: api/src/java/org/sakaiproject/entitybroker api/src/java/org/sakaiproject/entitybroker/util tool/src/java/org/sakaiproject/entitybroker/servlet +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 11 03:00:52 2007 +X-DSPAM-Confidence: 0.7604 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39099 + +Author: aaronz@vt.edu +Date: 2007-12-11 02:52:59 -0500 (Tue, 11 Dec 2007) +New Revision: 39099 + +Added: +entitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util/ +entitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java +Modified: +entitybroker/trunk/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java +Log: +SAK-12408: Completed fix for the failures caused by classloader confusion, also added in ability for the direct servlet to handle all types of requests + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Dec 10 23:27:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 23:27:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 23:27:38 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lBB4Rbnq015615; + Mon, 10 Dec 2007 23:27:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 475E11B3.6A66A.31465 ; + 10 Dec 2007 23:27:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 627D650F59; + Tue, 11 Dec 2007 04:26:54 +0000 (GMT) +Message-ID: <200712110419.lBB4Jln5001162@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 468 + for ; + Tue, 11 Dec 2007 04:26:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CA4F9346F6 + for ; Tue, 11 Dec 2007 04:27:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB4JlVH001164 + for ; Mon, 10 Dec 2007 23:19:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB4Jln5001162 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 23:19:47 -0500 +Date: Mon, 10 Dec 2007 23:19:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39098 - metaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/registry +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 23:27:38 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39098 + +Author: jimeng@umich.edu +Date: 2007-12-10 23:19:44 -0500 (Mon, 10 Dec 2007) +New Revision: 39098 + +Modified: +metaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/registry/FormResourceType.java +Log: +SAK-12413 +Adding impl's for two new methods. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Dec 10 21:36:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 21:36:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 21:36:10 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lBB2aAMo009227; + Mon, 10 Dec 2007 21:36:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 475DF791.ECEBD.979 ; + 10 Dec 2007 21:36:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 083459A29E; + Tue, 11 Dec 2007 02:36:03 +0000 (GMT) +Message-ID: <200712110228.lBB2SMm8001138@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 261 + for ; + Tue, 11 Dec 2007 02:35:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1194F34658 + for ; Tue, 11 Dec 2007 02:35:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB2SNZr001140 + for ; Mon, 10 Dec 2007 21:28:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB2SMm8001138 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 21:28:22 -0500 +Date: Mon, 10 Dec 2007 21:28:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39097 - in entity/branches/SAK-12239: entity-api/api/src/java/org/sakaiproject/entity/api entity-api/api/src/java/org/sakaiproject/entity/api/serialize entity-util/util/src/java/org/sakaiproject/util entity-util/util/src/java/org/sakaiproject/util/serialize +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 21:36:10 2007 +X-DSPAM-Confidence: 0.8491 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39097 + +Author: jimeng@umich.edu +Date: 2007-12-10 21:28:06 -0500 (Mon, 10 Dec 2007) +New Revision: 39097 + +Added: +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/ +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/DataStreamEntitySerializer.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReader.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReaderHandler.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityParseException.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReader.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntitySerializer.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializableEntity.java +entity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializablePropertiesAccess.java +entity/branches/SAK-12239/entity-util/util/src/java/org/sakaiproject/util/serialize/ +entity/branches/SAK-12239/entity-util/util/src/java/org/sakaiproject/util/serialize/Type1BaseResourcePropertiesSerializer.java +Log: +SAK-12239 +Added classes for serialization and migration in SAK-12239 branch of entity + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Dec 10 21:33:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 21:33:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 21:33:42 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id lBB2XfX1012339; + Mon, 10 Dec 2007 21:33:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 475DF6FF.449D6.19501 ; + 10 Dec 2007 21:33:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E96BE9A2B0; + Tue, 11 Dec 2007 02:33:39 +0000 (GMT) +Message-ID: <200712110226.lBB2Q2XT001126@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534 + for ; + Tue, 11 Dec 2007 02:33:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A5A534656 + for ; Tue, 11 Dec 2007 02:33:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB2Q23N001128 + for ; Mon, 10 Dec 2007 21:26:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB2Q2XT001126 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 21:26:02 -0500 +Date: Mon, 10 Dec 2007 21:26:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39096 - content/branches/SAK-12239 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 21:33:42 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39096 + +Author: jimeng@umich.edu +Date: 2007-12-10 21:25:57 -0500 (Mon, 10 Dec 2007) +New Revision: 39096 + +Modified: +content/branches/SAK-12239/runconversion.sh +Log: +SAK-12239 +Added dependencies for runconversion script in SAK-12239 branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Dec 10 21:30:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 21:30:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 21:30:14 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by jacknife.mail.umich.edu () with ESMTP id lBB2UD4B031674; + Mon, 10 Dec 2007 21:30:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 475DF62F.89592.24656 ; + 10 Dec 2007 21:30:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B825298F3B; + Tue, 11 Dec 2007 02:30:11 +0000 (GMT) +Message-ID: <200712110222.lBB2MXU1001112@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690 + for ; + Tue, 11 Dec 2007 02:29:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E7DB634654 + for ; Tue, 11 Dec 2007 02:29:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB2MXew001114 + for ; Mon, 10 Dec 2007 21:22:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB2MXU1001112 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 21:22:33 -0500 +Date: Mon, 10 Dec 2007 21:22:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39095 - in db/branches/SAK-12239: db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect db-impl/impl/src/java/org/sakaiproject/db/impl db-util db-util/conversion db-util/conversion/src db-util/conversion/src/java db-util/conversion/src/java/org db-util/conversion/src/java/org/sakaiproject db-util/conversion/src/java/org/sakaiproject/util db-util/conversion/src/java/org/sakaiproject/util/conversion db-util/storage/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 21:30:14 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39095 + +Author: jimeng@umich.edu +Date: 2007-12-10 21:21:30 -0500 (Mon, 10 Dec 2007) +New Revision: 39095 + +Added: +db/branches/SAK-12239/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/ +db/branches/SAK-12239/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/SQLServerDialect2005.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDb2.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDefault.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlHSql.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMsSql.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMySql.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlOracle.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/SqlServiceSql.java +db/branches/SAK-12239/db-util/conversion/ +db/branches/SAK-12239/db-util/conversion/pom.xml +db/branches/SAK-12239/db-util/conversion/project.xml +db/branches/SAK-12239/db-util/conversion/runconversion.sh +db/branches/SAK-12239/db-util/conversion/src/ +db/branches/SAK-12239/db-util/conversion/src/java/ +db/branches/SAK-12239/db-util/conversion/src/java/org/ +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/ +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/ +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/ +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbBinarySingleStorage.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbDualSingleStorage.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DbSingleStorage.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DbSingleStorageReader.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlDb2.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlDefault.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlHSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlMsSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlMySql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlOracle.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/EntityReaderAdapter.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlDb2.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlDefault.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlHSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlMsSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlMySql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlOracle.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlDb2.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlDefault.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlHSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlMsSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlMySql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlOracle.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlDb2.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlDefault.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlHSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlMsSql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlMySql.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlOracle.java +Log: +SAK-12239 +added classes to db needed for SAK-12239 on post-2-4 branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Dec 10 17:10:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 17:10:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 17:10:42 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lBAMAfSo029512; + Mon, 10 Dec 2007 17:10:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 475DB955.B6464.13341 ; + 10 Dec 2007 17:10:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DA38A98AFF; + Mon, 10 Dec 2007 22:10:29 +0000 (GMT) +Message-ID: <200712102202.lBAM2odW024273@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 989 + for ; + Mon, 10 Dec 2007 22:10:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E7B782D4A8 + for ; Mon, 10 Dec 2007 22:10:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAM2oNS024275 + for ; Mon, 10 Dec 2007 17:02:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAM2odW024273 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 17:02:50 -0500 +Date: Mon, 10 Dec 2007 17:02:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r39094 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 17:10:42 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39094 + +Author: wagnermr@iupui.edu +Date: 2007-12-10 17:02:49 -0500 (Mon, 10 Dec 2007) +New Revision: 39094 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +Revise getViewableAssignmentsForCurrentUser to return assignments if in student role, as well + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Mon Dec 10 16:55:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 16:55:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 16:55:56 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lBALtr8U005077; + Mon, 10 Dec 2007 16:55:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 475DB5E4.BCE6.26990 ; + 10 Dec 2007 16:55:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C25229A102; + Mon, 10 Dec 2007 21:55:46 +0000 (GMT) +Message-ID: <200712102148.lBALm8Br024215@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425 + for ; + Mon, 10 Dec 2007 21:55:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EBFBE30E3B + for ; Mon, 10 Dec 2007 21:55:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBALm8YM024217 + for ; Mon, 10 Dec 2007 16:48:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBALm8Br024215 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 16:48:08 -0500 +Date: Mon, 10 Dec 2007 16:48:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39093 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 16:55:56 2007 +X-DSPAM-Confidence: 0.8424 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39093 + +Author: gjthomas@iupui.edu +Date: 2007-12-10 16:48:06 -0500 (Mon, 10 Dec 2007) +New Revision: 39093 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +SQL Update + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Dec 10 14:10:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 14:10:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 14:10:53 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by brazil.mail.umich.edu () with ESMTP id lBAJAqN5022211; + Mon, 10 Dec 2007 14:10:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 475D8F37.86FB.31138 ; + 10 Dec 2007 14:10:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D636E99EF4; + Mon, 10 Dec 2007 19:11:02 +0000 (GMT) +Message-ID: <200712101903.lBAJ30Rl022842@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 134 + for ; + Mon, 10 Dec 2007 19:10:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 395773430C + for ; Mon, 10 Dec 2007 19:10:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAJ30hF022844 + for ; Mon, 10 Dec 2007 14:03:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAJ30Rl022842 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 14:03:00 -0500 +Date: Mon, 10 Dec 2007 14:03:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39090 - reference/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 14:10:53 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39090 + +Author: rjlowe@iupui.edu +Date: 2007-12-10 14:02:59 -0500 (Mon, 10 Dec 2007) +New Revision: 39090 + +Added: +reference/branches/SAK-8152/ +Log: +Branch for SAK-8152 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Dec 10 14:10:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 14:10:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 14:10:13 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id lBAJACut026659; + Mon, 10 Dec 2007 14:10:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 475D8F00.706F5.21642 ; + 10 Dec 2007 14:09:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6956199B78; + Mon, 10 Dec 2007 19:09:55 +0000 (GMT) +Message-ID: <200712101902.lBAJ2GOb022828@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 418 + for ; + Mon, 10 Dec 2007 19:09:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 81C8D3430C + for ; Mon, 10 Dec 2007 19:09:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAJ2GZ3022830 + for ; Mon, 10 Dec 2007 14:02:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAJ2GOb022828 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 14:02:16 -0500 +Date: Mon, 10 Dec 2007 14:02:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39089 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 14:10:13 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39089 + +Author: rjlowe@iupui.edu +Date: 2007-12-10 14:02:15 -0500 (Mon, 10 Dec 2007) +New Revision: 39089 + +Added: +portal/branches/SAK-8152/ +Log: +Branch for SAK-8152 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Dec 10 13:35:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 13:35:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 13:35:51 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by awakenings.mail.umich.edu () with ESMTP id lBAIZomv028190; + Mon, 10 Dec 2007 13:35:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 475D86F9.9CADD.9533 ; + 10 Dec 2007 13:35:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 48D7A99DA5; + Mon, 10 Dec 2007 18:27:17 +0000 (GMT) +Message-ID: <200712101826.lBAIQRPT022688@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 635 + for ; + Mon, 10 Dec 2007 18:26:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2AD64342C7 + for ; Mon, 10 Dec 2007 18:33:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAIQRJI022690 + for ; Mon, 10 Dec 2007 13:26:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAIQRPT022688 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 13:26:27 -0500 +Date: Mon, 10 Dec 2007 13:26:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r39086 - in entitybroker/trunk: impl tool/src/java/org/sakaiproject/entitybroker/servlet +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 13:35:51 2007 +X-DSPAM-Confidence: 0.8481 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39086 + +Author: aaronz@vt.edu +Date: 2007-12-10 13:26:21 -0500 (Mon, 10 Dec 2007) +New Revision: 39086 + +Modified: +entitybroker/trunk/impl/pom.xml +entitybroker/trunk/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java +Log: +SAK-12408: Initial fix for the failures caused by classloader confusion, there will be more to this fix which allows the classloader to be specified by the accessmanager and possibly by the provider as well, still need to think about it more + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Mon Dec 10 11:35:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 11:35:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 11:35:53 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lBAGZl7q005687; + Mon, 10 Dec 2007 11:35:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 475D6ADC.B4063.31872 ; + 10 Dec 2007 11:35:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E33CB7A2B9; + Mon, 10 Dec 2007 16:35:39 +0000 (GMT) +Message-ID: <200712101628.lBAGSFiL022489@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 983 + for ; + Mon, 10 Dec 2007 16:35:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9FEF5B253 + for ; Mon, 10 Dec 2007 16:35:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAGSFAp022491 + for ; Mon, 10 Dec 2007 11:28:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAGSFiL022489 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 11:28:15 -0500 +Date: Mon, 10 Dec 2007 11:28:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39085 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 11:35:53 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39085 + +Author: gjthomas@iupui.edu +Date: 2007-12-10 11:28:14 -0500 (Mon, 10 Dec 2007) +New Revision: 39085 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +SQL Update + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 10 11:11:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 11:11:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 11:11:48 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lBAGBlOq025410; + Mon, 10 Dec 2007 11:11:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 475D6534.E60CF.4919 ; + 10 Dec 2007 11:11:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BEEC850869; + Mon, 10 Dec 2007 16:11:27 +0000 (GMT) +Message-ID: <200712101603.lBAG3kvd022322@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 787 + for ; + Mon, 10 Dec 2007 16:10:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9C5232BEFD + for ; Mon, 10 Dec 2007 16:10:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAG3kvk022324 + for ; Mon, 10 Dec 2007 11:03:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAG3kvd022322 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 11:03:46 -0500 +Date: Mon, 10 Dec 2007 11:03:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39084 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 11:11:48 2007 +X-DSPAM-Confidence: 0.7602 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39084 + +Author: zqian@umich.edu +Date: 2007-12-10 11:03:43 -0500 (Mon, 10 Dec 2007) +New Revision: 39084 + +Removed: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles-confirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSitePublishUnpublish.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-confirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-sendEmail.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-removeParticipants.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess-confirm.vm +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess.vm +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-12407: remove the no longer used vm templates from Worksite Setup tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Mon Dec 10 10:04:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 10 Dec 2007 10:04:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 10 Dec 2007 10:04:39 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lBAF4cqN021547; + Mon, 10 Dec 2007 10:04:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475D557F.DE41F.398 ; + 10 Dec 2007 10:04:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 84AB34F538; + Mon, 10 Dec 2007 15:04:41 +0000 (GMT) +Message-ID: <200712101456.lBAEur5L022222@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176 + for ; + Mon, 10 Dec 2007 15:04:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3F351238F7 + for ; Mon, 10 Dec 2007 15:04:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAEur3u022224 + for ; Mon, 10 Dec 2007 09:56:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAEur5L022222 + for source@collab.sakaiproject.org; Mon, 10 Dec 2007 09:56:53 -0500 +Date: Mon, 10 Dec 2007 09:56:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39083 - syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 10 10:04:39 2007 +X-DSPAM-Confidence: 0.8479 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39083 + +Author: josrodri@iupui.edu +Date: 2007-12-10 09:56:51 -0500 (Mon, 10 Dec 2007) +New Revision: 39083 + +Modified: +syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java +Log: +SAK-10894: merged patch back in, some code cleanup (removed commented out code) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Dec 9 23:27:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 09 Dec 2007 23:27:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 09 Dec 2007 23:27:07 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lBA4R6R1009269; + Sun, 9 Dec 2007 23:27:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 475CC015.3CB3.13202 ; + 9 Dec 2007 23:27:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0361F5886B; + Mon, 10 Dec 2007 04:24:57 +0000 (GMT) +Message-ID: <200712100419.lBA4JV48021471@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949 + for ; + Mon, 10 Dec 2007 04:24:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C9A3034120 + for ; Mon, 10 Dec 2007 04:26:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBA4JVCI021473 + for ; Sun, 9 Dec 2007 23:19:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBA4JV48021471 + for source@collab.sakaiproject.org; Sun, 9 Dec 2007 23:19:31 -0500 +Date: Sun, 9 Dec 2007 23:19:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39082 - in content/branches/SAK-12239: content-api/api content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/api/providers content-impl/impl/src content-impl/impl/src/sql content-impl/impl/src/sql/mssql content-impl/impl/src/test content-impl/impl/src/test/org content-impl/impl/src/test/org/sakaiproject content-impl/impl/src/test/org/sakaiproject/content content-impl/impl/src/test/org/sakaiproject/content/impl content-impl/impl/src/test/org/sakaiproject/content/impl/serialize content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 9 23:27:07 2007 +X-DSPAM-Confidence: 0.8500 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39082 + +Author: jimeng@umich.edu +Date: 2007-12-09 23:19:14 -0500 (Sun, 09 Dec 2007) +New Revision: 39082 + +Added: +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/OperationDelegationException.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/ +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisor.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorProvider.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorTypeRegistry.java +content/branches/SAK-12239/content-impl/impl/src/sql/mssql/ +content/branches/SAK-12239/content-impl/impl/src/sql/mssql/sakai_content.sql +content/branches/SAK-12239/content-impl/impl/src/sql/mssql/sakai_content_delete.sql +content/branches/SAK-12239/content-impl/impl/src/sql/mssql/sakai_content_registry.sql +content/branches/SAK-12239/content-impl/impl/src/test/ +content/branches/SAK-12239/content-impl/impl/src/test/org/ +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/ +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/ +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/ +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/ +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/ +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/AllTests.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ByteStorageConversionCheck.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/GMTDateformatterTest.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockSerializableCollectionAcccess.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockSerializablePropertiesAccess.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockSerializableResourceAcccess.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockTime.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockTimeService.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MySQLByteStorage.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ProfileSerializerTest.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/Type1BaseContentCollectionSerializerTest.java +content/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/Type1BaseContentResourceSerializerTest.java +Modified: +content/branches/SAK-12239/content-api/api/pom.xml +Log: +SAK-12239 +Adding more classes from 2.5.x that are dependencies in the recent changes + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Dec 9 22:01:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 09 Dec 2007 22:01:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 09 Dec 2007 22:01:17 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by panther.mail.umich.edu () with ESMTP id lBA31HKI025318; + Sun, 9 Dec 2007 22:01:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 475CABF7.5FF45.26786 ; + 9 Dec 2007 22:01:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 98F6850A9C; + Mon, 10 Dec 2007 03:01:07 +0000 (GMT) +Message-ID: <200712100253.lBA2rgFw021442@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875 + for ; + Mon, 10 Dec 2007 03:00:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 64FAF2CEE7 + for ; Mon, 10 Dec 2007 03:00:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBA2rhJ7021444 + for ; Sun, 9 Dec 2007 21:53:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBA2rgFw021442 + for source@collab.sakaiproject.org; Sun, 9 Dec 2007 21:53:42 -0500 +Date: Sun, 9 Dec 2007 21:53:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39081 - content/trunk/content-api/api/src/java/org/sakaiproject/content/cover +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 9 22:01:17 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39081 + +Author: jimeng@umich.edu +Date: 2007-12-09 21:53:40 -0500 (Sun, 09 Dec 2007) +New Revision: 39081 + +Modified: +content/trunk/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +Log: +SAK-12359 +Depracating the ContentHosting cover. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Dec 9 21:57:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 09 Dec 2007 21:57:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 09 Dec 2007 21:57:32 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lBA2vVYZ011434; + Sun, 9 Dec 2007 21:57:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 475CAB16.863D9.20851 ; + 9 Dec 2007 21:57:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E0AAA99267; + Mon, 10 Dec 2007 02:57:23 +0000 (GMT) +Message-ID: <200712100249.lBA2nxmI021430@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 188 + for ; + Mon, 10 Dec 2007 02:57:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D53FE2CEE7 + for ; Mon, 10 Dec 2007 02:57:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBA2nxMw021432 + for ; Sun, 9 Dec 2007 21:49:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBA2nxmI021430 + for source@collab.sakaiproject.org; Sun, 9 Dec 2007 21:49:59 -0500 +Date: Sun, 9 Dec 2007 21:49:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r39080 - in content/branches/SAK-12239: . content-impl-jcr content-impl-jcr/impl content-impl-providers content-impl-providers/impl contentmultiplex-impl contentmultiplex-impl/impl contentmultiplex-impl/impl/src contentmultiplex-impl/impl/src/java contentmultiplex-impl/impl/src/java/org contentmultiplex-impl/impl/src/java/org/sakaiproject contentmultiplex-impl/impl/src/java/org/sakaiproject/content contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 9 21:57:32 2007 +X-DSPAM-Confidence: 0.9895 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39080 + +Author: jimeng@umich.edu +Date: 2007-12-09 21:49:46 -0500 (Sun, 09 Dec 2007) +New Revision: 39080 + +Added: +content/branches/SAK-12239/content-impl-jcr/ +content/branches/SAK-12239/content-impl-jcr/.classpath +content/branches/SAK-12239/content-impl-jcr/.project +content/branches/SAK-12239/content-impl-jcr/impl/ +content/branches/SAK-12239/content-impl-jcr/impl/pom.xml +content/branches/SAK-12239/content-impl-jcr/impl/src/ +content/branches/SAK-12239/content-impl-providers/ +content/branches/SAK-12239/content-impl-providers/.classpath +content/branches/SAK-12239/content-impl-providers/.project +content/branches/SAK-12239/content-impl-providers/impl/ +content/branches/SAK-12239/content-impl-providers/impl/pom.xml +content/branches/SAK-12239/content-impl-providers/impl/src/ +content/branches/SAK-12239/contentmultiplex-impl/ +content/branches/SAK-12239/contentmultiplex-impl/.classpath +content/branches/SAK-12239/contentmultiplex-impl/.project +content/branches/SAK-12239/contentmultiplex-impl/impl/ +content/branches/SAK-12239/contentmultiplex-impl/impl/pom.xml +content/branches/SAK-12239/contentmultiplex-impl/impl/src/ +content/branches/SAK-12239/contentmultiplex-impl/impl/src/java/ +content/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/ +content/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/ +content/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/ +content/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ +content/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +content/branches/SAK-12239/readme.txt +content/branches/SAK-12239/runconversion.sh +content/branches/SAK-12239/upgradeschema-mysql.config +content/branches/SAK-12239/upgradeschema-oracle.config +Log: +SAK-12239 +Added jcr-related modules to SAK-12239 (because there are interactions and/or dependencies with other changes in the content area) + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Sat Dec 8 13:33:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 08 Dec 2007 13:33:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 08 Dec 2007 13:33:35 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by jacknife.mail.umich.edu () with ESMTP id lB8IXYxG004424; + Sat, 8 Dec 2007 13:33:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 475AE374.77739.22226 ; + 8 Dec 2007 13:33:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5A77797E84; + Sat, 8 Dec 2007 18:25:21 +0000 (GMT) +Message-ID: <200712081825.lB8IPiL4007650@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 867 + for ; + Sat, 8 Dec 2007 18:24:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1350132AC2 + for ; Sat, 8 Dec 2007 18:32:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB8IPisD007652 + for ; Sat, 8 Dec 2007 13:25:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB8IPiL4007650 + for source@collab.sakaiproject.org; Sat, 8 Dec 2007 13:25:44 -0500 +Date: Sat, 8 Dec 2007 13:25:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39079 - in portal/branches/SAK-12350: portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 8 13:33:35 2007 +X-DSPAM-Confidence: 0.5922 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39079 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-08 13:25:34 -0500 (Sat, 08 Dec 2007) +New Revision: 39079 + +Modified: +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +SAK-12350 +Fixed templates, but there is still a strange layout below the tools, where the project sites appear. +Need to investigate this. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Sat Dec 8 01:10:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 08 Dec 2007 01:10:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 08 Dec 2007 01:10:03 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lB86A2hU012524; + Sat, 8 Dec 2007 01:10:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 475A352E.D2B89.27831 ; + 8 Dec 2007 01:09:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74069973CA; + Sat, 8 Dec 2007 06:07:13 +0000 (GMT) +Message-ID: <200712080602.lB862JP2006906@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59 + for ; + Sat, 8 Dec 2007 06:06:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4CF4927DBA + for ; Sat, 8 Dec 2007 06:09:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB862JRE006908 + for ; Sat, 8 Dec 2007 01:02:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB862JP2006906 + for source@collab.sakaiproject.org; Sat, 8 Dec 2007 01:02:19 -0500 +Date: Sat, 8 Dec 2007 01:02:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39078 - in portal/branches/SAK-12350: portal-api/api/src/java/org/sakaiproject/portal/api portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-impl/impl/src/java/org/sakaiproject/portal/charon/site portal-util/util/src/java/org/sakaiproject/portal/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 8 01:10:03 2007 +X-DSPAM-Confidence: 0.6184 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39078 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-08 01:01:45 -0500 (Sat, 08 Dec 2007) +New Revision: 39078 + +Added: +portal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/PortalSiteHelper.java +portal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/SiteView.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/ToolHelperImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/ +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AbstractSiteViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AllSitesViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/CurrentSiteVIewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/DefaultSiteViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/MoreSiteViewImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/PortalSiteHelperImpl.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/SubSiteViewImpl.java +Removed: +portal/branches/SAK-12350/portal-util/util/src/java/org/sakaiproject/portal/util/PortalSiteHelper.java +Modified: +portal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/CharonPortal.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/GalleryHandler.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java +Log: +SAK-12350 +Phase 1 +Extracted the site views into a single space interface with a number of view types, for more, all sites, subsite and current site. +The markup is not yet corrected for the new structure and although sakai starts, behaves and looks Ok, there are a whole load of missing +or mismapped properties in the velocity markup. + +There is no site hierarchy as yet, but the views can now generate their site lists in context making it possible to replace +the all sites list with a hierarchy awaire site list. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:43:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:43:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:43:28 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id lB7LhOXm015789; + Fri, 7 Dec 2007 16:43:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4759BE6F.97DE2.7140 ; + 7 Dec 2007 16:43:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DD68196F1A; + Fri, 7 Dec 2007 21:43:10 +0000 (GMT) +Message-ID: <200712072135.lB7LZk8V004602@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 208 + for ; + Fri, 7 Dec 2007 21:42:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 110C231F67 + for ; Fri, 7 Dec 2007 21:42:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7LZkkT004604 + for ; Fri, 7 Dec 2007 16:35:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7LZk8V004602 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:35:46 -0500 +Date: Fri, 7 Dec 2007 16:35:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39077 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:43:28 2007 +X-DSPAM-Confidence: 0.8510 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39077 + +Author: zqian@umich.edu +Date: 2007-12-07 16:35:44 -0500 (Fri, 07 Dec 2007) +New Revision: 39077 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +#38984 Thu Dec 06 08:17:47 MST 2007 zqian@umich.edu fix to SAK-12353:Gradebook does not show the point correctly +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:41:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:41:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:41:23 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by sleepers.mail.umich.edu () with ESMTP id lB7LfNtd014539; + Fri, 7 Dec 2007 16:41:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4759BDFD.1F014.13537 ; + 7 Dec 2007 16:41:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EF09E96F11; + Fri, 7 Dec 2007 21:41:15 +0000 (GMT) +Message-ID: <200712072133.lB7LXxcw004579@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 283 + for ; + Fri, 7 Dec 2007 21:40:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 353B031F67 + for ; Fri, 7 Dec 2007 21:41:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7LXxfg004581 + for ; Fri, 7 Dec 2007 16:33:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7LXxcw004579 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:33:59 -0500 +Date: Fri, 7 Dec 2007 16:33:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39076 - in assignment/branches/post-2-4: assignment-api/api/src/java/org/sakaiproject/assignment/api assignment-api/api/src/java/org/sakaiproject/assignment/cover assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:41:23 2007 +X-DSPAM-Confidence: 0.8514 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39076 + +Author: zqian@umich.edu +Date: 2007-12-07 16:33:56 -0500 (Fri, 07 Dec 2007) +New Revision: 39076 + +Modified: +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +#38958 Mon Dec 03 14:39:49 MST 2007 zqian@umich.edu fix to SAK-11623:The student column, should only display a list of students, and not display instructor. +Files Changed +MODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +MODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:16:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:16:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:16:16 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lB7LGF2F007785; + Fri, 7 Dec 2007 16:16:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4759B80C.889B2.32694 ; + 7 Dec 2007 16:15:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F41609644A; + Fri, 7 Dec 2007 21:15:53 +0000 (GMT) +Message-ID: <200712072108.lB7L8YWI004403@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 112 + for ; + Fri, 7 Dec 2007 21:15:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 46A7131F30 + for ; Fri, 7 Dec 2007 21:15:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7L8YS4004405 + for ; Fri, 7 Dec 2007 16:08:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7L8YWI004403 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:08:34 -0500 +Date: Fri, 7 Dec 2007 16:08:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39070 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:16:16 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39070 + +Author: zqian@umich.edu +Date: 2007-12-07 16:08:33 -0500 (Fri, 07 Dec 2007) +New Revision: 39070 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge r37723 into post-2-4: + +svn merge -r 37722:37723 https://source.sakaiproject.org/svn/assignment/trunk/ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:10:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:10:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:10:21 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lB7LAJ5t016620; + Fri, 7 Dec 2007 16:10:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4759B6B5.51841.8780 ; + 7 Dec 2007 16:10:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4EB6D96EB1; + Fri, 7 Dec 2007 21:10:12 +0000 (GMT) +Message-ID: <200712072102.lB7L2nCo004372@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358 + for ; + Fri, 7 Dec 2007 21:09:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 112AC23828 + for ; Fri, 7 Dec 2007 21:09:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7L2nhp004374 + for ; Fri, 7 Dec 2007 16:02:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7L2nCo004372 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:02:49 -0500 +Date: Fri, 7 Dec 2007 16:02:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39069 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:10:21 2007 +X-DSPAM-Confidence: 0.8518 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39069 + +Author: zqian@umich.edu +Date: 2007-12-07 16:02:47 -0500 (Fri, 07 Dec 2007) +New Revision: 39069 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm +Log: +merge into post-2-4: + +#37713 Fri Nov 02 12:00:36 MST 2007 zqian@umich.edu fix to SAK-11769:Assignments Confirmation before Upload All +Files Changed +MODIFY /assignment/trunk/assignment-bundles/assignment.properties +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:07:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:07:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:07:05 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by score.mail.umich.edu () with ESMTP id lB7L74KT008944; + Fri, 7 Dec 2007 16:07:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4759B5F0.E0AE4.8421 ; + 7 Dec 2007 16:07:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EA24D96E03; + Fri, 7 Dec 2007 20:36:19 +0000 (GMT) +Message-ID: <200712072029.lB7KT5iv004126@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 872 + for ; + Fri, 7 Dec 2007 20:36:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BF93131F02 + for ; Fri, 7 Dec 2007 20:36:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KT5s2004128 + for ; Fri, 7 Dec 2007 15:29:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KT5iv004126 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:29:05 -0500 +Date: Fri, 7 Dec 2007 15:29:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39056 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:07:05 2007 +X-DSPAM-Confidence: 0.8515 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39056 + +Author: zqian@umich.edu +Date: 2007-12-07 15:29:03 -0500 (Fri, 07 Dec 2007) +New Revision: 39056 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge into post-2-4: + +#37328 Tue Oct 23 09:36:01 MST 2007 zqian@umich.edu fix to SAK-11634:Assignment uses UsageSession rather than normal Session +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 16:07:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:07:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:07:03 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lB7L72ta014827; + Fri, 7 Dec 2007 16:07:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4759B5F0.D3C92.25002 ; + 7 Dec 2007 16:06:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D47FA96E7D; + Fri, 7 Dec 2007 20:37:08 +0000 (GMT) +Message-ID: <200712072029.lB7KTnmq004138@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 95 + for ; + Fri, 7 Dec 2007 20:36:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 75FEA31F20 + for ; Fri, 7 Dec 2007 20:36:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KTnUk004140 + for ; Fri, 7 Dec 2007 15:29:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KTnmq004138 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:29:49 -0500 +Date: Fri, 7 Dec 2007 15:29:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39057 - in gradebook/branches/oncourse_opc_122007: app app/business/src/java/org/sakaiproject/tool/gradebook/business/impl app/sakai-tool/src/webapp/tools app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle app/ui/src/java/org/sakaiproject/tool/gradebook/jsf app/ui/src/java/org/sakaiproject/tool/gradebook/ui app/ui/src/webapp app/ui/src/webapp/WEB-INF service/hibernate/src/java/org/sakaiproject/tool/gradebook service/impl service/impl/src/java/org/sakaiproject/component/gradebook service/sakai-pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:07:03 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39057 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 15:29:46 -0500 (Fri, 07 Dec 2007) +New Revision: 39057 + +Added: +gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GbSynchronizerImpl.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ExportForSISOncourseUtility.java +gradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/GradeRecordSet.java +Modified: +gradebook/branches/oncourse_opc_122007/app/project.xml +gradebook/branches/oncourse_opc_122007/app/sakai-tool/src/webapp/tools/sakai.gradebook.tool.xml +gradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentGradeValidator.java +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/CourseGradeDetailsBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/WEB-INF/spring-beans.xml +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/WEB-INF/spring-hib.xml +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/courseGradeDetails.jsp +gradebook/branches/oncourse_opc_122007/service/impl/project.xml +gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +gradebook/branches/oncourse_opc_122007/service/sakai-pack/src/webapp/WEB-INF/components.xml +Log: +merging in stuff from oncourse overlay + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 7 16:07:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:07:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:07:03 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lB7L71t0028880; + Fri, 7 Dec 2007 16:07:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4759B5F0.DDBE1.30081 ; + 7 Dec 2007 16:06:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F075A96E85; + Fri, 7 Dec 2007 20:38:47 +0000 (GMT) +Message-ID: <200712072031.lB7KVQ7Y004162@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 441 + for ; + Fri, 7 Dec 2007 20:38:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0EFFB31F20 + for ; Fri, 7 Dec 2007 20:38:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KVQ4V004164 + for ; Fri, 7 Dec 2007 15:31:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KVQ7Y004162 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:31:26 -0500 +Date: Fri, 7 Dec 2007 15:31:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39059 - in assignment/branches/sakai_2-5-x/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:07:03 2007 +X-DSPAM-Confidence: 0.6526 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39059 + +Author: mmmay@indiana.edu +Date: 2007-12-07 15:31:19 -0500 (Fri, 07 Dec 2007) +New Revision: 39059 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm +Log: +svn merge -r 38952:38954 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm +0:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38952:38954 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38953 | zqian@umich.edu | 2007-12-03 12:24:50 -0500 (Mon, 03 Dec 2007) | 1 line + +Fix to SAK-5956: Assignment Tool Exceptions +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 16:07:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:07:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:07:02 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lB7L71CA007811; + Fri, 7 Dec 2007 16:07:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4759B5F0.5FFEC.1881 ; + 7 Dec 2007 16:06:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A6AD596E86; + Fri, 7 Dec 2007 20:38:23 +0000 (GMT) +Message-ID: <200712072031.lB7KV89p004150@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651 + for ; + Fri, 7 Dec 2007 20:38:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 67E9631F20 + for ; Fri, 7 Dec 2007 20:38:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KV8Mo004152 + for ; Fri, 7 Dec 2007 15:31:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KV89p004150 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:31:08 -0500 +Date: Fri, 7 Dec 2007 15:31:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39058 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:07:02 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39058 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 15:31:07 -0500 (Fri, 07 Dec 2007) +New Revision: 39058 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +updating externals for gradebook updates + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 7 16:07:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:07:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:07:02 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lB7L71fL014794; + Fri, 7 Dec 2007 16:07:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4759B5F0.1111B.30031 ; + 7 Dec 2007 16:06:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 16F5F9664C; + Fri, 7 Dec 2007 20:35:33 +0000 (GMT) +Message-ID: <200712072028.lB7KSBX0004114@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 896 + for ; + Fri, 7 Dec 2007 20:35:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 12E6831F02 + for ; Fri, 7 Dec 2007 20:35:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KSBHt004116 + for ; Fri, 7 Dec 2007 15:28:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KSBX0004114 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:28:11 -0500 +Date: Fri, 7 Dec 2007 15:28:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39055 - in assignment/branches/sakai_2-5-x: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:07:02 2007 +X-DSPAM-Confidence: 0.7009 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39055 + +Author: mmmay@indiana.edu +Date: 2007-12-07 15:28:00 -0500 (Fri, 07 Dec 2007) +New Revision: 39055 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 38926:38928 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +0:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38926:38928 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38927 | zqian@umich.edu | 2007-11-30 16:55:44 -0500 (Fri, 30 Nov 2007) | 1 line + +merge fix to SAK-12289 into trunk:svn merge -r 38925:38926 https://source.sakaiproject.org/svn/assignment/branches/post-2-4/ +------------------------------------------------------------------------ +r38928 | zqian@umich.edu | 2007-11-30 17:03:42 -0500 (Fri, 30 Nov 2007) | 1 line + +fix to SAK-12289, remove the unnecessary checkins made in 38927 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:05:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:05:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:05:51 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lB7L5oFJ014161; + Fri, 7 Dec 2007 16:05:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4759B5A8.946B.18874 ; + 7 Dec 2007 16:05:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 487155693D; + Fri, 7 Dec 2007 21:05:42 +0000 (GMT) +Message-ID: <200712072058.lB7KwRe1004358@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 273 + for ; + Fri, 7 Dec 2007 21:05:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 466E823828 + for ; Fri, 7 Dec 2007 21:05:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KwRpQ004360 + for ; Fri, 7 Dec 2007 15:58:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KwRe1004358 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:58:27 -0500 +Date: Fri, 7 Dec 2007 15:58:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39068 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:05:51 2007 +X-DSPAM-Confidence: 0.8510 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39068 + +Author: zqian@umich.edu +Date: 2007-12-07 15:58:25 -0500 (Fri, 07 Dec 2007) +New Revision: 39068 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +merge into post-2-4: + +#37700 Fri Nov 02 07:26:09 MST 2007 zqian@umich.edu Fix to SAK-12085:Long group list in For column does not wrap +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:03:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:03:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:03:11 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by chaos.mail.umich.edu () with ESMTP id lB7L3APU021851; + Fri, 7 Dec 2007 16:03:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4759B504.39A8A.22341 ; + 7 Dec 2007 16:03:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 03AFF5271B; + Fri, 7 Dec 2007 21:02:57 +0000 (GMT) +Message-ID: <200712072055.lB7KtfaQ004342@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 874 + for ; + Fri, 7 Dec 2007 21:02:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2622023828 + for ; Fri, 7 Dec 2007 21:02:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Ktfn1004344 + for ; Fri, 7 Dec 2007 15:55:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KtfaQ004342 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:55:41 -0500 +Date: Fri, 7 Dec 2007 15:55:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39067 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:03:11 2007 +X-DSPAM-Confidence: 0.8517 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39067 + +Author: zqian@umich.edu +Date: 2007-12-07 15:55:40 -0500 (Fri, 07 Dec 2007) +New Revision: 39067 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +merge into post-2-4: + +#37659 Tue Oct 30 20:20:08 MST 2007 zqian@umich.edu Fix to SAK-11898: View or grade submissions: Pager is shown even when there aren't submissions +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 16:00:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 16:00:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 16:00:18 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by chaos.mail.umich.edu () with ESMTP id lB7L0EV4019534; + Fri, 7 Dec 2007 16:00:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4759B452.51974.12149 ; + 7 Dec 2007 16:00:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 51BFC96E7B; + Fri, 7 Dec 2007 20:59:48 +0000 (GMT) +Message-ID: <200712072052.lB7KqVfp004315@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 683 + for ; + Fri, 7 Dec 2007 20:59:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E9D5023828 + for ; Fri, 7 Dec 2007 20:59:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KqV1C004317 + for ; Fri, 7 Dec 2007 15:52:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KqVfp004315 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:52:31 -0500 +Date: Fri, 7 Dec 2007 15:52:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39066 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 16:00:18 2007 +X-DSPAM-Confidence: 0.8513 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39066 + +Author: zqian@umich.edu +Date: 2007-12-07 15:52:27 -0500 (Fri, 07 Dec 2007) +New Revision: 39066 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +merge into post-2-4: + +#37483 Mon Oct 29 12:15:04 MST 2007 zqian@umich.edu fix to SAK-12075:assignment tool requires both 'asn.new' and 'asn.grade' for a TA to see the Grade link +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 15:53:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:53:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:53:31 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id lB7KrUPh014714; + Fri, 7 Dec 2007 15:53:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4759B2C2.16D87.6803 ; + 7 Dec 2007 15:53:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 54D2696EB1; + Fri, 7 Dec 2007 20:53:21 +0000 (GMT) +Message-ID: <200712072045.lB7Kjrfp004264@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 780 + for ; + Fri, 7 Dec 2007 20:52:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DBE2A31F20 + for ; Fri, 7 Dec 2007 20:52:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Kjrld004266 + for ; Fri, 7 Dec 2007 15:45:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7Kjrfp004264 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:45:53 -0500 +Date: Fri, 7 Dec 2007 15:45:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39065 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:53:31 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39065 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 15:45:52 -0500 (Fri, 07 Dec 2007) +New Revision: 39065 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +revving down authz, portal, site to back out the student view stuff + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 7 15:51:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:51:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:51:09 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by jacknife.mail.umich.edu () with ESMTP id lB7Kp84n023644; + Fri, 7 Dec 2007 15:51:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4759B1FD.7ED59.17022 ; + 7 Dec 2007 15:50:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2A94996EB0; + Fri, 7 Dec 2007 20:50:04 +0000 (GMT) +Message-ID: <200712072042.lB7KglfS004251@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 177 + for ; + Fri, 7 Dec 2007 20:49:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C87AC31F20 + for ; Fri, 7 Dec 2007 20:49:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KglA2004253 + for ; Fri, 7 Dec 2007 15:42:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KglfS004251 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:42:47 -0500 +Date: Fri, 7 Dec 2007 15:42:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39064 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:51:09 2007 +X-DSPAM-Confidence: 0.7616 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39064 + +Author: mmmay@indiana.edu +Date: 2007-12-07 15:42:43 -0500 (Fri, 07 Dec 2007) +New Revision: 39064 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +svn merge -r 38976:38977 https://source.sakaiproject.org/svn/site-manage/trunk +U site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +0:~/java/2-5/sakai_2-5-x/site-manage mmmay$ svn log -r 38976:38977 https://source.sakaiproject.org/svn/site-manage/trunk +------------------------------------------------------------------------ +r38977 | zqian@umich.edu | 2007-12-05 11:45:19 -0500 (Wed, 05 Dec 2007) | 1 line + +fix to SAK-12338:exception in the manually request course site page if no course information is entered +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 7 15:47:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:47:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:47:32 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lB7KlVHY025665; + Fri, 7 Dec 2007 15:47:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4759B150.5BDCE.6724 ; + 7 Dec 2007 15:47:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 412D796EA4; + Fri, 7 Dec 2007 20:47:12 +0000 (GMT) +Message-ID: <200712072039.lB7KdvFj004232@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786 + for ; + Fri, 7 Dec 2007 20:47:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3220D31F21 + for ; Fri, 7 Dec 2007 20:47:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KdvND004234 + for ; Fri, 7 Dec 2007 15:39:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KdvFj004232 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:39:57 -0500 +Date: Fri, 7 Dec 2007 15:39:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39063 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/producers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:47:32 2007 +X-DSPAM-Confidence: 0.7001 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39063 + +Author: mmmay@indiana.edu +Date: 2007-12-07 15:39:51 -0500 (Fri, 07 Dec 2007) +New Revision: 39063 + +Modified: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/producers/PollOptionProducer.java +Log: +svn merge -r 38947:38948 https://source.sakaiproject.org/svn/polls/trunk +U tool/src/java/org/sakaiproject/poll/tool/producers/PollOptionProducer.java +0:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38947:38948 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r38948 | david.horwitz@uct.ac.za | 2007-12-03 10:18:02 -0500 (Mon, 03 Dec 2007) | 1 line + +SAK-12317 render the edit options header +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 15:46:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:46:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:46:48 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lB7KkhZn010151; + Fri, 7 Dec 2007 15:46:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4759B12C.56D0C.8275 ; + 7 Dec 2007 15:46:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C328E968C3; + Fri, 7 Dec 2007 20:46:32 +0000 (GMT) +Message-ID: <200712072039.lB7KdEMQ004217@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 183 + for ; + Fri, 7 Dec 2007 20:46:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ED30A31F21 + for ; Fri, 7 Dec 2007 20:46:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KdEIH004219 + for ; Fri, 7 Dec 2007 15:39:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KdEMQ004217 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:39:14 -0500 +Date: Fri, 7 Dec 2007 15:39:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39062 - authz/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:46:48 2007 +X-DSPAM-Confidence: 0.9783 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39062 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 15:39:13 -0500 (Fri, 07 Dec 2007) +New Revision: 39062 + +Removed: +authz/branches/oncourse_opc_122007_overlay/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 15:44:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:44:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:44:15 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lB7KiEW1031603; + Fri, 7 Dec 2007 15:44:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4759B090.82723.12696 ; + 7 Dec 2007 15:44:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7035C5D4CC; + Fri, 7 Dec 2007 20:44:00 +0000 (GMT) +Message-ID: <200712072036.lB7Kaj9h004202@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 267 + for ; + Fri, 7 Dec 2007 20:43:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 002BA31F21 + for ; Fri, 7 Dec 2007 20:43:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KajgC004204 + for ; Fri, 7 Dec 2007 15:36:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7Kaj9h004202 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:36:45 -0500 +Date: Fri, 7 Dec 2007 15:36:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39061 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:44:15 2007 +X-DSPAM-Confidence: 0.8514 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39061 + +Author: zqian@umich.edu +Date: 2007-12-07 15:36:43 -0500 (Fri, 07 Dec 2007) +New Revision: 39061 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +#37421 Fri Oct 26 10:58:49 MST 2007 zqian@umich.edu fix to SAK-12058:Grade Report in Assignments orders by default by Last Name, should order by Last Name, First Name +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Fri Dec 7 15:43:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:43:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:43:07 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by score.mail.umich.edu () with ESMTP id lB7Kh6R7022340; + Fri, 7 Dec 2007 15:43:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4759B053.74B5A.24480 ; + 7 Dec 2007 15:43:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 26CFD80094; + Fri, 7 Dec 2007 20:42:58 +0000 (GMT) +Message-ID: <200712072035.lB7KZewk004182@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800 + for ; + Fri, 7 Dec 2007 20:42:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 011C031F20 + for ; Fri, 7 Dec 2007 20:42:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KZeH0004184 + for ; Fri, 7 Dec 2007 15:35:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KZewk004182 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:35:40 -0500 +Date: Fri, 7 Dec 2007 15:35:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r39060 - in gradebook/branches/sakai_2-5-x/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:43:07 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39060 + +Author: mmmay@indiana.edu +Date: 2007-12-07 15:35:29 -0500 (Fri, 07 Dec 2007) +New Revision: 39060 + +Modified: +gradebook/branches/sakai_2-5-x/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/sakai_2-5-x/app/ui/src/webapp/assignmentDetails.jsp +Log: +svn merge -r 36790:36791 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +U app/ui/src/webapp/assignmentDetails.jsp +0:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 36790:36791 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r36791 | rjlowe@iupui.edu | 2007-10-12 10:04:56 -0400 (Fri, 12 Oct 2007) | 1 line + +SAK-11915 - Paging tool ignores current page changes +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 15:30:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:30:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:30:39 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lB7KUc2Z017147; + Fri, 7 Dec 2007 15:30:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4759AD59.AE7DD.20773 ; + 7 Dec 2007 15:30:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 81D415E69C; + Fri, 7 Dec 2007 20:30:16 +0000 (GMT) +Message-ID: <200712072022.lB7KMql9004102@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 31 + for ; + Fri, 7 Dec 2007 20:29:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 25CCB31F02 + for ; Fri, 7 Dec 2007 20:29:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KMquh004104 + for ; Fri, 7 Dec 2007 15:22:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KMql9004102 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:22:52 -0500 +Date: Fri, 7 Dec 2007 15:22:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39054 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:30:39 2007 +X-DSPAM-Confidence: 0.8517 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39054 + +Author: zqian@umich.edu +Date: 2007-12-07 15:22:51 -0500 (Fri, 07 Dec 2007) +New Revision: 39054 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge into post-2-4: + +#37053 Tue Oct 16 11:20:48 MST 2007 zqian@umich.edu Fix to SAK-11639:all columns in the downloaded 'grade report' spreadsheet should be 'bold' or 'not bold' + +Make all columns 'not bold' +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 15:26:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:26:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:26:54 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lB7KQrl8023941; + Fri, 7 Dec 2007 15:26:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4759AC87.9E652.4245 ; + 7 Dec 2007 15:26:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 81E77743F9; + Fri, 7 Dec 2007 20:26:46 +0000 (GMT) +Message-ID: <200712072019.lB7KJV1d004090@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971 + for ; + Fri, 7 Dec 2007 20:26:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BDCC72B008 + for ; Fri, 7 Dec 2007 20:26:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KJV5G004092 + for ; Fri, 7 Dec 2007 15:19:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KJV1d004090 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:19:31 -0500 +Date: Fri, 7 Dec 2007 15:19:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39053 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:26:54 2007 +X-DSPAM-Confidence: 0.8520 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39053 + +Author: zqian@umich.edu +Date: 2007-12-07 15:19:29 -0500 (Fri, 07 Dec 2007) +New Revision: 39053 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm +Log: +merged into post-2-4: + +#36803 Fri Oct 12 12:44:01 MST 2007 zqian@umich.edu fix to SAK-11919:student cannot see instructor feedback for his return submission which he hasn't started yet +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 15:23:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:23:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:23:30 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by godsend.mail.umich.edu () with ESMTP id lB7KNSTc020780; + Fri, 7 Dec 2007 15:23:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4759ABBA.6B520.17007 ; + 7 Dec 2007 15:23:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2AD25743F8; + Fri, 7 Dec 2007 20:23:21 +0000 (GMT) +Message-ID: <200712072016.lB7KG49G004078@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 401 + for ; + Fri, 7 Dec 2007 20:23:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDDA92B008 + for ; Fri, 7 Dec 2007 20:23:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KG4FX004080 + for ; Fri, 7 Dec 2007 15:16:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KG49G004078 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:16:04 -0500 +Date: Fri, 7 Dec 2007 15:16:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39052 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:23:30 2007 +X-DSPAM-Confidence: 0.9929 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39052 + +Author: zqian@umich.edu +Date: 2007-12-07 15:16:02 -0500 (Fri, 07 Dec 2007) +New Revision: 39052 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge into post-2-4: + +#36592 Mon Oct 08 13:43:54 MST 2007 zqian@umich.edu fix to SAK-11643:student should be able to see the assigned grade after returned /graded +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + +#36595 Mon Oct 08 13:49:55 MST 2007 zqian@umich.edu fix to SAK-11643:student should be able to see the assigned grade after returned /graded +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 15:01:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 15:01:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 15:01:08 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by flawless.mail.umich.edu () with ESMTP id lB7K18PV027234; + Fri, 7 Dec 2007 15:01:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4759A675.DC7FB.7057 ; + 7 Dec 2007 15:01:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A49AE96E03; + Fri, 7 Dec 2007 20:00:52 +0000 (GMT) +Message-ID: <200712071953.lB7JrT2v004052@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895 + for ; + Fri, 7 Dec 2007 20:00:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A3855D0E8 + for ; Fri, 7 Dec 2007 20:00:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JrTsO004054 + for ; Fri, 7 Dec 2007 14:53:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JrT2v004052 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:53:29 -0500 +Date: Fri, 7 Dec 2007 14:53:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39051 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 15:01:08 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39051 + +Author: zqian@umich.edu +Date: 2007-12-07 14:53:27 -0500 (Fri, 07 Dec 2007) +New Revision: 39051 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +Log: +merge into post-2-4: + +merge r36561 into post-2-4 for SAK-11591: Assignmets clicking enter key after inputting grade + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 14:55:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 14:55:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 14:55:19 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id lB7JtIgd013098; + Fri, 7 Dec 2007 14:55:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4759A51D.1FB9D.24355 ; + 7 Dec 2007 14:55:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 028EC95777; + Fri, 7 Dec 2007 19:55:06 +0000 (GMT) +Message-ID: <200712071947.lB7JlqD1004024@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 716 + for ; + Fri, 7 Dec 2007 19:54:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 43006D0E8 + for ; Fri, 7 Dec 2007 19:54:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JlqhY004026 + for ; Fri, 7 Dec 2007 14:47:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JlqD1004024 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:47:52 -0500 +Date: Fri, 7 Dec 2007 14:47:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39050 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 14:55:19 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39050 + +Author: zqian@umich.edu +Date: 2007-12-07 14:47:50 -0500 (Fri, 07 Dec 2007) +New Revision: 39050 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +merge into post-2-4: + +#36082 Tue Oct 02 11:12:20 MST 2007 zqian@umich.edu fix to SAK-11652:Student save Assignment as draft with out submitt +Files Changed +MODIFY /assignment/trunk/assignment-bundles/assignment.properties +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 14:52:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 14:52:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 14:52:09 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by flawless.mail.umich.edu () with ESMTP id lB7Jq7ZF022129; + Fri, 7 Dec 2007 14:52:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4759A451.F08DE.3449 ; + 7 Dec 2007 14:51:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 948D695777; + Fri, 7 Dec 2007 19:51:45 +0000 (GMT) +Message-ID: <200712071944.lB7JiMmX004012@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 613 + for ; + Fri, 7 Dec 2007 19:51:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D141AD0E8 + for ; Fri, 7 Dec 2007 19:51:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JiMdf004014 + for ; Fri, 7 Dec 2007 14:44:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JiMmX004012 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:44:22 -0500 +Date: Fri, 7 Dec 2007 14:44:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39049 - in assignment/branches/post-2-4: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 14:52:09 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39049 + +Author: zqian@umich.edu +Date: 2007-12-07 14:44:19 -0500 (Fri, 07 Dec 2007) +New Revision: 39049 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +merge into post-2-4: + +#35979 Fri Sep 28 13:59:57 MST 2007 zqian@umich.edu fix to SAK-11749: TA can add Assignment and Grade assignment +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + +#36083 Tue Oct 02 11:22:47 MST 2007 zqian@umich.edu fix to SAK-11749:TA can add Assignment and Grade assignment; fixed the misalignment of columns in the student list view +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 14:35:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 14:35:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 14:35:50 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lB7JZn3f002080; + Fri, 7 Dec 2007 14:35:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4759A08F.A4A1E.21454 ; + 7 Dec 2007 14:35:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7251E6166B; + Fri, 7 Dec 2007 19:35:42 +0000 (GMT) +Message-ID: <200712071928.lB7JSQH3003998@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 582 + for ; + Fri, 7 Dec 2007 19:35:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EB13E2F044 + for ; Fri, 7 Dec 2007 19:35:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JSQYC004000 + for ; Fri, 7 Dec 2007 14:28:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JSQH3003998 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:28:26 -0500 +Date: Fri, 7 Dec 2007 14:28:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39048 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 14:35:50 2007 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39048 + +Author: zqian@umich.edu +Date: 2007-12-07 14:28:25 -0500 (Fri, 07 Dec 2007) +New Revision: 39048 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_reorder_assignment.vm +Log: +merge into post-2-4: + +#35906 Thu Sep 27 08:22:01 MST 2007 zqian@umich.edu fix to SAK-11640:'Position', 'Assignment title', 'Open', or 'Due' should reorder/sort the list by the field that is clicked. +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_reorder_assignment.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 14:31:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 14:31:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 14:31:26 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lB7JVPHP007019; + Fri, 7 Dec 2007 14:31:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47599F7E.8984A.28062 ; + 7 Dec 2007 14:31:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 459AA96DDE; + Fri, 7 Dec 2007 19:31:08 +0000 (GMT) +Message-ID: <200712071923.lB7JNnge003972@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366 + for ; + Fri, 7 Dec 2007 19:30:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 75C472F044 + for ; Fri, 7 Dec 2007 19:30:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JNnl6003974 + for ; Fri, 7 Dec 2007 14:23:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JNnge003972 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:23:49 -0500 +Date: Fri, 7 Dec 2007 14:23:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39047 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 14:31:26 2007 +X-DSPAM-Confidence: 0.9908 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39047 + +Author: zqian@umich.edu +Date: 2007-12-07 14:23:48 -0500 (Fri, 07 Dec 2007) +New Revision: 39047 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merged into post-2-4: + +#35746 Mon Sep 24 16:11:27 MST 2007 zqian@umich.edu fix to SAK-11622:'add due date to schedule' is displayed. This option is available w/o the schedule tool enabled on the course site. +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 14:29:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 14:29:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 14:29:07 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by brazil.mail.umich.edu () with ESMTP id lB7JT6hK019845; + Fri, 7 Dec 2007 14:29:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47599EFB.BDC4A.21257 ; + 7 Dec 2007 14:29:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4EEBE96DF4; + Fri, 7 Dec 2007 19:28:54 +0000 (GMT) +Message-ID: <200712071921.lB7JLWoI003960@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1 + for ; + Fri, 7 Dec 2007 19:28:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B6322EDC2 + for ; Fri, 7 Dec 2007 19:28:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JLWVG003962 + for ; Fri, 7 Dec 2007 14:21:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JLWoI003960 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:21:32 -0500 +Date: Fri, 7 Dec 2007 14:21:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39046 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 14:29:07 2007 +X-DSPAM-Confidence: 0.8507 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39046 + +Author: zqian@umich.edu +Date: 2007-12-07 14:21:31 -0500 (Fri, 07 Dec 2007) +New Revision: 39046 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm +Log: +merge into post-2-4: + +#35722 Mon Sep 24 10:46:53 MST 2007 zqian@umich.edu fix to SAK-11619:' Fill out Form' should not be a the top of page for an attachment only assignment +Files Changed +MODIFY /assignment/trunk/assignment-bundles/assignment.properties +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 14:26:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 14:26:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 14:26:01 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by casino.mail.umich.edu () with ESMTP id lB7JQ0Ip027901; + Fri, 7 Dec 2007 14:26:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47599E42.6A9D8.21712 ; + 7 Dec 2007 14:25:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6BE5E96DAF; + Fri, 7 Dec 2007 19:25:49 +0000 (GMT) +Message-ID: <200712071918.lB7JIWB4003948@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692 + for ; + Fri, 7 Dec 2007 19:25:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E96BC2EDC2 + for ; Fri, 7 Dec 2007 19:25:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JIW1Z003950 + for ; Fri, 7 Dec 2007 14:18:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JIWB4003948 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:18:32 -0500 +Date: Fri, 7 Dec 2007 14:18:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39045 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 14:26:01 2007 +X-DSPAM-Confidence: 0.8502 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39045 + +Author: zqian@umich.edu +Date: 2007-12-07 14:18:30 -0500 (Fri, 07 Dec 2007) +New Revision: 39045 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +Log: +merge into post-2-4: + +#35721 Mon Sep 24 10:32:21 MST 2007 zqian@umich.edu fix to SAK-11617:grades should be separted via comma, semi-comma or maybe put into a list, see instructor comments as an example: use seperate section for previous grade information, starting with 'Graded Date:' + timestamp label +Files Changed +MODIFY /assignment/trunk/assignment-bundles/assignment.properties +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 14:13:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 14:13:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 14:13:28 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by awakenings.mail.umich.edu () with ESMTP id lB7JDQpr008277; + Fri, 7 Dec 2007 14:13:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47599B4C.E1A63.18757 ; + 7 Dec 2007 14:13:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CDC7896B0D; + Fri, 7 Dec 2007 19:13:12 +0000 (GMT) +Message-ID: <200712071905.lB7J5uUs003928@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 646 + for ; + Fri, 7 Dec 2007 19:12:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 223A531F14 + for ; Fri, 7 Dec 2007 19:12:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7J5uIj003930 + for ; Fri, 7 Dec 2007 14:05:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7J5uUs003928 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:05:56 -0500 +Date: Fri, 7 Dec 2007 14:05:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39044 - in assignment/branches/post-2-4: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 14:13:28 2007 +X-DSPAM-Confidence: 0.8501 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39044 + +Author: zqian@umich.edu +Date: 2007-12-07 14:05:53 -0500 (Fri, 07 Dec 2007) +New Revision: 39044 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +merge into post-2-4: + +#35094 Fri Sep 14 09:40:39 MST 2007 zqian@umich.edu fix to SAK-7643:Site-scoped section-aware assignments +Files Changed +MODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +MODIFY /assignment/trunk/assignment-bundles/assignment.properties +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +MODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +MODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentSubmission.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 13:55:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 13:55:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 13:55:12 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lB7ItBvu026607; + Fri, 7 Dec 2007 13:55:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47599709.A9D6.24212 ; + 7 Dec 2007 13:55:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2173196D0D; + Fri, 7 Dec 2007 18:40:08 +0000 (GMT) +Message-ID: <200712071847.lB7IlnLn003903@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 501 + for ; + Fri, 7 Dec 2007 18:39:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A3C89B11A + for ; Fri, 7 Dec 2007 18:54:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7IlnF9003905 + for ; Fri, 7 Dec 2007 13:47:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7IlnLn003903 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:47:49 -0500 +Date: Fri, 7 Dec 2007 13:47:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39043 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 13:55:12 2007 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39043 + +Author: zqian@umich.edu +Date: 2007-12-07 13:47:47 -0500 (Fri, 07 Dec 2007) +New Revision: 39043 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +merge into post-2-4: + +#35041 Thu Sep 13 11:10:25 MST 2007 zqian@umich.edu fix to SAK-11493:add the ability to assign grade to all non-graded non-electronic submissions +Files Changed +MODIFY /assignment/trunk/assignment-bundles/assignment.properties +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 13:51:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 13:51:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 13:51:45 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by chaos.mail.umich.edu () with ESMTP id lB7IpfKX006877; + Fri, 7 Dec 2007 13:51:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47599637.3C499.9129 ; + 7 Dec 2007 13:51:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 93F8D96D06; + Fri, 7 Dec 2007 18:36:36 +0000 (GMT) +Message-ID: <200712071844.lB7Ii76E003891@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 687 + for ; + Fri, 7 Dec 2007 18:36:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3D063B11A + for ; Fri, 7 Dec 2007 18:51:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Ii7ok003893 + for ; Fri, 7 Dec 2007 13:44:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7Ii76E003891 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:44:07 -0500 +Date: Fri, 7 Dec 2007 13:44:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39042 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 13:51:45 2007 +X-DSPAM-Confidence: 0.7616 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39042 + +Author: zqian@umich.edu +Date: 2007-12-07 13:44:06 -0500 (Fri, 07 Dec 2007) +New Revision: 39042 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +merge into post-2-4: + +#34956 Tue Sep 11 09:07:02 MST 2007 zqian@umich.edu fix to SAK-11464:asn.grade in group realm seems to allow grading in site +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 13:36:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 13:36:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 13:36:13 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by score.mail.umich.edu () with ESMTP id lB7IaCsb008379; + Fri, 7 Dec 2007 13:36:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47599296.505E8.1555 ; + 7 Dec 2007 13:36:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A66096B72; + Fri, 7 Dec 2007 18:21:09 +0000 (GMT) +Message-ID: <200712071828.lB7ISioi003869@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 532 + for ; + Fri, 7 Dec 2007 18:20:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B6F3331ED7 + for ; Fri, 7 Dec 2007 18:35:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7ISiME003871 + for ; Fri, 7 Dec 2007 13:28:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7ISioi003869 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:28:44 -0500 +Date: Fri, 7 Dec 2007 13:28:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39041 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 13:36:13 2007 +X-DSPAM-Confidence: 0.9911 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39041 + +Author: zqian@umich.edu +Date: 2007-12-07 13:28:42 -0500 (Fri, 07 Dec 2007) +New Revision: 39041 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge into post-2-4: + +#34747 Thu Sep 06 10:46:39 MST 2007 zqian@umich.edu fix to SAK-11397: Use SAX serialization in Assignment tool +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 13:32:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 13:32:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 13:32:30 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lB7IWTpF009485; + Fri, 7 Dec 2007 13:32:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 475991AD.D905D.20656 ; + 7 Dec 2007 13:32:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9C78F96403; + Fri, 7 Dec 2007 18:17:11 +0000 (GMT) +Message-ID: <200712071813.lB7IDMWB003820@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 5 + for ; + Fri, 7 Dec 2007 18:09:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 43C192EDC2 + for ; Fri, 7 Dec 2007 18:20:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7IDN3k003822 + for ; Fri, 7 Dec 2007 13:13:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7IDMWB003820 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:13:22 -0500 +Date: Fri, 7 Dec 2007 13:13:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39039 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 13:32:30 2007 +X-DSPAM-Confidence: 0.9909 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39039 + +Author: zqian@umich.edu +Date: 2007-12-07 13:13:21 -0500 (Fri, 07 Dec 2007) +New Revision: 39039 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merged into post-2-4: + +#34630 Fri Aug 31 12:25:23 MST 2007 zqian@umich.edu fix to SAK-11349:Assignment upload all process fails when one submitter couldn't be found by UserDirectoryService +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 13:32:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 13:32:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 13:32:14 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id lB7IWDkr023269; + Fri, 7 Dec 2007 13:32:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 475991A8.68285.31652 ; + 7 Dec 2007 13:32:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0F90696B29; + Fri, 7 Dec 2007 18:17:10 +0000 (GMT) +Message-ID: <200712071823.lB7INGR6003848@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 45 + for ; + Fri, 7 Dec 2007 18:14:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2FCF42EDC4 + for ; Fri, 7 Dec 2007 18:30:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7INGul003850 + for ; Fri, 7 Dec 2007 13:23:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7INGR6003848 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:23:16 -0500 +Date: Fri, 7 Dec 2007 13:23:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39040 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 13:32:14 2007 +X-DSPAM-Confidence: 0.8512 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39040 + +Author: zqian@umich.edu +Date: 2007-12-07 13:23:15 -0500 (Fri, 07 Dec 2007) +New Revision: 39040 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +#34741 Thu Sep 06 08:32:44 MST 2007 zqian@umich.edu Fix to SAK-11387:remove the redundant call to get assignment list size in assignment tool +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + +-gThis line, and those below, will be ignored-- + +M assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 13:31:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 13:31:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 13:31:33 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lB7IVWeI008742; + Fri, 7 Dec 2007 13:31:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4759917E.3852F.476 ; + 7 Dec 2007 13:31:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3D9696C0F; + Fri, 7 Dec 2007 18:16:27 +0000 (GMT) +Message-ID: <200712071753.lB7HrFW9003787@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176 + for ; + Fri, 7 Dec 2007 18:00:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9414931EB1 + for ; Fri, 7 Dec 2007 18:00:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7HrFbx003789 + for ; Fri, 7 Dec 2007 12:53:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7HrFW9003787 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:53:15 -0500 +Date: Fri, 7 Dec 2007 12:53:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39038 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 13:31:33 2007 +X-DSPAM-Confidence: 0.9781 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39038 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 12:53:14 -0500 (Fri, 07 Dec 2007) +New Revision: 39038 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Updating externals for the removal of the portal sitenav.properties changes + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 12:57:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 12:57:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 12:57:39 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by faithful.mail.umich.edu () with ESMTP id lB7HvcYf004891; + Fri, 7 Dec 2007 12:57:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4759898D.458C0.22521 ; + 7 Dec 2007 12:57:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2F73896AD4; + Fri, 7 Dec 2007 17:57:32 +0000 (GMT) +Message-ID: <200712071750.lB7HoIJN003775@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 941 + for ; + Fri, 7 Dec 2007 17:57:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E11B031EB1 + for ; Fri, 7 Dec 2007 17:57:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7HoIhU003777 + for ; Fri, 7 Dec 2007 12:50:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7HoIJN003775 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:50:18 -0500 +Date: Fri, 7 Dec 2007 12:50:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39037 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 12:57:39 2007 +X-DSPAM-Confidence: 0.9785 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39037 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 12:50:17 -0500 (Fri, 07 Dec 2007) +New Revision: 39037 + +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle/sitenav.properties +Log: +Turns out we don't need those changes. Reverting back. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 12:19:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 12:19:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 12:19:23 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lB7HJMgi016846; + Fri, 7 Dec 2007 12:19:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4759808B.345FD.652 ; + 7 Dec 2007 12:19:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6DD3894067; + Fri, 7 Dec 2007 17:19:05 +0000 (GMT) +Message-ID: <200712071711.lB7HBmRf003636@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477 + for ; + Fri, 7 Dec 2007 17:18:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BAD882ABF3 + for ; Fri, 7 Dec 2007 17:18:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7HBmJ3003638 + for ; Fri, 7 Dec 2007 12:11:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7HBmRf003636 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:11:48 -0500 +Date: Fri, 7 Dec 2007 12:11:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39036 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 12:19:23 2007 +X-DSPAM-Confidence: 0.9876 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39036 + +Author: zqian@umich.edu +Date: 2007-12-07 12:11:46 -0500 (Fri, 07 Dec 2007) +New Revision: 39036 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge into post-2-4: + +#34436 Mon Aug 27 03:41:14 MST 2007 david.horwitz@uct.ac.za SAK-11282 check content suitablity before submitting +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 12:10:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 12:10:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 12:10:24 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by casino.mail.umich.edu () with ESMTP id lB7HANtI029819; + Fri, 7 Dec 2007 12:10:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47597E6A.89C5A.9630 ; + 7 Dec 2007 12:10:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 44D00968B2; + Fri, 7 Dec 2007 17:10:01 +0000 (GMT) +Message-ID: <200712071702.lB7H2jGR003606@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 555 + for ; + Fri, 7 Dec 2007 17:09:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 68F8B22697 + for ; Fri, 7 Dec 2007 17:09:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7H2jmB003608 + for ; Fri, 7 Dec 2007 12:02:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7H2jGR003606 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:02:45 -0500 +Date: Fri, 7 Dec 2007 12:02:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39035 - in assignment/branches/post-2-4: assignment-api/api/src/java/org/sakaiproject/assignment/api assignment-api/api/src/java/org/sakaiproject/assignment/cover assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 12:10:24 2007 +X-DSPAM-Confidence: 0.9924 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39035 + +Author: zqian@umich.edu +Date: 2007-12-07 12:02:40 -0500 (Fri, 07 Dec 2007) +New Revision: 39035 + +Modified: +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +#34303 Thu Aug 23 11:01:31 MST 2007 zqian@umich.edu fix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + +#37676 Wed Oct 31 18:41:13 MST 2007 zqian@umich.edu fix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 11:13:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 11:13:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 11:13:51 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by sleepers.mail.umich.edu () with ESMTP id lB7GDoWe002949; + Fri, 7 Dec 2007 11:13:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47597136.CA452.28804 ; + 7 Dec 2007 11:13:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9C59F91151; + Fri, 7 Dec 2007 16:13:37 +0000 (GMT) +Message-ID: <200712071606.lB7G6LEv003416@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 562 + for ; + Fri, 7 Dec 2007 16:13:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3409E2AD4E + for ; Fri, 7 Dec 2007 16:13:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7G6LGU003418 + for ; Fri, 7 Dec 2007 11:06:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7G6LEv003416 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 11:06:21 -0500 +Date: Fri, 7 Dec 2007 11:06:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39034 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 11:13:51 2007 +X-DSPAM-Confidence: 0.8509 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39034 + +Author: zqian@umich.edu +Date: 2007-12-07 11:06:19 -0500 (Fri, 07 Dec 2007) +New Revision: 39034 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge into post-2-4: + +#34040 Wed Aug 15 12:33:35 MST 2007 zqian@umich.edu fix to SAK-11123:NPE in Assignment action if submit untill is null +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Dec 7 11:10:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 11:10:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 11:10:56 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lB7GAtOi013408; + Fri, 7 Dec 2007 11:10:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47597078.AB11E.13204 ; + 7 Dec 2007 11:10:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E48669690C; + Fri, 7 Dec 2007 16:10:31 +0000 (GMT) +Message-ID: <200712071603.lB7G3IsF003395@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 364 + for ; + Fri, 7 Dec 2007 16:10:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 36C821D606 + for ; Fri, 7 Dec 2007 16:10:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7G3Jb0003397 + for ; Fri, 7 Dec 2007 11:03:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7G3IsF003395 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 11:03:19 -0500 +Date: Fri, 7 Dec 2007 11:03:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39033 - event/trunk/event-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 11:10:56 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39033 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-07 11:03:07 -0500 (Fri, 07 Dec 2007) +New Revision: 39033 + +Modified: +event/trunk/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-11169 + +Added switch for bulk preference on email notification, +Patch Supplied by Daniel Parry. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 11:10:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 11:10:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 11:10:08 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lB7GA0MM008632; + Fri, 7 Dec 2007 11:10:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47597052.AF536.27998 ; + 7 Dec 2007 11:09:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 605E09690D; + Fri, 7 Dec 2007 16:09:52 +0000 (GMT) +Message-ID: <200712071602.lB7G2U8N003383@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 128 + for ; + Fri, 7 Dec 2007 16:09:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C57301D606 + for ; Fri, 7 Dec 2007 16:09:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7G2UAp003385 + for ; Fri, 7 Dec 2007 11:02:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7G2U8N003383 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 11:02:30 -0500 +Date: Fri, 7 Dec 2007 11:02:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39032 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 11:10:08 2007 +X-DSPAM-Confidence: 0.8524 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39032 + +Author: zqian@umich.edu +Date: 2007-12-07 11:02:29 -0500 (Fri, 07 Dec 2007) +New Revision: 39032 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merged into post-2-4: + +Sakai Source Repository #34037 Wed Aug 15 12:09:53 MST 2007 zqian@umich.edu fix to SAK-11146:Deleted assignments showing to students but not site owner +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + +Repository Revision Date User Message +Sakai Source Repository #34046 Wed Aug 15 13:32:23 MST 2007 zqian@umich.edu fix to SAK-11146:Deleted assignments showing to students but not site owner: this is for fixing the possible null value of sort criteria which would cause the exception stack as reported in the ticket +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 11:03:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 11:03:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 11:03:52 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by brazil.mail.umich.edu () with ESMTP id lB7G3qQ1005801; + Fri, 7 Dec 2007 11:03:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47596EE2.59998.6689 ; + 7 Dec 2007 11:03:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CE67C62716; + Fri, 7 Dec 2007 16:03:43 +0000 (GMT) +Message-ID: <200712071556.lB7FuSDM003325@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 495 + for ; + Fri, 7 Dec 2007 16:03:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9E50A1D606 + for ; Fri, 7 Dec 2007 16:03:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FuSae003327 + for ; Fri, 7 Dec 2007 10:56:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FuSDM003325 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:56:28 -0500 +Date: Fri, 7 Dec 2007 10:56:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39031 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 11:03:52 2007 +X-DSPAM-Confidence: 0.9920 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39031 + +Author: zqian@umich.edu +Date: 2007-12-07 10:56:27 -0500 (Fri, 07 Dec 2007) +New Revision: 39031 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +Merge into post-2-4: + +Sakai Source Repository #33923 Mon Aug 13 10:44:16 MST 2007 zqian@umich.edu Fix to SAK-11101: assignments/download all - saves as .txt +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + +Sakai Source Repository #34971 Tue Sep 11 14:02:11 MST 2007 zqian@umich.edu fix to SAK-11101:assignments / download all - saves as .txt +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Fri Dec 7 10:59:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 10:59:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 10:59:11 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by sleepers.mail.umich.edu () with ESMTP id lB7FxAAp023857; + Fri, 7 Dec 2007 10:59:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47596DBB.37B19.25825 ; + 7 Dec 2007 10:58:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2A63E968EA; + Fri, 7 Dec 2007 15:52:55 +0000 (GMT) +Message-ID: <200712071551.lB7FpbbZ003302@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 599 + for ; + Fri, 7 Dec 2007 15:52:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 701B81D606 + for ; Fri, 7 Dec 2007 15:58:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FpbAZ003304 + for ; Fri, 7 Dec 2007 10:51:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FpbbZ003302 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:51:37 -0500 +Date: Fri, 7 Dec 2007 10:51:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r39030 - in gradebook/trunk/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 10:59:11 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39030 + +Author: josrodri@iupui.edu +Date: 2007-12-07 10:51:35 -0500 (Fri, 07 Dec 2007) +New Revision: 39030 + +Modified: +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12114: main bulk gradebook item add +SAK-12287: redid styling +SAK-12284: removal of item in FF with exactly 2 items now working + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 10:58:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 10:58:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 10:58:25 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id lB7FwPAk020164; + Fri, 7 Dec 2007 10:58:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47596D95.85F38.5352 ; + 7 Dec 2007 10:58:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2C347968D1; + Fri, 7 Dec 2007 15:52:11 +0000 (GMT) +Message-ID: <200712071550.lB7FoknN003290@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 57 + for ; + Fri, 7 Dec 2007 15:51:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CAB562F206 + for ; Fri, 7 Dec 2007 15:57:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FokMW003292 + for ; Fri, 7 Dec 2007 10:50:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FoknN003290 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:50:46 -0500 +Date: Fri, 7 Dec 2007 10:50:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39029 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 10:58:25 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39029 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 10:50:46 -0500 (Fri, 07 Dec 2007) +New Revision: 39029 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +updating externals + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 10:57:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 10:57:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 10:57:39 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lB7FvcBQ019366; + Fri, 7 Dec 2007 10:57:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47596D69.B4DB7.27798 ; + 7 Dec 2007 10:57:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A4714968C9; + Fri, 7 Dec 2007 15:51:24 +0000 (GMT) +Message-ID: <200712071549.lB7FnuEU003278@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 234 + for ; + Fri, 7 Dec 2007 15:50:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 56B0A2F206 + for ; Fri, 7 Dec 2007 15:56:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Fnukj003280 + for ; Fri, 7 Dec 2007 10:49:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FnuEU003278 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:49:56 -0500 +Date: Fri, 7 Dec 2007 10:49:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39028 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 10:57:39 2007 +X-DSPAM-Confidence: 0.8468 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39028 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 10:49:55 -0500 (Fri, 07 Dec 2007) +New Revision: 39028 + +Modified: +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +May have missed an end tag + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 10:25:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 10:25:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 10:25:30 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by fan.mail.umich.edu () with ESMTP id lB7FPTk3004917; + Fri, 7 Dec 2007 10:25:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 475965E1.A5BB4.10263 ; + 7 Dec 2007 10:25:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F166096852; + Fri, 7 Dec 2007 15:24:11 +0000 (GMT) +Message-ID: <200712071518.lB7FI0QU003242@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 858 + for ; + Fri, 7 Dec 2007 15:23:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7DFCF31E18 + for ; Fri, 7 Dec 2007 15:25:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FI0SL003244 + for ; Fri, 7 Dec 2007 10:18:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FI0QU003242 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:18:00 -0500 +Date: Fri, 7 Dec 2007 10:18:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39027 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 10:25:30 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39027 + +Author: zqian@umich.edu +Date: 2007-12-07 10:17:58 -0500 (Fri, 07 Dec 2007) +New Revision: 39027 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +SAK-11016 - Fix for initial assignment order +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 10:16:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 10:16:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 10:16:06 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lB7FG6dL020720; + Fri, 7 Dec 2007 10:16:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 475963AC.76234.4932 ; + 7 Dec 2007 10:15:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B28A59684B; + Fri, 7 Dec 2007 15:15:59 +0000 (GMT) +Message-ID: <200712071508.lB7F8bfa003222@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 974 + for ; + Fri, 7 Dec 2007 15:15:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E1DAD31E13 + for ; Fri, 7 Dec 2007 15:15:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7F8bUF003224 + for ; Fri, 7 Dec 2007 10:08:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7F8bfa003222 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:08:37 -0500 +Date: Fri, 7 Dec 2007 10:08:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39026 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 10:16:06 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39026 + +Author: zqian@umich.edu +Date: 2007-12-07 10:08:35 -0500 (Fri, 07 Dec 2007) +New Revision: 39026 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +merge into post-2-4: + +r33390 fix to SAK-10978: Assignment submission receipt formatting is right aligned. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Dec 7 10:13:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 10:13:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 10:13:50 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lB7FDm8C017485; + Fri, 7 Dec 2007 10:13:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47596326.BBF8A.23134 ; + 7 Dec 2007 10:13:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4BC9D95E1E; + Fri, 7 Dec 2007 15:13:17 +0000 (GMT) +Message-ID: <200712071505.lB7F5gTW003211@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 175 + for ; + Fri, 7 Dec 2007 15:12:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 876D431CA7 + for ; Fri, 7 Dec 2007 15:12:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7F5gAm003213 + for ; Fri, 7 Dec 2007 10:05:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7F5gTW003211 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:05:42 -0500 +Date: Fri, 7 Dec 2007 10:05:42 -0500 +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [svn] revprop propchange - r33390 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 10:13:50 2007 +X-DSPAM-Confidence: 0.8357 +X-DSPAM-Probability: 0.0000 + +Author: zqian@umich.edu +Revision: 33390 +Property Name: svn:log + +New Property Value: +fix to SAK-10978: Assignment submission receipt formatting is right aligned. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 09:47:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 09:47:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 09:47:19 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id lB7ElIg3016842; + Fri, 7 Dec 2007 09:47:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47595CF1.B4B1.29847 ; + 7 Dec 2007 09:47:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AA40F967C5; + Fri, 7 Dec 2007 14:46:36 +0000 (GMT) +Message-ID: <200712071439.lB7EdDCe003192@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 273 + for ; + Fri, 7 Dec 2007 14:46:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5614731CB7 + for ; Fri, 7 Dec 2007 14:46:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EdDAd003194 + for ; Fri, 7 Dec 2007 09:39:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EdDCe003192 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:39:13 -0500 +Date: Fri, 7 Dec 2007 09:39:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39025 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 09:47:19 2007 +X-DSPAM-Confidence: 0.9820 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39025 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 09:39:12 -0500 (Fri, 07 Dec 2007) +New Revision: 39025 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +updating externals + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 09:42:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 09:42:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 09:42:39 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by chaos.mail.umich.edu () with ESMTP id lB7Egc59003917; + Fri, 7 Dec 2007 09:42:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47595BD8.D194.10901 ; + 7 Dec 2007 09:42:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A80FF967FD; + Fri, 7 Dec 2007 14:41:46 +0000 (GMT) +Message-ID: <200712071434.lB7EYJYY003167@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 258 + for ; + Fri, 7 Dec 2007 14:41:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8665E31CB7 + for ; Fri, 7 Dec 2007 14:41:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EYJl0003169 + for ; Fri, 7 Dec 2007 09:34:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EYJYY003167 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:34:19 -0500 +Date: Fri, 7 Dec 2007 09:34:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39024 - in site/branches/oncourse_opc_122007: site-api/api/src/java/org/sakaiproject/site/api site-api/api/src/java/org/sakaiproject/site/cover site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 09:42:39 2007 +X-DSPAM-Confidence: 0.7551 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39024 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 09:34:18 -0500 (Fri, 07 Dec 2007) +New Revision: 39024 + +Modified: +site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SitePage.java +site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java +site/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSitePage.java +site/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +site/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/DbSiteService.java +Log: +Merging the IU overlay stuff into the branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Dec 7 09:32:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 09:32:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 09:32:02 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lB7EW1Pa031038; + Fri, 7 Dec 2007 09:32:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4759595B.C02B.8985 ; + 7 Dec 2007 09:31:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6C02A967C5; + Fri, 7 Dec 2007 14:31:42 +0000 (GMT) +Message-ID: <200712071424.lB7EOXsm003134@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 58 + for ; + Fri, 7 Dec 2007 14:31:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F023131CB7 + for ; Fri, 7 Dec 2007 14:31:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EOXIl003136 + for ; Fri, 7 Dec 2007 09:24:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EOXsm003134 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:24:33 -0500 +Date: Fri, 7 Dec 2007 09:24:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r39023 - in component/branches/SAK-8315/component-impl/integration-test/src: test/java/org/sakaiproject/component webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 09:32:02 2007 +X-DSPAM-Confidence: 0.7564 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39023 + +Author: ray@media.berkeley.edu +Date: 2007-12-07 09:24:24 -0500 (Fri, 07 Dec 2007) +New Revision: 39023 + +Modified: +component/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/branches/SAK-8315/component-impl/integration-test/src/webapp/WEB-INF/components.xml +Log: +Put aliasing test in place before experimenting with context hierarchies + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Dec 7 09:22:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 09:22:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 09:22:41 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by jacknife.mail.umich.edu () with ESMTP id lB7EMe8V017551; + Fri, 7 Dec 2007 09:22:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4759571A.790C7.13081 ; + 7 Dec 2007 09:22:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1E33F967C6; + Fri, 7 Dec 2007 14:22:17 +0000 (GMT) +Message-ID: <200712071415.lB7EF1cB003122@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789 + for ; + Fri, 7 Dec 2007 14:22:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5F09B31CB1 + for ; Fri, 7 Dec 2007 14:22:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EF1YO003124 + for ; Fri, 7 Dec 2007 09:15:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EF1cB003122 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:15:01 -0500 +Date: Fri, 7 Dec 2007 09:15:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39022 - in portal/branches/oncourse_opc_122007: portal-charon/charon/src/webapp/styles portal-impl/impl/src/bundle portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 09:22:41 2007 +X-DSPAM-Confidence: 0.6953 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39022 + +Author: chmaurer@iupui.edu +Date: 2007-12-07 09:14:58 -0500 (Fri, 07 Dec 2007) +New Revision: 39022 + +Modified: +portal/branches/oncourse_opc_122007/portal-charon/charon/src/webapp/styles/portalstyles.css +portal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle/sitenav.properties +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/CharonPortal.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +Merging in iu overlay stuff for portal + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Fri Dec 7 07:16:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 07:16:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 07:16:25 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lB7CGMB0015423; + Fri, 7 Dec 2007 07:16:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47593991.A34F9.23855 ; + 7 Dec 2007 07:16:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6090296516; + Fri, 7 Dec 2007 12:15:29 +0000 (GMT) +Message-ID: <200712071157.lB7BvJDD003010@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 962 + for ; + Fri, 7 Dec 2007 12:04:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 680E431B92 + for ; Fri, 7 Dec 2007 12:04:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7BvKVk003012 + for ; Fri, 7 Dec 2007 06:57:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7BvJDD003010 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 06:57:20 -0500 +Date: Fri, 7 Dec 2007 06:57:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r39021 - in sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui: bean/evaluation listener/evaluation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 07:16:25 2007 +X-DSPAM-Confidence: 0.9791 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39021 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-12-07 06:57:03 -0500 (Fri, 07 Dec 2007) +New Revision: 39021 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +Log: +Samigo Detailed Statistics Cleanup + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 7 05:01:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 05:01:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 05:01:19 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lB7A1H8e027835; + Fri, 7 Dec 2007 05:01:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 475919E7.B2F41.25590 ; + 7 Dec 2007 05:01:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7A01796633; + Fri, 7 Dec 2007 10:01:09 +0000 (GMT) +Message-ID: <200712070953.lB79rao2002917@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 326 + for ; + Fri, 7 Dec 2007 10:00:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3672A2E8D8 + for ; Fri, 7 Dec 2007 10:00:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB79rbER002919 + for ; Fri, 7 Dec 2007 04:53:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB79rao2002917 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 04:53:36 -0500 +Date: Fri, 7 Dec 2007 04:53:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39020 - site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 05:01:19 2007 +X-DSPAM-Confidence: 0.9785 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39020 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-07 04:53:25 -0500 (Fri, 07 Dec 2007) +New Revision: 39020 + +Modified: +site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +SAK-12324 add the course site logic to allowAddCourseSite(id) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Dec 7 03:28:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 03:28:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 03:28:37 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lB782vUu004097; + Fri, 7 Dec 2007 03:02:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4758FE2A.E2521.16942 ; + 7 Dec 2007 03:02:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 24ADE94FD1; + Fri, 7 Dec 2007 08:02:42 +0000 (GMT) +Message-ID: <200712070755.lB77tSPv002409@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 405 + for ; + Fri, 7 Dec 2007 08:02:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CF26331B54 + for ; Fri, 7 Dec 2007 08:02:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB77tS2W002411 + for ; Fri, 7 Dec 2007 02:55:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB77tSPv002409 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 02:55:28 -0500 +Date: Fri, 7 Dec 2007 02:55:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r39019 - in site/branches/SAK-12324: site-api/api/src/java/org/sakaiproject/site/api site-api/api/src/java/org/sakaiproject/site/cover site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 03:28:37 2007 +X-DSPAM-Confidence: 0.9786 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39019 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-07 02:55:01 -0500 (Fri, 07 Dec 2007) +New Revision: 39019 + +Modified: +site/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java +site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +SAK-12324 Modify site + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Dec 7 01:46:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 07 Dec 2007 01:46:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 07 Dec 2007 01:46:16 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by brazil.mail.umich.edu () with ESMTP id lB76kGWR029249; + Fri, 7 Dec 2007 01:46:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4758EC24.388B9.18191 ; + 7 Dec 2007 01:46:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CF5D4961C9; + Fri, 7 Dec 2007 06:18:19 +0000 (GMT) +Message-ID: <200712070610.lB76A0rl002221@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 317 + for ; + Fri, 7 Dec 2007 06:06:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4CDA02E8F6 + for ; Fri, 7 Dec 2007 06:17:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB76A0g0002223 + for ; Fri, 7 Dec 2007 01:10:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB76A0rl002221 + for source@collab.sakaiproject.org; Fri, 7 Dec 2007 01:10:00 -0500 +Date: Fri, 7 Dec 2007 01:10:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r39018 - metaobj/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Dec 7 01:46:16 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39018 + +Author: rjlowe@iupui.edu +Date: 2007-12-07 01:09:59 -0500 (Fri, 07 Dec 2007) +New Revision: 39018 + +Added: +metaobj/branches/SAK-12393/ +Log: +New branch of metaobj for SAK-12393 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Dec 6 19:54:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 19:54:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 19:54:45 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lB70shs0006459; + Thu, 6 Dec 2007 19:54:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 475899CE.24FCA.7660 ; + 6 Dec 2007 19:54:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2FD4A95B6D; + Fri, 7 Dec 2007 00:13:16 +0000 (GMT) +Message-ID: <200712070025.lB70PLV7001982@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1023 + for ; + Fri, 7 Dec 2007 00:12:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 469A231BB3 + for ; Fri, 7 Dec 2007 00:32:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB70PLZv001984 + for ; Thu, 6 Dec 2007 19:25:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB70PLV7001982 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 19:25:21 -0500 +Date: Thu, 6 Dec 2007 19:25:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r39017 - master/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 19:54:45 2007 +X-DSPAM-Confidence: 0.9820 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39017 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-06 19:25:17 -0500 (Thu, 06 Dec 2007) +New Revision: 39017 + +Modified: +master/trunk/pom.xml +Log: +NOJIRA +Updated api docs to point to the correct space + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Dec 6 17:47:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 17:47:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 17:47:36 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by panther.mail.umich.edu () with ESMTP id lB6MlZTo009845; + Thu, 6 Dec 2007 17:47:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47587BFC.29B64.19772 ; + 6 Dec 2007 17:47:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4E8F395E97; + Thu, 6 Dec 2007 22:47:05 +0000 (GMT) +Message-ID: <200712062239.lB6MdXTG001685@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 504 + for ; + Thu, 6 Dec 2007 22:46:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB6AE316EE + for ; Thu, 6 Dec 2007 22:46:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6MdXNm001687 + for ; Thu, 6 Dec 2007 17:39:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6MdXTG001685 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:39:33 -0500 +Date: Thu, 6 Dec 2007 17:39:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39016 - in authz/branches/SAK-7924/authz-impl/impl/src/sql: hsqldb mssql mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 17:47:36 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39016 + +Author: gjthomas@iupui.edu +Date: 2007-12-06 17:39:20 -0500 (Thu, 06 Dec 2007) +New Revision: 39016 + +Modified: +authz/branches/SAK-7924/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql +authz/branches/SAK-7924/authz-impl/impl/src/sql/mssql/sakai_realm.sql +authz/branches/SAK-7924/authz-impl/impl/src/sql/mysql/sakai_realm.sql +authz/branches/SAK-7924/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +SAK-7924 - View Site in Different Role - Added a permission + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Dec 6 17:47:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 17:47:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 17:47:35 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by fan.mail.umich.edu () with ESMTP id lB6MlYkb015800; + Thu, 6 Dec 2007 17:47:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47587BF4.C65B4.6831 ; + 6 Dec 2007 17:47:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6DBFA95EA5; + Thu, 6 Dec 2007 22:46:53 +0000 (GMT) +Message-ID: <200712062239.lB6MdFh1001673@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791 + for ; + Thu, 6 Dec 2007 22:46:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DFE56316EE + for ; Thu, 6 Dec 2007 22:46:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6MdFfV001675 + for ; Thu, 6 Dec 2007 17:39:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6MdFh1001673 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:39:15 -0500 +Date: Thu, 6 Dec 2007 17:39:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39015 - portal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 17:47:35 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39015 + +Author: gjthomas@iupui.edu +Date: 2007-12-06 17:39:09 -0500 (Thu, 06 Dec 2007) +New Revision: 39015 + +Modified: +portal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +SAK-7924 - View Site in Different Role - Added a permission + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Dec 6 17:46:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 17:46:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 17:46:56 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by panther.mail.umich.edu () with ESMTP id lB6MkupI009527; + Thu, 6 Dec 2007 17:46:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47587BDA.6A437.18711 ; + 6 Dec 2007 17:46:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8B3E9917CA; + Thu, 6 Dec 2007 22:46:22 +0000 (GMT) +Message-ID: <200712062239.lB6Md3Am001661@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 535 + for ; + Thu, 6 Dec 2007 22:46:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E8FAB316EE + for ; Thu, 6 Dec 2007 22:46:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Md3xY001663 + for ; Thu, 6 Dec 2007 17:39:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Md3Am001661 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:39:03 -0500 +Date: Thu, 6 Dec 2007 17:39:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r39014 - in site/branches/SAK-7924: site-api/api/src/java/org/sakaiproject/site/api site-api/api/src/java/org/sakaiproject/site/cover site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 17:46:56 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39014 + +Author: gjthomas@iupui.edu +Date: 2007-12-06 17:38:44 -0500 (Thu, 06 Dec 2007) +New Revision: 39014 + +Modified: +site/branches/SAK-7924/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/branches/SAK-7924/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java +site/branches/SAK-7924/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +SAK-7924 - View Site in Different Role - Added a permission + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 17:07:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 17:07:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 17:07:49 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lB6M7l3j013342; + Thu, 6 Dec 2007 17:07:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 475872AD.62734.9839 ; + 6 Dec 2007 17:07:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 02C1151AC2; + Thu, 6 Dec 2007 22:07:33 +0000 (GMT) +Message-ID: <200712062200.lB6M0HCd001627@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 817 + for ; + Thu, 6 Dec 2007 22:07:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B846329F32 + for ; Thu, 6 Dec 2007 22:07:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6M0HW6001629 + for ; Thu, 6 Dec 2007 17:00:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6M0HCd001627 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:00:17 -0500 +Date: Thu, 6 Dec 2007 17:00:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39013 - in assignment/branches/post-2-4: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 17:07:49 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39013 + +Author: zqian@umich.edu +Date: 2007-12-06 17:00:12 -0500 (Thu, 06 Dec 2007) +New Revision: 39013 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +merge into post-2-4: + +fix to SAK-10943:Submission notification fails silently for submitting users who don't have an email address +Files Changed +MODIFY /assignment/trunk/assignment-bundles/assignment.properties +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 16:48:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 16:48:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 16:48:30 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lB6LmTtm010635; + Thu, 6 Dec 2007 16:48:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47586E26.C7D6F.11509 ; + 6 Dec 2007 16:48:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 60A626CD5D; + Thu, 6 Dec 2007 21:47:24 +0000 (GMT) +Message-ID: <200712062141.lB6Lf6W8001577@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 134 + for ; + Thu, 6 Dec 2007 21:47:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BC3AF316F7 + for ; Thu, 6 Dec 2007 21:48:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Lf619001579 + for ; Thu, 6 Dec 2007 16:41:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Lf6W8001577 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:41:06 -0500 +Date: Thu, 6 Dec 2007 16:41:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39012 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 16:48:30 2007 +X-DSPAM-Confidence: 0.9841 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39012 + +Author: zqian@umich.edu +Date: 2007-12-06 16:41:04 -0500 (Thu, 06 Dec 2007) +New Revision: 39012 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +Fix to SAK-10864: NPE in AssignmentAction.sizeResources +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 16:45:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 16:45:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 16:45:16 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lB6LjGEu010629; + Thu, 6 Dec 2007 16:45:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47586D65.D7B49.21696 ; + 6 Dec 2007 16:45:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 49E0B4E65C; + Thu, 6 Dec 2007 21:44:11 +0000 (GMT) +Message-ID: <200712062137.lB6Lbqep001555@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899 + for ; + Thu, 6 Dec 2007 21:43:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 38F40316F9 + for ; Thu, 6 Dec 2007 21:44:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6LbqIl001557 + for ; Thu, 6 Dec 2007 16:37:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Lbqep001555 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:37:52 -0500 +Date: Thu, 6 Dec 2007 16:37:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39011 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 16:45:16 2007 +X-DSPAM-Confidence: 0.7548 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39011 + +Author: zqian@umich.edu +Date: 2007-12-06 16:37:49 -0500 (Thu, 06 Dec 2007) +New Revision: 39011 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +merge into post-2-4: + +ix to SAK-10668: Non-electronic Assignments default to Submitted +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 16:24:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 16:24:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 16:24:55 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by sleepers.mail.umich.edu () with ESMTP id lB6LOsfg028982; + Thu, 6 Dec 2007 16:24:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 475868A0.356CB.15867 ; + 6 Dec 2007 16:24:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5899095D62; + Thu, 6 Dec 2007 21:23:48 +0000 (GMT) +Message-ID: <200712062117.lB6LHOep001487@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 166 + for ; + Thu, 6 Dec 2007 21:23:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 610D42E273 + for ; Thu, 6 Dec 2007 21:24:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6LHO2f001489 + for ; Thu, 6 Dec 2007 16:17:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6LHOep001487 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:17:24 -0500 +Date: Thu, 6 Dec 2007 16:17:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39010 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 16:24:55 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39010 + +Author: zqian@umich.edu +Date: 2007-12-06 16:17:22 -0500 (Thu, 06 Dec 2007) +New Revision: 39010 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge into post-2-4: + +Fix to SAK-10823:Odd flow updates only first user in grade list +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 16:09:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 16:09:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 16:09:50 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by mission.mail.umich.edu () with ESMTP id lB6L9nbX026302; + Thu, 6 Dec 2007 16:09:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47586513.E1F79.22547 ; + 6 Dec 2007 16:09:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6CB529440C; + Thu, 6 Dec 2007 21:08:39 +0000 (GMT) +Message-ID: <200712062102.lB6L2Mb9001464@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 902 + for ; + Thu, 6 Dec 2007 21:08:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F12D82E41F + for ; Thu, 6 Dec 2007 21:09:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6L2Mvd001466 + for ; Thu, 6 Dec 2007 16:02:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6L2Mb9001464 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:02:22 -0500 +Date: Thu, 6 Dec 2007 16:02:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39009 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 16:09:50 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39009 + +Author: zqian@umich.edu +Date: 2007-12-06 16:02:20 -0500 (Thu, 06 Dec 2007) +New Revision: 39009 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm +Log: +merge into post-2-4: + +Fix to SAK-10784:need better formatting for the student assignment submission confirmation page +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:43:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:43:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:43:50 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lB6KhnEU031547; + Thu, 6 Dec 2007 15:43:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47585EFF.60630.12547 ; + 6 Dec 2007 15:43:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3F6F495D67; + Thu, 6 Dec 2007 20:41:55 +0000 (GMT) +Message-ID: <200712062035.lB6KZYR2001403@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 972 + for ; + Thu, 6 Dec 2007 20:41:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5976730F6F + for ; Thu, 6 Dec 2007 20:42:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KZYQR001405 + for ; Thu, 6 Dec 2007 15:35:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KZYR2001403 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:35:34 -0500 +Date: Thu, 6 Dec 2007 15:35:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39008 - in authz/branches/oncourse_opc_122007: authz-api/api/src/java/org/sakaiproject/authz/api authz-impl/impl/src/java/org/sakaiproject/authz/impl authz-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:43:50 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39008 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:35:32 -0500 (Thu, 06 Dec 2007) +New Revision: 39008 + +Added: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/OncourseSecurity.java +Modified: +authz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurityTest.java +authz/branches/oncourse_opc_122007/authz-impl/pack/src/webapp/WEB-INF/components.xml +Log: +Adding oncourse overlay files into this branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 15:39:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:39:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:39:18 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lB6KdHgr000457; + Thu, 6 Dec 2007 15:39:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47585DE9.62F5.16533 ; + 6 Dec 2007 15:39:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 99CE6509F8; + Thu, 6 Dec 2007 20:39:02 +0000 (GMT) +Message-ID: <200712062031.lB6KVmYN001385@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 843 + for ; + Thu, 6 Dec 2007 20:38:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F30BF2E41F + for ; Thu, 6 Dec 2007 20:38:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KVm89001387 + for ; Thu, 6 Dec 2007 15:31:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KVmYN001385 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:31:48 -0500 +Date: Thu, 6 Dec 2007 15:31:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39007 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:39:18 2007 +X-DSPAM-Confidence: 0.9880 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39007 + +Author: zqian@umich.edu +Date: 2007-12-06 15:31:46 -0500 (Thu, 06 Dec 2007) +New Revision: 39007 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merged into post-2-4: + +Fix to SAK-10413: Assignment attachments are missing after importing a site using the Site Archive tool +Files Changed +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 15:31:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:31:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:31:03 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by score.mail.umich.edu () with ESMTP id lB6KV2ak015369; + Thu, 6 Dec 2007 15:31:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47585C00.77014.16890 ; + 6 Dec 2007 15:30:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0D0F9509F8; + Thu, 6 Dec 2007 20:30:12 +0000 (GMT) +Message-ID: <200712062023.lB6KNf7x001365@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 530 + for ; + Thu, 6 Dec 2007 20:29:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1752530F6F + for ; Thu, 6 Dec 2007 20:30:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KNfLu001367 + for ; Thu, 6 Dec 2007 15:23:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KNf7x001365 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:23:41 -0500 +Date: Thu, 6 Dec 2007 15:23:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r39006 - in assignment/branches/post-2-4: . assignment-bundles assignment-impl/impl assignment-impl/impl/src assignment-tool/tool assignment-tool/tool/src +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:31:03 2007 +X-DSPAM-Confidence: 0.8491 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39006 + +Author: zqian@umich.edu +Date: 2007-12-06 15:23:34 -0500 (Thu, 06 Dec 2007) +New Revision: 39006 + +Added: +assignment/branches/post-2-4/assignment-bundles/ +assignment/branches/post-2-4/assignment-bundles/.classpath +assignment/branches/post-2-4/assignment-bundles/.project +assignment/branches/post-2-4/assignment-bundles/assignment.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment.properties +assignment/branches/post-2-4/assignment-bundles/assignment_ar.properties +assignment/branches/post-2-4/assignment-bundles/assignment_ca.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment_ca.properties +assignment/branches/post-2-4/assignment-bundles/assignment_en_GB.properties +assignment/branches/post-2-4/assignment-bundles/assignment_es.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment_es.properties +assignment/branches/post-2-4/assignment-bundles/assignment_fr_CA.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment_fr_CA.properties +assignment/branches/post-2-4/assignment-bundles/assignment_ja.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment_ja.properties +assignment/branches/post-2-4/assignment-bundles/assignment_ko.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment_ko.properties +assignment/branches/post-2-4/assignment-bundles/assignment_nl.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment_nl.properties +assignment/branches/post-2-4/assignment-bundles/assignment_ru.properties +assignment/branches/post-2-4/assignment-bundles/assignment_sv.properties +assignment/branches/post-2-4/assignment-bundles/assignment_zh_CN.metaprops +assignment/branches/post-2-4/assignment-bundles/assignment_zh_CN.properties +Removed: +assignment/branches/post-2-4/assignment-impl/impl/src/bundle/ +assignment/branches/post-2-4/assignment-tool/tool/src/bundle/ +Modified: +assignment/branches/post-2-4/assignment-impl/impl/project.xml +assignment/branches/post-2-4/assignment-tool/tool/project.xml +Log: +merge into post-2-4: + +Fix to SAK-10432:combine the properties files used by assignment-tool and assignment-impl + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:25:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:25:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:25:23 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id lB6KPMq7011484; + Thu, 6 Dec 2007 15:25:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47585AAB.9997.20846 ; + 6 Dec 2007 15:25:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B05295D3B; + Thu, 6 Dec 2007 20:25:11 +0000 (GMT) +Message-ID: <200712062017.lB6KHwnw001345@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 860 + for ; + Thu, 6 Dec 2007 20:24:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A5D232DEF9 + for ; Thu, 6 Dec 2007 20:24:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KHwfY001347 + for ; Thu, 6 Dec 2007 15:17:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KHwnw001345 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:17:58 -0500 +Date: Thu, 6 Dec 2007 15:17:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39005 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:25:23 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39005 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:17:57 -0500 (Thu, 06 Dec 2007) +New Revision: 39005 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Updating externals for december opc build + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:21:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:21:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:21:21 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lB6KLKXm001412; + Thu, 6 Dec 2007 15:21:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 475859B9.99A4F.713 ; + 6 Dec 2007 15:21:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B313195D44; + Thu, 6 Dec 2007 20:21:09 +0000 (GMT) +Message-ID: <200712062013.lB6KDsuo001333@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 878 + for ; + Thu, 6 Dec 2007 20:20:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 27DC22E273 + for ; Thu, 6 Dec 2007 20:20:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KDtBs001335 + for ; Thu, 6 Dec 2007 15:13:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KDsuo001333 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:13:54 -0500 +Date: Thu, 6 Dec 2007 15:13:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39004 - in site/branches/oncourse_opc_122007: site-api/api/src/java/org/sakaiproject/site/api site-api/api/src/java/org/sakaiproject/site/cover site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:21:21 2007 +X-DSPAM-Confidence: 0.8505 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39004 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:13:53 -0500 (Thu, 06 Dec 2007) +New Revision: 39004 + +Modified: +site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java +site/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +svn merge -c 38994 https://source.sakaiproject.org/svn/site/branches/SAK-7924_2-4-x +U site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +U site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +U site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java + +svn log -r 38994 https://source.sakaiproject.org/svn/site/branches/SAK-7924_2-4-x +------------------------------------------------------------------------ +r38994 | gjthomas@iupui.edu | 2007-12-06 12:29:09 -0500 (Thu, 06 Dec 2007) | 1 line + +SAK-7924 - View Site in Different Role - 2.4.x updates +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:19:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:19:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:19:13 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id lB6KJC4d003082; + Thu, 6 Dec 2007 15:19:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47585938.EE5AB.7745 ; + 6 Dec 2007 15:19:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B23E495D3B; + Thu, 6 Dec 2007 20:19:02 +0000 (GMT) +Message-ID: <200712062011.lB6KBlhn001314@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 952 + for ; + Thu, 6 Dec 2007 20:18:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1F8F12E273 + for ; Thu, 6 Dec 2007 20:18:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KBlF8001316 + for ; Thu, 6 Dec 2007 15:11:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KBlhn001314 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:11:47 -0500 +Date: Thu, 6 Dec 2007 15:11:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39003 - site/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:19:13 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39003 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:11:46 -0500 (Thu, 06 Dec 2007) +New Revision: 39003 + +Added: +site/branches/oncourse_opc_122007/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:17:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:17:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:17:13 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lB6KHCF3006847; + Thu, 6 Dec 2007 15:17:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 475858C0.A52D6.914 ; + 6 Dec 2007 15:17:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6BB0695D25; + Thu, 6 Dec 2007 20:16:44 +0000 (GMT) +Message-ID: <200712062009.lB6K9jJA001287@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 245 + for ; + Thu, 6 Dec 2007 20:16:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7598C2E273 + for ; Thu, 6 Dec 2007 20:16:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K9jhm001289 + for ; Thu, 6 Dec 2007 15:09:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K9jJA001287 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:09:45 -0500 +Date: Thu, 6 Dec 2007 15:09:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39002 - in portal/branches/oncourse_opc_122007: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:17:13 2007 +X-DSPAM-Confidence: 0.6189 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39002 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:09:43 -0500 (Thu, 06 Dec 2007) +New Revision: 39002 + +Added: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +svn merge -c 38993 https://source.sakaiproject.org/svn/portal/branches/SAK-7924_2-4-x +U portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +A portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +A portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +U portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +U portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm + +svn log -r 38993 https://source.sakaiproject.org/svn/portal/branches/SAK-7924_2-4-x +------------------------------------------------------------------------ +r38993 | gjthomas@iupui.edu | 2007-12-06 12:29:01 -0500 (Thu, 06 Dec 2007) | 1 line + +SAK-7924 - View Site in Different Role - 2.4.x updates +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:14:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:14:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:14:27 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by fan.mail.umich.edu () with ESMTP id lB6KEQ6W016706; + Thu, 6 Dec 2007 15:14:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4758581A.C8630.6718 ; + 6 Dec 2007 15:14:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0D78E79B57; + Thu, 6 Dec 2007 20:14:09 +0000 (GMT) +Message-ID: <200712062006.lB6K6oMI001275@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713 + for ; + Thu, 6 Dec 2007 20:13:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 000692E273 + for ; Thu, 6 Dec 2007 20:13:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K6o4o001277 + for ; Thu, 6 Dec 2007 15:06:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K6oMI001275 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:06:50 -0500 +Date: Thu, 6 Dec 2007 15:06:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39001 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:14:27 2007 +X-DSPAM-Confidence: 0.9790 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39001 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:06:49 -0500 (Thu, 06 Dec 2007) +New Revision: 39001 + +Added: +portal/branches/oncourse_opc_122007/ +Removed: +portal/branches/oncourse_opc_122007_2/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:14:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:14:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:14:13 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lB6KECPe007232; + Thu, 6 Dec 2007 15:14:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47585802.D08EC.6469 ; + 6 Dec 2007 15:14:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6339A95D36; + Thu, 6 Dec 2007 20:13:53 +0000 (GMT) +Message-ID: <200712062006.lB6K6cEb001263@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 918 + for ; + Thu, 6 Dec 2007 20:13:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2B7C92E273 + for ; Thu, 6 Dec 2007 20:13:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K6cOQ001265 + for ; Thu, 6 Dec 2007 15:06:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K6cEb001263 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:06:38 -0500 +Date: Thu, 6 Dec 2007 15:06:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r39000 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:14:13 2007 +X-DSPAM-Confidence: 0.9779 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39000 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:06:37 -0500 (Thu, 06 Dec 2007) +New Revision: 39000 + +Added: +portal/branches/oncourse_opc_122007_old/ +Removed: +portal/branches/oncourse_opc_122007/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:13:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:13:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:13:46 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lB6KDiVZ000336; + Thu, 6 Dec 2007 15:13:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475857F2.9EC08.5824 ; + 6 Dec 2007 15:13:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BFA4452334; + Thu, 6 Dec 2007 20:13:26 +0000 (GMT) +Message-ID: <200712062006.lB6K6Dw6001251@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 653 + for ; + Thu, 6 Dec 2007 20:13:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CD88A2E273 + for ; Thu, 6 Dec 2007 20:13:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K6DOA001253 + for ; Thu, 6 Dec 2007 15:06:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K6Dw6001251 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:06:13 -0500 +Date: Thu, 6 Dec 2007 15:06:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38999 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:13:46 2007 +X-DSPAM-Confidence: 0.8416 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38999 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:06:12 -0500 (Thu, 06 Dec 2007) +New Revision: 38999 + +Added: +portal/branches/oncourse_opc_122007_2/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:10:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:10:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:10:03 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lB6KA222001838; + Thu, 6 Dec 2007 15:10:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47585707.7AB15.14652 ; + 6 Dec 2007 15:09:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7BB8C95D25; + Thu, 6 Dec 2007 20:09:40 +0000 (GMT) +Message-ID: <200712062002.lB6K2TDd001239@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79 + for ; + Thu, 6 Dec 2007 20:09:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F3FDD2E263 + for ; Thu, 6 Dec 2007 20:09:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K2Thp001241 + for ; Thu, 6 Dec 2007 15:02:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K2TDd001239 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:02:29 -0500 +Date: Thu, 6 Dec 2007 15:02:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38998 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:10:03 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38998 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:02:28 -0500 (Thu, 06 Dec 2007) +New Revision: 38998 + +Removed: +portal/branches/oncourse_opc_122007_overlay/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 15:07:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 15:07:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 15:07:48 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lB6K7lwp002969; + Thu, 6 Dec 2007 15:07:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4758568D.5634.11895 ; + 6 Dec 2007 15:07:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EBBE951829; + Thu, 6 Dec 2007 20:07:27 +0000 (GMT) +Message-ID: <200712062000.lB6K0M4s001225@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769 + for ; + Thu, 6 Dec 2007 20:07:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7B2A22E263 + for ; Thu, 6 Dec 2007 20:07:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K0MLB001227 + for ; Thu, 6 Dec 2007 15:00:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K0M4s001225 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:00:22 -0500 +Date: Thu, 6 Dec 2007 15:00:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38997 - in authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql: hsqldb mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 15:07:48 2007 +X-DSPAM-Confidence: 0.7002 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38997 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 15:00:20 -0500 (Thu, 06 Dec 2007) +New Revision: 38997 + +Modified: +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/mysql/sakai_realm.sql +authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +svn merge -c 38992 https://source.sakaiproject.org/svn/authz/branches/SAK-7924_2-4-x +U authz-impl/impl/src/sql/mysql/sakai_realm.sql +U authz-impl/impl/src/sql/oracle/sakai_realm.sql +U authz-impl/impl/src/sql/hsqldb/sakai_realm.sql + +svn log -r 38992 https://source.sakaiproject.org/svn/authz/branches/SAK-7924_2-4-x +------------------------------------------------------------------------ +r38992 | gjthomas@iupui.edu | 2007-12-06 12:28:54 -0500 (Thu, 06 Dec 2007) | 1 line + +SAK-7924 - View Site in Different Role - 2.4.x updates +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 14:50:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 14:50:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 14:50:46 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lB6JojI1013459; + Thu, 6 Dec 2007 14:50:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4758528C.D4BBE.24717 ; + 6 Dec 2007 14:50:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 825E095B74; + Thu, 6 Dec 2007 19:50:32 +0000 (GMT) +Message-ID: <200712061943.lB6JhEfA001192@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453 + for ; + Thu, 6 Dec 2007 19:50:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 539752E233 + for ; Thu, 6 Dec 2007 19:50:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6JhEc4001194 + for ; Thu, 6 Dec 2007 14:43:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6JhEfA001192 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 14:43:14 -0500 +Date: Thu, 6 Dec 2007 14:43:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38996 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 14:50:46 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38996 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 14:43:13 -0500 (Thu, 06 Dec 2007) +New Revision: 38996 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl/AssignmentItemImpl.java +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12388 +Using gen.submission instead of just submission for the key. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Dec 6 12:51:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 12:51:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 12:51:06 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lB6Hp5eX010478; + Thu, 6 Dec 2007 12:51:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47583683.5B736.29888 ; + 6 Dec 2007 12:51:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CCD238FED1; + Thu, 6 Dec 2007 17:28:54 +0000 (GMT) +Message-ID: <200712061743.lB6HhdKC001065@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 505 + for ; + Thu, 6 Dec 2007 17:28:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1428131571 + for ; Thu, 6 Dec 2007 17:50:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HhdC8001067 + for ; Thu, 6 Dec 2007 12:43:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HhdKC001065 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:43:39 -0500 +Date: Thu, 6 Dec 2007 12:43:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38995 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 12:51:06 2007 +X-DSPAM-Confidence: 0.8474 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38995 + +Author: aaronz@vt.edu +Date: 2007-12-06 12:43:34 -0500 (Thu, 06 Dec 2007) +New Revision: 38995 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java +Log: +SAK-12105: Fixed up logging (yet again) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Dec 6 12:37:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 12:37:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 12:37:41 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id lB6HbfEb016932; + Thu, 6 Dec 2007 12:37:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4758335E.67B23.28825 ; + 6 Dec 2007 12:37:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 433D195B96; + Thu, 6 Dec 2007 17:15:21 +0000 (GMT) +Message-ID: <200712061729.lB6HTFfI001018@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 216 + for ; + Thu, 6 Dec 2007 17:14:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BE1E03156C + for ; Thu, 6 Dec 2007 17:36:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HTGoI001020 + for ; Thu, 6 Dec 2007 12:29:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HTFfI001018 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:29:15 -0500 +Date: Thu, 6 Dec 2007 12:29:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r38994 - in site/branches/SAK-7924_2-4-x: site-api/api/src/java/org/sakaiproject/site/api site-api/api/src/java/org/sakaiproject/site/cover site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 12:37:41 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38994 + +Author: gjthomas@iupui.edu +Date: 2007-12-06 12:29:09 -0500 (Thu, 06 Dec 2007) +New Revision: 38994 + +Modified: +site/branches/SAK-7924_2-4-x/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/branches/SAK-7924_2-4-x/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java +site/branches/SAK-7924_2-4-x/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +Log: +SAK-7924 - View Site in Different Role - 2.4.x updates + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Dec 6 12:37:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 12:37:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 12:37:40 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lB6HbcNL016864; + Thu, 6 Dec 2007 12:37:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47583350.FD85.7575 ; + 6 Dec 2007 12:37:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B4E4195B94; + Thu, 6 Dec 2007 17:15:14 +0000 (GMT) +Message-ID: <200712061729.lB6HT8vk001005@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236 + for ; + Thu, 6 Dec 2007 17:14:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D232B3156C + for ; Thu, 6 Dec 2007 17:36:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HT8QR001007 + for ; Thu, 6 Dec 2007 12:29:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HT8vk001005 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:29:08 -0500 +Date: Thu, 6 Dec 2007 12:29:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r38993 - in portal/branches/SAK-7924_2-4-x: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 12:37:40 2007 +X-DSPAM-Confidence: 0.6505 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38993 + +Author: gjthomas@iupui.edu +Date: 2007-12-06 12:29:01 -0500 (Thu, 06 Dec 2007) +New Revision: 38993 + +Added: +portal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +portal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +Modified: +portal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-7924_2-4-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +SAK-7924 - View Site in Different Role - 2.4.x updates + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Dec 6 12:37:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 12:37:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 12:37:12 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lB6HbBQO008580; + Thu, 6 Dec 2007 12:37:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47583340.D898.1541 ; + 6 Dec 2007 12:37:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33ADB95B9B; + Thu, 6 Dec 2007 17:15:09 +0000 (GMT) +Message-ID: <200712061728.lB6HSxr3000993@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 181 + for ; + Thu, 6 Dec 2007 17:14:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 27D743156C + for ; Thu, 6 Dec 2007 17:35:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HSxBC000995 + for ; Thu, 6 Dec 2007 12:28:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HSxr3000993 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:28:59 -0500 +Date: Thu, 6 Dec 2007 12:28:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r38992 - in authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql: hsqldb mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 12:37:12 2007 +X-DSPAM-Confidence: 0.7562 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38992 + +Author: gjthomas@iupui.edu +Date: 2007-12-06 12:28:54 -0500 (Thu, 06 Dec 2007) +New Revision: 38992 + +Modified: +authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql +authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql/mysql/sakai_realm.sql +authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +SAK-7924 - View Site in Different Role - 2.4.x updates + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 12:01:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 12:01:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 12:01:42 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id lB6H1fgQ003081; + Thu, 6 Dec 2007 12:01:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47582AED.4E2F4.12614 ; + 6 Dec 2007 12:01:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B821A959E5; + Thu, 6 Dec 2007 17:01:25 +0000 (GMT) +Message-ID: <200712061654.lB6GsCTe000899@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758 + for ; + Thu, 6 Dec 2007 17:01:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D0CCF31562 + for ; Thu, 6 Dec 2007 17:01:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GsCTP000901 + for ; Thu, 6 Dec 2007 11:54:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GsCTe000899 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:54:12 -0500 +Date: Thu, 6 Dec 2007 11:54:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38991 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 12:01:42 2007 +X-DSPAM-Confidence: 0.6950 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38991 + +Author: zqian@umich.edu +Date: 2007-12-06 11:54:10 -0500 (Thu, 06 Dec 2007) +New Revision: 38991 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +Merge into post-2-4: + +fix to SAK-10409:The display to all groups check box does not function as expected +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm + +-This line, and those below, will be ignored-- + +M assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 11:59:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 11:59:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 11:59:02 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id lB6Gx1jG001370; + Thu, 6 Dec 2007 11:59:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47582A4F.2E72E.11271 ; + 6 Dec 2007 11:58:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CF3CE959FD; + Thu, 6 Dec 2007 16:58:51 +0000 (GMT) +Message-ID: <200712061651.lB6GpdGb000878@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 533 + for ; + Thu, 6 Dec 2007 16:58:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1473B2DF92 + for ; Thu, 6 Dec 2007 16:58:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Gpd3T000880 + for ; Thu, 6 Dec 2007 11:51:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GpdGb000878 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:51:39 -0500 +Date: Thu, 6 Dec 2007 11:51:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38990 - in assignment/branches/post-2-4: assignment-impl/impl/src/bundle assignment-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 11:59:02 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38990 + +Author: zqian@umich.edu +Date: 2007-12-06 11:51:37 -0500 (Thu, 06 Dec 2007) +New Revision: 38990 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/bundle/assignment_fr_CA.properties +assignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment_fr_CA.properties +Log: +merge into post-2-4: + +SAK-10401 updated french translation +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/bundle/assignment_fr_CA.properties +MODIFY /assignment/trunk/assignment-impl/impl/src/bundle/assignment_fr_CA.properties + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 11:47:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 11:47:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 11:47:00 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by brazil.mail.umich.edu () with ESMTP id lB6GkxbF011995; + Thu, 6 Dec 2007 11:46:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4758277B.22014.18998 ; + 6 Dec 2007 11:46:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5D1778F073; + Thu, 6 Dec 2007 16:46:50 +0000 (GMT) +Message-ID: <200712061639.lB6Gdb2N000847@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 139 + for ; + Thu, 6 Dec 2007 16:46:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9E4FD31560 + for ; Thu, 6 Dec 2007 16:46:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Gdb8e000849 + for ; Thu, 6 Dec 2007 11:39:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Gdb2N000847 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:39:37 -0500 +Date: Thu, 6 Dec 2007 11:39:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38989 - in assignment/branches/post-2-4: assignment-api/api/src/java/org/sakaiproject/assignment/api assignment-api/api/src/java/org/sakaiproject/assignment/cover assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 11:47:00 2007 +X-DSPAM-Confidence: 0.9882 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38989 + +Author: zqian@umich.edu +Date: 2007-12-06 11:39:33 -0500 (Thu, 06 Dec 2007) +New Revision: 38989 + +Modified: +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4: + +fix to SAK-3703:Option show Assignment List by Student lists others besides students in spreadsheet +Files Changed +MODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +MODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +MODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 11:42:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 11:42:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 11:42:52 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by brazil.mail.umich.edu () with ESMTP id lB6GgpOI009032; + Thu, 6 Dec 2007 11:42:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47582683.9CD48.4588 ; + 6 Dec 2007 11:42:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ECEB9602A5; + Thu, 6 Dec 2007 16:42:42 +0000 (GMT) +Message-ID: <200712061635.lB6GZRXd000763@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 125 + for ; + Thu, 6 Dec 2007 16:42:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 473EE31560 + for ; Thu, 6 Dec 2007 16:42:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GZRir000765 + for ; Thu, 6 Dec 2007 11:35:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GZRXd000763 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:35:27 -0500 +Date: Thu, 6 Dec 2007 11:35:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38988 - site/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 11:42:52 2007 +X-DSPAM-Confidence: 0.9841 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38988 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 11:35:26 -0500 (Thu, 06 Dec 2007) +New Revision: 38988 + +Added: +site/branches/SAK-7924_2-4-x/ +Log: +Creating branch for site against 2.4.x from r33408 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 11:26:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 11:26:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 11:26:54 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lB6GQrJ1015311; + Thu, 6 Dec 2007 11:26:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 475822C0.424D3.30389 ; + 6 Dec 2007 11:26:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8368C95999; + Thu, 6 Dec 2007 16:26:24 +0000 (GMT) +Message-ID: <200712061619.lB6GJQSD000722@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 285 + for ; + Thu, 6 Dec 2007 16:26:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C15E32D162 + for ; Thu, 6 Dec 2007 16:26:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GJQuE000724 + for ; Thu, 6 Dec 2007 11:19:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GJQSD000722 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:19:26 -0500 +Date: Thu, 6 Dec 2007 11:19:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38987 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 11:26:54 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38987 + +Author: zqian@umich.edu +Date: 2007-12-06 11:19:24 -0500 (Thu, 06 Dec 2007) +New Revision: 38987 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge fix into post-2-4: + +Fix to SAK-10061:Assignments Allows same Open/Due/Accept dates +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 11:19:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 11:19:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 11:19:33 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by score.mail.umich.edu () with ESMTP id lB6GJWxI018103; + Thu, 6 Dec 2007 11:19:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4758210D.426B3.8174 ; + 6 Dec 2007 11:19:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 41718941D3; + Thu, 6 Dec 2007 16:19:20 +0000 (GMT) +Message-ID: <200712061611.lB6GBvZ7000701@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 573 + for ; + Thu, 6 Dec 2007 16:18:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 671F92D162 + for ; Thu, 6 Dec 2007 16:18:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GBv6l000703 + for ; Thu, 6 Dec 2007 11:11:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GBvZ7000701 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:11:57 -0500 +Date: Thu, 6 Dec 2007 11:11:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38986 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 11:19:33 2007 +X-DSPAM-Confidence: 0.8480 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38986 + +Author: zqian@umich.edu +Date: 2007-12-06 11:11:55 -0500 (Thu, 06 Dec 2007) +New Revision: 38986 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_grade.vm +Log: +merge into post-2-4: + +fix to SAK-9793:Student view of Non-Electronic submission type assignment has incorrect page title +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_grade.vm +MODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 11:11:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 11:11:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 11:11:35 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lB6GBX0v005715; + Thu, 6 Dec 2007 11:11:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47581F25.57102.14408 ; + 6 Dec 2007 11:11:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6971B6FFC4; + Thu, 6 Dec 2007 16:11:16 +0000 (GMT) +Message-ID: <200712061604.lB6G40NY000678@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1003 + for ; + Thu, 6 Dec 2007 16:11:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5E5DC2DD3A + for ; Thu, 6 Dec 2007 16:10:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6G40Br000680 + for ; Thu, 6 Dec 2007 11:04:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6G40NY000678 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:04:00 -0500 +Date: Thu, 6 Dec 2007 11:04:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38985 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 11:11:35 2007 +X-DSPAM-Confidence: 0.7565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38985 + +Author: zqian@umich.edu +Date: 2007-12-06 11:03:59 -0500 (Thu, 06 Dec 2007) +New Revision: 38985 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +Log: +merge into post-2-4 + +Fix to SAK-10062:Maxlength on Grade Scale Points field too long +Files Changed +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +MODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Dec 6 10:25:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 10:25:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 10:25:19 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by faithful.mail.umich.edu () with ESMTP id lB6FPIO1021169; + Thu, 6 Dec 2007 10:25:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47581452.9227F.3597 ; + 6 Dec 2007 10:25:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 62B0B54CF6; + Thu, 6 Dec 2007 15:25:09 +0000 (GMT) +Message-ID: <200712061517.lB6FHnTs000636@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416 + for ; + Thu, 6 Dec 2007 15:24:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 895832CF57 + for ; Thu, 6 Dec 2007 15:24:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6FHnLC000638 + for ; Thu, 6 Dec 2007 10:17:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6FHnTs000636 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 10:17:49 -0500 +Date: Thu, 6 Dec 2007 10:17:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38984 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 10:25:19 2007 +X-DSPAM-Confidence: 0.8486 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38984 + +Author: zqian@umich.edu +Date: 2007-12-06 10:17:47 -0500 (Thu, 06 Dec 2007) +New Revision: 38984 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12353:Gradebook does not show the point correctly + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Dec 6 08:17:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 08:17:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 08:17:32 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by flawless.mail.umich.edu () with ESMTP id lB6DHVLX029343; + Thu, 6 Dec 2007 08:17:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4757F665.60E9.29147 ; + 6 Dec 2007 08:17:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 29D1B5E483; + Thu, 6 Dec 2007 13:17:31 +0000 (GMT) +Message-ID: <200712061310.lB6DAC8q000531@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 160 + for ; + Thu, 6 Dec 2007 13:17:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 814272E000 + for ; Thu, 6 Dec 2007 13:17:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6DACmT000533 + for ; Thu, 6 Dec 2007 08:10:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6DAC8q000531 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 08:10:12 -0500 +Date: Thu, 6 Dec 2007 08:10:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38983 - site/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 08:17:32 2007 +X-DSPAM-Confidence: 0.9784 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38983 + +Author: chmaurer@iupui.edu +Date: 2007-12-06 08:10:11 -0500 (Thu, 06 Dec 2007) +New Revision: 38983 + +Added: +site/branches/SAK-12324/ +Log: +Creating branch for SAK-12324 from trunk @r38500 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Dec 6 08:13:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 08:13:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 08:13:50 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lB6DDmja027920; + Thu, 6 Dec 2007 08:13:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4757F581.69DAF.9370 ; + 6 Dec 2007 08:13:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6081F94EA7; + Thu, 6 Dec 2007 13:13:48 +0000 (GMT) +Message-ID: <200712061306.lB6D6Dlb000515@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 583 + for ; + Thu, 6 Dec 2007 13:13:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D5B001D4E5 + for ; Thu, 6 Dec 2007 13:13:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6D6DJs000517 + for ; Thu, 6 Dec 2007 08:06:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6D6Dlb000515 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 08:06:13 -0500 +Date: Thu, 6 Dec 2007 08:06:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38982 - in sam/branches/SAK-12065/samigo-app/src: java/org/sakaiproject/tool/assessment/bundle java/org/sakaiproject/tool/assessment/ui/bean/evaluation java/org/sakaiproject/tool/assessment/ui/listener/evaluation webapp/jsf/evaluation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 08:13:50 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38982 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-12-06 08:05:38 -0500 (Thu, 06 Dec 2007) +New Revision: 38982 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp +Log: +Samigo Detailed Statistics - display messages cleanup + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 6 05:27:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 05:27:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 05:27:28 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by faithful.mail.umich.edu () with ESMTP id lB6ARQX6029801; + Thu, 6 Dec 2007 05:27:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4757CE89.71920.24571 ; + 6 Dec 2007 05:27:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 575EB9552E; + Thu, 6 Dec 2007 10:27:06 +0000 (GMT) +Message-ID: <200712061020.lB6AK58X000384@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314 + for ; + Thu, 6 Dec 2007 10:26:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2D6992C729 + for ; Thu, 6 Dec 2007 10:27:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6AK5Zl000386 + for ; Thu, 6 Dec 2007 05:20:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6AK58X000384 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 05:20:05 -0500 +Date: Thu, 6 Dec 2007 05:20:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38981 - in site-manage/branches/SAK-12324/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 05:27:28 2007 +X-DSPAM-Confidence: 0.9786 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38981 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-06 05:19:40 -0500 (Thu, 06 Dec 2007) +New Revision: 38981 + +Modified: +site-manage/branches/SAK-12324/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/SAK-12324/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm +Log: +SAK-12324 Modifications to site-manage + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Dec 6 03:57:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 06 Dec 2007 03:57:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 06 Dec 2007 03:57:03 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by mission.mail.umich.edu () with ESMTP id lB68v0T3016850; + Thu, 6 Dec 2007 03:57:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4757B957.8C762.23710 ; + 6 Dec 2007 03:56:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 12486954BD; + Thu, 6 Dec 2007 08:56:53 +0000 (GMT) +Message-ID: <200712060849.lB68naRS032340@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 478 + for ; + Thu, 6 Dec 2007 08:56:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E472924F31 + for ; Thu, 6 Dec 2007 08:56:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB68nbJU032342 + for ; Thu, 6 Dec 2007 03:49:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB68naRS032340 + for source@collab.sakaiproject.org; Thu, 6 Dec 2007 03:49:37 -0500 +Date: Thu, 6 Dec 2007 03:49:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38980 - site-manage/branches/SAK-12324 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Dec 6 03:57:03 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38980 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-06 03:49:11 -0500 (Thu, 06 Dec 2007) +New Revision: 38980 + +Added: +site-manage/branches/SAK-12324/pageorder/ +site-manage/branches/SAK-12324/pom.xml +site-manage/branches/SAK-12324/site-manage-api/ +site-manage/branches/SAK-12324/site-manage-help/ +site-manage/branches/SAK-12324/site-manage-impl/ +site-manage/branches/SAK-12324/site-manage-tool/ +site-manage/branches/SAK-12324/site-manage-util/ +Log: +Code to work with + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 5 21:26:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 21:26:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 21:26:30 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by brazil.mail.umich.edu () with ESMTP id lB62QT8b023543; + Wed, 5 Dec 2007 21:26:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47575DCC.581C0.4659 ; + 5 Dec 2007 21:26:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C8F1E93643; + Thu, 6 Dec 2007 02:26:27 +0000 (GMT) +Message-ID: <200712060218.lB62Iv0O032073@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 635 + for ; + Thu, 6 Dec 2007 02:26:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 31BB930F45 + for ; Thu, 6 Dec 2007 02:25:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB62IwQj032075 + for ; Wed, 5 Dec 2007 21:18:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB62Iv0O032073 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 21:18:57 -0500 +Date: Wed, 5 Dec 2007 21:18:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38979 - site/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 21:26:30 2007 +X-DSPAM-Confidence: 0.9784 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38979 + +Author: chmaurer@iupui.edu +Date: 2007-12-05 21:18:54 -0500 (Wed, 05 Dec 2007) +New Revision: 38979 + +Added: +site/branches/SAK-7924/ +Log: +Creating branch for SAK-7924 from trunk @r38500 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Dec 5 19:41:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 19:41:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 19:41:19 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by chaos.mail.umich.edu () with ESMTP id lB60fI8a030172; + Wed, 5 Dec 2007 19:41:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 475744FC.8F113.7112 ; + 5 Dec 2007 19:40:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B31B594F96; + Thu, 6 Dec 2007 00:29:35 +0000 (GMT) +Message-ID: <200712060025.lB60PvwW031972@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 599 + for ; + Thu, 6 Dec 2007 00:24:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6573B30C4E + for ; Thu, 6 Dec 2007 00:32:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB60Pwn8031974 + for ; Wed, 5 Dec 2007 19:25:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB60PvwW031972 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 19:25:57 -0500 +Date: Wed, 5 Dec 2007 19:25:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38978 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 19:41:19 2007 +X-DSPAM-Confidence: 0.9753 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38978 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-05 19:25:53 -0500 (Wed, 05 Dec 2007) +New Revision: 38978 + +Added: +portal/branches/SAK-12350/ +Log: +Creating Branch +SAK-12350 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Dec 5 11:52:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 11:52:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 11:52:47 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by faithful.mail.umich.edu () with ESMTP id lB5GqjsO014948; + Wed, 5 Dec 2007 11:52:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4756D754.784B1.30370 ; + 5 Dec 2007 11:52:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E06F794831; + Wed, 5 Dec 2007 16:52:34 +0000 (GMT) +Message-ID: <200712051645.lB5GjLK8031476@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 484 + for ; + Wed, 5 Dec 2007 16:52:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E955D1D609 + for ; Wed, 5 Dec 2007 16:52:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5GjLCg031478 + for ; Wed, 5 Dec 2007 11:45:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5GjLK8031476 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 11:45:21 -0500 +Date: Wed, 5 Dec 2007 11:45:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38977 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 11:52:47 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38977 + +Author: zqian@umich.edu +Date: 2007-12-05 11:45:19 -0500 (Wed, 05 Dec 2007) +New Revision: 38977 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-12338:exception in the manually request course site page if no course information is entered + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Wed Dec 5 09:07:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 09:07:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 09:07:17 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by fan.mail.umich.edu () with ESMTP id lB5E7Gra011043; + Wed, 5 Dec 2007 09:07:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4756B080.C335A.2336 ; + 5 Dec 2007 09:07:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D071D944BC; + Wed, 5 Dec 2007 14:06:51 +0000 (GMT) +Message-ID: <200712051359.lB5DxgQJ031200@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875 + for ; + Wed, 5 Dec 2007 14:06:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98995306F2 + for ; Wed, 5 Dec 2007 14:06:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5Dxg90031202 + for ; Wed, 5 Dec 2007 08:59:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DxgQJ031200 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:59:42 -0500 +Date: Wed, 5 Dec 2007 08:59:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r38976 - in blog/branches/sakai_2-4-x/tool/src: bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle java/uk/ac/lancs/e_science/sakai/tools/blogger webapp/sakai-blogger-tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 09:07:17 2007 +X-DSPAM-Confidence: 0.8430 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38976 + +Author: a.fish@lancaster.ac.uk +Date: 2007-12-05 08:59:02 -0500 (Wed, 05 Dec 2007) +New Revision: 38976 + +Added: +blog/branches/sakai_2-4-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_es.properties +Modified: +blog/branches/sakai_2-4-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages.properties +blog/branches/sakai_2-4-x/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PostListViewerController.java +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostCreateView.jsp +Log: +SAK-7578 - Applied i18n patch supplied by David Roldan Martinez. Thanks David. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Wed Dec 5 08:47:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 08:47:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 08:47:38 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by chaos.mail.umich.edu () with ESMTP id lB5DlcBT006016; + Wed, 5 Dec 2007 08:47:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4756ABF4.323FF.30944 ; + 5 Dec 2007 08:47:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F20C9444D; + Wed, 5 Dec 2007 13:47:28 +0000 (GMT) +Message-ID: <200712051340.lB5DeAZI031188@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791 + for ; + Wed, 5 Dec 2007 13:47:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 491AA306F0 + for ; Wed, 5 Dec 2007 13:47:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5DeAYm031190 + for ; Wed, 5 Dec 2007 08:40:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DeAZI031188 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:40:10 -0500 +Date: Wed, 5 Dec 2007 08:40:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r38975 - blog/branches/sakai_2-4-x/jsfComponent +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 08:47:38 2007 +X-DSPAM-Confidence: 0.8435 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38975 + +Author: a.fish@lancaster.ac.uk +Date: 2007-12-05 08:39:58 -0500 (Wed, 05 Dec 2007) +New Revision: 38975 + +Modified: +blog/branches/sakai_2-4-x/jsfComponent/pom.xml +Log: +Added sakai-util dependency + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Wed Dec 5 08:33:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 08:33:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 08:33:51 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by godsend.mail.umich.edu () with ESMTP id lB5DXoTK019568; + Wed, 5 Dec 2007 08:33:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4756A8B8.4F977.1938 ; + 5 Dec 2007 08:33:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A6F694488; + Wed, 5 Dec 2007 13:33:38 +0000 (GMT) +Message-ID: <200712051326.lB5DQVGH031149@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331 + for ; + Wed, 5 Dec 2007 13:33:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB8B423031 + for ; Wed, 5 Dec 2007 13:33:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5DQWSd031151 + for ; Wed, 5 Dec 2007 08:26:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DQVGH031149 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:26:31 -0500 +Date: Wed, 5 Dec 2007 08:26:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r38974 - blog/trunk/api-impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 08:33:51 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38974 + +Author: a.fish@lancaster.ac.uk +Date: 2007-12-05 08:26:21 -0500 (Wed, 05 Dec 2007) +New Revision: 38974 + +Modified: +blog/trunk/api-impl/pom.xml +blog/trunk/api-impl/project.xml +Log: +SAK-10367 - Added log4j as a dependency. This commit should have been part of r38973. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Wed Dec 5 08:28:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 08:28:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 08:28:30 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by chaos.mail.umich.edu () with ESMTP id lB5DSTEo030675; + Wed, 5 Dec 2007 08:28:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4756A776.D78A3.31056 ; + 5 Dec 2007 08:28:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AA84394472; + Wed, 5 Dec 2007 13:28:01 +0000 (GMT) +Message-ID: <200712051320.lB5DKvgn031095@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 144 + for ; + Wed, 5 Dec 2007 13:27:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B986423031 + for ; Wed, 5 Dec 2007 13:27:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5DKw6x031097 + for ; Wed, 5 Dec 2007 08:20:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DKvgn031095 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:20:57 -0500 +Date: Wed, 5 Dec 2007 08:20:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r38973 - in blog/trunk: . api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 08:28:30 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38973 + +Author: a.fish@lancaster.ac.uk +Date: 2007-12-05 08:20:33 -0500 (Wed, 05 Dec 2007) +New Revision: 38973 + +Modified: +blog/trunk/.classpath +blog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence/SakaiPersistenceManager.java +Log: +SAK-10367 Added some proper logging to SakaiPersistenceManager. Made storePost transactional. Hopefully this should get rid of the post loss problems. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Dec 5 08:16:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 08:16:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 08:16:42 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lB5DGgDJ007606; + Wed, 5 Dec 2007 08:16:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4756A4B4.AE018.27314 ; + 5 Dec 2007 08:16:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F5339429F; + Wed, 5 Dec 2007 13:16:25 +0000 (GMT) +Message-ID: <200712051309.lB5D99L5031006@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676 + for ; + Wed, 5 Dec 2007 13:15:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 71A4B306F5 + for ; Wed, 5 Dec 2007 13:16:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5D99DH031008 + for ; Wed, 5 Dec 2007 08:09:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5D99L5031006 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:09:09 -0500 +Date: Wed, 5 Dec 2007 08:09:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38972 - db/branches/SAK-12239/db-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 08:16:42 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38972 + +Author: jimeng@umich.edu +Date: 2007-12-05 08:09:00 -0500 (Wed, 05 Dec 2007) +New Revision: 38972 + +Modified: +db/branches/SAK-12239/db-impl/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-12239 +Fixed bean definition to use 2.4.x bindings for spring. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Dec 5 07:41:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 05 Dec 2007 07:41:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 05 Dec 2007 07:41:10 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by casino.mail.umich.edu () with ESMTP id lB5Cf9wR017269; + Wed, 5 Dec 2007 07:41:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47569C5F.D9A1A.8654 ; + 5 Dec 2007 07:41:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8E4E692A27; + Wed, 5 Dec 2007 12:40:07 +0000 (GMT) +Message-ID: <200712051233.lB5CXpDZ030952@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 325 + for ; + Wed, 5 Dec 2007 12:39:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA0A03089A + for ; Wed, 5 Dec 2007 12:40:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5CXpp8030954 + for ; Wed, 5 Dec 2007 07:33:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5CXpDZ030952 + for source@collab.sakaiproject.org; Wed, 5 Dec 2007 07:33:51 -0500 +Date: Wed, 5 Dec 2007 07:33:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38971 - site-manage/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Dec 5 07:41:10 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38971 + +Author: chmaurer@iupui.edu +Date: 2007-12-05 07:33:49 -0500 (Wed, 05 Dec 2007) +New Revision: 38971 + +Added: +site-manage/branches/SAK-12324/ +Log: +Creating branch for David Horwitz + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Tue Dec 4 23:39:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 23:39:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 23:39:21 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by godsend.mail.umich.edu () with ESMTP id lB54dK2q024172; + Tue, 4 Dec 2007 23:39:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47562B70.B3C68.26161 ; + 4 Dec 2007 23:39:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9EE759269C; + Wed, 5 Dec 2007 04:37:15 +0000 (GMT) +Message-ID: <200712050431.lB54VxGQ029832@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 209 + for ; + Wed, 5 Dec 2007 04:36:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 262052FFA4 + for ; Wed, 5 Dec 2007 04:38:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB54Vxpl029834 + for ; Tue, 4 Dec 2007 23:31:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB54VxGQ029832 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 23:31:59 -0500 +Date: Tue, 4 Dec 2007 23:31:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38969 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 23:39:21 2007 +X-DSPAM-Confidence: 0.8433 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38969 + +Author: wagnermr@iupui.edu +Date: 2007-12-04 23:31:50 -0500 (Tue, 04 Dec 2007) +New Revision: 38969 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getViewableStudentsForItemForCurrentUser + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Dec 4 15:44:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 15:44:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 15:44:13 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by flawless.mail.umich.edu () with ESMTP id lB4KiCgn001574; + Tue, 4 Dec 2007 15:44:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4755BC15.4D6AB.29560 ; + 4 Dec 2007 15:44:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2DC3893785; + Tue, 4 Dec 2007 20:43:58 +0000 (GMT) +Message-ID: <200712042036.lB4Kar1A029110@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 443 + for ; + Tue, 4 Dec 2007 20:43:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B59CA24F66 + for ; Tue, 4 Dec 2007 20:43:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4Karm5029112 + for ; Tue, 4 Dec 2007 15:36:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4Kar1A029110 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 15:36:53 -0500 +Date: Tue, 4 Dec 2007 15:36:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r38968 - in gradebook/trunk/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 15:44:13 2007 +X-DSPAM-Confidence: 0.6509 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38968 + +Author: josrodri@iupui.edu +Date: 2007-12-04 15:36:51 -0500 (Tue, 04 Dec 2007) +New Revision: 38968 + +Modified: +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/trunk/app/ui/src/webapp/addAssignment.jsp +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js +Log: +SAK-12285: removed dropdown to expose a specific number of add panes at once +SAK-12287: added highlight for alternate add panes (Resources file upload pane styling/coloring) +SAK-12288: trivial capitalization fix +SAK-12286: re-added '* means required' text to add page + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Dec 4 14:47:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 14:47:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 14:47:35 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id lB4JlYH9006460; + Tue, 4 Dec 2007 14:47:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4755AECB.1CA79.17578 ; + 4 Dec 2007 14:47:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A05ED92A00; + Tue, 4 Dec 2007 19:46:17 +0000 (GMT) +Message-ID: <200712041940.lB4JeCmG029063@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 976 + for ; + Tue, 4 Dec 2007 19:46:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AF1083017D + for ; Tue, 4 Dec 2007 19:47:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4JeCOv029065 + for ; Tue, 4 Dec 2007 14:40:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4JeCmG029063 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 14:40:12 -0500 +Date: Tue, 4 Dec 2007 14:40:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38967 - in memory/branches/SAK-11913: . memory-api/api memory-common-deployer memory-impl/impl memory-impl/pack memory-test memory-test/pack memory-test/test memory-test/tool memory-tool/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 14:47:35 2007 +X-DSPAM-Confidence: 0.8488 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38967 + +Author: aaronz@vt.edu +Date: 2007-12-04 14:39:58 -0500 (Tue, 04 Dec 2007) +New Revision: 38967 + +Modified: +memory/branches/SAK-11913/memory-api/api/pom.xml +memory/branches/SAK-11913/memory-common-deployer/pom.xml +memory/branches/SAK-11913/memory-impl/impl/pom.xml +memory/branches/SAK-11913/memory-impl/pack/pom.xml +memory/branches/SAK-11913/memory-test/pack/pom.xml +memory/branches/SAK-11913/memory-test/pom.xml +memory/branches/SAK-11913/memory-test/test/pom.xml +memory/branches/SAK-11913/memory-test/tool/pom.xml +memory/branches/SAK-11913/memory-tool/tool/pom.xml +memory/branches/SAK-11913/pom.xml +Log: +SAK-11913: fixed up to use snapshot instead of M2 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Dec 4 14:40:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 14:40:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 14:40:11 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id lB4JeADL031923; + Tue, 4 Dec 2007 14:40:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4755AD0E.EF621.15537 ; + 4 Dec 2007 14:40:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D474093825; + Tue, 4 Dec 2007 19:38:47 +0000 (GMT) +Message-ID: <200712041932.lB4JWSdZ029049@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 315 + for ; + Tue, 4 Dec 2007 19:38:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C5A383016D + for ; Tue, 4 Dec 2007 19:39:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4JWTZY029051 + for ; Tue, 4 Dec 2007 14:32:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4JWSdZ029049 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 14:32:28 -0500 +Date: Tue, 4 Dec 2007 14:32:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38966 - in content/branches/SAK-12105/content-impl-jcr: impl/src/java/org/sakaiproject/content/impl pack +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 14:40:11 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38966 + +Author: aaronz@vt.edu +Date: 2007-12-04 14:32:20 -0500 (Tue, 04 Dec 2007) +New Revision: 38966 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java +content/branches/SAK-12105/content-impl-jcr/pack/ +Log: +SAK-12105: merged in trunk changes + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Dec 4 14:15:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 14:15:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 14:15:15 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lB4JFE9g011184; + Tue, 4 Dec 2007 14:15:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4755A734.76E6.21852 ; + 4 Dec 2007 14:15:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D953382386; + Tue, 4 Dec 2007 19:14:56 +0000 (GMT) +Message-ID: <200712041907.lB4J7pDb029014@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 615 + for ; + Tue, 4 Dec 2007 19:14:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8968A30181 + for ; Tue, 4 Dec 2007 19:14:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4J7pHY029016 + for ; Tue, 4 Dec 2007 14:07:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4J7pDb029014 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 14:07:51 -0500 +Date: Tue, 4 Dec 2007 14:07:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r38965 - syllabus/trunk/syllabus-app/src/java/org/sakaiproject/tool/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 14:15:15 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38965 + +Author: josrodri@iupui.edu +Date: 2007-12-04 14:07:49 -0500 (Tue, 04 Dec 2007) +New Revision: 38965 + +Modified: +syllabus/trunk/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +Log: +SAK-12234 - will check if a SyllabusItem was actually retrieved before grabbing redirect url + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 4 13:58:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 13:58:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 13:58:51 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id lB4IwnTo003995; + Tue, 4 Dec 2007 13:58:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4755A35E.1359.3302 ; + 4 Dec 2007 13:58:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3D426936D0; + Tue, 4 Dec 2007 18:48:51 +0000 (GMT) +Message-ID: <200712041851.lB4IpGJT028986@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529 + for ; + Tue, 4 Dec 2007 18:48:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B8EE3016D + for ; Tue, 4 Dec 2007 18:58:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4IpG9R028988 + for ; Tue, 4 Dec 2007 13:51:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4IpGJT028986 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 13:51:16 -0500 +Date: Tue, 4 Dec 2007 13:51:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38964 - osp/branches/osp_nightly +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 13:58:51 2007 +X-DSPAM-Confidence: 0.9790 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38964 + +Author: chmaurer@iupui.edu +Date: 2007-12-04 13:51:15 -0500 (Tue, 04 Dec 2007) +New Revision: 38964 + +Modified: +osp/branches/osp_nightly/pom.xml +Log: +Adding content-taggable to the pom + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 4 13:58:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 13:58:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 13:58:31 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by flawless.mail.umich.edu () with ESMTP id lB4IwTLA019364; + Tue, 4 Dec 2007 13:58:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4755A348.D6730.24164 ; + 4 Dec 2007 13:58:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0D335936C1; + Tue, 4 Dec 2007 18:48:32 +0000 (GMT) +Message-ID: <200712041850.lB4IoV4j028974@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 201 + for ; + Tue, 4 Dec 2007 18:48:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 49E333016D + for ; Tue, 4 Dec 2007 18:57:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4IoVGc028976 + for ; Tue, 4 Dec 2007 13:50:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4IoV4j028974 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 13:50:31 -0500 +Date: Tue, 4 Dec 2007 13:50:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38963 - osp/branches/osp_nightly +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 13:58:31 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38963 + +Author: chmaurer@iupui.edu +Date: 2007-12-04 13:50:29 -0500 (Tue, 04 Dec 2007) +New Revision: 38963 + +Modified: +osp/branches/osp_nightly/ +osp/branches/osp_nightly/.externals +Log: +Adding content-taggable to the osp nightly externals + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Dec 4 10:23:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 10:23:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 10:23:50 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by fan.mail.umich.edu () with ESMTP id lB4FNljZ006354; + Tue, 4 Dec 2007 10:23:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 475570F6.BE3C4.30023 ; + 4 Dec 2007 10:23:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A4F0A6A628; + Tue, 4 Dec 2007 15:22:15 +0000 (GMT) +Message-ID: <200712041515.lB4FFhGL028750@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 505 + for ; + Tue, 4 Dec 2007 15:21:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8FE593027F + for ; Tue, 4 Dec 2007 15:22:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4FFhaX028752 + for ; Tue, 4 Dec 2007 10:15:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4FFhGL028750 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 10:15:43 -0500 +Date: Tue, 4 Dec 2007 10:15:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38962 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 10:23:50 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38962 + +Author: chmaurer@iupui.edu +Date: 2007-12-04 10:15:40 -0500 (Tue, 04 Dec 2007) +New Revision: 38962 + +Added: +portal/branches/SAK-7924_2-4-x/ +Log: +Creating another branch for portal against 2.4.x from r35703 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Tue Dec 4 09:56:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 04 Dec 2007 09:56:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 04 Dec 2007 09:56:43 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by faithful.mail.umich.edu () with ESMTP id lB4EufMd026014; + Tue, 4 Dec 2007 09:56:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47556AA0.8C299.9792 ; + 4 Dec 2007 09:56:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B58C95AC5D; + Tue, 4 Dec 2007 14:56:29 +0000 (GMT) +Message-ID: <200712041449.lB4EnIaX028697@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 597 + for ; + Tue, 4 Dec 2007 14:56:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E29D52CA01 + for ; Tue, 4 Dec 2007 14:56:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4EnIf3028699 + for ; Tue, 4 Dec 2007 09:49:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4EnIaX028697 + for source@collab.sakaiproject.org; Tue, 4 Dec 2007 09:49:18 -0500 +Date: Tue, 4 Dec 2007 09:49:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38961 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-app/src/webapp/jsf/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Dec 4 09:56:42 2007 +X-DSPAM-Confidence: 0.9779 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38961 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-12-04 09:48:42 -0500 (Tue, 04 Dec 2007) +New Revision: 38961 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/ExportResponsesBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +Log: +Detailed Statistics - spreadsheet export + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Mon Dec 3 20:21:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 20:21:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 20:21:11 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id lB41LBBO030624; + Mon, 3 Dec 2007 20:21:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4754AB80.D1E30.10823 ; + 3 Dec 2007 20:21:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AF7849282F; + Tue, 4 Dec 2007 01:21:01 +0000 (GMT) +Message-ID: <200712040113.lB41DvUV027631@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 803 + for ; + Tue, 4 Dec 2007 01:20:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F3D1124DB1 + for ; Tue, 4 Dec 2007 01:20:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB41Dv4r027633 + for ; Mon, 3 Dec 2007 20:13:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB41DvUV027631 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 20:13:57 -0500 +Date: Mon, 3 Dec 2007 20:13:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38960 - in content/branches/sakai_2-4-x: content-api/api/src/java/org/sakaiproject/content/api content-bundles content-help content-help/src/sakai_resources content-impl/impl/src/bundle content-impl/impl/src/config content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/types content-tool/tool/src/bundle content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/tools content-tool/tool/src/webapp/vm/content content-tool/tool/src/webapp/vm/resources content-util/util/src/java/org/sakaiproject/content/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 20:21:11 2007 +X-DSPAM-Confidence: 0.6503 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38960 + +Author: ostermmg@whitman.edu +Date: 2007-12-03 20:12:35 -0500 (Mon, 03 Dec 2007) +New Revision: 38960 + +Modified: +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ExpandableResourceType.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java +content/branches/sakai_2-4-x/content-bundles/content.metaprops +content/branches/sakai_2-4-x/content-bundles/content_ar.properties +content/branches/sakai_2-4-x/content-bundles/content_ca.metaprops +content/branches/sakai_2-4-x/content-bundles/content_es.metaprops +content/branches/sakai_2-4-x/content-bundles/content_fr_CA.metaprops +content/branches/sakai_2-4-x/content-bundles/content_ja.metaprops +content/branches/sakai_2-4-x/content-bundles/content_ko.metaprops +content/branches/sakai_2-4-x/content-bundles/content_nl.metaprops +content/branches/sakai_2-4-x/content-bundles/content_zh_CN.metaprops +content/branches/sakai_2-4-x/content-bundles/types.properties +content/branches/sakai_2-4-x/content-bundles/types_ar.properties +content/branches/sakai_2-4-x/content-bundles/types_ca.properties +content/branches/sakai_2-4-x/content-bundles/types_es.properties +content/branches/sakai_2-4-x/content-bundles/types_fr_CA.properties +content/branches/sakai_2-4-x/content-bundles/types_ja.properties +content/branches/sakai_2-4-x/content-help/project.xml +content/branches/sakai_2-4-x/content-help/src/sakai_resources/aqyi.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/aqyy.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/araf.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/arsl.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/atkh.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/atla.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/aude.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/audh.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/auen.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/aukb.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/auta.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/auze.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/avbw.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/avby.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/avbz.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/avcb.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/avcc.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/avcd.html +content/branches/sakai_2-4-x/content-help/src/sakai_resources/avcg.html +content/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon.metaprops +content/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_ar.properties +content/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_ca.metaprops +content/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops +content/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_sv.properties +content/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_zh_CN.properties +content/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_images_ja.properties +content/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_ca.properties +content/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_ja.properties +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ar.properties +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ca.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_es.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_fr_CA.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ja.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ko.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_nl.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_zh_CN.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/right.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_ar.properties +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_ca.metaprops +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_fr_CA.properties +content/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_ja.properties +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm +content/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java +Log: +SAK-12322 + +Fix svn:eol-style=native on 2.4.x /content + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Mon Dec 3 20:07:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 20:07:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 20:07:25 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id lB417LRJ025400; + Mon, 3 Dec 2007 20:07:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4754A843.7BD94.24894 ; + 3 Dec 2007 20:07:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1C4DB927B0; + Tue, 4 Dec 2007 00:49:15 +0000 (GMT) +Message-ID: <200712040100.lB4101Sd027576@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 183 + for ; + Tue, 4 Dec 2007 00:48:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0705B2C6C0 + for ; Tue, 4 Dec 2007 01:06:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4101SP027578 + for ; Mon, 3 Dec 2007 20:00:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4101Sd027576 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 20:00:01 -0500 +Date: Mon, 3 Dec 2007 20:00:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38959 - in content/branches/sakai_2-5-x: . content-api/api/src/java/org/sakaiproject/content/api content-bundles content-help/src/sakai_resources content-impl/impl/src/bundle content-impl/impl/src/config content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion content-impl/impl/src/java/org/sakaiproject/content/types content-tool/tool/src/bundle content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/reso! + urces content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Argentina content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Brazil content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Ottawa content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Toronto content-tool/tool/src/webapp/dojo/dojo-rel! + ease-0.9.0/dojox/data/demos/geography/China content-tool/tool/! + src/weba +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 20:07:25 2007 +X-DSPAM-Confidence: 0.6180 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38959 + +Author: ostermmg@whitman.edu +Date: 2007-12-03 19:57:53 -0500 (Mon, 03 Dec 2007) +New Revision: 38959 + +Modified: +content/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java +content/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java +content/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java +content/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java +content/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java +content/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java +content/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java +content/branches/sakai_2-5-x/content-bundles/content.metaprops +content/branches/sakai_2-5-x/content-bundles/content_ar.properties +content/branches/sakai_2-5-x/content-bundles/content_ca.metaprops +content/branches/sakai_2-5-x/content-bundles/content_en_GB.properties +content/branches/sakai_2-5-x/content-bundles/content_es.metaprops +content/branches/sakai_2-5-x/content-bundles/content_fr_CA.metaprops +content/branches/sakai_2-5-x/content-bundles/content_ja.metaprops +content/branches/sakai_2-5-x/content-bundles/content_ko.metaprops +content/branches/sakai_2-5-x/content-bundles/content_nl.metaprops +content/branches/sakai_2-5-x/content-bundles/content_zh_CN.metaprops +content/branches/sakai_2-5-x/content-bundles/types.properties +content/branches/sakai_2-5-x/content-bundles/types_ar.properties +content/branches/sakai_2-5-x/content-bundles/types_ca.properties +content/branches/sakai_2-5-x/content-bundles/types_en_GB.properties +content/branches/sakai_2-5-x/content-bundles/types_es.properties +content/branches/sakai_2-5-x/content-bundles/types_fr_CA.properties +content/branches/sakai_2-5-x/content-bundles/types_ja.properties +content/branches/sakai_2-5-x/content-bundles/types_nl.properties +content/branches/sakai_2-5-x/content-bundles/types_zh_CN.properties +content/branches/sakai_2-5-x/content-help/src/sakai_resources/aqyi.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/aqyy.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/araf.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/arsl.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/atkh.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/atla.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/aude.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/audh.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/auen.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/aukb.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/auta.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/auze.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/avbw.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/avby.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/avbz.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/avcb.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/avcc.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/avcd.html +content/branches/sakai_2-5-x/content-help/src/sakai_resources/avcg.html +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon.metaprops +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_ar.properties +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_ca.metaprops +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_nl.properties +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_sv.properties +content/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_zh_CN.properties +content/branches/sakai_2-5-x/content-impl/impl/src/config/content_type_images_ja.properties +content/branches/sakai_2-5-x/content-impl/impl/src/config/content_type_names_ca.properties +content/branches/sakai_2-5-x/content-impl/impl/src/config/content_type_names_ja.properties +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ar.properties +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ca.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_es.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_fr_CA.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ja.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ko.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_nl.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_zh_CN.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/right.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_ar.properties +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_ca.metaprops +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_fr_CA.properties +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_ja.properties +content/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_zh_CN.properties +content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/mail.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/countries.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/Form.html +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxData.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxDataToo.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/treeTest.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.html +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/templateThemeTest.html +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/LICENSE +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/LICENSE +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/TODO +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_commentFiltered.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_idcollision.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withBoolean.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withDates.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withNull.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_large.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_small.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/testClass.smd +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/LICENSE +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/LICENSE +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Argentina/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Brazil/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Ottawa/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Toronto/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/China/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Egypt/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/France/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Germany/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/India/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Italy/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Mombasa/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Nairobi/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Guadalajara/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mongolia/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Russia/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Spain/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/Khartoum/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/data.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/root.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/movies.csv +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/patterns.csv +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/runTests.html +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/DojoExternalInterface.as +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/DojoExternalInterface.as +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/ExpressInstall.as +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/LICENSE +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/manifest +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/resources/README.template +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/rpc/yahoo.smd +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage.as +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/countries.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/states.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/JSON.smd +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/XML.smd +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/a.json +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/LICENSE +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm +content/branches/sakai_2-5-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java +content/branches/sakai_2-5-x/upgradeschema-mysql.config +content/branches/sakai_2-5-x/upgradeschema-oracle.config +Log: +SAK-12322 + +Fix svn:eol-style=native on 2.5.x /content + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Dec 3 16:29:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 16:29:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 16:29:47 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lB3LTjSb010662; + Mon, 3 Dec 2007 16:29:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4754753C.8EA9E.5570 ; + 3 Dec 2007 16:29:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0B43C9269C; + Mon, 3 Dec 2007 21:29:25 +0000 (GMT) +Message-ID: <200712032122.lB3LMQFP027155@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 48 + for ; + Mon, 3 Dec 2007 21:29:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 413322F77C + for ; Mon, 3 Dec 2007 21:29:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3LMQOp027157 + for ; Mon, 3 Dec 2007 16:22:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3LMQFP027155 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 16:22:26 -0500 +Date: Mon, 3 Dec 2007 16:22:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38957 - in content/trunk/content-impl-jcr: impl/src/java/org/sakaiproject/content/impl pack +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 16:29:47 2007 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38957 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-03 16:22:20 -0500 (Mon, 03 Dec 2007) +New Revision: 38957 + +Modified: +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java +content/trunk/content-impl-jcr/pack/ +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12321 + +Fixed + +The mime types was not being set in the right part of the jcr:content node. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Dec 3 13:32:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 13:32:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 13:32:14 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by godsend.mail.umich.edu () with ESMTP id lB3IWDwG026816; + Mon, 3 Dec 2007 13:32:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47544BA2.D75D2.2989 ; + 3 Dec 2007 13:32:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B5E159106A; + Mon, 3 Dec 2007 18:18:53 +0000 (GMT) +Message-ID: <200712031811.lB3IBQTE026732@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 616 + for ; + Mon, 3 Dec 2007 18:09:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 800172BEBC + for ; Mon, 3 Dec 2007 18:18:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3IBQ1t026734 + for ; Mon, 3 Dec 2007 13:11:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3IBQTE026732 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 13:11:26 -0500 +Date: Mon, 3 Dec 2007 13:11:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38956 - in content/branches/SAK-12239: content-impl/impl content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion content-impl/impl/src/java/org/sakaiproject/content/impl/util content-impl/impl/src/sql/hsqldb content-impl/impl/src/sql/mysql content-impl/impl/src/sql/oracle content-impl/pack/src/webapp/WEB-INF content-tool/tool/src/bundle content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/vm/content content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 13:32:14 2007 +X-DSPAM-Confidence: 0.7569 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38956 + +Author: jimeng@umich.edu +Date: 2007-12-03 13:10:39 -0500 (Mon, 03 Dec 2007) +New Revision: 38956 + +Added: +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSql.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxNotification.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/ +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/ +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableCollectionAccess.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableResourceAccess.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/ +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentCollectionSerializer.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentResourceSerializer.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConversionTimeService.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConvertTime.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableCollectionAccess.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializablePropertiesAccess.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableResourceAccess.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/util/ +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/util/GMTDateformatter.java +Modified: +content/branches/SAK-12239/content-impl/impl/project.xml +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/SiteEmailNotificationContent.java +content/branches/SAK-12239/content-impl/impl/src/sql/hsqldb/sakai_content.sql +content/branches/SAK-12239/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql +content/branches/SAK-12239/content-impl/impl/src/sql/mysql/sakai_content.sql +content/branches/SAK-12239/content-impl/impl/src/sql/mysql/sakai_content_delete.sql +content/branches/SAK-12239/content-impl/impl/src/sql/oracle/sakai_content.sql +content/branches/SAK-12239/content-impl/impl/src/sql/oracle/sakai_content_delete.sql +content/branches/SAK-12239/content-impl/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12239/content-tool/tool/src/bundle/right.properties +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_filepicker_select.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_folders.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm +content/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm +Log: +SAK-12239 +Adding files to content impl + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Dec 3 12:45:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 12:45:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 12:45:34 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lB3HjWV3010091; + Mon, 3 Dec 2007 12:45:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 475440AE.28EFE.17509 ; + 3 Dec 2007 12:45:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0394C922CB; + Mon, 3 Dec 2007 17:45:12 +0000 (GMT) +Message-ID: <200712031737.lB3HbvlP026709@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 121 + for ; + Mon, 3 Dec 2007 17:44:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 096BC2F7B1 + for ; Mon, 3 Dec 2007 17:44:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3HbvDc026711 + for ; Mon, 3 Dec 2007 12:37:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3HbvlP026709 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 12:37:57 -0500 +Date: Mon, 3 Dec 2007 12:37:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38955 - portal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 12:45:34 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38955 + +Author: chmaurer@iupui.edu +Date: 2007-12-03 12:37:54 -0500 (Mon, 03 Dec 2007) +New Revision: 38955 + +Modified: +portal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +Log: +adding an Iterator import + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 3 12:36:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 12:36:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 12:36:43 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lB3HagUG008950; + Mon, 3 Dec 2007 12:36:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47543EA1.EC266.378 ; + 3 Dec 2007 12:36:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EA5B292441; + Mon, 3 Dec 2007 17:36:34 +0000 (GMT) +Message-ID: <200712031729.lB3HTQgw026651@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 829 + for ; + Mon, 3 Dec 2007 17:36:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2686D2BDEF + for ; Mon, 3 Dec 2007 17:36:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3HTQHL026653 + for ; Mon, 3 Dec 2007 12:29:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3HTQgw026651 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 12:29:26 -0500 +Date: Mon, 3 Dec 2007 12:29:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38954 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 12:36:43 2007 +X-DSPAM-Confidence: 0.9857 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38954 + +Author: zqian@umich.edu +Date: 2007-12-03 12:29:23 -0500 (Mon, 03 Dec 2007) +New Revision: 38954 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm +Log: +merge fix to 'SAK-5956: Assignment Tool Exception' into post-2-4 branch: svn merge -r 38952:38953 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Dec 3 12:32:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 12:32:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 12:32:30 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by chaos.mail.umich.edu () with ESMTP id lB3HWSXU003004; + Mon, 3 Dec 2007 12:32:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47543DA1.AE7D5.804 ; + 3 Dec 2007 12:32:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 700FB9240C; + Mon, 3 Dec 2007 17:32:10 +0000 (GMT) +Message-ID: <200712031724.lB3HOvdq026618@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 375 + for ; + Mon, 3 Dec 2007 17:31:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AEE2C296D2 + for ; Mon, 3 Dec 2007 17:31:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3HOvm1026620 + for ; Mon, 3 Dec 2007 12:24:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3HOvdq026618 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 12:24:57 -0500 +Date: Mon, 3 Dec 2007 12:24:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38953 - in assignment/trunk/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 12:32:30 2007 +X-DSPAM-Confidence: 0.8468 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38953 + +Author: zqian@umich.edu +Date: 2007-12-03 12:24:50 -0500 (Mon, 03 Dec 2007) +New Revision: 38953 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm +Log: +Fix to SAK-5956: Assignment Tool Exceptions + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Dec 3 12:05:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 12:05:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 12:05:33 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by faithful.mail.umich.edu () with ESMTP id lB3H5TSj014456; + Mon, 3 Dec 2007 12:05:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47543752.8C0A.4151 ; + 3 Dec 2007 12:05:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8FEF4634D7; + Mon, 3 Dec 2007 17:05:27 +0000 (GMT) +Message-ID: <200712031658.lB3GwDZx026581@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 832 + for ; + Mon, 3 Dec 2007 17:05:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 773C82BDDB + for ; Mon, 3 Dec 2007 17:05:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3GwDwi026583 + for ; Mon, 3 Dec 2007 11:58:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3GwDZx026581 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 11:58:13 -0500 +Date: Mon, 3 Dec 2007 11:58:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38952 - in portal/branches/oncourse_opc_122007_overlay: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 12:05:33 2007 +X-DSPAM-Confidence: 0.6942 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38952 + +Author: chmaurer@iupui.edu +Date: 2007-12-03 11:58:09 -0500 (Mon, 03 Dec 2007) +New Revision: 38952 + +Modified: +portal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/oncourse_opc_122007_overlay/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +merging greg's student view stuff with the oncourse overlay + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Dec 3 11:37:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 11:37:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 11:37:24 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by jacknife.mail.umich.edu () with ESMTP id lB3GbNpa006764; + Mon, 3 Dec 2007 11:37:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4754309D.E7124.13407 ; + 3 Dec 2007 11:36:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2D05C64A3D; + Mon, 3 Dec 2007 16:36:51 +0000 (GMT) +Message-ID: <200712031629.lB3GTTmU026531@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875 + for ; + Mon, 3 Dec 2007 16:36:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E0B3D2BC20 + for ; Mon, 3 Dec 2007 16:36:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3GTfQS026533 + for ; Mon, 3 Dec 2007 11:29:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3GTTmU026531 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 11:29:29 -0500 +Date: Mon, 3 Dec 2007 11:29:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38951 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 11:37:24 2007 +X-DSPAM-Confidence: 0.8449 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38951 + +Author: chmaurer@iupui.edu +Date: 2007-12-03 11:29:26 -0500 (Mon, 03 Dec 2007) +New Revision: 38951 + +Added: +portal/branches/oncourse_opc_122007_overlay/ +Log: +branching the oncourse portal overlay to add in Greg's student view stuff + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Dec 3 11:18:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 11:18:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 11:18:22 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lB3GILO0012405; + Mon, 3 Dec 2007 11:18:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47542C46.D8CEE.27687 ; + 3 Dec 2007 11:18:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 898FC920E7; + Mon, 3 Dec 2007 16:18:20 +0000 (GMT) +Message-ID: <200712031611.lB3GBAgV026507@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 415 + for ; + Mon, 3 Dec 2007 16:18:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5449D2BC4E + for ; Mon, 3 Dec 2007 16:17:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3GBAdq026509 + for ; Mon, 3 Dec 2007 11:11:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3GBAgV026507 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 11:11:10 -0500 +Date: Mon, 3 Dec 2007 11:11:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38950 - in authz/branches/oncourse_opc_122007_overlay: authz-api/api/src/java/org/sakaiproject/authz/api authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 11:18:22 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38950 + +Author: chmaurer@iupui.edu +Date: 2007-12-03 11:11:06 -0500 (Mon, 03 Dec 2007) +New Revision: 38950 + +Modified: +authz/branches/oncourse_opc_122007_overlay/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +authz/branches/oncourse_opc_122007_overlay/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurityTest.java +Log: +adding oncourse student view stuff into the overlay + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Dec 3 10:58:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 10:58:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 10:58:17 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by brazil.mail.umich.edu () with ESMTP id lB3FwGrt032665; + Mon, 3 Dec 2007 10:58:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47542791.2C026.24868 ; + 3 Dec 2007 10:58:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D8B992117; + Mon, 3 Dec 2007 15:55:00 +0000 (GMT) +Message-ID: <200712031550.lB3Fovm1026455@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 390 + for ; + Mon, 3 Dec 2007 15:54:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 974682743B + for ; Mon, 3 Dec 2007 15:57:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3Fovwl026457 + for ; Mon, 3 Dec 2007 10:50:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3Fovm1026455 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 10:50:57 -0500 +Date: Mon, 3 Dec 2007 10:50:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38949 - authz/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 10:58:17 2007 +X-DSPAM-Confidence: 0.9793 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38949 + +Author: chmaurer@iupui.edu +Date: 2007-12-03 10:50:54 -0500 (Mon, 03 Dec 2007) +New Revision: 38949 + +Added: +authz/branches/oncourse_opc_122007_overlay/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Mon Dec 3 10:25:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 10:25:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 10:25:25 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lB3FPNIE007504; + Mon, 3 Dec 2007 10:25:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47541FDD.3F1A0.29652 ; + 3 Dec 2007 10:25:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C44294F922; + Mon, 3 Dec 2007 15:25:26 +0000 (GMT) +Message-ID: <200712031518.lB3FICrc026325@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 281 + for ; + Mon, 3 Dec 2007 15:25:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2094A2967E + for ; Mon, 3 Dec 2007 15:25:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3FICnI026327 + for ; Mon, 3 Dec 2007 10:18:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3FICrc026325 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 10:18:12 -0500 +Date: Mon, 3 Dec 2007 10:18:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38948 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/producers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 10:25:25 2007 +X-DSPAM-Confidence: 0.9757 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38948 + +Author: david.horwitz@uct.ac.za +Date: 2007-12-03 10:18:02 -0500 (Mon, 03 Dec 2007) +New Revision: 38948 + +Modified: +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/producers/PollOptionProducer.java +Log: +SAK-12317 render the edit options header + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Mon Dec 3 09:54:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 09:54:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 09:54:17 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by brazil.mail.umich.edu () with ESMTP id lB3EsGXi016429; + Mon, 3 Dec 2007 09:54:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47541892.4905E.7611 ; + 3 Dec 2007 09:54:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07CA491E4B; + Mon, 3 Dec 2007 14:53:52 +0000 (GMT) +Message-ID: <200712031446.lB3EkT7p026300@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 397 + for ; + Mon, 3 Dec 2007 14:53:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 02A322BB95 + for ; Mon, 3 Dec 2007 14:53:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3EkUDC026302 + for ; Mon, 3 Dec 2007 09:46:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3EkT7p026300 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 09:46:29 -0500 +Date: Mon, 3 Dec 2007 09:46:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38947 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/bundle samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-app/src/webapp/jsf/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 09:54:17 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38947 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-12-03 09:45:55 -0500 (Mon, 03 Dec 2007) +New Revision: 38947 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +Log: +Detailed Statistics + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Dec 3 08:31:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 08:31:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 08:31:16 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id lB3DVFot024862; + Mon, 3 Dec 2007 08:31:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4754051B.A1B69.26300 ; + 3 Dec 2007 08:31:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CFEAD91DDC; + Mon, 3 Dec 2007 13:31:16 +0000 (GMT) +Message-ID: <200712031324.lB3DO4GE026229@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 444 + for ; + Mon, 3 Dec 2007 13:30:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B6AB1D5BE + for ; Mon, 3 Dec 2007 13:30:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3DO5AT026231 + for ; Mon, 3 Dec 2007 08:24:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3DO4GE026229 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 08:24:04 -0500 +Date: Mon, 3 Dec 2007 08:24:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38946 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 08:31:16 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38946 + +Author: chmaurer@iupui.edu +Date: 2007-12-03 08:24:03 -0500 (Mon, 03 Dec 2007) +New Revision: 38946 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Updating authz to get the student view stuff from Greg + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Dec 3 08:29:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 08:29:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 08:29:35 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id lB3DTWI6021488; + Mon, 3 Dec 2007 08:29:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 475404B6.8BC7.4782 ; + 3 Dec 2007 08:29:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3856F91CED; + Mon, 3 Dec 2007 13:29:36 +0000 (GMT) +Message-ID: <200712031322.lB3DMJjb026217@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 921 + for ; + Mon, 3 Dec 2007 13:29:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4E3E61D5B6 + for ; Mon, 3 Dec 2007 13:29:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3DMJo7026219 + for ; Mon, 3 Dec 2007 08:22:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3DMJjb026217 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 08:22:19 -0500 +Date: Mon, 3 Dec 2007 08:22:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38945 - in authz/branches/oncourse_opc_122007: authz-api/api/src/java/org/sakaiproject/authz/api authz-api/api/src/java/org/sakaiproject/authz/cover authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 08:29:35 2007 +X-DSPAM-Confidence: 0.9914 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38945 + +Author: chmaurer@iupui.edu +Date: 2007-12-03 08:22:14 -0500 (Mon, 03 Dec 2007) +New Revision: 38945 + +Modified: +authz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +authz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java +Log: +svn merge -r 38923:38925 https://source.sakaiproject.org/svn/authz/branches/SAK-7924_2-4-x +U authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +U authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java +U authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +U authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java + +------------------------------------------------------------------------ +r38924 | gjthomas@iupui.edu | 2007-11-30 15:52:57 -0500 (Fri, 30 Nov 2007) | 3 lines + +SAK-7924 - View Site as a different role + +Minor edits to make it function with 2.4.x +------------------------------------------------------------------------ +r38925 | gjthomas@iupui.edu | 2007-11-30 16:11:52 -0500 (Fri, 30 Nov 2007) | 3 lines + +SAK-7924 - View Site as a different role + +Minor edits to make it function with 2.4.x +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Mon Dec 3 08:03:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 08:03:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 08:03:48 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lB3D3mCA010248; + Mon, 3 Dec 2007 08:03:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4753FEAD.631BC.503 ; + 3 Dec 2007 08:03:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2811D91CEA; + Mon, 3 Dec 2007 13:03:45 +0000 (GMT) +Message-ID: <200712031256.lB3CuQFu026193@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 872 + for ; + Mon, 3 Dec 2007 13:03:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E75422BACC + for ; Mon, 3 Dec 2007 13:03:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3CuQpn026195 + for ; Mon, 3 Dec 2007 07:56:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3CuQFu026193 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 07:56:26 -0500 +Date: Mon, 3 Dec 2007 07:56:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38944 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 08:03:48 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38944 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-12-03 07:55:58 -0500 (Mon, 03 Dec 2007) +New Revision: 38944 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/ExportResponsesBean.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +Log: +SAK-12142 Section Scores Export + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Mon Dec 3 04:49:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 03 Dec 2007 04:49:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 03 Dec 2007 04:49:50 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by chaos.mail.umich.edu () with ESMTP id lB39nlbw011951; + Mon, 3 Dec 2007 04:49:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4753D136.4076D.23133 ; + 3 Dec 2007 04:49:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AEA9491B81; + Mon, 3 Dec 2007 09:49:33 +0000 (GMT) +Message-ID: <200712030942.lB39gUpM025533@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 894 + for ; + Mon, 3 Dec 2007 09:49:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E0FC22B81C + for ; Mon, 3 Dec 2007 09:49:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB39gUdY025535 + for ; Mon, 3 Dec 2007 04:42:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB39gUpM025533 + for source@collab.sakaiproject.org; Mon, 3 Dec 2007 04:42:30 -0500 +Date: Mon, 3 Dec 2007 04:42:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r38943 - in blog/trunk: . api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Dec 3 04:49:50 2007 +X-DSPAM-Confidence: 0.9796 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38943 + +Author: a.fish@lancaster.ac.uk +Date: 2007-12-03 04:42:12 -0500 (Mon, 03 Dec 2007) +New Revision: 38943 + +Modified: +blog/trunk/.classpath +blog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence/SakaiPersistenceManager.java +Log: +Took out an unused import and added the snapshot db api to the eclipse classpath. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Sun Dec 2 13:25:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 02 Dec 2007 13:25:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 02 Dec 2007 13:25:49 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by godsend.mail.umich.edu () with ESMTP id lB2IPnf4009481; + Sun, 2 Dec 2007 13:25:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4752F8A7.1F304.9584 ; + 2 Dec 2007 13:25:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E20F38FADE; + Sun, 2 Dec 2007 18:23:42 +0000 (GMT) +Message-ID: <200712021818.lB2IIerk024255@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 113 + for ; + Sun, 2 Dec 2007 18:23:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AAB1A23598 + for ; Sun, 2 Dec 2007 18:25:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB2IIexY024257 + for ; Sun, 2 Dec 2007 13:18:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB2IIerk024255 + for source@collab.sakaiproject.org; Sun, 2 Dec 2007 13:18:40 -0500 +Date: Sun, 2 Dec 2007 13:18:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r38942 - msgcntr/branches/sakai_2-4-x/messageforums-app/src/webapp/jsp/discussionForum/message +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 2 13:25:49 2007 +X-DSPAM-Confidence: 0.9919 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38942 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-02 13:18:36 -0500 (Sun, 02 Dec 2007) +New Revision: 38942 + +Modified: +msgcntr/branches/sakai_2-4-x/messageforums-app/src/webapp/jsp/discussionForum/message/dfAllMessages.jsp +Log: +SAK-11336 forums / 'read full description' + +--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)-- +--(1320:Sun,02 Dec 07:$)-- svn merge -r34560:34561 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-app/src/webapp/jsp/discussionForum/message/dfAllMessages.jsp +--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)-- +--(1323:Sun,02 Dec 07:$)-- ^merge^log +svn log -r34560:34561 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r34561 | rjlowe@iupui.edu | 2007-08-30 09:55:04 -0400 (Thu, 30 Aug 2007) | 3 lines + +SAK-11336 +http://bugs.sakaiproject.org/jira/browse/SAK-11336 +Forums / 'read full description' +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Sun Dec 2 13:21:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 02 Dec 2007 13:21:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 02 Dec 2007 13:21:35 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lB2ILYxt000304; + Sun, 2 Dec 2007 13:21:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4752F7A1.10CFB.22285 ; + 2 Dec 2007 13:21:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7E69F9106A; + Sun, 2 Dec 2007 18:18:53 +0000 (GMT) +Message-ID: <200712021814.lB2IE6Jm024243@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1009 + for ; + Sun, 2 Dec 2007 18:18:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A06672B024 + for ; Sun, 2 Dec 2007 18:20:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB2IE6V8024245 + for ; Sun, 2 Dec 2007 13:14:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB2IE6Jm024243 + for source@collab.sakaiproject.org; Sun, 2 Dec 2007 13:14:06 -0500 +Date: Sun, 2 Dec 2007 13:14:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r38941 - in msgcntr/branches/sakai_2-4-x: messageforums-api/src/java/org/sakaiproject/api/app/messageforums messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 2 13:21:35 2007 +X-DSPAM-Confidence: 0.9922 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38941 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-02 13:13:56 -0500 (Sun, 02 Dec 2007) +New Revision: 38941 + +Modified: +msgcntr/branches/sakai_2-4-x/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/AreaManager.java +msgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java +msgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java +Log: +SAK-10415 forums and topics not copying from an existing site + +--(1309:Sun,02 Dec 07:$)-- svn merge -r31981:31982 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java +U messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java +U messageforums-api/src/java/org/sakaiproject/api/app/messageforums/AreaManager.java +--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)-- +--(1318:Sun,02 Dec 07:$)-- ^merge^log +svn log -r31981:31982 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r31982 | wagnermr@iupui.edu | 2007-07-02 15:59:24 -0400 (Mon, 02 Jul 2007) | 3 lines + +SAK-10415 +http://bugs.sakaiproject.org/jira/browse/SAK-10415 +Forums and Topics not copying from an existing site +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Sun Dec 2 13:18:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 02 Dec 2007 13:18:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 02 Dec 2007 13:18:41 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by godsend.mail.umich.edu () with ESMTP id lB2IIeIN006723; + Sun, 2 Dec 2007 13:18:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4752F6F8.AB4C8.24304 ; + 2 Dec 2007 13:18:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 068DA8B75D; + Sun, 2 Dec 2007 18:16:05 +0000 (GMT) +Message-ID: <200712021802.lB2I2JQM024231@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680 + for ; + Sun, 2 Dec 2007 18:07:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 774BC2AFFA + for ; Sun, 2 Dec 2007 18:09:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB2I2KFb024233 + for ; Sun, 2 Dec 2007 13:02:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB2I2JQM024231 + for source@collab.sakaiproject.org; Sun, 2 Dec 2007 13:02:19 -0500 +Date: Sun, 2 Dec 2007 13:02:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r38940 - msgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 2 13:18:41 2007 +X-DSPAM-Confidence: 0.9919 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38940 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-12-02 13:02:15 -0500 (Sun, 02 Dec 2007) +New Revision: 38940 + +Modified: +msgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java +Log: +SAK-10455 forums and site-site import / forums do not maintain order when imported from another site + +--(1304:Sun,02 Dec 07:$)-- svn merge -r31828:31829 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java +--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)-- +--(1305:Sun,02 Dec 07:$)-- ^merge^log +svn log -r31828:31829 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r31829 | wagnermr@iupui.edu | 2007-06-26 08:26:25 -0400 (Tue, 26 Jun 2007) | 3 lines + +SAK-10455 +http://bugs.sakaiproject.org/jira/browse/SAK-10455 +forums and site-site import / forums do not maintain the same order when imported from another site +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Sun Dec 2 03:21:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 02 Dec 2007 03:21:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 02 Dec 2007 03:21:14 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by sleepers.mail.umich.edu () with ESMTP id lB28LCEm011345; + Sun, 2 Dec 2007 03:21:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47526AF3.A04E9.24273 ; + 2 Dec 2007 03:21:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 32EFF7130A; + Sun, 2 Dec 2007 08:21:11 +0000 (GMT) +Message-ID: <200712020814.lB28E9SI010911@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 687 + for ; + Sun, 2 Dec 2007 08:20:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1437E2E8C7 + for ; Sun, 2 Dec 2007 08:20:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB28EAEY010913 + for ; Sun, 2 Dec 2007 03:14:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB28E9SI010911 + for source@collab.sakaiproject.org; Sun, 2 Dec 2007 03:14:09 -0500 +Date: Sun, 2 Dec 2007 03:14:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38939 - in content/branches/SAK-12105: content-impl/impl/src/java/org/sakaiproject/content/impl content-impl-jcr/pack/src/webapp/WEB-INF contentmultiplex-impl/impl contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Dec 2 03:21:14 2007 +X-DSPAM-Confidence: 0.9802 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38939 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-02 03:13:47 -0500 (Sun, 02 Dec 2007) +New Revision: 38939 + +Added: +content/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ThirdPartyManagerRegistrar.java +Modified: +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12105/contentmultiplex-impl/impl/pom.xml +Log: +SAK-12105 Added a third party to register the ContentHostingService API Proxy with the EntityManager. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Sat Dec 1 21:21:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 21:21:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 21:21:59 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lB22LwRS005809; + Sat, 1 Dec 2007 21:21:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 475216C1.715BE.7960 ; + 1 Dec 2007 21:21:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C5EBA51679; + Sun, 2 Dec 2007 02:22:03 +0000 (GMT) +Message-ID: <200712020214.lB22EeuZ010648@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895 + for ; + Sun, 2 Dec 2007 02:21:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 757E82E8FC + for ; Sun, 2 Dec 2007 02:21:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB22EfdW010650 + for ; Sat, 1 Dec 2007 21:14:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB22EeuZ010648 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 21:14:40 -0500 +Date: Sat, 1 Dec 2007 21:14:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38938 - content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 21:21:59 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38938 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-01 21:14:34 -0500 (Sat, 01 Dec 2007) +New Revision: 38938 + +Modified: +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-12105 Added some stuff back into components that was lost in the merge. Like the proxy. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Dec 1 18:17:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 18:17:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 18:17:26 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by fan.mail.umich.edu () with ESMTP id lB1NHPdS010897; + Sat, 1 Dec 2007 18:17:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4751EB80.48B02.15251 ; + 1 Dec 2007 18:17:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 288375C319; + Sat, 1 Dec 2007 23:17:19 +0000 (GMT) +Message-ID: <200712012310.lB1NAMKw010504@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 363 + for ; + Sat, 1 Dec 2007 23:17:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 728232E934 + for ; Sat, 1 Dec 2007 23:17:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1NAMkt010506 + for ; Sat, 1 Dec 2007 18:10:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1NAMKw010504 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:10:22 -0500 +Date: Sat, 1 Dec 2007 18:10:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38937 - content/branches/SAK-12105 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 18:17:26 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38937 + +Author: aaronz@vt.edu +Date: 2007-12-01 18:10:19 -0500 (Sat, 01 Dec 2007) +New Revision: 38937 + +Modified: +content/branches/SAK-12105/pom.xml +Log: +SAK-12105: Updated base pom + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Dec 1 18:09:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 18:09:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 18:09:40 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by chaos.mail.umich.edu () with ESMTP id lB1N9d4O025423; + Sat, 1 Dec 2007 18:09:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4751E9AE.66E9A.31605 ; + 1 Dec 2007 18:09:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 81228903CB; + Sat, 1 Dec 2007 23:09:32 +0000 (GMT) +Message-ID: <200712012302.lB1N2Vnq010452@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494 + for ; + Sat, 1 Dec 2007 23:09:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 213152E924 + for ; Sat, 1 Dec 2007 23:09:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N2VrV010454 + for ; Sat, 1 Dec 2007 18:02:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N2Vnq010452 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:31 -0500 +Date: Sat, 1 Dec 2007 18:02:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38936 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 18:09:40 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38936 + +Author: aaronz@vt.edu +Date: 2007-12-01 18:02:26 -0500 (Sat, 01 Dec 2007) +New Revision: 38936 + +Modified: +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java +Log: +SAK-12105: Merged in trunk changes to this branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Dec 1 18:09:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 18:09:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 18:09:32 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id lB1N9VfS016313; + Sat, 1 Dec 2007 18:09:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4751E9A5.781A8.20518 ; + 1 Dec 2007 18:09:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A6862903C7; + Sat, 1 Dec 2007 23:09:23 +0000 (GMT) +Message-ID: <200712012302.lB1N2NLF010440@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 889 + for ; + Sat, 1 Dec 2007 23:09:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BBC7E2E924 + for ; Sat, 1 Dec 2007 23:09:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N2OQs010442 + for ; Sat, 1 Dec 2007 18:02:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N2NLF010440 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:24 -0500 +Date: Sat, 1 Dec 2007 18:02:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38935 - in content/branches/SAK-12105/content-impl-jcr: . impl/src/java/org/sakaiproject/content/impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 18:09:32 2007 +X-DSPAM-Confidence: 0.8442 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38935 + +Author: aaronz@vt.edu +Date: 2007-12-01 18:02:15 -0500 (Sat, 01 Dec 2007) +New Revision: 38935 + +Modified: +content/branches/SAK-12105/content-impl-jcr/.classpath +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-12105: Merged in trunk changes to this branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Dec 1 18:09:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 18:09:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 18:09:24 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by faithful.mail.umich.edu () with ESMTP id lB1N9OZS000422; + Sat, 1 Dec 2007 18:09:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4751E99B.7BB5D.26560 ; + 1 Dec 2007 18:09:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 49BE5903C8; + Sat, 1 Dec 2007 23:09:11 +0000 (GMT) +Message-ID: <200712012302.lB1N2D3S010428@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 507 + for ; + Sat, 1 Dec 2007 23:08:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1002A2E924 + for ; Sat, 1 Dec 2007 23:08:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N2DOk010430 + for ; Sat, 1 Dec 2007 18:02:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N2D3S010428 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:13 -0500 +Date: Sat, 1 Dec 2007 18:02:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38934 - content/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 18:09:24 2007 +X-DSPAM-Confidence: 0.8441 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38934 + +Author: aaronz@vt.edu +Date: 2007-12-01 18:02:10 -0500 (Sat, 01 Dec 2007) +New Revision: 38934 + +Modified: +content/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +Log: +SAK-12105: Merged in trunk changes to this branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Dec 1 18:09:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 18:09:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 18:09:13 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by sleepers.mail.umich.edu () with ESMTP id lB1N9C9L026845; + Sat, 1 Dec 2007 18:09:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4751E993.4C6D3.2533 ; + 1 Dec 2007 18:09:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3B44A903C2; + Sat, 1 Dec 2007 23:09:05 +0000 (GMT) +Message-ID: <200712012302.lB1N28iA010416@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 154 + for ; + Sat, 1 Dec 2007 23:08:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 286E32E924 + for ; Sat, 1 Dec 2007 23:08:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N28ak010418 + for ; Sat, 1 Dec 2007 18:02:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N28iA010416 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:08 -0500 +Date: Sat, 1 Dec 2007 18:02:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38933 - content/branches/SAK-12105/content-api/api/src/java/org/sakaiproject/content/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 18:09:13 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38933 + +Author: aaronz@vt.edu +Date: 2007-12-01 18:02:04 -0500 (Sat, 01 Dec 2007) +New Revision: 38933 + +Modified: +content/branches/SAK-12105/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +Log: +SAK-12105: Merged in trunk changes to this branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Dec 1 18:09:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 18:09:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 18:09:10 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by jacknife.mail.umich.edu () with ESMTP id lB1N99sB017723; + Sat, 1 Dec 2007 18:09:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4751E98F.C9155.6303 ; + 1 Dec 2007 18:09:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 277DF507C8; + Sat, 1 Dec 2007 23:08:59 +0000 (GMT) +Message-ID: <200712012302.lB1N21Jr010404@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 20 + for ; + Sat, 1 Dec 2007 23:08:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8BACC2E924 + for ; Sat, 1 Dec 2007 23:08:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N21rg010406 + for ; Sat, 1 Dec 2007 18:02:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N21Jr010404 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:01 -0500 +Date: Sat, 1 Dec 2007 18:02:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38932 - content/branches/SAK-12105/content-jcr-migration-api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 18:09:10 2007 +X-DSPAM-Confidence: 0.8483 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38932 + +Author: aaronz@vt.edu +Date: 2007-12-01 18:01:58 -0500 (Sat, 01 Dec 2007) +New Revision: 38932 + +Modified: +content/branches/SAK-12105/content-jcr-migration-api/.classpath +Log: +SAK-12105: Merged in trunk changes to this branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Sat Dec 1 14:18:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 14:18:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 14:18:55 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by sleepers.mail.umich.edu () with ESMTP id lB1JIsDT014614; + Sat, 1 Dec 2007 14:18:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4751B398.639C5.32443 ; + 1 Dec 2007 14:18:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ABE8C8FD66; + Sat, 1 Dec 2007 19:18:35 +0000 (GMT) +Message-ID: <200712011911.lB1JBd2O010155@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 297 + for ; + Sat, 1 Dec 2007 19:18:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 97C132DEF6 + for ; Sat, 1 Dec 2007 19:18:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1JBdbo010157 + for ; Sat, 1 Dec 2007 14:11:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1JBd2O010155 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 14:11:39 -0500 +Date: Sat, 1 Dec 2007 14:11:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38931 - in content/trunk: content-api/api/src/java/org/sakaiproject/content/api content-impl/impl/src/java/org/sakaiproject/content/impl content-impl-jcr/impl/src/java/org/sakaiproject/content/impl content-impl-jcr/pack/src/webapp/WEB-INF contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 14:18:55 2007 +X-DSPAM-Confidence: 0.8445 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38931 + +Author: ian@caret.cam.ac.uk +Date: 2007-12-01 14:11:22 -0500 (Sat, 01 Dec 2007) +New Revision: 38931 + +Modified: +content/trunk/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRCollectionEdit.java +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java +content/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java +content/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12311 + +Fixed the various logging issues. +Added PrimaryContentService to indicate the primary version, which needs to be in the API because the ContentHostingMultiplexer service binds to it throught he API. +It cant bind to the impl. + + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Sat Dec 1 00:17:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 01 Dec 2007 00:17:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 01 Dec 2007 00:17:02 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by panther.mail.umich.edu () with ESMTP id lB15H0WO029448; + Sat, 1 Dec 2007 00:17:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4750EE46.DE2B8.28050 ; + 1 Dec 2007 00:16:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 52BF18F4F8; + Sat, 1 Dec 2007 05:16:49 +0000 (GMT) +Message-ID: <200712010509.lB159lt8009136@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909 + for ; + Sat, 1 Dec 2007 05:16:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6EB3C2DFCB + for ; Sat, 1 Dec 2007 05:16:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB159lZ2009138 + for ; Sat, 1 Dec 2007 00:09:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB159lt8009136 + for source@collab.sakaiproject.org; Sat, 1 Dec 2007 00:09:47 -0500 +Date: Sat, 1 Dec 2007 00:09:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38930 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Dec 1 00:17:02 2007 +X-DSPAM-Confidence: 0.8472 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38930 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-12-01 00:09:42 -0500 (Sat, 01 Dec 2007) +New Revision: 38930 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java +Log: +SAK-12105 Fixed getCollectionSize. I was accidentally returning the total number for each recursive +call, instead of just the count for that recursion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Fri Nov 30 20:08:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 20:08:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 20:08:51 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id lB118ois000537; + Fri, 30 Nov 2007 20:08:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4750B41C.7AD14.20043 ; + 30 Nov 2007 20:08:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D90588F401; + Sat, 1 Dec 2007 00:40:45 +0000 (GMT) +Message-ID: <200712010101.lB111m8a008768@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 798 + for ; + Sat, 1 Dec 2007 00:40:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8C4412D8F3 + for ; Sat, 1 Dec 2007 01:08:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB111mLQ008770 + for ; Fri, 30 Nov 2007 20:01:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB111m8a008768 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 20:01:48 -0500 +Date: Fri, 30 Nov 2007 20:01:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38929 - in content/branches/SAK-12105: content-impl-jcr/impl content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration content-impl-jcr/pack/src/webapp/WEB-INF content-jcr-migration-api content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 20:08:51 2007 +X-DSPAM-Confidence: 0.9912 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38929 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-30 20:01:23 -0500 (Fri, 30 Nov 2007) +New Revision: 38929 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/pom.xml +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRCopierImpl.java +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/branches/SAK-12105/content-jcr-migration-api/pom.xml +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java +Log: +SAK-12105 Trying to work on some issues with migrating content, +namely the repository locking (maybe deadlocking), and my db going +cabberwonky. Oddly enough, it seems to work ok when I'm also running +the load tests. In progress. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Nov 30 17:10:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 17:10:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 17:10:48 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id lAUMAl4t023193; + Fri, 30 Nov 2007 17:10:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47508A60.9303A.5858 ; + 30 Nov 2007 17:10:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A0C1E8F106; + Fri, 30 Nov 2007 22:10:39 +0000 (GMT) +Message-ID: <200711302203.lAUM3iFs008544@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516 + for ; + Fri, 30 Nov 2007 22:10:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE6A02D4A0 + for ; Fri, 30 Nov 2007 22:10:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUM3i9i008546 + for ; Fri, 30 Nov 2007 17:03:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUM3iFs008544 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 17:03:44 -0500 +Date: Fri, 30 Nov 2007 17:03:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38928 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 17:10:48 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38928 + +Author: zqian@umich.edu +Date: 2007-11-30 17:03:42 -0500 (Fri, 30 Nov 2007) +New Revision: 38928 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/trunk/upgradeschema_mysql.config +Log: +fix to SAK-12289, remove the unnecessary checkins made in 38927 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Nov 30 17:02:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 17:02:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 17:02:54 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by brazil.mail.umich.edu () with ESMTP id lAUM2rsD025095; + Fri, 30 Nov 2007 17:02:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47508883.2C473.26487 ; + 30 Nov 2007 17:02:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B83B28F338; + Fri, 30 Nov 2007 22:02:41 +0000 (GMT) +Message-ID: <200711302155.lAULtlwK008530@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220 + for ; + Fri, 30 Nov 2007 22:02:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9AAAB2D4A0 + for ; Fri, 30 Nov 2007 22:02:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAULtleP008532 + for ; Fri, 30 Nov 2007 16:55:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAULtlwK008530 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 16:55:47 -0500 +Date: Fri, 30 Nov 2007 16:55:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38927 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 17:02:54 2007 +X-DSPAM-Confidence: 0.9848 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38927 + +Author: zqian@umich.edu +Date: 2007-11-30 16:55:44 -0500 (Fri, 30 Nov 2007) +New Revision: 38927 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/trunk/upgradeschema_mysql.config +Log: +merge fix to SAK-12289 into trunk:svn merge -r 38925:38926 https://source.sakaiproject.org/svn/assignment/branches/post-2-4/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Nov 30 17:00:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 17:00:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 17:00:13 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by mission.mail.umich.edu () with ESMTP id lAUM0B3w013025; + Fri, 30 Nov 2007 17:00:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 475087E4.DF273.23722 ; + 30 Nov 2007 17:00:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 813298ED54; + Fri, 30 Nov 2007 21:59:57 +0000 (GMT) +Message-ID: <200711302153.lAULr1pU008518@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88 + for ; + Fri, 30 Nov 2007 21:59:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1EFD22D4A0 + for ; Fri, 30 Nov 2007 21:59:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAULr2OT008520 + for ; Fri, 30 Nov 2007 16:53:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAULr1pU008518 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 16:53:01 -0500 +Date: Fri, 30 Nov 2007 16:53:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38926 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 17:00:13 2007 +X-DSPAM-Confidence: 0.7726 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38926 + +Author: zqian@umich.edu +Date: 2007-11-30 16:52:59 -0500 (Fri, 30 Nov 2007) +New Revision: 38926 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +Fix to SAK-12289:Modifications to files are not saved in Upload All for provided students when EID does not equal Display ID + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Fri Nov 30 16:19:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 16:19:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 16:19:32 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id lAULJVo5024358; + Fri, 30 Nov 2007 16:19:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47507E59.5CA77.17729 ; + 30 Nov 2007 16:19:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5DC5C510A9; + Fri, 30 Nov 2007 21:18:46 +0000 (GMT) +Message-ID: <200711302111.lAULBsLr008442@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 618 + for ; + Fri, 30 Nov 2007 21:18:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 178402D4FB + for ; Fri, 30 Nov 2007 21:18:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAULBst7008444 + for ; Fri, 30 Nov 2007 16:11:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAULBsLr008442 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 16:11:54 -0500 +Date: Fri, 30 Nov 2007 16:11:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r38925 - in authz/branches/SAK-7924_2-4-x: authz-api/api/src/java/org/sakaiproject/authz/api authz-api/api/src/java/org/sakaiproject/authz/cover authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 16:19:32 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38925 + +Author: gjthomas@iupui.edu +Date: 2007-11-30 16:11:52 -0500 (Fri, 30 Nov 2007) +New Revision: 38925 + +Modified: +authz/branches/SAK-7924_2-4-x/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +authz/branches/SAK-7924_2-4-x/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java +authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java +Log: +SAK-7924 - View Site as a different role + +Minor edits to make it function with 2.4.x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Fri Nov 30 16:00:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 16:00:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 16:00:14 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by mission.mail.umich.edu () with ESMTP id lAUL0DBF030349; + Fri, 30 Nov 2007 16:00:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 475079CD.EC3EC.9402 ; + 30 Nov 2007 16:00:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B80C8F26E; + Fri, 30 Nov 2007 20:59:54 +0000 (GMT) +Message-ID: <200711302052.lAUKqxFb008414@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 239 + for ; + Fri, 30 Nov 2007 20:59:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 218B12D4C8 + for ; Fri, 30 Nov 2007 20:59:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUKqxcG008416 + for ; Fri, 30 Nov 2007 15:52:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUKqxFb008414 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:52:59 -0500 +Date: Fri, 30 Nov 2007 15:52:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r38924 - authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 16:00:14 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38924 + +Author: gjthomas@iupui.edu +Date: 2007-11-30 15:52:57 -0500 (Fri, 30 Nov 2007) +New Revision: 38924 + +Modified: +authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +Log: +SAK-7924 - View Site as a different role + +Minor edits to make it function with 2.4.x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 15:34:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 15:34:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 15:34:05 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by flawless.mail.umich.edu () with ESMTP id lAUKY42g017753; + Fri, 30 Nov 2007 15:34:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 475073B0.A8590.21836 ; + 30 Nov 2007 15:33:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DFD5B83D1C; + Fri, 30 Nov 2007 20:33:48 +0000 (GMT) +Message-ID: <200711302027.lAUKR4qj008389@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760 + for ; + Fri, 30 Nov 2007 20:33:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 999C52D542 + for ; Fri, 30 Nov 2007 20:33:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUKR4Hf008391 + for ; Fri, 30 Nov 2007 15:27:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUKR4qj008389 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:27:04 -0500 +Date: Fri, 30 Nov 2007 15:27:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38923 - in portal/branches/oncourse_opc_122007: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 15:34:05 2007 +X-DSPAM-Confidence: 0.6525 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38923 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 15:27:02 -0500 (Fri, 30 Nov 2007) +New Revision: 38923 + +Added: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +Modified: +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +svn merge -c 38917 https://source.sakaiproject.org/svn/portal/branches/SAK-7924 +C portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +A portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +A portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +U portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +C portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm + +svn log -r 38917 https://source.sakaiproject.org/svn/portal/branches/SAK-7924 +------------------------------------------------------------------------ +r38917 | gjthomas@iupui.edu | 2007-11-30 11:19:10 -0500 (Fri, 30 Nov 2007) | 1 line + +SAK-7924 - View Site in a different role +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 15:23:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 15:23:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 15:23:16 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lAUKNFUx004398; + Fri, 30 Nov 2007 15:23:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47507122.BAAD4.26458 ; + 30 Nov 2007 15:23:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 57A3672DBD; + Fri, 30 Nov 2007 20:22:54 +0000 (GMT) +Message-ID: <200711302016.lAUKG9Gd008319@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 646 + for ; + Fri, 30 Nov 2007 20:22:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A14A2D0B3 + for ; Fri, 30 Nov 2007 20:22:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUKG9kp008321 + for ; Fri, 30 Nov 2007 15:16:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUKG9Gd008319 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:16:09 -0500 +Date: Fri, 30 Nov 2007 15:16:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38922 - authz/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 15:23:16 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38922 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 15:16:08 -0500 (Fri, 30 Nov 2007) +New Revision: 38922 + +Added: +authz/branches/SAK-7924_2-4-x/ +Log: +Creating another branch for authz against 2.4.x from r37756 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 15:13:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 15:13:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 15:13:45 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by chaos.mail.umich.edu () with ESMTP id lAUKDikG017604; + Fri, 30 Nov 2007 15:13:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47506EEE.72A30.24794 ; + 30 Nov 2007 15:13:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3FA61555A1; + Fri, 30 Nov 2007 20:13:31 +0000 (GMT) +Message-ID: <200711302006.lAUK6eRT008307@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 868 + for ; + Fri, 30 Nov 2007 20:13:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 902912D501 + for ; Fri, 30 Nov 2007 20:13:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUK6ebp008309 + for ; Fri, 30 Nov 2007 15:06:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUK6eRT008307 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:06:40 -0500 +Date: Fri, 30 Nov 2007 15:06:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38921 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 15:13:45 2007 +X-DSPAM-Confidence: 0.9792 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38921 + +Author: cwen@iupui.edu +Date: 2007-11-30 15:06:38 -0500 (Fri, 30 Nov 2007) +New Revision: 38921 + +Modified: +oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Spring2008CourseSync.java +Log: +ONC-260, more for spring semester. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 14:28:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 14:28:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 14:28:31 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lAUJSU9L014766; + Fri, 30 Nov 2007 14:28:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47506455.CA7E8.6095 ; + 30 Nov 2007 14:28:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4871C8F124; + Fri, 30 Nov 2007 19:28:20 +0000 (GMT) +Message-ID: <200711301921.lAUJLUqQ008255@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 126 + for ; + Fri, 30 Nov 2007 19:27:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6D5D32D533 + for ; Fri, 30 Nov 2007 19:28:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUJLUnn008257 + for ; Fri, 30 Nov 2007 14:21:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUJLUqQ008255 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 14:21:30 -0500 +Date: Fri, 30 Nov 2007 14:21:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38920 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 14:28:31 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38920 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 14:21:29 -0500 (Fri, 30 Nov 2007) +New Revision: 38920 + +Added: +portal/branches/oncourse_opc_122007/ +Log: +Creating a new branch for opc deliverables, created from sakai_2-4-x @r31545 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 14:27:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 14:27:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 14:27:18 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id lAUJRHw9011547; + Fri, 30 Nov 2007 14:27:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4750640E.403A5.10331 ; + 30 Nov 2007 14:27:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DDB6A8F0E6; + Fri, 30 Nov 2007 19:27:04 +0000 (GMT) +Message-ID: <200711301920.lAUJKDHG008243@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137 + for ; + Fri, 30 Nov 2007 19:26:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 116A72D508 + for ; Fri, 30 Nov 2007 19:26:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUJKDjd008245 + for ; Fri, 30 Nov 2007 14:20:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUJKDHG008243 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 14:20:13 -0500 +Date: Fri, 30 Nov 2007 14:20:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38919 - authz/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 14:27:18 2007 +X-DSPAM-Confidence: 0.7550 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38919 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 14:20:12 -0500 (Fri, 30 Nov 2007) +New Revision: 38919 + +Added: +authz/branches/oncourse_opc_122007/ +Log: +Creating a new branch for opc deliverables, created from sakai_2-4-x @r28692 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 12:14:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 12:14:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 12:14:05 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lAUHE3UK020194; + Fri, 30 Nov 2007 12:14:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 475044D4.EEADD.1985 ; + 30 Nov 2007 12:13:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A71CA8EECB; + Fri, 30 Nov 2007 17:13:52 +0000 (GMT) +Message-ID: <200711301707.lAUH7Iee008149@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 491 + for ; + Fri, 30 Nov 2007 17:13:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 733332502E + for ; Fri, 30 Nov 2007 17:13:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUH7INB008151 + for ; Fri, 30 Nov 2007 12:07:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUH7Iee008149 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 12:07:18 -0500 +Date: Fri, 30 Nov 2007 12:07:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38918 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 12:14:05 2007 +X-DSPAM-Confidence: 0.9792 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38918 + +Author: cwen@iupui.edu +Date: 2007-11-30 12:07:16 -0500 (Fri, 30 Nov 2007) +New Revision: 38918 + +Modified: +oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Fall2007CourseSync.java +oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Spring2008CourseSync.java +Log: +more for ONC-260. revised for spring 2008 too. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Fri Nov 30 11:26:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 11:26:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 11:26:20 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id lAUGQIhF005995; + Fri, 30 Nov 2007 11:26:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4750398B.7BAE0.13197 ; + 30 Nov 2007 11:25:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 54F63674E5; + Fri, 30 Nov 2007 16:25:44 +0000 (GMT) +Message-ID: <200711301619.lAUGJCWq008096@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984 + for ; + Fri, 30 Nov 2007 16:25:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D64D52D544 + for ; Fri, 30 Nov 2007 16:25:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUGJC7s008098 + for ; Fri, 30 Nov 2007 11:19:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUGJCWq008096 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 11:19:12 -0500 +Date: Fri, 30 Nov 2007 11:19:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r38917 - in portal/branches/SAK-7924: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 11:26:20 2007 +X-DSPAM-Confidence: 0.6935 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38917 + +Author: gjthomas@iupui.edu +Date: 2007-11-30 11:19:10 -0500 (Fri, 30 Nov 2007) +New Revision: 38917 + +Added: +portal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java +portal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java +Modified: +portal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/branches/SAK-7924/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +SAK-7924 - View Site in a different role + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Fri Nov 30 11:25:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 11:25:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 11:25:57 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lAUGPuvH020925; + Fri, 30 Nov 2007 11:25:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4750398D.BBA8.815 ; + 30 Nov 2007 11:25:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8B8898EE2F; + Fri, 30 Nov 2007 16:25:44 +0000 (GMT) +Message-ID: <200711301619.lAUGJ9Nh008084@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 575 + for ; + Fri, 30 Nov 2007 16:25:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A14862D544 + for ; Fri, 30 Nov 2007 16:25:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUGJ9Iu008086 + for ; Fri, 30 Nov 2007 11:19:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUGJ9Nh008084 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 11:19:09 -0500 +Date: Fri, 30 Nov 2007 11:19:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r38916 - in authz/branches/SAK-7924: authz-api/api/src/java/org/sakaiproject/authz/api authz-api/api/src/java/org/sakaiproject/authz/cover authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 11:25:57 2007 +X-DSPAM-Confidence: 0.8429 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38916 + +Author: gjthomas@iupui.edu +Date: 2007-11-30 11:19:06 -0500 (Fri, 30 Nov 2007) +New Revision: 38916 + +Modified: +authz/branches/SAK-7924/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +authz/branches/SAK-7924/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java +authz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +authz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSql.java +authz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSqlDefault.java +authz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java +Log: +SAK-7924 - View Site in a different role + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 11:14:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 11:14:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 11:14:44 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by casino.mail.umich.edu () with ESMTP id lAUGEh9c029657; + Fri, 30 Nov 2007 11:14:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 475036EA.F1E4C.29213 ; + 30 Nov 2007 11:14:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0672A89AA2; + Fri, 30 Nov 2007 16:14:30 +0000 (GMT) +Message-ID: <200711301608.lAUG85cG008027@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331 + for ; + Fri, 30 Nov 2007 16:14:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 50ABB2D51D + for ; Fri, 30 Nov 2007 16:14:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUG85i4008029 + for ; Fri, 30 Nov 2007 11:08:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUG85cG008027 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 11:08:05 -0500 +Date: Fri, 30 Nov 2007 11:08:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38915 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 11:14:44 2007 +X-DSPAM-Confidence: 0.9793 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38915 + +Author: cwen@iupui.edu +Date: 2007-11-30 11:08:04 -0500 (Fri, 30 Nov 2007) +New Revision: 38915 + +Modified: +oncourse/branches/sakai_2-4-x/ +Log: +set prop + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 11:00:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 11:00:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 11:00:57 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id lAUG0uhI016410; + Fri, 30 Nov 2007 11:00:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 475033AF.8E5AA.9061 ; + 30 Nov 2007 11:00:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1FB4B64B62; + Fri, 30 Nov 2007 16:00:46 +0000 (GMT) +Message-ID: <200711301554.lAUFsLqg008005@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314 + for ; + Fri, 30 Nov 2007 16:00:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F35CA2D511 + for ; Fri, 30 Nov 2007 16:00:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFsL6c008007 + for ; Fri, 30 Nov 2007 10:54:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFsLqg008005 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:54:21 -0500 +Date: Fri, 30 Nov 2007 10:54:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38914 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 11:00:57 2007 +X-DSPAM-Confidence: 0.9780 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38914 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 10:54:17 -0500 (Fri, 30 Nov 2007) +New Revision: 38914 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Revving up gradebook to pick up SAK-12091 since SAK-12114 needed it + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 10:59:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 10:59:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 10:59:49 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by fan.mail.umich.edu () with ESMTP id lAUFxj8x005365; + Fri, 30 Nov 2007 10:59:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47503358.8FD45.30940 ; + 30 Nov 2007 10:59:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B69F68ED73; + Fri, 30 Nov 2007 15:59:09 +0000 (GMT) +Message-ID: <200711301552.lAUFqheh007986@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 860 + for ; + Fri, 30 Nov 2007 15:55:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93B5F2D511 + for ; Fri, 30 Nov 2007 15:58:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFqhrb007988 + for ; Fri, 30 Nov 2007 10:52:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFqheh007986 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:52:43 -0500 +Date: Fri, 30 Nov 2007 10:52:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38913 - in gradebook/branches/oncourse_opc_122007: app/business/src/java/org/sakaiproject/tool/gradebook/business app/business/src/java/org/sakaiproject/tool/gradebook/business/impl app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test service/api/src/java/org/sakaiproject/service/gradebook/shared +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 10:59:49 2007 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38913 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 10:52:40 -0500 (Fri, 30 Nov 2007) +New Revision: 38913 + +Added: +gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/MultipleAssignmentSavingException.java +Modified: +gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/branches/oncourse_opc_122007/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java +Log: +svn merge -c 37674 https://source.sakaiproject.org/svn/gradebook/trunk +U app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java +U app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +U app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +A service/api/src/java/org/sakaiproject/service/gradebook/shared/MultipleAssignmentSavingException.java + +svn log -r 37674 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37674 | cwen@iupui.edu | 2007-10-31 16:44:59 -0400 (Wed, 31 Oct 2007) | 5 lines + +http://128.196.219.68/jira/browse/SAK-12091 +SAK-12091 +=> +add createAssignments and checkValidName methods to GradebookManager. +also add MultipleAssignmentSavingException. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 10:40:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 10:40:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 10:40:21 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by jacknife.mail.umich.edu () with ESMTP id lAUFeKmP025558; + Fri, 30 Nov 2007 10:40:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47502EDB.2B512.9988 ; + 30 Nov 2007 10:40:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C86EC8EBEB; + Fri, 30 Nov 2007 15:36:11 +0000 (GMT) +Message-ID: <200711301533.lAUFXclT007950@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 237 + for ; + Fri, 30 Nov 2007 15:35:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D6D9F1D609 + for ; Fri, 30 Nov 2007 15:39:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFXcZP007952 + for ; Fri, 30 Nov 2007 10:33:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFXclT007950 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:33:38 -0500 +Date: Fri, 30 Nov 2007 10:33:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38912 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 10:40:21 2007 +X-DSPAM-Confidence: 0.9800 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38912 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 10:33:37 -0500 (Fri, 30 Nov 2007) +New Revision: 38912 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +updating msgcntr externals + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 10:37:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 10:37:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 10:37:05 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by score.mail.umich.edu () with ESMTP id lAUFb4gd007578; + Fri, 30 Nov 2007 10:37:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47502E1B.2F244.29193 ; + 30 Nov 2007 10:37:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CCB818EC84; + Fri, 30 Nov 2007 15:32:47 +0000 (GMT) +Message-ID: <200711301530.lAUFUWRS007935@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650 + for ; + Fri, 30 Nov 2007 15:32:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D1DE82CCF8 + for ; Fri, 30 Nov 2007 15:36:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFUWnA007937 + for ; Fri, 30 Nov 2007 10:30:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFUWRS007935 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:30:32 -0500 +Date: Fri, 30 Nov 2007 10:30:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38911 - in msgcntr/branches/oncourse_opc_122007/messageforums-app: . src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 10:37:05 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38911 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 10:30:29 -0500 (Fri, 30 Nov 2007) +New Revision: 38911 + +Modified: +msgcntr/branches/oncourse_opc_122007/messageforums-app/project.xml +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +Log: +SAK-12073 +Removing some event stuff that crept in by mistake + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Nov 30 10:21:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 10:21:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 10:21:12 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lAUFLAQo011075; + Fri, 30 Nov 2007 10:21:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47502A5D.5402C.9900 ; + 30 Nov 2007 10:21:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C02688EB9C; + Fri, 30 Nov 2007 15:20:23 +0000 (GMT) +Message-ID: <200711301514.lAUFE4bH007874@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 691 + for ; + Fri, 30 Nov 2007 15:19:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F5CFB253 + for ; Fri, 30 Nov 2007 15:20:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFE47L007876 + for ; Fri, 30 Nov 2007 10:14:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFE4bH007874 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:14:04 -0500 +Date: Fri, 30 Nov 2007 10:14:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [contrib] svn commit: r43929 - in uct: . email-template-service email-template-service/trunk email-template-service/trunk/api email-template-service/trunk/api/src email-template-service/trunk/api/src/java email-template-service/trunk/api/src/java/org email-template-service/trunk/api/src/java/org/sakaiproject email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/dao email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/hbm email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/model email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/service email-template-service/trunk/emailtemplateservce-shared-deploy email-template-service/trunk/impl email-template-service/trunk/impl/src email-template-service/trunk/impl/src/java email-template-service/trunk/impl/src/java/org email-template-service/! + trunk/impl/src/java/org/sakaiproject email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao/impl email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service/impl email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/util email-template-service/trunk/pack email-template-service/trunk/pack/src email-template-service/trunk/pack/src/webapp email-template-service/trunk/pack/src/webapp/WEB-INF email-template-service/trunk/tool email-template-service/trunk/tool/src email-template-service/trunk/tool/src/java email-template-service/trunk/tool/src/java/org email-template-service/trunk/tool/src/java/org/sakaiproject email-template-service/trunk/tool/! + src/java/org/sakaiproject/emailtemplateservice email-template-! + service/ +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 10:21:12 2007 +X-DSPAM-Confidence: 0.8468 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=43929 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-30 10:12:23 -0500 (Fri, 30 Nov 2007) +New Revision: 43929 + +Added: +uct/email-template-service/ +uct/email-template-service/branches/ +uct/email-template-service/tags/ +uct/email-template-service/trunk/ +uct/email-template-service/trunk/.classpath +uct/email-template-service/trunk/.project +uct/email-template-service/trunk/.sakaiapp +uct/email-template-service/trunk/.svnignore +uct/email-template-service/trunk/README.txt +uct/email-template-service/trunk/api/ +uct/email-template-service/trunk/api/pom.xml +uct/email-template-service/trunk/api/project.xml +uct/email-template-service/trunk/api/src/ +uct/email-template-service/trunk/api/src/java/ +uct/email-template-service/trunk/api/src/java/org/ +uct/email-template-service/trunk/api/src/java/org/sakaiproject/ +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/ +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/dao/ +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/dao/EmailTemplateServiceDao.java +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/hbm/ +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/hbm/EmailTemplate.hbm.xml +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/model/ +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/model/EmailTemplate.java +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/model/RenderedTemplate.java +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/service/ +uct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/service/EmailTemplateService.java +uct/email-template-service/trunk/emailtemplateservce-shared-deploy/ +uct/email-template-service/trunk/emailtemplateservce-shared-deploy/pom.xml +uct/email-template-service/trunk/impl/ +uct/email-template-service/trunk/impl/pom.xml +uct/email-template-service/trunk/impl/project.xml +uct/email-template-service/trunk/impl/src/ +uct/email-template-service/trunk/impl/src/java/ +uct/email-template-service/trunk/impl/src/java/org/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao/impl/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao/impl/EmailTemplateServiceDaoImpl.java +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service/impl/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service/impl/EmailTemplateServiceImpl.java +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/util/ +uct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/util/TextTemplateLogicUtils.java +uct/email-template-service/trunk/pack/ +uct/email-template-service/trunk/pack/pom.xml +uct/email-template-service/trunk/pack/project.xml +uct/email-template-service/trunk/pack/src/ +uct/email-template-service/trunk/pack/src/webapp/ +uct/email-template-service/trunk/pack/src/webapp/WEB-INF/ +uct/email-template-service/trunk/pack/src/webapp/WEB-INF/components.xml +uct/email-template-service/trunk/pack/src/webapp/WEB-INF/hibernate-hbms.xml +uct/email-template-service/trunk/pack/src/webapp/WEB-INF/spring-hibernate.xml +uct/email-template-service/trunk/pom.xml +uct/email-template-service/trunk/project.xml +uct/email-template-service/trunk/tool/ +uct/email-template-service/trunk/tool/maven.xml +uct/email-template-service/trunk/tool/pom.xml +uct/email-template-service/trunk/tool/project.properties +uct/email-template-service/trunk/tool/project.xml +uct/email-template-service/trunk/tool/src/ +uct/email-template-service/trunk/tool/src/java/ +uct/email-template-service/trunk/tool/src/java/org/ +uct/email-template-service/trunk/tool/src/java/org/sakaiproject/ +uct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/ +uct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/tool/ +uct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/tool/params/ +uct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/tool/producers/ +uct/email-template-service/trunk/tool/src/webapp/ +uct/email-template-service/trunk/tool/src/webapp/WEB-INF/ +uct/email-template-service/trunk/tool/src/webapp/WEB-INF/bundle/ +uct/email-template-service/trunk/tool/src/webapp/WEB-INF/web.xml +uct/email-template-service/trunk/tool/src/webapp/component-templates/ +uct/email-template-service/trunk/tool/src/webapp/css/ +uct/email-template-service/trunk/tool/src/webapp/css/Emailtemplateservice.css +uct/email-template-service/trunk/tool/src/webapp/images/ +uct/email-template-service/trunk/tool/src/webapp/templates/ +uct/email-template-service/trunk/tool/src/webapp/tools/ +uct/email-template-service/trunk/tool/src/webapp/tools/sakai.emailtemplateservice.xml +Log: +import code from UCT trunk + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 09:56:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:56:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:56:53 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id lAUEuqlJ032608; + Fri, 30 Nov 2007 09:56:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 475024AF.10CDB.14443 ; + 30 Nov 2007 09:56:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0B31E5000C; + Fri, 30 Nov 2007 14:56:49 +0000 (GMT) +Message-ID: <200711301450.lAUEoGWr007827@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1003 + for ; + Fri, 30 Nov 2007 14:56:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CD7F92998A + for ; Fri, 30 Nov 2007 14:56:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEoGO7007829 + for ; Fri, 30 Nov 2007 09:50:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEoGWr007827 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:50:16 -0500 +Date: Fri, 30 Nov 2007 09:50:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38910 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:56:53 2007 +X-DSPAM-Confidence: 0.8427 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38910 + +Author: cwen@iupui.edu +Date: 2007-11-30 09:50:16 -0500 (Fri, 30 Nov 2007) +New Revision: 38910 + +Modified: +oncourse/branches/sakai_2-4-x/.externals +Log: +update external for SAK-11728 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 09:54:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:54:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:54:42 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id lAUEsfKi001489; + Fri, 30 Nov 2007 09:54:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4750242C.B4D70.13719 ; + 30 Nov 2007 09:54:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 631D68E9DC; + Fri, 30 Nov 2007 14:54:31 +0000 (GMT) +Message-ID: <200711301447.lAUEluAb007815@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 476 + for ; + Fri, 30 Nov 2007 14:54:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ADF9B2998A + for ; Fri, 30 Nov 2007 14:54:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUElunJ007817 + for ; Fri, 30 Nov 2007 09:47:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEluAb007815 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:47:56 -0500 +Date: Fri, 30 Nov 2007 09:47:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38909 - in assignment/branches/oncourse_2-4-x: assignment-impl/impl/src/bundle assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:54:42 2007 +X-DSPAM-Confidence: 0.7552 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38909 + +Author: cwen@iupui.edu +Date: 2007-11-30 09:47:54 -0500 (Fri, 30 Nov 2007) +New Revision: 38909 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +found problem for building. remerge for SAK-11728 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 09:47:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:47:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:47:14 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lAUElD1c027499; + Fri, 30 Nov 2007 09:47:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47502264.5291A.9602 ; + 30 Nov 2007 09:47:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 930A654F31; + Fri, 30 Nov 2007 14:47:05 +0000 (GMT) +Message-ID: <200711301440.lAUEeVRK007803@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 136 + for ; + Fri, 30 Nov 2007 14:46:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE6512998A + for ; Fri, 30 Nov 2007 14:46:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEeVct007805 + for ; Fri, 30 Nov 2007 09:40:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEeVRK007803 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:40:31 -0500 +Date: Fri, 30 Nov 2007 09:40:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38908 - in assignment/branches/oncourse_2-4-x: assignment-impl/impl/src/bundle assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:47:14 2007 +X-DSPAM-Confidence: 0.7546 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38908 + +Author: cwen@iupui.edu +Date: 2007-11-30 09:40:29 -0500 (Fri, 30 Nov 2007) +New Revision: 38908 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +found problem for building. remerge for SAK-11728 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 09:32:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:32:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:32:19 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id lAUEWHVZ015049; + Fri, 30 Nov 2007 09:32:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47501ED3.D80A1.2055 ; + 30 Nov 2007 09:32:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 005608EA39; + Fri, 30 Nov 2007 14:31:53 +0000 (GMT) +Message-ID: <200711301425.lAUEPNrb007667@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 678 + for ; + Fri, 30 Nov 2007 14:31:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 061902998A + for ; Fri, 30 Nov 2007 14:31:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEPNkD007669 + for ; Fri, 30 Nov 2007 09:25:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEPNrb007667 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:25:23 -0500 +Date: Fri, 30 Nov 2007 09:25:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38907 - authz/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:32:19 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38907 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 09:25:21 -0500 (Fri, 30 Nov 2007) +New Revision: 38907 + +Added: +authz/branches/SAK-7924/ +Log: +Creating branch for SAK-7924 from trunk @r38872 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 09:31:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:31:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:31:31 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id lAUEVUhB016053; + Fri, 30 Nov 2007 09:31:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47501EA4.76C15.701 ; + 30 Nov 2007 09:31:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A479A54F31; + Fri, 30 Nov 2007 14:31:04 +0000 (GMT) +Message-ID: <200711301424.lAUEOT6j007643@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 354 + for ; + Fri, 30 Nov 2007 14:30:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A70BC2998A + for ; Fri, 30 Nov 2007 14:30:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEOTpX007645 + for ; Fri, 30 Nov 2007 09:24:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEOT6j007643 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:24:29 -0500 +Date: Fri, 30 Nov 2007 09:24:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38905 - portal/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:31:31 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38905 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 09:24:28 -0500 (Fri, 30 Nov 2007) +New Revision: 38905 + +Added: +portal/branches/SAK-7924/ +Log: +Creating branch for SAK-7924 from trunk @r38361 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Fri Nov 30 09:31:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:31:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:31:20 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by flawless.mail.umich.edu () with ESMTP id lAUEVJNq013402; + Fri, 30 Nov 2007 09:31:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47501EAB.12C0B.10894 ; + 30 Nov 2007 09:31:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0AB988EA35; + Fri, 30 Nov 2007 14:31:12 +0000 (GMT) +Message-ID: <200711301424.lAUEOdHv007655@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 614 + for ; + Fri, 30 Nov 2007 14:30:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 28E662998A + for ; Fri, 30 Nov 2007 14:30:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEOdEN007657 + for ; Fri, 30 Nov 2007 09:24:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEOdHv007655 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:24:39 -0500 +Date: Fri, 30 Nov 2007 09:24:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38906 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:31:20 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38906 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-30 09:23:52 -0500 (Fri, 30 Nov 2007) +New Revision: 38906 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/ExportResponsesBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +Log: +SAK-12142 Started export of part/section scores in seperate columns + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 09:12:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:12:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:12:57 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by sleepers.mail.umich.edu () with ESMTP id lAUECu2j013672; + Fri, 30 Nov 2007 09:12:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47501A60.3CD65.29617 ; + 30 Nov 2007 09:12:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 464E554F31; + Fri, 30 Nov 2007 14:12:51 +0000 (GMT) +Message-ID: <200711301406.lAUE6IJB007614@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 732 + for ; + Fri, 30 Nov 2007 14:12:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A6F3429996 + for ; Fri, 30 Nov 2007 14:12:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUE6IiH007616 + for ; Fri, 30 Nov 2007 09:06:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUE6IJB007614 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:06:18 -0500 +Date: Fri, 30 Nov 2007 09:06:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38904 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:12:57 2007 +X-DSPAM-Confidence: 0.8439 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38904 + +Author: cwen@iupui.edu +Date: 2007-11-30 09:06:17 -0500 (Fri, 30 Nov 2007) +New Revision: 38904 + +Modified: +oncourse/branches/sakai_2-4-x/.externals +Log: +update external -- merge SAK-11728 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 30 09:04:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 09:04:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 09:04:00 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lAUE3wpC009006; + Fri, 30 Nov 2007 09:03:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47501848.B1995.32642 ; + 30 Nov 2007 09:03:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8CB0D54F31; + Fri, 30 Nov 2007 14:03:54 +0000 (GMT) +Message-ID: <200711301357.lAUDvLLJ007600@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312 + for ; + Fri, 30 Nov 2007 14:03:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 48CE82D4D1 + for ; Fri, 30 Nov 2007 14:03:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUDvLhg007602 + for ; Fri, 30 Nov 2007 08:57:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUDvLLJ007600 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 08:57:21 -0500 +Date: Fri, 30 Nov 2007 08:57:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38903 - in assignment/branches/oncourse_2-4-x: assignment-impl/impl/src/bundle assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 09:04:00 2007 +X-DSPAM-Confidence: 0.7549 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38903 + +Author: cwen@iupui.edu +Date: 2007-11-30 08:57:19 -0500 (Fri, 30 Nov 2007) +New Revision: 38903 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +SAK-11728. svn merge -r34841:34840 https://source.sakaiproject.org/svn/assignment/trunk, svn merge -r34693:34692 https://source.sakaiproject.org/svn/assignment/trunk, svn merge -r34393:34392 https://source.sakaiproject.org/svn/assignment/trunk, svn merge -r31550:31551 https://source.sakaiproject.org/svn/assignment/trunk,svn merge -r31570:31571 https://source.sakaiproject.org/svn/assignment/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 08:50:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 08:50:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 08:50:35 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lAUDoZQw026444; + Fri, 30 Nov 2007 08:50:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47501525.B5C23.1132 ; + 30 Nov 2007 08:50:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A70998E96E; + Fri, 30 Nov 2007 13:50:35 +0000 (GMT) +Message-ID: <200711301344.lAUDi115007565@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 298 + for ; + Fri, 30 Nov 2007 13:50:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 161062D501 + for ; Fri, 30 Nov 2007 13:50:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUDi1do007567 + for ; Fri, 30 Nov 2007 08:44:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUDi115007565 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 08:44:01 -0500 +Date: Fri, 30 Nov 2007 08:44:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38902 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 08:50:35 2007 +X-DSPAM-Confidence: 0.8418 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38902 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 08:44:00 -0500 (Fri, 30 Nov 2007) +New Revision: 38902 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +updating externals for msgcntr + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 30 08:49:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 30 Nov 2007 08:49:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 30 Nov 2007 08:49:25 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id lAUDnLwA025518; + Fri, 30 Nov 2007 08:49:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 475014DB.F241.27801 ; + 30 Nov 2007 08:49:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EE9428E96A; + Fri, 30 Nov 2007 13:49:21 +0000 (GMT) +Message-ID: <200711301342.lAUDgiaW007553@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 706 + for ; + Fri, 30 Nov 2007 13:49:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A34EB2D4E7 + for ; Fri, 30 Nov 2007 13:48:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUDgiWQ007555 + for ; Fri, 30 Nov 2007 08:42:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUDgiaW007553 + for source@collab.sakaiproject.org; Fri, 30 Nov 2007 08:42:44 -0500 +Date: Fri, 30 Nov 2007 08:42:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38901 - msgcntr/branches/oncourse_opc_122007/messageforums-app +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 30 08:49:25 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38901 + +Author: chmaurer@iupui.edu +Date: 2007-11-30 08:42:42 -0500 (Fri, 30 Nov 2007) +New Revision: 38901 + +Modified: +msgcntr/branches/oncourse_opc_122007/messageforums-app/project.xml +Log: +SAK-12073 +Adding a dependency to event-api + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 22:23:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 22:23:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 22:23:25 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id lAU3NOuP015181; + Thu, 29 Nov 2007 22:23:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474F8226.9B23A.12827 ; + 29 Nov 2007 22:23:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C77F18E3CF; + Fri, 30 Nov 2007 03:23:18 +0000 (GMT) +Message-ID: <200711300316.lAU3Ggen006743@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220 + for ; + Fri, 30 Nov 2007 03:22:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B515724F22 + for ; Fri, 30 Nov 2007 03:22:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU3GgLm006745 + for ; Thu, 29 Nov 2007 22:16:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU3Ggen006743 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 22:16:42 -0500 +Date: Thu, 29 Nov 2007 22:16:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38900 - reports/trunk/reports-api reports/trunk/reports-impl reports/trunk/reports-tool reports/trunk/reports-util warehouse/trunk/warehouse-api warehouse/trunk/warehouse-impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 22:23:25 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38900 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 22:16:36 -0500 (Thu, 29 Nov 2007) +New Revision: 38900 + +Modified: +reports/trunk/reports-api/.classpath +reports/trunk/reports-impl/.classpath +reports/trunk/reports-tool/.classpath +reports/trunk/reports-util/.classpath +warehouse/trunk/warehouse-api/.classpath +warehouse/trunk/warehouse-impl/.classpath +Log: +updating eclipse classpath to use bin instead of an m2-target folder. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 29 21:31:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 21:31:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 21:31:50 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lAU2Vn5M003405; + Thu, 29 Nov 2007 21:31:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474F760F.76D8E.25106 ; + 29 Nov 2007 21:31:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6AC1F8E4D6; + Fri, 30 Nov 2007 02:31:39 +0000 (GMT) +Message-ID: <200711300225.lAU2PFfI006723@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984 + for ; + Fri, 30 Nov 2007 02:31:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E860B24F0E + for ; Fri, 30 Nov 2007 02:31:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU2PGId006725 + for ; Thu, 29 Nov 2007 21:25:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU2PFfI006723 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 21:25:15 -0500 +Date: Thu, 29 Nov 2007 21:25:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38899 - in content/branches/SAK-12239: content-api/api/src/java/org/sakaiproject/content/api content-bundles content-impl/impl/src/java/org/sakaiproject/content/impl content-util/util/src/java/org/sakaiproject/content/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 21:31:50 2007 +X-DSPAM-Confidence: 0.8490 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38899 + +Author: jimeng@umich.edu +Date: 2007-11-29 21:25:00 -0500 (Thu, 29 Nov 2007) +New Revision: 38899 + +Modified: +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java +content/branches/SAK-12239/content-bundles/types.properties +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java +content/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java +content/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java +Log: +SAK-12239 +Adding files to SAK-12239 branch (destined for post-2.4 branch) to get 2.5 performance improvements into a branch compatible with Sakai 2.4.x. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 29 21:22:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 21:22:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 21:22:45 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lAU2MiSP020706; + Thu, 29 Nov 2007 21:22:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474F73EE.8E4A8.7440 ; + 29 Nov 2007 21:22:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EB7C68E4D6; + Fri, 30 Nov 2007 02:22:34 +0000 (GMT) +Message-ID: <200711300216.lAU2G9WH006711@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728 + for ; + Fri, 30 Nov 2007 02:22:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 930332CEAA + for ; Fri, 30 Nov 2007 02:22:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU2G9FH006713 + for ; Thu, 29 Nov 2007 21:16:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU2G9WH006711 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 21:16:09 -0500 +Date: Thu, 29 Nov 2007 21:16:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38898 - db/branches/SAK-12239/db-api/api/src/java/org/sakaiproject/db/api db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util entity/branches/SAK-12239/entity-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 21:22:45 2007 +X-DSPAM-Confidence: 0.7611 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38898 + +Author: jimeng@umich.edu +Date: 2007-11-29 21:15:51 -0500 (Thu, 29 Nov 2007) +New Revision: 38898 + +Modified: +db/branches/SAK-12239/db-api/api/src/java/org/sakaiproject/db/api/SqlService.java +db/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbDoubleStorage.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbFlatStorage.java +db/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java +entity/branches/SAK-12239/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java +Log: +SAK-12239 +Adding files to SAK-12239 branch (destined for post-2.4 branch) to get 2.5 performance improvements into a branch compatible with Sakai 2.4.x. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 29 21:21:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 21:21:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 21:21:53 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lAU2Lp58000774; + Thu, 29 Nov 2007 21:21:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474F73BA.88ED7.15969 ; + 29 Nov 2007 21:21:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CF6F37243F; + Fri, 30 Nov 2007 02:21:41 +0000 (GMT) +Message-ID: <200711300215.lAU2FDqc006699@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 187 + for ; + Fri, 30 Nov 2007 02:21:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5FCEE2CEAA + for ; Fri, 30 Nov 2007 02:21:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU2FDhv006701 + for ; Thu, 29 Nov 2007 21:15:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU2FDqc006699 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 21:15:13 -0500 +Date: Thu, 29 Nov 2007 21:15:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38897 - in content/branches/SAK-12239: content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/cover content-bundles content-impl/impl/src/config content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/pack/src/webapp/WEB-INF content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 21:21:53 2007 +X-DSPAM-Confidence: 0.8502 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38897 + +Author: jimeng@umich.edu +Date: 2007-11-29 21:14:46 -0500 (Thu, 29 Nov 2007) +New Revision: 38897 + +Modified: +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java +content/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/SAK-12239/content-bundles/types.properties +content/branches/SAK-12239/content-impl/impl/src/config/content_type_names_nl.properties +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java +content/branches/SAK-12239/content-impl/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-12239 +Adding files to SAK-12239 branch (destined for post-2.4 branch) to get 2.5 performance improvements into a branch compatible with Sakai 2.4.x. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 29 20:29:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 20:29:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 20:29:10 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lAU1T9Nh005404; + Thu, 29 Nov 2007 20:29:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474F6760.4749F.575 ; + 29 Nov 2007 20:29:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B71928C259; + Fri, 30 Nov 2007 01:29:05 +0000 (GMT) +Message-ID: <200711300122.lAU1MVTk006631@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 130 + for ; + Fri, 30 Nov 2007 01:28:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5DB9224F8B + for ; Fri, 30 Nov 2007 01:28:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU1MVCI006633 + for ; Thu, 29 Nov 2007 20:22:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU1MVTk006631 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 20:22:31 -0500 +Date: Thu, 29 Nov 2007 20:22:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38896 - in content/branches/sakai_2-4-x: content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/cover content-bundles content-impl/impl/src/config content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/sql content-impl/impl/src/sql/hsqldb content-impl/impl/src/sql/mysql content-impl/impl/src/sql/oracle content-impl/pack/src/webapp/WEB-INF content-tool/tool/src/java/org/sakaiproject/content/tool content-util/util/src/java/org/sakaiproject/content/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 20:29:10 2007 +X-DSPAM-Confidence: 0.7603 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38896 + +Author: jimeng@umich.edu +Date: 2007-11-29 20:21:51 -0500 (Thu, 29 Nov 2007) +New Revision: 38896 + +Removed: +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/OperationDelegationException.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/ +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxNotification.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/ +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/util/ +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/ +Modified: +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/sakai_2-4-x/content-bundles/types.properties +content/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_nl.properties +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java +content/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content_delete.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content_delete.sql +content/branches/sakai_2-4-x/content-impl/pack/src/webapp/WEB-INF/components.xml +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java +content/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java +content/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java +Log: +SAK-12239 +These changes were supposed to go into the SAK-12239 branch rather than the 2.4.x branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 29 20:16:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 20:16:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 20:16:07 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by flawless.mail.umich.edu () with ESMTP id lAU1G6GY011606; + Thu, 29 Nov 2007 20:16:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474F644F.9D8F3.26828 ; + 29 Nov 2007 20:16:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 92CBF8E008; + Fri, 30 Nov 2007 01:15:48 +0000 (GMT) +Message-ID: <200711300109.lAU199nN006596@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1010 + for ; + Fri, 30 Nov 2007 01:15:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 52C8622654 + for ; Fri, 30 Nov 2007 01:15:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU199VD006598 + for ; Thu, 29 Nov 2007 20:09:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU199nN006596 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 20:09:09 -0500 +Date: Thu, 29 Nov 2007 20:09:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38895 - db/branches/sakai_2-4-x/db-api/api/src/java/org/sakaiproject/db/api db/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 20:16:07 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38895 + +Author: jimeng@umich.edu +Date: 2007-11-29 20:08:41 -0500 (Thu, 29 Nov 2007) +New Revision: 38895 + +Removed: +db/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/ +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDb2.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDefault.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlHSql.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMsSql.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMySql.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlOracle.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/SqlServiceSql.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/ +entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/serialize/ +Modified: +db/branches/sakai_2-4-x/db-api/api/src/java/org/sakaiproject/db/api/SqlService.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbDoubleStorage.java +db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbFlatStorage.java +db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java +entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java +Log: +SAK-12239 +These changes were supposed to go into the SAK-12239 branch rather than the 2.4.x branch + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Nov 29 19:39:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 19:39:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 19:39:16 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lAU0dF9X015060; + Thu, 29 Nov 2007 19:39:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474F5BAC.C246E.23247 ; + 29 Nov 2007 19:39:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4000D8CB90; + Fri, 30 Nov 2007 00:19:02 +0000 (GMT) +Message-ID: <200711300032.lAU0WhmR006558@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 952 + for ; + Fri, 30 Nov 2007 00:18:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B7BA22CE71 + for ; Fri, 30 Nov 2007 00:38:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0WiIZ006560 + for ; Thu, 29 Nov 2007 19:32:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0WhmR006558 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:32:44 -0500 +Date: Thu, 29 Nov 2007 19:32:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38894 - entity/trunk/entity-api/api/src/java/org/sakaiproject/entity/api/serialize +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 19:39:16 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38894 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-29 19:32:40 -0500 (Thu, 29 Nov 2007) +New Revision: 38894 + +Modified: +entity/trunk/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12308 + +Moved parse into so that it matches standard behavior + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Nov 29 19:36:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 19:36:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 19:36:27 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lAU0aQNa001018; + Thu, 29 Nov 2007 19:36:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474F5B05.92F68.7011 ; + 29 Nov 2007 19:36:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6FD28E2E3; + Fri, 30 Nov 2007 00:16:15 +0000 (GMT) +Message-ID: <200711300029.lAU0TvT3006546@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 770 + for ; + Fri, 30 Nov 2007 00:16:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 82C092CE71 + for ; Fri, 30 Nov 2007 00:36:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0TvMh006548 + for ; Thu, 29 Nov 2007 19:29:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0TvT3006546 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:29:57 -0500 +Date: Thu, 29 Nov 2007 19:29:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38893 - db/trunk/db-util/storage/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 19:36:27 2007 +X-DSPAM-Confidence: 0.7559 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38893 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-29 19:29:51 -0500 (Thu, 29 Nov 2007) +New Revision: 38893 + +Modified: +db/trunk/db-util/storage/src/java/org/sakaiproject/util/BaseDbBinarySingleStorage.java +db/trunk/db-util/storage/src/java/org/sakaiproject/util/BaseDbDualSingleStorage.java +db/trunk/db-util/storage/src/java/org/sakaiproject/util/EntityReaderAdapter.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12308 + +Added supporting code to enable based content collection migraiton on startup + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Nov 29 19:36:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 19:36:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 19:36:00 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by chaos.mail.umich.edu () with ESMTP id lAU0ZxLS001525; + Thu, 29 Nov 2007 19:35:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 474F5AE8.91DEB.24760 ; + 29 Nov 2007 19:35:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 580368D4E4; + Fri, 30 Nov 2007 00:15:44 +0000 (GMT) +Message-ID: <200711300029.lAU0TKqN006534@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385 + for ; + Fri, 30 Nov 2007 00:15:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 04CC92CE73 + for ; Fri, 30 Nov 2007 00:35:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0TKgB006536 + for ; Thu, 29 Nov 2007 19:29:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0TKqN006534 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:29:20 -0500 +Date: Thu, 29 Nov 2007 19:29:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38892 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 19:36:00 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38892 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-29 19:29:14 -0500 (Thu, 29 Nov 2007) +New Revision: 38892 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12308 + +Added correct migration of the base entities on startup migtration + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 29 19:32:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 19:32:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 19:32:21 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lAU0WK4G019784; + Thu, 29 Nov 2007 19:32:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474F5A0E.DA8F2.2570 ; + 29 Nov 2007 19:32:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 312AE8D4E3; + Fri, 30 Nov 2007 00:12:08 +0000 (GMT) +Message-ID: <200711300025.lAU0PmAe006511@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 82 + for ; + Fri, 30 Nov 2007 00:11:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A055E2CEC5 + for ; Fri, 30 Nov 2007 00:31:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0PmlG006513 + for ; Thu, 29 Nov 2007 19:25:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0PmAe006511 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:25:48 -0500 +Date: Thu, 29 Nov 2007 19:25:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38891 - db/branches/sakai_2-4-x/db-api/api/src/java/org/sakaiproject/db/api db/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate db/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/serialize +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 19:32:21 2007 +X-DSPAM-Confidence: 0.8511 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38891 + +Author: jimeng@umich.edu +Date: 2007-11-29 19:25:09 -0500 (Thu, 29 Nov 2007) +New Revision: 38891 + +Added: +db/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/ +db/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/SQLServerDialect2005.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDb2.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDefault.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlHSql.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMsSql.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMySql.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlOracle.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/SqlServiceSql.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/ +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/DataStreamEntitySerializer.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReader.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReaderHandler.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityParseException.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReader.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntitySerializer.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializableEntity.java +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializablePropertiesAccess.java +entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/serialize/ +entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/serialize/Type1BaseResourcePropertiesSerializer.java +Modified: +db/branches/sakai_2-4-x/db-api/api/src/java/org/sakaiproject/db/api/SqlService.java +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbDoubleStorage.java +db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbFlatStorage.java +db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java +entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java +Log: +SAK-12239 +Added files from 2.5.x to 2.4.x in entity and db to support new serialization and quota query in content + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 29 17:44:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 17:44:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 17:44:50 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by jacknife.mail.umich.edu () with ESMTP id lATMinup001793; + Thu, 29 Nov 2007 17:44:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474F40DB.DBD70.23977 ; + 29 Nov 2007 17:44:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A4C858E025; + Thu, 29 Nov 2007 22:43:43 +0000 (GMT) +Message-ID: <200711292237.lATMb8Wu006299@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12 + for ; + Thu, 29 Nov 2007 22:43:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E0B5F2CE92 + for ; Thu, 29 Nov 2007 22:43:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATMb97B006301 + for ; Thu, 29 Nov 2007 17:37:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATMb8Wu006299 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 17:37:08 -0500 +Date: Thu, 29 Nov 2007 17:37:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38890 - mailarchive/branches/sakai_2-5-x/mailarchive-james/james/src/java/org/sakaiproject/james +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 17:44:50 2007 +X-DSPAM-Confidence: 0.6567 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38890 + +Author: mmmay@indiana.edu +Date: 2007-11-29 17:37:07 -0500 (Thu, 29 Nov 2007) +New Revision: 38890 + +Modified: +mailarchive/branches/sakai_2-5-x/mailarchive-james/james/src/java/org/sakaiproject/james/SakaiMailet.java +Log: +svn merge -r 38834:38835 https://source.sakaiproject.org/svn/mailarchive/trunk +U mailarchive-james/james/src/java/org/sakaiproject/james/SakaiMailet.java +in-143-196:~/java/2-5/sakai_2-5-x/mailarchive mmmay$ svn log -r 38834:38835 https://source.sakaiproject.org/svn/mailarchive/trunk +------------------------------------------------------------------------ +r38835 | zach.thomas@txstate.edu | 2007-11-28 12:35:55 -0500 (Wed, 28 Nov 2007) | 1 line + +SAK-11973 removing extraneous line breaks from incoming messages to the mail archive. +------------------------------------------------------------------------ + +Issue resolves SAK-11995 which was recorded off the testing in SAK-11973 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 29 17:22:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 17:22:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 17:22:49 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id lATMMnml020148; + Thu, 29 Nov 2007 17:22:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 474F3BAA.1F95D.23769 ; + 29 Nov 2007 17:22:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 311F98E21A; + Thu, 29 Nov 2007 22:22:43 +0000 (GMT) +Message-ID: <200711292216.lATMG5J3006209@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 913 + for ; + Thu, 29 Nov 2007 22:22:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4C0892CE4D + for ; Thu, 29 Nov 2007 22:22:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATMG52q006211 + for ; Thu, 29 Nov 2007 17:16:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATMG5J3006209 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 17:16:05 -0500 +Date: Thu, 29 Nov 2007 17:16:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38888 - in content/branches/sakai_2-4-x: content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/api/providers content-api/api/src/java/org/sakaiproject/content/cover content-bundles content-impl/impl/src/config content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion content-impl/impl/src/java/org/sakaiproject/content/impl/util content-impl/impl/src/sql content-impl/impl/src/sql/hsqldb content-impl/impl/src/sql/mssql content-impl/impl/src/sql/mysql content-impl/impl/src/sql/oracle content-impl/pack/src/webapp/WEB-INF content-tool/tool/src/java/org/sakaiproject/content/tool content-util/util/src/java/org/sakaip! + roject/content/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 17:22:49 2007 +X-DSPAM-Confidence: 0.8503 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38888 + +Author: jimeng@umich.edu +Date: 2007-11-29 17:15:04 -0500 (Thu, 29 Nov 2007) +New Revision: 38888 + +Added: +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/OperationDelegationException.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/ +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisor.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorProvider.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorTypeRegistry.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxNotification.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/ +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/ +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableCollectionAccess.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableResourceAccess.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/ +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentCollectionSerializer.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentResourceSerializer.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConversionTimeService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConvertTime.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableCollectionAccess.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializablePropertiesAccess.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableResourceAccess.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/util/ +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/util/GMTDateformatter.java +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/ +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/sakai_content.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/sakai_content_delete.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/sakai_content_registry.sql +Modified: +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java +content/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/sakai_2-4-x/content-bundles/types.properties +content/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_nl.properties +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java +content/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content_delete.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content.sql +content/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content_delete.sql +content/branches/sakai_2-4-x/content-impl/pack/src/webapp/WEB-INF/components.xml +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java +content/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java +content/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java +Log: +SAK-12239 +Adding new files and updating existing files to merge 2.5.x changes to SAK-12239 branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 29 16:47:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 16:47:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 16:47:55 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lATLlsi0001545; + Thu, 29 Nov 2007 16:47:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474F3380.B892A.11269 ; + 29 Nov 2007 16:47:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 037898DFA1; + Thu, 29 Nov 2007 21:46:39 +0000 (GMT) +Message-ID: <200711292141.lATLfKVl006183@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 111 + for ; + Thu, 29 Nov 2007 21:46:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3E8262CDAC + for ; Thu, 29 Nov 2007 21:47:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLfK3A006185 + for ; Thu, 29 Nov 2007 16:41:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLfKVl006183 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:41:20 -0500 +Date: Thu, 29 Nov 2007 16:41:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38887 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 16:47:55 2007 +X-DSPAM-Confidence: 0.6197 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38887 + +Author: mmmay@indiana.edu +Date: 2007-11-29 16:41:19 -0500 (Thu, 29 Nov 2007) +New Revision: 38887 + +Modified: +util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java +Log: +svn merge -r 38780:38781 https://source.sakaiproject.org/svn/util/trunk +U util-util/util/src/java/org/sakaiproject/util/FormattedText.java +in-143-196:~/java/2-5/sakai_2-5-x/util mmmay$ svn log -r 38780:38781 https://source.sakaiproject.org/svn/util/trunk +------------------------------------------------------------------------ +r38781 | lance@indiana.edu | 2007-11-26 09:36:07 -0500 (Mon, 26 Nov 2007) | 5 lines + +SAK-12147 +http://jira.sakaiproject.org/jira/browse/SAK-12147 +Removal of FormatedText.parseFormatedText(String, Strinbuffer) breaks backward compatibility + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 29 16:43:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 16:43:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 16:43:24 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by mission.mail.umich.edu () with ESMTP id lATLhMT7016885; + Thu, 29 Nov 2007 16:43:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474F3274.D44FE.29066 ; + 29 Nov 2007 16:43:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AE8C18E138; + Thu, 29 Nov 2007 21:43:16 +0000 (GMT) +Message-ID: <200711292136.lATLaqmq006151@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897 + for ; + Thu, 29 Nov 2007 21:43:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2FB492CE69 + for ; Thu, 29 Nov 2007 21:43:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLaqZR006153 + for ; Thu, 29 Nov 2007 16:36:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLaqmq006151 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:36:52 -0500 +Date: Thu, 29 Nov 2007 16:36:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38886 - reports/branches/sakai_2-5-x/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 16:43:24 2007 +X-DSPAM-Confidence: 0.5937 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38886 + +Author: mmmay@indiana.edu +Date: 2007-11-29 16:36:51 -0500 (Thu, 29 Nov 2007) +New Revision: 38886 + +Modified: +reports/branches/sakai_2-5-x/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java +Log: +svn merge -r 38864:38865 https://source.sakaiproject.org/svn/reports/trunk +U reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/reports mmmay$ svn log -r 38864:38865 https://source.sakaiproject.org/svn/reports/trunk +------------------------------------------------------------------------ +r38865 | john.ellis@rsmart.com | 2007-11-29 12:28:23 -0500 (Thu, 29 Nov 2007) | 3 lines + +SAK-12303 +changed upgrade24 to default to false + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Nov 29 16:43:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 16:43:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 16:43:09 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by score.mail.umich.edu () with ESMTP id lATLh9Qg018852; + Thu, 29 Nov 2007 16:43:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 474F3266.15CC6.21570 ; + 29 Nov 2007 16:43:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A8B978E0B9; + Thu, 29 Nov 2007 21:42:53 +0000 (GMT) +Message-ID: <200711292136.lATLaOgN006139@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 630 + for ; + Thu, 29 Nov 2007 21:42:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 077702CE69 + for ; Thu, 29 Nov 2007 21:42:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLaORr006141 + for ; Thu, 29 Nov 2007 16:36:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLaOgN006139 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:36:24 -0500 +Date: Thu, 29 Nov 2007 16:36:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38885 - in oncourse/branches/assignment_post-2-4: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool assignment-tool/tool assignment-tool/tool/src assignment-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 16:43:09 2007 +X-DSPAM-Confidence: 0.8463 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38885 + +Author: wagnermr@iupui.edu +Date: 2007-11-29 16:36:22 -0500 (Thu, 29 Nov 2007) +New Revision: 38885 + +Added: +oncourse/branches/assignment_post-2-4/assignment-tool/ +oncourse/branches/assignment_post-2-4/assignment-tool/tool/ +oncourse/branches/assignment_post-2-4/assignment-tool/tool/src/ +oncourse/branches/assignment_post-2-4/assignment-tool/tool/src/bundle/ +oncourse/branches/assignment_post-2-4/assignment-tool/tool/src/bundle/assignment.properties +Removed: +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +Modified: +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +Update oncourse overlay for new post-2-4 assignments + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 29 16:37:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 16:37:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 16:37:38 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by sleepers.mail.umich.edu () with ESMTP id lATLbbVA015199; + Thu, 29 Nov 2007 16:37:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 474F311B.B71C6.21780 ; + 29 Nov 2007 16:37:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71AB28E000; + Thu, 29 Nov 2007 21:37:25 +0000 (GMT) +Message-ID: <200711292131.lATLV1UN006118@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 382 + for ; + Thu, 29 Nov 2007 21:37:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4E38E2CE69 + for ; Thu, 29 Nov 2007 21:37:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLV1kD006120 + for ; Thu, 29 Nov 2007 16:31:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLV1UN006118 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:31:01 -0500 +Date: Thu, 29 Nov 2007 16:31:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38884 - in rwiki/branches/sakai_2-5-x/rwiki-impl: . impl impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 16:37:38 2007 +X-DSPAM-Confidence: 0.6565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38884 + +Author: mmmay@indiana.edu +Date: 2007-11-29 16:30:59 -0500 (Thu, 29 Nov 2007) +New Revision: 38884 + +Modified: +rwiki/branches/sakai_2-5-x/rwiki-impl/.classpath +rwiki/branches/sakai_2-5-x/rwiki-impl/impl/pom.xml +rwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java +rwiki/branches/sakai_2-5-x/rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml +Log: +svn merge -r 38525:38526 https://source.sakaiproject.org/svn/rwiki/trunk +U rwiki-impl/.classpath +U rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java +U rwiki-impl/impl/pom.xml +U rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml +in-143-196:~/java/2-5/sakai_2-5-x/rwiki mmmay$ svn log -r 38525:38526 https://source.sakaiproject.org/svn/rwiki/trunk +------------------------------------------------------------------------ +r38526 | ian@caret.cam.ac.uk | 2007-11-21 07:47:29 -0500 (Wed, 21 Nov 2007) | 4 lines + +SAK-10955 +Applied Patch, thank you Beth + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 16:17:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 16:17:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 16:17:13 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by jacknife.mail.umich.edu () with ESMTP id lATLHBqP011771; + Thu, 29 Nov 2007 16:17:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 474F2C51.75420.17195 ; + 29 Nov 2007 16:17:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5729C8E009; + Thu, 29 Nov 2007 21:17:03 +0000 (GMT) +Message-ID: <200711292110.lATLAf1h005995@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 61 + for ; + Thu, 29 Nov 2007 21:16:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A34EC2CE4E + for ; Thu, 29 Nov 2007 21:16:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLAgxD005997 + for ; Thu, 29 Nov 2007 16:10:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLAf1h005995 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:10:41 -0500 +Date: Thu, 29 Nov 2007 16:10:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38883 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 16:17:13 2007 +X-DSPAM-Confidence: 0.8460 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38883 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 16:10:39 -0500 (Thu, 29 Nov 2007) +New Revision: 38883 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Revving up util again. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 16:14:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 16:14:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 16:14:20 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by chaos.mail.umich.edu () with ESMTP id lATLEJS0003631; + Thu, 29 Nov 2007 16:14:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 474F2BA4.A291F.10536 ; + 29 Nov 2007 16:14:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EEC2D8E005; + Thu, 29 Nov 2007 21:14:07 +0000 (GMT) +Message-ID: <200711292107.lATL7i4v005983@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619 + for ; + Thu, 29 Nov 2007 21:13:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EC5AA2CE4B + for ; Thu, 29 Nov 2007 21:13:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATL7iFI005985 + for ; Thu, 29 Nov 2007 16:07:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATL7i4v005983 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:07:44 -0500 +Date: Thu, 29 Nov 2007 16:07:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38882 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 16:14:20 2007 +X-DSPAM-Confidence: 0.9942 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38882 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 16:07:41 -0500 (Thu, 29 Nov 2007) +New Revision: 38882 + +Modified: +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java +Log: +svn merge -r 31644:31675 https://source.sakaiproject.org/svn/util/trunk/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java +U ResourceLoader.java + +svn log -r 31644:31675 https://source.sakaiproject.org/svn/util/trunk/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java +------------------------------------------------------------------------ +r31645 | bkirschn@umich.edu | 2007-06-18 17:12:48 -0400 (Mon, 18 Jun 2007) | 1 line + +SAK-10392 new ResourceLoader( User, ... ) constructor +------------------------------------------------------------------------ +r31655 | bkirschn@umich.edu | 2007-06-19 09:13:57 -0400 (Tue, 19 Jun 2007) | 1 line + +SAK-10392 pull out new constructor until build supports +------------------------------------------------------------------------ +r31661 | bkirschn@umich.edu | 2007-06-19 10:51:28 -0400 (Tue, 19 Jun 2007) | 1 line + +SAK-10392 revised new constructor with userId +------------------------------------------------------------------------ +r31664 | bkirschn@umich.edu | 2007-06-19 11:28:33 -0400 (Tue, 19 Jun 2007) | 1 line + +SAK-10392 setBaseName() is required. Doh! +------------------------------------------------------------------------ +r31675 | bkirschn@umich.edu | 2007-06-19 16:39:24 -0400 (Tue, 19 Jun 2007) | 1 line + +SAK-10392 surface getLocale( String userId ) method +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 29 16:12:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 16:12:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 16:12:51 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id lATLCpJq021749; + Thu, 29 Nov 2007 16:12:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474F2B4B.DA7BE.10077 ; + 29 Nov 2007 16:12:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 987E48E000; + Thu, 29 Nov 2007 21:12:40 +0000 (GMT) +Message-ID: <200711292106.lATL6HiV005971@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 491 + for ; + Thu, 29 Nov 2007 21:12:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3334B2CE4B + for ; Thu, 29 Nov 2007 21:12:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATL6Hro005973 + for ; Thu, 29 Nov 2007 16:06:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATL6HiV005971 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:06:17 -0500 +Date: Thu, 29 Nov 2007 16:06:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38881 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/params +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 16:12:51 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38881 + +Author: mmmay@indiana.edu +Date: 2007-11-29 16:06:15 -0500 (Thu, 29 Nov 2007) +New Revision: 38881 + +Modified: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java +Log: +svn merge -r 38521:38523 https://source.sakaiproject.org/svn/polls/trunk +U tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java +in-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38521:38523 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r38522 | david.horwitz@uct.ac.za | 2007-11-21 05:14:25 -0500 (Wed, 21 Nov 2007) | 1 line + +SAK-11882 remove single p tags +------------------------------------------------------------------------ +r38523 | david.horwitz@uct.ac.za | 2007-11-21 05:41:48 -0500 (Wed, 21 Nov 2007) | 1 line + +SAK-11882 now removes trainling

$nbsp;

's too +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 29 15:47:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 15:47:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 15:47:21 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id lATKlHQw029491; + Thu, 29 Nov 2007 15:47:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 474F254E.C4E85.1024 ; + 29 Nov 2007 15:47:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 99FF18DFA6; + Thu, 29 Nov 2007 20:47:19 +0000 (GMT) +Message-ID: <200711292040.lATKef5X005943@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483 + for ; + Thu, 29 Nov 2007 20:47:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 785512C547 + for ; Thu, 29 Nov 2007 20:46:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKefu9005945 + for ; Thu, 29 Nov 2007 15:40:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKef5X005943 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:40:41 -0500 +Date: Thu, 29 Nov 2007 15:40:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38880 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 15:47:21 2007 +X-DSPAM-Confidence: 0.7011 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38880 + +Author: mmmay@indiana.edu +Date: 2007-11-29 15:40:40 -0500 (Thu, 29 Nov 2007) +New Revision: 38880 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -r 38504:38506 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn logs -r 38504:38506 https://source.sakaiproject.org/svn/reference/trunk +Unknown command: 'logs' +Type 'svn help' for usage. +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 38504:38506 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r38505 | jimeng@umich.edu | 2007-11-20 13:57:15 -0500 (Tue, 20 Nov 2007) | 3 lines + +SAK-11908 +One new column (BINARY_ENTITY) was overlooked when adding columns to the content_resource_delete table + +------------------------------------------------------------------------ +r38506 | jimeng@umich.edu | 2007-11-20 14:03:40 -0500 (Tue, 20 Nov 2007) | 3 lines + +SAK-11908 +Also need oracle conversion to add BINARY_ENTITY column to content_resource_delete + +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 29 15:32:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 15:32:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 15:32:58 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by fan.mail.umich.edu () with ESMTP id lATKWvOI021298; + Thu, 29 Nov 2007 15:32:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474F21F2.5329C.12982 ; + 29 Nov 2007 15:32:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4B13A8DDA7; + Thu, 29 Nov 2007 20:33:02 +0000 (GMT) +Message-ID: <200711292026.lATKQMCM005919@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 409 + for ; + Thu, 29 Nov 2007 20:32:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4587A2CC5B + for ; Thu, 29 Nov 2007 20:32:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKQMo5005921 + for ; Thu, 29 Nov 2007 15:26:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKQMCM005919 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:26:22 -0500 +Date: Thu, 29 Nov 2007 15:26:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38879 - citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 15:32:58 2007 +X-DSPAM-Confidence: 0.6566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38879 + +Author: mmmay@indiana.edu +Date: 2007-11-29 15:26:21 -0500 (Thu, 29 Nov 2007) +New Revision: 38879 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +Log: +svn merge -r 38500:38501 https://source.sakaiproject.org/svn/citations/trunkU citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +in-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38500:38501 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38501 | ssmail@indiana.edu | 2007-11-20 13:27:22 -0500 (Tue, 20 Nov 2007) | 1 line + +SAK-12248: Added a catch block for Exception in doBeginSearch() - an alert is displayed and the page is properly re-rendered +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Nov 29 15:26:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 15:26:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 15:26:53 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lATKQqm9031281; + Thu, 29 Nov 2007 15:26:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 474F2082.899C7.26474 ; + 29 Nov 2007 15:26:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BB9E38DDA7; + Thu, 29 Nov 2007 20:26:55 +0000 (GMT) +Message-ID: <200711292020.lATKKFbP005893@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120 + for ; + Thu, 29 Nov 2007 20:26:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA5C32CC49 + for ; Thu, 29 Nov 2007 20:26:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKKFGQ005895 + for ; Thu, 29 Nov 2007 15:20:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKKFbP005893 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:20:15 -0500 +Date: Thu, 29 Nov 2007 15:20:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38878 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 15:26:53 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38878 + +Author: cwen@iupui.edu +Date: 2007-11-29 15:20:14 -0500 (Thu, 29 Nov 2007) +New Revision: 38878 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 15:25:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 15:25:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 15:25:07 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by casino.mail.umich.edu () with ESMTP id lATKP6UM003621; + Thu, 29 Nov 2007 15:25:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474F2017.753ED.19394 ; + 29 Nov 2007 15:24:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E426164011; + Thu, 29 Nov 2007 20:25:00 +0000 (GMT) +Message-ID: <200711292018.lATKILM8005869@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 254 + for ; + Thu, 29 Nov 2007 20:24:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 466C82CC35 + for ; Thu, 29 Nov 2007 20:24:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKILx9005871 + for ; Thu, 29 Nov 2007 15:18:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKILM8005869 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:18:21 -0500 +Date: Thu, 29 Nov 2007 15:18:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38877 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 15:25:07 2007 +X-DSPAM-Confidence: 0.8460 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38877 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 15:18:20 -0500 (Thu, 29 Nov 2007) +New Revision: 38877 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Revving up entity too + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 29 15:12:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 15:12:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 15:12:06 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by faithful.mail.umich.edu () with ESMTP id lATKC6Ot016577; + Thu, 29 Nov 2007 15:12:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474F1D0E.934DF.6216 ; + 29 Nov 2007 15:12:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 456288DE3F; + Thu, 29 Nov 2007 20:12:09 +0000 (GMT) +Message-ID: <200711292005.lATK5Vwf005856@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 495 + for ; + Thu, 29 Nov 2007 20:11:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4A2272CC38 + for ; Thu, 29 Nov 2007 20:11:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATK5VWQ005858 + for ; Thu, 29 Nov 2007 15:05:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATK5Vwf005856 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:05:31 -0500 +Date: Thu, 29 Nov 2007 15:05:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38876 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 15:12:06 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38876 + +Author: zqian@umich.edu +Date: 2007-11-29 15:05:30 -0500 (Thu, 29 Nov 2007) +New Revision: 38876 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-12279:Group edit tools & organize tool links + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 15:10:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 15:10:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 15:10:56 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lATKAtgR025536; + Thu, 29 Nov 2007 15:10:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474F1CC3.22852.998 ; + 29 Nov 2007 15:10:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EBE388DF26; + Thu, 29 Nov 2007 20:10:55 +0000 (GMT) +Message-ID: <200711292004.lATK4Hhk005840@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617 + for ; + Thu, 29 Nov 2007 20:10:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CB8242CC3C + for ; Thu, 29 Nov 2007 20:10:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATK4Hnd005842 + for ; Thu, 29 Nov 2007 15:04:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATK4Hhk005840 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:04:17 -0500 +Date: Thu, 29 Nov 2007 15:04:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38875 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 15:10:56 2007 +X-DSPAM-Confidence: 0.8433 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38875 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 15:04:16 -0500 (Thu, 29 Nov 2007) +New Revision: 38875 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Revving up util + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Nov 29 14:42:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 14:42:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 14:42:25 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by brazil.mail.umich.edu () with ESMTP id lATJgLTd030511; + Thu, 29 Nov 2007 14:42:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 474F1617.CA1F7.21844 ; + 29 Nov 2007 14:42:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A2D0D8C5FA; + Thu, 29 Nov 2007 19:42:07 +0000 (GMT) +Message-ID: <200711291935.lATJZl4x005764@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 772 + for ; + Thu, 29 Nov 2007 19:41:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BCC05236B9 + for ; Thu, 29 Nov 2007 19:41:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATJZlJB005766 + for ; Thu, 29 Nov 2007 14:35:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATJZl4x005764 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 14:35:47 -0500 +Date: Thu, 29 Nov 2007 14:35:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38874 - gradebook/trunk/app/ui/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 14:42:25 2007 +X-DSPAM-Confidence: 0.8481 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38874 + +Author: cwen@iupui.edu +Date: 2007-11-29 14:35:46 -0500 (Thu, 29 Nov 2007) +New Revision: 38874 + +Modified: +gradebook/trunk/app/ui/src/webapp/gradebookSetup.jsp +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12305 +SAK-12305 +=> +get rid of "I want to enter grades +that do not adhere to the standard grade entry type" + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Thu Nov 29 14:30:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 14:30:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 14:30:17 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lATJUFtA008085; + Thu, 29 Nov 2007 14:30:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474F133D.3A139.25776 ; + 29 Nov 2007 14:30:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 480338DC2C; + Thu, 29 Nov 2007 19:30:03 +0000 (GMT) +Message-ID: <200711291923.lATJNUYf005741@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 596 + for ; + Thu, 29 Nov 2007 19:29:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 941AC24E17 + for ; Thu, 29 Nov 2007 19:29:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATJNUje005743 + for ; Thu, 29 Nov 2007 14:23:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATJNUYf005741 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 14:23:30 -0500 +Date: Thu, 29 Nov 2007 14:23:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38873 - in assignment/branches/oncourse_2-4-x: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 14:30:17 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38873 + +Author: cwen@iupui.edu +Date: 2007-11-29 14:23:28 -0500 (Thu, 29 Nov 2007) +New Revision: 38873 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r34392:34393 https://source.sakaiproject.org/svn/assignment/trunk, svn merge -r34692:34693 https://source.sakaiproject.org/svn/assignment/trunk, svn merge -r34840:34841 https://source.sakaiproject.org/svn/assignment/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 14:11:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 14:11:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 14:11:43 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id lATJBgin016253; + Thu, 29 Nov 2007 14:11:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474F0EC9.34F1B.16681 ; + 29 Nov 2007 14:11:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 848228DD40; + Thu, 29 Nov 2007 19:11:01 +0000 (GMT) +Message-ID: <200711291904.lATJ4V1c005717@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 902 + for ; + Thu, 29 Nov 2007 19:10:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F0D672CBED + for ; Thu, 29 Nov 2007 19:10:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATJ4Vfj005719 + for ; Thu, 29 Nov 2007 14:04:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATJ4V1c005717 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 14:04:31 -0500 +Date: Thu, 29 Nov 2007 14:04:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38872 - authz/trunk/authz-impl/impl/src/sql/hsqldb +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 14:11:43 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38872 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 14:04:29 -0500 (Thu, 29 Nov 2007) +New Revision: 38872 + +Modified: +authz/trunk/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql +Log: +SAK-12272 +Needed to move one of the statements down to the next line for hsql. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 29 13:24:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 13:24:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 13:24:43 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id lATIOggE007620; + Thu, 29 Nov 2007 13:24:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 474F03DF.7C93A.20853 ; + 29 Nov 2007 13:24:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BA3B87B63A; + Thu, 29 Nov 2007 18:16:04 +0000 (GMT) +Message-ID: <200711291755.lATHtKL8005622@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 115 + for ; + Thu, 29 Nov 2007 18:00:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 42EB22CBCC + for ; Thu, 29 Nov 2007 18:01:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHtK6B005624 + for ; Thu, 29 Nov 2007 12:55:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHtKL8005622 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:55:20 -0500 +Date: Thu, 29 Nov 2007 12:55:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38871 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 13:24:43 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38871 + +Author: dlhaines@umich.edu +Date: 2007-11-29 12:55:18 -0500 (Thu, 29 Nov 2007) +New Revision: 38871 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: incorporate latest assignment conversion revision, add acknowledgements to footer. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 29 12:59:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 12:59:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 12:59:59 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id lATHxwGk017494; + Thu, 29 Nov 2007 12:59:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474EFDFF.110C.20587 ; + 29 Nov 2007 12:59:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5DD0D8DC13; + Thu, 29 Nov 2007 17:59:38 +0000 (GMT) +Message-ID: <200711291753.lATHr0Qk005599@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198 + for ; + Thu, 29 Nov 2007 17:59:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 806D12CBCC + for ; Thu, 29 Nov 2007 17:59:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHr0CN005601 + for ; Thu, 29 Nov 2007 12:53:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHr0Qk005599 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:53:00 -0500 +Date: Thu, 29 Nov 2007 12:53:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38870 - ctools/branches/ctools_2-4/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 12:59:59 2007 +X-DSPAM-Confidence: 0.8499 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38870 + +Author: dlhaines@umich.edu +Date: 2007-11-29 12:52:59 -0500 (Thu, 29 Nov 2007) +New Revision: 38870 + +Modified: +ctools/branches/ctools_2-4/ctools-reference/config/sakai.properties +Log: +CTools: add Acknowledgments to CTools footer. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 29 12:58:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 12:58:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 12:58:53 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id lATHwqOt016902; + Thu, 29 Nov 2007 12:58:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 474EFDD7.453A6.10486 ; + 29 Nov 2007 12:58:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8CD1653A37; + Thu, 29 Nov 2007 17:58:55 +0000 (GMT) +Message-ID: <200711291752.lATHqMsQ005587@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 536 + for ; + Thu, 29 Nov 2007 17:58:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1134C2CBCC + for ; Thu, 29 Nov 2007 17:58:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHqM4h005589 + for ; Thu, 29 Nov 2007 12:52:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHqMsQ005587 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:52:22 -0500 +Date: Thu, 29 Nov 2007 12:52:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38869 - assignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 12:58:53 2007 +X-DSPAM-Confidence: 0.8496 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38869 + +Author: zqian@umich.edu +Date: 2007-11-29 12:52:21 -0500 (Thu, 29 Nov 2007) +New Revision: 38869 + +Modified: +assignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +Log: +should put the commit inside the right place, instead of in the finally block + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 29 12:56:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 12:56:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 12:56:01 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id lATHu0an015418; + Thu, 29 Nov 2007 12:56:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 474EFD2B.2EF7F.1042 ; + 29 Nov 2007 12:55:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3D468DC14; + Thu, 29 Nov 2007 17:55:53 +0000 (GMT) +Message-ID: <200711291749.lATHn9PO005561@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 602 + for ; + Thu, 29 Nov 2007 17:55:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EE4432CBCE + for ; Thu, 29 Nov 2007 17:55:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHn99P005563 + for ; Thu, 29 Nov 2007 12:49:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHn9PO005561 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:49:09 -0500 +Date: Thu, 29 Nov 2007 12:49:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38868 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 12:56:01 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38868 + +Author: dlhaines@umich.edu +Date: 2007-11-29 12:49:08 -0500 (Thu, 29 Nov 2007) +New Revision: 38868 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: add fix for assignment conversion script to deal with commit. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 29 12:52:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 12:52:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 12:52:23 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by panther.mail.umich.edu () with ESMTP id lATHqMdX015795; + Thu, 29 Nov 2007 12:52:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 474EFC51.18D2C.3231 ; + 29 Nov 2007 12:52:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2000E525E5; + Thu, 29 Nov 2007 17:52:15 +0000 (GMT) +Message-ID: <200711291745.lATHjsrt005549@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 933 + for ; + Thu, 29 Nov 2007 17:52:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7790C2CBB1 + for ; Thu, 29 Nov 2007 17:52:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHjsH1005551 + for ; Thu, 29 Nov 2007 12:45:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHjsrt005549 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:45:54 -0500 +Date: Thu, 29 Nov 2007 12:45:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38867 - assignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 12:52:23 2007 +X-DSPAM-Confidence: 0.8483 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38867 + +Author: zqian@umich.edu +Date: 2007-11-29 12:45:53 -0500 (Thu, 29 Nov 2007) +New Revision: 38867 + +Modified: +assignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +Log: +commit the connection to avoid the 'set transaction' problem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 29 12:49:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 12:49:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 12:49:55 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by mission.mail.umich.edu () with ESMTP id lATHnsZn011188; + Thu, 29 Nov 2007 12:49:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 474EFBB6.7946C.3180 ; + 29 Nov 2007 12:49:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C94FB525E5; + Thu, 29 Nov 2007 17:49:39 +0000 (GMT) +Message-ID: <200711291743.lATHhHs7005537@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 160 + for ; + Thu, 29 Nov 2007 17:49:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4D77F2CBB1 + for ; Thu, 29 Nov 2007 17:49:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHhHq2005539 + for ; Thu, 29 Nov 2007 12:43:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHhHs7005537 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:43:17 -0500 +Date: Thu, 29 Nov 2007 12:43:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38866 - assignment/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 12:49:55 2007 +X-DSPAM-Confidence: 0.7600 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38866 + +Author: zqian@umich.edu +Date: 2007-11-29 12:43:15 -0500 (Thu, 29 Nov 2007) +New Revision: 38866 + +Added: +assignment/branches/post-2-4-solution1/ +Log: +This is short-life brach only for debugging conversion fixes + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Thu Nov 29 12:35:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 12:35:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 12:35:26 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by chaos.mail.umich.edu () with ESMTP id lATHZPVB032426; + Thu, 29 Nov 2007 12:35:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474EF857.9814B.8455 ; + 29 Nov 2007 12:35:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BBBB08DC00; + Thu, 29 Nov 2007 17:35:15 +0000 (GMT) +Message-ID: <200711291728.lATHSStf005479@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 900 + for ; + Thu, 29 Nov 2007 17:34:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 763662CB8D + for ; Thu, 29 Nov 2007 17:34:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHSTnP005481 + for ; Thu, 29 Nov 2007 12:28:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHSStf005479 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:28:28 -0500 +Date: Thu, 29 Nov 2007 12:28:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r38865 - reports/trunk/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 12:35:26 2007 +X-DSPAM-Confidence: 0.7558 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38865 + +Author: john.ellis@rsmart.com +Date: 2007-11-29 12:28:23 -0500 (Thu, 29 Nov 2007) +New Revision: 38865 + +Modified: +reports/trunk/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java +Log: +SAK-12303 +changed upgrade24 to default to false + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:48:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:48:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:48:28 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lATGmRwa006094; + Thu, 29 Nov 2007 11:48:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 474EED55.F171A.5601 ; + 29 Nov 2007 11:48:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2CD2E8DBB6; + Thu, 29 Nov 2007 16:48:18 +0000 (GMT) +Message-ID: <200711291641.lATGfc17005328@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 200 + for ; + Thu, 29 Nov 2007 16:47:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4BAFF2CB19 + for ; Thu, 29 Nov 2007 16:47:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGfcHB005330 + for ; Thu, 29 Nov 2007 11:41:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGfc17005328 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:41:38 -0500 +Date: Thu, 29 Nov 2007 11:41:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38864 - oncourse/branches/oncourse_OPC_122007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:48:28 2007 +X-DSPAM-Confidence: 0.8480 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38864 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 11:41:37 -0500 (Thu, 29 Nov 2007) +New Revision: 38864 + +Modified: +oncourse/branches/oncourse_OPC_122007/ +oncourse/branches/oncourse_OPC_122007/.externals +Log: +Fixing up externals to include assignments post 2.4, SAK-12114, SAK-12073, SAK-12176, SAK-12160 to test opc deliverables + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:43:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:43:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:43:11 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id lATGhACg013856; + Thu, 29 Nov 2007 11:43:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474EEC05.561CE.20811 ; + 29 Nov 2007 11:42:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BA33179889; + Thu, 29 Nov 2007 16:42:42 +0000 (GMT) +Message-ID: <200711291636.lATGaKhx005280@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 39 + for ; + Thu, 29 Nov 2007 16:42:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4AED32CB0D + for ; Thu, 29 Nov 2007 16:42:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGaKHd005282 + for ; Thu, 29 Nov 2007 11:36:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGaKhx005280 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:36:20 -0500 +Date: Thu, 29 Nov 2007 11:36:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38863 - announcement/branches/oncourse_opc_122007/announcement-tool/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:43:11 2007 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38863 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 11:36:19 -0500 (Thu, 29 Nov 2007) +New Revision: 38863 + +Modified: +announcement/branches/oncourse_opc_122007/announcement-tool/tool/project.xml +Log: +SAK-12160 +Also need to add a maven1 dependency for this + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:40:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:40:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:40:23 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by chaos.mail.umich.edu () with ESMTP id lATGeMLi032389; + Thu, 29 Nov 2007 11:40:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474EEB70.CD8BE.23483 ; + 29 Nov 2007 11:40:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8380379889; + Thu, 29 Nov 2007 16:40:14 +0000 (GMT) +Message-ID: <200711291633.lATGXtNB005266@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0 + for ; + Thu, 29 Nov 2007 16:40:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 324442CB0D + for ; Thu, 29 Nov 2007 16:40:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGXtQk005268 + for ; Thu, 29 Nov 2007 11:33:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGXtNB005266 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:33:55 -0500 +Date: Thu, 29 Nov 2007 11:33:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38862 - in announcement/branches/oncourse_opc_122007/announcement-tool/tool: . src/bundle src/java/org/sakaiproject/announcement/tool src/webapp/vm/announcement +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:40:23 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38862 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 11:33:53 -0500 (Thu, 29 Nov 2007) +New Revision: 38862 + +Modified: +announcement/branches/oncourse_opc_122007/announcement-tool/tool/pom.xml +announcement/branches/oncourse_opc_122007/announcement-tool/tool/src/bundle/announcement.properties +announcement/branches/oncourse_opc_122007/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java +announcement/branches/oncourse_opc_122007/announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-metadata.vm +Log: +svn merge -c 37682 https://source.sakaiproject.org/svn/announcement/trunk +U announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java +U announcement-tool/tool/src/bundle/announcement.properties +U announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-metadata.vm +U announcement-tool/tool/pom.xml + +svn log -r 37682 https://source.sakaiproject.org/svn/announcement/trunk +------------------------------------------------------------------------ +r37682 | gjthomas@iupui.edu | 2007-11-01 11:19:36 -0400 (Thu, 01 Nov 2007) | 3 lines + +SAK-12160 +Adds a direct link back to the associated assignment if certain criteria exists. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:37:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:37:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:37:34 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by godsend.mail.umich.edu () with ESMTP id lATGbXao008172; + Thu, 29 Nov 2007 11:37:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474EEAC8.C60E0.15765 ; + 29 Nov 2007 11:37:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 844288DABB; + Thu, 29 Nov 2007 16:37:27 +0000 (GMT) +Message-ID: <200711291631.lATGV52L005248@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712 + for ; + Thu, 29 Nov 2007 16:37:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3CC482CB0D + for ; Thu, 29 Nov 2007 16:37:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGV5q3005250 + for ; Thu, 29 Nov 2007 11:31:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGV52L005248 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:31:05 -0500 +Date: Thu, 29 Nov 2007 11:31:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38861 - announcement/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:37:34 2007 +X-DSPAM-Confidence: 0.7601 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38861 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 11:31:04 -0500 (Thu, 29 Nov 2007) +New Revision: 38861 + +Added: +announcement/branches/oncourse_opc_122007/ +Log: +Creating a new branch for opc deliverables, created from sakai_2-4-x @r31545 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:35:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:35:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:35:37 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by panther.mail.umich.edu () with ESMTP id lATGZatf026690; + Thu, 29 Nov 2007 11:35:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 474EEA52.DAD20.10167 ; + 29 Nov 2007 11:35:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4562E8DB92; + Thu, 29 Nov 2007 16:35:19 +0000 (GMT) +Message-ID: <200711291629.lATGT0NY005230@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 9 + for ; + Thu, 29 Nov 2007 16:35:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8B3DA2CB0D + for ; Thu, 29 Nov 2007 16:35:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGT1RN005232 + for ; Thu, 29 Nov 2007 11:29:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGT0NY005230 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:29:01 -0500 +Date: Thu, 29 Nov 2007 11:29:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38860 - in calendar/branches/oncourse_opc_122007/calendar-tool/tool/src: bundle java/org/sakaiproject/calendar/tool webapp/vm/calendar +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:35:37 2007 +X-DSPAM-Confidence: 0.7007 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38860 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 11:28:59 -0500 (Thu, 29 Nov 2007) +New Revision: 38860 + +Modified: +calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/bundle/calendar.properties +calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm +Log: +svn merge -c 37681 https://source.sakaiproject.org/svn/calendar/trunk +U calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +U calendar-tool/tool/src/bundle/calendar.properties +U calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm + +svn log -r 37681 https://source.sakaiproject.org/svn/calendar/trunk +------------------------------------------------------------------------ +r37681 | gjthomas@iupui.edu | 2007-11-01 10:52:56 -0400 (Thu, 01 Nov 2007) | 3 lines + +SAK-12160 +Adds a direct link back to the associated assignment if certain criteria exists. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:32:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:32:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:32:27 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by chaos.mail.umich.edu () with ESMTP id lATGWQtg026907; + Thu, 29 Nov 2007 11:32:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474EE991.4D96.4043 ; + 29 Nov 2007 11:32:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5C4648DB75; + Thu, 29 Nov 2007 16:32:13 +0000 (GMT) +Message-ID: <200711291625.lATGPprR005218@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 231 + for ; + Thu, 29 Nov 2007 16:32:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 628AE2CB0D + for ; Thu, 29 Nov 2007 16:32:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGPp3x005220 + for ; Thu, 29 Nov 2007 11:25:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGPprR005218 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:25:51 -0500 +Date: Thu, 29 Nov 2007 11:25:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38859 - calendar/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:32:27 2007 +X-DSPAM-Confidence: 0.6952 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38859 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 11:25:50 -0500 (Thu, 29 Nov 2007) +New Revision: 38859 + +Added: +calendar/branches/oncourse_opc_122007/ +Log: +Creating a new branch for opc deliverables, created from oncourse_2-4-x @r32689 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:27:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:27:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:27:20 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by chaos.mail.umich.edu () with ESMTP id lATGRJiE023288; + Thu, 29 Nov 2007 11:27:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474EE862.474E2.2949 ; + 29 Nov 2007 11:27:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BCFA48DB63; + Thu, 29 Nov 2007 16:27:10 +0000 (GMT) +Message-ID: <200711291620.lATGKkxQ005184@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 977 + for ; + Thu, 29 Nov 2007 16:26:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 51AD52CAE6 + for ; Thu, 29 Nov 2007 16:26:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGKkvx005186 + for ; Thu, 29 Nov 2007 11:20:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGKkxQ005184 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:20:46 -0500 +Date: Thu, 29 Nov 2007 11:20:46 -0500 +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [svn] revprop propchange - r37681 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:27:20 2007 +X-DSPAM-Confidence: 0.8285 +X-DSPAM-Probability: 0.0000 + +Author: chmaurer@iupui.edu +Revision: 37681 +Property Name: svn:log + +New Property Value: +SAK-12160 +Adds a direct link back to the associated assignment if certain criteria exists. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 11:20:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 11:20:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 11:20:58 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lATGKuAm028636; + Thu, 29 Nov 2007 11:20:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474EE6D7.61BC.11969 ; + 29 Nov 2007 11:20:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B4FB5767B0; + Thu, 29 Nov 2007 16:20:34 +0000 (GMT) +Message-ID: <200711291614.lATGEBub005146@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 432 + for ; + Thu, 29 Nov 2007 16:20:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 569652CB0A + for ; Thu, 29 Nov 2007 16:20:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGEBTu005148 + for ; Thu, 29 Nov 2007 11:14:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGEBub005146 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:14:11 -0500 +Date: Thu, 29 Nov 2007 11:14:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38858 - in msgcntr/branches/oncourse_opc_122007: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-api/src/java/org/sakaiproject/api/app/messageforums messageforums-api/src/java/org/sakaiproject/api/app/messageforums/ui messageforums-app/src/java/org/sakaiproject/tool/messageforums messageforums-app/src/sql/mysql messageforums-app/src/sql/oracle messageforums-app/src/webapp/jsp messageforums-app/src/webapp/jsp/privateMsg messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 11:20:58 2007 +X-DSPAM-Confidence: 0.8531 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38858 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 11:14:07 -0500 (Thu, 29 Nov 2007) +New Revision: 38858 + +Added: +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/sql/mysql/SAK-12176-mysql.sql +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/sql/oracle/SAK-12176-oracle.sql +Modified: +msgcntr/branches/oncourse_opc_122007/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +msgcntr/branches/oncourse_opc_122007/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/Area.java +msgcntr/branches/oncourse_opc_122007/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/DefaultPermissionsManager.java +msgcntr/branches/oncourse_opc_122007/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/ui/PrivateMessageManager.java +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/compose.jsp +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgSettings.jsp +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/pvtMsgForward.jsp +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/pvtMsgReply.jsp +msgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp +msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java +msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DefaultPermissionsManagerImpl.java +msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java +msgcntr/branches/oncourse_opc_122007/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/Area.hbm.xml +msgcntr/branches/oncourse_opc_122007/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/AreaImpl.java +Log: +svn merge -c 38119 https://source.sakaiproject.org/svn/msgcntr/trunk +C messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java +U messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DefaultPermissionsManagerImpl.java +U messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java +U messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/AreaImpl.java +U messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/Area.hbm.xml +U messageforums-api/src/java/org/sakaiproject/api/app/messageforums/DefaultPermissionsManager.java +U messageforums-api/src/java/org/sakaiproject/api/app/messageforums/Area.java +U messageforums-api/src/java/org/sakaiproject/api/app/messageforums/ui/PrivateMessageManager.java +U messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +A messageforums-app/src/sql/mysql/SAK-12176-mysql.sql +A messageforums-app/src/sql/oracle/SAK-12176-oracle.sql +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +U messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp +U messageforums-app/src/webapp/jsp/privateMsg/pvtMsgSettings.jsp +U messageforums-app/src/webapp/jsp/pvtMsgReply.jsp +U messageforums-app/src/webapp/jsp/pvtMsgForward.jsp +U messageforums-app/src/webapp/jsp/compose.jsp + +svn merge -c 38136 https://source.sakaiproject.org/svn/msgcntr/trunk +G messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java + +svn log -r 38119 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r38119 | wang58@iupui.edu | 2007-11-12 11:36:45 -0500 (Mon, 12 Nov 2007) | 1 line + +SAK-12176 Messages--send cc to recipients' email address(es). +------------------------------------------------------------------------ + +svn log -r 38136 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r38136 | wang58@iupui.edu | 2007-11-13 13:24:54 -0500 (Tue, 13 Nov 2007) | 1 line + +SAK-12176 Messages--send cc to recipients' email address(es) +------------------------------------------------------------------------ + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 10:54:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 10:54:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 10:54:46 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by mission.mail.umich.edu () with ESMTP id lATFsjTF027478; + Thu, 29 Nov 2007 10:54:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 474EE0BD.D26B7.1948 ; + 29 Nov 2007 10:54:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 961C260E4E; + Thu, 29 Nov 2007 15:47:33 +0000 (GMT) +Message-ID: <200711291548.lATFmBj8005044@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692 + for ; + Thu, 29 Nov 2007 15:47:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 44EA22CB05 + for ; Thu, 29 Nov 2007 15:54:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATFmBHT005046 + for ; Thu, 29 Nov 2007 10:48:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATFmBj8005044 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 10:48:11 -0500 +Date: Thu, 29 Nov 2007 10:48:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38856 - in gradebook/branches/oncourse_opc_122007/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 10:54:46 2007 +X-DSPAM-Confidence: 0.8515 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38856 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 10:48:09 -0500 (Thu, 29 Nov 2007) +New Revision: 38856 + +Added: +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/js/multiItemAdd.js +Modified: +gradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/addAssignment.jsp +gradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/assignmentEditing.jspf +Log: +svn merge -c 37748 https://source.sakaiproject.org/svn/gradebook/trunk +C app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +A app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java +C app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +A app/ui/src/webapp/inc/bulkNewItems.jspf +U app/ui/src/webapp/inc/assignmentEditing.jspf +A app/ui/src/webapp/js/multiItemAdd.js +U app/ui/src/webapp/addAssignment.jsp + +svn log -r 37748 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37748 | josrodri@iupui.edu | 2007-11-05 15:05:34 -0500 (Mon, 05 Nov 2007) | 1 line + +SAK-12114 (local issue ONC-2): allow multiple gradebook item additions at one time. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Thu Nov 29 10:03:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 10:03:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 10:03:06 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by jacknife.mail.umich.edu () with ESMTP id lATF33LS028674; + Thu, 29 Nov 2007 10:03:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474ED4A0.4D722.12021 ; + 29 Nov 2007 10:02:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8919A4E6BE; + Thu, 29 Nov 2007 15:02:53 +0000 (GMT) +Message-ID: <200711291456.lATEuSdE004931@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 938 + for ; + Thu, 29 Nov 2007 15:02:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8A4B32CACD + for ; Thu, 29 Nov 2007 15:02:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEuSjv004933 + for ; Thu, 29 Nov 2007 09:56:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEuSdE004931 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:56:28 -0500 +Date: Thu, 29 Nov 2007 09:56:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r38855 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 10:03:06 2007 +X-DSPAM-Confidence: 0.6241 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38855 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-11-29 09:56:27 -0500 (Thu, 29 Nov 2007) +New Revision: 38855 + +Modified: +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java +Log: +SAK-12022 Editor has problems inserting links and setting target to new window + +--(stuart@mothra:pts/1)--------------------(/home/stuart/src/sakai_2-4-x/util)-- +--(0959:Thu,29 Nov 07:$)-- svn merge -r 33250:33251 https://source.sakaiproject.org/svn/util/trunk +U util-util/util/src/java/org/sakaiproject/util/FormattedText.java +--(stuart@mothra:pts/1)--------------------(/home/stuart/src/sakai_2-4-x/util)-- +--(1000:Thu,29 Nov 07:$)-- ^merge^log +svn log -r 33250:33251 https://source.sakaiproject.org/svn/util/trunk +------------------------------------------------------------------------ +r33251 | joshua.ryan@asu.edu | 2007-07-27 16:04:51 -0400 (Fri, 27 Jul 2007) | 5 lines + +SAK-10306 SAK-10810 + +Changed reg exp pattern for detecting urls in Formatted text such that it no longer dies when the input contains things such as 'target="_blank"' please note that as it's been for quite some time if you do not call processFormattedText with checkForEvilTags set to false that it will remove all such things from the input and inforce all links to open with target="blank" anyway. If this is not the desired functionality then we should have a discussion. + + +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Thu Nov 29 09:51:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 09:51:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 09:51:43 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by casino.mail.umich.edu () with ESMTP id lATEpg30014268; + Thu, 29 Nov 2007 09:51:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 474ED1F4.64CBB.21735 ; + 29 Nov 2007 09:51:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4923958597; + Thu, 29 Nov 2007 14:51:37 +0000 (GMT) +Message-ID: <200711291445.lATEj9TB004864@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556 + for ; + Thu, 29 Nov 2007 14:51:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 57CFF2CABF + for ; Thu, 29 Nov 2007 14:51:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEj9UP004866 + for ; Thu, 29 Nov 2007 09:45:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEj9TB004864 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:45:09 -0500 +Date: Thu, 29 Nov 2007 09:45:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r38854 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 09:51:43 2007 +X-DSPAM-Confidence: 0.7009 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38854 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-11-29 09:45:07 -0500 (Thu, 29 Nov 2007) +New Revision: 38854 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +SAK-11161 Group realm not updated when a role is changed via Site Info + +--(stuart@mothra:pts/1)-------------(/home/stuart/src/sakai_2-4-x/site-manage)-- +--(0921:Thu,29 Nov 07:$)-- svn merge -r 34359:34360 https://source.sakaiproject.org/svn/site-manage/trunk/ +U site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +--(stuart@mothra:pts/1)-------------(/home/stuart/src/sakai_2-4-x/site-manage)-- +--(0922:Thu,29 Nov 07:$)-- ^merge^log +svn log -r 34359:34360 https://source.sakaiproject.org/svn/site-manage/trunk/ +------------------------------------------------------------------------ +r34360 | zqian@umich.edu | 2007-08-24 11:19:48 -0400 (Fri, 24 Aug 2007) | 1 line + +fix to SAK-11161:Group realm not updated when a role is changed via Site Info +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 29 09:46:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 09:46:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 09:46:57 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lATEkuc6011089; + Thu, 29 Nov 2007 09:46:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474ED0D0.9DAC8.29210 ; + 29 Nov 2007 09:46:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B21EA58423; + Thu, 29 Nov 2007 14:46:38 +0000 (GMT) +Message-ID: <200711291440.lATEeEdC004852@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 162 + for ; + Thu, 29 Nov 2007 14:46:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1F11727496 + for ; Thu, 29 Nov 2007 14:46:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEeEGj004854 + for ; Thu, 29 Nov 2007 09:40:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEeEdC004852 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:40:14 -0500 +Date: Thu, 29 Nov 2007 09:40:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38853 - assignment/branches/post-2-4 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 09:46:57 2007 +X-DSPAM-Confidence: 0.8488 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38853 + +Author: zqian@umich.edu +Date: 2007-11-29 09:40:13 -0500 (Thu, 29 Nov 2007) +New Revision: 38853 + +Modified: +assignment/branches/post-2-4/runconversion_readme.txt +assignment/branches/post-2-4/upgradeschema_oracle.config +Log: +merge SAK-11821 into post-2-4: Oracle has certain length constraint on the index name. Make it shorter + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jleasia@umich.edu Thu Nov 29 09:29:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 09:29:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 09:29:25 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id lATETP6C016147; + Thu, 29 Nov 2007 09:29:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474ECCBF.C21CE.2334 ; + 29 Nov 2007 09:29:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A880D8C254; + Thu, 29 Nov 2007 14:29:24 +0000 (GMT) +Message-ID: <200711291422.lATEMrIH004832@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 495 + for ; + Thu, 29 Nov 2007 14:29:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ABA452953D + for ; Thu, 29 Nov 2007 14:29:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEMrG9004834 + for ; Thu, 29 Nov 2007 09:22:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEMrIH004832 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:22:53 -0500 +Date: Thu, 29 Nov 2007 09:22:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jleasia@umich.edu using -f +To: source@collab.sakaiproject.org +From: jleasia@umich.edu +Subject: [sakai] svn commit: r38852 - ctools/trunk/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 09:29:25 2007 +X-DSPAM-Confidence: 0.7606 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38852 + +Author: jleasia@umich.edu +Date: 2007-11-29 09:22:51 -0500 (Thu, 29 Nov 2007) +New Revision: 38852 + +Modified: +ctools/trunk/ctools-reference/config/sakai.properties +Log: +CT-399 add acknowledgments link to footer + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 09:26:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 09:26:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 09:26:10 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lATEQ9fS024102; + Thu, 29 Nov 2007 09:26:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 474ECBFB.BFFE6.32456 ; + 29 Nov 2007 09:26:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 938968D9ED; + Thu, 29 Nov 2007 14:26:05 +0000 (GMT) +Message-ID: <200711291419.lATEJYPX004809@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786 + for ; + Thu, 29 Nov 2007 14:25:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4E5742953D + for ; Thu, 29 Nov 2007 14:25:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEJYPR004811 + for ; Thu, 29 Nov 2007 09:19:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEJYPX004809 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:19:34 -0500 +Date: Thu, 29 Nov 2007 09:19:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38851 - gradebook/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 09:26:10 2007 +X-DSPAM-Confidence: 0.7607 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38851 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 09:19:33 -0500 (Thu, 29 Nov 2007) +New Revision: 38851 + +Added: +gradebook/branches/oncourse_opc_122007/ +Log: +Creating a new branch for opc deliverables, created from oncourse_2-4-x @r38084 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 09:23:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 09:23:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 09:23:55 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lATENsUA027647; + Thu, 29 Nov 2007 09:23:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474ECB74.2C367.5819 ; + 29 Nov 2007 09:23:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2E51E7C9A5; + Thu, 29 Nov 2007 14:23:51 +0000 (GMT) +Message-ID: <200711291417.lATEH7OV004797@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483 + for ; + Thu, 29 Nov 2007 14:23:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7704A2953D + for ; Thu, 29 Nov 2007 14:23:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEH7YQ004799 + for ; Thu, 29 Nov 2007 09:17:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEH7OV004797 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:17:07 -0500 +Date: Thu, 29 Nov 2007 09:17:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38850 - msgcntr/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 09:23:55 2007 +X-DSPAM-Confidence: 0.7605 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38850 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 09:17:06 -0500 (Thu, 29 Nov 2007) +New Revision: 38850 + +Added: +msgcntr/branches/oncourse_opc_122007/ +Log: +Creating a new branch for opc deliverables, created from oncourse_2-4-x @r38092 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 29 09:12:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 09:12:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 09:12:52 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id lATECpX3004161; + Thu, 29 Nov 2007 09:12:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 474EC8DD.30EE4.13237 ; + 29 Nov 2007 09:12:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D29557ACC7; + Thu, 29 Nov 2007 14:12:46 +0000 (GMT) +Message-ID: <200711291406.lATE6KYb004785@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59 + for ; + Thu, 29 Nov 2007 14:12:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8683E2CAC4 + for ; Thu, 29 Nov 2007 14:12:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATE6LaY004787 + for ; Thu, 29 Nov 2007 09:06:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATE6KYb004785 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:06:20 -0500 +Date: Thu, 29 Nov 2007 09:06:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38849 - oncourse/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 09:12:52 2007 +X-DSPAM-Confidence: 0.6957 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38849 + +Author: chmaurer@iupui.edu +Date: 2007-11-29 09:06:20 -0500 (Thu, 29 Nov 2007) +New Revision: 38849 + +Added: +oncourse/branches/oncourse_OPC_122007/ +Log: +Copying 2.4.x externals to start opc testing + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Nov 29 02:49:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 29 Nov 2007 02:49:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 29 Nov 2007 02:49:16 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lAT7nELH018799; + Thu, 29 Nov 2007 02:49:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474E6EF6.199D5.9964 ; + 29 Nov 2007 02:49:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8394D8D4EB; + Thu, 29 Nov 2007 07:49:04 +0000 (GMT) +Message-ID: <200711290742.lAT7gfM9003864@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 41 + for ; + Thu, 29 Nov 2007 07:48:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AC1282C986 + for ; Thu, 29 Nov 2007 07:48:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAT7gfJ5003866 + for ; Thu, 29 Nov 2007 02:42:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAT7gfM9003864 + for source@collab.sakaiproject.org; Thu, 29 Nov 2007 02:42:41 -0500 +Date: Thu, 29 Nov 2007 02:42:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38848 - in sam/branches/SAK-12065/samigo-app/src: java/org/sakaiproject/tool/assessment/ui/bean/evaluation java/org/sakaiproject/tool/assessment/ui/listener/evaluation webapp/jsf/evaluation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 29 02:49:16 2007 +X-DSPAM-Confidence: 0.7555 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38848 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-29 02:42:17 -0500 (Thu, 29 Nov 2007) +New Revision: 38848 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp +Log: +SAK-12065 Discrimination Statistics + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 28 22:22:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 22:22:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 22:22:31 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lAT3MV14012053; + Wed, 28 Nov 2007 22:22:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474E3070.7E63D.29753 ; + 28 Nov 2007 22:22:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8562A8C953; + Thu, 29 Nov 2007 03:22:22 +0000 (GMT) +Message-ID: <200711290315.lAT3FqwB003133@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 550 + for ; + Thu, 29 Nov 2007 03:21:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD5102C988 + for ; Thu, 29 Nov 2007 03:21:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAT3FqMl003135 + for ; Wed, 28 Nov 2007 22:15:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAT3FqwB003133 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 22:15:52 -0500 +Date: Wed, 28 Nov 2007 22:15:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38847 - ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 22:22:31 2007 +X-DSPAM-Confidence: 0.8507 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38847 + +Author: dlhaines@umich.edu +Date: 2007-11-28 22:15:50 -0500 (Wed, 28 Nov 2007) +New Revision: 38847 + +Added: +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/checkconversion.sh +Modified: +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh +Log: +CTools: generalize runconversion and add checkconversion script to check setup for conversion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Wed Nov 28 16:53:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 16:53:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 16:53:34 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lASLrXpp021438; + Wed, 28 Nov 2007 16:53:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474DE357.D512C.15836 ; + 28 Nov 2007 16:53:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 890648CF85; + Wed, 28 Nov 2007 21:53:20 +0000 (GMT) +Message-ID: <200711282147.lASLl9Hq002773@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692 + for ; + Wed, 28 Nov 2007 21:53:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 02C6A2C399 + for ; Wed, 28 Nov 2007 21:53:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASLl9M7002775 + for ; Wed, 28 Nov 2007 16:47:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASLl9Hq002773 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 16:47:09 -0500 +Date: Wed, 28 Nov 2007 16:47:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38846 - content/branches/SAK-12105 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 16:53:34 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38846 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-28 16:47:06 -0500 (Wed, 28 Nov 2007) +New Revision: 38846 + +Modified: +content/branches/SAK-12105/pom.xml +Log: +SAK-12105 removing the providers from the JCR profile until i actually get it start up with them + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 28 16:25:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 16:25:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 16:25:48 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by flawless.mail.umich.edu () with ESMTP id lASLPl4u023330; + Wed, 28 Nov 2007 16:25:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 474DDCD3.95C5C.15078 ; + 28 Nov 2007 16:25:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A8408CF60; + Wed, 28 Nov 2007 21:25:34 +0000 (GMT) +Message-ID: <200711282119.lASLJ43Z002613@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 307 + for ; + Wed, 28 Nov 2007 21:25:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 670952C38A + for ; Wed, 28 Nov 2007 21:25:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASLJ5Z6002620 + for ; Wed, 28 Nov 2007 16:19:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASLJ43Z002613 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 16:19:04 -0500 +Date: Wed, 28 Nov 2007 16:19:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38844 - ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 16:25:48 2007 +X-DSPAM-Confidence: 0.9876 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38844 + +Author: dlhaines@umich.edu +Date: 2007-11-28 16:19:02 -0500 (Wed, 28 Nov 2007) +New Revision: 38844 + +Modified: +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_oracle.config +Log: +CTools: first pass on specific revisions for CTools. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 28 16:25:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 16:25:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 16:25:45 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id lASLPiHf030508; + Wed, 28 Nov 2007 16:25:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 474DDCD1.CB87E.10844 ; + 28 Nov 2007 16:25:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 269208CF51; + Wed, 28 Nov 2007 21:25:35 +0000 (GMT) +Message-ID: <200711282119.lASLJ54K002624@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 336 + for ; + Wed, 28 Nov 2007 21:25:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3925B2C38C + for ; Wed, 28 Nov 2007 21:25:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASLJ6Tm002627 + for ; Wed, 28 Nov 2007 16:19:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASLJ54K002624 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 16:19:05 -0500 +Date: Wed, 28 Nov 2007 16:19:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38845 - in content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl: . jcr +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 16:25:45 2007 +X-DSPAM-Confidence: 0.9885 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38845 + +Author: aaronz@vt.edu +Date: 2007-11-28 16:18:58 -0500 (Wed, 28 Nov 2007) +New Revision: 38845 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/SakaiConstants.java +Log: +SAK-12105: Moved some constants and fixed up a bug which was causing failure of JCR on first startup every time, but would allow it to work afterwards + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 28 16:00:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 16:00:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 16:00:39 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by faithful.mail.umich.edu () with ESMTP id lASL0cuV015086; + Wed, 28 Nov 2007 16:00:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 474DD6E1.28F4E.28948 ; + 28 Nov 2007 16:00:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ACEEA8CF0D; + Wed, 28 Nov 2007 21:00:13 +0000 (GMT) +Message-ID: <200711282053.lASKrtJg002565@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 776 + for ; + Wed, 28 Nov 2007 20:59:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8BA6829514 + for ; Wed, 28 Nov 2007 21:00:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASKruWq002567 + for ; Wed, 28 Nov 2007 15:53:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASKrtJg002565 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:53:55 -0500 +Date: Wed, 28 Nov 2007 15:53:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38843 - ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 16:00:39 2007 +X-DSPAM-Confidence: 0.9874 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38843 + +Author: dlhaines@umich.edu +Date: 2007-11-28 15:53:53 -0500 (Wed, 28 Nov 2007) +New Revision: 38843 + +Removed: +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_mysql.config +Modified: +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion_readme.txt +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_oracle.config +Log: +CTools: add keywords, remove unneeded config file. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 28 15:58:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 15:58:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 15:58:46 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lASKweUK000759; + Wed, 28 Nov 2007 15:58:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 474DD667.A2A51.25744 ; + 28 Nov 2007 15:58:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9CB188B2E2; + Wed, 28 Nov 2007 20:58:11 +0000 (GMT) +Message-ID: <200711282051.lASKpqVm002553@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 998 + for ; + Wed, 28 Nov 2007 20:57:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AA2AD2C0FE + for ; Wed, 28 Nov 2007 20:57:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASKpqBX002555 + for ; Wed, 28 Nov 2007 15:51:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASKpqVm002553 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:51:52 -0500 +Date: Wed, 28 Nov 2007 15:51:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38842 - in ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x: . assignment-db-conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 15:58:46 2007 +X-DSPAM-Confidence: 0.8488 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38842 + +Author: dlhaines@umich.edu +Date: 2007-11-28 15:51:50 -0500 (Wed, 28 Nov 2007) +New Revision: 38842 + +Added: +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/ +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/README.txt +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion_readme.txt +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_mysql.config +ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_oracle.config +Log: +CTools: initial version of the assignment db conversion scripts for 2.4.xQ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Nov 28 15:51:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 15:51:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 15:51:00 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id lASKoxA8001837; + Wed, 28 Nov 2007 15:50:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 474DD4AD.8A1AC.8772 ; + 28 Nov 2007 15:50:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DB67F8B2E2; + Wed, 28 Nov 2007 20:50:54 +0000 (GMT) +Message-ID: <200711282044.lASKiQeh002541@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 863 + for ; + Wed, 28 Nov 2007 20:50:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6E49629514 + for ; Wed, 28 Nov 2007 20:50:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASKiQ4b002543 + for ; Wed, 28 Nov 2007 15:44:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASKiQeh002541 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:44:26 -0500 +Date: Wed, 28 Nov 2007 15:44:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38841 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 15:51:00 2007 +X-DSPAM-Confidence: 0.9820 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38841 + +Author: cwen@iupui.edu +Date: 2007-11-28 15:44:25 -0500 (Wed, 28 Nov 2007) +New Revision: 38841 + +Modified: +oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Fall2007CourseSync.java +Log: +https://uisapp2.iu.edu/jira/browse/ONC-260 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 28 15:11:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 15:11:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 15:11:53 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lASKBqGC016611; + Wed, 28 Nov 2007 15:11:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474DCB75.62E34.28429 ; + 28 Nov 2007 15:11:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BCEC28B2E2; + Wed, 28 Nov 2007 20:11:30 +0000 (GMT) +Message-ID: <200711282005.lASK5BVO002500@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 905 + for ; + Wed, 28 Nov 2007 20:11:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 38E7124B62 + for ; Wed, 28 Nov 2007 20:11:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASK5BtL002502 + for ; Wed, 28 Nov 2007 15:05:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASK5BVO002500 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:05:11 -0500 +Date: Wed, 28 Nov 2007 15:05:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38840 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 15:11:53 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38840 + +Author: dlhaines@umich.edu +Date: 2007-11-28 15:05:09 -0500 (Wed, 28 Nov 2007) +New Revision: 38840 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: need new revision of entity. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 28 14:42:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 14:42:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 14:42:06 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by panther.mail.umich.edu () with ESMTP id lASJg5ZB025416; + Wed, 28 Nov 2007 14:42:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 474DC485.58357.25605 ; + 28 Nov 2007 14:42:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 700878CCF3; + Wed, 28 Nov 2007 19:41:58 +0000 (GMT) +Message-ID: <200711281935.lASJZYQ1002371@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1000 + for ; + Wed, 28 Nov 2007 19:41:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 533502C0F6 + for ; Wed, 28 Nov 2007 19:41:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASJZY1w002373 + for ; Wed, 28 Nov 2007 14:35:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASJZYQ1002371 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 14:35:34 -0500 +Date: Wed, 28 Nov 2007 14:35:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38839 - assignment/branches/post-2-4 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 14:42:06 2007 +X-DSPAM-Confidence: 0.9875 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38839 + +Author: zqian@umich.edu +Date: 2007-11-28 14:35:33 -0500 (Wed, 28 Nov 2007) +New Revision: 38839 + +Modified: +assignment/branches/post-2-4/runconversion_readme.txt +Log: +SAK-11821 in post-2-4: added comment inside the readme file to warn the possible compiling problem + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 28 14:17:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 14:17:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 14:17:02 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by mission.mail.umich.edu () with ESMTP id lASJH1Dh025313; + Wed, 28 Nov 2007 14:17:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 474DBEA6.9C553.11085 ; + 28 Nov 2007 14:16:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DF6838CD64; + Wed, 28 Nov 2007 19:16:46 +0000 (GMT) +Message-ID: <200711281910.lASJAPh3002343@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 403 + for ; + Wed, 28 Nov 2007 19:16:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 53DA024C30 + for ; Wed, 28 Nov 2007 19:16:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASJAPZ0002345 + for ; Wed, 28 Nov 2007 14:10:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASJAPh3002343 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 14:10:25 -0500 +Date: Wed, 28 Nov 2007 14:10:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38838 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 14:17:02 2007 +X-DSPAM-Confidence: 0.9865 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38838 + +Author: dlhaines@umich.edu +Date: 2007-11-28 14:10:23 -0500 (Wed, 28 Nov 2007) +New Revision: 38838 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update util for the assignment db conversion. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Wed Nov 28 13:35:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 13:35:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 13:35:51 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lASIZoAS018513; + Wed, 28 Nov 2007 13:35:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474DB4FE.88A03.13291 ; + 28 Nov 2007 13:35:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5A4CF8CD1C; + Wed, 28 Nov 2007 18:30:16 +0000 (GMT) +Message-ID: <200711281828.lASISQ1k002195@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 595 + for ; + Wed, 28 Nov 2007 18:29:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 53C302BEEF + for ; Wed, 28 Nov 2007 18:34:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASISQw6002197 + for ; Wed, 28 Nov 2007 13:28:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASISQ1k002195 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 13:28:26 -0500 +Date: Wed, 28 Nov 2007 13:28:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38837 - site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 13:35:51 2007 +X-DSPAM-Confidence: 0.8430 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38837 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-28 13:28:20 -0500 (Wed, 28 Nov 2007) +New Revision: 38837 + +Modified: +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSite.java +Log: +SAK-12203: Fixed constructor to pass service through + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 28 13:12:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 13:12:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 13:12:49 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id lASICmb9013743; + Wed, 28 Nov 2007 13:12:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 474DAF7F.15F82.29920 ; + 28 Nov 2007 13:12:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B495D8C894; + Wed, 28 Nov 2007 18:06:25 +0000 (GMT) +Message-ID: <200711281805.lASI5WgU002179@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 955 + for ; + Wed, 28 Nov 2007 18:05:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6CEC82BD1B + for ; Wed, 28 Nov 2007 18:11:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASI5Wb6002181 + for ; Wed, 28 Nov 2007 13:05:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASI5WgU002179 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 13:05:32 -0500 +Date: Wed, 28 Nov 2007 13:05:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38836 - user/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 13:12:49 2007 +X-DSPAM-Confidence: 0.8431 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38836 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-28 13:05:28 -0500 (Wed, 28 Nov 2007) +New Revision: 38836 + +Modified: +user/trunk/pom.xml +Log: +NOJIRA +I cant spell framework, sorry. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Wed Nov 28 12:42:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 12:42:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 12:42:44 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by chaos.mail.umich.edu () with ESMTP id lASHgfWv001356; + Wed, 28 Nov 2007 12:42:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474DA88A.358C9.18698 ; + 28 Nov 2007 12:42:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BF8167CAC0; + Wed, 28 Nov 2007 17:42:26 +0000 (GMT) +Message-ID: <200711281735.lASHZvCD002142@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32 + for ; + Wed, 28 Nov 2007 17:42:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4BDF82BDE5 + for ; Wed, 28 Nov 2007 17:42:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASHZw4S002144 + for ; Wed, 28 Nov 2007 12:35:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASHZvCD002142 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 12:35:57 -0500 +Date: Wed, 28 Nov 2007 12:35:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r38835 - mailarchive/trunk/mailarchive-james/james/src/java/org/sakaiproject/james +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 12:42:44 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38835 + +Author: zach.thomas@txstate.edu +Date: 2007-11-28 12:35:55 -0500 (Wed, 28 Nov 2007) +New Revision: 38835 + +Modified: +mailarchive/trunk/mailarchive-james/james/src/java/org/sakaiproject/james/SakaiMailet.java +Log: +SAK-11973 removing extraneous line breaks from incoming messages to the mail archive. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 28 12:35:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 12:35:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 12:35:49 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lASHZmhk028004; + Wed, 28 Nov 2007 12:35:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 474DA6EE.94F44.19992 ; + 28 Nov 2007 12:35:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1CF148CAE6; + Wed, 28 Nov 2007 17:35:43 +0000 (GMT) +Message-ID: <200711281729.lASHTO9t002113@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 698 + for ; + Wed, 28 Nov 2007 17:35:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5ADE82BDE5 + for ; Wed, 28 Nov 2007 17:35:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASHTOH1002115 + for ; Wed, 28 Nov 2007 12:29:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASHTO9t002113 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 12:29:24 -0500 +Date: Wed, 28 Nov 2007 12:29:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38834 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 12:35:49 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38834 + +Author: dlhaines@umich.edu +Date: 2007-11-28 12:29:23 -0500 (Wed, 28 Nov 2007) +New Revision: 38834 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: update 2.4.xQ for new assignments code. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 28 12:34:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 12:34:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 12:34:37 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by jacknife.mail.umich.edu () with ESMTP id lASHYa6X027012; + Wed, 28 Nov 2007 12:34:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 474DA6A4.D4DD7.15882 ; + 28 Nov 2007 12:34:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 585F48CB8E; + Wed, 28 Nov 2007 17:34:29 +0000 (GMT) +Message-ID: <200711281728.lASHS5fS002097@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 647 + for ; + Wed, 28 Nov 2007 17:34:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B83A2BDE5 + for ; Wed, 28 Nov 2007 17:34:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASHS5Qn002099 + for ; Wed, 28 Nov 2007 12:28:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASHS5fS002097 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 12:28:05 -0500 +Date: Wed, 28 Nov 2007 12:28:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38833 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 12:34:37 2007 +X-DSPAM-Confidence: 0.7598 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38833 + +Author: aaronz@vt.edu +Date: 2007-11-28 12:28:00 -0500 (Wed, 28 Nov 2007) +New Revision: 38833 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Fixed a bug in the user simulation which caused it to never remove the content, oops, works now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:26:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:26:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:26:15 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lASGQEDo026652; + Wed, 28 Nov 2007 11:26:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 474D96A0.CD068.5990 ; + 28 Nov 2007 11:26:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B0F68C948; + Wed, 28 Nov 2007 16:26:07 +0000 (GMT) +Message-ID: <200711281619.lASGJeXt001919@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 470 + for ; + Wed, 28 Nov 2007 16:25:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F189C2BD0A + for ; Wed, 28 Nov 2007 16:25:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGJe3w001921 + for ; Wed, 28 Nov 2007 11:19:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGJeXt001919 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:19:40 -0500 +Date: Wed, 28 Nov 2007 11:19:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38832 - util/branches/SAK-12239 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:26:15 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38832 + +Author: jimeng@umich.edu +Date: 2007-11-28 11:19:39 -0500 (Wed, 28 Nov 2007) +New Revision: 38832 + +Added: +util/branches/SAK-12239/sakai_2-4-x/ +Log: +SAK-12239 +Creating branch for post-2.4 work related to content-hosting based on sakai-2.4.x + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:26:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:26:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:26:15 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by brazil.mail.umich.edu () with ESMTP id lASGQE3X006047; + Wed, 28 Nov 2007 11:26:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 474D9691.95CEB.16889 ; + 28 Nov 2007 11:25:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C76318C953; + Wed, 28 Nov 2007 16:25:40 +0000 (GMT) +Message-ID: <200711281619.lASGJCpd001907@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 486 + for ; + Wed, 28 Nov 2007 16:25:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 211EC2BD0D + for ; Wed, 28 Nov 2007 16:25:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGJCWq001909 + for ; Wed, 28 Nov 2007 11:19:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGJCpd001907 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:19:12 -0500 +Date: Wed, 28 Nov 2007 11:19:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38831 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:26:15 2007 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38831 + +Author: jimeng@umich.edu +Date: 2007-11-28 11:19:11 -0500 (Wed, 28 Nov 2007) +New Revision: 38831 + +Added: +content/branches/SAK-12239/ +Log: +SAK-12239 +Creating branch for post-2.4 work related to content-hosting based on sakai-2.4.x + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:25:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:25:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:25:28 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id lASGPRSB003285; + Wed, 28 Nov 2007 11:25:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474D9669.962E4.25202 ; + 28 Nov 2007 11:25:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 49AD58C909; + Wed, 28 Nov 2007 16:25:11 +0000 (GMT) +Message-ID: <200711281618.lASGIllX001895@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 910 + for ; + Wed, 28 Nov 2007 16:24:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9D782296AC + for ; Wed, 28 Nov 2007 16:24:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGIlXu001897 + for ; Wed, 28 Nov 2007 11:18:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGIllX001895 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:18:47 -0500 +Date: Wed, 28 Nov 2007 11:18:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38830 - db/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:25:28 2007 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38830 + +Author: jimeng@umich.edu +Date: 2007-11-28 11:18:45 -0500 (Wed, 28 Nov 2007) +New Revision: 38830 + +Added: +db/branches/SAK-12239/ +Log: +SAK-12239 +Creating branch for post-2.4 work related to content-hosting based on sakai-2.4.x + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:25:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:25:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:25:16 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by flawless.mail.umich.edu () with ESMTP id lASGPFm6015248; + Wed, 28 Nov 2007 11:25:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474D964B.55E0D.4110 ; + 28 Nov 2007 11:24:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5519B8C8FB; + Wed, 28 Nov 2007 16:24:29 +0000 (GMT) +Message-ID: <200711281618.lASGI97e001883@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640 + for ; + Wed, 28 Nov 2007 16:24:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BE36D296AC + for ; Wed, 28 Nov 2007 16:24:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGI92E001885 + for ; Wed, 28 Nov 2007 11:18:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGI97e001883 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:18:09 -0500 +Date: Wed, 28 Nov 2007 11:18:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38829 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:25:16 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38829 + +Author: jimeng@umich.edu +Date: 2007-11-28 11:18:08 -0500 (Wed, 28 Nov 2007) +New Revision: 38829 + +Added: +entity/branches/SAK-12239/ +Log: +SAK-12239 +Creating branch for post-2.4 work related to content-hosting based on sakai-2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:23:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:23:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:23:13 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lASGNCUo023029; + Wed, 28 Nov 2007 11:23:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 474D95D1.A23D0.1221 ; + 28 Nov 2007 11:22:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E7C188C88E; + Wed, 28 Nov 2007 16:22:32 +0000 (GMT) +Message-ID: <200711281616.lASGG23O001871@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 377 + for ; + Wed, 28 Nov 2007 16:22:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7F22F296D2 + for ; Wed, 28 Nov 2007 16:22:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGG2dj001873 + for ; Wed, 28 Nov 2007 11:16:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGG23O001871 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:16:02 -0500 +Date: Wed, 28 Nov 2007 11:16:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38828 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:23:13 2007 +X-DSPAM-Confidence: 0.9846 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38828 + +Author: jimeng@umich.edu +Date: 2007-11-28 11:16:00 -0500 (Wed, 28 Nov 2007) +New Revision: 38828 + +Removed: +entity/branches/SAK-12239/ +Log: +SAK-12239 +Starting over. Taking a copy of 2.4.x instead of 2.5.x. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:22:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:22:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:22:22 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id lASGML52004679; + Wed, 28 Nov 2007 11:22:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474D95B6.8329D.6196 ; + 28 Nov 2007 11:22:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0045C8C7F6; + Wed, 28 Nov 2007 16:22:11 +0000 (GMT) +Message-ID: <200711281615.lASGFih7001859@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13 + for ; + Wed, 28 Nov 2007 16:21:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8EA3D296D2 + for ; Wed, 28 Nov 2007 16:21:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGFi5M001861 + for ; Wed, 28 Nov 2007 11:15:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGFih7001859 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:15:44 -0500 +Date: Wed, 28 Nov 2007 11:15:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38827 - db/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:22:22 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38827 + +Author: jimeng@umich.edu +Date: 2007-11-28 11:15:42 -0500 (Wed, 28 Nov 2007) +New Revision: 38827 + +Removed: +db/branches/SAK-12239/ +Log: +SAK-12239 +Starting over. Taking a copy of 2.4.x instead of 2.5.x. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:22:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:22:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:22:04 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lASGM2Rr017704; + Wed, 28 Nov 2007 11:22:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 474D959F.37FA1.26118 ; + 28 Nov 2007 11:21:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D7CA98C6A4; + Wed, 28 Nov 2007 16:21:43 +0000 (GMT) +Message-ID: <200711281615.lASGF4Yw001847@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 89 + for ; + Wed, 28 Nov 2007 16:21:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 533B02BC87 + for ; Wed, 28 Nov 2007 16:21:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGF4xt001849 + for ; Wed, 28 Nov 2007 11:15:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGF4Yw001847 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:15:04 -0500 +Date: Wed, 28 Nov 2007 11:15:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38826 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:22:03 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38826 + +Author: jimeng@umich.edu +Date: 2007-11-28 11:15:03 -0500 (Wed, 28 Nov 2007) +New Revision: 38826 + +Removed: +content/branches/SAK-12239/ +Log: +SAK-12239 +Starting over. Taking a copy of 2.4.x instead of 2.5.x. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 28 11:21:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:21:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:21:51 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id lASGLoOW017552; + Wed, 28 Nov 2007 11:21:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 474D9590.137DA.17497 ; + 28 Nov 2007 11:21:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A1C738C3E2; + Wed, 28 Nov 2007 16:21:33 +0000 (GMT) +Message-ID: <200711281550.lASFoXi9001796@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 384 + for ; + Wed, 28 Nov 2007 15:54:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E0A3C2BD10 + for ; Wed, 28 Nov 2007 15:56:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFoX5A001798 + for ; Wed, 28 Nov 2007 10:50:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFoXi9001796 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:50:33 -0500 +Date: Wed, 28 Nov 2007 10:50:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38824 - content/branches/SAK-12239 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:21:51 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38824 + +Author: jimeng@umich.edu +Date: 2007-11-28 10:50:31 -0500 (Wed, 28 Nov 2007) +New Revision: 38824 + +Removed: +content/branches/SAK-12239/content-api/ +content/branches/SAK-12239/content-bundles/ +content/branches/SAK-12239/content-help/ +content/branches/SAK-12239/content-impl-jcr/ +content/branches/SAK-12239/content-impl-providers/ +content/branches/SAK-12239/content-impl/ +content/branches/SAK-12239/content-test/ +content/branches/SAK-12239/content-tool/ +content/branches/SAK-12239/content-util/ +content/branches/SAK-12239/contentmultiplex-impl/ +content/branches/SAK-12239/pom.xml +Log: +SAK-12239 +Another false start. Need to start from 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 28 11:05:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:05:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:05:56 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id lASG5tdE003241; + Wed, 28 Nov 2007 11:05:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474D91D9.7998C.1877 ; + 28 Nov 2007 11:05:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 13C944F782; + Wed, 28 Nov 2007 15:39:42 +0000 (GMT) +Message-ID: <200711281559.lASFxCXu001819@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 47 + for ; + Wed, 28 Nov 2007 15:39:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F061C2BC21 + for ; Wed, 28 Nov 2007 16:05:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFxCep001821 + for ; Wed, 28 Nov 2007 10:59:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFxCXu001819 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:59:12 -0500 +Date: Wed, 28 Nov 2007 10:59:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38825 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:05:56 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38825 + +Author: aaronz@vt.edu +Date: 2007-11-28 10:59:07 -0500 (Wed, 28 Nov 2007) +New Revision: 38825 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRResourceEdit.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java +Log: +SAK-12105: Updated log messages and deprecated some methods + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ssmail@indiana.edu Wed Nov 28 11:05:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 11:05:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 11:05:07 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id lASG55pV006019; + Wed, 28 Nov 2007 11:05:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 474D91A6.90BB7.12922 ; + 28 Nov 2007 11:05:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 685758C703; + Wed, 28 Nov 2007 15:38:48 +0000 (GMT) +Message-ID: <200711281537.lASFbh8J001772@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 117 + for ; + Wed, 28 Nov 2007 15:37:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E14CE2BC23 + for ; Wed, 28 Nov 2007 15:43:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFbhMe001775 + for ; Wed, 28 Nov 2007 10:37:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFbh8J001772 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:37:43 -0500 +Date: Wed, 28 Nov 2007 10:37:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f +To: source@collab.sakaiproject.org +From: ssmail@indiana.edu +Subject: [sakai] svn commit: r38823 - citations/trunk/citations-osid/xserver/src/java/org/sakaibrary/xserver +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 11:05:07 2007 +X-DSPAM-Confidence: 0.6942 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38823 + +Author: ssmail@indiana.edu +Date: 2007-11-28 10:37:41 -0500 (Wed, 28 Nov 2007) +New Revision: 38823 + +Modified: +citations/trunk/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java +Log: +SAK-12297: Reworked the asset caching logic to avoid discarding search results + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 28 10:29:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 10:29:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 10:29:22 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lASFTMtY005417; + Wed, 28 Nov 2007 10:29:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474D894A.B1659.23123 ; + 28 Nov 2007 10:29:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BCC1B8C7A5; + Wed, 28 Nov 2007 15:25:14 +0000 (GMT) +Message-ID: <200711281522.lASFMoAr001732@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 116 + for ; + Wed, 28 Nov 2007 15:24:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 90C192B5CB + for ; Wed, 28 Nov 2007 15:28:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFMouK001734 + for ; Wed, 28 Nov 2007 10:22:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFMoAr001732 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:22:50 -0500 +Date: Wed, 28 Nov 2007 10:22:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38822 - in assignment/branches/post-2-4/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 10:29:22 2007 +X-DSPAM-Confidence: 0.8490 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38822 + +Author: zqian@umich.edu +Date: 2007-11-28 10:22:48 -0500 (Wed, 28 Nov 2007) +New Revision: 38822 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-11497 into post-2-4 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 28 08:43:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 08:43:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 08:43:56 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lASDhuDk009592; + Wed, 28 Nov 2007 08:43:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 474D708F.8E94.17872 ; + 28 Nov 2007 08:43:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BC3258C6AD; + Wed, 28 Nov 2007 13:44:04 +0000 (GMT) +Message-ID: <200711281337.lASDbNRk001649@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 200 + for ; + Wed, 28 Nov 2007 13:43:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 714492969F + for ; Wed, 28 Nov 2007 13:43:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASDbNRL001651 + for ; Wed, 28 Nov 2007 08:37:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASDbNRk001649 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 08:37:23 -0500 +Date: Wed, 28 Nov 2007 08:37:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38821 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 08:43:56 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38821 + +Author: aaronz@vt.edu +Date: 2007-11-28 08:37:17 -0500 (Wed, 28 Nov 2007) +New Revision: 38821 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRResourceEdit.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java +Log: +SAK-12105: Fixed up some of the logging and corrected some exception handling, should produce much cleaner output during normal operation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 28 08:36:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 08:36:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 08:36:19 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by chaos.mail.umich.edu () with ESMTP id lASDaIus021533; + Wed, 28 Nov 2007 08:36:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474D6ECB.53145.4289 ; + 28 Nov 2007 08:36:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8FC158C6E1; + Wed, 28 Nov 2007 13:36:32 +0000 (GMT) +Message-ID: <200711281329.lASDTqKc001618@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 590 + for ; + Wed, 28 Nov 2007 13:36:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B87212969F + for ; Wed, 28 Nov 2007 13:35:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASDTqvr001620 + for ; Wed, 28 Nov 2007 08:29:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASDTqKc001618 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 08:29:52 -0500 +Date: Wed, 28 Nov 2007 08:29:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38820 - in authz/trunk/authz-impl/impl/src/sql: hsqldb mssql mysql oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 08:36:19 2007 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38820 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-28 08:29:41 -0500 (Wed, 28 Nov 2007) +New Revision: 38820 + +Modified: +authz/trunk/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql +authz/trunk/authz-impl/impl/src/sql/mssql/sakai_realm.sql +authz/trunk/authz-impl/impl/src/sql/mysql/sakai_realm.sql +authz/trunk/authz-impl/impl/src/sql/oracle/sakai_realm.sql +Log: +SAK-12272 + +Patch Committed from Ying Wang, +Reviewd, Discussed on the list, no negative comments recieved. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 28 06:44:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 06:44:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 06:44:18 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lASBiHwT023077; + Wed, 28 Nov 2007 06:44:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 474D548C.2694D.21055 ; + 28 Nov 2007 06:44:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E9F285226D; + Wed, 28 Nov 2007 11:38:25 +0000 (GMT) +Message-ID: <200711281136.lASBa7W1001476@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 717 + for ; + Wed, 28 Nov 2007 11:38:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7FB92480F + for ; Wed, 28 Nov 2007 11:42:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASBa8Ea001478 + for ; Wed, 28 Nov 2007 06:36:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASBa7W1001476 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 06:36:07 -0500 +Date: Wed, 28 Nov 2007 06:36:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38819 - in component/branches/SAK-12134/component-loader: tomcat5/server-config/src/configuration/conf tomcat6/server-config/src/configuration/conf +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 06:44:18 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38819 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-28 06:35:59 -0500 (Wed, 28 Nov 2007) +New Revision: 38819 + +Modified: +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/server.xml +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/server.xml +Log: +SAK-12134 +Fixed small errors in config files (invalid xml) + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 28 06:38:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 06:38:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 06:38:28 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lASBcRFa021704; + Wed, 28 Nov 2007 06:38:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 474D532A.5FB82.12497 ; + 28 Nov 2007 06:38:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7FB9B676FF; + Wed, 28 Nov 2007 11:34:15 +0000 (GMT) +Message-ID: <200711281132.lASBW0Jl001458@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 195 + for ; + Wed, 28 Nov 2007 11:34:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4DE262480F + for ; Wed, 28 Nov 2007 11:38:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASBW0VE001460 + for ; Wed, 28 Nov 2007 06:32:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASBW0Jl001458 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 06:32:00 -0500 +Date: Wed, 28 Nov 2007 06:32:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38818 - in component/branches/SAK-12134/component-loader: tomcat5/server-config/src/configuration tomcat5/server-config/src/configuration/conf tomcat6/server-config/src/configuration tomcat6/server-config/src/configuration/conf +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 06:38:28 2007 +X-DSPAM-Confidence: 0.8477 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38818 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-28 06:31:48 -0500 (Wed, 28 Nov 2007) +New Revision: 38818 + +Added: +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/ +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/server.xml +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/ +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/server.xml +Removed: +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/server.xml +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/ +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/server.xml +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/ +Log: +SAK-12134 +Fixed the location of the server.xml files + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 28 06:35:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 28 Nov 2007 06:35:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 28 Nov 2007 06:35:51 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lASBZoU1031691; + Wed, 28 Nov 2007 06:35:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 474D528F.10EC9.1880 ; + 28 Nov 2007 06:35:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 12D0352EA1; + Wed, 28 Nov 2007 11:31:40 +0000 (GMT) +Message-ID: <200711281129.lASBTMSj001446@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 912 + for ; + Wed, 28 Nov 2007 11:31:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DBC4B2BA33 + for ; Wed, 28 Nov 2007 11:35:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASBTNf5001448 + for ; Wed, 28 Nov 2007 06:29:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASBTMSj001446 + for source@collab.sakaiproject.org; Wed, 28 Nov 2007 06:29:22 -0500 +Date: Wed, 28 Nov 2007 06:29:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38817 - in component/branches/SAK-12134/component-loader: tomcat5/server-config tomcat5/server-config/src/configuration/config tomcat6/server-config tomcat6/server-config/src/configuration/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 28 06:35:51 2007 +X-DSPAM-Confidence: 0.8483 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38817 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-28 06:29:11 -0500 (Wed, 28 Nov 2007) +New Revision: 38817 + +Modified: +component/branches/SAK-12134/component-loader/tomcat5/server-config/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/server.xml +component/branches/SAK-12134/component-loader/tomcat6/server-config/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/server.xml +Log: +SAK-12134 +Created server configuration templates + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Tue Nov 27 20:40:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 20:40:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 20:40:43 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by fan.mail.umich.edu () with ESMTP id lAS1egtV016121; + Tue, 27 Nov 2007 20:40:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 474CC715.7B80A.15165 ; + 27 Nov 2007 20:40:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 640108B332; + Wed, 28 Nov 2007 01:40:36 +0000 (GMT) +Message-ID: <200711280134.lAS1YDP4000402@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365 + for ; + Wed, 28 Nov 2007 01:40:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 055392B6F2 + for ; Wed, 28 Nov 2007 01:40:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAS1YDSY000404 + for ; Tue, 27 Nov 2007 20:34:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAS1YDP4000402 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 20:34:13 -0500 +Date: Tue, 27 Nov 2007 20:34:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38816 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 20:40:43 2007 +X-DSPAM-Confidence: 0.8493 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38816 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-27 20:34:08 -0500 (Tue, 27 Nov 2007) +New Revision: 38816 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java +Log: +SAK-12105 fixed getCollectionSize. I was forgetting to add in the folders. Only files were being counted. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 27 20:39:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 20:39:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 20:39:51 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id lAS1doWX027938; + Tue, 27 Nov 2007 20:39:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474CC6DB.12430.17972 ; + 27 Nov 2007 20:39:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6BDF48BE27; + Wed, 28 Nov 2007 01:39:37 +0000 (GMT) +Message-ID: <200711280133.lAS1XKoF000390@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42 + for ; + Wed, 28 Nov 2007 01:39:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3CD0D28D00 + for ; Wed, 28 Nov 2007 01:39:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAS1XK2J000392 + for ; Tue, 27 Nov 2007 20:33:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAS1XKoF000390 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 20:33:20 -0500 +Date: Tue, 27 Nov 2007 20:33:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38815 - in component/branches/SAK-12134/component-loader: tomcat5 tomcat5/server-config tomcat5/server-config/src tomcat5/server-config/src/configuration tomcat5/server-config/src/configuration/config tomcat6 tomcat6/server-config tomcat6/server-config/src tomcat6/server-config/src/configuration tomcat6/server-config/src/configuration/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 20:39:51 2007 +X-DSPAM-Confidence: 0.9885 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38815 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-27 20:33:06 -0500 (Tue, 27 Nov 2007) +New Revision: 38815 + +Added: +component/branches/SAK-12134/component-loader/tomcat5/server-config/ +component/branches/SAK-12134/component-loader/tomcat5/server-config/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/ +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/ +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/ +component/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/server.xml +component/branches/SAK-12134/component-loader/tomcat6/server-config/ +component/branches/SAK-12134/component-loader/tomcat6/server-config/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/ +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/ +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/ +component/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/server.xml +Modified: +component/branches/SAK-12134/component-loader/tomcat5/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/pom.xml +Log: +SAK-12134 +Added server configuration projects for tomcat5 and tomcat6 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 27 20:27:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 20:27:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 20:27:46 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lAS1RjfC001341; + Tue, 27 Nov 2007 20:27:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474CC40C.BE27.13595 ; + 27 Nov 2007 20:27:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9310A8BCC5; + Wed, 28 Nov 2007 01:27:39 +0000 (GMT) +Message-ID: <200711280120.lAS1KuRl000347@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 197 + for ; + Wed, 28 Nov 2007 01:26:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 344FF2B6E3 + for ; Wed, 28 Nov 2007 01:27:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAS1Ku9P000349 + for ; Tue, 27 Nov 2007 20:20:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAS1KuRl000347 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 20:20:56 -0500 +Date: Tue, 27 Nov 2007 20:20:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38814 - in maven2/trunk/sakai-plugin/src: main/java/org/sakaiproject/maven/plugin/component main/resources main/resources/META-INF/plexus site/apt test/java/org/sakaiproject/maven/plugin/component test/java/org/sakaiproject/maven/plugin/component/stub test/resources/unit test/resources/unit/configurationmojotest test/resources/unit/sample_wars +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 20:27:46 2007 +X-DSPAM-Confidence: 0.9894 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38814 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-27 20:20:26 -0500 (Tue, 27 Nov 2007) +New Revision: 38814 + +Added: +maven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/ConfigurationMojo.java +maven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/ConfigurationMojoTest.java +maven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/stub/SimpleConfigurationArtifact4CCStub.java +maven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/stub/SimpleConfigurationArtifactStub.java +maven2/trunk/sakai-plugin/src/test/resources/unit/configurationmojotest/ +maven2/trunk/sakai-plugin/src/test/resources/unit/configurationmojotest/plugin-config.xml +maven2/trunk/sakai-plugin/src/test/resources/unit/sample_wars/simple.configuration +Modified: +maven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/AbstractComponentMojo.java +maven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/ComponentDeployMojo.java +maven2/trunk/sakai-plugin/src/main/resources/META-INF/plexus/components.xml +maven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat5.properties +maven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat6.properties +maven2/trunk/sakai-plugin/src/site/apt/index.apt +maven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/AbstractComponentMojoTest.java +maven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/ComponentDeployMojoTest.java +maven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/stub/MavenProjectBasicStub.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12281 + +Added new packaging type to make it possible to perform configuration of the app server from within sakai source + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ssmail@indiana.edu Tue Nov 27 17:15:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 17:15:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 17:15:38 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id lARMFbcl019704; + Tue, 27 Nov 2007 17:15:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 474C9701.74EE4.20467 ; + 27 Nov 2007 17:15:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3724551926; + Tue, 27 Nov 2007 22:16:12 +0000 (GMT) +Message-ID: <200711272209.lARM99ag032517@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 58 + for ; + Tue, 27 Nov 2007 22:15:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EF9892B60F + for ; Tue, 27 Nov 2007 22:15:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARM99jk032519 + for ; Tue, 27 Nov 2007 17:09:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARM99ag032517 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 17:09:09 -0500 +Date: Tue, 27 Nov 2007 17:09:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f +To: source@collab.sakaiproject.org +From: ssmail@indiana.edu +Subject: [sakai] svn commit: r38813 - in citations/trunk/citations-osid/xserver/src/java/org/sakaibrary: osid/repository/xserver xserver +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 17:15:38 2007 +X-DSPAM-Confidence: 0.7603 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38813 + +Author: ssmail@indiana.edu +Date: 2007-11-27 17:09:07 -0500 (Tue, 27 Nov 2007) +New Revision: 38813 + +Modified: +citations/trunk/citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java +citations/trunk/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java +Log: +SAK-12282: throw NO_MORE_ITERATOR_ELEMENTS exception for anticipated errors + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 27 16:45:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 16:45:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 16:45:32 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lARLjWsp006491; + Tue, 27 Nov 2007 16:45:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 474C8FF5.F10F9.22946 ; + 27 Nov 2007 16:45:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B9EF3840A4; + Tue, 27 Nov 2007 21:45:26 +0000 (GMT) +Message-ID: <200711272139.lARLdAIK032457@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 421 + for ; + Tue, 27 Nov 2007 21:45:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 52F342B613 + for ; Tue, 27 Nov 2007 21:45:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLdAd5032459 + for ; Tue, 27 Nov 2007 16:39:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLdAIK032457 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:39:10 -0500 +Date: Tue, 27 Nov 2007 16:39:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38812 - in assignment/branches/post-2-4: . assignment-api/api/src/java/org/sakaiproject/assignment/api assignment-api/api/src/java/org/sakaiproject/assignment/cover assignment-impl assignment-impl/impl assignment-impl/impl/src/java/org/sakaiproject assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl assignment-impl/impl/src/java/org/sakaiproject/entity assignment-impl/impl/src/java/org/sakaiproject/entity/api assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize assignment-impl/impl/src/sql/hsqldb assignment-impl/impl/src/sql/mysql assignment-impl/impl/src/sql/oracle assignment-tool/tool/src/java/org/sakaiproject/assignment! + /tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 16:45:32 2007 +X-DSPAM-Confidence: 0.7607 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38812 + +Author: zqian@umich.edu +Date: 2007-11-27 16:39:00 -0500 (Tue, 27 Nov 2007) +New Revision: 38812 + +Added: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/ +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/ +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/ +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SAXSerializablePropertiesAccess.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/ +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/ +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/ +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/DataStreamEntitySerializer.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReader.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReaderHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityParseException.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityReader.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntitySerializer.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/SerializableEntity.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/SerializablePropertiesAccess.java +assignment/branches/post-2-4/runconversion.sh +assignment/branches/post-2-4/runconversion_readme.txt +assignment/branches/post-2-4/upgradeschema_mysql.config +assignment/branches/post-2-4/upgradeschema_oracle.config +Modified: +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentSubmission.java +assignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +assignment/branches/post-2-4/assignment-impl/.classpath +assignment/branches/post-2-4/assignment-impl/impl/pom.xml +assignment/branches/post-2-4/assignment-impl/impl/project.xml +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl/AssignmentActivityProducerImpl.java +assignment/branches/post-2-4/assignment-impl/impl/src/sql/hsqldb/sakai_assignment.sql +assignment/branches/post-2-4/assignment-impl/impl/src/sql/mysql/sakai_assignment.sql +assignment/branches/post-2-4/assignment-impl/impl/src/sql/oracle/sakai_assignment.sql +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +merge fix to SAK-11821 into post-2-4 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Tue Nov 27 16:44:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 16:44:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 16:44:48 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by chaos.mail.umich.edu () with ESMTP id lARLilVU002665; + Tue, 27 Nov 2007 16:44:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 474C8FCA.2589B.4450 ; + 27 Nov 2007 16:44:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8130C6FDCB; + Tue, 27 Nov 2007 21:44:41 +0000 (GMT) +Message-ID: <200711272138.lARLcOtC032445@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640 + for ; + Tue, 27 Nov 2007 21:44:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 10ECA2B613 + for ; Tue, 27 Nov 2007 21:44:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLcORG032447 + for ; Tue, 27 Nov 2007 16:38:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLcOtC032445 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:38:24 -0500 +Date: Tue, 27 Nov 2007 16:38:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r38811 - login/branches/sakai_2-4-x/login-tool/tool/src/java/org/sakaiproject/login/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 16:44:48 2007 +X-DSPAM-Confidence: 0.7626 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38811 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-11-27 16:38:22 -0500 (Tue, 27 Nov 2007) +New Revision: 38811 + +Modified: +login/branches/sakai_2-4-x/login-tool/tool/src/java/org/sakaiproject/login/tool/LoginTool.java +Log: +merge fix for SAK-9580 don't trim password input + +--(stuart@mothra:pts/3)-------------------(/home/stuart/src/sakai_2-4-x/login)-- +--(1640:Tue,27 Nov 07:$)-- svn merge -r 29017:29018 https://source.sakaiproject.org/svn/login/trunk/ +U login-tool/tool/src/java/org/sakaiproject/login/tool/LoginTool.java +--(stuart@mothra:pts/3)-------------------(/home/stuart/src/sakai_2-4-x/login)-- +--(1640:Tue,27 Nov 07:$)-- ^merge^log +svn log -r 29017:29018 https://source.sakaiproject.org/svn/login/trunk/ +------------------------------------------------------------------------ +r29018 | ray@media.berkeley.edu | 2007-04-17 14:20:23 -0400 (Tue, 17 Apr 2007) | 1 line + +SAK-9580 Since some authentication systems allow whitespace in passwords, entered passwords should be sent on to authn without trimming them +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 27 16:40:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 16:40:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 16:40:54 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by faithful.mail.umich.edu () with ESMTP id lARLesVS021704; + Tue, 27 Nov 2007 16:40:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474C8EDE.3B710.20912 ; + 27 Nov 2007 16:40:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8B0878BBB7; + Tue, 27 Nov 2007 21:40:41 +0000 (GMT) +Message-ID: <200711272134.lARLYPoN032428@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 161 + for ; + Tue, 27 Nov 2007 21:40:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 480D72B613 + for ; Tue, 27 Nov 2007 21:40:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLYP0B032430 + for ; Tue, 27 Nov 2007 16:34:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLYPoN032428 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:34:25 -0500 +Date: Tue, 27 Nov 2007 16:34:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38810 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 16:40:54 2007 +X-DSPAM-Confidence: 0.9876 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38810 + +Author: dlhaines@umich.edu +Date: 2007-11-27 16:34:23 -0500 (Tue, 27 Nov 2007) +New Revision: 38810 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: start build of 2.4.xQ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 27 16:20:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 16:20:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 16:20:54 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id lARLKrUR022837; + Tue, 27 Nov 2007 16:20:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474C8A2D.3401F.29150 ; + 27 Nov 2007 16:20:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 655728BB9C; + Tue, 27 Nov 2007 21:20:28 +0000 (GMT) +Message-ID: <200711272114.lARLE2KP032389@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 942 + for ; + Tue, 27 Nov 2007 21:20:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6FA132B5F3 + for ; Tue, 27 Nov 2007 21:20:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLE2gn032391 + for ; Tue, 27 Nov 2007 16:14:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLE2KP032389 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:14:02 -0500 +Date: Tue, 27 Nov 2007 16:14:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38809 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 16:20:54 2007 +X-DSPAM-Confidence: 0.9879 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38809 + +Author: dlhaines@umich.edu +Date: 2007-11-27 16:14:00 -0500 (Tue, 27 Nov 2007) +New Revision: 38809 + +Added: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties +Log: +CTools: add new configuration for the Winter O8 efficiency release. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From stuart.freeman@et.gatech.edu Tue Nov 27 16:13:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 16:13:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 16:13:53 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by casino.mail.umich.edu () with ESMTP id lARLDr5c023354; + Tue, 27 Nov 2007 16:13:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474C8887.69CA3.9034 ; + 27 Nov 2007 16:13:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5D0268BB97; + Tue, 27 Nov 2007 21:13:36 +0000 (GMT) +Message-ID: <200711272107.lARL7FdS032358@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256 + for ; + Tue, 27 Nov 2007 21:13:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 11D762B5F4 + for ; Tue, 27 Nov 2007 21:13:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARL7FA3032360 + for ; Tue, 27 Nov 2007 16:07:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARL7FdS032358 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:07:15 -0500 +Date: Tue, 27 Nov 2007 16:07:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f +To: source@collab.sakaiproject.org +From: stuart.freeman@et.gatech.edu +Subject: [sakai] svn commit: r38808 - assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 16:13:53 2007 +X-DSPAM-Confidence: 0.9937 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38808 + +Author: stuart.freeman@et.gatech.edu +Date: 2007-11-27 15:09:17 -0500 (Tue, 27 Nov 2007) +New Revision: 38808 + +Modified: +assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge fix for SAK-12164 into 2-4-x + +--(stuart@mothra:pts/0)--------------(/home/stuart/src/sakai_2-4-x/assignment)- +--(1450:Tue,27 Nov 07:$)-- svn merge -r 38120:38121 https://source.sakaiproject +org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentA +tion.java +--(stuart@mothra:pts/0)--------------(/home/stuart/src/sakai_2-4-x/assignment)- +--(1509:Tue,27 Nov 07:$)-- svn log -r 38120:38121 https://source.sakaiproject.o +g/svn/assignment/trunk +------------------------------------------------------------------------ +r38120 | zqian@umich.edu | 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007) | 1 lin + +fix to SAK-12178: Assignments: Log in as instructor, add assignment, in points +ield enter 10000000000, Alert message displayed, message should display correct +input value +------------------------------------------------------------------------ +r38121 | zqian@umich.edu | 2007-11-12 12:10:08 -0500 (Mon, 12 Nov 2007) | 1 lin + +fix to SAK-12164: 'Assign this grade...' function is writing over Grade data +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Nov 27 13:39:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 13:39:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 13:39:19 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by awakenings.mail.umich.edu () with ESMTP id lARIdIwA023666; + Tue, 27 Nov 2007 13:39:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474C6450.27D63.16307 ; + 27 Nov 2007 13:39:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C52C2752A4; + Tue, 27 Nov 2007 18:35:09 +0000 (GMT) +Message-ID: <200711271832.lARIWq97031890@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 371 + for ; + Tue, 27 Nov 2007 18:34:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1EA9D2B055 + for ; Tue, 27 Nov 2007 18:38:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARIWqDW031892 + for ; Tue, 27 Nov 2007 13:32:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARIWq97031890 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:32:52 -0500 +Date: Tue, 27 Nov 2007 13:32:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38806 - osp/tags/sakai_2-5-0_beta_GMT +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 13:39:19 2007 +X-DSPAM-Confidence: 0.8492 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38806 + +Author: chmaurer@iupui.edu +Date: 2007-11-27 13:32:51 -0500 (Tue, 27 Nov 2007) +New Revision: 38806 + +Modified: +osp/tags/sakai_2-5-0_beta_GMT/ +osp/tags/sakai_2-5-0_beta_GMT/.externals +osp/tags/sakai_2-5-0_beta_GMT/pom.xml +Log: +Creating 2.5 beta tag to include OSP, GMT and formbuilder + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Nov 27 13:31:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 13:31:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 13:31:53 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lARIVpg3013254; + Tue, 27 Nov 2007 13:31:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 474C6292.A1848.9649 ; + 27 Nov 2007 13:31:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2CDD38B92A; + Tue, 27 Nov 2007 18:27:46 +0000 (GMT) +Message-ID: <200711271825.lARIPalF031878@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 844 + for ; + Tue, 27 Nov 2007 18:27:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0C1522B055 + for ; Tue, 27 Nov 2007 18:31:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARIPahg031880 + for ; Tue, 27 Nov 2007 13:25:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARIPalF031878 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:25:36 -0500 +Date: Tue, 27 Nov 2007 13:25:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38805 - osp/tags +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 13:31:53 2007 +X-DSPAM-Confidence: 0.8491 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38805 + +Author: chmaurer@iupui.edu +Date: 2007-11-27 13:25:35 -0500 (Tue, 27 Nov 2007) +New Revision: 38805 + +Added: +osp/tags/sakai_2-5-0_beta_GMT/ +Log: +Creating 2.5 beta tag to include OSP, GMT and formbuilder + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Nov 27 13:21:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 13:21:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 13:21:20 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id lARILJjf006306; + Tue, 27 Nov 2007 13:21:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474C6019.4DF2F.18251 ; + 27 Nov 2007 13:21:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 981CC65377; + Tue, 27 Nov 2007 18:16:17 +0000 (GMT) +Message-ID: <200711271813.lARIDjPm031855@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 621 + for ; + Tue, 27 Nov 2007 18:15:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F01822B035 + for ; Tue, 27 Nov 2007 18:19:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARIDj7Y031857 + for ; Tue, 27 Nov 2007 13:13:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARIDjPm031855 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:13:45 -0500 +Date: Tue, 27 Nov 2007 13:13:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38804 - oncourse/trunk/src +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 13:21:20 2007 +X-DSPAM-Confidence: 0.8490 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38804 + +Author: cwen@iupui.edu +Date: 2007-11-27 13:13:44 -0500 (Tue, 27 Nov 2007) +New Revision: 38804 + +Removed: +oncourse/trunk/src/assignment/ +Log: +add assignment post-2-4 overlay. getting rid of it from trunk overlay for now. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Nov 27 13:20:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 13:20:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 13:20:23 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id lARIKMhj007490; + Tue, 27 Nov 2007 13:20:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474C5FDF.266AD.23776 ; + 27 Nov 2007 13:20:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25DE86FC7D; + Tue, 27 Nov 2007 18:15:26 +0000 (GMT) +Message-ID: <200711271757.lARHvoYv031821@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 54 + for ; + Tue, 27 Nov 2007 18:02:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 531152B02D + for ; Tue, 27 Nov 2007 18:03:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARHvp6L031823 + for ; Tue, 27 Nov 2007 12:57:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARHvoYv031821 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 12:57:50 -0500 +Date: Tue, 27 Nov 2007 12:57:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38802 - oncourse/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 13:20:23 2007 +X-DSPAM-Confidence: 0.8466 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38802 + +Author: cwen@iupui.edu +Date: 2007-11-27 12:57:49 -0500 (Tue, 27 Nov 2007) +New Revision: 38802 + +Added: +oncourse/branches/assignment_post-2-4/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Nov 27 13:20:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 13:20:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 13:20:19 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by sleepers.mail.umich.edu () with ESMTP id lARIKHQn005517; + Tue, 27 Nov 2007 13:20:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 474C5FD7.10B9C.30054 ; + 27 Nov 2007 13:20:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B95AA8B8ED; + Tue, 27 Nov 2007 18:15:24 +0000 (GMT) +Message-ID: <200711271812.lARICWT5031835@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 255 + for ; + Tue, 27 Nov 2007 18:14:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4F66A2B034 + for ; Tue, 27 Nov 2007 18:18:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARICXQW031837 + for ; Tue, 27 Nov 2007 13:12:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARICWT5031835 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:12:33 -0500 +Date: Tue, 27 Nov 2007 13:12:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38803 - in oncourse/branches/assignment_post-2-4: . assignment-impl assignment-impl/impl assignment-impl/impl/src assignment-impl/impl/src/java assignment-impl/impl/src/java/org assignment-impl/impl/src/java/org/sakaiproject assignment-impl/impl/src/java/org/sakaiproject/assignment assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 13:20:19 2007 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38803 + +Author: cwen@iupui.edu +Date: 2007-11-27 13:12:31 -0500 (Tue, 27 Nov 2007) +New Revision: 38803 + +Added: +oncourse/branches/assignment_post-2-4/assignment-impl/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/ +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +oncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +Log: +add assignment post-2-4 overlay. getting rid of it from trunk overlay for now. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 27 12:40:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 12:40:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 12:40:19 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lARHeIt9021661; + Tue, 27 Nov 2007 12:40:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 474C567D.9D26C.3924 ; + 27 Nov 2007 12:40:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 015488B8A0; + Tue, 27 Nov 2007 17:40:15 +0000 (GMT) +Message-ID: <200711271734.lARHY3AB031807@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 980 + for ; + Tue, 27 Nov 2007 17:40:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CB8392B02D + for ; Tue, 27 Nov 2007 17:40:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARHY3jt031809 + for ; Tue, 27 Nov 2007 12:34:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARHY3AB031807 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 12:34:03 -0500 +Date: Tue, 27 Nov 2007 12:34:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38801 - in component/branches/SAK-12134: component-api/component/src/java/org/sakaiproject/component/loader/shared component-loader component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats component-loader/tomcat5/component-loader-server/impl component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server component-loader/tomcat6/component-loader-server/impl component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 12:40:19 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38801 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-27 12:33:27 -0500 (Tue, 27 Nov 2007) +New Revision: 38801 + +Added: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/AbstractStats.java +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/MemoryStats.java +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/NewMemoryStats.java +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/OldMemoryStats.java +Removed: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java +Modified: +component/branches/SAK-12134/component-loader/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiContextConfig.java +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiLoader.java +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/SakaiContextConfig.java +Log: +Converted to work with tomcat 6 +fixed some issues with startup in tomcat5 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 27 11:37:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 11:37:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 11:37:05 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id lARGb4k0024988; + Tue, 27 Nov 2007 11:37:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474C4798.8AD93.7992 ; + 27 Nov 2007 11:36:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D873B8B731; + Tue, 27 Nov 2007 16:36:37 +0000 (GMT) +Message-ID: <200711271630.lARGUKQs031677@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 179 + for ; + Tue, 27 Nov 2007 16:36:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C4CE72AEAD + for ; Tue, 27 Nov 2007 16:36:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARGUKYr031679 + for ; Tue, 27 Nov 2007 11:30:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARGUKQs031677 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 11:30:20 -0500 +Date: Tue, 27 Nov 2007 11:30:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38800 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 11:37:05 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38800 + +Author: dlhaines@umich.edu +Date: 2007-11-27 11:30:19 -0500 (Tue, 27 Nov 2007) +New Revision: 38800 + +Modified: +ctools/trunk/builds/ctools_2-4/patches/SAK-12115.patch +Log: +CTools: update SAK-12115 patch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 27 11:02:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 11:02:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 11:02:51 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by score.mail.umich.edu () with ESMTP id lARG2oI1031553; + Tue, 27 Nov 2007 11:02:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474C3F9B.AA66C.18397 ; + 27 Nov 2007 11:02:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 27EEC8B6B9; + Tue, 27 Nov 2007 16:02:27 +0000 (GMT) +Message-ID: <200711271556.lARFuHGJ031602@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 469 + for ; + Tue, 27 Nov 2007 16:02:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 05C612AE98 + for ; Tue, 27 Nov 2007 16:02:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARFuHnc031604 + for ; Tue, 27 Nov 2007 10:56:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARFuHGJ031602 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 10:56:17 -0500 +Date: Tue, 27 Nov 2007 10:56:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38799 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 11:02:51 2007 +X-DSPAM-Confidence: 0.7603 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38799 + +Author: zqian@umich.edu +Date: 2007-11-27 10:56:16 -0500 (Tue, 27 Nov 2007) +New Revision: 38799 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm +Log: +merge in fix to SAK-11858 to post-2-4: svn merge -r 37700:37701 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 27 10:52:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 10:52:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 10:52:00 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by score.mail.umich.edu () with ESMTP id lARFpxqW023322; + Tue, 27 Nov 2007 10:51:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 474C3D18.64AB8.2862 ; + 27 Nov 2007 10:51:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 437058B4AF; + Tue, 27 Nov 2007 15:46:50 +0000 (GMT) +Message-ID: <200711271545.lARFjb9H031482@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 952 + for ; + Tue, 27 Nov 2007 15:46:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 224872AC06 + for ; Tue, 27 Nov 2007 15:51:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARFjbej031484 + for ; Tue, 27 Nov 2007 10:45:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARFjb9H031482 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 10:45:37 -0500 +Date: Tue, 27 Nov 2007 10:45:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38797 - in assignment/branches/post-2-4: assignment-impl/impl/src/bundle assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 10:52:00 2007 +X-DSPAM-Confidence: 0.9875 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38797 + +Author: zqian@umich.edu +Date: 2007-11-27 10:45:34 -0500 (Tue, 27 Nov 2007) +New Revision: 38797 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/bundle/assignment.properties +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge SAK-12186 into post-2-4 branch:svn merge -r 38185:38186 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 27 10:36:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 10:36:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 10:36:49 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lARFalGr026768; + Tue, 27 Nov 2007 10:36:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 474C3989.7FE8A.7516 ; + 27 Nov 2007 10:36:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3A6B84F3E3; + Tue, 27 Nov 2007 15:31:11 +0000 (GMT) +Message-ID: <200711271529.lARFTX2M031455@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 662 + for ; + Tue, 27 Nov 2007 15:30:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E67082AD62 + for ; Tue, 27 Nov 2007 15:35:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARFTY2j031457 + for ; Tue, 27 Nov 2007 10:29:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARFTX2M031455 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 10:29:33 -0500 +Date: Tue, 27 Nov 2007 10:29:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38796 - in assignment/branches/post-2-4: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 10:36:49 2007 +X-DSPAM-Confidence: 0.8499 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38796 + +Author: zqian@umich.edu +Date: 2007-11-27 10:29:31 -0500 (Tue, 27 Nov 2007) +New Revision: 38796 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merged in fixes to SAK-10667 into post-2-4 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Tue Nov 27 10:05:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 10:05:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 10:05:11 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lARF5Abc004495; + Tue, 27 Nov 2007 10:05:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 474C321F.DB55D.6116 ; + 27 Nov 2007 10:05:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B37D664EBB; + Tue, 27 Nov 2007 15:05:01 +0000 (GMT) +Message-ID: <200711271458.lAREwjwV031391@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 963 + for ; + Tue, 27 Nov 2007 15:04:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC7E62AC06 + for ; Tue, 27 Nov 2007 15:04:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAREwkDH031393 + for ; Tue, 27 Nov 2007 09:58:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAREwjwV031391 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 09:58:45 -0500 +Date: Tue, 27 Nov 2007 09:58:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38795 - in sam/branches/SAK-12065/samigo-app/src: java/org/sakaiproject/tool/assessment/ui/bean/evaluation java/org/sakaiproject/tool/assessment/ui/listener/evaluation webapp/jsf/evaluation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 10:05:11 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38795 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-27 09:58:21 -0500 (Tue, 27 Nov 2007) +New Revision: 38795 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp +Log: +SAK 12065 - Discrimination Statistics + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 27 09:52:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 09:52:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 09:52:53 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by casino.mail.umich.edu () with ESMTP id lAREqqbm024370; + Tue, 27 Nov 2007 09:52:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 474C2F3C.4F7A0.28631 ; + 27 Nov 2007 09:52:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5FB088B4DF; + Tue, 27 Nov 2007 14:52:45 +0000 (GMT) +Message-ID: <200711271446.lAREkURQ031338@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 623 + for ; + Tue, 27 Nov 2007 14:52:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 654C12ABDD + for ; Tue, 27 Nov 2007 14:52:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAREkUtE031340 + for ; Tue, 27 Nov 2007 09:46:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAREkURQ031338 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 09:46:30 -0500 +Date: Tue, 27 Nov 2007 09:46:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38794 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 09:52:53 2007 +X-DSPAM-Confidence: 0.8501 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38794 + +Author: dlhaines@umich.edu +Date: 2007-11-27 09:46:29 -0500 (Tue, 27 Nov 2007) +New Revision: 38794 + +Added: +ctools/trunk/builds/ctools_2-4/patches/SAK-12115.patch +Log: +CTools: commit initial patch for SAK-12115 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 27 09:43:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 09:43:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 09:43:30 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id lAREhTsw019872; + Tue, 27 Nov 2007 09:43:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474C2CFF.928B1.18231 ; + 27 Nov 2007 09:43:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BAD128B4D8; + Tue, 27 Nov 2007 14:43:11 +0000 (GMT) +Message-ID: <200711271436.lAREai0H031306@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 82 + for ; + Tue, 27 Nov 2007 14:42:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3144A2ABEB + for ; Tue, 27 Nov 2007 14:42:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAREaip8031308 + for ; Tue, 27 Nov 2007 09:36:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAREai0H031306 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 09:36:44 -0500 +Date: Tue, 27 Nov 2007 09:36:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38793 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 09:43:30 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38793 + +Author: zqian@umich.edu +Date: 2007-11-27 09:36:42 -0500 (Tue, 27 Nov 2007) +New Revision: 38793 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-11443 into post-2-4 branch: svn merge -r 35031:35032 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 27 05:57:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 27 Nov 2007 05:57:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 27 Nov 2007 05:57:15 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by jacknife.mail.umich.edu () with ESMTP id lARAvEbh026064; + Tue, 27 Nov 2007 05:57:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 474BF804.79BA8.31344 ; + 27 Nov 2007 05:57:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AC92B51700; + Tue, 27 Nov 2007 10:55:02 +0000 (GMT) +Message-ID: <200711271050.lARAopR0030978@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686 + for ; + Tue, 27 Nov 2007 10:54:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A27D2A2AB + for ; Tue, 27 Nov 2007 10:56:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARAop5w030980 + for ; Tue, 27 Nov 2007 05:50:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARAopR0030978 + for source@collab.sakaiproject.org; Tue, 27 Nov 2007 05:50:51 -0500 +Date: Tue, 27 Nov 2007 05:50:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38792 - in maven2/trunk: . sakai-plugin sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component sakai-plugin/src/main/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 27 05:57:15 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38792 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-27 05:50:34 -0500 (Tue, 27 Nov 2007) +New Revision: 38792 + +Added: +maven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat5.properties +maven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat6.properties +Modified: +maven2/trunk/pom.xml +maven2/trunk/sakai-plugin/ +maven2/trunk/sakai-plugin/pom.xml +maven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/AbstractComponentMojo.java +maven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/ComponentDeployMojo.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12275 +Added deployment profile, see SAK for details + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Nov 26 17:58:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 17:58:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 17:58:00 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by faithful.mail.umich.edu () with ESMTP id lAQMvx7b007909; + Mon, 26 Nov 2007 17:57:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474B4F6E.323D6.3791 ; + 26 Nov 2007 17:57:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 980FD8AA72; + Mon, 26 Nov 2007 22:46:16 +0000 (GMT) +Message-ID: <200711262251.lAQMpadG029478@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 594 + for ; + Mon, 26 Nov 2007 22:45:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 52CAE2A112 + for ; Mon, 26 Nov 2007 22:57:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQMpagB029480 + for ; Mon, 26 Nov 2007 17:51:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQMpadG029478 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 17:51:36 -0500 +Date: Mon, 26 Nov 2007 17:51:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38791 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 17:58:00 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38791 + +Author: aaronz@vt.edu +Date: 2007-11-26 17:51:30 -0500 (Mon, 26 Nov 2007) +New Revision: 38791 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRCollectionEdit.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java +Log: +SAK-12105: Switched some logging over to debug, fixed up lots of exception handling + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Mon Nov 26 12:57:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 12:57:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 12:57:38 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lAQHvaWc014967; + Mon, 26 Nov 2007 12:57:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 474B0909.5FAF1.23997 ; + 26 Nov 2007 12:57:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F04FF8A6CC; + Mon, 26 Nov 2007 17:57:27 +0000 (GMT) +Message-ID: <200711261751.lAQHpGPO028962@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 991 + for ; + Mon, 26 Nov 2007 17:57:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 91CBD29EE7 + for ; Mon, 26 Nov 2007 17:57:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQHpGgA028964 + for ; Mon, 26 Nov 2007 12:51:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQHpGPO028962 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 12:51:16 -0500 +Date: Mon, 26 Nov 2007 12:51:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r38790 - in metaobj/trunk: metaobj-impl/api-impl/src/bundle metaobj-tool/tool/src/bundle metaobj-tool/tool/src/webapp/WEB-INF metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/ioc/web +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 12:57:38 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38790 + +Author: john.ellis@rsmart.com +Date: 2007-11-26 12:51:07 -0500 (Mon, 26 Nov 2007) +New Revision: 38790 + +Removed: +metaobj/trunk/metaobj-impl/api-impl/src/bundle/web-context.properties +metaobj/trunk/metaobj-tool/tool/src/bundle/web-context.properties +metaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/ioc/web/WebContextLoader.java +metaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/ioc/web/WebContextLoaderListener.java +Modified: +metaobj/trunk/metaobj-tool/tool/src/webapp/WEB-INF/components.xml +metaobj/trunk/metaobj-tool/tool/src/webapp/WEB-INF/web.xml +Log: +SAK-12254 +changed over to use sakai's context loader + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Mon Nov 26 12:56:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 12:56:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 12:56:36 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by sleepers.mail.umich.edu () with ESMTP id lAQHuZxv026079; + Mon, 26 Nov 2007 12:56:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 474B08CC.6FDE.27895 ; + 26 Nov 2007 12:56:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8F10F8A6C7; + Mon, 26 Nov 2007 17:56:26 +0000 (GMT) +Message-ID: <200711261750.lAQHoHtF028938@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 455 + for ; + Mon, 26 Nov 2007 17:56:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0292529EE7 + for ; Mon, 26 Nov 2007 17:56:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQHoHhO028940 + for ; Mon, 26 Nov 2007 12:50:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQHoHtF028938 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 12:50:17 -0500 +Date: Mon, 26 Nov 2007 12:50:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r38789 - in osp/trunk: common/tool/src/bundle common/tool/src/webapp/WEB-INF glossary/tool/src/bundle glossary/tool/src/webapp/WEB-INF matrix/tool/src/bundle matrix/tool/src/webapp/WEB-INF portal/tool/src/bundle portal/tool/src/webapp/WEB-INF presentation/tool/src/bundle presentation/tool/src/webapp/WEB-INF xsltcharon/xsltcharon-portal/xsl-portal/src/bundle xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 12:56:36 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38789 + +Author: john.ellis@rsmart.com +Date: 2007-11-26 12:49:53 -0500 (Mon, 26 Nov 2007) +New Revision: 38789 + +Added: +osp/trunk/common/tool/src/webapp/WEB-INF/components.xml +osp/trunk/glossary/tool/src/webapp/WEB-INF/components.xml +osp/trunk/matrix/tool/src/webapp/WEB-INF/components.xml +osp/trunk/portal/tool/src/webapp/WEB-INF/components.xml +osp/trunk/presentation/tool/src/webapp/WEB-INF/components.xml +osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/components.xml +Removed: +osp/trunk/common/tool/src/bundle/web-context.properties +osp/trunk/glossary/tool/src/bundle/web-context.properties +osp/trunk/matrix/tool/src/bundle/web-context.properties +osp/trunk/portal/tool/src/bundle/web-context.properties +osp/trunk/presentation/tool/src/bundle/web-context.properties +osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/bundle/web-context.properties +Modified: +osp/trunk/common/tool/src/webapp/WEB-INF/web.xml +osp/trunk/glossary/tool/src/webapp/WEB-INF/web.xml +osp/trunk/matrix/tool/src/webapp/WEB-INF/web.xml +osp/trunk/portal/tool/src/webapp/WEB-INF/web.xml +osp/trunk/presentation/tool/src/webapp/WEB-INF/web.xml +osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/web.xml +Log: +SAK-12254 +changed to use the spring ContextLoader + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Nov 26 12:55:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 12:55:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 12:55:30 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id lAQHtUq3009586; + Mon, 26 Nov 2007 12:55:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 474B0888.48F0A.8245 ; + 26 Nov 2007 12:55:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2622A8A6C8; + Mon, 26 Nov 2007 17:55:19 +0000 (GMT) +Message-ID: <200711261749.lAQHn6Kc028926@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 637 + for ; + Mon, 26 Nov 2007 17:55:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5CB5229EE7 + for ; Mon, 26 Nov 2007 17:55:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQHn6hH028928 + for ; Mon, 26 Nov 2007 12:49:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQHn6Kc028926 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 12:49:06 -0500 +Date: Mon, 26 Nov 2007 12:49:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38788 - memory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 12:55:30 2007 +X-DSPAM-Confidence: 0.9846 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38788 + +Author: aaronz@vt.edu +Date: 2007-11-26 12:48:56 -0500 (Mon, 26 Nov 2007) +New Revision: 38788 + +Modified: +memory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test/HeavyLoadTestMemoryService.java +memory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +memory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test/LoadTestSakaiCaches.java +Log: +SAK-11913: Updated all the tests to take advantage of built in testrunner features + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Nov 26 11:28:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 11:28:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 11:28:25 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by panther.mail.umich.edu () with ESMTP id lAQGSOGu021891; + Mon, 26 Nov 2007 11:28:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474AF3DD.5AA3.18185 ; + 26 Nov 2007 11:27:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A1BD8A504; + Mon, 26 Nov 2007 16:27:06 +0000 (GMT) +Message-ID: <200711261620.lAQGKxHx028765@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 360 + for ; + Mon, 26 Nov 2007 16:26:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 64B4226189 + for ; Mon, 26 Nov 2007 16:26:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQGKxiJ028767 + for ; Mon, 26 Nov 2007 11:20:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQGKxHx028765 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 11:20:59 -0500 +Date: Mon, 26 Nov 2007 11:20:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38787 - in oncourse/trunk/src: . assignment assignment/assignment-impl assignment/assignment-impl/impl assignment/assignment-impl/impl/src assignment/assignment-impl/impl/src/java assignment/assignment-impl/impl/src/java/org assignment/assignment-impl/impl/src/java/org/sakaiproject assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment/assignment-tool assignment/assignment-tool/tool assignment/assignment-tool/tool/src assignment/assignment-tool/tool/src/java assignment/assignment-tool/tool/src/java/org assignment/assignment-tool/tool/src/java/org/sakaiproject assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 11:28:25 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38787 + +Author: cwen@iupui.edu +Date: 2007-11-26 11:20:57 -0500 (Mon, 26 Nov 2007) +New Revision: 38787 + +Added: +oncourse/trunk/src/assignment/ +oncourse/trunk/src/assignment/assignment-impl/ +oncourse/trunk/src/assignment/assignment-impl/impl/ +oncourse/trunk/src/assignment/assignment-impl/impl/src/ +oncourse/trunk/src/assignment/assignment-impl/impl/src/java/ +oncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/ +oncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/ +oncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/ +oncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/ +oncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +oncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +oncourse/trunk/src/assignment/assignment-tool/ +oncourse/trunk/src/assignment/assignment-tool/tool/ +oncourse/trunk/src/assignment/assignment-tool/tool/src/ +oncourse/trunk/src/assignment/assignment-tool/tool/src/java/ +oncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/ +oncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/ +oncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/ +oncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/ +oncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +post-24 for assignment and our ONC-258 fixes. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 26 10:33:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 10:33:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 10:33:38 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lAQFXbTK014699; + Mon, 26 Nov 2007 10:33:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474AE74B.C24B6.13891 ; + 26 Nov 2007 10:33:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 941788A315; + Mon, 26 Nov 2007 15:33:30 +0000 (GMT) +Message-ID: <200711261527.lAQFRQMi028613@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 890 + for ; + Mon, 26 Nov 2007 15:33:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1860929EAF + for ; Mon, 26 Nov 2007 15:33:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQFRQaI028615 + for ; Mon, 26 Nov 2007 10:27:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQFRQMi028613 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 10:27:26 -0500 +Date: Mon, 26 Nov 2007 10:27:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38786 - in site-manage/trunk: site-manage-api site-manage-api/api site-manage-api/api/src/java/org/sakaiproject/sitemanage/api site-manage-impl site-manage-impl/impl site-manage-impl/impl/src/bundle site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl site-manage-impl/pack/src/webapp/WEB-INF site-manage-tool/tool/src/bundle site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 10:33:38 2007 +X-DSPAM-Confidence: 0.8490 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38786 + +Author: zqian@umich.edu +Date: 2007-11-26 10:27:21 -0500 (Mon, 26 Nov 2007) +New Revision: 38786 + +Added: +site-manage/trunk/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/UserNotificationProvider.java +site-manage/trunk/site-manage-impl/impl/src/bundle/UserNotificationProvider.properties +site-manage/trunk/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/UserNotificationProviderImpl.java +Modified: +site-manage/trunk/site-manage-api/.classpath +site-manage/trunk/site-manage-api/api/pom.xml +site-manage/trunk/site-manage-impl/.classpath +site-manage/trunk/site-manage-impl/impl/pom.xml +site-manage/trunk/site-manage-impl/pack/src/webapp/WEB-INF/components.xml +site-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +merge in David Horwitz's fix to SAK-12256 into trunk:svn merge -r 38533:38696 https://source.sakaiproject.org/svn/site-manage/branches/SAK-12256/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Nov 26 10:32:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 10:32:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 10:32:59 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lAQFWwQZ008234; + Mon, 26 Nov 2007 10:32:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 474AE722.6A6E5.29117 ; + 26 Nov 2007 10:32:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8A45E8A2B9; + Mon, 26 Nov 2007 15:32:48 +0000 (GMT) +Message-ID: <200711261526.lAQFQil7028599@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 31 + for ; + Mon, 26 Nov 2007 15:32:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE96F29EAF + for ; Mon, 26 Nov 2007 15:32:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQFQiZu028601 + for ; Mon, 26 Nov 2007 10:26:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQFQil7028599 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 10:26:44 -0500 +Date: Mon, 26 Nov 2007 10:26:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38785 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 10:32:59 2007 +X-DSPAM-Confidence: 0.8421 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38785 + +Author: wagnermr@iupui.edu +Date: 2007-11-26 10:26:43 -0500 (Mon, 26 Nov 2007) +New Revision: 38785 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Nov 26 10:29:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 10:29:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 10:29:33 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by panther.mail.umich.edu () with ESMTP id lAQFTWRU010502; + Mon, 26 Nov 2007 10:29:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 474AE656.CB75D.15086 ; + 26 Nov 2007 10:29:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8752C89044; + Mon, 26 Nov 2007 15:29:24 +0000 (GMT) +Message-ID: <200711261523.lAQFNI5d028574@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 163 + for ; + Mon, 26 Nov 2007 15:29:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2B71829EAF + for ; Mon, 26 Nov 2007 15:29:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQFNIgf028576 + for ; Mon, 26 Nov 2007 10:23:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQFNI5d028574 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 10:23:18 -0500 +Date: Mon, 26 Nov 2007 10:23:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38784 - in content/branches/SAK-12105/content-impl-jcr: impl impl/src/java/org/sakaiproject/content/impl impl/src/java/org/sakaiproject/content/impl/jcr/migration impl/src/sql/mysql pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 10:29:33 2007 +X-DSPAM-Confidence: 0.8488 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38784 + +Author: aaronz@vt.edu +Date: 2007-11-26 10:23:02 -0500 (Mon, 26 Nov 2007) +New Revision: 38784 + +Removed: +content/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/prepare-jcr-migration-copy.sql +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/pom.xml +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java +content/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/setup-migration-dbtables.sql +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +Log: +SAK-12105: Fixed up the migration stuff to create tables automatically, Also cleaned up some logging + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Nov 26 10:02:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 10:02:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 10:02:31 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by godsend.mail.umich.edu () with ESMTP id lAQF2VVh020497; + Mon, 26 Nov 2007 10:02:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474AE001.38D4A.11739 ; + 26 Nov 2007 10:02:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 162998A321; + Mon, 26 Nov 2007 15:02:24 +0000 (GMT) +Message-ID: <200711261456.lAQEuDqb028457@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 673 + for ; + Mon, 26 Nov 2007 15:02:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AD32B1C3D2 + for ; Mon, 26 Nov 2007 15:02:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQEuDwe028459 + for ; Mon, 26 Nov 2007 09:56:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQEuDqb028457 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 09:56:13 -0500 +Date: Mon, 26 Nov 2007 09:56:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38783 - in syllabus/branches/sakai_2-4-x/syllabus-app/src: java/org/sakaiproject/tool/syllabus webapp/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 10:02:31 2007 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38783 + +Author: wagnermr@iupui.edu +Date: 2007-11-26 09:56:12 -0500 (Mon, 26 Nov 2007) +New Revision: 38783 + +Modified: +syllabus/branches/sakai_2-4-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +syllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus/main.jsp +Log: +Back out merge of r38086 and r38089 (SAK-11221) into 2-4-x due to SAK-12234 + +svn merge -r38089:38088 https://source.sakaiproject.org/svn/syllabus/branches/sakai_2-4-x +U syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +U syllabus-app/src/webapp/syllabus/main.jsp + +svn merge -r38086:38085 https://source.sakaiproject.org/svn/syllabus/branches/sakai_2-4-x +G syllabus-app/src/webapp/syllabus/main.jsp + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Mon Nov 26 09:56:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 09:56:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 09:56:39 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by chaos.mail.umich.edu () with ESMTP id lAQEuclL025215; + Mon, 26 Nov 2007 09:56:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 474ADE9F.E084E.23458 ; + 26 Nov 2007 09:56:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E17DF62927; + Mon, 26 Nov 2007 14:56:28 +0000 (GMT) +Message-ID: <200711261450.lAQEoLmv028397@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 826 + for ; + Mon, 26 Nov 2007 14:56:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D11E61C3D2 + for ; Mon, 26 Nov 2007 14:56:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQEoLS7028399 + for ; Mon, 26 Nov 2007 09:50:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQEoLmv028397 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 09:50:21 -0500 +Date: Mon, 26 Nov 2007 09:50:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38782 - in sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui: bean/evaluation listener/evaluation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 09:56:39 2007 +X-DSPAM-Confidence: 0.9796 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38782 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-26 09:50:06 -0500 (Mon, 26 Nov 2007) +New Revision: 38782 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +Log: +SAK-12065 Discrimination Stats + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Mon Nov 26 09:42:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 09:42:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 09:42:30 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lAQEgTGV001098; + Mon, 26 Nov 2007 09:42:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 474ADB49.26CF4.12799 ; + 26 Nov 2007 09:42:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 29F1A5952F; + Mon, 26 Nov 2007 14:42:22 +0000 (GMT) +Message-ID: <200711261436.lAQEa8ut028318@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 421 + for ; + Mon, 26 Nov 2007 14:42:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A4E0D239DA + for ; Mon, 26 Nov 2007 14:42:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQEa8mk028320 + for ; Mon, 26 Nov 2007 09:36:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQEa8ut028318 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 09:36:08 -0500 +Date: Mon, 26 Nov 2007 09:36:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r38781 - util/trunk/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 09:42:30 2007 +X-DSPAM-Confidence: 0.6940 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38781 + +Author: lance@indiana.edu +Date: 2007-11-26 09:36:07 -0500 (Mon, 26 Nov 2007) +New Revision: 38781 + +Modified: +util/trunk/util-util/util/src/java/org/sakaiproject/util/FormattedText.java +Log: +SAK-12147 +http://jira.sakaiproject.org/jira/browse/SAK-12147 +Removal of FormatedText.parseFormatedText(String, Strinbuffer) breaks backward compatibility + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Mon Nov 26 06:25:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 26 Nov 2007 06:25:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 26 Nov 2007 06:25:13 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lAQBPDd4005659; + Mon, 26 Nov 2007 06:25:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474AAD13.16DE.1563 ; + 26 Nov 2007 06:25:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 48CBB89AC4; + Mon, 26 Nov 2007 11:25:03 +0000 (GMT) +Message-ID: <200711261118.lAQBIvRs028021@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 586 + for ; + Mon, 26 Nov 2007 11:24:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0B247235FF + for ; Mon, 26 Nov 2007 11:24:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQBIwFk028023 + for ; Mon, 26 Nov 2007 06:18:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQBIvRs028021 + for source@collab.sakaiproject.org; Mon, 26 Nov 2007 06:18:57 -0500 +Date: Mon, 26 Nov 2007 06:18:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38780 - content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 26 06:25:13 2007 +X-DSPAM-Confidence: 0.9771 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38780 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-26 06:18:53 -0500 (Mon, 26 Nov 2007) +New Revision: 38780 + +Modified: +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-12105 updated components + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Sun Nov 25 15:55:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 25 Nov 2007 15:55:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 25 Nov 2007 15:55:31 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by panther.mail.umich.edu () with ESMTP id lAPKtVwJ032536; + Sun, 25 Nov 2007 15:55:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4749E13D.7CCCB.10690 ; + 25 Nov 2007 15:55:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F091952498; + Sun, 25 Nov 2007 20:55:22 +0000 (GMT) +Message-ID: <200711252049.lAPKnHi6025943@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 921 + for ; + Sun, 25 Nov 2007 20:55:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2153923862 + for ; Sun, 25 Nov 2007 20:55:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAPKnH4o025945 + for ; Sun, 25 Nov 2007 15:49:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAPKnHi6025943 + for source@collab.sakaiproject.org; Sun, 25 Nov 2007 15:49:17 -0500 +Date: Sun, 25 Nov 2007 15:49:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [sakai] svn commit: r38779 - db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 25 15:55:31 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38779 + +Author: ggolden@umich.edu +Date: 2007-11-25 15:49:15 -0500 (Sun, 25 Nov 2007) +New Revision: 38779 + +Modified: +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +Log: +SAK-12264 - rolled back change - svn merge -r38776:38775 https://source.sakaiproject.org/svn/db/branches/sakai_2-4-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Sun Nov 25 15:53:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 25 Nov 2007 15:53:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 25 Nov 2007 15:53:29 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id lAPKrSvv006588; + Sun, 25 Nov 2007 15:53:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4749E0C2.4B851.20828 ; + 25 Nov 2007 15:53:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8695C52498; + Sun, 25 Nov 2007 20:53:37 +0000 (GMT) +Message-ID: <200711252047.lAPKl8L6025931@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 290 + for ; + Sun, 25 Nov 2007 20:53:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4DAC723862 + for ; Sun, 25 Nov 2007 20:53:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAPKl8Hq025933 + for ; Sun, 25 Nov 2007 15:47:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAPKl8L6025931 + for source@collab.sakaiproject.org; Sun, 25 Nov 2007 15:47:08 -0500 +Date: Sun, 25 Nov 2007 15:47:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [sakai] svn commit: r38778 - db/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 25 15:53:29 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38778 + +Author: ggolden@umich.edu +Date: 2007-11-25 15:47:06 -0500 (Sun, 25 Nov 2007) +New Revision: 38778 + +Modified: +db/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +Log: +SAK-12264 - rolling back change - svn merge -r38775:38774 https://source.sakaiproject.org/svn/db/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Sun Nov 25 01:56:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 25 Nov 2007 01:56:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 25 Nov 2007 01:56:34 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by casino.mail.umich.edu () with ESMTP id lAP6uXmd028252; + Sun, 25 Nov 2007 01:56:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47491C9B.53636.21289 ; + 25 Nov 2007 01:56:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2526655126; + Sun, 25 Nov 2007 06:40:20 +0000 (GMT) +Message-ID: <200711250650.lAP6oI4L012601@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 100 + for ; + Sun, 25 Nov 2007 06:40:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2575A297BD + for ; Sun, 25 Nov 2007 06:56:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP6oIbC012603 + for ; Sun, 25 Nov 2007 01:50:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP6oI4L012601 + for source@collab.sakaiproject.org; Sun, 25 Nov 2007 01:50:18 -0500 +Date: Sun, 25 Nov 2007 01:50:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38777 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 25 01:56:34 2007 +X-DSPAM-Confidence: 0.9775 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38777 + +Author: cwen@iupui.edu +Date: 2007-11-25 01:50:14 -0500 (Sun, 25 Nov 2007) +New Revision: 38777 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +Log: +ONC-258 => filter out garbled characters after tag + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Sat Nov 24 23:24:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 24 Nov 2007 23:24:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 24 Nov 2007 23:24:19 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id lAP4OJQv026972; + Sat, 24 Nov 2007 23:24:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4748F8ED.DD13F.1548 ; + 24 Nov 2007 23:24:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 64DC96A47B; + Sun, 25 Nov 2007 04:24:12 +0000 (GMT) +Message-ID: <200711250418.lAP4I8rJ012520@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284 + for ; + Sun, 25 Nov 2007 04:23:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 99AF624F80 + for ; Sun, 25 Nov 2007 04:23:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP4I855012522 + for ; Sat, 24 Nov 2007 23:18:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP4I8rJ012520 + for source@collab.sakaiproject.org; Sat, 24 Nov 2007 23:18:08 -0500 +Date: Sat, 24 Nov 2007 23:18:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [sakai] svn commit: r38776 - db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 24 23:24:19 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38776 + +Author: ggolden@umich.edu +Date: 2007-11-24 23:18:07 -0500 (Sat, 24 Nov 2007) +New Revision: 38776 + +Modified: +db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +Log: +SAK-12264 - support for Date type in SqlService + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Sat Nov 24 23:00:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 24 Nov 2007 23:00:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 24 Nov 2007 23:00:11 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id lAP40BPP023943; + Sat, 24 Nov 2007 23:00:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4748F346.2511F.8955 ; + 24 Nov 2007 23:00:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0312C5DD75; + Sun, 25 Nov 2007 04:00:00 +0000 (GMT) +Message-ID: <200711250353.lAP3rwYj012495@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 915 + for ; + Sun, 25 Nov 2007 03:59:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 23F4E24F6F + for ; Sun, 25 Nov 2007 03:59:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP3rwkZ012497 + for ; Sat, 24 Nov 2007 22:53:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP3rwYj012495 + for source@collab.sakaiproject.org; Sat, 24 Nov 2007 22:53:58 -0500 +Date: Sat, 24 Nov 2007 22:53:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [sakai] svn commit: r38775 - db/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 24 23:00:11 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38775 + +Author: ggolden@umich.edu +Date: 2007-11-24 22:53:56 -0500 (Sat, 24 Nov 2007) +New Revision: 38775 + +Modified: +db/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +Log: +SAK-12264 - support for Date type in SqlService + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Sat Nov 24 21:35:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 24 Nov 2007 21:35:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 24 Nov 2007 21:35:30 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lAP2ZTbC023801; + Sat, 24 Nov 2007 21:35:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4748DF6C.3E07D.31479 ; + 24 Nov 2007 21:35:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 742306F30F; + Sun, 25 Nov 2007 02:35:28 +0000 (GMT) +Message-ID: <200711250229.lAP2T7KW012445@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 983 + for ; + Sun, 25 Nov 2007 02:35:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F294524CEC + for ; Sun, 25 Nov 2007 02:34:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP2T7oO012447 + for ; Sat, 24 Nov 2007 21:29:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP2T7KW012445 + for source@collab.sakaiproject.org; Sat, 24 Nov 2007 21:29:07 -0500 +Date: Sat, 24 Nov 2007 21:29:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [sakai] svn commit: r38774 - db/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 24 21:35:30 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38774 + +Author: ggolden@umich.edu +Date: 2007-11-24 21:29:05 -0500 (Sat, 24 Nov 2007) +New Revision: 38774 + +Modified: +db/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +Log: +SAK-12264 reversed accidental tag checkin - svn merge -r38773:38772 https://source.sakaiproject.org/svn/db/tags/sakai_2-5-0_beta + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Sat Nov 24 21:29:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 24 Nov 2007 21:29:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 24 Nov 2007 21:29:01 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lAP2T0LM003960; + Sat, 24 Nov 2007 21:29:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4748DDE2.BD4DA.18012 ; + 24 Nov 2007 21:28:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0B06262584; + Sun, 25 Nov 2007 02:28:52 +0000 (GMT) +Message-ID: <200711250222.lAP2Mjow012335@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365 + for ; + Sun, 25 Nov 2007 02:28:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E518F24F0B + for ; Sun, 25 Nov 2007 02:28:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP2MjeO012337 + for ; Sat, 24 Nov 2007 21:22:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP2Mjow012335 + for source@collab.sakaiproject.org; Sat, 24 Nov 2007 21:22:45 -0500 +Date: Sat, 24 Nov 2007 21:22:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [sakai] svn commit: r38773 - db/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 24 21:29:01 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38773 + +Author: ggolden@umich.edu +Date: 2007-11-24 21:22:43 -0500 (Sat, 24 Nov 2007) +New Revision: 38773 + +Modified: +db/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java +Log: +SAK-12264 - support for Date type in SqlService + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Fri Nov 23 04:27:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 23 Nov 2007 04:27:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 23 Nov 2007 04:27:02 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by score.mail.umich.edu () with ESMTP id lAN9Qx0R026227; + Fri, 23 Nov 2007 04:26:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47469CDE.3FC67.14180 ; + 23 Nov 2007 04:26:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A137886BAF; + Fri, 23 Nov 2007 09:26:57 +0000 (GMT) +Message-ID: <200711230903.lAN93Iwe009449@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 803 + for ; + Fri, 23 Nov 2007 09:09:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DCDB128F3A + for ; Fri, 23 Nov 2007 09:09:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAN93IlP009451 + for ; Fri, 23 Nov 2007 04:03:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAN93Iwe009449 + for source@collab.sakaiproject.org; Fri, 23 Nov 2007 04:03:18 -0500 +Date: Fri, 23 Nov 2007 04:03:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38697 - site-manage/branches/SAK-12256/site-manage-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 23 04:27:02 2007 +X-DSPAM-Confidence: 0.9800 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38697 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-23 04:03:04 -0500 (Fri, 23 Nov 2007) +New Revision: 38697 + +Added: +site-manage/branches/SAK-12256/site-manage-impl/impl/src/bundle/UserNotificationProvider.properties +Log: +SAK-11256 include the resource bundle + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Wed Nov 21 13:31:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 13:31:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 13:31:53 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by casino.mail.umich.edu () with ESMTP id lALIVmKL011930; + Wed, 21 Nov 2007 13:31:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47447974.99468.5708 ; + 21 Nov 2007 13:31:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 84BE184F21; + Wed, 21 Nov 2007 18:29:15 +0000 (GMT) +Message-ID: <200711211825.lALIPNXD005460@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 652 + for ; + Wed, 21 Nov 2007 18:29:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B53326376 + for ; Wed, 21 Nov 2007 18:30:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALIPNIH005462 + for ; Wed, 21 Nov 2007 13:25:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALIPNXD005460 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 13:25:23 -0500 +Date: Wed, 21 Nov 2007 13:25:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38541 - in component/branches/SAK-12166: component-api/component/src/java/org/sakaiproject/component/impl/spring component-api/component/src/java/org/sakaiproject/component/impl/spring/support component-impl/integration-test/src/test/java/org/sakaiproject/component +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 13:31:53 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38541 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-21 13:24:57 -0500 (Wed, 21 Nov 2007) +New Revision: 38541 + +Modified: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +Log: +Implemented "Bean demotion" semantics as part of SAK-8315 design +Refactored core context into "config context" plus core - SkeletalBeanFactory resimplified + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 12:40:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 12:40:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 12:40:55 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id lALHesFb003001; + Wed, 21 Nov 2007 12:40:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47446DA0.3628.27804 ; + 21 Nov 2007 12:40:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 99CAB853B1; + Wed, 21 Nov 2007 17:40:53 +0000 (GMT) +Message-ID: <200711211734.lALHYsH2005434@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 264 + for ; + Wed, 21 Nov 2007 17:40:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 82AFB26607 + for ; Wed, 21 Nov 2007 17:40:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHYst1005436 + for ; Wed, 21 Nov 2007 12:34:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHYsH2005434 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:34:54 -0500 +Date: Wed, 21 Nov 2007 12:34:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38540 - in component/branches/SAK-12134/component-loader: . tomcat5/component-loader-server/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 12:40:55 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38540 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 12:34:48 -0500 (Wed, 21 Nov 2007) +New Revision: 38540 + +Modified: +component/branches/SAK-12134/component-loader/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/pom.xml +Log: +Added Tomcat 5 and 6 activation profiles to automatically target the correct version. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 12:29:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 12:29:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 12:29:22 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lALHTLJM023010; + Wed, 21 Nov 2007 12:29:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47446AEC.5B545.12724 ; + 21 Nov 2007 12:29:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 84B067C6CB; + Wed, 21 Nov 2007 17:29:21 +0000 (GMT) +Message-ID: <200711211723.lALHNJg0005389@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 45 + for ; + Wed, 21 Nov 2007 17:29:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CD3591D594 + for ; Wed, 21 Nov 2007 17:28:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHNJlD005391 + for ; Wed, 21 Nov 2007 12:23:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHNJg0005389 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:23:19 -0500 +Date: Wed, 21 Nov 2007 12:23:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38539 - in component/branches/SAK-12134: component-impl/impl component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5 component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 12:29:22 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38539 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 12:23:06 -0500 (Wed, 21 Nov 2007) +New Revision: 38539 + +Added: +component/branches/SAK-12134/component-impl/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/ +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/ +Removed: +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/ +Modified: +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiContextConfig.java +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiLoader.java +Log: +Refactored into distinct packages + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 12:20:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 12:20:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 12:20:02 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by score.mail.umich.edu () with ESMTP id lALHK1Ri026747; + Wed, 21 Nov 2007 12:20:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 474468AD.81D17.12423 ; + 21 Nov 2007 12:19:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A51A55990B; + Wed, 21 Nov 2007 17:19:47 +0000 (GMT) +Message-ID: <200711211713.lALHDggx005370@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 51 + for ; + Wed, 21 Nov 2007 17:19:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 31B0823B18 + for ; Wed, 21 Nov 2007 17:19:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHDgpD005372 + for ; Wed, 21 Nov 2007 12:13:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHDggx005370 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:13:42 -0500 +Date: Wed, 21 Nov 2007 12:13:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38538 - in component/branches/SAK-12134: component-api/api component-api/component component-impl/pack component-loader/component-loader-common/impl component-loader/tomcat5/component-loader-server/impl component-loader/tomcat6/component-loader-server/impl component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6 component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 12:20:02 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38538 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 12:13:13 -0500 (Wed, 21 Nov 2007) +New Revision: 38538 + +Added: +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/ +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/ +Removed: +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/ +Modified: +component/branches/SAK-12134/component-api/api/.classpath +component/branches/SAK-12134/component-api/component/.classpath +component/branches/SAK-12134/component-impl/pack/.classpath +component/branches/SAK-12134/component-loader/component-loader-common/impl/.classpath +component/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/SakaiContextConfig.java +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/SakaiLoader.java +Log: +Created tomcat 6 loader + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Wed Nov 21 12:16:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 12:16:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 12:16:38 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by casino.mail.umich.edu () with ESMTP id lALHGbm3029156; + Wed, 21 Nov 2007 12:16:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 474467ED.E0064.26267 ; + 21 Nov 2007 12:16:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A63D785283; + Wed, 21 Nov 2007 17:16:33 +0000 (GMT) +Message-ID: <200711211710.lALHAYE8005358@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 579 + for ; + Wed, 21 Nov 2007 17:16:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 60B6023B18 + for ; Wed, 21 Nov 2007 17:16:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHAZHU005360 + for ; Wed, 21 Nov 2007 12:10:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHAYE8005358 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:10:34 -0500 +Date: Wed, 21 Nov 2007 12:10:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38537 - in component/branches/SAK-12166: component-api/component/src/config/org/sakaiproject/config component-api/component/src/java/org/sakaiproject/component/impl/spring/support component-impl/integration-test component-impl/integration-test/src/test/java/org/sakaiproject/component +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 12:16:38 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38537 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-21 12:10:06 -0500 (Wed, 21 Nov 2007) +New Revision: 38537 + +Modified: +component/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java +component/branches/SAK-12166/component-impl/integration-test/pom.xml +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +Log: +Corrected handling of override ordering and factory beans +All integration tests now run, with the exception of "alias" test (one test changed semantics) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 12:07:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 12:07:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 12:07:17 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by awakenings.mail.umich.edu () with ESMTP id lALH7GIw014494; + Wed, 21 Nov 2007 12:07:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 474465BE.D3634.26463 ; + 21 Nov 2007 12:07:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9942885092; + Wed, 21 Nov 2007 17:07:14 +0000 (GMT) +Message-ID: <200711211701.lALH14Bj005343@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25 + for ; + Wed, 21 Nov 2007 17:06:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A82A23B0D + for ; Wed, 21 Nov 2007 17:06:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALH14ax005345 + for ; Wed, 21 Nov 2007 12:01:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALH14Bj005343 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:01:04 -0500 +Date: Wed, 21 Nov 2007 12:01:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38536 - in component/branches/SAK-12134: component-api/api component-api/api/.settings component-api/component component-api/component/.settings component-impl/impl component-impl/impl/.settings component-impl/pack component-impl/pack/.settings component-loader component-loader/component-loader-common component-loader/component-loader-common/impl component-loader/tomcat5 component-loader/tomcat5/component-loader-server/impl component-loader/tomcat6 component-loader/tomcat6/component-loader-server/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 12:07:17 2007 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38536 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 12:00:20 -0500 (Wed, 21 Nov 2007) +New Revision: 38536 + +Added: +component/branches/SAK-12134/component-api/api/.classpath +component/branches/SAK-12134/component-api/api/.project +component/branches/SAK-12134/component-api/api/.settings/ +component/branches/SAK-12134/component-api/api/.settings/org.eclipse.jdt.core.prefs +component/branches/SAK-12134/component-api/component/.classpath +component/branches/SAK-12134/component-api/component/.project +component/branches/SAK-12134/component-api/component/.settings/ +component/branches/SAK-12134/component-api/component/.settings/org.eclipse.jdt.core.prefs +component/branches/SAK-12134/component-impl/impl/.project +component/branches/SAK-12134/component-impl/impl/.settings/ +component/branches/SAK-12134/component-impl/impl/.settings/org.eclipse.jdt.core.prefs +component/branches/SAK-12134/component-impl/pack/.classpath +component/branches/SAK-12134/component-impl/pack/.project +component/branches/SAK-12134/component-impl/pack/.settings/ +component/branches/SAK-12134/component-impl/pack/.settings/org.eclipse.jdt.core.prefs +component/branches/SAK-12134/component-loader/component-loader-common/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/ +component/branches/SAK-12134/component-loader/tomcat5/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/pom.xml +Removed: +component/branches/SAK-12134/component-loader/component-loader-common/impl/ +component/branches/SAK-12134/component-loader/tomcat5/component-loader-common/ +component/branches/SAK-12134/component-loader/tomcat6/component-loader-common/ +Modified: +component/branches/SAK-12134/component-loader/component-loader-common/impl/.project +component/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml +component/branches/SAK-12134/component-loader/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.project +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.project +Log: +Reorganized to get back share common lib + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 11:59:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 11:59:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 11:59:21 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id lALGxKwm025549; + Wed, 21 Nov 2007 11:59:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474463E0.5926B.24332 ; + 21 Nov 2007 11:59:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 79A8E852EB; + Wed, 21 Nov 2007 16:59:04 +0000 (GMT) +Message-ID: <200711211653.lALGr0MF005323@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 50 + for ; + Wed, 21 Nov 2007 16:58:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F3BD823AAC + for ; Wed, 21 Nov 2007 16:58:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALGr0PR005325 + for ; Wed, 21 Nov 2007 11:53:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALGr0MF005323 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 11:53:00 -0500 +Date: Wed, 21 Nov 2007 11:53:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38535 - in component/branches/SAK-12134/component-loader: . tomcat5/component-loader-common/impl tomcat5/component-loader-server/impl tomcat6 tomcat6/component-loader-common/impl tomcat6/component-loader-server/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 11:59:21 2007 +X-DSPAM-Confidence: 0.8465 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38535 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 11:52:42 -0500 (Wed, 21 Nov 2007) +New Revision: 38535 + +Added: +component/branches/SAK-12134/component-loader/tomcat6/component-loader-common/ +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/ +Modified: +component/branches/SAK-12134/component-loader/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/component-loader-common/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat5/component-loader-common/impl/.project +component/branches/SAK-12134/component-loader/tomcat5/component-loader-common/impl/pom.xml +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.project +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/component-loader-common/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat6/component-loader-common/impl/.project +component/branches/SAK-12134/component-loader/tomcat6/component-loader-common/impl/pom.xml +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.project +component/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/pom.xml +Log: +Test New structure forced to commit + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 11:45:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 11:45:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 11:45:20 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by fan.mail.umich.edu () with ESMTP id lALGjJ4L014399; + Wed, 21 Nov 2007 11:45:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4744609A.B6AB.8095 ; + 21 Nov 2007 11:45:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ED20384FBD; + Wed, 21 Nov 2007 16:45:14 +0000 (GMT) +Message-ID: <200711211639.lALGdIME005311@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 64 + for ; + Wed, 21 Nov 2007 16:44:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9E79B265A3 + for ; Wed, 21 Nov 2007 16:44:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALGdJZp005313 + for ; Wed, 21 Nov 2007 11:39:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALGdIME005311 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 11:39:18 -0500 +Date: Wed, 21 Nov 2007 11:39:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38534 - in component/branches/SAK-12134/component-loader: . tomcat5 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 11:45:20 2007 +X-DSPAM-Confidence: 0.9803 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38534 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 11:39:11 -0500 (Wed, 21 Nov 2007) +New Revision: 38534 + +Added: +component/branches/SAK-12134/component-loader/tomcat5/ +component/branches/SAK-12134/component-loader/tomcat5/component-loader-common/ +component/branches/SAK-12134/component-loader/tomcat5/component-loader-server/ +component/branches/SAK-12134/component-loader/tomcat6/ +Removed: +component/branches/SAK-12134/component-loader/component-loader-common-tc5/ +component/branches/SAK-12134/component-loader/component-loader-server/ +Log: +Reorg for tomcat6 builds + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Nov 21 11:26:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 11:26:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 11:26:30 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lALGQTqB000479; + Wed, 21 Nov 2007 11:26:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47445C2F.37DCC.30516 ; + 21 Nov 2007 11:26:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EFDC68512F; + Wed, 21 Nov 2007 16:26:17 +0000 (GMT) +Message-ID: <200711211620.lALGKJaa005297@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242 + for ; + Wed, 21 Nov 2007 16:25:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0DB1426593 + for ; Wed, 21 Nov 2007 16:25:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALGKJTp005299 + for ; Wed, 21 Nov 2007 11:20:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALGKJaa005297 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 11:20:19 -0500 +Date: Wed, 21 Nov 2007 11:20:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38533 - in site-manage/branches/SAK-12256: site-manage-api site-manage-api/api site-manage-api/api/src/java/org/sakaiproject/sitemanage/api site-manage-impl site-manage-impl/impl site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl site-manage-impl/pack/src/webapp/WEB-INF site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 11:26:30 2007 +X-DSPAM-Confidence: 0.9846 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38533 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-21 11:19:32 -0500 (Wed, 21 Nov 2007) +New Revision: 38533 + +Added: +site-manage/branches/SAK-12256/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/UserNotificationProvider.java +site-manage/branches/SAK-12256/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/UserNotificationProviderImpl.java +Modified: +site-manage/branches/SAK-12256/site-manage-api/.classpath +site-manage/branches/SAK-12256/site-manage-api/api/pom.xml +site-manage/branches/SAK-12256/site-manage-impl/.classpath +site-manage/branches/SAK-12256/site-manage-impl/impl/pom.xml +site-manage/branches/SAK-12256/site-manage-impl/pack/src/webapp/WEB-INF/components.xml +site-manage/branches/SAK-12256/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +SAK-12256 first pass need need to fix the resource messages though + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 11:00:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 11:00:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 11:00:16 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by brazil.mail.umich.edu () with ESMTP id lALG0FSl014809; + Wed, 21 Nov 2007 11:00:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4744560A.7FBDF.32622 ; + 21 Nov 2007 11:00:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 54B9B84B91; + Wed, 21 Nov 2007 16:00:05 +0000 (GMT) +Message-ID: <200711211554.lALFsCTn005272@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 722 + for ; + Wed, 21 Nov 2007 15:59:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 771BB26597 + for ; Wed, 21 Nov 2007 15:59:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALFsCii005274 + for ; Wed, 21 Nov 2007 10:54:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALFsCTn005272 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 10:54:12 -0500 +Date: Wed, 21 Nov 2007 10:54:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38532 - in component/branches/SAK-12134/component-loader: . component-loader-server/impl/src/java/org/sakaiproject/component/loader/server +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 11:00:16 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38532 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 10:54:03 -0500 (Wed, 21 Nov 2007) +New Revision: 38532 + +Added: +component/branches/SAK-12134/component-loader/component-loader-common-tc5/ +Removed: +component/branches/SAK-12134/component-loader/component-loader-common/ +Modified: +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java +Log: +Preparing to tomcat 6 versions. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 21 10:19:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 10:19:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 10:19:57 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by panther.mail.umich.edu () with ESMTP id lALFJujG027084; + Wed, 21 Nov 2007 10:19:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47444C96.8D87A.7621 ; + 21 Nov 2007 10:19:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B6B6184FF4; + Wed, 21 Nov 2007 15:19:48 +0000 (GMT) +Message-ID: <200711211513.lALFDrBl005258@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 927 + for ; + Wed, 21 Nov 2007 15:19:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 57B2D2638C + for ; Wed, 21 Nov 2007 15:19:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALFDrZj005260 + for ; Wed, 21 Nov 2007 10:13:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALFDrBl005258 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 10:13:53 -0500 +Date: Wed, 21 Nov 2007 10:13:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38531 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 10:19:57 2007 +X-DSPAM-Confidence: 0.9886 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38531 + +Author: aaronz@vt.edu +Date: 2007-11-21 10:13:49 -0500 (Wed, 21 Nov 2007) +New Revision: 38531 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Fixed up the test to emulate requests on large scale collection count so that the legacy performance is tested better + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 21 10:04:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 10:04:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 10:04:08 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lALF47Hc006453; + Wed, 21 Nov 2007 10:04:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474448E1.8C071.10741 ; + 21 Nov 2007 10:04:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 60987833DE; + Wed, 21 Nov 2007 15:03:58 +0000 (GMT) +Message-ID: <200711211458.lALEw5Xv005237@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 502 + for ; + Wed, 21 Nov 2007 15:03:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A76520085 + for ; Wed, 21 Nov 2007 15:03:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALEw5w2005239 + for ; Wed, 21 Nov 2007 09:58:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALEw5Xv005237 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:58:05 -0500 +Date: Wed, 21 Nov 2007 09:58:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38530 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 10:04:08 2007 +X-DSPAM-Confidence: 0.8489 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38530 + +Author: aaronz@vt.edu +Date: 2007-11-21 09:58:00 -0500 (Wed, 21 Nov 2007) +New Revision: 38530 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Fixed up the test to emulate requests so that the legacy performance is tested better + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Nov 21 09:16:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 09:16:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 09:16:50 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lALEGnJG031478; + Wed, 21 Nov 2007 09:16:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47443DCA.BD7A3.8540 ; + 21 Nov 2007 09:16:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0E34C84ED1; + Wed, 21 Nov 2007 14:13:41 +0000 (GMT) +Message-ID: <200711211410.lALEApHN005122@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 148 + for ; + Wed, 21 Nov 2007 14:13:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 03CC4238CE + for ; Wed, 21 Nov 2007 14:16:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALEApbC005124 + for ; Wed, 21 Nov 2007 09:10:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALEApHN005122 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:10:51 -0500 +Date: Wed, 21 Nov 2007 09:10:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38529 - site-manage/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 09:16:50 2007 +X-DSPAM-Confidence: 0.8465 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38529 + +Author: rjlowe@iupui.edu +Date: 2007-11-21 09:10:50 -0500 (Wed, 21 Nov 2007) +New Revision: 38529 + +Added: +site-manage/branches/SAK-12256/ +Log: +New branch for SAK-12256 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Nov 21 09:14:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 09:14:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 09:14:35 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lALEEY6v025202; + Wed, 21 Nov 2007 09:14:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47443D44.AD7F5.9180 ; + 21 Nov 2007 09:14:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F59384ECD; + Wed, 21 Nov 2007 14:11:29 +0000 (GMT) +Message-ID: <200711211408.lALE8Tk0005087@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 86 + for ; + Wed, 21 Nov 2007 14:11:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0B68A238CE + for ; Wed, 21 Nov 2007 14:14:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALE8TDv005089 + for ; Wed, 21 Nov 2007 09:08:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALE8Tk0005087 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:08:29 -0500 +Date: Wed, 21 Nov 2007 09:08:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38528 - sakai-mock/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 09:14:35 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38528 + +Author: rjlowe@iupui.edu +Date: 2007-11-21 09:08:28 -0500 (Wed, 21 Nov 2007) +New Revision: 38528 + +Added: +sakai-mock/branches/SAK-10868/ +Log: +New branch of sakai-mock for SAK-10868 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Nov 21 09:12:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 09:12:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 09:12:07 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lALEC7if015634; + Wed, 21 Nov 2007 09:12:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47443CB2.91BE7.7473 ; + 21 Nov 2007 09:12:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9C1B47092D; + Wed, 21 Nov 2007 14:09:01 +0000 (GMT) +Message-ID: <200711211406.lALE6A01005060@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 775 + for ; + Wed, 21 Nov 2007 14:08:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3C588239DA + for ; Wed, 21 Nov 2007 14:11:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALE6B1C005062 + for ; Wed, 21 Nov 2007 09:06:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALE6A01005060 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:06:10 -0500 +Date: Wed, 21 Nov 2007 09:06:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38527 - user/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 09:12:07 2007 +X-DSPAM-Confidence: 0.8474 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38527 + +Author: rjlowe@iupui.edu +Date: 2007-11-21 09:06:10 -0500 (Wed, 21 Nov 2007) +New Revision: 38527 + +Added: +user/branches/SAK-10868/ +Log: +New branch of /usr/branches/SAK-10868 for David Horwitz + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 07:54:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 07:54:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 07:54:02 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by awakenings.mail.umich.edu () with ESMTP id lALCs1e9001464; + Wed, 21 Nov 2007 07:54:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47442A5F.E7B8F.5809 ; + 21 Nov 2007 07:53:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 266C770F7C; + Wed, 21 Nov 2007 12:53:56 +0000 (GMT) +Message-ID: <200711211247.lALCljvL004954@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854 + for ; + Wed, 21 Nov 2007 12:53:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 580F3261A1 + for ; Wed, 21 Nov 2007 12:53:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALCljYX004956 + for ; Wed, 21 Nov 2007 07:47:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALCljvL004954 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 07:47:45 -0500 +Date: Wed, 21 Nov 2007 07:47:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38526 - in rwiki/trunk/rwiki-impl: . impl impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 07:54:02 2007 +X-DSPAM-Confidence: 0.8433 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38526 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 07:47:29 -0500 (Wed, 21 Nov 2007) +New Revision: 38526 + +Modified: +rwiki/trunk/rwiki-impl/.classpath +rwiki/trunk/rwiki-impl/impl/pom.xml +rwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java +rwiki/trunk/rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml +Log: +SAK-10955 +Applied Patch, thank you Beth + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Wed Nov 21 07:34:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 07:34:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 07:34:15 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lALCYFav014714; + Wed, 21 Nov 2007 07:34:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474425B7.4597A.30077 ; + 21 Nov 2007 07:34:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33B5D84DDB; + Wed, 21 Nov 2007 12:34:09 +0000 (GMT) +Message-ID: <200711211228.lALCS4FC004929@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 499 + for ; + Wed, 21 Nov 2007 12:33:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9A5E7261D9 + for ; Wed, 21 Nov 2007 12:33:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALCS4uN004931 + for ; Wed, 21 Nov 2007 07:28:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALCS4FC004929 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 07:28:04 -0500 +Date: Wed, 21 Nov 2007 07:28:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38525 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 07:34:15 2007 +X-DSPAM-Confidence: 0.8469 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38525 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-21 07:26:56 -0500 (Wed, 21 Nov 2007) +New Revision: 38525 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/LoginServlet.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +Log: +SAK-12065 Non-portal/site access to assessments. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 21 07:07:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 07:07:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 07:07:44 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id lALC7iTs008262; + Wed, 21 Nov 2007 07:07:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47441F89.63EF1.18586 ; + 21 Nov 2007 07:07:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 59D167054D; + Wed, 21 Nov 2007 12:07:46 +0000 (GMT) +Message-ID: <200711211140.lALBeM5m004905@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904 + for ; + Wed, 21 Nov 2007 12:07:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2F79C261D3 + for ; Wed, 21 Nov 2007 11:45:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALBeMjA004907 + for ; Wed, 21 Nov 2007 06:40:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALBeM5m004905 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 06:40:22 -0500 +Date: Wed, 21 Nov 2007 06:40:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38524 - master/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 07:07:44 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38524 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-21 06:40:17 -0500 (Wed, 21 Nov 2007) +New Revision: 38524 + +Modified: +master/trunk/pom.xml +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-10430 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Nov 21 05:48:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 05:48:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 05:48:24 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id lALAmMpd020564; + Wed, 21 Nov 2007 05:48:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47440CEA.E4990.29801 ; + 21 Nov 2007 05:48:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 16E2A84BA9; + Wed, 21 Nov 2007 10:47:54 +0000 (GMT) +Message-ID: <200711211042.lALAg1GM004844@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 422 + for ; + Wed, 21 Nov 2007 10:47:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 72FB123991 + for ; Wed, 21 Nov 2007 10:47:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALAg12c004846 + for ; Wed, 21 Nov 2007 05:42:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALAg1GM004844 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 05:42:01 -0500 +Date: Wed, 21 Nov 2007 05:42:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38523 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/params +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 05:48:24 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38523 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-21 05:41:48 -0500 (Wed, 21 Nov 2007) +New Revision: 38523 + +Modified: +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java +Log: +SAK-11882 now removes trainling

$nbsp;

's too + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Wed Nov 21 02:56:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 21 Nov 2007 02:56:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 21 Nov 2007 02:56:21 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by mission.mail.umich.edu () with ESMTP id lAL7uKTI028479; + Wed, 21 Nov 2007 02:56:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4743E49F.272AA.22997 ; + 21 Nov 2007 02:56:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F0CFF84966; + Wed, 21 Nov 2007 07:56:20 +0000 (GMT) +Message-ID: <200711210750.lAL7oMdP004293@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 747 + for ; + Wed, 21 Nov 2007 07:55:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 865972618A + for ; Wed, 21 Nov 2007 07:55:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL7oNHu004295 + for ; Wed, 21 Nov 2007 02:50:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL7oMdP004293 + for source@collab.sakaiproject.org; Wed, 21 Nov 2007 02:50:22 -0500 +Date: Wed, 21 Nov 2007 02:50:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38521 - sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 21 02:56:21 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38521 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-21 02:49:44 -0500 (Wed, 21 Nov 2007) +New Revision: 38521 + +Modified: +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +Log: +SAK-12065 Tooltip fix + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Tue Nov 20 23:14:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 23:14:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 23:14:05 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id lAL4E49A027273; + Tue, 20 Nov 2007 23:14:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4743B084.980EF.7077 ; + 20 Nov 2007 23:13:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0DF7D8452F; + Wed, 21 Nov 2007 04:13:54 +0000 (GMT) +Message-ID: <200711210407.lAL47rkg004145@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 887 + for ; + Wed, 21 Nov 2007 04:13:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 487DC25E82 + for ; Wed, 21 Nov 2007 04:13:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL47rbM004147 + for ; Tue, 20 Nov 2007 23:07:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL47rkg004145 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 23:07:53 -0500 +Date: Tue, 20 Nov 2007 23:07:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38520 - in component/branches/SAK-12166: component-api/component component-api/component/src/config/org/sakaiproject/config component-api/component/src/java/org/sakaiproject/component/impl/spring/support component-api/component/src/java/org/sakaiproject/util component-impl/impl component-impl/impl/src/java/org/sakaiproject/component/impl component-impl/integration-test component-impl/pack component-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 23:14:05 2007 +X-DSPAM-Confidence: 0.8483 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38520 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-20 23:07:09 -0500 (Tue, 20 Nov 2007) +New Revision: 38520 + +Removed: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +Modified: +component/branches/SAK-12166/component-api/component/pom.xml +component/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java +component/branches/SAK-12166/component-impl/impl/pom.xml +component/branches/SAK-12166/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java +component/branches/SAK-12166/component-impl/integration-test/pom.xml +component/branches/SAK-12166/component-impl/pack/pom.xml +component/branches/SAK-12166/component-impl/pack/src/webapp/WEB-INF/components.xml +Log: +Working version using SAK-8315 configuration scheme. +Sakai starts up correctly (minus meta-obj issue SAK-12254) +New property "sakai.component.createproxies" enables proxy creation to be disabled +Moved up to pom version SNAPSHOT +integration test has not yet been tried, probably not working + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 20 21:44:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 21:44:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 21:44:06 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id lAL2i6Tx011454; + Tue, 20 Nov 2007 21:44:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47439B6B.24EC6.6224 ; + 20 Nov 2007 21:43:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 059BE82D2E; + Wed, 21 Nov 2007 02:44:04 +0000 (GMT) +Message-ID: <200711210238.lAL2c46b003989@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807 + for ; + Wed, 21 Nov 2007 02:43:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 41D0E256DB + for ; Wed, 21 Nov 2007 02:43:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL2c4RR003991 + for ; Tue, 20 Nov 2007 21:38:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL2c46b003989 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 21:38:04 -0500 +Date: Tue, 20 Nov 2007 21:38:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r38519 - reference/tags/sakai_2-4-1/docs/releaseweb +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 21:44:06 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38519 + +Author: arwhyte@umich.edu +Date: 2007-11-20 21:38:03 -0500 (Tue, 20 Nov 2007) +New Revision: 38519 + +Modified: +reference/tags/sakai_2-4-1/docs/releaseweb/index.html +Log: +Missing

+ +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 20 21:40:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 21:40:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 21:40:17 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by sleepers.mail.umich.edu () with ESMTP id lAL2eGZL025583; + Tue, 20 Nov 2007 21:40:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47439A8B.8EE3D.25127 ; + 20 Nov 2007 21:40:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D7E3845A0; + Wed, 21 Nov 2007 02:40:22 +0000 (GMT) +Message-ID: <200711210234.lAL2YK5v003975@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728 + for ; + Wed, 21 Nov 2007 02:40:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B4F08256DB + for ; Wed, 21 Nov 2007 02:39:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL2YKtS003977 + for ; Tue, 20 Nov 2007 21:34:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL2YK5v003975 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 21:34:20 -0500 +Date: Tue, 20 Nov 2007 21:34:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r38518 - reference/tags/sakai_2-4-1/docs/releaseweb +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 21:40:17 2007 +X-DSPAM-Confidence: 0.8436 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38518 + +Author: arwhyte@umich.edu +Date: 2007-11-20 21:34:18 -0500 (Tue, 20 Nov 2007) +New Revision: 38518 + +Modified: +reference/tags/sakai_2-4-1/docs/releaseweb/index.html +Log: +Add line break. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 20 21:37:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 21:37:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 21:37:30 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by score.mail.umich.edu () with ESMTP id lAL2bTF3016911; + Tue, 20 Nov 2007 21:37:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474399E4.9FC47.21542 ; + 20 Nov 2007 21:37:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 383BB84547; + Wed, 21 Nov 2007 02:37:34 +0000 (GMT) +Message-ID: <200711210231.lAL2VRnk003934@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494 + for ; + Wed, 21 Nov 2007 02:37:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B2496256DD + for ; Wed, 21 Nov 2007 02:37:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL2VRPH003936 + for ; Tue, 20 Nov 2007 21:31:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL2VRnk003934 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 21:31:27 -0500 +Date: Tue, 20 Nov 2007 21:31:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r38517 - reference/tags/sakai_2-4-1/docs/releaseweb +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 21:37:30 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38517 + +Author: arwhyte@umich.edu +Date: 2007-11-20 21:31:26 -0500 (Tue, 20 Nov 2007) +New Revision: 38517 + +Modified: +reference/tags/sakai_2-4-1/docs/releaseweb/index.html +Log: +Added additional language clarifying schema changes relative to the 2-4-x branch. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 20 19:42:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 19:42:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 19:42:25 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id lAL0gOfx023558; + Tue, 20 Nov 2007 19:42:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47437EE8.ACF3A.6760 ; + 20 Nov 2007 19:42:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 50C8872170; + Wed, 21 Nov 2007 00:30:21 +0000 (GMT) +Message-ID: <200711210036.lAL0aK5F003759@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 260 + for ; + Wed, 21 Nov 2007 00:30:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 388BA2581A + for ; Wed, 21 Nov 2007 00:41:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL0aLEd003761 + for ; Tue, 20 Nov 2007 19:36:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL0aK5F003759 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 19:36:20 -0500 +Date: Tue, 20 Nov 2007 19:36:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38515 - authz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 19:42:25 2007 +X-DSPAM-Confidence: 0.9755 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38515 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-20 19:36:15 -0500 (Tue, 20 Nov 2007) +New Revision: 38515 + +Modified: +authz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroup.java +authz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroupService.java +authz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12149 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 20 19:14:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 19:14:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 19:14:38 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lAL0Ebkl012016; + Tue, 20 Nov 2007 19:14:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47437865.388AA.12440 ; + 20 Nov 2007 19:14:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 236E684404; + Wed, 21 Nov 2007 00:02:06 +0000 (GMT) +Message-ID: <200711202358.lAKNwfug003712@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483 + for ; + Wed, 21 Nov 2007 00:01:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BA95325812 + for ; Wed, 21 Nov 2007 00:04:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKNwfHh003714 + for ; Tue, 20 Nov 2007 18:58:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKNwfug003712 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 18:58:41 -0500 +Date: Tue, 20 Nov 2007 18:58:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38514 - entity/trunk/entity-impl/impl/src/java/org/sakaiproject/entity/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 19:14:38 2007 +X-DSPAM-Confidence: 0.9774 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38514 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-20 18:58:36 -0500 (Tue, 20 Nov 2007) +New Revision: 38514 + +Modified: +entity/trunk/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java +entity/trunk/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceComponent.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12151 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Tue Nov 20 18:14:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 18:14:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 18:14:42 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by fan.mail.umich.edu () with ESMTP id lAKNEfFJ027339; + Tue, 20 Nov 2007 18:14:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47436A5A.38FF6.27635 ; + 20 Nov 2007 18:14:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A4B39841D8; + Tue, 20 Nov 2007 23:13:24 +0000 (GMT) +Message-ID: <200711202308.lAKN8aJp003616@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 246 + for ; + Tue, 20 Nov 2007 23:13:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6982F253A3 + for ; Tue, 20 Nov 2007 23:14:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKN8a3v003618 + for ; Tue, 20 Nov 2007 18:08:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKN8aJp003616 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 18:08:36 -0500 +Date: Tue, 20 Nov 2007 18:08:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r38513 - in component/branches/SAK-8315: . component-api/component/src/config/org/sakaiproject/config component-api/component/src/java/org/sakaiproject/util component-impl/integration-test/src/test/java/org/sakaiproject/component +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 18:14:42 2007 +X-DSPAM-Confidence: 0.7560 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38513 + +Author: ray@media.berkeley.edu +Date: 2007-11-20 18:08:25 -0500 (Tue, 20 Nov 2007) +New Revision: 38513 + +Modified: +component/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java +component/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/branches/SAK-8315/pom.xml +Log: +Add comments; reduce noisy logging + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Tue Nov 20 17:50:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 17:50:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 17:50:15 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by chaos.mail.umich.edu () with ESMTP id lAKMoEjj011019; + Tue, 20 Nov 2007 17:50:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4743649F.13B12.21845 ; + 20 Nov 2007 17:50:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 40F4884195; + Tue, 20 Nov 2007 22:49:07 +0000 (GMT) +Message-ID: <200711202243.lAKMhbqq003574@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 717 + for ; + Tue, 20 Nov 2007 22:48:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 30AB4255F1 + for ; Tue, 20 Nov 2007 22:49:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKMhbKv003576 + for ; Tue, 20 Nov 2007 17:43:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKMhbqq003574 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 17:43:37 -0500 +Date: Tue, 20 Nov 2007 17:43:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r38512 - in sam/trunk/samigo-app/src: java/org/sakaiproject/tool/assessment/ui/servlet/delivery webapp/jsf/delivery webapp/jsf/delivery/item +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 17:50:15 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38512 + +Author: ktsao@stanford.edu +Date: 2007-11-20 17:43:28 -0500 (Tue, 20 Nov 2007) +New Revision: 38512 + +Modified: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java +sam/trunk/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp +sam/trunk/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp +sam/trunk/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp +Log: +SAK-12132 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Tue Nov 20 16:20:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 16:20:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 16:20:00 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lAKLJx0O015199; + Tue, 20 Nov 2007 16:19:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47434F75.2E117.23299 ; + 20 Nov 2007 16:19:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 26ABF839EE; + Tue, 20 Nov 2007 21:18:49 +0000 (GMT) +Message-ID: <200711202113.lAKLDiIL003436@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 419 + for ; + Tue, 20 Nov 2007 21:18:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9A33121850 + for ; Tue, 20 Nov 2007 21:19:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKLDiR9003438 + for ; Tue, 20 Nov 2007 16:13:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKLDiIL003436 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 16:13:44 -0500 +Date: Tue, 20 Nov 2007 16:13:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38511 - content/branches/SAK-12105/content-jcr-migration-api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 16:20:00 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38511 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-20 16:13:43 -0500 (Tue, 20 Nov 2007) +New Revision: 38511 + +Modified: +content/branches/SAK-12105/content-jcr-migration-api/pom.xml +Log: +SAK-12105 Updated pom for SNAPSHOT + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 20 16:15:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 16:15:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 16:15:03 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by flawless.mail.umich.edu () with ESMTP id lAKLF23d011606; + Tue, 20 Nov 2007 16:15:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47434E4A.91AF2.10944 ; + 20 Nov 2007 16:14:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33C5D772AB; + Tue, 20 Nov 2007 21:14:52 +0000 (GMT) +Message-ID: <200711202108.lAKL8pLp003325@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 613 + for ; + Tue, 20 Nov 2007 21:14:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4AB4B21850 + for ; Tue, 20 Nov 2007 21:14:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKL8pJe003327 + for ; Tue, 20 Nov 2007 16:08:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKL8pLp003325 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 16:08:51 -0500 +Date: Tue, 20 Nov 2007 16:08:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38510 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 16:15:03 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38510 + +Author: zqian@umich.edu +Date: 2007-11-20 16:08:48 -0500 (Tue, 20 Nov 2007) +New Revision: 38510 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +fix to SAK-12227:Drafts should not be gradable before a due date + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Nov 20 16:13:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 16:13:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 16:13:24 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lAKLDMTE010334; + Tue, 20 Nov 2007 16:13:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47434DEA.205AF.31816 ; + 20 Nov 2007 16:13:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 795A4772AB; + Tue, 20 Nov 2007 21:12:57 +0000 (GMT) +Message-ID: <200711202107.lAKL7G6N003289@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 55 + for ; + Tue, 20 Nov 2007 21:12:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4661E21850 + for ; Tue, 20 Nov 2007 21:12:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKL7GX0003291 + for ; Tue, 20 Nov 2007 16:07:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKL7G6N003289 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 16:07:16 -0500 +Date: Tue, 20 Nov 2007 16:07:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38509 - in oncourse/trunk/src/jobscheduler: scheduler-component/src/webapp/WEB-INF scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 16:13:24 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38509 + +Author: cwen@iupui.edu +Date: 2007-11-20 16:07:14 -0500 (Tue, 20 Nov 2007) +New Revision: 38509 + +Added: +oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/RemoveSISFinalGradeToolJob.java +Modified: +oncourse/trunk/src/jobscheduler/scheduler-component/src/webapp/WEB-INF/components.xml +Log: +add RemoveSISFinalGradeToolJob - took 52 minutes on my local against stg to remove SIS FG tool from those 3035 sites. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Tue Nov 20 14:31:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 14:31:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 14:31:37 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lAKJVaGf019708; + Tue, 20 Nov 2007 14:31:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47433612.E0496.31904 ; + 20 Nov 2007 14:31:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E675C819F9; + Tue, 20 Nov 2007 19:31:35 +0000 (GMT) +Message-ID: <200711201925.lAKJPhUD003108@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 708 + for ; + Tue, 20 Nov 2007 19:31:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E64E23875 + for ; Tue, 20 Nov 2007 19:31:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKJPh1d003110 + for ; Tue, 20 Nov 2007 14:25:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKJPhUD003108 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 14:25:43 -0500 +Date: Tue, 20 Nov 2007 14:25:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38508 - in component/branches/SAK-12166/component-api: api component/src/config/org/sakaiproject/config component/src/java/org/sakaiproject/component/impl/spring/support +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 14:31:37 2007 +X-DSPAM-Confidence: 0.8423 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38508 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-20 14:25:24 -0500 (Tue, 20 Nov 2007) +New Revision: 38508 + +Modified: +component/branches/SAK-12166/component-api/api/pom.xml +component/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java +Log: +Bulk of branch code integrated. "Lookahead" logic is left to write. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 20 14:27:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 14:27:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 14:27:28 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by sleepers.mail.umich.edu () with ESMTP id lAKJRSpR010631; + Tue, 20 Nov 2007 14:27:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47433513.E6752.25156 ; + 20 Nov 2007 14:27:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A05C884031; + Tue, 20 Nov 2007 19:27:17 +0000 (GMT) +Message-ID: <200711201920.lAKJK8Fu003096@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 602 + for ; + Tue, 20 Nov 2007 19:25:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5EA362383D + for ; Tue, 20 Nov 2007 19:25:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKJK8Hi003098 + for ; Tue, 20 Nov 2007 14:20:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKJK8Fu003096 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 14:20:08 -0500 +Date: Tue, 20 Nov 2007 14:20:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38507 - assignment/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 14:27:28 2007 +X-DSPAM-Confidence: 0.9877 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38507 + +Author: zqian@umich.edu +Date: 2007-11-20 14:20:04 -0500 (Tue, 20 Nov 2007) +New Revision: 38507 + +Added: +assignment/trunk/runconversion_readme.txt +Modified: +assignment/trunk/runconversion-2.4.x.sh +assignment/trunk/runconversion.sh +Log: +fix to SAK-11821: this time added a runconversion_readme.txt file and change the default MySQL driver to 3.1.14 according to the 2.4 release documentation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Nov 20 14:27:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 14:27:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 14:27:19 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id lAKJRImC006724; + Tue, 20 Nov 2007 14:27:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4743350D.7C166.9678 ; + 20 Nov 2007 14:27:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EA28B84028; + Tue, 20 Nov 2007 19:27:13 +0000 (GMT) +Message-ID: <200711201903.lAKJ3gFG003073@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 364 + for ; + Tue, 20 Nov 2007 19:09:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 44D211D60E + for ; Tue, 20 Nov 2007 19:09:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKJ3g1x003075 + for ; Tue, 20 Nov 2007 14:03:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKJ3gFG003073 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 14:03:42 -0500 +Date: Tue, 20 Nov 2007 14:03:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38506 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 14:27:19 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38506 + +Author: jimeng@umich.edu +Date: 2007-11-20 14:03:40 -0500 (Tue, 20 Nov 2007) +New Revision: 38506 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-11908 +Also need oracle conversion to add BINARY_ENTITY column to content_resource_delete + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Nov 20 14:03:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 14:03:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 14:03:31 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id lAKJ3S1Z026329; + Tue, 20 Nov 2007 14:03:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47432F78.B9532.3281 ; + 20 Nov 2007 14:03:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07E9677EB6; + Tue, 20 Nov 2007 19:03:19 +0000 (GMT) +Message-ID: <200711201857.lAKIvGtB003042@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 948 + for ; + Tue, 20 Nov 2007 19:02:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2A58E1D60E + for ; Tue, 20 Nov 2007 19:02:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIvGTJ003044 + for ; Tue, 20 Nov 2007 13:57:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIvGtB003042 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:57:16 -0500 +Date: Tue, 20 Nov 2007 13:57:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38505 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 14:03:31 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38505 + +Author: jimeng@umich.edu +Date: 2007-11-20 13:57:15 -0500 (Tue, 20 Nov 2007) +New Revision: 38505 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +Log: +SAK-11908 +One new column (BINARY_ENTITY) was overlooked when adding columns to the content_resource_delete table + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Tue Nov 20 13:44:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 13:44:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 13:44:39 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by flawless.mail.umich.edu () with ESMTP id lAKIicBQ009135; + Tue, 20 Nov 2007 13:44:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47432B0F.7BC84.14771 ; + 20 Nov 2007 13:44:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ADE638400E; + Tue, 20 Nov 2007 18:41:28 +0000 (GMT) +Message-ID: <200711201838.lAKIcdpM003023@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 116 + for ; + Tue, 20 Nov 2007 18:41:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 983C22382D + for ; Tue, 20 Nov 2007 18:44:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIcd1o003025 + for ; Tue, 20 Nov 2007 13:38:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIcdpM003023 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:38:39 -0500 +Date: Tue, 20 Nov 2007 13:38:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38504 - in component/branches/SAK-12166/component-impl: . impl impl/src/java/org/sakaiproject/component/impl integration-test integration-test/src integration-test/src/java integration-test/src/java/org integration-test/src/java/org/sakaiproject integration-test/src/java/org/sakaiproject/component integration-test/src/java/org/sakaiproject/component/test integration-test/src/test integration-test/src/test/java integration-test/src/test/java/org integration-test/src/test/java/org/sakaiproject integration-test/src/test/java/org/sakaiproject/component integration-test/src/test/resources integration-test/src/webapp integration-test/src/webapp/WEB-INF integration-test/xdocs pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 13:44:39 2007 +X-DSPAM-Confidence: 0.9841 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38504 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-20 13:36:52 -0500 (Tue, 20 Nov 2007) +New Revision: 38504 + +Added: +component/branches/SAK-12166/component-impl/integration-test/ +component/branches/SAK-12166/component-impl/integration-test/pom.xml +component/branches/SAK-12166/component-impl/integration-test/src/ +component/branches/SAK-12166/component-impl/integration-test/src/java/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java +component/branches/SAK-12166/component-impl/integration-test/src/test/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/ +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/log4j.properties +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai-configuration.xml +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai.properties +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/some-peculiar.properties +component/branches/SAK-12166/component-impl/integration-test/src/webapp/ +component/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/ +component/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/components.xml +component/branches/SAK-12166/component-impl/integration-test/xdocs/ +component/branches/SAK-12166/component-impl/integration-test/xdocs/README.txt +Removed: +component/branches/SAK-12166/component-impl/impl/src/java/org/sakaiproject/component/impl/ConfigurationServiceTest.java +component/branches/SAK-12166/component-impl/integration-test/pom.xml +component/branches/SAK-12166/component-impl/integration-test/src/ +component/branches/SAK-12166/component-impl/integration-test/src/java/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java +component/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java +component/branches/SAK-12166/component-impl/integration-test/src/test/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ +component/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/ +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/log4j.properties +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai-configuration.xml +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai.properties +component/branches/SAK-12166/component-impl/integration-test/src/test/resources/some-peculiar.properties +component/branches/SAK-12166/component-impl/integration-test/src/webapp/ +component/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/ +component/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/components.xml +component/branches/SAK-12166/component-impl/integration-test/xdocs/ +component/branches/SAK-12166/component-impl/integration-test/xdocs/README.txt +Modified: +component/branches/SAK-12166/component-impl/impl/pom.xml +component/branches/SAK-12166/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java +component/branches/SAK-12166/component-impl/pack/src/webapp/WEB-INF/components.xml +Log: +Commit following merge with SAK-8315 branch. It builds, will probably do nothing useful. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Tue Nov 20 13:42:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 13:42:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 13:42:11 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id lAKIgAm0010979; + Tue, 20 Nov 2007 13:42:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47432A7A.42B27.21444 ; + 20 Nov 2007 13:42:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1053E84005; + Tue, 20 Nov 2007 18:39:01 +0000 (GMT) +Message-ID: <200711201836.lAKIaCmQ002997@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 156 + for ; + Tue, 20 Nov 2007 18:38:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D750D2382D + for ; Tue, 20 Nov 2007 18:41:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIaC40002999 + for ; Tue, 20 Nov 2007 13:36:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIaCmQ002997 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:36:12 -0500 +Date: Tue, 20 Nov 2007 13:36:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38502 - in component/branches/SAK-12166/component-api/component: . src/config/org/sakaiproject/config src/java/org src/java/org/sakaiproject/component/api src/java/org/sakaiproject/component/cover src/java/org/sakaiproject/component/impl src/java/org/sakaiproject/component/impl/spring src/java/org/sakaiproject/component/impl/spring/support src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 13:42:11 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38502 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-20 13:35:30 -0500 (Tue, 20 Nov 2007) +New Revision: 38502 + +Added: +component/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/BeanFactoryPostProcessorCreator.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/DynamicDefaultSakaiProperties.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ReversiblePropertyOverrideConfigurer.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SakaiPropertiesFactory.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SakaiPropertyPromoter.java +Removed: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java +component/branches/SAK-12166/component-api/component/src/java/org/springframework/ +Modified: +component/branches/SAK-12166/component-api/component/pom.xml +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +Log: +Commit following merge with SAK-8315 branch. It builds, will probably do nothing useful. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ssmail@indiana.edu Tue Nov 20 13:33:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 13:33:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 13:33:21 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lAKIXJel015325; + Tue, 20 Nov 2007 13:33:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47432868.47B5C.25993 ; + 20 Nov 2007 13:33:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4D87683FF3; + Tue, 20 Nov 2007 18:30:10 +0000 (GMT) +Message-ID: <200711201827.lAKIRNju002974@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540 + for ; + Tue, 20 Nov 2007 18:29:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98BA824FDC + for ; Tue, 20 Nov 2007 18:32:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIRNSd002976 + for ; Tue, 20 Nov 2007 13:27:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIRNju002974 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:27:23 -0500 +Date: Tue, 20 Nov 2007 13:27:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f +To: source@collab.sakaiproject.org +From: ssmail@indiana.edu +Subject: [sakai] svn commit: r38501 - citations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 13:33:21 2007 +X-DSPAM-Confidence: 0.7557 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38501 + +Author: ssmail@indiana.edu +Date: 2007-11-20 13:27:22 -0500 (Tue, 20 Nov 2007) +New Revision: 38501 + +Modified: +citations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +Log: +SAK-12248: Added a catch block for Exception in doBeginSearch() - an alert is displayed and the page is properly re-rendered + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 20 13:23:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 13:23:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 13:23:19 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by casino.mail.umich.edu () with ESMTP id lAKINIM4005488; + Tue, 20 Nov 2007 13:23:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47432610.5ED3.18181 ; + 20 Nov 2007 13:23:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2C51283FDB; + Tue, 20 Nov 2007 18:20:11 +0000 (GMT) +Message-ID: <200711201816.lAKIGx6X002962@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 877 + for ; + Tue, 20 Nov 2007 18:19:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 15F2B2383D + for ; Tue, 20 Nov 2007 18:22:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIGxei002964 + for ; Tue, 20 Nov 2007 13:16:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIGx6X002962 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:16:59 -0500 +Date: Tue, 20 Nov 2007 13:16:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38500 - site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 13:23:19 2007 +X-DSPAM-Confidence: 0.8397 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38500 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-20 13:16:50 -0500 (Tue, 20 Nov 2007) +New Revision: 38500 + +Modified: +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseGroup.java +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSite.java +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSitePage.java +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseToolConfiguration.java +site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/DbSiteService.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12152 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 20 13:19:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 13:19:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 13:19:12 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by mission.mail.umich.edu () with ESMTP id lAKIJBIF019431; + Tue, 20 Nov 2007 13:19:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47432516.7C117.25210 ; + 20 Nov 2007 13:19:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2E2B07ACFD; + Tue, 20 Nov 2007 18:15:35 +0000 (GMT) +Message-ID: <200711201806.lAKI65T3002939@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 796 + for ; + Tue, 20 Nov 2007 18:10:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B95C23825 + for ; Tue, 20 Nov 2007 18:11:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKI65Sv002941 + for ; Tue, 20 Nov 2007 13:06:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKI65T3002939 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:06:05 -0500 +Date: Tue, 20 Nov 2007 13:06:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38499 - content/trunk sakai/trunk site/trunk site-manage/trunk tool/trunk user/trunk web/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 13:19:12 2007 +X-DSPAM-Confidence: 0.8415 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38499 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-20 13:05:49 -0500 (Tue, 20 Nov 2007) +New Revision: 38499 + +Modified: +content/trunk/pom.xml +sakai/trunk/pom.xml +site-manage/trunk/pom.xml +site/trunk/pom.xml +tool/trunk/pom.xml +user/trunk/pom.xml +web/trunk/pom.xml +Log: +Renamed kernel to framework + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 20 13:18:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 13:18:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 13:18:12 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lAKIIBuQ002362; + Tue, 20 Nov 2007 13:18:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474324DC.71048.10453 ; + 20 Nov 2007 13:18:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9A09883DE7; + Tue, 20 Nov 2007 18:14:34 +0000 (GMT) +Message-ID: <200711201754.lAKHshOl002894@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854 + for ; + Tue, 20 Nov 2007 18:00:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2488523817 + for ; Tue, 20 Nov 2007 18:00:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKHshSp002896 + for ; Tue, 20 Nov 2007 12:54:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKHshOl002894 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 12:54:43 -0500 +Date: Tue, 20 Nov 2007 12:54:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38498 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 13:18:12 2007 +X-DSPAM-Confidence: 0.8486 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38498 + +Author: zqian@umich.edu +Date: 2007-11-20 12:54:42 -0500 (Tue, 20 Nov 2007) +New Revision: 38498 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-12164 into post-2-4 branch: svn merge -r 38120:38121 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 20 11:29:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 11:29:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 11:29:02 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by flawless.mail.umich.edu () with ESMTP id lAKGT0aV017675; + Tue, 20 Nov 2007 11:29:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47430B41.869A6.21153 ; + 20 Nov 2007 11:28:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4CCFF83950; + Tue, 20 Nov 2007 16:28:48 +0000 (GMT) +Message-ID: <200711201622.lAKGMt9m002709@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25 + for ; + Tue, 20 Nov 2007 16:28:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D0CD62375A + for ; Tue, 20 Nov 2007 16:28:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKGMtU0002711 + for ; Tue, 20 Nov 2007 11:22:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKGMt9m002709 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:22:55 -0500 +Date: Tue, 20 Nov 2007 11:22:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38492 - util/trunk/util-impl/impl/src/java/org/sakaiproject/time/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 11:29:02 2007 +X-DSPAM-Confidence: 0.8401 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38492 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-20 11:22:50 -0500 (Tue, 20 Nov 2007) +New Revision: 38492 + +Modified: +util/trunk/util-impl/impl/src/java/org/sakaiproject/time/impl/BasicTimeService.java +util/trunk/util-impl/impl/src/java/org/sakaiproject/time/impl/MyTime.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12153 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Nov 20 11:19:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 11:19:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 11:19:56 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lAKGJtXw012466; + Tue, 20 Nov 2007 11:19:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47430908.8430D.31403 ; + 20 Nov 2007 11:19:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6AE1383A6D; + Tue, 20 Nov 2007 16:19:19 +0000 (GMT) +Message-ID: <200711201613.lAKGDXPM002671@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 360 + for ; + Tue, 20 Nov 2007 16:19:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4C59E23750 + for ; Tue, 20 Nov 2007 16:19:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKGDX7U002673 + for ; Tue, 20 Nov 2007 11:13:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKGDXPM002671 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:13:33 -0500 +Date: Tue, 20 Nov 2007 11:13:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38491 - in content/branches/SAK-12105: . content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion content-impl/impl/src/java/org/sakaiproject/content/types content-impl-jcr/impl content-impl-jcr/pack content-impl-jcr/pack/src/webapp/WEB-INF content-impl-providers/impl content-impl-providers/pack contentmultiplex-impl/impl contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 11:19:56 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38491 + +Author: aaronz@vt.edu +Date: 2007-11-20 11:12:58 -0500 (Tue, 20 Nov 2007) +New Revision: 38491 + +Added: +content/branches/SAK-12105/readme.txt +content/branches/SAK-12105/runconversion.sh +content/branches/SAK-12105/upgradeschema-mysql.config +content/branches/SAK-12105/upgradeschema-oracle.config +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/ +content/branches/SAK-12105/content-impl-jcr/impl/pom.xml +content/branches/SAK-12105/content-impl-jcr/pack/pom.xml +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12105/content-impl-providers/impl/ +content/branches/SAK-12105/content-impl-providers/impl/pom.xml +content/branches/SAK-12105/content-impl-providers/pack/ +content/branches/SAK-12105/content-impl-providers/pack/pom.xml +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java +content/branches/SAK-12105/contentmultiplex-impl/impl/ +content/branches/SAK-12105/contentmultiplex-impl/impl/pom.xml +content/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +Log: +SAK-12105: merged trunk changes into branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 20 11:17:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 11:17:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 11:17:45 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id lAKGHg22016993; + Tue, 20 Nov 2007 11:17:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47430894.7DA39.7162 ; + 20 Nov 2007 11:17:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 11DA583D35; + Tue, 20 Nov 2007 16:17:24 +0000 (GMT) +Message-ID: <200711201611.lAKGBbLc002659@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 290 + for ; + Tue, 20 Nov 2007 16:17:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BC82623750 + for ; Tue, 20 Nov 2007 16:17:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKGBbLG002661 + for ; Tue, 20 Nov 2007 11:11:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKGBbLc002659 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:11:37 -0500 +Date: Tue, 20 Nov 2007 11:11:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38490 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 11:17:45 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38490 + +Author: zqian@umich.edu +Date: 2007-11-20 11:11:22 -0500 (Tue, 20 Nov 2007) +New Revision: 38490 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/trunk/upgradeschema_mysql.config +assignment/trunk/upgradeschema_oracle.config +Log: +fix to SAK-12208:Assignment conversion needs to create indexed tables: use the ability to excuete mulitple queries to add indices after table creation and add unique index to assignment_submission as the last step of conversion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 20 11:14:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 11:14:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 11:14:43 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id lAKGEfCl014882; + Tue, 20 Nov 2007 11:14:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474307E3.3134F.10648 ; + 20 Nov 2007 11:14:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CFC1683D31; + Tue, 20 Nov 2007 16:14:26 +0000 (GMT) +Message-ID: <200711201608.lAKG8cu4002647@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 249 + for ; + Tue, 20 Nov 2007 16:14:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5EF2E2376B + for ; Tue, 20 Nov 2007 16:14:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKG8cO2002649 + for ; Tue, 20 Nov 2007 11:08:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKG8cu4002647 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:08:38 -0500 +Date: Tue, 20 Nov 2007 11:08:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38489 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 11:14:43 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38489 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-20 11:08:34 -0500 (Tue, 20 Nov 2007) +New Revision: 38489 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12247 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Nov 20 10:47:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:47:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:47:48 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by godsend.mail.umich.edu () with ESMTP id lAKFllQm006973; + Tue, 20 Nov 2007 10:47:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4743018E.D13C8.22816 ; + 20 Nov 2007 10:47:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7AED183AEF; + Tue, 20 Nov 2007 15:47:24 +0000 (GMT) +Message-ID: <200711201541.lAKFfYCv002580@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 772 + for ; + Tue, 20 Nov 2007 15:47:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CB60C215BF + for ; Tue, 20 Nov 2007 15:47:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFfY6C002582 + for ; Tue, 20 Nov 2007 10:41:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFfYCv002580 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:41:34 -0500 +Date: Tue, 20 Nov 2007 10:41:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38488 - content/branches/SAK-12105/contentmultiplex-impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:47:48 2007 +X-DSPAM-Confidence: 0.9779 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38488 + +Author: aaronz@vt.edu +Date: 2007-11-20 10:41:30 -0500 (Tue, 20 Nov 2007) +New Revision: 38488 + +Modified: +content/branches/SAK-12105/contentmultiplex-impl/.classpath +Log: +SAK-12105: Merged trunk into the branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 10:38:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:38:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:38:32 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by awakenings.mail.umich.edu () with ESMTP id lAKFcGJk002893; + Tue, 20 Nov 2007 10:38:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4742FF5B.49537.5717 ; + 20 Nov 2007 10:38:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 34BBF83BB2; + Tue, 20 Nov 2007 15:37:58 +0000 (GMT) +Message-ID: <200711201532.lAKFWA4b002566@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971 + for ; + Tue, 20 Nov 2007 15:37:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 551B2215BF + for ; Tue, 20 Nov 2007 15:37:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFWAEG002568 + for ; Tue, 20 Nov 2007 10:32:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFWA4b002566 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:32:10 -0500 +Date: Tue, 20 Nov 2007 10:32:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38487 - osp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:38:32 2007 +X-DSPAM-Confidence: 0.7608 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38487 + +Author: mmmay@indiana.edu +Date: 2007-11-20 10:32:08 -0500 (Tue, 20 Nov 2007) +New Revision: 38487 + +Modified: +osp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java +Log: +svn merge -r 38434:38435 https://source.sakaiproject.org/svn/osp/trunk +U xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java +sillybunny:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38434:38435 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r38435 | john.ellis@rsmart.com | 2007-11-19 18:54:53 -0500 (Mon, 19 Nov 2007) | 4 lines + +SAK-12238 +added code to check for null items in a list of configurations + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Tue Nov 20 10:37:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:37:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:37:23 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id lAKFbM7h012358; + Tue, 20 Nov 2007 10:37:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4742FF24.E10FB.6417 ; + 20 Nov 2007 10:37:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8903C83B69; + Tue, 20 Nov 2007 15:37:09 +0000 (GMT) +Message-ID: <200711201531.lAKFVIPk002554@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728 + for ; + Tue, 20 Nov 2007 15:36:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 87302236E7 + for ; Tue, 20 Nov 2007 15:36:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFVIaY002556 + for ; Tue, 20 Nov 2007 10:31:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFVIPk002554 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:31:18 -0500 +Date: Tue, 20 Nov 2007 10:31:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38486 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-app/src/webapp/jsf/author samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:37:23 2007 +X-DSPAM-Confidence: 0.9789 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38486 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-20 10:30:34 -0500 (Tue, 20 Nov 2007) +New Revision: 38486 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/authorIndex.jsp +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacade.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +Log: +SAK-12065 Tooltip fix in author index page for group release. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Nov 20 10:36:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:36:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:36:41 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by fan.mail.umich.edu () with ESMTP id lAKFaeM7007416; + Tue, 20 Nov 2007 10:36:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4742FEDE.5D481.14509 ; + 20 Nov 2007 10:36:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 13FA883B48; + Tue, 20 Nov 2007 15:36:00 +0000 (GMT) +Message-ID: <200711201530.lAKFUCjI002542@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 219 + for ; + Tue, 20 Nov 2007 15:35:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B6CE215BF + for ; Tue, 20 Nov 2007 15:35:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFUCdQ002544 + for ; Tue, 20 Nov 2007 10:30:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFUCjI002542 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:30:12 -0500 +Date: Tue, 20 Nov 2007 10:30:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38485 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:36:41 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38485 + +Author: aaronz@vt.edu +Date: 2007-11-20 10:30:07 -0500 (Tue, 20 Nov 2007) +New Revision: 38485 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Fixed up the test to no use the root folder for creating test content (this seems to not work reliably for legacy CHS) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 10:35:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:35:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:35:19 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id lAKFZIQJ020750; + Tue, 20 Nov 2007 10:35:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4742FEA2.A0F5B.22904 ; + 20 Nov 2007 10:35:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 47F848261D; + Tue, 20 Nov 2007 15:35:00 +0000 (GMT) +Message-ID: <200711201529.lAKFTB3R002530@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 969 + for ; + Tue, 20 Nov 2007 15:34:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7E5E215BF + for ; Tue, 20 Nov 2007 15:34:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFTBGL002532 + for ; Tue, 20 Nov 2007 10:29:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFTB3R002530 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:29:11 -0500 +Date: Tue, 20 Nov 2007 10:29:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38484 - db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:35:19 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38484 + +Author: mmmay@indiana.edu +Date: 2007-11-20 10:29:10 -0500 (Tue, 20 Nov 2007) +New Revision: 38484 + +Modified: +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +Log: +svn merge -r 38478:38479 https://source.sakaiproject.org/svn/db/trunk +U db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +sillybunny:~/java/2-5/sakai_2-5-x/db mmmay$ svn log -r 38478:38479 https://source.sakaiproject.org/svn/db/trunk +------------------------------------------------------------------------ +r38479 | jimeng@umich.edu | 2007-11-20 09:59:18 -0500 (Tue, 20 Nov 2007) | 3 lines + +SAK-12209 +Removed log messages showing the parameters for creating new columns when running the conversion utility. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 10:33:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:33:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:33:44 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by fan.mail.umich.edu () with ESMTP id lAKFXh4X005828; + Tue, 20 Nov 2007 10:33:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4742FE41.36D4B.16132 ; + 20 Nov 2007 10:33:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 53A088261D; + Tue, 20 Nov 2007 15:33:13 +0000 (GMT) +Message-ID: <200711201527.lAKFRSxt002518@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 522 + for ; + Tue, 20 Nov 2007 15:32:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98E0F25260 + for ; Tue, 20 Nov 2007 15:33:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFRSip002520 + for ; Tue, 20 Nov 2007 10:27:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFRSxt002518 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:27:28 -0500 +Date: Tue, 20 Nov 2007 10:27:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38483 - content/branches/sakai_2-5-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:33:44 2007 +X-DSPAM-Confidence: 0.9944 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38483 + +Author: mmmay@indiana.edu +Date: 2007-11-20 10:27:26 -0500 (Tue, 20 Nov 2007) +New Revision: 38483 + +Added: +content/branches/sakai_2-5-x/readme.txt +Modified: +content/branches/sakai_2-5-x/upgradeschema-oracle.config +Log: +svn merge -r 38424:38426 https://source.sakaiproject.org/svn/content/trunk +U upgradeschema-oracle.config +A readme.txt +sillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 38424:38426 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r38424 | jimeng@umich.edu | 2007-11-19 15:43:47 -0500 (Mon, 19 Nov 2007) | 5 lines + +SAK-12235 +Added indexes to register tables in the mysql conversion config for content. +Copies the mysql config and modified it for oracle. +Provided a runconversion.sh shellscript file at the root of the content directory. + +------------------------------------------------------------------------ +r38425 | jimeng@umich.edu | 2007-11-19 15:57:36 -0500 (Mon, 19 Nov 2007) | 3 lines + +SAK-12235 +Changed query to verify existence of required (new) columns for oracle + +------------------------------------------------------------------------ +r38426 | jimeng@umich.edu | 2007-11-19 16:13:41 -0500 (Mon, 19 Nov 2007) | 3 lines + +SAK-12235 +Added readme file for conversion script + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 10:32:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:32:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:32:30 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lAKFWT6V001513; + Tue, 20 Nov 2007 10:32:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4742FDFF.91AB8.12309 ; + 20 Nov 2007 10:32:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 08BAE82619; + Tue, 20 Nov 2007 15:31:52 +0000 (GMT) +Message-ID: <200711201526.lAKFQC2S002506@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 827 + for ; + Tue, 20 Nov 2007 15:31:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD05E25260 + for ; Tue, 20 Nov 2007 15:31:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFQCNG002508 + for ; Tue, 20 Nov 2007 10:26:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFQC2S002506 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:26:12 -0500 +Date: Tue, 20 Nov 2007 10:26:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38482 - in content/branches/sakai_2-5-x: . content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:32:30 2007 +X-DSPAM-Confidence: 0.7011 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38482 + +Author: mmmay@indiana.edu +Date: 2007-11-20 10:26:07 -0500 (Tue, 20 Nov 2007) +New Revision: 38482 + +Added: +content/branches/sakai_2-5-x/runconversion.sh +content/branches/sakai_2-5-x/upgradeschema-mysql.config +content/branches/sakai_2-5-x/upgradeschema-oracle.config +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +Log: +vn merge -r 38423:38424 https://source.sakaiproject.org/svn/content/trunk +A upgradeschema-mysql.config +A upgradeschema-oracle.config +A runconversion.sh +U content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +sillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 38423:38424 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r38424 | jimeng@umich.edu | 2007-11-19 15:43:47 -0500 (Mon, 19 Nov 2007) | 5 lines + +SAK-12235 +Added indexes to register tables in the mysql conversion config for content. +Copies the mysql config and modified it for oracle. +Provided a runconversion.sh shellscript file at the root of the content directory. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 20 10:32:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:32:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:32:05 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lAKFW3vU004602; + Tue, 20 Nov 2007 10:32:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4742FDDF.A144C.12150 ; + 20 Nov 2007 10:31:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 37F967F40B; + Tue, 20 Nov 2007 15:31:16 +0000 (GMT) +Message-ID: <200711201525.lAKFPGsd002494@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366 + for ; + Tue, 20 Nov 2007 15:30:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E208121540 + for ; Tue, 20 Nov 2007 15:30:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFPHAA002496 + for ; Tue, 20 Nov 2007 10:25:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFPGsd002494 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:25:16 -0500 +Date: Tue, 20 Nov 2007 10:25:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38481 - in content/trunk: . content-impl/impl/src/java/org/sakaiproject/content/impl content-impl-jcr/pack/src/webapp/WEB-INF contentmultiplex-impl/impl contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:32:05 2007 +X-DSPAM-Confidence: 0.9773 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38481 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-20 10:24:59 -0500 (Tue, 20 Nov 2007) +New Revision: 38481 + +Modified: +content/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/trunk/contentmultiplex-impl/impl/pom.xml +content/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +content/trunk/pom.xml +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12246 +Fixed + +Also Mutiplex now working. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 10:15:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:15:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:15:20 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lAKFFJBq025992; + Tue, 20 Nov 2007 10:15:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4742F9FA.92EA7.9312 ; + 20 Nov 2007 10:15:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0419483ABF; + Tue, 20 Nov 2007 15:15:07 +0000 (GMT) +Message-ID: <200711201509.lAKF9GQ2002482@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236 + for ; + Tue, 20 Nov 2007 15:14:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A63252524B + for ; Tue, 20 Nov 2007 15:14:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKF9GDo002484 + for ; Tue, 20 Nov 2007 10:09:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKF9GQ2002482 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:09:16 -0500 +Date: Tue, 20 Nov 2007 10:09:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38480 - assignment/branches/sakai_2-5-x/assignment-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:15:20 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38480 + +Author: mmmay@indiana.edu +Date: 2007-11-20 10:09:15 -0500 (Tue, 20 Nov 2007) +New Revision: 38480 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +Log: +svn merge -r 38397:38398 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38397:38398 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38398 | zqian@umich.edu | 2007-11-19 09:47:33 -0500 (Mon, 19 Nov 2007) | 1 line + +Fix to SAK-12223:Assignments: Log in as instructor, create an assignment by choosing the Radio button " Associate with existing Gradebook assignment" - change to 'entry' +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Nov 20 10:05:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 10:05:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 10:05:50 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lAKF5nFE007457; + Tue, 20 Nov 2007 10:05:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4742F7B2.C311E.30283 ; + 20 Nov 2007 10:05:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8DBD583998; + Tue, 20 Nov 2007 15:05:25 +0000 (GMT) +Message-ID: <200711201459.lAKExLN6002435@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506 + for ; + Tue, 20 Nov 2007 15:04:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6E1962524B + for ; Tue, 20 Nov 2007 15:04:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKExLEo002437 + for ; Tue, 20 Nov 2007 09:59:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKExLN6002435 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:59:21 -0500 +Date: Tue, 20 Nov 2007 09:59:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38479 - db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 10:05:50 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38479 + +Author: jimeng@umich.edu +Date: 2007-11-20 09:59:18 -0500 (Tue, 20 Nov 2007) +New Revision: 38479 + +Modified: +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +Log: +SAK-12209 +Removed log messages showing the parameters for creating new columns when running the conversion utility. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:58:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:58:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:58:20 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by casino.mail.umich.edu () with ESMTP id lAKEwJDs025008; + Tue, 20 Nov 2007 09:58:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4742F604.E3338.23581 ; + 20 Nov 2007 09:58:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3134A839E8; + Tue, 20 Nov 2007 14:58:16 +0000 (GMT) +Message-ID: <200711201452.lAKEqLcd002412@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 739 + for ; + Tue, 20 Nov 2007 14:57:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6961725279 + for ; Tue, 20 Nov 2007 14:57:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEqLCp002414 + for ; Tue, 20 Nov 2007 09:52:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEqLcd002412 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:52:21 -0500 +Date: Tue, 20 Nov 2007 09:52:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38478 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:58:20 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38478 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:52:19 -0500 (Tue, 20 Nov 2007) +New Revision: 38478 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r 38231:38232 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38231:38232 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38232 | zqian@umich.edu | 2007-11-15 21:24:13 -0500 (Thu, 15 Nov 2007) | 1 line + +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:57:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:57:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:57:41 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by casino.mail.umich.edu () with ESMTP id lAKEveVF024649; + Tue, 20 Nov 2007 09:57:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4742F5DE.3735D.26408 ; + 20 Nov 2007 09:57:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 56C3D83A36; + Tue, 20 Nov 2007 14:57:31 +0000 (GMT) +Message-ID: <200711201451.lAKEpNsI002400@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585 + for ; + Tue, 20 Nov 2007 14:57:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB32D25280 + for ; Tue, 20 Nov 2007 14:56:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEpNdq002402 + for ; Tue, 20 Nov 2007 09:51:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEpNsI002400 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:51:23 -0500 +Date: Tue, 20 Nov 2007 09:51:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38477 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:57:41 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38477 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:51:22 -0500 (Tue, 20 Nov 2007) +New Revision: 38477 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r 38203:38204 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38203:38204 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38204 | zqian@umich.edu | 2007-11-15 11:54:08 -0500 (Thu, 15 Nov 2007) | 1 line + +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:56:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:56:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:56:32 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id lAKEuVWD031031; + Tue, 20 Nov 2007 09:56:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4742F598.8C53A.30705 ; + 20 Nov 2007 09:56:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AA17783A10; + Tue, 20 Nov 2007 14:56:25 +0000 (GMT) +Message-ID: <200711201450.lAKEoKN4002388@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 922 + for ; + Tue, 20 Nov 2007 14:55:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 395BA25279 + for ; Tue, 20 Nov 2007 14:55:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEoK8J002390 + for ; Tue, 20 Nov 2007 09:50:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEoKN4002388 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:50:20 -0500 +Date: Tue, 20 Nov 2007 09:50:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38476 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:56:32 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38476 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:50:18 -0500 (Tue, 20 Nov 2007) +New Revision: 38476 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r 38193:38194 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38193:38194 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38194 | zqian@umich.edu | 2007-11-14 23:02:32 -0500 (Wed, 14 Nov 2007) | 1 line + +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:55:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:55:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:55:22 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by flawless.mail.umich.edu () with ESMTP id lAKEtMDV016867; + Tue, 20 Nov 2007 09:55:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4742F553.1F1AB.3929 ; + 20 Nov 2007 09:55:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B768783A0E; + Tue, 20 Nov 2007 14:55:17 +0000 (GMT) +Message-ID: <200711201449.lAKEnL7K002376@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859 + for ; + Tue, 20 Nov 2007 14:54:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EF97D2526C + for ; Tue, 20 Nov 2007 14:54:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEnLKc002378 + for ; Tue, 20 Nov 2007 09:49:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEnL7K002376 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:49:21 -0500 +Date: Tue, 20 Nov 2007 09:49:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38475 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:55:22 2007 +X-DSPAM-Confidence: 0.7623 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38475 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:49:19 -0500 (Tue, 20 Nov 2007) +New Revision: 38475 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r 38169:38170 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38169:38170 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38170 | zqian@umich.edu | 2007-11-14 14:08:58 -0500 (Wed, 14 Nov 2007) | 1 line + +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code: forge a multipart email message +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:54:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:54:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:54:14 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id lAKEsDNs013716; + Tue, 20 Nov 2007 09:54:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4742F50F.435E5.8076 ; + 20 Nov 2007 09:54:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B97C483998; + Tue, 20 Nov 2007 14:54:03 +0000 (GMT) +Message-ID: <200711201448.lAKEmHpZ002364@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 879 + for ; + Tue, 20 Nov 2007 14:53:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE56D25274 + for ; Tue, 20 Nov 2007 14:53:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEmHYj002366 + for ; Tue, 20 Nov 2007 09:48:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEmHpZ002364 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:48:17 -0500 +Date: Tue, 20 Nov 2007 09:48:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38474 - in assignment/branches/sakai_2-5-x: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:54:14 2007 +X-DSPAM-Confidence: 0.7007 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38474 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:48:14 -0500 (Tue, 20 Nov 2007) +New Revision: 38474 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +Log: +svn merge -r 38164:38165 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38165:38165 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38165 | zqian@umich.edu | 2007-11-14 11:26:11 -0500 (Wed, 14 Nov 2007) | 1 line + +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:52:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:52:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:52:02 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id lAKEq1tB011612; + Tue, 20 Nov 2007 09:52:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4742F48A.E25E3.26626 ; + 20 Nov 2007 09:51:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7A906839E9; + Tue, 20 Nov 2007 14:51:50 +0000 (GMT) +Message-ID: <200711201446.lAKEk3Tg002352@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 473 + for ; + Tue, 20 Nov 2007 14:51:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 364FD2526C + for ; Tue, 20 Nov 2007 14:51:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEk3mk002354 + for ; Tue, 20 Nov 2007 09:46:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEk3Tg002352 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:46:03 -0500 +Date: Tue, 20 Nov 2007 09:46:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38473 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:52:02 2007 +X-DSPAM-Confidence: 0.7623 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38473 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:46:01 -0500 (Tue, 20 Nov 2007) +New Revision: 38473 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 38249:38250 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38250:38250 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38250 | zqian@umich.edu | 2007-11-16 14:25:04 -0500 (Fri, 16 Nov 2007) | 1 line + +fix to SAK-12222: Assignmets: Log in as instructor create Assignment, do not post, save as draft +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:50:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:50:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:50:22 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lAKEoMCn013496; + Tue, 20 Nov 2007 09:50:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4742F426.A5C16.22945 ; + 20 Nov 2007 09:50:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 01FB3835FA; + Tue, 20 Nov 2007 14:50:10 +0000 (GMT) +Message-ID: <200711201444.lAKEiRO2002340@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1002 + for ; + Tue, 20 Nov 2007 14:50:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CF4892526C + for ; Tue, 20 Nov 2007 14:50:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEiRLt002342 + for ; Tue, 20 Nov 2007 09:44:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEiRO2002340 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:44:27 -0500 +Date: Tue, 20 Nov 2007 09:44:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38472 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:50:22 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38472 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:44:23 -0500 (Tue, 20 Nov 2007) +New Revision: 38472 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 38185:38186 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38186:38186 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38186 | zqian@umich.edu | 2007-11-14 21:03:33 -0500 (Wed, 14 Nov 2007) | 1 line + +fix to SAK-12186:Assignments download all and upload all have inconsistent id fields - display id != eid +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:47:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:47:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:47:01 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id lAKEl0jS011302; + Tue, 20 Nov 2007 09:47:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4742F35C.A1F11.25379 ; + 20 Nov 2007 09:46:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C8E9283912; + Tue, 20 Nov 2007 14:46:44 +0000 (GMT) +Message-ID: <200711201440.lAKEexIH002328@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 439 + for ; + Tue, 20 Nov 2007 14:46:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3DCF52526C + for ; Tue, 20 Nov 2007 14:46:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEexNr002330 + for ; Tue, 20 Nov 2007 09:40:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEexIH002328 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:40:59 -0500 +Date: Tue, 20 Nov 2007 09:40:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38471 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:47:01 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38471 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:40:57 -0500 (Tue, 20 Nov 2007) +New Revision: 38471 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r 38132:38135 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38133:38133 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38133 | zqian@umich.edu | 2007-11-13 12:43:11 -0500 (Tue, 13 Nov 2007) | 1 line + +fix to SAK-12167:Assignment Grades.csv file downloads with grades in the wrong column +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:44:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:44:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:44:45 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id lAKEiifL028795; + Tue, 20 Nov 2007 09:44:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4742F2D3.4E694.20105 ; + 20 Nov 2007 09:44:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 54395839AF; + Tue, 20 Nov 2007 14:44:30 +0000 (GMT) +Message-ID: <200711201438.lAKEcllt002316@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 170 + for ; + Tue, 20 Nov 2007 14:44:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E451C25274 + for ; Tue, 20 Nov 2007 14:44:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEclZn002318 + for ; Tue, 20 Nov 2007 09:38:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEcllt002316 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:38:47 -0500 +Date: Tue, 20 Nov 2007 09:38:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38470 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:44:45 2007 +X-DSPAM-Confidence: 0.7624 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38470 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:38:45 -0500 (Tue, 20 Nov 2007) +New Revision: 38470 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 38120:38121 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38120:38121 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38120 | zqian@umich.edu | 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007) | 1 line + +fix to SAK-12178: Assignments: Log in as instructor, add assignment, in points field enter 10000000000, Alert message displayed, message should display correct input value +------------------------------------------------------------------------ +r38121 | zqian@umich.edu | 2007-11-12 12:10:08 -0500 (Mon, 12 Nov 2007) | 1 line + +fix to SAK-12164: 'Assign this grade...' function is writing over Grade data +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:42:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:42:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:42:43 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lAKEggUk031588; + Tue, 20 Nov 2007 09:42:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4742F257.44E03.11043 ; + 20 Nov 2007 09:42:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B24177DA2D; + Tue, 20 Nov 2007 14:42:28 +0000 (GMT) +Message-ID: <200711201436.lAKEai5E002302@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899 + for ; + Tue, 20 Nov 2007 14:42:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D9ED425274 + for ; Tue, 20 Nov 2007 14:42:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEaiMU002304 + for ; Tue, 20 Nov 2007 09:36:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEai5E002302 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:36:44 -0500 +Date: Tue, 20 Nov 2007 09:36:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38469 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:42:43 2007 +X-DSPAM-Confidence: 0.6197 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38469 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:36:41 -0500 (Tue, 20 Nov 2007) +New Revision: 38469 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 38119:38120 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38119:38120 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38120 | zqian@umich.edu | 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007) | 1 line + +fix to SAK-12178: Assignments: Log in as instructor, add assignment, in points field enter 10000000000, Alert message displayed, message should display correct input value +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 20 09:41:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 09:41:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 09:41:12 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id lAKEfBjr031132; + Tue, 20 Nov 2007 09:41:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4742F1FA.64107.1374 ; + 20 Nov 2007 09:41:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7D0688390A; + Tue, 20 Nov 2007 14:40:53 +0000 (GMT) +Message-ID: <200711201435.lAKEZ6t5002289@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 438 + for ; + Tue, 20 Nov 2007 14:40:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 310C725278 + for ; Tue, 20 Nov 2007 14:40:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEZ6cw002291 + for ; Tue, 20 Nov 2007 09:35:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEZ6t5002289 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:35:06 -0500 +Date: Tue, 20 Nov 2007 09:35:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38468 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 09:41:12 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38468 + +Author: mmmay@indiana.edu +Date: 2007-11-20 09:35:04 -0500 (Tue, 20 Nov 2007) +New Revision: 38468 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37420:37421 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +sillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37420:37421 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37421 | zqian@umich.edu | 2007-10-26 13:58:49 -0400 (Fri, 26 Oct 2007) | 1 line + +fix to SAK-12058:Grade Report in Assignments orders by default by Last Name, should order by Last Name, First Name +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From lance@indiana.edu Tue Nov 20 08:47:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 08:47:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 08:47:02 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id lAKDl1Ru008708; + Tue, 20 Nov 2007 08:47:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4742E540.46BA9.2427 ; + 20 Nov 2007 08:46:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2E4708390A; + Tue, 20 Nov 2007 13:42:24 +0000 (GMT) +Message-ID: <200711201340.lAKDege4002240@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 628 + for ; + Tue, 20 Nov 2007 13:41:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E787FB29B + for ; Tue, 20 Nov 2007 13:46:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKDegjA002242 + for ; Tue, 20 Nov 2007 08:40:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKDege4002240 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 08:40:42 -0500 +Date: Tue, 20 Nov 2007 08:40:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f +To: source@collab.sakaiproject.org +From: lance@indiana.edu +Subject: [sakai] svn commit: r38467 - discussion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 08:47:02 2007 +X-DSPAM-Confidence: 0.7559 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38467 + +Author: lance@indiana.edu +Date: 2007-11-20 08:40:41 -0500 (Tue, 20 Nov 2007) +New Revision: 38467 + +Removed: +discussion/trunk/ +Log: +SAK-11341 - Moved Retired Discussion Project to contrib +delete trunk + +svn delete discussion/trunk + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Tue Nov 20 07:15:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 07:15:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 07:15:15 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id lAKCFDaA020320; + Tue, 20 Nov 2007 07:15:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4742CFC9.34D83.20723 ; + 20 Nov 2007 07:15:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DC2E573A2B; + Tue, 20 Nov 2007 12:15:14 +0000 (GMT) +Message-ID: <200711201209.lAKC9A7v002137@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 33 + for ; + Tue, 20 Nov 2007 12:14:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BBA3825012 + for ; Tue, 20 Nov 2007 12:14:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKC9AdS002139 + for ; Tue, 20 Nov 2007 07:09:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKC9A7v002137 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 07:09:10 -0500 +Date: Tue, 20 Nov 2007 07:09:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38465 - in content/branches/SAK-12105: content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration content-impl-jcr/pack/src/webapp/WEB-INF content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api contentmultiplex-impl/impl contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 07:15:15 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38465 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-20 07:09:02 -0500 (Tue, 20 Nov 2007) +New Revision: 38465 + +Added: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationConstants.java +content/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingTargetSource.java +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRCopierImpl.java +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java +content/branches/SAK-12105/contentmultiplex-impl/impl/pom.xml +Log: +SAK-12105 Proxy and Target for different CHS Implementations (even though the Spring Decl doesn't seem to work yet). +Migration constants. Actions for copying and deleting things on content.remove. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Nov 20 06:32:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 06:32:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 06:32:25 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lAKBWNOB002867; + Tue, 20 Nov 2007 06:32:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4742C5BD.52826.24449 ; + 20 Nov 2007 06:32:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 776C174B37; + Tue, 20 Nov 2007 11:32:41 +0000 (GMT) +Message-ID: <200711201126.lAKBQLTu002109@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 112 + for ; + Tue, 20 Nov 2007 11:32:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8DD2220E39 + for ; Tue, 20 Nov 2007 11:31:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKBQLVw002111 + for ; Tue, 20 Nov 2007 06:26:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKBQLTu002109 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 06:26:21 -0500 +Date: Tue, 20 Nov 2007 06:26:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38464 - in content/branches/SAK-12105: . content-api/api content-help content-impl/hbm content-impl/impl content-impl/pack content-test content-test/pack content-test/test content-test/tool content-tool/tool content-util/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 06:32:25 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38464 + +Author: aaronz@vt.edu +Date: 2007-11-20 06:25:59 -0500 (Tue, 20 Nov 2007) +New Revision: 38464 + +Modified: +content/branches/SAK-12105/content-api/api/pom.xml +content/branches/SAK-12105/content-help/pom.xml +content/branches/SAK-12105/content-impl/hbm/pom.xml +content/branches/SAK-12105/content-impl/impl/pom.xml +content/branches/SAK-12105/content-impl/pack/pom.xml +content/branches/SAK-12105/content-test/pack/pom.xml +content/branches/SAK-12105/content-test/pom.xml +content/branches/SAK-12105/content-test/test/pom.xml +content/branches/SAK-12105/content-test/tool/pom.xml +content/branches/SAK-12105/content-tool/tool/pom.xml +content/branches/SAK-12105/content-util/util/pom.xml +content/branches/SAK-12105/pom.xml +Log: +SAK-12105: fixed up the pom files for SNAPSHOT + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 01:00:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 01:00:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 01:00:43 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by chaos.mail.umich.edu () with ESMTP id lAK60h9o012162; + Tue, 20 Nov 2007 01:00:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47427802.9EB47.32312 ; + 20 Nov 2007 01:00:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 99F7C832AB; + Tue, 20 Nov 2007 06:00:33 +0000 (GMT) +Message-ID: <200711200554.lAK5sWrD001368@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 432 + for ; + Tue, 20 Nov 2007 06:00:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E8228B08B + for ; Tue, 20 Nov 2007 06:00:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5sW5p001370 + for ; Tue, 20 Nov 2007 00:54:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5sWrD001368 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:54:32 -0500 +Date: Tue, 20 Nov 2007 00:54:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38463 - sakai/tags/maven1build +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 01:00:43 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38463 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:54:30 -0500 (Tue, 20 Nov 2007) +New Revision: 38463 + +Modified: +sakai/tags/maven1build/ +sakai/tags/maven1build/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:48:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:48:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:48:51 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lAK5mohY003651; + Tue, 20 Nov 2007 00:48:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47427539.B658E.24266 ; + 20 Nov 2007 00:48:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 519A5791BB; + Tue, 20 Nov 2007 05:48:42 +0000 (GMT) +Message-ID: <200711200542.lAK5gw58001323@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 96 + for ; + Tue, 20 Nov 2007 05:48:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A4F7223482 + for ; Tue, 20 Nov 2007 05:48:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5gwUI001325 + for ; Tue, 20 Nov 2007 00:42:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5gw58001323 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:42:58 -0500 +Date: Tue, 20 Nov 2007 00:42:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38462 - sakai/tags/sakai_2-5-0_QA_013 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:48:51 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38462 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:42:56 -0500 (Tue, 20 Nov 2007) +New Revision: 38462 + +Modified: +sakai/tags/sakai_2-5-0_QA_013/ +sakai/tags/sakai_2-5-0_QA_013/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:48:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:48:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:48:10 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lAK5m9ca017064; + Tue, 20 Nov 2007 00:48:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47427510.EA44A.29828 ; + 20 Nov 2007 00:48:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C5C828328F; + Tue, 20 Nov 2007 05:48:00 +0000 (GMT) +Message-ID: <200711200542.lAK5gCSU001311@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959 + for ; + Tue, 20 Nov 2007 05:47:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0C13A23482 + for ; Tue, 20 Nov 2007 05:47:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5gCKJ001313 + for ; Tue, 20 Nov 2007 00:42:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5gCSU001311 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:42:12 -0500 +Date: Tue, 20 Nov 2007 00:42:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38461 - sakai/tags/sakai_2-5-0_QA_012 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:48:10 2007 +X-DSPAM-Confidence: 0.9806 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38461 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:42:10 -0500 (Tue, 20 Nov 2007) +New Revision: 38461 + +Modified: +sakai/tags/sakai_2-5-0_QA_012/ +sakai/tags/sakai_2-5-0_QA_012/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:47:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:47:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:47:24 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lAK5lNOY016320; + Tue, 20 Nov 2007 00:47:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 474274DF.65C5F.27180 ; + 20 Nov 2007 00:47:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CFAF48327B; + Tue, 20 Nov 2007 05:47:11 +0000 (GMT) +Message-ID: <200711200541.lAK5fR6e001299@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 379 + for ; + Tue, 20 Nov 2007 05:47:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 214AA23482 + for ; Tue, 20 Nov 2007 05:46:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5fRj8001301 + for ; Tue, 20 Nov 2007 00:41:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5fR6e001299 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:41:27 -0500 +Date: Tue, 20 Nov 2007 00:41:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38460 - sakai/tags/sakai_2-5-0_QA_011 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:47:24 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38460 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:41:25 -0500 (Tue, 20 Nov 2007) +New Revision: 38460 + +Modified: +sakai/tags/sakai_2-5-0_QA_011/ +sakai/tags/sakai_2-5-0_QA_011/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:46:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:46:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:46:38 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by flawless.mail.umich.edu () with ESMTP id lAK5kc3f003074; + Tue, 20 Nov 2007 00:46:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474274B2.AB818.6875 ; + 20 Nov 2007 00:46:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0586B83297; + Tue, 20 Nov 2007 05:46:27 +0000 (GMT) +Message-ID: <200711200540.lAK5egNo001287@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 512 + for ; + Tue, 20 Nov 2007 05:46:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E7B5423482 + for ; Tue, 20 Nov 2007 05:46:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5egri001289 + for ; Tue, 20 Nov 2007 00:40:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5egNo001287 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:40:42 -0500 +Date: Tue, 20 Nov 2007 00:40:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38459 - sakai/tags/sakai_2-5-0_QA_010 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:46:38 2007 +X-DSPAM-Confidence: 0.9793 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38459 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:40:40 -0500 (Tue, 20 Nov 2007) +New Revision: 38459 + +Modified: +sakai/tags/sakai_2-5-0_QA_010/ +sakai/tags/sakai_2-5-0_QA_010/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:46:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:46:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:46:00 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lAK5jxoB024890; + Tue, 20 Nov 2007 00:45:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4742748B.CDD0A.28997 ; + 20 Nov 2007 00:45:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0C0D283298; + Tue, 20 Nov 2007 05:45:48 +0000 (GMT) +Message-ID: <200711200540.lAK5e4d9001275@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 271 + for ; + Tue, 20 Nov 2007 05:45:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 67D4423482 + for ; Tue, 20 Nov 2007 05:45:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5e43f001277 + for ; Tue, 20 Nov 2007 00:40:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5e4d9001275 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:40:04 -0500 +Date: Tue, 20 Nov 2007 00:40:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38458 - sakai/tags/sakai_2-5-0_QA_009 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:46:00 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38458 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:40:02 -0500 (Tue, 20 Nov 2007) +New Revision: 38458 + +Modified: +sakai/tags/sakai_2-5-0_QA_009/ +sakai/tags/sakai_2-5-0_QA_009/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:45:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:45:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:45:19 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by score.mail.umich.edu () with ESMTP id lAK5jJrS016280; + Tue, 20 Nov 2007 00:45:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47427466.46056.30040 ; + 20 Nov 2007 00:45:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BBC7D831E1; + Tue, 20 Nov 2007 05:45:10 +0000 (GMT) +Message-ID: <200711200539.lAK5dQ5i001263@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 542 + for ; + Tue, 20 Nov 2007 05:45:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E6E923482 + for ; Tue, 20 Nov 2007 05:44:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5dQRt001265 + for ; Tue, 20 Nov 2007 00:39:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5dQ5i001263 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:39:26 -0500 +Date: Tue, 20 Nov 2007 00:39:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38457 - sakai/tags/sakai_2-5-0_QA_008 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:45:19 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38457 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:39:24 -0500 (Tue, 20 Nov 2007) +New Revision: 38457 + +Modified: +sakai/tags/sakai_2-5-0_QA_008/ +sakai/tags/sakai_2-5-0_QA_008/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:44:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:44:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:44:41 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by mission.mail.umich.edu () with ESMTP id lAK5ifQc015506; + Tue, 20 Nov 2007 00:44:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47427440.15371.9895 ; + 20 Nov 2007 00:44:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B27B783286; + Tue, 20 Nov 2007 05:44:32 +0000 (GMT) +Message-ID: <200711200538.lAK5cmJs001251@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 208 + for ; + Tue, 20 Nov 2007 05:44:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F119223482 + for ; Tue, 20 Nov 2007 05:44:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5cmSo001253 + for ; Tue, 20 Nov 2007 00:38:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5cmJs001251 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:38:48 -0500 +Date: Tue, 20 Nov 2007 00:38:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38456 - sakai/tags/sakai_2-5-0_QA_007 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:44:41 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38456 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:38:46 -0500 (Tue, 20 Nov 2007) +New Revision: 38456 + +Modified: +sakai/tags/sakai_2-5-0_QA_007/ +sakai/tags/sakai_2-5-0_QA_007/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:44:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:44:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:44:22 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by faithful.mail.umich.edu () with ESMTP id lAK5iLAU004981; + Tue, 20 Nov 2007 00:44:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4742741C.47B40.31974 ; + 20 Nov 2007 00:44:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7504E817E8; + Tue, 20 Nov 2007 05:43:56 +0000 (GMT) +Message-ID: <200711200538.lAK5c5D8001239@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 674 + for ; + Tue, 20 Nov 2007 05:43:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98EDD23482 + for ; Tue, 20 Nov 2007 05:43:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5c55b001241 + for ; Tue, 20 Nov 2007 00:38:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5c5D8001239 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:38:05 -0500 +Date: Tue, 20 Nov 2007 00:38:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38455 - sakai/tags/sakai_2-5-0_QA_006 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:44:22 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38455 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:38:02 -0500 (Tue, 20 Nov 2007) +New Revision: 38455 + +Modified: +sakai/tags/sakai_2-5-0_QA_006/ +sakai/tags/sakai_2-5-0_QA_006/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:43:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:43:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:43:17 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by awakenings.mail.umich.edu () with ESMTP id lAK5hGaM026657; + Tue, 20 Nov 2007 00:43:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 474273E6.9D041.2558 ; + 20 Nov 2007 00:43:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 266F783288; + Tue, 20 Nov 2007 05:43:03 +0000 (GMT) +Message-ID: <200711200537.lAK5bJek001225@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 376 + for ; + Tue, 20 Nov 2007 05:42:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 869C523482 + for ; Tue, 20 Nov 2007 05:42:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5bJX3001227 + for ; Tue, 20 Nov 2007 00:37:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5bJek001225 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:37:19 -0500 +Date: Tue, 20 Nov 2007 00:37:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38454 - sakai/tags/sakai_2-5-0_QA_005 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:43:17 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38454 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:37:17 -0500 (Tue, 20 Nov 2007) +New Revision: 38454 + +Modified: +sakai/tags/sakai_2-5-0_QA_005/ +sakai/tags/sakai_2-5-0_QA_005/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:42:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:42:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:42:22 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id lAK5gLWl021130; + Tue, 20 Nov 2007 00:42:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 474273B1.7B40B.15523 ; + 20 Nov 2007 00:42:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D4828328D; + Tue, 20 Nov 2007 05:42:09 +0000 (GMT) +Message-ID: <200711200536.lAK5aPLH001213@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 785 + for ; + Tue, 20 Nov 2007 05:41:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E1E5C23482 + for ; Tue, 20 Nov 2007 05:41:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5aPn5001215 + for ; Tue, 20 Nov 2007 00:36:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5aPLH001213 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:36:25 -0500 +Date: Tue, 20 Nov 2007 00:36:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38453 - sakai/tags/sakai_2-5-0_QA_004 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:42:22 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38453 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:36:23 -0500 (Tue, 20 Nov 2007) +New Revision: 38453 + +Modified: +sakai/tags/sakai_2-5-0_QA_004/ +sakai/tags/sakai_2-5-0_QA_004/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:41:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:41:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:41:36 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lAK5fZrb020972; + Tue, 20 Nov 2007 00:41:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47427380.B4D7C.28162 ; + 20 Nov 2007 00:41:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F13BD83273; + Tue, 20 Nov 2007 05:41:20 +0000 (GMT) +Message-ID: <200711200535.lAK5Zbfp001200@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351 + for ; + Tue, 20 Nov 2007 05:41:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 82A1C23482 + for ; Tue, 20 Nov 2007 05:41:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5Zb6e001202 + for ; Tue, 20 Nov 2007 00:35:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5Zbfp001200 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:35:37 -0500 +Date: Tue, 20 Nov 2007 00:35:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38452 - sakai/tags/sakai_2-5-0_QA_003 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:41:36 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38452 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:35:35 -0500 (Tue, 20 Nov 2007) +New Revision: 38452 + +Modified: +sakai/tags/sakai_2-5-0_QA_003/ +sakai/tags/sakai_2-5-0_QA_003/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:40:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:40:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:40:47 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by brazil.mail.umich.edu () with ESMTP id lAK5ekvW028929; + Tue, 20 Nov 2007 00:40:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47427353.71697.438 ; + 20 Nov 2007 00:40:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3F33C83285; + Tue, 20 Nov 2007 05:40:35 +0000 (GMT) +Message-ID: <200711200534.lAK5YptE001188@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 175 + for ; + Tue, 20 Nov 2007 05:40:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 980A423482 + for ; Tue, 20 Nov 2007 05:40:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5YpqD001190 + for ; Tue, 20 Nov 2007 00:34:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5YptE001188 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:34:51 -0500 +Date: Tue, 20 Nov 2007 00:34:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38451 - sakai/tags/sakai_2-5-0_QA_002 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:40:47 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38451 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:34:49 -0500 (Tue, 20 Nov 2007) +New Revision: 38451 + +Modified: +sakai/tags/sakai_2-5-0_QA_002/ +sakai/tags/sakai_2-5-0_QA_002/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:39:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:39:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:39:40 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id lAK5depk006714; + Tue, 20 Nov 2007 00:39:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47427310.C6944.25053 ; + 20 Nov 2007 00:39:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DFAF783260; + Tue, 20 Nov 2007 05:39:28 +0000 (GMT) +Message-ID: <200711200533.lAK5XckH001169@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 905 + for ; + Tue, 20 Nov 2007 05:39:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6395024F00 + for ; Tue, 20 Nov 2007 05:39:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5Xc57001171 + for ; Tue, 20 Nov 2007 00:33:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5XckH001169 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:33:38 -0500 +Date: Tue, 20 Nov 2007 00:33:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38450 - sakai/tags/sakai_2-5-0_QA_001 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:39:40 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38450 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:33:36 -0500 (Tue, 20 Nov 2007) +New Revision: 38450 + +Modified: +sakai/tags/sakai_2-5-0_QA_001/ +sakai/tags/sakai_2-5-0_QA_001/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:38:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:38:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:38:29 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by jacknife.mail.umich.edu () with ESMTP id lAK5cSrl019956; + Tue, 20 Nov 2007 00:38:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 474272C9.63691.19732 ; + 20 Nov 2007 00:38:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9087F83277; + Tue, 20 Nov 2007 05:38:15 +0000 (GMT) +Message-ID: <200711200532.lAK5WNHu001156@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 542 + for ; + Tue, 20 Nov 2007 05:37:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D4FED23482 + for ; Tue, 20 Nov 2007 05:37:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5WNXf001158 + for ; Tue, 20 Nov 2007 00:32:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5WNHu001156 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:32:23 -0500 +Date: Tue, 20 Nov 2007 00:32:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38449 - sakai/tags/sakai_2-4-1 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:38:29 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38449 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:32:21 -0500 (Tue, 20 Nov 2007) +New Revision: 38449 + +Modified: +sakai/tags/sakai_2-4-1/ +sakai/tags/sakai_2-4-1/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:38:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:38:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:38:17 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lAK5cGIc003306; + Tue, 20 Nov 2007 00:38:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 474271FF.63557.17822 ; + 20 Nov 2007 00:35:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 845028326A; + Tue, 20 Nov 2007 05:34:46 +0000 (GMT) +Message-ID: <200711200528.lAK5SrTf001118@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 951 + for ; + Tue, 20 Nov 2007 05:34:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CF1F723482 + for ; Tue, 20 Nov 2007 05:34:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5SrCv001120 + for ; Tue, 20 Nov 2007 00:28:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5SrTf001118 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:28:53 -0500 +Date: Tue, 20 Nov 2007 00:28:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38447 - sakai/tags/sakai_2-3-2_QA_001 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:38:17 2007 +X-DSPAM-Confidence: 0.8439 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38447 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:28:51 -0500 (Tue, 20 Nov 2007) +New Revision: 38447 + +Modified: +sakai/tags/sakai_2-3-2_QA_001/ +sakai/tags/sakai_2-3-2_QA_001/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:37:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:37:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:37:16 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id lAK5bGHJ032607; + Tue, 20 Nov 2007 00:37:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4742724D.7C390.14501 ; + 20 Nov 2007 00:36:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6000D83083; + Tue, 20 Nov 2007 05:36:13 +0000 (GMT) +Message-ID: <200711200530.lAK5UHZg001144@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 185 + for ; + Tue, 20 Nov 2007 05:35:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AF65823482 + for ; Tue, 20 Nov 2007 05:35:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5UHCp001146 + for ; Tue, 20 Nov 2007 00:30:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5UHZg001144 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:30:17 -0500 +Date: Tue, 20 Nov 2007 00:30:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38448 - sakai/tags/sakai_2-4-0 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:37:16 2007 +X-DSPAM-Confidence: 0.7544 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38448 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:30:15 -0500 (Tue, 20 Nov 2007) +New Revision: 38448 + +Modified: +sakai/tags/sakai_2-4-0/ +sakai/tags/sakai_2-4-0/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 20 00:32:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 20 Nov 2007 00:32:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 20 Nov 2007 00:32:41 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by brazil.mail.umich.edu () with ESMTP id lAK5WeD5026512; + Tue, 20 Nov 2007 00:32:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47427166.ED06B.25559 ; + 20 Nov 2007 00:32:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1589378E0E; + Tue, 20 Nov 2007 05:32:18 +0000 (GMT) +Message-ID: <200711200526.lAK5QNSb001098@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 874 + for ; + Tue, 20 Nov 2007 05:31:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 12EF724E00 + for ; Tue, 20 Nov 2007 05:31:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5QOxP001100 + for ; Tue, 20 Nov 2007 00:26:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5QNSb001098 + for source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:26:23 -0500 +Date: Tue, 20 Nov 2007 00:26:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38446 - sakai/tags/sakai_2-3-2 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 20 00:32:41 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38446 + +Author: rjlowe@iupui.edu +Date: 2007-11-20 00:26:20 -0500 (Tue, 20 Nov 2007) +New Revision: 38446 + +Modified: +sakai/tags/sakai_2-3-2/ +sakai/tags/sakai_2-3-2/.externals +Log: +SAK-11341 - adding revision to external so /discussion will not fail + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:16:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:16:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:16:37 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id lAK0GZlx004846; + Mon, 19 Nov 2007 19:16:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4742275D.9D08C.23776 ; + 19 Nov 2007 19:16:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 70577823D5; + Tue, 20 Nov 2007 00:13:27 +0000 (GMT) +Message-ID: <200711200010.lAK0AlrT000838@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 689 + for ; + Tue, 20 Nov 2007 00:13:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9FB2024F92 + for ; Tue, 20 Nov 2007 00:16:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK0AlDU000840 + for ; Mon, 19 Nov 2007 19:10:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK0AlrT000838 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:10:47 -0500 +Date: Mon, 19 Nov 2007 19:10:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38445 - util/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:16:37 2007 +X-DSPAM-Confidence: 0.9880 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38445 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:10:43 -0500 (Mon, 19 Nov 2007) +New Revision: 38445 + +Added: +util/branches/SAK-12239/ +Log: +SAK-12339 +Creating branch in util for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:15:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:15:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:15:44 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id lAK0Fi3c028088; + Mon, 19 Nov 2007 19:15:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47422729.E1EB0.32048 ; + 19 Nov 2007 19:15:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DA48582E1E; + Tue, 20 Nov 2007 00:12:35 +0000 (GMT) +Message-ID: <200711200009.lAK09fHr000826@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 730 + for ; + Tue, 20 Nov 2007 00:12:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B397E24F92 + for ; Tue, 20 Nov 2007 00:15:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK09fAZ000828 + for ; Mon, 19 Nov 2007 19:09:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK09fHr000826 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:09:41 -0500 +Date: Mon, 19 Nov 2007 19:09:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38444 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:15:44 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38444 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:09:38 -0500 (Mon, 19 Nov 2007) +New Revision: 38444 + +Added: +entity/branches/SAK-12239/ +Log: +SAK-12339 +Creating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:14:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:14:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:14:52 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lAK0EqVL019445; + Mon, 19 Nov 2007 19:14:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 474226F4.4AC97.30900 ; + 19 Nov 2007 19:14:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2E7CC823D5; + Tue, 20 Nov 2007 00:11:42 +0000 (GMT) +Message-ID: <200711200008.lAK08r39000813@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 639 + for ; + Tue, 20 Nov 2007 00:11:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2678C24F92 + for ; Tue, 20 Nov 2007 00:14:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK08rpi000815 + for ; Mon, 19 Nov 2007 19:08:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK08r39000813 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:08:53 -0500 +Date: Mon, 19 Nov 2007 19:08:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38443 - db/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:14:52 2007 +X-DSPAM-Confidence: 0.9887 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38443 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:08:49 -0500 (Mon, 19 Nov 2007) +New Revision: 38443 + +Added: +db/branches/SAK-12239/ +Log: +SAK-12339 +Creating branch in db for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:14:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:14:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:14:11 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by sleepers.mail.umich.edu () with ESMTP id lAK0EB82027463; + Mon, 19 Nov 2007 19:14:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 474226C7.3987F.20779 ; + 19 Nov 2007 19:14:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5BA5D82E4A; + Tue, 20 Nov 2007 00:10:57 +0000 (GMT) +Message-ID: <200711200008.lAK089Hg000800@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 199 + for ; + Tue, 20 Nov 2007 00:10:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A9DC724F92 + for ; Tue, 20 Nov 2007 00:13:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK089Kg000802 + for ; Mon, 19 Nov 2007 19:08:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK089Hg000800 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:08:09 -0500 +Date: Mon, 19 Nov 2007 19:08:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38442 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:14:11 2007 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38442 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:08:05 -0500 (Mon, 19 Nov 2007) +New Revision: 38442 + +Added: +content/branches/SAK-12239/ +Log: +SAK-12339 +Creating branch in content for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:13:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:13:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:13:20 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by awakenings.mail.umich.edu () with ESMTP id lAK0DJci031963; + Mon, 19 Nov 2007 19:13:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4742269A.37DCE.24404 ; + 19 Nov 2007 19:13:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2BE5382EBC; + Tue, 20 Nov 2007 00:10:11 +0000 (GMT) +Message-ID: <200711200007.lAK07Gdd000788@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1021 + for ; + Tue, 20 Nov 2007 00:09:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1125824F92 + for ; Tue, 20 Nov 2007 00:12:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK07Gog000790 + for ; Mon, 19 Nov 2007 19:07:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK07Gdd000788 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:07:16 -0500 +Date: Mon, 19 Nov 2007 19:07:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38441 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:13:20 2007 +X-DSPAM-Confidence: 0.9828 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38441 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:07:13 -0500 (Mon, 19 Nov 2007) +New Revision: 38441 + +Removed: +entity/branches/SAK-12239/ +Log: +SAK-12239 +Copied wrong branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:12:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:12:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:12:49 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id lAK0CnOY031891; + Mon, 19 Nov 2007 19:12:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4742267B.8EB1F.15117 ; + 19 Nov 2007 19:12:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 919A4823D5; + Tue, 20 Nov 2007 00:09:41 +0000 (GMT) +Message-ID: <200711200006.lAK06ibE000776@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 317 + for ; + Tue, 20 Nov 2007 00:09:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EB26824F92 + for ; Tue, 20 Nov 2007 00:12:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK06iUj000778 + for ; Mon, 19 Nov 2007 19:06:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK06ibE000776 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:06:44 -0500 +Date: Mon, 19 Nov 2007 19:06:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38440 - db/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:12:49 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38440 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:06:41 -0500 (Mon, 19 Nov 2007) +New Revision: 38440 + +Removed: +db/branches/SAK-12239/ +Log: +SAK-12239 +Copied wrong branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:12:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:12:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:12:18 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lAK0CHo2031625; + Mon, 19 Nov 2007 19:12:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4742265A.47DD.493 ; + 19 Nov 2007 19:12:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 143C382E1E; + Tue, 20 Nov 2007 00:09:08 +0000 (GMT) +Message-ID: <200711200006.lAK068pI000764@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 632 + for ; + Tue, 20 Nov 2007 00:08:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 66EFE24F95 + for ; Tue, 20 Nov 2007 00:11:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK069HD000766 + for ; Mon, 19 Nov 2007 19:06:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK068pI000764 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:06:08 -0500 +Date: Mon, 19 Nov 2007 19:06:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38439 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:12:18 2007 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38439 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:06:06 -0500 (Mon, 19 Nov 2007) +New Revision: 38439 + +Removed: +content/branches/SAK-12239/ +Log: +SAK-12239 +Copied wrong version + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:08:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:08:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:08:33 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lAK08WAE028396; + Mon, 19 Nov 2007 19:08:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47422579.22F02.30053 ; + 19 Nov 2007 19:08:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0071E82EC9; + Tue, 20 Nov 2007 00:05:21 +0000 (GMT) +Message-ID: <200711200002.lAK02Woe000752@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 169 + for ; + Tue, 20 Nov 2007 00:04:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 68C9924F6F + for ; Tue, 20 Nov 2007 00:08:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK02WOr000754 + for ; Mon, 19 Nov 2007 19:02:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK02Woe000752 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:02:32 -0500 +Date: Mon, 19 Nov 2007 19:02:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38438 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:08:33 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38438 + +Author: jimeng@umich.edu +Date: 2007-11-19 19:02:29 -0500 (Mon, 19 Nov 2007) +New Revision: 38438 + +Added: +entity/branches/SAK-12239/ +Log: +SAK-12339 +Creating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:05:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:05:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:05:49 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by brazil.mail.umich.edu () with ESMTP id lAK05mNO023204; + Mon, 19 Nov 2007 19:05:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 474224D5.C9862.27169 ; + 19 Nov 2007 19:05:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C1B3A82EAB; + Tue, 20 Nov 2007 00:01:51 +0000 (GMT) +Message-ID: <200711192359.lAJNxWi7000732@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331 + for ; + Tue, 20 Nov 2007 00:01:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD923235A2 + for ; Tue, 20 Nov 2007 00:05:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJNxWw4000734 + for ; Mon, 19 Nov 2007 18:59:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJNxWi7000732 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 18:59:32 -0500 +Date: Mon, 19 Nov 2007 18:59:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38437 - db/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:05:49 2007 +X-DSPAM-Confidence: 0.8496 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38437 + +Author: jimeng@umich.edu +Date: 2007-11-19 18:59:29 -0500 (Mon, 19 Nov 2007) +New Revision: 38437 + +Added: +db/branches/SAK-12239/ +Log: +SAK-12239 +Added branch to db for new Storage classes needed to support binary-entity serialization in content (porting performance improvements from 2.5.x in content to sakai 2.4.x). + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 19:04:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:04:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:04:56 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by chaos.mail.umich.edu () with ESMTP id lAK04tW6019940; + Mon, 19 Nov 2007 19:04:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4742249C.C777F.10579 ; + 19 Nov 2007 19:04:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C199382EA6; + Tue, 20 Nov 2007 00:01:00 +0000 (GMT) +Message-ID: <200711192356.lAJNuII6000717@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242 + for ; + Tue, 20 Nov 2007 00:00:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C296024F84 + for ; Tue, 20 Nov 2007 00:01:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJNuI90000719 + for ; Mon, 19 Nov 2007 18:56:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJNuII6000717 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 18:56:18 -0500 +Date: Mon, 19 Nov 2007 18:56:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38436 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:04:56 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38436 + +Author: jimeng@umich.edu +Date: 2007-11-19 18:56:12 -0500 (Mon, 19 Nov 2007) +New Revision: 38436 + +Added: +content/branches/SAK-12239/ +Log: +SAK-12239 +Creating branch for work on porting 2.5.x content schema changes to sakai 2.4.x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Mon Nov 19 19:04:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 19:04:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 19:04:51 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by mission.mail.umich.edu () with ESMTP id lAK04ogB012495; + Mon, 19 Nov 2007 19:04:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47422499.14FE9.21356 ; + 19 Nov 2007 19:04:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CF11782EA9; + Tue, 20 Nov 2007 00:00:54 +0000 (GMT) +Message-ID: <200711192354.lAJNstgk000684@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 979 + for ; + Tue, 20 Nov 2007 00:00:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5468924F81 + for ; Tue, 20 Nov 2007 00:00:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJNstD5000686 + for ; Mon, 19 Nov 2007 18:54:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJNstgk000684 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 18:54:55 -0500 +Date: Mon, 19 Nov 2007 18:54:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r38435 - osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 19:04:51 2007 +X-DSPAM-Confidence: 0.9774 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38435 + +Author: john.ellis@rsmart.com +Date: 2007-11-19 18:54:53 -0500 (Mon, 19 Nov 2007) +New Revision: 38435 + +Modified: +osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java +Log: +SAK-12238 +added code to check for null items in a list of configurations + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 17:16:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 17:16:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 17:16:10 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by chaos.mail.umich.edu () with ESMTP id lAJMG9GD031469; + Mon, 19 Nov 2007 17:16:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47420B22.739EE.15882 ; + 19 Nov 2007 17:16:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 384AC82A64; + Mon, 19 Nov 2007 22:16:10 +0000 (GMT) +Message-ID: <200711192210.lAJMAGK8000444@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022 + for ; + Mon, 19 Nov 2007 22:15:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 85DAA24C8D + for ; Mon, 19 Nov 2007 22:15:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJMAGPF000446 + for ; Mon, 19 Nov 2007 17:10:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJMAGK8000444 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:10:16 -0500 +Date: Mon, 19 Nov 2007 17:10:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38431 - gradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 17:16:10 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38431 + +Author: mmmay@indiana.edu +Date: 2007-11-19 17:10:15 -0500 (Mon, 19 Nov 2007) +New Revision: 38431 + +Modified: +gradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +Log: +svn merge -r 37925:37926 https://source.sakaiproject.org/svn/gradebook/trunk +U service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +in-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 37925:37926 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37926 | rjlowe@iupui.edu | 2007-11-07 09:39:25 -0500 (Wed, 07 Nov 2007) | 4 lines + +SAK-12017 +http://bugs.sakaiproject.org/jira/browse/SAK-12017 +GB / "All Grades" sort by course grade +Fails when you have a student with a null course grade record - Fixed +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 17:12:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 17:12:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 17:12:20 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id lAJMCJ4j017167; + Mon, 19 Nov 2007 17:12:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47420A3C.7D943.14120 ; + 19 Nov 2007 17:12:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 453877E096; + Mon, 19 Nov 2007 22:12:22 +0000 (GMT) +Message-ID: <200711192206.lAJM6SJj000419@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006 + for ; + Mon, 19 Nov 2007 22:12:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B0C024C8D + for ; Mon, 19 Nov 2007 22:11:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJM6SYv000421 + for ; Mon, 19 Nov 2007 17:06:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJM6SJj000419 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:06:28 -0500 +Date: Mon, 19 Nov 2007 17:06:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38430 - gradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 17:12:20 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38430 + +Author: mmmay@indiana.edu +Date: 2007-11-19 17:06:27 -0500 (Mon, 19 Nov 2007) +New Revision: 38430 + +Modified: +gradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +Log: +svn merge -r 37165:37166 https://source.sakaiproject.org/svn/gradebook/trunk +U service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +in-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 37165:37166 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37166 | rjlowe@iupui.edu | 2007-10-22 13:31:36 -0400 (Mon, 22 Oct 2007) | 3 lines + +SAK-12017 +http://bugs.sakaiproject.org/jira/browse/SAK-12017 +GB / "All Grades" sort by course grade +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 17:10:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 17:10:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 17:10:28 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lAJMARZf002957; + Mon, 19 Nov 2007 17:10:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 474209CB.59213.4825 ; + 19 Nov 2007 17:10:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8A31A790EF; + Mon, 19 Nov 2007 22:10:26 +0000 (GMT) +Message-ID: <200711192204.lAJM4WPr000407@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556 + for ; + Mon, 19 Nov 2007 22:10:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3EAF024C8D + for ; Mon, 19 Nov 2007 22:10:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJM4WKi000409 + for ; Mon, 19 Nov 2007 17:04:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJM4WPr000407 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:04:32 -0500 +Date: Mon, 19 Nov 2007 17:04:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38429 - gradebook/branches/sakai_2-5-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 17:10:28 2007 +X-DSPAM-Confidence: 0.6566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38429 + +Author: mmmay@indiana.edu +Date: 2007-11-19 17:04:31 -0500 (Mon, 19 Nov 2007) +New Revision: 38429 + +Modified: +gradebook/branches/sakai_2-5-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +svn merge -r 38078:38079 https://source.sakaiproject.org/svn/gradebook/trunk +U app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 38078:38079 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r38079 | cwen@iupui.edu | 2007-11-09 14:43:01 -0500 (Fri, 09 Nov 2007) | 5 lines + +http://128.196.219.68/jira/browse/SAK-12163 +SAK-12163 +=> +https://uisapp2.iu.edu/jira/browse/ONC-233 +exceptions thrown while attempting to rename the gradebook item. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 17:08:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 17:08:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 17:08:35 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id lAJM8Y54000415; + Mon, 19 Nov 2007 17:08:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47420958.6647B.29891 ; + 19 Nov 2007 17:08:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8268B82A64; + Mon, 19 Nov 2007 22:08:33 +0000 (GMT) +Message-ID: <200711192202.lAJM2Y8J000384@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 286 + for ; + Mon, 19 Nov 2007 22:08:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 40BBA24C8D + for ; Mon, 19 Nov 2007 22:08:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJM2Y9q000386 + for ; Mon, 19 Nov 2007 17:02:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJM2Y8J000384 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:02:34 -0500 +Date: Mon, 19 Nov 2007 17:02:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38428 - gradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 17:08:35 2007 +X-DSPAM-Confidence: 0.6192 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38428 + +Author: mmmay@indiana.edu +Date: 2007-11-19 17:02:33 -0500 (Mon, 19 Nov 2007) +New Revision: 38428 + +Modified: +gradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +Log: +svn merge -r 37822:37823 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +in-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 37822:37823 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37823 | josrodri@iupui.edu | 2007-11-06 16:40:05 -0500 (Tue, 06 Nov 2007) | 3 lines + +SAK-12133: spreadsheet item add, if item already exists but no points possible is in spreadsheet for that item, just keep current value + +SAK-9762: added an init() method to do code currently processed in constructor. Kept an empty constructor for easy backing out. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Mon Nov 19 17:01:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 17:01:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 17:01:50 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id lAJM1n0K005742; + Mon, 19 Nov 2007 17:01:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 474207C1.6DD2D.17865 ; + 19 Nov 2007 17:01:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B6A1A82DD9; + Mon, 19 Nov 2007 22:01:46 +0000 (GMT) +Message-ID: <200711192155.lAJLtsAt000370@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88 + for ; + Mon, 19 Nov 2007 22:01:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 47E1F24DE5 + for ; Mon, 19 Nov 2007 22:01:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJLtsqm000372 + for ; Mon, 19 Nov 2007 16:55:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJLtsAt000370 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 16:55:54 -0500 +Date: Mon, 19 Nov 2007 16:55:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r38427 - in sam/trunk: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation samigo-app/src/webapp/jsf/evaluation samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/services +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 17:01:50 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38427 + +Author: ktsao@stanford.edu +Date: 2007-11-19 16:55:42 -0500 (Mon, 19 Nov 2007) +New Revision: 38427 + +Modified: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java +sam/trunk/samigo-app/src/webapp/jsf/evaluation/totalScores.jsp +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java +Log: +SAK-12098 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 16:19:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 16:19:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 16:19:45 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by awakenings.mail.umich.edu () with ESMTP id lAJLJjM7002981; + Mon, 19 Nov 2007 16:19:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4741FDE7.703D8.13966 ; + 19 Nov 2007 16:19:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D28747380A; + Mon, 19 Nov 2007 21:19:34 +0000 (GMT) +Message-ID: <200711192113.lAJLDgwj032711@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 476 + for ; + Mon, 19 Nov 2007 21:19:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B3988213D6 + for ; Mon, 19 Nov 2007 21:19:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJLDgPm032713 + for ; Mon, 19 Nov 2007 16:13:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJLDgwj032711 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 16:13:42 -0500 +Date: Mon, 19 Nov 2007 16:13:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38426 - content/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 16:19:45 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38426 + +Author: jimeng@umich.edu +Date: 2007-11-19 16:13:41 -0500 (Mon, 19 Nov 2007) +New Revision: 38426 + +Added: +content/trunk/readme.txt +Log: +SAK-12235 +Added readme file for conversion script + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 16:03:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 16:03:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 16:03:47 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lAJL3kZo020571; + Mon, 19 Nov 2007 16:03:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4741FA2A.BB47F.19742 ; + 19 Nov 2007 16:03:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 67EDE8142E; + Mon, 19 Nov 2007 21:03:27 +0000 (GMT) +Message-ID: <200711192057.lAJKvbvt032664@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 762 + for ; + Mon, 19 Nov 2007 21:03:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0B2CB24C93 + for ; Mon, 19 Nov 2007 21:03:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJKvbx7032666 + for ; Mon, 19 Nov 2007 15:57:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJKvbvt032664 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 15:57:37 -0500 +Date: Mon, 19 Nov 2007 15:57:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38425 - content/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 16:03:47 2007 +X-DSPAM-Confidence: 0.8441 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38425 + +Author: jimeng@umich.edu +Date: 2007-11-19 15:57:36 -0500 (Mon, 19 Nov 2007) +New Revision: 38425 + +Modified: +content/trunk/upgradeschema-oracle.config +Log: +SAK-12235 +Changed query to verify existence of required (new) columns for oracle + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Mon Nov 19 15:49:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 15:49:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 15:49:56 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lAJKntCa017659; + Mon, 19 Nov 2007 15:49:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4741F6EB.5034C.24801 ; + 19 Nov 2007 15:49:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE37482D53; + Mon, 19 Nov 2007 20:46:43 +0000 (GMT) +Message-ID: <200711192043.lAJKho8K032636@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712 + for ; + Mon, 19 Nov 2007 20:46:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AFFA6213DF + for ; Mon, 19 Nov 2007 20:49:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJKhoS9032638 + for ; Mon, 19 Nov 2007 15:43:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJKho8K032636 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 15:43:50 -0500 +Date: Mon, 19 Nov 2007 15:43:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38424 - in content/trunk: . content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 15:49:56 2007 +X-DSPAM-Confidence: 0.9907 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38424 + +Author: jimeng@umich.edu +Date: 2007-11-19 15:43:47 -0500 (Mon, 19 Nov 2007) +New Revision: 38424 + +Added: +content/trunk/runconversion.sh +content/trunk/upgradeschema-mysql.config +content/trunk/upgradeschema-oracle.config +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config +Log: +SAK-12235 +Added indexes to register tables in the mysql conversion config for content. +Copies the mysql config and modified it for oracle. +Provided a runconversion.sh shellscript file at the root of the content directory. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Nov 19 15:05:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 15:05:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 15:05:27 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lAJK5Pr8009185; + Mon, 19 Nov 2007 15:05:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4741EC7D.77615.11766 ; + 19 Nov 2007 15:05:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8E75675351; + Mon, 19 Nov 2007 20:05:06 +0000 (GMT) +Message-ID: <200711191959.lAJJxJQx032584@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 581 + for ; + Mon, 19 Nov 2007 20:04:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 94B42236AC + for ; Mon, 19 Nov 2007 20:04:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJxJPw032586 + for ; Mon, 19 Nov 2007 14:59:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJxJQx032584 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:59:19 -0500 +Date: Mon, 19 Nov 2007 14:59:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38423 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 15:05:27 2007 +X-DSPAM-Confidence: 0.8440 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38423 + +Author: cwen@iupui.edu +Date: 2007-11-19 14:59:18 -0500 (Mon, 19 Nov 2007) +New Revision: 38423 + +Modified: +oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/AddFinalGradesToolJob.java +Log: +change back AddFinalGradesToolJob to add our FGGB tool. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 14:58:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 14:58:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 14:58:32 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by godsend.mail.umich.edu () with ESMTP id lAJJwVZZ013458; + Mon, 19 Nov 2007 14:58:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4741EADE.67E64.14475 ; + 19 Nov 2007 14:58:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 11CB182928; + Mon, 19 Nov 2007 19:58:16 +0000 (GMT) +Message-ID: <200711191952.lAJJqQ9M032572@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 313 + for ; + Mon, 19 Nov 2007 19:57:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BE84F236AC + for ; Mon, 19 Nov 2007 19:57:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJqQlK032574 + for ; Mon, 19 Nov 2007 14:52:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJqQ9M032572 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:52:26 -0500 +Date: Mon, 19 Nov 2007 14:52:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38422 - metaobj/branches/sakai_2-5-x/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 14:58:32 2007 +X-DSPAM-Confidence: 0.6516 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38422 + +Author: mmmay@indiana.edu +Date: 2007-11-19 14:52:25 -0500 (Mon, 19 Nov 2007) +New Revision: 38422 + +Modified: +metaobj/branches/sakai_2-5-x/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml/ResourceUriResolver.java +Log: +svn merge -r 38222:38223 https://source.sakaiproject.org/svn/metaobj/trunk +U metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml/ResourceUriResolver.java +in-143-196:~/java/2-5/sakai_2-5-x/metaobj mmmay$ svn log -r 38222:38223 https://source.sakaiproject.org/svn/metaobj/trunk------------------------------------------------------------------------ +r38223 | john.ellis@rsmart.com | 2007-11-15 18:09:31 -0500 (Thu, 15 Nov 2007) | 3 lines + +SAK-12218 +added code to properly deal with external urls + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 19 14:47:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 14:47:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 14:47:08 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id lAJJl8au021322; + Mon, 19 Nov 2007 14:47:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4741E832.D1AD3.10163 ; + 19 Nov 2007 14:47:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 95C1182928; + Mon, 19 Nov 2007 19:46:00 +0000 (GMT) +Message-ID: <200711191941.lAJJf7C9032546@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 455 + for ; + Mon, 19 Nov 2007 19:45:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1846E24F22 + for ; Mon, 19 Nov 2007 19:46:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJf7QN032548 + for ; Mon, 19 Nov 2007 14:41:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJf7C9032546 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:41:07 -0500 +Date: Mon, 19 Nov 2007 14:41:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38421 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 14:47:08 2007 +X-DSPAM-Confidence: 0.8491 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38421 + +Author: zqian@umich.edu +Date: 2007-11-19 14:41:04 -0500 (Mon, 19 Nov 2007) +New Revision: 38421 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/trunk/upgradeschema_mysql.config +Log: +fix to SAK-12210: complex subselect lethal on mysql + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 14:07:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 14:07:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 14:07:50 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lAJJ7nmN022042; + Mon, 19 Nov 2007 14:07:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4741DEFA.7A7E8.6216 ; + 19 Nov 2007 14:07:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9179B75867; + Mon, 19 Nov 2007 19:07:45 +0000 (GMT) +Message-ID: <200711191901.lAJJ1qT1032456@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425 + for ; + Mon, 19 Nov 2007 19:07:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AFCD1235DF + for ; Mon, 19 Nov 2007 19:07:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJ1qgo032458 + for ; Mon, 19 Nov 2007 14:01:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJ1qT1032456 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:01:52 -0500 +Date: Mon, 19 Nov 2007 14:01:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38420 - memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 14:07:50 2007 +X-DSPAM-Confidence: 0.6528 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38420 + +Author: mmmay@indiana.edu +Date: 2007-11-19 14:01:51 -0500 (Mon, 19 Nov 2007) +New Revision: 38420 + +Modified: +memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +Log: +svn merge -r 38242:38243 https://source.sakaiproject.org/svn/memory/trunk +U memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/memory mmmay$ svn log -r 38242:38243 https://source.sakaiproject.org/svn/memory/trunk +------------------------------------------------------------------------ +r38243 | ian@caret.cam.ac.uk | 2007-11-16 12:44:00 -0500 (Fri, 16 Nov 2007) | 9 lines + +http://jira.sakaiproject.org/jira/browse/SAK-12116 +Fixed + +Now using thread safe iterator mechanism. (I hope) + +Tested locally with no problems. + + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 14:07:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 14:07:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 14:07:04 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id lAJJ72QR020837; + Mon, 19 Nov 2007 14:07:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4741DEB0.CFDBB.32458 ; + 19 Nov 2007 14:06:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5DE5082950; + Mon, 19 Nov 2007 19:06:08 +0000 (GMT) +Message-ID: <200711191900.lAJJ09pr032442@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416 + for ; + Mon, 19 Nov 2007 19:05:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E9EA7235DF + for ; Mon, 19 Nov 2007 19:05:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJ09eX032444 + for ; Mon, 19 Nov 2007 14:00:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJ09pr032442 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:00:09 -0500 +Date: Mon, 19 Nov 2007 14:00:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38419 - osp/branches/sakai_2-5-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 14:07:04 2007 +X-DSPAM-Confidence: 0.6566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38419 + +Author: mmmay@indiana.edu +Date: 2007-11-19 14:00:08 -0500 (Mon, 19 Nov 2007) +New Revision: 38419 + +Modified: +osp/branches/sakai_2-5-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java +Log: +svn merge -r 38241:38242 https://source.sakaiproject.org/svn/osp/trunk +U matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38241:38242 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r38242 | bkirschn@umich.edu | 2007-11-16 12:32:25 -0500 (Fri, 16 Nov 2007) | 1 line + +SAK-12198 fix crash when attachments/artifacts are hidden +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 14:01:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 14:01:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 14:01:25 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by score.mail.umich.edu () with ESMTP id lAJJ1Oxk024929; + Mon, 19 Nov 2007 14:01:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4741DD7A.88767.28471 ; + 19 Nov 2007 14:01:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B07C1820A0; + Mon, 19 Nov 2007 18:53:45 +0000 (GMT) +Message-ID: <200711191855.lAJItVZ3032428@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760 + for ; + Mon, 19 Nov 2007 18:53:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D83C7235D6 + for ; Mon, 19 Nov 2007 19:00:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJItVir032430 + for ; Mon, 19 Nov 2007 13:55:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJItVZ3032428 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:55:31 -0500 +Date: Mon, 19 Nov 2007 13:55:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38418 - osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 14:01:25 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38418 + +Author: mmmay@indiana.edu +Date: 2007-11-19 13:55:30 -0500 (Mon, 19 Nov 2007) +New Revision: 38418 + +Modified: +osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties +osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties +Log: +svn merge -r 38038:38039 https://source.sakaiproject.org/svn/osp/trunk +U presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties +U presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38038:38039 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r38039 | chmaurer@iupui.edu | 2007-11-08 09:19:54 -0500 (Thu, 08 Nov 2007) | 2 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-12135 +Fixing typo +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 13:59:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 13:59:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 13:59:53 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by brazil.mail.umich.edu () with ESMTP id lAJIxqq8021780; + Mon, 19 Nov 2007 13:59:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4741DD1A.E1933.27512 ; + 19 Nov 2007 13:59:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 17DC082B25; + Mon, 19 Nov 2007 18:51:52 +0000 (GMT) +Message-ID: <200711191853.lAJIrGku032396@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 210 + for ; + Mon, 19 Nov 2007 18:51:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8F05424F68 + for ; Mon, 19 Nov 2007 18:58:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIrGcK032398 + for ; Mon, 19 Nov 2007 13:53:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIrGku032396 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:53:16 -0500 +Date: Mon, 19 Nov 2007 13:53:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38417 - osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 13:59:53 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38417 + +Author: mmmay@indiana.edu +Date: 2007-11-19 13:53:15 -0500 (Mon, 19 Nov 2007) +New Revision: 38417 + +Modified: +osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties +osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties +Log: +svn merge -r 38040:38041 https://source.sakaiproject.org/svn/osp/trunk +U presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties +U presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38040:38041 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r38041 | chmaurer@iupui.edu | 2007-11-08 09:26:53 -0500 (Thu, 08 Nov 2007) | 2 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-12137 +Change wording to match +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 13:59:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 13:59:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 13:59:40 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by jacknife.mail.umich.edu () with ESMTP id lAJIxdIE025522; + Mon, 19 Nov 2007 13:59:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4741DD11.2C38E.1952 ; + 19 Nov 2007 13:59:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F076F82ADE; + Mon, 19 Nov 2007 18:51:33 +0000 (GMT) +Message-ID: <200711191845.lAJIjtRL032348@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 894 + for ; + Mon, 19 Nov 2007 18:44:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5898B235CC + for ; Mon, 19 Nov 2007 18:51:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIjt4U032350 + for ; Mon, 19 Nov 2007 13:45:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIjtRL032348 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:45:55 -0500 +Date: Mon, 19 Nov 2007 13:45:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38413 - content-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 13:59:40 2007 +X-DSPAM-Confidence: 0.7612 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38413 + +Author: mmmay@indiana.edu +Date: 2007-11-19 13:45:54 -0500 (Mon, 19 Nov 2007) +New Revision: 38413 + +Modified: +content-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java +Log: +svn merge -r 38114:38117 https://source.sakaiproject.org/svn/content-review/trunk +U content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java + +svn log -r 38114:38116 https://source.sakaiproject.org/svn/content-review/trunk +------------------------------------------------------------------------ +r38114 | david.horwitz@uct.ac.za | 2007-11-12 04:17:19 -0500 (Mon, 12 Nov 2007) | 1 line + +SAK-11787 deprecat getReport and replace with getReportInstructor and getReportStrudent +------------------------------------------------------------------------ +r38115 | david.horwitz@uct.ac.za | 2007-11-12 04:36:57 -0500 (Mon, 12 Nov 2007) | 1 line + +SAK-11787 deprecate the correct method +------------------------------------------------------------------------ +r38116 | david.horwitz@uct.ac.za | 2007-11-12 04:39:21 -0500 (Mon, 12 Nov 2007) | 1 line + +SAK-11787 deprecate the correct method +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 13:59:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 13:59:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 13:59:32 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id lAJIxVnl025366; + Mon, 19 Nov 2007 13:59:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4741DCD8.C30D7.1074 ; + 19 Nov 2007 13:58:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 879AD82934; + Mon, 19 Nov 2007 18:51:25 +0000 (GMT) +Message-ID: <200711191851.lAJIpcGT032384@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 297 + for ; + Mon, 19 Nov 2007 18:50:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6B098235CC + for ; Mon, 19 Nov 2007 18:57:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIpcmP032386 + for ; Mon, 19 Nov 2007 13:51:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIpcGT032384 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:51:38 -0500 +Date: Mon, 19 Nov 2007 13:51:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38416 - osp/branches/sakai_2-5-x/presentation/api-impl/src/resources/org/theospi/portfolio/presentation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 13:59:32 2007 +X-DSPAM-Confidence: 0.7004 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38416 + +Author: mmmay@indiana.edu +Date: 2007-11-19 13:51:37 -0500 (Mon, 19 Nov 2007) +New Revision: 38416 + +Modified: +osp/branches/sakai_2-5-x/presentation/api-impl/src/resources/org/theospi/portfolio/presentation/freeform_template.xsl +Log: +svn merge -r 38075:38076 https://source.sakaiproject.org/svn/osp/trunk +U presentation/api-impl/src/resources/org/theospi/portfolio/presentation/freeform_template.xsl +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38075:38076 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r38076 | john.ellis@rsmart.com | 2007-11-09 11:18:33 -0500 (Fri, 09 Nov 2007) | 4 lines + +SAK-11979 +added code to render output as html + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 13:59:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 13:59:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 13:59:31 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id lAJIxU8f008961; + Mon, 19 Nov 2007 13:59:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4741DD03.E017A.19920 ; + 19 Nov 2007 13:59:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9581F8292E; + Mon, 19 Nov 2007 18:51:32 +0000 (GMT) +Message-ID: <200711191843.lAJIhYB0032336@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651 + for ; + Mon, 19 Nov 2007 18:42:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B5151235CC + for ; Mon, 19 Nov 2007 18:49:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIhYDN032338 + for ; Mon, 19 Nov 2007 13:43:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIhYB0032336 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:43:34 -0500 +Date: Mon, 19 Nov 2007 13:43:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38412 - content-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 13:59:31 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38412 + +Author: mmmay@indiana.edu +Date: 2007-11-19 13:43:33 -0500 (Mon, 19 Nov 2007) +New Revision: 38412 + +Modified: +content-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java +Log: +svn merge -r 38113:38114 https://source.sakaiproject.org/svn/content-review/trunk +U content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java +in-143-196:~/java/2-5/sakai_2-5-x/content-review mmmay$ svn log -r 38113:38114 https://source.sakaiproject.org/svn/content-review/trunk +------------------------------------------------------------------------ +r38114 | david.horwitz@uct.ac.za | 2007-11-12 04:17:19 -0500 (Mon, 12 Nov 2007) | 1 line + +SAK-11787 deprecat getReport and replace with getReportInstructor and getReportStrudent +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 13:59:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 13:59:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 13:59:22 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lAJIxKUN008791; + Mon, 19 Nov 2007 13:59:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4741DCDD.C4AA0.6524 ; + 19 Nov 2007 13:58:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 34A5B82B03; + Mon, 19 Nov 2007 18:51:29 +0000 (GMT) +Message-ID: <200711191847.lAJIlGW6032360@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 820 + for ; + Mon, 19 Nov 2007 18:45:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E89CF235CC + for ; Mon, 19 Nov 2007 18:52:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIlGVQ032362 + for ; Mon, 19 Nov 2007 13:47:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIlGW6032360 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:47:16 -0500 +Date: Mon, 19 Nov 2007 13:47:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38414 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 13:59:22 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38414 + +Author: mmmay@indiana.edu +Date: 2007-11-19 13:47:14 -0500 (Mon, 19 Nov 2007) +New Revision: 38414 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r 38116:38117 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38116:38117 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r38117 | david.horwitz@uct.ac.za | 2007-11-12 04:53:08 -0500 (Mon, 12 Nov 2007) | 1 line + +SAK-11787 make use of the new Content review methods +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 13:58:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 13:58:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 13:58:43 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lAJIwgjs014167; + Mon, 19 Nov 2007 13:58:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4741DCD3.A99E1.4729 ; + 19 Nov 2007 13:58:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E4E8A82B11; + Mon, 19 Nov 2007 18:51:18 +0000 (GMT) +Message-ID: <200711191849.lAJInCRn032372@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 916 + for ; + Mon, 19 Nov 2007 18:47:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DB76A235CC + for ; Mon, 19 Nov 2007 18:54:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJInCTQ032374 + for ; Mon, 19 Nov 2007 13:49:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJInCRn032372 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:49:12 -0500 +Date: Mon, 19 Nov 2007 13:49:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38415 - reference/branches/sakai_2-5-x/library/src/webapp/content/gateway +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 13:58:43 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38415 + +Author: mmmay@indiana.edu +Date: 2007-11-19 13:49:10 -0500 (Mon, 19 Nov 2007) +New Revision: 38415 + +Modified: +reference/branches/sakai_2-5-x/library/src/webapp/content/gateway/acknowledgments.html +Log: +svn merge -r 38162:38163 https://source.sakaiproject.org/svn/reference/trunk +U library/src/webapp/content/gateway/acknowledgments.html +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 38162:38163 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r38163 | gsilver@umich.edu | 2007-11-14 10:44:18 -0500 (Wed, 14 Nov 2007) | 1 line + +http://jira.sakaiproject.org/jira/browse/SAK-12182 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From thoppaymallika@fhda.edu Mon Nov 19 13:58:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 13:58:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 13:58:00 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by fan.mail.umich.edu () with ESMTP id lAJIvxhD007741; + Mon, 19 Nov 2007 13:57:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4741DCAC.A90DD.5651 ; + 19 Nov 2007 13:57:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CA7768292D; + Mon, 19 Nov 2007 18:50:45 +0000 (GMT) +Message-ID: <200711191843.lAJIhLBK032325@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 583 + for ; + Mon, 19 Nov 2007 18:41:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4CA02235CC + for ; Mon, 19 Nov 2007 18:48:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIhLdD032327 + for ; Mon, 19 Nov 2007 13:43:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIhLBK032325 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:43:21 -0500 +Date: Mon, 19 Nov 2007 13:43:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to thoppaymallika@fhda.edu using -f +To: source@collab.sakaiproject.org +From: thoppaymallika@fhda.edu +Subject: [contrib] svn commit: r43583 - foothill/melete/melete-app/src/java/org/sakaiproject/tool/melete +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 13:58:00 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=43583 + +Author: thoppaymallika@fhda.edu +Date: 2007-11-19 13:43:18 -0500 (Mon, 19 Nov 2007) +New Revision: 43583 + +Modified: +foothill/melete/melete-app/src/java/org/sakaiproject/tool/melete/ListModulesPage.java +Log: +removing settransient + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Nov 19 12:36:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 12:36:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 12:36:16 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lAJHaGHS030323; + Mon, 19 Nov 2007 12:36:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4741C985.F208A.580 ; + 19 Nov 2007 12:36:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1AB708290E; + Mon, 19 Nov 2007 17:35:56 +0000 (GMT) +Message-ID: <200711191730.lAJHUICj032230@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 910 + for ; + Mon, 19 Nov 2007 17:35:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8FE8D1E9A2 + for ; Mon, 19 Nov 2007 17:35:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJHUI8D032232 + for ; Mon, 19 Nov 2007 12:30:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJHUICj032230 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 12:30:18 -0500 +Date: Mon, 19 Nov 2007 12:30:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38411 - osp/branches/osp_nightly +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 12:36:16 2007 +X-DSPAM-Confidence: 0.9771 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38411 + +Author: chmaurer@iupui.edu +Date: 2007-11-19 12:30:17 -0500 (Mon, 19 Nov 2007) +New Revision: 38411 + +Modified: +osp/branches/osp_nightly/pom.xml +Log: +removing formbuilder temporarily + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:50:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:50:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:50:49 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by flawless.mail.umich.edu () with ESMTP id lAJGon4v016557; + Mon, 19 Nov 2007 11:50:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4741BED9.23D59.26948 ; + 19 Nov 2007 11:50:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 329F273D6A; + Mon, 19 Nov 2007 16:50:31 +0000 (GMT) +Message-ID: <200711191644.lAJGigu8032126@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 35 + for ; + Mon, 19 Nov 2007 16:50:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 945EA24F1E + for ; Mon, 19 Nov 2007 16:50:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGig9O032128 + for ; Mon, 19 Nov 2007 11:44:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGigu8032126 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:44:42 -0500 +Date: Mon, 19 Nov 2007 11:44:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38410 - polls/branches/sakai_2-5-x/tool/src/webapp/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:50:49 2007 +X-DSPAM-Confidence: 0.7003 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38410 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:44:41 -0500 (Mon, 19 Nov 2007) +New Revision: 38410 + +Modified: +polls/branches/sakai_2-5-x/tool/src/webapp/templates/voteAdd.html +Log: +svn merge -r 38258:38259 https://source.sakaiproject.org/svn/polls/trunk +U tool/src/webapp/templates/voteAdd.html +in-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38258:38259 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r38259 | david.horwitz@uct.ac.za | 2007-11-18 02:35:09 -0500 (Sun, 18 Nov 2007) | 1 line + +SAK-11703 allow for a larger text area window +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:49:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:49:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:49:43 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by godsend.mail.umich.edu () with ESMTP id lAJGngB6007627; + Mon, 19 Nov 2007 11:49:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4741BE9D.8948B.16366 ; + 19 Nov 2007 11:49:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 03A6A7621D; + Mon, 19 Nov 2007 16:49:07 +0000 (GMT) +Message-ID: <200711191643.lAJGhG9C032114@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 156 + for ; + Mon, 19 Nov 2007 16:48:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C67CB24F1A + for ; Mon, 19 Nov 2007 16:48:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGhGsm032116 + for ; Mon, 19 Nov 2007 11:43:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGhG9C032114 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:43:16 -0500 +Date: Mon, 19 Nov 2007 11:43:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38409 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:49:43 2007 +X-DSPAM-Confidence: 0.7611 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38409 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:43:15 -0500 (Mon, 19 Nov 2007) +New Revision: 38409 + +Modified: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java +Log: +svn merge -r 38152:38153 https://source.sakaiproject.org/svn/polls/trunk +U tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java +in-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38152:38153 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r38153 | david.horwitz@uct.ac.za | 2007-11-14 01:53:07 -0500 (Wed, 14 Nov 2007) | 1 line + +SAK-11704 trim value before testing for being empty +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:34:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:34:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:34:53 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id lAJGYq1O017624; + Mon, 19 Nov 2007 11:34:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4741BB21.77EDC.28185 ; + 19 Nov 2007 11:34:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B9347A7FC; + Mon, 19 Nov 2007 16:34:40 +0000 (GMT) +Message-ID: <200711191629.lAJGT0jE032099@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 577 + for ; + Mon, 19 Nov 2007 16:34:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4EAA224EF1 + for ; Mon, 19 Nov 2007 16:34:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGT0lf032101 + for ; Mon, 19 Nov 2007 11:29:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGT0jE032099 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:29:00 -0500 +Date: Mon, 19 Nov 2007 11:29:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38408 - citations/branches/sakai_2-5-x/citations-util/util/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:34:53 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38408 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:28:59 -0500 (Mon, 19 Nov 2007) +New Revision: 38408 + +Modified: +citations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations.properties +Log: +svn merge -r 38254:38255 https://source.sakaiproject.org/svn/citations/trunk +U citations-util/util/src/bundle/citations.properties +in-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38254:38255 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38255 | dsobiera@indiana.edu | 2007-11-16 16:08:33 -0500 (Fri, 16 Nov 2007) | 1 line + +SAK-12012 - added import.create resource +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:34:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:34:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:34:06 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id lAJGY5uK009276; + Mon, 19 Nov 2007 11:34:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4741BAEA.F3A39.7451 ; + 19 Nov 2007 11:33:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0C41E82845; + Mon, 19 Nov 2007 16:33:46 +0000 (GMT) +Message-ID: <200711191628.lAJGS284032087@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 517 + for ; + Mon, 19 Nov 2007 16:33:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E755124EF1 + for ; Mon, 19 Nov 2007 16:33:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGS2sB032089 + for ; Mon, 19 Nov 2007 11:28:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGS284032087 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:28:02 -0500 +Date: Mon, 19 Nov 2007 11:28:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38407 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:34:06 2007 +X-DSPAM-Confidence: 0.6565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38407 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:28:01 -0500 (Mon, 19 Nov 2007) +New Revision: 38407 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/add_citations.vm +Log: +svn merge -r 38245:38246 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/webapp/vm/citation/add_citations.vm +in-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38245:38246 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38246 | dsobiera@indiana.edu | 2007-11-16 13:38:12 -0500 (Fri, 16 Nov 2007) | 1 line + +SAK-12012 - changed button value and text next to button to come from resource bundle (was hardcoded) +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:32:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:32:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:32:47 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id lAJGWkll006795; + Mon, 19 Nov 2007 11:32:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4741BAA3.16D9E.26214 ; + 19 Nov 2007 11:32:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 976388280C; + Mon, 19 Nov 2007 16:32:33 +0000 (GMT) +Message-ID: <200711191626.lAJGQocf032075@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758 + for ; + Mon, 19 Nov 2007 16:32:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5448A24EF1 + for ; Mon, 19 Nov 2007 16:32:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGQonM032077 + for ; Mon, 19 Nov 2007 11:26:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGQocf032075 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:26:50 -0500 +Date: Mon, 19 Nov 2007 11:26:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38406 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:32:47 2007 +X-DSPAM-Confidence: 0.6565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38406 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:26:50 -0500 (Mon, 19 Nov 2007) +New Revision: 38406 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js/citationscript.js +Log: +svn merge -r 38170:38171 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/webapp/js/citationscript.js +in-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38170:38171 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38171 | dsobiera@indiana.edu | 2007-11-14 14:44:41 -0500 (Wed, 14 Nov 2007) | 1 line + +SAK-9896 - added logic that hides any artifacts from opposite search. So on a basic search, the advanced search button is made sure hidden. On an advanced search, the basic search is made sure hidden. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:32:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:32:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:32:11 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id lAJGWAmV032675; + Mon, 19 Nov 2007 11:32:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4741BA77.EFA65.13685 ; + 19 Nov 2007 11:31:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7C09582744; + Mon, 19 Nov 2007 16:31:50 +0000 (GMT) +Message-ID: <200711191625.lAJGPvdi032063@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 106 + for ; + Mon, 19 Nov 2007 16:31:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5419F24D5B + for ; Mon, 19 Nov 2007 16:31:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGPvX9032065 + for ; Mon, 19 Nov 2007 11:25:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGPvdi032063 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:25:57 -0500 +Date: Mon, 19 Nov 2007 11:25:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38405 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:32:11 2007 +X-DSPAM-Confidence: 0.6192 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38405 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:25:57 -0500 (Mon, 19 Nov 2007) +New Revision: 38405 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/search.vm +Log: +svn merge -r 38168:38169 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/webapp/vm/citation/search.vm +in-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38168:38169 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38169 | dsobiera@indiana.edu | 2007-11-14 13:30:15 -0500 (Wed, 14 Nov 2007) | 3 lines + +SAK-9896 - Changed bottom Cancel button on search page to do the same thing as the top cancel button (javascript) + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:28:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:28:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:28:51 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by flawless.mail.umich.edu () with ESMTP id lAJGSodA030281; + Mon, 19 Nov 2007 11:28:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4741B9BA.82FB9.21725 ; + 19 Nov 2007 11:28:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DCB1C82771; + Mon, 19 Nov 2007 16:28:39 +0000 (GMT) +Message-ID: <200711191622.lAJGMwbu032051@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 979 + for ; + Mon, 19 Nov 2007 16:28:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8CC8224EAB + for ; Mon, 19 Nov 2007 16:28:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGMwen032053 + for ; Mon, 19 Nov 2007 11:22:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGMwbu032051 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:22:58 -0500 +Date: Mon, 19 Nov 2007 11:22:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38404 - in citations/branches/sakai_2-5-x/citations-tool/tool/src: java/org/sakaiproject/citation/tool webapp/vm/citation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:28:51 2007 +X-DSPAM-Confidence: 0.6241 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38404 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:22:56 -0500 (Mon, 19 Nov 2007) +New Revision: 38404 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/_advSearch.vm +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/_basicSearch.vm +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/results.vm +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/search.vm +Log: +svn merge -r 38137:38142 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java +U citations-tool/tool/src/webapp/vm/citation/_advSearch.vm +U citations-tool/tool/src/webapp/vm/citation/results.vm +U citations-tool/tool/src/webapp/vm/citation/search.vm +U citations-tool/tool/src/webapp/vm/citation/_basicSearch.vm +in-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38137:38142 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38138 | dsobiera@indiana.edu | 2007-11-13 14:12:17 -0500 (Tue, 13 Nov 2007) | 1 line + +SAK-9896 - Added searchpage parameter to URL of doCancelSearch +------------------------------------------------------------------------ +r38139 | dsobiera@indiana.edu | 2007-11-13 14:12:33 -0500 (Tue, 13 Nov 2007) | 1 line + +SAK-9896 - Added searchpage parameter to URL of doCancelSearch +------------------------------------------------------------------------ +r38140 | dsobiera@indiana.edu | 2007-11-13 14:13:29 -0500 (Tue, 13 Nov 2007) | 1 line + +SAK-9896 - created searchpage velocity variable +------------------------------------------------------------------------ +r38141 | dsobiera@indiana.edu | 2007-11-13 14:13:40 -0500 (Tue, 13 Nov 2007) | 1 line + +SAK-9896 - created searchpage velocity variable +------------------------------------------------------------------------ +r38142 | dsobiera@indiana.edu | 2007-11-13 14:16:18 -0500 (Tue, 13 Nov 2007) | 1 line + +SAK-9896 - added check for existence and then value of searchpage variable to determine whether the helper's mode should be set back to "search" or "results" based on the searchpage parameter that was passed in the doCancelSearch URL call for the cancel button in the velocity templates. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 19 11:23:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 11:23:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 11:23:02 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lAJGN1cV032513; + Mon, 19 Nov 2007 11:23:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4741B854.D0E5E.5889 ; + 19 Nov 2007 11:22:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A7F42827CE; + Mon, 19 Nov 2007 16:22:41 +0000 (GMT) +Message-ID: <200711191617.lAJGH0wI032037@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 765 + for ; + Mon, 19 Nov 2007 16:22:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F0FDC24E01 + for ; Mon, 19 Nov 2007 16:22:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGH0ps032039 + for ; Mon, 19 Nov 2007 11:17:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGH0wI032037 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:17:00 -0500 +Date: Mon, 19 Nov 2007 11:17:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r38403 - in citations/branches/sakai_2-5-x/citations-impl/impl/src: java/org/sakaiproject/citation/impl sql/hsqldb sql/mysql sql/oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 11:23:02 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38403 + +Author: mmmay@indiana.edu +Date: 2007-11-19 11:16:59 -0500 (Mon, 19 Nov 2007) +New Revision: 38403 + +Modified: +citations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java +citations/branches/sakai_2-5-x/citations-impl/impl/src/sql/hsqldb/sakai_citation.sql +citations/branches/sakai_2-5-x/citations-impl/impl/src/sql/mysql/sakai_citation.sql +citations/branches/sakai_2-5-x/citations-impl/impl/src/sql/oracle/sakai_citation.sql +Log: +svn merge -r 38122:38126 https://source.sakaiproject.org/svn/citations/trunk +U citations-impl/impl/src/sql/mysql/sakai_citation.sql +U citations-impl/impl/src/sql/oracle/sakai_citation.sql +U citations-impl/impl/src/sql/hsqldb/sakai_citation.sql +U citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java +in-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38122:38126 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r38123 | dsobiera@indiana.edu | 2007-11-12 14:44:19 -0500 (Mon, 12 Nov 2007) | 1 line + +SAK-12009 - created forced mapping of resource type NEWS to JOUR +------------------------------------------------------------------------ +r38124 | dsobiera@indiana.edu | 2007-11-12 14:48:19 -0500 (Mon, 12 Nov 2007) | 2 lines + +SAK-12009 - Added article compound RIS tags: AU to creator, TI to title and PY to date. + +------------------------------------------------------------------------ +r38125 | dsobiera@indiana.edu | 2007-11-12 14:48:30 -0500 (Mon, 12 Nov 2007) | 2 lines + +SAK-12009 - Added article compound RIS tags: AU to creator, TI to title and PY to date. + +------------------------------------------------------------------------ +r38126 | dsobiera@indiana.edu | 2007-11-12 14:48:42 -0500 (Mon, 12 Nov 2007) | 2 lines + +SAK-12009 - Added article compound RIS tags: AU to creator, TI to title and PY to date. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Nov 19 10:42:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 10:42:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 10:42:48 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lAJFgmTx029605; + Mon, 19 Nov 2007 10:42:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4741AEE5.8F36F.23707 ; + 19 Nov 2007 10:42:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 154848273B; + Mon, 19 Nov 2007 15:39:28 +0000 (GMT) +Message-ID: <200711191536.lAJFanVA031961@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859 + for ; + Mon, 19 Nov 2007 15:39:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 753D124E5D + for ; Mon, 19 Nov 2007 15:42:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJFanXZ031963 + for ; Mon, 19 Nov 2007 10:36:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJFanVA031961 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 10:36:49 -0500 +Date: Mon, 19 Nov 2007 10:36:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38402 - osp/branches/osp_nightly +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 10:42:48 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38402 + +Author: chmaurer@iupui.edu +Date: 2007-11-19 10:36:48 -0500 (Mon, 19 Nov 2007) +New Revision: 38402 + +Modified: +osp/branches/osp_nightly/pom.xml +Log: +cleaning up pom.xml to match sakai's pom + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Mon Nov 19 10:29:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 10:29:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 10:29:07 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lAJFT6dT006210; + Mon, 19 Nov 2007 10:29:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4741ABB3.D5A25.18389 ; + 19 Nov 2007 10:29:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2060E72D26; + Mon, 19 Nov 2007 15:28:49 +0000 (GMT) +Message-ID: <200711191523.lAJFN9qf031927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 605 + for ; + Mon, 19 Nov 2007 15:28:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A129E24E75 + for ; Mon, 19 Nov 2007 15:28:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJFN96G031929 + for ; Mon, 19 Nov 2007 10:23:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJFN9qf031927 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 10:23:09 -0500 +Date: Mon, 19 Nov 2007 10:23:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38401 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 10:29:07 2007 +X-DSPAM-Confidence: 0.9865 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38401 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-19 10:23:06 -0500 (Mon, 19 Nov 2007) +New Revision: 38401 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationTableSqlReader.java +Log: +SAK-12105 the org.sakaiproject.db.api.SqlReader interface expects you to act on the ResultSet +as if you were only getting one row at a time. It does *not* expect you to actually run through the +whole thing and return a List. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Nov 19 10:26:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 10:26:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 10:26:00 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id lAJFPxLc001145; + Mon, 19 Nov 2007 10:25:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4741AAFF.5524B.1115 ; + 19 Nov 2007 10:25:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5958B825E9; + Mon, 19 Nov 2007 15:25:49 +0000 (GMT) +Message-ID: <200711191520.lAJFK6bL031915@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 296 + for ; + Mon, 19 Nov 2007 15:25:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 84AAD24E4B + for ; Mon, 19 Nov 2007 15:25:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJFK6FR031917 + for ; Mon, 19 Nov 2007 10:20:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJFK6bL031915 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 10:20:06 -0500 +Date: Mon, 19 Nov 2007 10:20:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38400 - osp/branches/osp_nightly +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 10:26:00 2007 +X-DSPAM-Confidence: 0.9785 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38400 + +Author: chmaurer@iupui.edu +Date: 2007-11-19 10:20:05 -0500 (Mon, 19 Nov 2007) +New Revision: 38400 + +Modified: +osp/branches/osp_nightly/pom.xml +Log: +removing deprecated discussion tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Mon Nov 19 10:02:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 10:02:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 10:02:10 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lAJF29nF032109; + Mon, 19 Nov 2007 10:02:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4741A56B.9C19B.14570 ; + 19 Nov 2007 10:02:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C2383826EB; + Mon, 19 Nov 2007 15:02:02 +0000 (GMT) +Message-ID: <200711191456.lAJEuE5u031865@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 718 + for ; + Mon, 19 Nov 2007 15:01:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8035324EE0 + for ; Mon, 19 Nov 2007 15:01:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJEuEL2031867 + for ; Mon, 19 Nov 2007 09:56:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJEuE5u031865 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:56:14 -0500 +Date: Mon, 19 Nov 2007 09:56:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r38399 - calendar/trunk/calendar-tool/tool/src/webapp/vm/calendar +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 10:02:10 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38399 + +Author: gsilver@umich.edu +Date: 2007-11-19 09:56:13 -0500 (Mon, 19 Nov 2007) +New Revision: 38399 + +Modified: +calendar/trunk/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewMonth.vm +Log: +SAK-1111 +- make link target larger + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 19 09:53:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 09:53:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 09:53:24 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by mission.mail.umich.edu () with ESMTP id lAJErNqr032511; + Mon, 19 Nov 2007 09:53:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4741A35D.D309B.14274 ; + 19 Nov 2007 09:53:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A0E9482504; + Mon, 19 Nov 2007 14:53:15 +0000 (GMT) +Message-ID: <200711191447.lAJElYPV031795@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 350 + for ; + Mon, 19 Nov 2007 14:53:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8469324EB2 + for ; Mon, 19 Nov 2007 14:53:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJElYcd031797 + for ; Mon, 19 Nov 2007 09:47:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJElYPV031795 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:47:34 -0500 +Date: Mon, 19 Nov 2007 09:47:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38398 - assignment/trunk/assignment-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 09:53:24 2007 +X-DSPAM-Confidence: 0.9865 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38398 + +Author: zqian@umich.edu +Date: 2007-11-19 09:47:33 -0500 (Mon, 19 Nov 2007) +New Revision: 38398 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +Log: +Fix to SAK-12223:Assignments: Log in as instructor, create an assignment by choosing the Radio button " Associate with existing Gradebook assignment" - change to 'entry' + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Nov 19 09:14:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 09:14:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 09:14:34 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lAJEEXwD004559; + Mon, 19 Nov 2007 09:14:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47419A44.6055A.21056 ; + 19 Nov 2007 09:14:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 909BD81D41; + Mon, 19 Nov 2007 14:14:24 +0000 (GMT) +Message-ID: <200711191408.lAJE8hRK031768@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 110 + for ; + Mon, 19 Nov 2007 14:14:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8EA6623623 + for ; Mon, 19 Nov 2007 14:14:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJE8hIa031770 + for ; Mon, 19 Nov 2007 09:08:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJE8hRK031768 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:08:43 -0500 +Date: Mon, 19 Nov 2007 09:08:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38397 - in osp/branches/osp_nightly: . pack-demo +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 09:14:34 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38397 + +Author: chmaurer@iupui.edu +Date: 2007-11-19 09:08:42 -0500 (Mon, 19 Nov 2007) +New Revision: 38397 + +Modified: +osp/branches/osp_nightly/pack-demo/pom.xml +osp/branches/osp_nightly/pom.xml +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12232 +Updating to SNAPSHOT build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Nov 19 09:06:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 09:06:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 09:06:09 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lAJE68uG016519; + Mon, 19 Nov 2007 09:06:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47419849.AC46C.15781 ; + 19 Nov 2007 09:06:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1FCF182604; + Mon, 19 Nov 2007 14:06:00 +0000 (GMT) +Message-ID: <200711191400.lAJE0FNh031754@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 862 + for ; + Mon, 19 Nov 2007 14:05:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC08523623 + for ; Mon, 19 Nov 2007 14:05:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJE0Fqk031756 + for ; Mon, 19 Nov 2007 09:00:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJE0FNh031754 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:00:15 -0500 +Date: Mon, 19 Nov 2007 09:00:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38396 - in warehouse/trunk: warehouse-api warehouse-impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 09:06:09 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38396 + +Author: chmaurer@iupui.edu +Date: 2007-11-19 09:00:14 -0500 (Mon, 19 Nov 2007) +New Revision: 38396 + +Modified: +warehouse/trunk/warehouse-api/.classpath +warehouse/trunk/warehouse-impl/.classpath +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12232 +Fixing up some eclipse classpath files as a result of updating to SNAPSHOT build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Mon Nov 19 09:05:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 09:05:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 09:05:48 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id lAJE5lSb013291; + Mon, 19 Nov 2007 09:05:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47419832.CC1ED.25879 ; + 19 Nov 2007 09:05:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0AC05825F0; + Mon, 19 Nov 2007 14:05:36 +0000 (GMT) +Message-ID: <200711191359.lAJDxs9M031742@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 52 + for ; + Mon, 19 Nov 2007 14:05:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 05C1323623 + for ; Mon, 19 Nov 2007 14:05:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJDxsec031744 + for ; Mon, 19 Nov 2007 08:59:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJDxs9M031742 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 08:59:54 -0500 +Date: Mon, 19 Nov 2007 08:59:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38395 - in reports/trunk: reports-api reports-impl reports-tool reports-util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 09:05:48 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38395 + +Author: chmaurer@iupui.edu +Date: 2007-11-19 08:59:53 -0500 (Mon, 19 Nov 2007) +New Revision: 38395 + +Modified: +reports/trunk/reports-api/.classpath +reports/trunk/reports-impl/.classpath +reports/trunk/reports-tool/.classpath +reports/trunk/reports-util/.classpath +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12232 +Fixing up some eclipse classpath files as a result of updating to SNAPSHOT build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Nov 19 06:13:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 06:13:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 06:13:39 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by brazil.mail.umich.edu () with ESMTP id lAJBDbpJ007194; + Mon, 19 Nov 2007 06:13:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47416FDB.D5708.23965 ; + 19 Nov 2007 06:13:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6F3F082359; + Mon, 19 Nov 2007 11:13:29 +0000 (GMT) +Message-ID: <200711191107.lAJB7kjr031310@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 771 + for ; + Mon, 19 Nov 2007 11:13:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E9CE71BF7F + for ; Mon, 19 Nov 2007 11:13:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJB7kRX031312 + for ; Mon, 19 Nov 2007 06:07:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJB7kjr031310 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 06:07:46 -0500 +Date: Mon, 19 Nov 2007 06:07:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38394 - in cafe/trunk: . announcement archive content course-management presence user +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 06:13:39 2007 +X-DSPAM-Confidence: 0.6953 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38394 + +Author: aaronz@vt.edu +Date: 2007-11-19 06:07:33 -0500 (Mon, 19 Nov 2007) +New Revision: 38394 + +Modified: +cafe/trunk/announcement/pom.xml +cafe/trunk/archive/pom.xml +cafe/trunk/content/pom.xml +cafe/trunk/course-management/pom.xml +cafe/trunk/pom.xml +cafe/trunk/presence/pom.xml +cafe/trunk/user/pom.xml +Log: +Fix cafe build to work with new SNAPSHOT version + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Nov 19 02:42:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 02:42:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 02:42:38 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id lAJ7ga31019957; + Mon, 19 Nov 2007 02:42:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47413E67.1DB33.19038 ; + 19 Nov 2007 02:42:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 53C2D744B4; + Mon, 19 Nov 2007 07:39:22 +0000 (GMT) +Message-ID: <200711190736.lAJ7afik030788@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 70 + for ; + Mon, 19 Nov 2007 07:39:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 14AA6212A7 + for ; Mon, 19 Nov 2007 07:42:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJ7af5Q030790 + for ; Mon, 19 Nov 2007 02:36:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJ7afik030788 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 02:36:41 -0500 +Date: Mon, 19 Nov 2007 02:36:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38393 - entitybroker/trunk/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 02:42:38 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38393 + +Author: aaronz@vt.edu +Date: 2007-11-19 02:36:25 -0500 (Mon, 19 Nov 2007) +New Revision: 38393 + +Added: +entitybroker/trunk/tool/project.xml +Log: +NOJIRA: Added in missing tool project.xml + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Mon Nov 19 00:41:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 19 Nov 2007 00:41:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 19 Nov 2007 00:41:22 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id lAJ5fLTj000613; + Mon, 19 Nov 2007 00:41:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 474121FB.AEC0D.30237 ; + 19 Nov 2007 00:41:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B0B9881E2B; + Mon, 19 Nov 2007 05:41:17 +0000 (GMT) +Message-ID: <200711190535.lAJ5ZXc4030742@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 929 + for ; + Mon, 19 Nov 2007 05:41:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D60323618 + for ; Mon, 19 Nov 2007 05:41:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJ5ZXSe030744 + for ; Mon, 19 Nov 2007 00:35:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJ5ZXc4030742 + for source@collab.sakaiproject.org; Mon, 19 Nov 2007 00:35:33 -0500 +Date: Mon, 19 Nov 2007 00:35:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38392 - in content/branches/SAK-12105: content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration content-impl-jcr/pack/src/webapp/WEB-INF content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 19 00:41:22 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38392 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-19 00:35:25 -0500 (Mon, 19 Nov 2007) +New Revision: 38392 + +Added: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationSqlQueries.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationStatusReporterImpl.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationTableSqlReader.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ThingToMigrate.java +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationInProgressObserver.java +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/MigrationStatusReporter.java +Log: +SAK-12105 + +Stuff is copied over when migration is started for first time. +Other random changes for having one table. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Sun Nov 18 02:41:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 18 Nov 2007 02:41:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 18 Nov 2007 02:41:26 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lAI7fMVp019777; + Sun, 18 Nov 2007 02:41:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 473FEC9D.B0BBB.2587 ; + 18 Nov 2007 02:41:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D24C580846; + Sun, 18 Nov 2007 07:41:09 +0000 (GMT) +Message-ID: <200711180735.lAI7ZV0n015247@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263 + for ; + Sun, 18 Nov 2007 07:40:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 96DCE24876 + for ; Sun, 18 Nov 2007 07:40:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAI7ZVsl015249 + for ; Sun, 18 Nov 2007 02:35:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAI7ZV0n015247 + for source@collab.sakaiproject.org; Sun, 18 Nov 2007 02:35:31 -0500 +Date: Sun, 18 Nov 2007 02:35:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38259 - polls/trunk/tool/src/webapp/templates +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 18 02:41:26 2007 +X-DSPAM-Confidence: 0.9789 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38259 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-18 02:35:09 -0500 (Sun, 18 Nov 2007) +New Revision: 38259 + +Modified: +polls/trunk/tool/src/webapp/templates/voteAdd.html +Log: +SAK-11703 allow for a larger text area window + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Nov 16 22:31:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 22:31:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 22:31:32 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by flawless.mail.umich.edu () with ESMTP id lAH3VVD0020015; + Fri, 16 Nov 2007 22:31:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 473E608E.54FE5.13138 ; + 16 Nov 2007 22:31:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6D0807AA1E; + Sat, 17 Nov 2007 03:31:05 +0000 (GMT) +Message-ID: <200711170325.lAH3Pgd9014020@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 601 + for ; + Sat, 17 Nov 2007 03:30:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A098721E96 + for ; Sat, 17 Nov 2007 03:31:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAH3PgXk014022 + for ; Fri, 16 Nov 2007 22:25:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAH3Pgd9014020 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 22:25:42 -0500 +Date: Fri, 16 Nov 2007 22:25:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38258 - in site-manage/trunk/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 22:31:32 2007 +X-DSPAM-Confidence: 0.9848 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38258 + +Author: zqian@umich.edu +Date: 2007-11-16 22:25:38 -0500 (Fri, 16 Nov 2007) +New Revision: 38258 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-12216:Worksite Setup should accommodate multiple instructors of a course + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Fri Nov 16 20:28:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 20:28:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 20:28:00 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lAH1RxAL011936; + Fri, 16 Nov 2007 20:27:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 473E4399.6B0D3.4558 ; + 16 Nov 2007 20:27:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 236557FD5D; + Sat, 17 Nov 2007 00:42:46 +0000 (GMT) +Message-ID: <200711170000.lAH00rWf013946@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 609 + for ; + Sat, 17 Nov 2007 00:42:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E235023B8E + for ; Sat, 17 Nov 2007 00:06:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAH00rOE013948 + for ; Fri, 16 Nov 2007 19:00:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAH00rWf013946 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 19:00:53 -0500 +Date: Fri, 16 Nov 2007 19:00:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38257 - in content/branches/SAK-12105/content-impl-jcr: impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 20:28:00 2007 +X-DSPAM-Confidence: 0.8416 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38257 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-16 19:00:49 -0500 (Fri, 16 Nov 2007) +New Revision: 38257 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/pom.xml +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +Log: +SAK-12105 swapped some spring defs + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Fri Nov 16 16:48:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 16:48:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 16:48:21 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by flawless.mail.umich.edu () with ESMTP id lAGLmKPf005071; + Fri, 16 Nov 2007 16:48:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 473E1013.19016.20429 ; + 16 Nov 2007 16:48:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CEED47F497; + Fri, 16 Nov 2007 21:48:01 +0000 (GMT) +Message-ID: <200711162142.lAGLgYgW013840@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 417 + for ; + Fri, 16 Nov 2007 21:47:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 439D621E18 + for ; Fri, 16 Nov 2007 21:47:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGLgYR1013842 + for ; Fri, 16 Nov 2007 16:42:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGLgYgW013840 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 16:42:34 -0500 +Date: Fri, 16 Nov 2007 16:42:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38256 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 16:48:21 2007 +X-DSPAM-Confidence: 0.8422 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38256 + +Author: ajpoland@iupui.edu +Date: 2007-11-16 16:42:32 -0500 (Fri, 16 Nov 2007) +New Revision: 38256 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 16 16:09:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 16:09:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 16:09:05 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by mission.mail.umich.edu () with ESMTP id lAGL94Qs006137; + Fri, 16 Nov 2007 16:09:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473E06E8.BCB20.26345 ; + 16 Nov 2007 16:08:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 650BC7E24E; + Fri, 16 Nov 2007 21:08:47 +0000 (GMT) +Message-ID: <200711162103.lAGL3HT4013581@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973 + for ; + Fri, 16 Nov 2007 21:08:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A470821E01 + for ; Fri, 16 Nov 2007 21:08:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGL3HeD013583 + for ; Fri, 16 Nov 2007 16:03:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGL3HT4013581 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 16:03:17 -0500 +Date: Fri, 16 Nov 2007 16:03:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38254 - oncourse/trunk/src/jobscheduler/scheduler-component/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 16:09:05 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38254 + +Author: cwen@iupui.edu +Date: 2007-11-16 16:03:16 -0500 (Fri, 16 Nov 2007) +New Revision: 38254 + +Modified: +oncourse/trunk/src/jobscheduler/scheduler-component/src/webapp/WEB-INF/components.xml +Log: +add FGGB job + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Nov 16 16:05:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 16:05:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 16:05:24 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id lAGL5Njg014027; + Fri, 16 Nov 2007 16:05:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 473E060C.999D5.30909 ; + 16 Nov 2007 16:05:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 174F97E255; + Fri, 16 Nov 2007 21:05:15 +0000 (GMT) +Message-ID: <200711162059.lAGKxoAC013548@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 876 + for ; + Fri, 16 Nov 2007 21:05:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 616CF21E01 + for ; Fri, 16 Nov 2007 21:05:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGKxoNX013550 + for ; Fri, 16 Nov 2007 15:59:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGKxoAC013548 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 15:59:50 -0500 +Date: Fri, 16 Nov 2007 15:59:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r38253 - reference/trunk/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 16:05:24 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38253 + +Author: gsilver@umich.edu +Date: 2007-11-16 15:59:48 -0500 (Fri, 16 Nov 2007) +New Revision: 38253 + +Modified: +reference/trunk/library/src/webapp/skin/default/portal.css +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12143 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Fri Nov 16 15:59:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 15:59:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 15:59:32 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id lAGKxUVV004909; + Fri, 16 Nov 2007 15:59:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 473E04AC.1E8DF.26075 ; + 16 Nov 2007 15:59:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F356F7FA72; + Fri, 16 Nov 2007 20:59:22 +0000 (GMT) +Message-ID: <200711162053.lAGKrpZO013523@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 579 + for ; + Fri, 16 Nov 2007 20:59:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8BF7B23B47 + for ; Fri, 16 Nov 2007 20:59:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGKrpjA013525 + for ; Fri, 16 Nov 2007 15:53:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGKrpZO013523 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 15:53:51 -0500 +Date: Fri, 16 Nov 2007 15:53:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38252 - in content/branches/SAK-12105: content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 15:59:32 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38252 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-16 15:53:45 -0500 (Fri, 16 Nov 2007) +New Revision: 38252 + +Added: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/CHStoJCRMigrator.java +Removed: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRmigrator.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRMigratorImpl.java +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRMigrator.java +Log: +SAK-12105 Added an interface for the copied part so we can use it. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Fri Nov 16 15:52:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 15:52:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 15:52:27 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by sleepers.mail.umich.edu () with ESMTP id lAGKqQhK006577; + Fri, 16 Nov 2007 15:52:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473E02E4.B0C5.6125 ; + 16 Nov 2007 15:51:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A90AF7F910; + Fri, 16 Nov 2007 20:51:45 +0000 (GMT) +Message-ID: <200711162046.lAGKkBdk013500@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1018 + for ; + Fri, 16 Nov 2007 20:51:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0036E23B47 + for ; Fri, 16 Nov 2007 20:51:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGKkC3p013502 + for ; Fri, 16 Nov 2007 15:46:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGKkBdk013500 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 15:46:12 -0500 +Date: Fri, 16 Nov 2007 15:46:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38251 - db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 15:52:27 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38251 + +Author: jimeng@umich.edu +Date: 2007-11-16 15:46:09 -0500 (Fri, 16 Nov 2007) +New Revision: 38251 + +Modified: +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +Log: +SAK-12208 +Modified conversion utility driver and controller to allow multiple sql statements to be executed for "create.migrate.table" and "drop.migrate.table" +Sample syntax for multiple sql statements is: +convert.0.create.migrate.table.count=3 +convert.0.create.migrate.table.0=create table assn_submit_fsregister ( id varchar(1024), status varchar(99)) +convert.0.create.migrate.table.1=create index assn_submit_fsregister_id_idx on assn_submit_fsregister(id) +convert.0.create.migrate.table.2=create index assn_submit_fsregister_status_idx on assn_submit_fsregister(status) + +If count is missing, sql statement will be taken from an entry without an index, in this form: +convert.0.create.migrate.table=create table assn_submit_fsregister ( id varchar(1024), status varchar(99)) + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Nov 16 14:30:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 14:30:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 14:30:55 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by sleepers.mail.umich.edu () with ESMTP id lAGJUs3B015149; + Fri, 16 Nov 2007 14:30:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473DEFE5.CBE45.8467 ; + 16 Nov 2007 14:30:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 86AD36B2FD; + Fri, 16 Nov 2007 19:30:40 +0000 (GMT) +Message-ID: <200711161925.lAGJP7ib013391@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690 + for ; + Fri, 16 Nov 2007 19:30:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 48DED21E70 + for ; Fri, 16 Nov 2007 19:30:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGJP79i013393 + for ; Fri, 16 Nov 2007 14:25:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGJP7ib013391 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 14:25:07 -0500 +Date: Fri, 16 Nov 2007 14:25:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38250 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 14:30:55 2007 +X-DSPAM-Confidence: 0.9869 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38250 + +Author: zqian@umich.edu +Date: 2007-11-16 14:25:04 -0500 (Fri, 16 Nov 2007) +New Revision: 38250 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12222: Assignmets: Log in as instructor create Assignment, do not post, save as draft + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Fri Nov 16 14:17:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 14:17:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 14:17:48 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by flawless.mail.umich.edu () with ESMTP id lAGJHldf011795; + Fri, 16 Nov 2007 14:17:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473DECD5.9A959.3448 ; + 16 Nov 2007 14:17:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0A7017F911; + Fri, 16 Nov 2007 19:17:41 +0000 (GMT) +Message-ID: <200711161912.lAGJC749013357@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 446 + for ; + Fri, 16 Nov 2007 19:17:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4327D23B5E + for ; Fri, 16 Nov 2007 19:17:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGJC7oV013359 + for ; Fri, 16 Nov 2007 14:12:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGJC749013357 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 14:12:07 -0500 +Date: Fri, 16 Nov 2007 14:12:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38249 - in content/branches/SAK-12105/content-impl-jcr/impl/src/sql: . mysql +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 14:17:48 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38249 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-16 14:12:05 -0500 (Fri, 16 Nov 2007) +New Revision: 38249 + +Added: +content/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/ +content/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/setup-migration-dbtables.sql +Log: +SAK-12105 SQL for setting up the table. The two tables are about to be merged, and the copying is going to be moved into the code. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Fri Nov 16 13:48:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 13:48:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 13:48:32 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id lAGImVC1009292; + Fri, 16 Nov 2007 13:48:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473DE5F9.3B133.24781 ; + 16 Nov 2007 13:48:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 009D67F8D7; + Fri, 16 Nov 2007 18:36:27 +0000 (GMT) +Message-ID: <200711161842.lAGIgldq013276@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 142 + for ; + Fri, 16 Nov 2007 18:36:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDDF323B5E + for ; Fri, 16 Nov 2007 18:47:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGIglng013278 + for ; Fri, 16 Nov 2007 13:42:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGIgldq013276 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:42:47 -0500 +Date: Fri, 16 Nov 2007 13:42:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38248 - in content/branches/SAK-12105: content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 13:48:32 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38248 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-16 13:42:40 -0500 (Fri, 16 Nov 2007) +New Revision: 38248 + +Added: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRmigrator.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRCopierImpl.java +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java +Log: +SAK-12105 Moving some of the migration code from the jcr inspector webapp to the content-jcr-impl + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Nov 16 13:47:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 13:47:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 13:47:59 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by faithful.mail.umich.edu () with ESMTP id lAGIlwNx012843; + Fri, 16 Nov 2007 13:47:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473DE5D7.C072C.21813 ; + 16 Nov 2007 13:47:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 41ECB7F8D4; + Fri, 16 Nov 2007 18:35:52 +0000 (GMT) +Message-ID: <200711161842.lAGIgGZb013264@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 659 + for ; + Fri, 16 Nov 2007 18:35:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1875023B5E + for ; Fri, 16 Nov 2007 18:47:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGIgGFv013266 + for ; Fri, 16 Nov 2007 13:42:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGIgGZb013264 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:42:16 -0500 +Date: Fri, 16 Nov 2007 13:42:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38247 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 13:47:59 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38247 + +Author: aaronz@vt.edu +Date: 2007-11-16 13:42:12 -0500 (Fri, 16 Nov 2007) +New Revision: 38247 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Updated test numbers + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Nov 16 13:42:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 13:42:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 13:42:04 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id lAGIg3xT005865; + Fri, 16 Nov 2007 13:42:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473DE474.822E8.8101 ; + 16 Nov 2007 13:41:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9085F7F89F; + Fri, 16 Nov 2007 18:29:55 +0000 (GMT) +Message-ID: <200711161836.lAGIaCem013238@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960 + for ; + Fri, 16 Nov 2007 18:29:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 81E9D23ADD + for ; Fri, 16 Nov 2007 18:41:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGIaCJM013240 + for ; Fri, 16 Nov 2007 13:36:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGIaCem013238 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:36:12 -0500 +Date: Fri, 16 Nov 2007 13:36:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38245 - in content/branches/SAK-12105/content-test/test/src: java/org/sakaiproject/content/test resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 13:42:04 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38245 + +Author: aaronz@vt.edu +Date: 2007-11-16 13:36:05 -0500 (Fri, 16 Nov 2007) +New Revision: 38245 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +content/branches/SAK-12105/content-test/test/src/resources/testBeans.xml +Log: +SAK-12105: Fixed up test slightly to try to get it to run under 2.4.x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Nov 16 13:27:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 13:27:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 13:27:47 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lAGIRk5L032259; + Fri, 16 Nov 2007 13:27:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473DE112.557C6.14971 ; + 16 Nov 2007 13:27:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 44A9A7F892; + Fri, 16 Nov 2007 18:15:31 +0000 (GMT) +Message-ID: <200711161821.lAGILvFP013213@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 347 + for ; + Fri, 16 Nov 2007 18:15:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 555E823B1C + for ; Fri, 16 Nov 2007 18:27:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGILv0c013215 + for ; Fri, 16 Nov 2007 13:21:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGILvFP013213 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:21:57 -0500 +Date: Fri, 16 Nov 2007 13:21:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38244 - in component/branches/SAK-12134: . component-api/api component-api/component component-api/component/src/java/org/sakaiproject/component/impl component-api/component/src/java/org/sakaiproject/component/loader/shared component-api/component/src/java/org/sakaiproject/util component-impl/impl component-impl/pack component-loader component-loader/component-loader-common/impl component-loader/component-loader-server/impl component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server component-shared-deploy +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 13:27:47 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38244 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-16 13:21:23 -0500 (Fri, 16 Nov 2007) +New Revision: 38244 + +Added: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentMBeanRegistration.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentMBeanRegistrationMBean.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiContextConfig.java +Modified: +component/branches/SAK-12134/component-api/api/pom.xml +component/branches/SAK-12134/component-api/component/pom.xml +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/branches/SAK-12134/component-impl/impl/pom.xml +component/branches/SAK-12134/component-impl/pack/pom.xml +component/branches/SAK-12134/component-loader/component-loader-common/impl/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml +component/branches/SAK-12134/component-loader/component-loader-server/impl/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/pom.xml +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java +component/branches/SAK-12134/component-loader/pom.xml +component/branches/SAK-12134/component-shared-deploy/pom.xml +component/branches/SAK-12134/pom.xml +Log: +SAK-12134 +Added JMX registrations for the Beans +Added a ContextConfig to control the loading of webapps +Added memory analysis on a per webapp basis + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Nov 16 12:49:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 12:49:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 12:49:43 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lAGHnghe019576; + Fri, 16 Nov 2007 12:49:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473DD82E.E91D9.14457 ; + 16 Nov 2007 12:49:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4E2DC7F56E; + Fri, 16 Nov 2007 17:49:33 +0000 (GMT) +Message-ID: <200711161744.lAGHi7Oe013119@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 189 + for ; + Fri, 16 Nov 2007 17:49:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C50C023B40 + for ; Fri, 16 Nov 2007 17:49:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHi71V013121 + for ; Fri, 16 Nov 2007 12:44:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHi7Oe013119 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:44:07 -0500 +Date: Fri, 16 Nov 2007 12:44:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38243 - memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 12:49:43 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38243 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-16 12:44:00 -0500 (Fri, 16 Nov 2007) +New Revision: 38243 + +Modified: +memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12116 +Fixed + +Now using thread safe iterator mechanism. (I hope) + +Tested locally with no problems. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Nov 16 12:38:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 12:38:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 12:38:12 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id lAGHcBkJ024902; + Fri, 16 Nov 2007 12:38:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473DD57C.A47AF.22366 ; + 16 Nov 2007 12:38:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 363E0651F2; + Fri, 16 Nov 2007 17:38:04 +0000 (GMT) +Message-ID: <200711161732.lAGHWRcA013105@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 747 + for ; + Fri, 16 Nov 2007 17:37:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3D27F1D5FB + for ; Fri, 16 Nov 2007 17:37:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHWRTb013107 + for ; Fri, 16 Nov 2007 12:32:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHWRcA013105 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:32:27 -0500 +Date: Fri, 16 Nov 2007 12:32:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r38242 - osp/trunk/matrix/api-impl/src/java/org/theospi/portfolio/matrix +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 12:38:12 2007 +X-DSPAM-Confidence: 0.8436 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38242 + +Author: bkirschn@umich.edu +Date: 2007-11-16 12:32:25 -0500 (Fri, 16 Nov 2007) +New Revision: 38242 + +Modified: +osp/trunk/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java +Log: +SAK-12198 fix crash when attachments/artifacts are hidden + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Fri Nov 16 12:30:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 12:30:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 12:30:33 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id lAGHUWEw000351; + Fri, 16 Nov 2007 12:30:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 473DD3B3.2FCF0.20896 ; + 16 Nov 2007 12:30:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 18DCC7F7E9; + Fri, 16 Nov 2007 17:30:26 +0000 (GMT) +Message-ID: <200711161720.lAGHKeWj013001@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738 + for ; + Fri, 16 Nov 2007 17:25:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A38CC237A9 + for ; Fri, 16 Nov 2007 17:25:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHKeRC013003 + for ; Fri, 16 Nov 2007 12:20:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHKeWj013001 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:20:40 -0500 +Date: Fri, 16 Nov 2007 12:20:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38241 - in entity/branches/SAK-12211: entity-api/api/src/java/org/sakaiproject/entity/api entity-impl/impl/src/java/org/sakaiproject/entity/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 12:30:33 2007 +X-DSPAM-Confidence: 0.7551 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38241 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-16 12:20:00 -0500 (Fri, 16 Nov 2007) +New Revision: 38241 + +Modified: +entity/branches/SAK-12211/entity-api/api/src/java/org/sakaiproject/entity/api/EntityManager.java +entity/branches/SAK-12211/entity-api/api/src/java/org/sakaiproject/entity/api/Reference.java +entity/branches/SAK-12211/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java +entity/branches/SAK-12211/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java +entity/branches/SAK-12211/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceComponent.java +entity/branches/SAK-12211/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceVectorComponent.java +Log: +SAK-12211: Working version with invalid casts removed and generic types wherever appropriate. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Fri Nov 16 12:28:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 12:28:10 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 12:28:10 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by flawless.mail.umich.edu () with ESMTP id lAGHSAlk004823; + Fri, 16 Nov 2007 12:28:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473DD323.BDDEB.6296 ; + 16 Nov 2007 12:28:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EEF567F831; + Fri, 16 Nov 2007 17:28:02 +0000 (GMT) +Message-ID: <200711161713.lAGHDair012839@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 832 + for ; + Fri, 16 Nov 2007 17:18:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE9F423B1C + for ; Fri, 16 Nov 2007 17:18:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHDb04012841 + for ; Fri, 16 Nov 2007 12:13:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHDair012839 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:13:36 -0500 +Date: Fri, 16 Nov 2007 12:13:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38240 - in site/branches/SAK-12203: site-api/api/src/java/org/sakaiproject/site/api site-impl/impl/src/java/org/sakaiproject/site/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 12:28:10 2007 +X-DSPAM-Confidence: 0.7551 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38240 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-16 12:12:40 -0500 (Fri, 16 Nov 2007) +New Revision: 38240 + +Modified: +site/branches/SAK-12203/site-api/api/src/java/org/sakaiproject/site/api/Site.java +site/branches/SAK-12203/site-api/api/src/java/org/sakaiproject/site/api/SitePage.java +site/branches/SAK-12203/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseGroup.java +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSite.java +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSitePage.java +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseToolConfiguration.java +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/DbSiteService.java +site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/ResourceVector.java +Log: +SAK-12203: Working version with invalid casts removed and generic types wherever appropriate. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Nov 16 11:06:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 11:06:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 11:06:03 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by godsend.mail.umich.edu () with ESMTP id lAGG62tE000922; + Fri, 16 Nov 2007 11:06:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473DBFE4.A26A3.27481 ; + 16 Nov 2007 11:05:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 820027C6CB; + Fri, 16 Nov 2007 16:05:53 +0000 (GMT) +Message-ID: <200711161600.lAGG0SlJ012705@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 824 + for ; + Fri, 16 Nov 2007 16:05:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 18A3723AD3 + for ; Fri, 16 Nov 2007 16:05:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGG0Snd012707 + for ; Fri, 16 Nov 2007 11:00:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGG0SlJ012705 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 11:00:28 -0500 +Date: Fri, 16 Nov 2007 11:00:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38239 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 11:06:03 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38239 + +Author: zqian@umich.edu +Date: 2007-11-16 11:00:27 -0500 (Fri, 16 Nov 2007) +New Revision: 38239 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +fix to SAK-12207: New db field needs to be indexed + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Fri Nov 16 08:54:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 08:54:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 08:54:49 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by faithful.mail.umich.edu () with ESMTP id lAGDsmbe006673; + Fri, 16 Nov 2007 08:54:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473DA122.F086F.7572 ; + 16 Nov 2007 08:54:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 773887C6CB; + Fri, 16 Nov 2007 13:54:47 +0000 (GMT) +Message-ID: <200711161349.lAGDnEas012410@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 380 + for ; + Fri, 16 Nov 2007 13:54:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CDA9F1DB54 + for ; Fri, 16 Nov 2007 13:54:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGDnEYL012412 + for ; Fri, 16 Nov 2007 08:49:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGDnEas012410 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 08:49:14 -0500 +Date: Fri, 16 Nov 2007 08:49:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38236 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 08:54:49 2007 +X-DSPAM-Confidence: 0.8499 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38236 + +Author: jimeng@umich.edu +Date: 2007-11-16 08:49:11 -0500 (Fri, 16 Nov 2007) +New Revision: 38236 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12168 +Avoid checking for availability when user is admin (super-user) + +svn merge -c38103 https://source.sakaiproject.org/svn/content/trunk/ . +C content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Fri Nov 16 08:49:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 08:49:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 08:49:09 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lAGDn9EE018255; + Fri, 16 Nov 2007 08:49:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473D9FCF.D9F8.31421 ; + 16 Nov 2007 08:49:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6D0F17531F; + Fri, 16 Nov 2007 13:49:07 +0000 (GMT) +Message-ID: <200711161343.lAGDhUlw012398@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 192 + for ; + Fri, 16 Nov 2007 13:48:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BA1431DB54 + for ; Fri, 16 Nov 2007 13:48:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGDhUqk012400 + for ; Fri, 16 Nov 2007 08:43:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGDhUlw012398 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 08:43:30 -0500 +Date: Fri, 16 Nov 2007 08:43:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38235 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 08:49:09 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38235 + +Author: jimeng@umich.edu +Date: 2007-11-16 08:43:27 -0500 (Fri, 16 Nov 2007) +New Revision: 38235 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12126 +Clear thread-local cache when removing resources. + +svn merge -c38056 https://source.sakaiproject.org/svn/content/trunk/ . +C content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Fri Nov 16 07:55:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 07:55:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 07:55:29 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by jacknife.mail.umich.edu () with ESMTP id lAGCtS5t008952; + Fri, 16 Nov 2007 07:55:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 473D933B.1C412.11197 ; + 16 Nov 2007 07:55:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 940807DB73; + Fri, 16 Nov 2007 12:55:26 +0000 (GMT) +Message-ID: <200711161249.lAGCnupu012104@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 179 + for ; + Fri, 16 Nov 2007 12:55:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 081A5239D5 + for ; Fri, 16 Nov 2007 12:55:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGCnug0012106 + for ; Fri, 16 Nov 2007 07:49:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGCnupu012104 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 07:49:56 -0500 +Date: Fri, 16 Nov 2007 07:49:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38234 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 07:55:29 2007 +X-DSPAM-Confidence: 0.9873 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38234 + +Author: jimeng@umich.edu +Date: 2007-11-16 07:49:53 -0500 (Fri, 16 Nov 2007) +New Revision: 38234 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +Log: +SAK-11767 +Merging changes from SAK-11767 branch to 2.4.x branch + +svn merge -c36525 https://source.sakaiproject.org/svn/content/branches/SAK-11767/ . +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +C content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +U content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Fri Nov 16 06:35:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 16 Nov 2007 06:35:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 16 Nov 2007 06:35:07 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id lAGBZ68E003452; + Fri, 16 Nov 2007 06:35:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 473D8062.8A213.16517 ; + 16 Nov 2007 06:35:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0E60C7F1BD; + Fri, 16 Nov 2007 11:35:18 +0000 (GMT) +Message-ID: <200711161129.lAGBTJMD012035@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 770 + for ; + Fri, 16 Nov 2007 11:34:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A238223994 + for ; Fri, 16 Nov 2007 11:34:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGBTKNW012037 + for ; Fri, 16 Nov 2007 06:29:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGBTJMD012035 + for source@collab.sakaiproject.org; Fri, 16 Nov 2007 06:29:19 -0500 +Date: Fri, 16 Nov 2007 06:29:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38233 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author samigo-app/src/webapp/jsf/author samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 16 06:35:07 2007 +X-DSPAM-Confidence: 0.8435 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38233 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-16 06:28:35 -0500 (Fri, 16 Nov 2007) +New Revision: 38233 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/authorSettings.jsp +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +Log: +SAK-12065 Functionality complete. Tidying up loose ends like layout issues etc. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 15 21:30:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 21:30:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 21:30:02 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lAG2U0uT025906; + Thu, 15 Nov 2007 21:30:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 473D00A1.82784.5968 ; + 15 Nov 2007 21:29:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE2BD7E77C; + Fri, 16 Nov 2007 02:29:47 +0000 (GMT) +Message-ID: <200711160224.lAG2OFUo011036@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640 + for ; + Fri, 16 Nov 2007 02:29:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 02AD921844 + for ; Fri, 16 Nov 2007 02:29:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG2OFSM011038 + for ; Thu, 15 Nov 2007 21:24:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG2OFUo011036 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 21:24:15 -0500 +Date: Thu, 15 Nov 2007 21:24:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38232 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 21:30:02 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38232 + +Author: zqian@umich.edu +Date: 2007-11-15 21:24:13 -0500 (Thu, 15 Nov 2007) +New Revision: 38232 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 20:28:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 20:28:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 20:28:51 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lAG1Sov1003885; + Thu, 15 Nov 2007 20:28:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 473CF24C.79D0B.29579 ; + 15 Nov 2007 20:28:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 46CEC7D596; + Fri, 16 Nov 2007 01:28:36 +0000 (GMT) +Message-ID: <200711160123.lAG1N73f010867@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 7 + for ; + Fri, 16 Nov 2007 01:28:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 451C91F4C4 + for ; Fri, 16 Nov 2007 01:28:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG1N7us010869 + for ; Thu, 15 Nov 2007 20:23:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG1N73f010867 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 20:23:07 -0500 +Date: Thu, 15 Nov 2007 20:23:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38231 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 20:28:51 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38231 + +Author: jimeng@umich.edu +Date: 2007-11-15 20:23:03 -0500 (Thu, 15 Nov 2007) +New Revision: 38231 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java +Log: +SAK-11790 +Remove member-count as a condition of removing a folder + +svn merge -c38059 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 20:18:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 20:18:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 20:18:27 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id lAG1IPQq005250; + Thu, 15 Nov 2007 20:18:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473CEFDB.BB008.1478 ; + 15 Nov 2007 20:18:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 660CF7EC52; + Fri, 16 Nov 2007 01:18:11 +0000 (GMT) +Message-ID: <200711160112.lAG1ClPq010762@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 590 + for ; + Fri, 16 Nov 2007 01:17:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1132A21844 + for ; Fri, 16 Nov 2007 01:17:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG1CldL010764 + for ; Thu, 15 Nov 2007 20:12:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG1ClPq010762 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 20:12:47 -0500 +Date: Thu, 15 Nov 2007 20:12:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38230 - in content/branches/sakai_2-4-x: content-bundles content-impl/impl/src/java/org/sakaiproject/content/impl content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 20:18:27 2007 +X-DSPAM-Confidence: 0.8483 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38230 + +Author: jimeng@umich.edu +Date: 2007-11-15 20:12:36 -0500 (Thu, 15 Nov 2007) +New Revision: 38230 + +Modified: +content/branches/sakai_2-4-x/content-bundles/types.properties +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +SAK-7182 +Make sure to delete partial records for resources when storing the resource body fails. +Log stack traces when storing resource bodies fails. +Display message to user when creation of resource fails due to server-overload. + +svn merge -c35960 https://source.sakaiproject.org/svn/content/trunk/ . +C content-bundles/types.properties +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +U content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java +C content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 19:55:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 19:55:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 19:55:18 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by brazil.mail.umich.edu () with ESMTP id lAG0tIu6028597; + Thu, 15 Nov 2007 19:55:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 473CEA64.A8F8E.7836 ; + 15 Nov 2007 19:55:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9CAE8796E6; + Fri, 16 Nov 2007 00:47:56 +0000 (GMT) +Message-ID: <200711160049.lAG0nXdx010608@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 239 + for ; + Fri, 16 Nov 2007 00:47:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A87291D0AE + for ; Fri, 16 Nov 2007 00:54:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0nXuJ010610 + for ; Thu, 15 Nov 2007 19:49:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0nXdx010608 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:49:33 -0500 +Date: Thu, 15 Nov 2007 19:49:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38229 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 19:55:18 2007 +X-DSPAM-Confidence: 0.9833 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38229 + +Author: jimeng@umich.edu +Date: 2007-11-15 19:49:30 -0500 (Thu, 15 Nov 2007) +New Revision: 38229 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-11187 +Converted to SAX reads + +svn merge -c34100 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 19:53:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 19:53:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 19:53:37 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id lAG0rZZw032503; + Thu, 15 Nov 2007 19:53:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473CEA01.40DDF.26761 ; + 15 Nov 2007 19:53:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E9339796E6; + Fri, 16 Nov 2007 00:46:02 +0000 (GMT) +Message-ID: <200711160047.lAG0lqHj010596@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585 + for ; + Fri, 16 Nov 2007 00:45:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 173E71D0AE + for ; Fri, 16 Nov 2007 00:52:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0lqUb010598 + for ; Thu, 15 Nov 2007 19:47:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0lqHj010596 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:47:52 -0500 +Date: Thu, 15 Nov 2007 19:47:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38228 - db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 19:53:37 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38228 + +Author: jimeng@umich.edu +Date: 2007-11-15 19:47:49 -0500 (Thu, 15 Nov 2007) +New Revision: 38228 + +Modified: +db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java +Log: +SAK-11187 +BaseDbSingleStorage need SAX handlers + +svn merge -c34101 https://source.sakaiproject.org/svn/db/trunk/ . +U db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 19:43:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 19:43:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 19:43:34 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id lAG0hXlO019456; + Thu, 15 Nov 2007 19:43:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473CE7AF.4E232.25667 ; + 15 Nov 2007 19:43:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DACE17EAB5; + Fri, 16 Nov 2007 00:36:23 +0000 (GMT) +Message-ID: <200711160037.lAG0bxap010499@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 69 + for ; + Fri, 16 Nov 2007 00:36:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 005DB238C3 + for ; Fri, 16 Nov 2007 00:43:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0bxgv010501 + for ; Thu, 15 Nov 2007 19:37:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0bxap010499 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:37:59 -0500 +Date: Thu, 15 Nov 2007 19:37:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38227 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 19:43:34 2007 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38227 + +Author: jimeng@umich.edu +Date: 2007-11-15 19:37:54 -0500 (Thu, 15 Nov 2007) +New Revision: 38227 + +Modified: +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/Xml.java +Log: +SAK-11107 +Missing Javadoc + +svn merge -c33914 https://source.sakaiproject.org/svn/util/trunk/ . +U util-util/util/src/java/org/sakaiproject/util/Xml.java +U util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java +U util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java +U util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 19:40:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 19:40:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 19:40:20 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by chaos.mail.umich.edu () with ESMTP id lAG0eIlu017989; + Thu, 15 Nov 2007 19:40:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 473CE6EE.13760.8203 ; + 15 Nov 2007 19:40:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8E1317EAB5; + Fri, 16 Nov 2007 00:33:10 +0000 (GMT) +Message-ID: <200711160034.lAG0YoOj010485@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 912 + for ; + Fri, 16 Nov 2007 00:32:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D753219A0 + for ; Fri, 16 Nov 2007 00:39:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0Yo3o010487 + for ; Thu, 15 Nov 2007 19:34:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0YoOj010485 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:34:50 -0500 +Date: Thu, 15 Nov 2007 19:34:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38226 - entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 19:40:20 2007 +X-DSPAM-Confidence: 0.9827 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38226 + +Author: jimeng@umich.edu +Date: 2007-11-15 19:34:47 -0500 (Thu, 15 Nov 2007) +New Revision: 38226 + +Modified: +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java +Log: +SAK-11107 +Missing Javadoc + +svn merge -c33915 https://source.sakaiproject.org/svn/entity/trunk/ . +U entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 19:35:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 19:35:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 19:35:16 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id lAG0ZFtg005083; + Thu, 15 Nov 2007 19:35:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473CE5BC.EB5A2.20291 ; + 15 Nov 2007 19:35:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 159DF7EC00; + Fri, 16 Nov 2007 00:28:01 +0000 (GMT) +Message-ID: <200711160029.lAG0Tfcb010388@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356 + for ; + Fri, 16 Nov 2007 00:27:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C3073219A0 + for ; Fri, 16 Nov 2007 00:34:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0Tg3Q010390 + for ; Thu, 15 Nov 2007 19:29:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0Tfcb010388 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:29:41 -0500 +Date: Thu, 15 Nov 2007 19:29:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38225 - in entity/branches/sakai_2-4-x: entity-api/api/src/java/org/sakaiproject/entity/api entity-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 19:35:16 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38225 + +Author: jimeng@umich.edu +Date: 2007-11-15 19:29:34 -0500 (Thu, 15 Nov 2007) +New Revision: 38225 + +Modified: +entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java +entity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java +Log: +SAK-11107 +Changes to ResourceProperties to allow SAX based readers for properties + +svn merge -c33909 https://source.sakaiproject.org/svn/entity/trunk/ . +U entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java +U entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 15 19:29:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 19:29:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 19:29:06 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lAG0T2ft026424; + Thu, 15 Nov 2007 19:29:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 473CE449.48C45.28140 ; + 15 Nov 2007 19:29:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4C5DC7EBE3; + Fri, 16 Nov 2007 00:21:51 +0000 (GMT) +Message-ID: <200711160023.lAG0NPN8010352@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220 + for ; + Fri, 16 Nov 2007 00:21:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 55A69219A0 + for ; Fri, 16 Nov 2007 00:28:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0NPL7010354 + for ; Thu, 15 Nov 2007 19:23:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0NPN8010352 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:23:25 -0500 +Date: Thu, 15 Nov 2007 19:23:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38224 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 19:29:06 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38224 + +Author: jimeng@umich.edu +Date: 2007-11-15 19:23:18 -0500 (Thu, 15 Nov 2007) +New Revision: 38224 + +Added: +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java +Modified: +util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/Xml.java +Log: +SAK-11107 +Utility classes to enable SAX based parsing of XML Blobs + +svn merge -c33910 https://source.sakaiproject.org/svn/util/trunk/ . +U util-util/util/src/java/org/sakaiproject/util/Xml.java +A util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java +A util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java +A util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Thu Nov 15 18:15:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 18:15:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 18:15:45 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by sleepers.mail.umich.edu () with ESMTP id lAFNFh8U007958; + Thu, 15 Nov 2007 18:15:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 473CD319.93446.26848 ; + 15 Nov 2007 18:15:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 68B117D0F6; + Thu, 15 Nov 2007 23:15:17 +0000 (GMT) +Message-ID: <200711152309.lAFN9eso010018@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477 + for ; + Thu, 15 Nov 2007 23:14:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A0AC6238C4 + for ; Thu, 15 Nov 2007 23:14:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFN9foU010020 + for ; Thu, 15 Nov 2007 18:09:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFN9eso010018 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 18:09:40 -0500 +Date: Thu, 15 Nov 2007 18:09:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r38223 - metaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 18:15:45 2007 +X-DSPAM-Confidence: 0.8420 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38223 + +Author: john.ellis@rsmart.com +Date: 2007-11-15 18:09:31 -0500 (Thu, 15 Nov 2007) +New Revision: 38223 + +Modified: +metaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml/ResourceUriResolver.java +Log: +SAK-12218 +added code to properly deal with external urls + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Thu Nov 15 16:02:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 16:02:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 16:02:59 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lAFL2w6O008924; + Thu, 15 Nov 2007 16:02:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 473CB3ED.42507.18493 ; + 15 Nov 2007 16:02:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0C8B37E8FF; + Thu, 15 Nov 2007 21:02:29 +0000 (GMT) +Message-ID: <200711152057.lAFKvBeI009709@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540 + for ; + Thu, 15 Nov 2007 21:02:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6016523882 + for ; Thu, 15 Nov 2007 21:02:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFKvBTB009711 + for ; Thu, 15 Nov 2007 15:57:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFKvBeI009709 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 15:57:11 -0500 +Date: Thu, 15 Nov 2007 15:57:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38222 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 16:02:59 2007 +X-DSPAM-Confidence: 0.9733 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38222 + +Author: ajpoland@iupui.edu +Date: 2007-11-15 15:57:10 -0500 (Thu, 15 Nov 2007) +New Revision: 38222 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 15 15:18:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 15:18:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 15:18:17 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by flawless.mail.umich.edu () with ESMTP id lAFKIGSL029102; + Thu, 15 Nov 2007 15:18:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 473CA980.B2FC3.10218 ; + 15 Nov 2007 15:18:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ABDD67E5CE; + Thu, 15 Nov 2007 20:18:04 +0000 (GMT) +Message-ID: <200711152012.lAFKCYVG009643@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 837 + for ; + Thu, 15 Nov 2007 20:17:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 844C323828 + for ; Thu, 15 Nov 2007 20:17:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFKCYYJ009645 + for ; Thu, 15 Nov 2007 15:12:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFKCYVG009643 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 15:12:34 -0500 +Date: Thu, 15 Nov 2007 15:12:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38221 - osp/branches/osp_nightly +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 15:18:17 2007 +X-DSPAM-Confidence: 0.9782 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38221 + +Author: chmaurer@iupui.edu +Date: 2007-11-15 15:12:33 -0500 (Thu, 15 Nov 2007) +New Revision: 38221 + +Modified: +osp/branches/osp_nightly/ +osp/branches/osp_nightly/.externals +Log: +SAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Thu Nov 15 14:40:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:40:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:40:38 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by chaos.mail.umich.edu () with ESMTP id lAFJeaMd014254; + Thu, 15 Nov 2007 14:40:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473CA0A9.D447F.4432 ; + 15 Nov 2007 14:40:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A32FA7E870; + Thu, 15 Nov 2007 19:40:24 +0000 (GMT) +Message-ID: <200711151934.lAFJYwXu009603@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 815 + for ; + Thu, 15 Nov 2007 19:40:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93B582386D + for ; Thu, 15 Nov 2007 19:40:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJYwt2009605 + for ; Thu, 15 Nov 2007 14:34:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJYwXu009603 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:34:58 -0500 +Date: Thu, 15 Nov 2007 14:34:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38220 - in component/branches/SAK-12166/component-api: . component/src/java/org/sakaiproject/component/impl/spring component/src/java/org/sakaiproject/component/impl/spring/support +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:40:38 2007 +X-DSPAM-Confidence: 0.9782 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38220 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-15 14:34:39 -0500 (Thu, 15 Nov 2007) +New Revision: 38220 + +Added: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/BeanRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentApplicationContextImpl.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/InvocationInterceptor.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java +Modified: +component/branches/SAK-12166/component-api/.project +Log: +Still fighting SVN corruption + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Thu Nov 15 14:39:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:39:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:39:15 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by brazil.mail.umich.edu () with ESMTP id lAFJdEtX005702; + Thu, 15 Nov 2007 14:39:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 473CA056.2C941.24539 ; + 15 Nov 2007 14:39:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D60977E86E; + Thu, 15 Nov 2007 19:38:53 +0000 (GMT) +Message-ID: <200711151933.lAFJXOaS009591@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 484 + for ; + Thu, 15 Nov 2007 19:38:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD67B2386D + for ; Thu, 15 Nov 2007 19:38:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJXOR9009593 + for ; Thu, 15 Nov 2007 14:33:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJXOaS009591 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:33:24 -0500 +Date: Thu, 15 Nov 2007 14:33:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38219 - in component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject: component/api component/api/spring component/cover component/impl component/impl/spring util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:39:15 2007 +X-DSPAM-Confidence: 0.8439 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38219 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-15 14:33:01 -0500 (Thu, 15 Nov 2007) +New Revision: 38219 + +Added: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/spring/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/spring/SpringComponentManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentManagerTargetSource.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecords.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextLoader.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextProcessor.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/StaggeredRefreshApplicationContext.java +Removed: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java +Modified: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ContextLoaderListener.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java +Log: +Recovered from SVN corruption: +Working implementation of Stage 1 Updates to Component Manager +- still fairly noisy when encountering unproxyable things +Various places around the framework require adjustments to new ClassLoader environment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:30:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:30:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:30:25 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by flawless.mail.umich.edu () with ESMTP id lAFJUOdx029416; + Thu, 15 Nov 2007 14:30:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473C9E3F.E459D.10001 ; + 15 Nov 2007 14:30:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A45B37CBC2; + Thu, 15 Nov 2007 19:30:07 +0000 (GMT) +Message-ID: <200711151924.lAFJOR2G009579@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 303 + for ; + Thu, 15 Nov 2007 19:29:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F2EE52386D + for ; Thu, 15 Nov 2007 19:29:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJOSq9009581 + for ; Thu, 15 Nov 2007 14:24:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJOR2G009579 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:24:27 -0500 +Date: Thu, 15 Nov 2007 14:24:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38218 - sakai/branches/sakai_dbrefactor +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:30:25 2007 +X-DSPAM-Confidence: 0.9790 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38218 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:24:26 -0500 (Thu, 15 Nov 2007) +New Revision: 38218 + +Modified: +sakai/branches/sakai_dbrefactor/ +Log: +Updating Externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:29:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:29:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:29:28 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lAFJTRHR006852; + Thu, 15 Nov 2007 14:29:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473C9E0F.1D440.5537 ; + 15 Nov 2007 14:29:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F7217E851; + Thu, 15 Nov 2007 19:29:18 +0000 (GMT) +Message-ID: <200711151923.lAFJNmXr009567@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 478 + for ; + Thu, 15 Nov 2007 19:28:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8F3082386D + for ; Thu, 15 Nov 2007 19:28:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJNmao009569 + for ; Thu, 15 Nov 2007 14:23:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJNmXr009567 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:23:48 -0500 +Date: Thu, 15 Nov 2007 14:23:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38217 - sakai/branches/sakai_2-2-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:29:28 2007 +X-DSPAM-Confidence: 0.9802 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38217 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:23:47 -0500 (Thu, 15 Nov 2007) +New Revision: 38217 + +Modified: +sakai/branches/sakai_2-2-x/ +Log: +Updating externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:28:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:28:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:28:15 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lAFJSEKJ017755; + Thu, 15 Nov 2007 14:28:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473C9DC5.A5292.18353 ; + 15 Nov 2007 14:28:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5FB827E85A; + Thu, 15 Nov 2007 19:28:05 +0000 (GMT) +Message-ID: <200711151922.lAFJMaV8009552@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524 + for ; + Thu, 15 Nov 2007 19:27:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 27D592386D + for ; Thu, 15 Nov 2007 19:27:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJMaOg009554 + for ; Thu, 15 Nov 2007 14:22:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJMaV8009552 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:22:36 -0500 +Date: Thu, 15 Nov 2007 14:22:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38216 - sakai/branches/sakai_2-3-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:28:15 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38216 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:22:34 -0500 (Thu, 15 Nov 2007) +New Revision: 38216 + +Modified: +sakai/branches/sakai_2-3-x/ +Log: +Updating externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:27:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:27:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:27:40 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by chaos.mail.umich.edu () with ESMTP id lAFJRdjs006356; + Thu, 15 Nov 2007 14:27:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 473C9DA3.2235F.9195 ; + 15 Nov 2007 14:27:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BB1FB7E854; + Thu, 15 Nov 2007 19:27:30 +0000 (GMT) +Message-ID: <200711151922.lAFJM1TR009540@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494 + for ; + Thu, 15 Nov 2007 19:27:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E113323854 + for ; Thu, 15 Nov 2007 19:27:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJM1gT009542 + for ; Thu, 15 Nov 2007 14:22:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJM1TR009540 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:22:01 -0500 +Date: Thu, 15 Nov 2007 14:22:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38215 - sakai/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:27:40 2007 +X-DSPAM-Confidence: 0.9777 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38215 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:22:00 -0500 (Thu, 15 Nov 2007) +New Revision: 38215 + +Modified: +sakai/branches/sakai_2-4-x/ +Log: +Updating externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:27:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:27:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:27:12 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by fan.mail.umich.edu () with ESMTP id lAFJRBKj004184; + Thu, 15 Nov 2007 14:27:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 473C9D7F.88138.16189 ; + 15 Nov 2007 14:26:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 215967E239; + Thu, 15 Nov 2007 19:26:55 +0000 (GMT) +Message-ID: <200711151921.lAFJLJ1R009523@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821 + for ; + Thu, 15 Nov 2007 19:26:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0D0D723854 + for ; Thu, 15 Nov 2007 19:26:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJLKrq009526 + for ; Thu, 15 Nov 2007 14:21:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJLJ1R009523 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:21:19 -0500 +Date: Thu, 15 Nov 2007 14:21:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38214 - sakai/branches/sakai_2-5-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:27:12 2007 +X-DSPAM-Confidence: 0.9776 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38214 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:21:18 -0500 (Thu, 15 Nov 2007) +New Revision: 38214 + +Modified: +sakai/branches/sakai_2-5-x/ +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:25:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:25:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:25:37 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lAFJPZH4002590; + Thu, 15 Nov 2007 14:25:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 473C9D26.BAD3D.3760 ; + 15 Nov 2007 14:25:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6C80C7E851; + Thu, 15 Nov 2007 19:25:26 +0000 (GMT) +Message-ID: <200711151919.lAFJJsU6009496@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 865 + for ; + Thu, 15 Nov 2007 19:25:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4B25523854 + for ; Thu, 15 Nov 2007 19:25:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJJsFW009498 + for ; Thu, 15 Nov 2007 14:19:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJJsU6009496 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:19:54 -0500 +Date: Thu, 15 Nov 2007 14:19:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38213 - sakai/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:25:37 2007 +X-DSPAM-Confidence: 0.9790 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38213 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:19:53 -0500 (Thu, 15 Nov 2007) +New Revision: 38213 + +Modified: +sakai/trunk/ +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:17:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:17:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:17:24 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id lAFJHMD4012128; + Thu, 15 Nov 2007 14:17:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473C9B30.5B585.10255 ; + 15 Nov 2007 14:17:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2B06D7E83D; + Thu, 15 Nov 2007 19:17:04 +0000 (GMT) +Message-ID: <200711151911.lAFJBjCm009395@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 204 + for ; + Thu, 15 Nov 2007 19:16:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 96B6F1F182 + for ; Thu, 15 Nov 2007 19:16:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJBjQH009397 + for ; Thu, 15 Nov 2007 14:11:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJBjCm009395 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:11:45 -0500 +Date: Thu, 15 Nov 2007 14:11:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38212 - sakai/branches/sakai_2-2-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:17:24 2007 +X-DSPAM-Confidence: 0.8416 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38212 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:11:44 -0500 (Thu, 15 Nov 2007) +New Revision: 38212 + +Modified: +sakai/branches/sakai_2-2-x/.externals +Log: +SAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:15:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:15:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:15:43 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lAFJFgQj006386; + Thu, 15 Nov 2007 14:15:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 473C9AD7.A3311.21047 ; + 15 Nov 2007 14:15:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7AD747E844; + Thu, 15 Nov 2007 19:15:35 +0000 (GMT) +Message-ID: <200711151910.lAFJA9uP009375@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 234 + for ; + Thu, 15 Nov 2007 19:15:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8B10D1F182 + for ; Thu, 15 Nov 2007 19:15:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJA9AW009377 + for ; Thu, 15 Nov 2007 14:10:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJA9uP009375 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:10:09 -0500 +Date: Thu, 15 Nov 2007 14:10:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38211 - sakai/branches/sakai_2-3-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:15:43 2007 +X-DSPAM-Confidence: 0.9775 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38211 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:10:08 -0500 (Thu, 15 Nov 2007) +New Revision: 38211 + +Modified: +sakai/branches/sakai_2-3-x/.externals +Log: +SAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:14:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:14:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:14:33 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by godsend.mail.umich.edu () with ESMTP id lAFJEWUN030892; + Thu, 15 Nov 2007 14:14:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473C9A91.CFF8B.21578 ; + 15 Nov 2007 14:14:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 842847E83D; + Thu, 15 Nov 2007 19:14:25 +0000 (GMT) +Message-ID: <200711151908.lAFJ8xqr009363@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 307 + for ; + Thu, 15 Nov 2007 19:14:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 11E2E1F182 + for ; Thu, 15 Nov 2007 19:14:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ8xqT009365 + for ; Thu, 15 Nov 2007 14:08:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ8xqr009363 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:08:59 -0500 +Date: Thu, 15 Nov 2007 14:08:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38210 - sakai/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:14:33 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38210 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:08:58 -0500 (Thu, 15 Nov 2007) +New Revision: 38210 + +Modified: +sakai/branches/sakai_2-4-x/.externals +Log: +SAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:13:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:13:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:13:04 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lAFJD3ew004533; + Thu, 15 Nov 2007 14:13:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473C9A30.D250C.4652 ; + 15 Nov 2007 14:12:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 123B57E326; + Thu, 15 Nov 2007 19:12:47 +0000 (GMT) +Message-ID: <200711151907.lAFJ7K62009351@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 606 + for ; + Thu, 15 Nov 2007 19:12:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1B4581F182 + for ; Thu, 15 Nov 2007 19:12:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ7LfJ009353 + for ; Thu, 15 Nov 2007 14:07:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ7K62009351 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:07:21 -0500 +Date: Thu, 15 Nov 2007 14:07:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38209 - sakai/branches/sakai_dbrefactor +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:13:04 2007 +X-DSPAM-Confidence: 0.9773 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38209 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:07:20 -0500 (Thu, 15 Nov 2007) +New Revision: 38209 + +Modified: +sakai/branches/sakai_dbrefactor/.externals +Log: +SAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:11:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:11:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:11:08 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lAFJB7jQ028789; + Thu, 15 Nov 2007 14:11:07 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473C99C6.A31BE.17310 ; + 15 Nov 2007 14:11:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1D799779D5; + Thu, 15 Nov 2007 19:11:00 +0000 (GMT) +Message-ID: <200711151905.lAFJ5XGB009339@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137 + for ; + Thu, 15 Nov 2007 19:10:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BBE471D3AD + for ; Thu, 15 Nov 2007 19:10:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ5Xm3009341 + for ; Thu, 15 Nov 2007 14:05:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ5XGB009339 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:05:33 -0500 +Date: Thu, 15 Nov 2007 14:05:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38208 - sakai/branches/sakai_2-5-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:11:08 2007 +X-DSPAM-Confidence: 0.9772 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38208 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:05:32 -0500 (Thu, 15 Nov 2007) +New Revision: 38208 + +Modified: +sakai/branches/sakai_2-5-x/.externals +Log: +SAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 14:07:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 14:07:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 14:07:22 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id lAFJ7Jwk023955; + Thu, 15 Nov 2007 14:07:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 473C98E0.C54A7.17504 ; + 15 Nov 2007 14:07:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE6007E838; + Thu, 15 Nov 2007 19:07:09 +0000 (GMT) +Message-ID: <200711151901.lAFJ1mpg009327@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 627 + for ; + Thu, 15 Nov 2007 19:06:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2496B1FD70 + for ; Thu, 15 Nov 2007 19:06:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ1nup009329 + for ; Thu, 15 Nov 2007 14:01:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ1mpg009327 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:01:48 -0500 +Date: Thu, 15 Nov 2007 14:01:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38207 - sakai/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 14:07:22 2007 +X-DSPAM-Confidence: 0.9802 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38207 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 14:01:48 -0500 (Thu, 15 Nov 2007) +New Revision: 38207 + +Modified: +sakai/trunk/.externals +Log: +SAK-11341 - Remove /svn/discussion from .externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 15 13:36:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 13:36:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 13:36:27 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by fan.mail.umich.edu () with ESMTP id lAFIaQCG029452; + Thu, 15 Nov 2007 13:36:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 473C918E.1FFD3.20950 ; + 15 Nov 2007 13:36:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 584D67E38E; + Thu, 15 Nov 2007 18:29:57 +0000 (GMT) +Message-ID: <200711151830.lAFIUbTw009123@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 469 + for ; + Thu, 15 Nov 2007 18:29:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 929BCAF03 + for ; Thu, 15 Nov 2007 18:35:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFIUbLt009125 + for ; Thu, 15 Nov 2007 13:30:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFIUbTw009123 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 13:30:37 -0500 +Date: Thu, 15 Nov 2007 13:30:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38206 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 13:36:27 2007 +X-DSPAM-Confidence: 0.6950 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38206 + +Author: zqian@umich.edu +Date: 2007-11-15 13:30:30 -0500 (Thu, 15 Nov 2007) +New Revision: 38206 + +Modified: +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +fix to SAK-9471:Groups can be added in site info with no members, it is possible to create a group which does not display any group name + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Thu Nov 15 12:02:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 12:02:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 12:02:29 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by faithful.mail.umich.edu () with ESMTP id lAFH2RUM031830; + Thu, 15 Nov 2007 12:02:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 473C7B9D.B1B52.29151 ; + 15 Nov 2007 12:02:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8FB397E695; + Thu, 15 Nov 2007 17:01:15 +0000 (GMT) +Message-ID: <200711151656.lAFGuqjB009002@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 450 + for ; + Thu, 15 Nov 2007 17:01:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9143F23788 + for ; Thu, 15 Nov 2007 17:01:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFGuqbx009004 + for ; Thu, 15 Nov 2007 11:56:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFGuqjB009002 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 11:56:52 -0500 +Date: Thu, 15 Nov 2007 11:56:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38205 - in authz/branches/SAK-12200: authz-api/api/src/java/org/sakaiproject/authz/api authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 12:02:29 2007 +X-DSPAM-Confidence: 0.9765 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38205 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-15 11:56:32 -0500 (Thu, 15 Nov 2007) +New Revision: 38205 + +Modified: +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/AuthzGroup.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroup.java +Log: +Reverted to Comparable(obj) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 15 12:00:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 12:00:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 12:00:25 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lAFH0PcH013330; + Thu, 15 Nov 2007 12:00:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 473C7B10.A1977.13483 ; + 15 Nov 2007 12:00:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 08F917E6A3; + Thu, 15 Nov 2007 16:58:20 +0000 (GMT) +Message-ID: <200711151654.lAFGs9J2008990@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 684 + for ; + Thu, 15 Nov 2007 16:58:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8CAAF2381F + for ; Thu, 15 Nov 2007 16:59:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFGs92h008992 + for ; Thu, 15 Nov 2007 11:54:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFGs9J2008990 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 11:54:09 -0500 +Date: Thu, 15 Nov 2007 11:54:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38204 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 12:00:25 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38204 + +Author: zqian@umich.edu +Date: 2007-11-15 11:54:08 -0500 (Thu, 15 Nov 2007) +New Revision: 38204 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 11:08:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 11:08:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 11:08:54 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by brazil.mail.umich.edu () with ESMTP id lAFG8rIC010913; + Thu, 15 Nov 2007 11:08:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 473C6F08.50FBB.3800 ; + 15 Nov 2007 11:08:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 49AC27E551; + Thu, 15 Nov 2007 16:08:37 +0000 (GMT) +Message-ID: <200711151603.lAFG3Hxw008904@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 729 + for ; + Thu, 15 Nov 2007 16:08:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 090062376E + for ; Thu, 15 Nov 2007 16:08:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFG3H9e008906 + for ; Thu, 15 Nov 2007 11:03:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFG3Hxw008904 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 11:03:17 -0500 +Date: Thu, 15 Nov 2007 11:03:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38203 - / +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 11:08:54 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38203 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 11:03:16 -0500 (Thu, 15 Nov 2007) +New Revision: 38203 + +Removed: +discussion/ +Log: +SAK-11341 - Moved Retired Discussion Project to contrib + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 15 11:01:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 11:01:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 11:01:20 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by chaos.mail.umich.edu () with ESMTP id lAFG1JMq015681; + Thu, 15 Nov 2007 11:01:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473C6D4A.50620.28475 ; + 15 Nov 2007 11:01:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E8DA87C533; + Thu, 15 Nov 2007 16:01:10 +0000 (GMT) +Message-ID: <200711151555.lAFFtmFe008888@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425 + for ; + Thu, 15 Nov 2007 16:00:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F3C101D598 + for ; Thu, 15 Nov 2007 16:00:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFtmv6008890 + for ; Thu, 15 Nov 2007 10:55:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFtmFe008888 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:55:48 -0500 +Date: Thu, 15 Nov 2007 10:55:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38202 - in assignment/branches/sakai_2-5-x: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 11:01:20 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38202 + +Author: zqian@umich.edu +Date: 2007-11-15 10:55:44 -0500 (Thu, 15 Nov 2007) +New Revision: 38202 + +Added: +assignment/branches/sakai_2-5-x/upgradeschema_mysql.config +assignment/branches/sakai_2-5-x/upgradeschema_oracle.config +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +Log: +merge into 2.5.x the fix to SAK-12208:Assignment conversion needs to create indexed tables.Assignment conversion needs to create indexed tables + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 15 10:53:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 10:53:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 10:53:32 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lAFFrVXZ007290; + Thu, 15 Nov 2007 10:53:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473C6B75.C0B13.3519 ; + 15 Nov 2007 10:53:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9E4D06D2DE; + Thu, 15 Nov 2007 15:48:24 +0000 (GMT) +Message-ID: <200711151548.lAFFm2g7008861@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603 + for ; + Thu, 15 Nov 2007 15:48:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6C0331D598 + for ; Thu, 15 Nov 2007 15:53:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFm2NI008863 + for ; Thu, 15 Nov 2007 10:48:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFm2g7008861 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:48:02 -0500 +Date: Thu, 15 Nov 2007 10:48:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38201 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 10:53:32 2007 +X-DSPAM-Confidence: 0.9867 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38201 + +Author: zqian@umich.edu +Date: 2007-11-15 10:47:59 -0500 (Thu, 15 Nov 2007) +New Revision: 38201 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/trunk/upgradeschema_mysql.config +assignment/trunk/upgradeschema_oracle.config +Log: +fix to SAK-12208:Assignment conversion needs to create indexed tables + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Nov 15 10:47:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 10:47:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 10:47:28 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by awakenings.mail.umich.edu () with ESMTP id lAFFlRcY001869; + Thu, 15 Nov 2007 10:47:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473C69F9.9F669.27140 ; + 15 Nov 2007 10:47:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BD7AD7CB7D; + Thu, 15 Nov 2007 15:42:03 +0000 (GMT) +Message-ID: <200711151541.lAFFfefl008835@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 602 + for ; + Thu, 15 Nov 2007 15:41:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 149211D598 + for ; Thu, 15 Nov 2007 15:46:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFfeLn008837 + for ; Thu, 15 Nov 2007 10:41:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFfefl008835 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:41:40 -0500 +Date: Thu, 15 Nov 2007 10:41:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38200 - entity/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 10:47:28 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38200 + +Author: rjlowe@iupui.edu +Date: 2007-11-15 10:41:39 -0500 (Thu, 15 Nov 2007) +New Revision: 38200 + +Added: +entity/branches/SAK-12211/ +Log: +SAK-12211 +New branch for /entity/branches/SAK-12211 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Nov 15 10:25:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 10:25:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 10:25:06 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id lAFFP5Y1016679; + Thu, 15 Nov 2007 10:25:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 473C64CA.7619C.23121 ; + 15 Nov 2007 10:25:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9EE417E2E4; + Thu, 15 Nov 2007 15:22:50 +0000 (GMT) +Message-ID: <200711151519.lAFFJSk5008789@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959 + for ; + Thu, 15 Nov 2007 15:22:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8692021554 + for ; Thu, 15 Nov 2007 15:24:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFJSax008791 + for ; Thu, 15 Nov 2007 10:19:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFJSk5008789 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:19:28 -0500 +Date: Thu, 15 Nov 2007 10:19:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38199 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 10:25:06 2007 +X-DSPAM-Confidence: 0.9758 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38199 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-15 10:18:53 -0500 (Thu, 15 Nov 2007) +New Revision: 38199 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +Log: +SAK-12065 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 15 10:24:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 10:24:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 10:24:47 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id lAFFOkkD009914; + Thu, 15 Nov 2007 10:24:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 473C64B5.69BDD.26985 ; + 15 Nov 2007 10:24:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B79E7E391; + Thu, 15 Nov 2007 15:22:16 +0000 (GMT) +Message-ID: <200711151518.lAFFIwl6008777@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284 + for ; + Thu, 15 Nov 2007 15:21:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4485123774 + for ; Thu, 15 Nov 2007 15:24:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFIwrf008779 + for ; Thu, 15 Nov 2007 10:18:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFIwl6008777 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:18:58 -0500 +Date: Thu, 15 Nov 2007 10:18:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38198 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 10:24:47 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38198 + +Author: zqian@umich.edu +Date: 2007-11-15 10:18:55 -0500 (Thu, 15 Nov 2007) +New Revision: 38198 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/trunk/upgradeschema_mysql.config +Log: +fix to SAK-12208:Assignment conversion needs to create indexed tables + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Thu Nov 15 10:18:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 10:18:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 10:18:53 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lAFFIqhN013014; + Thu, 15 Nov 2007 10:18:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 473C6355.951F6.18109 ; + 15 Nov 2007 10:18:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4CC417E39E; + Thu, 15 Nov 2007 15:16:45 +0000 (GMT) +Message-ID: <200711151513.lAFFDPs7008708@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960 + for ; + Thu, 15 Nov 2007 15:16:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A6330236E7 + for ; Thu, 15 Nov 2007 15:18:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFDPMT008710 + for ; Thu, 15 Nov 2007 10:13:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFDPs7008708 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:13:25 -0500 +Date: Thu, 15 Nov 2007 10:13:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r38197 - mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 10:18:53 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38197 + +Author: kimsooil@bu.edu +Date: 2007-11-15 10:13:21 -0500 (Thu, 15 Nov 2007) +New Revision: 38197 + +Modified: +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +Log: +Applied Daniel's patch (SAK-11046) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Thu Nov 15 10:16:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 10:16:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 10:16:26 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by awakenings.mail.umich.edu () with ESMTP id lAFFGOx9011012; + Thu, 15 Nov 2007 10:16:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 473C62BE.58C3E.16590 ; + 15 Nov 2007 10:16:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D90017E373; + Thu, 15 Nov 2007 15:14:12 +0000 (GMT) +Message-ID: <200711151510.lAFFAcLu008661@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 224 + for ; + Thu, 15 Nov 2007 15:13:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8C00623740 + for ; Thu, 15 Nov 2007 15:15:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFAcCP008663 + for ; Thu, 15 Nov 2007 10:10:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFAcLu008661 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:10:38 -0500 +Date: Thu, 15 Nov 2007 10:10:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r38196 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 10:16:25 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38196 + +Author: kimsooil@bu.edu +Date: 2007-11-15 10:10:35 -0500 (Thu, 15 Nov 2007) +New Revision: 38196 + +Modified: +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +Log: +Corrected Contributor name. (Sorry. Daniel McCallum) - no changes in codes + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Thu Nov 15 10:15:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 15 Nov 2007 10:15:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 15 Nov 2007 10:15:12 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id lAFFFBJn007769; + Thu, 15 Nov 2007 10:15:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 473C6279.1D8F7.24183 ; + 15 Nov 2007 10:15:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 804D07E349; + Thu, 15 Nov 2007 15:12:52 +0000 (GMT) +Message-ID: <200711151508.lAFF8J60008619@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1020 + for ; + Thu, 15 Nov 2007 15:12:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5BD0323740 + for ; Thu, 15 Nov 2007 15:13:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFF8JTD008621 + for ; Thu, 15 Nov 2007 10:08:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFF8J60008619 + for source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:08:19 -0500 +Date: Thu, 15 Nov 2007 10:08:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r38195 - in mailtool/trunk: . mailtool mailtool/src mailtool/src/java/org/sakaiproject/tool/mailtool mailtool/src/test mailtool/src/test/org mailtool/src/test/org/sakaiproject mailtool/src/test/org/sakaiproject/tool mailtool/src/test/org/sakaiproject/tool/mailtool mailtool/src/webapp/WEB-INF mailtool/src/webapp/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 15 10:15:12 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38195 + +Author: kimsooil@bu.edu +Date: 2007-11-15 10:08:04 -0500 (Thu, 15 Nov 2007) +New Revision: 38195 + +Added: +mailtool/trunk/mailtool/src/test/ +mailtool/trunk/mailtool/src/test/org/ +mailtool/trunk/mailtool/src/test/org/sakaiproject/ +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/ +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/ +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/BaseMailtoolTest.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailListValidationTest.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailSenderTest.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolRecipientsTest.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageFromConstraint.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageSender.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageToConstraint.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtool.java +mailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtoolWithMessageSink.java +Modified: +mailtool/trunk/.classpath +mailtool/trunk/.project +mailtool/trunk/mailtool/pom.xml +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailUser.java +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/FoothillSelector.java +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/SideBySideModel.java +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/UserSelector.java +mailtool/trunk/mailtool/src/webapp/WEB-INF/faces-config.xml +mailtool/trunk/mailtool/src/webapp/mailtool/main_onepage.jsp +Log: +Fixed SAK-11046 (Thanks. David McCallum of Unicon) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 14 23:36:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 23:36:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 23:36:06 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lAF4a5tK017668; + Wed, 14 Nov 2007 23:36:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473BCCAF.AC384.18114 ; + 14 Nov 2007 23:36:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2254D6F560; + Thu, 15 Nov 2007 04:35:57 +0000 (GMT) +Message-ID: <200711150402.lAF42Xb1030755@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 95 + for ; + Thu, 15 Nov 2007 04:07:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A63E5215B8 + for ; Thu, 15 Nov 2007 04:07:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF42YDx030757 + for ; Wed, 14 Nov 2007 23:02:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF42Xb1030755 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 23:02:33 -0500 +Date: Wed, 14 Nov 2007 23:02:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38194 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 23:36:06 2007 +X-DSPAM-Confidence: 0.9873 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38194 + +Author: zqian@umich.edu +Date: 2007-11-14 23:02:32 -0500 (Wed, 14 Nov 2007) +New Revision: 38194 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Wed Nov 14 22:52:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 22:52:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 22:52:06 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lAF3q5Hg025652; + Wed, 14 Nov 2007 22:52:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473BC25F.9729D.25781 ; + 14 Nov 2007 22:52:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DC76074FF2; + Thu, 15 Nov 2007 03:52:00 +0000 (GMT) +Message-ID: <200711150346.lAF3kR7f030740@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 777 + for ; + Thu, 15 Nov 2007 03:51:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 106FE215A8 + for ; Thu, 15 Nov 2007 03:51:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF3kRUN030742 + for ; Wed, 14 Nov 2007 22:46:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF3kR7f030740 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:46:27 -0500 +Date: Wed, 14 Nov 2007 22:46:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38193 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 22:52:06 2007 +X-DSPAM-Confidence: 0.8436 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38193 + +Author: ostermmg@whitman.edu +Date: 2007-11-14 22:46:22 -0500 (Wed, 14 Nov 2007) +New Revision: 38193 + +Added: +content/branches/post-2-4/ +Log: +New /content branch based on r38192 2.4.x branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 22:39:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 22:39:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 22:39:31 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lAF3dUUx032139; + Wed, 14 Nov 2007 22:39:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473BBF6D.8D624.5812 ; + 14 Nov 2007 22:39:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B443D7D559; + Thu, 15 Nov 2007 03:39:23 +0000 (GMT) +Message-ID: <200711150334.lAF3Y3Nx030666@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 45 + for ; + Thu, 15 Nov 2007 03:39:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BAFA41FD01 + for ; Thu, 15 Nov 2007 03:39:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF3Y34h030668 + for ; Wed, 14 Nov 2007 22:34:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF3Y3Nx030666 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:34:03 -0500 +Date: Wed, 14 Nov 2007 22:34:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38192 - in content/branches/sakai_2-4-x/content-tool/tool/src: java/org/sakaiproject/content/tool webapp/vm/content webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 22:39:31 2007 +X-DSPAM-Confidence: 0.7563 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38192 + +Author: jimeng@umich.edu +Date: 2007-11-14 22:33:53 -0500 (Wed, 14 Nov 2007) +New Revision: 38192 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm +Log: +SAK-10109 +Added method in ListItem to calculate whether item is in MyWorkspace. +Added conditional expressions in templates to determine whether notification widget should be shown. + +svn merge -c34527 https://source.sakaiproject.org/svn/content/trunk/ . +C content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +U content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm +U content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm +U content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm +U content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm +U content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm +U content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm +U content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm +U content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 22:10:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 22:10:16 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 22:10:16 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by casino.mail.umich.edu () with ESMTP id lAF3AFis019388; + Wed, 14 Nov 2007 22:10:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473BB88D.30356.28797 ; + 14 Nov 2007 22:10:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1371B7C490; + Thu, 15 Nov 2007 03:10:05 +0000 (GMT) +Message-ID: <200711150304.lAF34lRv030571@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 33 + for ; + Thu, 15 Nov 2007 03:09:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AF90E1D997 + for ; Thu, 15 Nov 2007 03:09:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF34lSR030573 + for ; Wed, 14 Nov 2007 22:04:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF34lRv030571 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:04:47 -0500 +Date: Wed, 14 Nov 2007 22:04:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38191 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 22:10:16 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38191 + +Author: jimeng@umich.edu +Date: 2007-11-14 22:04:44 -0500 (Wed, 14 Nov 2007) +New Revision: 38191 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-1357 +update exception error handling + +svn merge -c37387 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 22:07:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 22:07:54 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 22:07:54 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by faithful.mail.umich.edu () with ESMTP id lAF37rda004114; + Wed, 14 Nov 2007 22:07:53 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473BB7FE.6565F.17024 ; + 14 Nov 2007 22:07:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0AC637DB21; + Thu, 15 Nov 2007 03:07:41 +0000 (GMT) +Message-ID: <200711150302.lAF32JQA030558@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 182 + for ; + Thu, 15 Nov 2007 03:07:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 898221D997 + for ; Thu, 15 Nov 2007 03:07:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF32KnM030560 + for ; Wed, 14 Nov 2007 22:02:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF32JQA030558 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:02:19 -0500 +Date: Wed, 14 Nov 2007 22:02:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38190 - in content/branches/sakai_2-4-x: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 22:07:54 2007 +X-DSPAM-Confidence: 0.8481 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38190 + +Author: jimeng@umich.edu +Date: 2007-11-14 22:02:13 -0500 (Wed, 14 Nov 2007) +New Revision: 38190 + +Modified: +content/branches/sakai_2-4-x/content-bundles/types.properties +content/branches/sakai_2-4-x/content-bundles/types_ar.properties +content/branches/sakai_2-4-x/content-bundles/types_fr_CA.properties +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-1357 +SAK-11814 +fix uploading and editting UTF-8 content + +svn merge -c37382 https://source.sakaiproject.org/svn/content/trunk/ . +U content-bundles/types_ar.properties +U content-bundles/types_fr_CA.properties +U content-bundles/types.properties +C content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 22:00:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 22:00:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 22:00:28 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by godsend.mail.umich.edu () with ESMTP id lAF30RdL013952; + Wed, 14 Nov 2007 22:00:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473BB646.576.30365 ; + 14 Nov 2007 22:00:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B026A7DB21; + Thu, 15 Nov 2007 03:00:20 +0000 (GMT) +Message-ID: <200711150255.lAF2t0m5030474@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696 + for ; + Thu, 15 Nov 2007 02:59:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B3DDE21211 + for ; Thu, 15 Nov 2007 03:00:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF2t0rG030476 + for ; Wed, 14 Nov 2007 21:55:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF2t0m5030474 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:55:00 -0500 +Date: Wed, 14 Nov 2007 21:55:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38189 - in content/branches/sakai_2-4-x: content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/types content-impl/pack/src/webapp/WEB-INF content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 22:00:28 2007 +X-DSPAM-Confidence: 0.8504 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38189 + +Author: jimeng@umich.edu +Date: 2007-11-14 21:54:43 -0500 (Wed, 14 Nov 2007) +New Revision: 38189 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java +content/branches/sakai_2-4-x/content-impl/pack/src/webapp/WEB-INF/components.xml +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java +Log: +SAK-11767 +Added thread-local caching of site object used when building the list view of Resources tool. Avoids making a copy for each time it's needed. +Replaced Vector with ArrayList and Hashtable with ArrayList in a number of places to ensure there is not contention for the collections where it would not be necessary. +Use lazy initialization for optional permissions and groups info that may not be needed in building list view. +Also fixed some things related to an earlier commit that acted differently with ArrayList vs Vector. + +svn merge -c36525 https://source.sakaiproject.org/svn/content/branches/SAK-11767/ . +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +U content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +U content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java +U content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java +U content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java +U content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java +U content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java +U content-impl/pack/src/webapp/WEB-INF/components.xml + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 21:53:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 21:53:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 21:53:00 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lAF2qx1b008020; + Wed, 14 Nov 2007 21:52:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 473BB484.7E62E.13475 ; + 14 Nov 2007 21:52:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3C037C43C; + Thu, 15 Nov 2007 02:52:56 +0000 (GMT) +Message-ID: <200711150247.lAF2lTkj030402@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 881 + for ; + Thu, 15 Nov 2007 02:52:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7603021211 + for ; Thu, 15 Nov 2007 02:52:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF2lT0Z030404 + for ; Wed, 14 Nov 2007 21:47:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF2lTkj030402 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:47:29 -0500 +Date: Wed, 14 Nov 2007 21:47:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38188 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 21:53:00 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38188 + +Author: jimeng@umich.edu +Date: 2007-11-14 21:47:27 -0500 (Wed, 14 Nov 2007) +New Revision: 38188 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +Log: +SAK-11666 +added label for selectall input + +svn merge -c35981 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 21:29:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 21:29:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 21:29:25 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lAF2TPD2030141; + Wed, 14 Nov 2007 21:29:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 473BAEFF.31A07.21729 ; + 14 Nov 2007 21:29:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A90FD78545; + Thu, 15 Nov 2007 02:29:24 +0000 (GMT) +Message-ID: <200711150223.lAF2NvP4030186@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800 + for ; + Thu, 15 Nov 2007 02:29:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DA17A1CDBB + for ; Thu, 15 Nov 2007 02:29:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF2NvZG030188 + for ; Wed, 14 Nov 2007 21:23:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF2NvP4030186 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:23:57 -0500 +Date: Wed, 14 Nov 2007 21:23:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38187 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 21:29:25 2007 +X-DSPAM-Confidence: 0.9855 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38187 + +Author: jimeng@umich.edu +Date: 2007-11-14 21:23:53 -0500 (Wed, 14 Nov 2007) +New Revision: 38187 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-10567 +Use the reference without the alternate reference when posting events to the Notification Service. + +svn merge -c35928 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 14 21:09:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 21:09:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 21:09:23 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id lAF29MuT003513; + Wed, 14 Nov 2007 21:09:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 473BAA4C.3F149.728 ; + 14 Nov 2007 21:09:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 661C67B53C; + Thu, 15 Nov 2007 02:09:18 +0000 (GMT) +Message-ID: <200711150203.lAF23cYl030093@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 248 + for ; + Thu, 15 Nov 2007 02:08:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E2DB61FD0A + for ; Thu, 15 Nov 2007 02:08:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF23cY3030095 + for ; Wed, 14 Nov 2007 21:03:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF23cYl030093 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:03:38 -0500 +Date: Wed, 14 Nov 2007 21:03:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38186 - in assignment/trunk: assignment-bundles assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 21:09:23 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38186 + +Author: zqian@umich.edu +Date: 2007-11-14 21:03:33 -0500 (Wed, 14 Nov 2007) +New Revision: 38186 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12186:Assignments download all and upload all have inconsistent id fields - display id != eid + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 20:57:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 20:57:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 20:57:43 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by casino.mail.umich.edu () with ESMTP id lAF1vgcZ015592; + Wed, 14 Nov 2007 20:57:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 473BA790.AD9DF.11785 ; + 14 Nov 2007 20:57:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 89F257D358; + Thu, 15 Nov 2007 01:57:36 +0000 (GMT) +Message-ID: <200711150152.lAF1q9GQ030017@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 110 + for ; + Thu, 15 Nov 2007 01:57:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0FBF823680 + for ; Thu, 15 Nov 2007 01:57:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF1q9kD030019 + for ; Wed, 14 Nov 2007 20:52:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF1q9GQ030017 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:52:09 -0500 +Date: Wed, 14 Nov 2007 20:52:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38185 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 20:57:43 2007 +X-DSPAM-Confidence: 0.9883 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38185 + +Author: jimeng@umich.edu +Date: 2007-11-14 20:52:06 -0500 (Wed, 14 Nov 2007) +New Revision: 38185 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-10761 +Fixed the error message to display the lesser of content.upload.max and content.upload.ceiling + +svn merge -c34673 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 20:48:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 20:48:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 20:48:41 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lAF1meN9024071; + Wed, 14 Nov 2007 20:48:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473BA572.9B961.26723 ; + 14 Nov 2007 20:48:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 493037D703; + Thu, 15 Nov 2007 01:48:41 +0000 (GMT) +Message-ID: <200711150143.lAF1hETX029812@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 860 + for ; + Thu, 15 Nov 2007 01:48:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 18BB423680 + for ; Thu, 15 Nov 2007 01:48:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF1hES8029814 + for ; Wed, 14 Nov 2007 20:43:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF1hETX029812 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:43:14 -0500 +Date: Wed, 14 Nov 2007 20:43:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38184 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 20:48:41 2007 +X-DSPAM-Confidence: 0.7599 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38184 + +Author: jimeng@umich.edu +Date: 2007-11-14 20:43:11 -0500 (Wed, 14 Nov 2007) +New Revision: 38184 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm +Log: +SAK-10107 +SAK-10108 +SAK-10109 +SAK-10110 +Eliminating some dialogs from dropbox. + +svn merge -c34499 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +U content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm +C content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 20:38:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 20:38:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 20:38:24 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lAF1cNN1015939; + Wed, 14 Nov 2007 20:38:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473BA309.EE111.17917 ; + 14 Nov 2007 20:38:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6FADF7C26D; + Thu, 15 Nov 2007 01:38:15 +0000 (GMT) +Message-ID: <200711150132.lAF1Wkpu029668@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 156 + for ; + Thu, 15 Nov 2007 01:37:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 18ACC1DB4C + for ; Thu, 15 Nov 2007 01:37:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF1Wko9029670 + for ; Wed, 14 Nov 2007 20:32:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF1Wkpu029668 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:32:46 -0500 +Date: Wed, 14 Nov 2007 20:32:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38183 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 20:38:24 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38183 + +Author: jimeng@umich.edu +Date: 2007-11-14 20:32:43 -0500 (Wed, 14 Nov 2007) +New Revision: 38183 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm +Log: +SAK-10259 +increase width of textarea for creating text documents + +svn merge -c31673 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Wed Nov 14 20:11:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 20:11:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 20:11:43 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by sleepers.mail.umich.edu () with ESMTP id lAF1BhBX019025; + Wed, 14 Nov 2007 20:11:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473B9CC9.9F2E4.13667 ; + 14 Nov 2007 20:11:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BEC97785B2; + Thu, 15 Nov 2007 01:11:27 +0000 (GMT) +Message-ID: <200711150103.lAF13VIx029518@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 343 + for ; + Thu, 15 Nov 2007 01:11:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 098FF1BC15 + for ; Thu, 15 Nov 2007 01:08:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF13Vhu029520 + for ; Wed, 14 Nov 2007 20:03:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF13VIx029518 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:03:31 -0500 +Date: Wed, 14 Nov 2007 20:03:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38182 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 20:11:43 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38182 + +Author: jimeng@umich.edu +Date: 2007-11-14 20:03:28 -0500 (Wed, 14 Nov 2007) +New Revision: 38182 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +Log: +SAK-9871 +svn merge -c31666 https://source.sakaiproject.org/svn/content/trunk/ . +http://bugs.sakaiproject.org/jira/browse/SAK-9871 +- changing onclick to href for paste action + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Wed Nov 14 17:49:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 17:49:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 17:49:41 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lAEMnbp4031408; + Wed, 14 Nov 2007 17:49:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473B7B66.2700E.2970 ; + 14 Nov 2007 17:49:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0E79A7BDA4; + Wed, 14 Nov 2007 22:48:54 +0000 (GMT) +Message-ID: <200711142243.lAEMhb7L029213@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 868 + for ; + Wed, 14 Nov 2007 22:48:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A329F21413 + for ; Wed, 14 Nov 2007 22:48:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEMhbe9029215 + for ; Wed, 14 Nov 2007 17:43:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEMhb7L029213 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 17:43:37 -0500 +Date: Wed, 14 Nov 2007 17:43:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r38181 - in component/trunk/component-api/component/src/java/org: . sakaiproject/component/api sakaiproject/component/cover sakaiproject/component/impl sakaiproject/util springframework springframework/context +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 17:49:41 2007 +X-DSPAM-Confidence: 0.7532 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38181 + +Author: ray@media.berkeley.edu +Date: 2007-11-14 17:43:20 -0500 (Wed, 14 Nov 2007) +New Revision: 38181 + +Added: +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/trunk/component-api/component/src/java/org/springframework/ +component/trunk/component-api/component/src/java/org/springframework/context/ +component/trunk/component-api/component/src/java/org/springframework/context/support/ +Removed: +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/spring/ +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ +component/trunk/component-api/component/src/java/org/springframework/context/ +component/trunk/component-api/component/src/java/org/springframework/context/support/ +Modified: +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ContextLoaderListener.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java +Log: +NOJIRA Rollback bad merge from Antranig's working branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Wed Nov 14 17:24:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 17:24:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 17:24:02 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lAEMO0IA013282; + Wed, 14 Nov 2007 17:24:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473B757A.C43BC.13535 ; + 14 Nov 2007 17:23:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C5220744E3; + Wed, 14 Nov 2007 22:23:51 +0000 (GMT) +Message-ID: <200711142218.lAEMINnY029055@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 489 + for ; + Wed, 14 Nov 2007 22:23:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4918323689 + for ; Wed, 14 Nov 2007 22:23:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEMIOKT029057 + for ; Wed, 14 Nov 2007 17:18:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEMINnY029055 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 17:18:23 -0500 +Date: Wed, 14 Nov 2007 17:18:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38180 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 17:24:02 2007 +X-DSPAM-Confidence: 0.7611 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38180 + +Author: ostermmg@whitman.edu +Date: 2007-11-14 17:18:18 -0500 (Wed, 14 Nov 2007) +New Revision: 38180 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +Log: +SAK-10289 +IE7 - no outline around the 'add' and 'actions' buttons + +svn merge -c31665 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm + +svn log -r31665 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r31665 | gsilver@umich.edu | 2007-06-19 08:36:50 -0700 (Tue, 19 Jun 2007) | 2 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-10289 +- IE7 specific renderng via condt. comments + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Wed Nov 14 17:03:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 17:03:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 17:03:41 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by mission.mail.umich.edu () with ESMTP id lAEM3eYp011461; + Wed, 14 Nov 2007 17:03:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473B70B5.CDCA9.21036 ; + 14 Nov 2007 17:03:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 99D0A7D77C; + Wed, 14 Nov 2007 21:40:28 +0000 (GMT) +Message-ID: <200711142158.lAELwDor029012@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 461 + for ; + Wed, 14 Nov 2007 21:40:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F356D211F7 + for ; Wed, 14 Nov 2007 22:03:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELwD2J029014 + for ; Wed, 14 Nov 2007 16:58:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELwDor029012 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:58:13 -0500 +Date: Wed, 14 Nov 2007 16:58:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r38179 - syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 17:03:41 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38179 + +Author: josrodri@iupui.edu +Date: 2007-11-14 16:58:10 -0500 (Wed, 14 Nov 2007) +New Revision: 38179 + +Modified: +syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java +Log: +SAK-10894: had to back out patch due to unresolved legal issues. but added back in my changes that should resolve this. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Wed Nov 14 16:57:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 16:57:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 16:57:09 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by flawless.mail.umich.edu () with ESMTP id lAELv8SD001829; + Wed, 14 Nov 2007 16:57:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 473B6F2B.9BA2E.9855 ; + 14 Nov 2007 16:57:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2C53A7D6B0; + Wed, 14 Nov 2007 21:33:54 +0000 (GMT) +Message-ID: <200711142151.lAELpgq1029000@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13 + for ; + Wed, 14 Nov 2007 21:33:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 44F3F211F7 + for ; Wed, 14 Nov 2007 21:56:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELpgsE029002 + for ; Wed, 14 Nov 2007 16:51:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELpgq1029000 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:51:42 -0500 +Date: Wed, 14 Nov 2007 16:51:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38178 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 16:57:09 2007 +X-DSPAM-Confidence: 0.7004 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38178 + +Author: ostermmg@whitman.edu +Date: 2007-11-14 16:51:38 -0500 (Wed, 14 Nov 2007) +New Revision: 38178 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm +Log: +SAK-3008 +Inconsistent button style in WebDAV help page + +svn merge -c34373 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm + +svn log -r34373 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r34373 | gsilver@umich.edu | 2007-08-24 09:08:55 -0700 (Fri, 24 Aug 2007) | 2 lines + +http://jira.sakaiproject.org/jira/browse/SAK-3008 +- have inner iframed doc bootstrap parent iframe resize + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Wed Nov 14 16:54:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 16:54:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 16:54:41 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lAELsYRF016594; + Wed, 14 Nov 2007 16:54:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 473B6E92.22AAA.22325 ; + 14 Nov 2007 16:54:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C44D77D4F0; + Wed, 14 Nov 2007 21:31:20 +0000 (GMT) +Message-ID: <200711142149.lAELn66j028988@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 349 + for ; + Wed, 14 Nov 2007 21:31:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BE353211F7 + for ; Wed, 14 Nov 2007 21:54:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELn6VS028990 + for ; Wed, 14 Nov 2007 16:49:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELn66j028988 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:49:06 -0500 +Date: Wed, 14 Nov 2007 16:49:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38177 - reference/branches/sakai_2-4-x/library/src/webapp/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 16:54:41 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38177 + +Author: ostermmg@whitman.edu +Date: 2007-11-14 16:49:02 -0500 (Wed, 14 Nov 2007) +New Revision: 38177 + +Modified: +reference/branches/sakai_2-4-x/library/src/webapp/content/webdav_instructions.html +Log: +SAK-3008 +Inconsistent button style in WebDAV help page + +svn merge -c34372 https://source.sakaiproject.org/svn/reference/trunk/ . +U library/src/webapp/content/webdav_instructions.html + +svn log -r34372 https://source.sakaiproject.org/svn/reference/trunk/ +------------------------------------------------------------------------ +r34372 | gsilver@umich.edu | 2007-08-24 09:08:51 -0700 (Fri, 24 Aug 2007) | 2 lines + +http://jira.sakaiproject.org/jira/browse/SAK-3008 +- have inner iframed doc bootstrap parent iframe resize + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Wed Nov 14 16:50:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 16:50:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 16:50:25 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by score.mail.umich.edu () with ESMTP id lAELoOGV000308; + Wed, 14 Nov 2007 16:50:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 473B6D99.58AEE.7494 ; + 14 Nov 2007 16:50:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 191277D692; + Wed, 14 Nov 2007 21:27:10 +0000 (GMT) +Message-ID: <200711142144.lAELiooT028965@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696 + for ; + Wed, 14 Nov 2007 21:26:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4AA91211F7 + for ; Wed, 14 Nov 2007 21:49:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELioav028967 + for ; Wed, 14 Nov 2007 16:44:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELiooT028965 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:44:50 -0500 +Date: Wed, 14 Nov 2007 16:44:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38176 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 16:50:25 2007 +X-DSPAM-Confidence: 0.6924 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38176 + +Author: ostermmg@whitman.edu +Date: 2007-11-14 16:44:44 -0500 (Wed, 14 Nov 2007) +New Revision: 38176 + +Modified: +content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm +Log: +SAK-3008 +Inconsistent button style in WebDAV help page + +svn merge -c29851 https://source.sakaiproject.org/svn/content/trunk/ . +U content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Nov 14 16:47:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 16:47:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 16:47:52 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by score.mail.umich.edu () with ESMTP id lAELlpK7030458; + Wed, 14 Nov 2007 16:47:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473B6CFE.2828E.6233 ; + 14 Nov 2007 16:47:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2730E7D71B; + Wed, 14 Nov 2007 21:24:36 +0000 (GMT) +Message-ID: <200711142109.lAEL9A78028905@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 376 + for ; + Wed, 14 Nov 2007 21:24:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C88A4211F5 + for ; Wed, 14 Nov 2007 21:14:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEL9Bxe028907 + for ; Wed, 14 Nov 2007 16:09:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEL9A78028905 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:09:10 -0500 +Date: Wed, 14 Nov 2007 16:09:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38175 - site/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 16:47:52 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38175 + +Author: rjlowe@iupui.edu +Date: 2007-11-14 16:09:10 -0500 (Wed, 14 Nov 2007) +New Revision: 38175 + +Added: +site/branches/SAK-12203/ +Log: +Site branch for SAK-12203 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Wed Nov 14 15:55:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 15:55:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 15:55:28 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lAEKtRFm004282; + Wed, 14 Nov 2007 15:55:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473B60B1.BE8AE.27927 ; + 14 Nov 2007 15:55:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F351F7D68D; + Wed, 14 Nov 2007 20:55:09 +0000 (GMT) +Message-ID: <200711142049.lAEKnlDU028879@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 869 + for ; + Wed, 14 Nov 2007 20:54:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7FBCB213FD + for ; Wed, 14 Nov 2007 20:54:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEKnlPY028881 + for ; Wed, 14 Nov 2007 15:49:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEKnlDU028879 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 15:49:47 -0500 +Date: Wed, 14 Nov 2007 15:49:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38174 - authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 15:55:28 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38174 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-14 15:49:11 -0500 (Wed, 14 Nov 2007) +New Revision: 38174 + +Modified: +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroup.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroupService.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseMember.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseRole.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSql.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSqlDefault.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSqlMySql.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/FunctionManagerComponent.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/NoSecurity.java +authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java +Log: +Working version with Java 5 plus invalid cast removal. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Wed Nov 14 15:52:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 15:52:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 15:52:20 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id lAEKqJYe018068; + Wed, 14 Nov 2007 15:52:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473B5FF7.3D709.26544 ; + 14 Nov 2007 15:52:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D16E07D68A; + Wed, 14 Nov 2007 20:52:04 +0000 (GMT) +Message-ID: <200711142046.lAEKkcph028867@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256 + for ; + Wed, 14 Nov 2007 20:51:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4B848213FD + for ; Wed, 14 Nov 2007 20:51:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEKkcRq028869 + for ; Wed, 14 Nov 2007 15:46:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEKkcph028867 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 15:46:38 -0500 +Date: Wed, 14 Nov 2007 15:46:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38173 - in authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz: api cover +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 15:52:20 2007 +X-DSPAM-Confidence: 0.7544 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38173 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-14 15:45:55 -0500 (Wed, 14 Nov 2007) +New Revision: 38173 + +Modified: +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/AuthzGroup.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/AuthzGroupService.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/FunctionManager.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/GroupProvider.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/Member.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/Role.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/cover/AuthzGroupService.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/cover/FunctionManager.java +authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java +Log: +Working version with Java 5 plus invalid cast removal. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Wed Nov 14 14:59:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 14:59:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 14:59:38 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id lAEJxcCO007850; + Wed, 14 Nov 2007 14:59:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473B539B.2105E.30996 ; + 14 Nov 2007 14:59:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 108C67D0EE; + Wed, 14 Nov 2007 19:59:17 +0000 (GMT) +Message-ID: <200711141953.lAEJrwIb028779@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712 + for ; + Wed, 14 Nov 2007 19:58:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C6D9C1EFB2 + for ; Wed, 14 Nov 2007 19:59:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEJrwEM028781 + for ; Wed, 14 Nov 2007 14:53:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEJrwIb028779 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 14:53:58 -0500 +Date: Wed, 14 Nov 2007 14:53:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r38172 - syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 14:59:38 2007 +X-DSPAM-Confidence: 0.9846 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38172 + +Author: josrodri@iupui.edu +Date: 2007-11-14 14:53:56 -0500 (Wed, 14 Nov 2007) +New Revision: 38172 + +Modified: +syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java +Log: +SAK-10894: patch provided did not work, so this commit does fix it. need to explicitly check and save the redirect url from the other site. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 14 14:14:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 14:14:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 14:14:42 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id lAEJEfUX016230; + Wed, 14 Nov 2007 14:14:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 473B4919.65EC2.13688 ; + 14 Nov 2007 14:14:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8B41B7D5F6; + Wed, 14 Nov 2007 19:14:30 +0000 (GMT) +Message-ID: <200711141908.lAEJ8xgx028727@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 90 + for ; + Wed, 14 Nov 2007 19:14:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6AA5D1EDCE + for ; Wed, 14 Nov 2007 19:14:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEJ90jp028729 + for ; Wed, 14 Nov 2007 14:09:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEJ8xgx028727 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 14:08:59 -0500 +Date: Wed, 14 Nov 2007 14:08:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38170 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 14:14:42 2007 +X-DSPAM-Confidence: 0.9884 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38170 + +Author: zqian@umich.edu +Date: 2007-11-14 14:08:58 -0500 (Wed, 14 Nov 2007) +New Revision: 38170 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code: forge a multipart email message + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Nov 14 12:49:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 12:49:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 12:49:25 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by chaos.mail.umich.edu () with ESMTP id lAEHnOp9029097; + Wed, 14 Nov 2007 12:49:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 473B3519.1C7B9.20558 ; + 14 Nov 2007 12:49:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8C7AC7D35A; + Wed, 14 Nov 2007 17:48:01 +0000 (GMT) +Message-ID: <200711141743.lAEHhcNo028590@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 793 + for ; + Wed, 14 Nov 2007 17:47:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5E5D6235DE + for ; Wed, 14 Nov 2007 17:48:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEHhdTC028592 + for ; Wed, 14 Nov 2007 12:43:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEHhcNo028590 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 12:43:39 -0500 +Date: Wed, 14 Nov 2007 12:43:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38168 - authz/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 12:49:25 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38168 + +Author: rjlowe@iupui.edu +Date: 2007-11-14 12:43:38 -0500 (Wed, 14 Nov 2007) +New Revision: 38168 + +Added: +authz/branches/SAK-12200/ +Log: +New branch for SAK-12200 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Nov 14 12:40:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 12:40:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 12:40:47 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lAEHekco010790; + Wed, 14 Nov 2007 12:40:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473B3319.43ABA.1958 ; + 14 Nov 2007 12:40:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 96CF47D29A; + Wed, 14 Nov 2007 17:40:38 +0000 (GMT) +Message-ID: <200711141735.lAEHZM59028574@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 61 + for ; + Wed, 14 Nov 2007 17:40:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F3159235DE + for ; Wed, 14 Nov 2007 17:40:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEHZMwW028576 + for ; Wed, 14 Nov 2007 12:35:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEHZM59028574 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 12:35:22 -0500 +Date: Wed, 14 Nov 2007 12:35:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38167 - in rwiki/trunk/rwiki-tool/tool/src: bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle java/uk/ac/cam/caret/sakai/rwiki/tool webapp/WEB-INF webapp/WEB-INF/vm webapp/scripts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 12:40:47 2007 +X-DSPAM-Confidence: 0.7552 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38167 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-14 12:35:02 -0500 (Wed, 14 Nov 2007) +New Revision: 38167 + +Added: +rwiki/trunk/rwiki-tool/tool/src/webapp/scripts/fckrwikiconfig.js +Modified: +rwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages.properties +rwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_fr_CA.properties +rwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/VelocityInlineDispatcher.java +rwiki/trunk/rwiki-tool/tool/src/webapp/WEB-INF/vm/edit.vm +rwiki/trunk/rwiki-tool/tool/src/webapp/WEB-INF/vm/macros.vm +rwiki/trunk/rwiki-tool/tool/src/webapp/WEB-INF/web.xml +rwiki/trunk/rwiki-tool/tool/src/webapp/scripts/stateswitcher.js +Log: +http://jira.sakaiproject.org/jira/browse/SAK-8535 + +Fantastic WYSYWIG editor for rWiki, + +Tom dot Landry at crim.ca did *all* the work. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Wed Nov 14 11:51:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 11:51:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 11:51:14 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lAEGpDcF021977; + Wed, 14 Nov 2007 11:51:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 473B276F.9DC13.22510 ; + 14 Nov 2007 11:50:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 05A127A42C; + Wed, 14 Nov 2007 16:50:52 +0000 (GMT) +Message-ID: <200711141645.lAEGjRVc028514@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 878 + for ; + Wed, 14 Nov 2007 16:50:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 51B96AF71 + for ; Wed, 14 Nov 2007 16:50:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEGjRZa028516 + for ; Wed, 14 Nov 2007 11:45:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEGjRVc028514 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 11:45:27 -0500 +Date: Wed, 14 Nov 2007 11:45:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [sakai] svn commit: r38166 - in component: branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util trunk/component-api/component/src/java/org trunk/component-api/component/src/java/org/sakaiproject/component/api trunk/component-api/component/src/java/org/sakaiproject/component/api/spring trunk/component-api/component/src/java/org/sakaiproject/component/cover trunk/component-api/component/src/java/org/sakaiproject/component/impl trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support trunk/component-api/component/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 11:51:14 2007 +X-DSPAM-Confidence: 0.7554 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38166 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-14 11:44:22 -0500 (Wed, 14 Nov 2007) +New Revision: 38166 + +Added: +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/BeanLocator.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/BeanLocatorAcceptor.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ClassLoaderUtil.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ClassVisibilityRecord.java +component/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ReflectUtil.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/spring/ +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/spring/SpringComponentManager.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentManagerTargetSource.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecord.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecords.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextProcessor.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/StaggeredRefreshApplicationContext.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/BeanRecord.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentApplicationContextImpl.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/InvocationInterceptor.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java +Removed: +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/trunk/component-api/component/src/java/org/springframework/ +Modified: +component/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/trunk/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/ContextLoaderListener.java +component/trunk/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java +Log: +Working implementation of Stage 1 Updates to Component Manager +- still fairly noisy when encountering unproxyable things +Various places around the framework require adjustments to new ClassLoader environment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 14 11:31:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 11:31:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 11:31:45 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id lAEGVigN007132; + Wed, 14 Nov 2007 11:31:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 473B22E9.32568.9559 ; + 14 Nov 2007 11:31:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 943177B102; + Wed, 14 Nov 2007 16:31:39 +0000 (GMT) +Message-ID: <200711141626.lAEGQEWY028500@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 330 + for ; + Wed, 14 Nov 2007 16:31:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8AD67235E7 + for ; Wed, 14 Nov 2007 16:31:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEGQERh028502 + for ; Wed, 14 Nov 2007 11:26:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEGQEWY028500 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 11:26:14 -0500 +Date: Wed, 14 Nov 2007 11:26:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38165 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 11:31:45 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38165 + +Author: zqian@umich.edu +Date: 2007-11-14 11:26:11 -0500 (Wed, 14 Nov 2007) +New Revision: 38165 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +Log: +fix to SAK-12000:Assignment with Word text looks good when Previewed but submission comes through for both student and instructor with garbled HTML and Word Code + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Nov 14 11:05:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 11:05:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 11:05:44 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id lAEG5hZh010010; + Wed, 14 Nov 2007 11:05:43 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473B1CCF.A2338.7551 ; + 14 Nov 2007 11:05:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EB0FA7D0F0; + Wed, 14 Nov 2007 16:05:40 +0000 (GMT) +Message-ID: <200711141600.lAEG09mB028431@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 880 + for ; + Wed, 14 Nov 2007 16:05:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0AC341E60D + for ; Wed, 14 Nov 2007 16:05:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEG0A03028433 + for ; Wed, 14 Nov 2007 11:00:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEG09mB028431 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 11:00:09 -0500 +Date: Wed, 14 Nov 2007 11:00:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38164 - in postem/branches/sakai_2-5-x: postem-api/src/java/org/sakaiproject/api/app/postem/data postem-app/src/java/org/sakaiproject/tool/postem postem-app/src/webapp/postem postem-hbm/src/java/org/sakaiproject/component/app/postem/data postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 11:05:44 2007 +X-DSPAM-Confidence: 0.9920 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38164 + +Author: wagnermr@iupui.edu +Date: 2007-11-14 11:00:07 -0500 (Wed, 14 Nov 2007) +New Revision: 38164 + +Modified: +postem/branches/sakai_2-5-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java +postem/branches/sakai_2-5-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +postem/branches/sakai_2-5-x/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/branches/sakai_2-5-x/postem-app/src/webapp/postem/main.jsp +postem/branches/sakai_2-5-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +postem/branches/sakai_2-5-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +postem/branches/sakai_2-5-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +postem/branches/sakai_2-5-x/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +svn merge -r37683:37718 https://source.sakaiproject.org/svn/postem/trunk +U .classpath +U components/src/webapp/WEB-INF/components.xml +U postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +U postem-app/src/java/org/sakaiproject/tool/postem/Column.java +U postem-app/src/webapp/WEB-INF/components.xml +U postem-app/src/webapp/postem/main.jsp +U postem-app/pom.xml +U postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +U postem-hbm/pom.xml +A postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java +A postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java + +svn merge -r37720:38033 https://source.sakaiproject.org/svn/postem/trunk +G .classpath +G components/src/webapp/WEB-INF/components.xml +G postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +G postem-app/src/java/org/sakaiproject/tool/postem/Column.java +G postem-app/src/webapp/WEB-INF/components.xml +G postem-app/pom.xml +G postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Skipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java' +Skipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml' +Skipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java' +Skipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml' +G postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +G postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +G postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +G postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +G postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +G postem-hbm/pom.xml +Skipped 'postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java' +Skipped 'postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java' +G postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +G postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +G postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java +------------------------------------------------------------------------ +r37684 | wagnermr@iupui.edu | 2007-11-01 14:24:54 -0400 (Thu, 01 Nov 2007) | 3 lines + +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Wed Nov 14 10:49:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 10:49:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 10:49:47 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lAEFnkY4023812; + Wed, 14 Nov 2007 10:49:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473B1913.8970A.16540 ; + 14 Nov 2007 10:49:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 56C8D7B1EC; + Wed, 14 Nov 2007 15:47:39 +0000 (GMT) +Message-ID: <200711141544.lAEFiKqm028383@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 634 + for ; + Wed, 14 Nov 2007 15:47:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 59FC81E99A + for ; Wed, 14 Nov 2007 15:49:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFiKn1028385 + for ; Wed, 14 Nov 2007 10:44:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFiKqm028383 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:44:20 -0500 +Date: Wed, 14 Nov 2007 10:44:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r38163 - reference/trunk/library/src/webapp/content/gateway +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 10:49:47 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38163 + +Author: gsilver@umich.edu +Date: 2007-11-14 10:44:18 -0500 (Wed, 14 Nov 2007) +New Revision: 38163 + +Modified: +reference/trunk/library/src/webapp/content/gateway/acknowledgments.html +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12182 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Wed Nov 14 10:46:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 10:46:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 10:46:06 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by panther.mail.umich.edu () with ESMTP id lAEFk4OI019376; + Wed, 14 Nov 2007 10:46:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 473B1836.5EB9.20296 ; + 14 Nov 2007 10:46:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F1147711BA; + Wed, 14 Nov 2007 15:43:40 +0000 (GMT) +Message-ID: <200711141540.lAEFeORK028361@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 887 + for ; + Wed, 14 Nov 2007 15:43:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EE7731E99A + for ; Wed, 14 Nov 2007 15:45:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFeOYC028363 + for ; Wed, 14 Nov 2007 10:40:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFeORK028361 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:40:24 -0500 +Date: Wed, 14 Nov 2007 10:40:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38162 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/webapp/jsf/author samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 10:46:06 2007 +X-DSPAM-Confidence: 0.9781 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38162 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-14 10:39:34 -0500 (Wed, 14 Nov 2007) +New Revision: 38162 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/publishedSettings.jsp +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +Log: +SAK-12065 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Wed Nov 14 10:43:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 10:43:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 10:43:32 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by sleepers.mail.umich.edu () with ESMTP id lAEFhVXJ017429; + Wed, 14 Nov 2007 10:43:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473B179D.AC512.10577 ; + 14 Nov 2007 10:43:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25CBA7D0CC; + Wed, 14 Nov 2007 15:41:24 +0000 (GMT) +Message-ID: <200711141537.lAEFb95H028347@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 19 + for ; + Wed, 14 Nov 2007 15:40:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CF681E99A + for ; Wed, 14 Nov 2007 15:42:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFb9HH028349 + for ; Wed, 14 Nov 2007 10:37:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFb95H028347 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:37:09 -0500 +Date: Wed, 14 Nov 2007 10:37:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38161 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 10:43:32 2007 +X-DSPAM-Confidence: 0.9783 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38161 + +Author: ajpoland@iupui.edu +Date: 2007-11-14 10:37:08 -0500 (Wed, 14 Nov 2007) +New Revision: 38161 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Nov 14 10:41:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 10:41:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 10:41:20 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id lAEFfJPK022110; + Wed, 14 Nov 2007 10:41:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 473B1718.A989B.28688 ; + 14 Nov 2007 10:41:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F2497D0CA; + Wed, 14 Nov 2007 15:39:10 +0000 (GMT) +Message-ID: <200711141535.lAEFZj3B028335@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 122 + for ; + Wed, 14 Nov 2007 15:38:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 684561E99A + for ; Wed, 14 Nov 2007 15:40:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFZjYL028337 + for ; Wed, 14 Nov 2007 10:35:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFZj3B028335 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:35:45 -0500 +Date: Wed, 14 Nov 2007 10:35:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38160 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: bundle webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 10:41:20 2007 +X-DSPAM-Confidence: 0.7544 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38160 + +Author: wagnermr@iupui.edu +Date: 2007-11-14 10:35:44 -0500 (Wed, 14 Nov 2007) +New Revision: 38160 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +backing out merge of sak-9794 and sak-11027 in oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Nov 14 10:41:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 10:41:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 10:41:18 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lAEFfHuf015612; + Wed, 14 Nov 2007 10:41:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473B1717.715D7.28423 ; + 14 Nov 2007 10:41:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1BB9D7D0AD; + Wed, 14 Nov 2007 15:39:10 +0000 (GMT) +Message-ID: <200711141535.lAEFZgiY028323@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 147 + for ; + Wed, 14 Nov 2007 15:38:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B72C61E99A + for ; Wed, 14 Nov 2007 15:40:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFZggZ028325 + for ; Wed, 14 Nov 2007 10:35:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFZgiY028323 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:35:42 -0500 +Date: Wed, 14 Nov 2007 10:35:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38159 - in assignment/branches/oncourse_2-4-x/assignment-impl/impl/src: bundle java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 10:41:18 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38159 + +Author: wagnermr@iupui.edu +Date: 2007-11-14 10:35:41 -0500 (Wed, 14 Nov 2007) +New Revision: 38159 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +backing out merge of sak-9794 and sak-11027 in oncourse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 14 09:52:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 09:52:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 09:52:37 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lAEEqWvN011213; + Wed, 14 Nov 2007 09:52:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473B0BAA.D18FC.31192 ; + 14 Nov 2007 09:52:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 995617D09A; + Wed, 14 Nov 2007 14:52:30 +0000 (GMT) +Message-ID: <200711141447.lAEElAA2028156@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516 + for ; + Wed, 14 Nov 2007 14:52:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AA26A21304 + for ; Wed, 14 Nov 2007 14:52:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEElADU028158 + for ; Wed, 14 Nov 2007 09:47:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEElAA2028156 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 09:47:10 -0500 +Date: Wed, 14 Nov 2007 09:47:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38158 - component/branches/SAK-12166 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 09:52:37 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38158 + +Author: aaronz@vt.edu +Date: 2007-11-14 09:47:06 -0500 (Wed, 14 Nov 2007) +New Revision: 38158 + +Removed: +component/branches/SAK-12166/test/ +Log: +removing folder made to test perms + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 14 09:52:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 09:52:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 09:52:14 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id lAEEqD6g020080; + Wed, 14 Nov 2007 09:52:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473B0B8B.31F38.1456 ; + 14 Nov 2007 09:51:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0ECC47D056; + Wed, 14 Nov 2007 14:51:58 +0000 (GMT) +Message-ID: <200711141446.lAEEkYhR028144@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 950 + for ; + Wed, 14 Nov 2007 14:51:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB66B21304 + for ; Wed, 14 Nov 2007 14:51:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEEkY6v028146 + for ; Wed, 14 Nov 2007 09:46:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEEkYhR028144 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 09:46:34 -0500 +Date: Wed, 14 Nov 2007 09:46:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38157 - component/branches/SAK-12166 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 09:52:14 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38157 + +Author: aaronz@vt.edu +Date: 2007-11-14 09:46:30 -0500 (Wed, 14 Nov 2007) +New Revision: 38157 + +Added: +component/branches/SAK-12166/test/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Wed Nov 14 08:32:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 08:32:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 08:32:26 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lAEDWPVY014167; + Wed, 14 Nov 2007 08:32:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 473AF8E3.7E299.19208 ; + 14 Nov 2007 08:32:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 853347CEE4; + Wed, 14 Nov 2007 13:32:20 +0000 (GMT) +Message-ID: <200711141326.lAEDQqgw027896@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 310 + for ; + Wed, 14 Nov 2007 13:31:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ADB032370D + for ; Wed, 14 Nov 2007 13:31:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEDQrb4027898 + for ; Wed, 14 Nov 2007 08:26:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEDQqgw027896 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 08:26:52 -0500 +Date: Wed, 14 Nov 2007 08:26:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38156 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 08:32:26 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38156 + +Author: ajpoland@iupui.edu +Date: 2007-11-14 08:26:52 -0500 (Wed, 14 Nov 2007) +New Revision: 38156 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Nov 14 08:30:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 08:30:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 08:30:41 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by casino.mail.umich.edu () with ESMTP id lAEDUesc023111; + Wed, 14 Nov 2007 08:30:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 473AF87B.449E4.24366 ; + 14 Nov 2007 08:30:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E97CF7CF59; + Wed, 14 Nov 2007 13:30:25 +0000 (GMT) +Message-ID: <200711141324.lAEDOvL6027872@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556 + for ; + Wed, 14 Nov 2007 13:29:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1D6222367B + for ; Wed, 14 Nov 2007 13:29:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEDOvtW027874 + for ; Wed, 14 Nov 2007 08:24:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEDOvL6027872 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 08:24:57 -0500 +Date: Wed, 14 Nov 2007 08:24:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38154 - in assignment/branches/oncourse_2-4-x/assignment-impl/impl/src: bundle java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 08:30:41 2007 +X-DSPAM-Confidence: 0.9934 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38154 + +Author: wagnermr@iupui.edu +Date: 2007-11-14 08:24:55 -0500 (Wed, 14 Nov 2007) +New Revision: 38154 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r31550:31551 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +C assignment-impl/impl/src/bundle/assignment.properties +------------------------------------------------------------------------ +r31551 | zqian@umich.edu | 2007-06-12 12:49:35 -0400 (Tue, 12 Jun 2007) | 1 line + +fix to SAK-9794:Student view of assignment list doesn't have a status that reflects assignments where the instructor has given a grade w/o an electronic student submission +------------------------------------------------------------------------ + +svn merge -r33859:33860 https://source.sakaiproject.org/svn/assignment/trunk +Skipped missing target: 'assignment-bundles/assignment.properties' +Skipped missing target: 'assignment-bundles' +G assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +G assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +G assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +------------------------------------------------------------------------ +r33860 | zqian@umich.edu | 2007-08-11 10:34:05 -0400 (Sat, 11 Aug 2007) | 1 line + +fix to SAK-11027:assignments / grading -draft +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Nov 14 08:30:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 08:30:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 08:30:40 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id lAEDUe1c029590; + Wed, 14 Nov 2007 08:30:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473AF878.E9B52.3417 ; + 14 Nov 2007 08:30:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1FE427CF56; + Wed, 14 Nov 2007 13:30:25 +0000 (GMT) +Message-ID: <200711141324.lAEDOxg5027884@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 262 + for ; + Wed, 14 Nov 2007 13:29:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2A3E82367C + for ; Wed, 14 Nov 2007 13:30:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEDOxba027886 + for ; Wed, 14 Nov 2007 08:24:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEDOxg5027884 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 08:24:59 -0500 +Date: Wed, 14 Nov 2007 08:24:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38155 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: bundle webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 08:30:40 2007 +X-DSPAM-Confidence: 0.9935 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38155 + +Author: wagnermr@iupui.edu +Date: 2007-11-14 08:24:58 -0500 (Wed, 14 Nov 2007) +New Revision: 38155 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +svn merge -r31550:31551 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +C assignment-impl/impl/src/bundle/assignment.properties +------------------------------------------------------------------------ +r31551 | zqian@umich.edu | 2007-06-12 12:49:35 -0400 (Tue, 12 Jun 2007) | 1 line + +fix to SAK-9794:Student view of assignment list doesn't have a status that reflects assignments where the instructor has given a grade w/o an electronic student submission +------------------------------------------------------------------------ + +svn merge -r33859:33860 https://source.sakaiproject.org/svn/assignment/trunk +Skipped missing target: 'assignment-bundles/assignment.properties' +Skipped missing target: 'assignment-bundles' +G assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +G assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +G assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +------------------------------------------------------------------------ +r33860 | zqian@umich.edu | 2007-08-11 10:34:05 -0400 (Sat, 11 Aug 2007) | 1 line + +fix to SAK-11027:assignments / grading -draft +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Nov 14 01:58:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 14 Nov 2007 01:58:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 14 Nov 2007 01:58:47 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lAE6wkGI003652; + Wed, 14 Nov 2007 01:58:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 473A9CA0.C83B7.25708 ; + 14 Nov 2007 01:58:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 48AFE76F6B; + Wed, 14 Nov 2007 06:47:37 +0000 (GMT) +Message-ID: <200711140653.lAE6rIbt026994@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 509 + for ; + Wed, 14 Nov 2007 06:47:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B44972363C + for ; Wed, 14 Nov 2007 06:58:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAE6rISl026996 + for ; Wed, 14 Nov 2007 01:53:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAE6rIbt026994 + for source@collab.sakaiproject.org; Wed, 14 Nov 2007 01:53:18 -0500 +Date: Wed, 14 Nov 2007 01:53:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38153 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 14 01:58:47 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38153 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-14 01:53:07 -0500 (Wed, 14 Nov 2007) +New Revision: 38153 + +Modified: +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java +Log: +SAK-11704 trim value before testing for being empty + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Tue Nov 13 18:21:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 18:21:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 18:21:49 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by awakenings.mail.umich.edu () with ESMTP id lADNLlGl012127; + Tue, 13 Nov 2007 18:21:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 473A3186.E3184.16368 ; + 13 Nov 2007 18:21:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5D3217C3FD; + Tue, 13 Nov 2007 23:21:54 +0000 (GMT) +Message-ID: <200711132316.lADNGP4W026486@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 814 + for ; + Tue, 13 Nov 2007 23:21:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D96B42347C + for ; Tue, 13 Nov 2007 23:21:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADNGPPw026488 + for ; Tue, 13 Nov 2007 18:16:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADNGP4W026486 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 18:16:25 -0500 +Date: Tue, 13 Nov 2007 18:16:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r38152 - component/branches/SAK-8315/component-impl/integration-test/src/test/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 18:21:49 2007 +X-DSPAM-Confidence: 0.7545 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38152 + +Author: ray@media.berkeley.edu +Date: 2007-11-13 18:16:22 -0500 (Tue, 13 Nov 2007) +New Revision: 38152 + +Modified: +component/branches/SAK-8315/component-impl/integration-test/src/test/resources/sakai-configuration.xml +Log: +Add a little explanation to the sample local sakai-configuration.xml file + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Tue Nov 13 16:55:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:55:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:55:06 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lADLt5c4007746; + Tue, 13 Nov 2007 16:55:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 473A1D32.79AD0.32105 ; + 13 Nov 2007 16:55:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 75F6B7C434; + Tue, 13 Nov 2007 21:54:55 +0000 (GMT) +Message-ID: <200711132149.lADLnnWY026175@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 741 + for ; + Tue, 13 Nov 2007 21:54:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 32D98210D7 + for ; Tue, 13 Nov 2007 21:54:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLnoaL026177 + for ; Tue, 13 Nov 2007 16:49:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLnnWY026175 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:49:50 -0500 +Date: Tue, 13 Nov 2007 16:49:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38151 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:55:06 2007 +X-DSPAM-Confidence: 0.8500 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38151 + +Author: ostermmg@whitman.edu +Date: 2007-11-13 16:49:43 -0500 (Tue, 13 Nov 2007) +New Revision: 38151 + +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12006 +Partial downloads not supported leading to multiple requests from download managers + +svn merge -c38143 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + +svn log -r38143 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r38143 | jimeng@umich.edu | 2007-11-13 12:26:04 -0800 (Tue, 13 Nov 2007) | 3 lines + +SAK-12006 +Added header "Accept-Ranges:none" for access servlet response to a request for a resource. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Tue Nov 13 16:51:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:51:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:51:57 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by sleepers.mail.umich.edu () with ESMTP id lADLpuNd008102; + Tue, 13 Nov 2007 16:51:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 473A1C76.2776A.18211 ; + 13 Nov 2007 16:51:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 900207A5B8; + Tue, 13 Nov 2007 21:52:26 +0000 (GMT) +Message-ID: <200711132146.lADLkZQ7026162@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 378 + for ; + Tue, 13 Nov 2007 21:52:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 982A223330 + for ; Tue, 13 Nov 2007 21:51:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLkZSf026164 + for ; Tue, 13 Nov 2007 16:46:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLkZQ7026162 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:46:35 -0500 +Date: Tue, 13 Nov 2007 16:46:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38150 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:51:57 2007 +X-DSPAM-Confidence: 0.8500 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38150 + +Author: ostermmg@whitman.edu +Date: 2007-11-13 16:46:29 -0500 (Tue, 13 Nov 2007) +New Revision: 38150 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12006 +Partial downloads not supported leading to multiple requests from download managers + +svn merge -c38143 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + +svn log -r38143 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r38143 | jimeng@umich.edu | 2007-11-13 12:26:04 -0800 (Tue, 13 Nov 2007) | 3 lines + +SAK-12006 +Added header "Accept-Ranges:none" for access servlet response to a request for a resource. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Tue Nov 13 16:44:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:44:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:44:42 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id lADLifkO003033; + Tue, 13 Nov 2007 16:44:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 473A1AC2.35064.25823 ; + 13 Nov 2007 16:44:37 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 06DAD7A5B8; + Tue, 13 Nov 2007 21:45:11 +0000 (GMT) +Message-ID: <200711132139.lADLdKH1026141@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 659 + for ; + Tue, 13 Nov 2007 21:44:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2374223330 + for ; Tue, 13 Nov 2007 21:44:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLdKZ0026143 + for ; Tue, 13 Nov 2007 16:39:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLdKH1026141 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:39:20 -0500 +Date: Tue, 13 Nov 2007 16:39:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38149 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:44:42 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38149 + +Author: ostermmg@whitman.edu +Date: 2007-11-13 16:39:16 -0500 (Tue, 13 Nov 2007) +New Revision: 38149 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12168 +Permissions check can fail for super user on content removal + +svn merge -c38108 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + +svn log -r38108 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r38108 | jimeng@umich.edu | 2007-11-10 17:35:03 -0800 (Sat, 10 Nov 2007) | 3 lines + +SAK-12168 +Added log message in catch block. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Tue Nov 13 16:41:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:41:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:41:00 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by flawless.mail.umich.edu () with ESMTP id lADLexa8029514; + Tue, 13 Nov 2007 16:40:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473A19E3.4C803.18872 ; + 13 Nov 2007 16:40:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C54C47AD7E; + Tue, 13 Nov 2007 21:41:32 +0000 (GMT) +Message-ID: <200711132135.lADLZk7R026127@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 522 + for ; + Tue, 13 Nov 2007 21:41:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EB5C923330 + for ; Tue, 13 Nov 2007 21:40:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLZklN026129 + for ; Tue, 13 Nov 2007 16:35:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLZk7R026127 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:35:46 -0500 +Date: Tue, 13 Nov 2007 16:35:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38148 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:41:00 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38148 + +Author: ostermmg@whitman.edu +Date: 2007-11-13 16:35:41 -0500 (Tue, 13 Nov 2007) +New Revision: 38148 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +svn merge -c38103 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + +svn log -r38103 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r38103 | jimeng@umich.edu | 2007-11-10 11:50:58 -0800 (Sat, 10 Nov 2007) | 3 lines + +SAK-12168 +Avoid checking for availability when use is admin (super-user) + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Tue Nov 13 16:36:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:36:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:36:44 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by jacknife.mail.umich.edu () with ESMTP id lADLaghO002677; + Tue, 13 Nov 2007 16:36:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473A18E0.18FFF.1233 ; + 13 Nov 2007 16:36:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 37EA17C4A6; + Tue, 13 Nov 2007 21:37:13 +0000 (GMT) +Message-ID: <200711132131.lADLVQnc026093@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 402 + for ; + Tue, 13 Nov 2007 21:37:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 23B36231AD + for ; Tue, 13 Nov 2007 21:36:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLVQ6s026095 + for ; Tue, 13 Nov 2007 16:31:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLVQnc026093 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:31:26 -0500 +Date: Tue, 13 Nov 2007 16:31:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38147 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:36:44 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38147 + +Author: ostermmg@whitman.edu +Date: 2007-11-13 16:31:21 -0500 (Tue, 13 Nov 2007) +New Revision: 38147 + +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12168 +Permissions check can fail for super user on content removal + +svn merge -c38108 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + +svn log -r38108 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r38108 | jimeng@umich.edu | 2007-11-10 17:35:03 -0800 (Sat, 10 Nov 2007) | 3 lines + +SAK-12168 +Added log message in catch block. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Nov 13 16:36:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:36:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:36:18 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id lADLaHCs029133; + Tue, 13 Nov 2007 16:36:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 473A18C5.7FB3B.27357 ; + 13 Nov 2007 16:36:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C72227C4EE; + Tue, 13 Nov 2007 21:36:42 +0000 (GMT) +Message-ID: <200711132130.lADLUpK1026081@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314 + for ; + Tue, 13 Nov 2007 21:36:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDD6C231AD + for ; Tue, 13 Nov 2007 21:35:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLUpO2026083 + for ; Tue, 13 Nov 2007 16:30:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLUpK1026081 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:30:51 -0500 +Date: Tue, 13 Nov 2007 16:30:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38146 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:36:18 2007 +X-DSPAM-Confidence: 0.8405 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38146 + +Author: ajpoland@iupui.edu +Date: 2007-11-13 16:30:50 -0500 (Tue, 13 Nov 2007) +New Revision: 38146 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Tue Nov 13 16:30:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:30:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:30:33 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by chaos.mail.umich.edu () with ESMTP id lADLUWQ4030939; + Tue, 13 Nov 2007 16:30:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473A1771.A6EE2.20476 ; + 13 Nov 2007 16:30:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1EC3E7C4A6; + Tue, 13 Nov 2007 21:31:05 +0000 (GMT) +Message-ID: <200711132125.lADLPK1U026047@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 186 + for ; + Tue, 13 Nov 2007 21:30:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB9F3231AD + for ; Tue, 13 Nov 2007 21:30:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLPKRd026049 + for ; Tue, 13 Nov 2007 16:25:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLPK1U026047 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:25:20 -0500 +Date: Tue, 13 Nov 2007 16:25:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38145 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:30:33 2007 +X-DSPAM-Confidence: 0.7002 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38145 + +Author: ostermmg@whitman.edu +Date: 2007-11-13 16:25:16 -0500 (Tue, 13 Nov 2007) +New Revision: 38145 + +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12168 +Permissions check can fail for super user on content removal + +svn merge -c38103 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + +svn log -r38103 https://source.sakaiproject.org/svn/content/trunk/ +------------------------------------------------------------------------ +r38103 | jimeng@umich.edu | 2007-11-10 11:50:58 -0800 (Sat, 10 Nov 2007) | 3 lines + +SAK-12168 +Avoid checking for availability when use is admin (super-user) + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Tue Nov 13 16:28:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 16:28:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 16:28:28 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id lADLSQ7j028694; + Tue, 13 Nov 2007 16:28:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 473A16F4.ED20F.24740 ; + 13 Nov 2007 16:28:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A6BA37AD7E; + Tue, 13 Nov 2007 21:28:57 +0000 (GMT) +Message-ID: <200711132123.lADLN831026032@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 341 + for ; + Tue, 13 Nov 2007 21:28:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 88B09231AD + for ; Tue, 13 Nov 2007 21:27:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLN9LP026034 + for ; Tue, 13 Nov 2007 16:23:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLN831026032 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:23:08 -0500 +Date: Tue, 13 Nov 2007 16:23:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38144 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 16:28:28 2007 +X-DSPAM-Confidence: 0.8442 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38144 + +Author: cwen@iupui.edu +Date: 2007-11-13 16:23:06 -0500 (Tue, 13 Nov 2007) +New Revision: 38144 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r31558:31559 https://source.sakaiproject.org/svn/assignment/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Tue Nov 13 15:31:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 15:31:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 15:31:24 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id lADKVNQ4020646; + Tue, 13 Nov 2007 15:31:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473A0995.265F5.30697 ; + 13 Nov 2007 15:31:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3C246521A4; + Tue, 13 Nov 2007 20:31:15 +0000 (GMT) +Message-ID: <200711132026.lADKQ8dB025894@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 947 + for ; + Tue, 13 Nov 2007 20:30:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9AC0EAF7F + for ; Tue, 13 Nov 2007 20:30:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADKQ8sq025896 + for ; Tue, 13 Nov 2007 15:26:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADKQ8dB025894 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 15:26:08 -0500 +Date: Tue, 13 Nov 2007 15:26:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38143 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 15:31:24 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38143 + +Author: jimeng@umich.edu +Date: 2007-11-13 15:26:04 -0500 (Tue, 13 Nov 2007) +New Revision: 38143 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12006 +Added header "Accept-Ranges:none" for access servlet response to a request for a resource. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Nov 13 14:02:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 14:02:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 14:02:00 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lADJ1xi9010321; + Tue, 13 Nov 2007 14:01:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4739F4A1.2729E.10761 ; + 13 Nov 2007 14:01:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 83B2479CF1; + Tue, 13 Nov 2007 19:01:40 +0000 (GMT) +Message-ID: <200711131856.lADIuj0D025423@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 280 + for ; + Tue, 13 Nov 2007 19:01:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0BB5723032 + for ; Tue, 13 Nov 2007 19:01:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADIujtU025425 + for ; Tue, 13 Nov 2007 13:56:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADIuj0D025423 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 13:56:45 -0500 +Date: Tue, 13 Nov 2007 13:56:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r38137 - in podcasts/trunk: podcasts-app/src/java/org/sakaiproject/tool/podcasts podcasts-app/src/webapp/podcasts podcasts-impl/impl/src/java/org/sakaiproject/component/app/podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 14:02:00 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38137 + +Author: josrodri@iupui.edu +Date: 2007-11-13 13:56:44 -0500 (Tue, 13 Nov 2007) +New Revision: 38137 + +Modified: +podcasts/trunk/podcasts-app/src/java/org/sakaiproject/tool/podcasts/podHomeBean.java +podcasts/trunk/podcasts-app/src/webapp/podcasts/podMain.jsp +podcasts/trunk/podcasts-impl/impl/src/java/org/sakaiproject/component/app/podcasts/PodcastServiceImpl.java +Log: +SAK-11216: refactored how filename is dealt with during revision as well as add and displaying + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 13 12:55:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 12:55:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 12:55:33 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lADHtWj9028099; + Tue, 13 Nov 2007 12:55:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4739E50D.BE63F.5563 ; + 13 Nov 2007 12:55:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 43FA07A755; + Tue, 13 Nov 2007 17:55:19 +0000 (GMT) +Message-ID: <200711131750.lADHoRLv025352@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 135 + for ; + Tue, 13 Nov 2007 17:55:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 707991F32E + for ; Tue, 13 Nov 2007 17:55:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADHoROZ025354 + for ; Tue, 13 Nov 2007 12:50:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADHoRLv025352 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 12:50:27 -0500 +Date: Tue, 13 Nov 2007 12:50:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38135 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 12:55:33 2007 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38135 + +Author: zqian@umich.edu +Date: 2007-11-13 12:50:22 -0500 (Tue, 13 Nov 2007) +New Revision: 38135 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge the fix to SAK-12167 into post-2-4 branch:svn merge -r 38132:38133 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 13 12:53:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 12:53:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 12:53:51 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id lADHrn0e017204; + Tue, 13 Nov 2007 12:53:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4739E498.D46D.3210 ; + 13 Nov 2007 12:53:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 994B67A754; + Tue, 13 Nov 2007 17:53:26 +0000 (GMT) +Message-ID: <200711131748.lADHmW4U025340@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 978 + for ; + Tue, 13 Nov 2007 17:53:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C288B1F32E + for ; Tue, 13 Nov 2007 17:53:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADHmWIY025342 + for ; Tue, 13 Nov 2007 12:48:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADHmW4U025340 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 12:48:32 -0500 +Date: Tue, 13 Nov 2007 12:48:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38134 - assignment/branches/sakai_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 12:53:51 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38134 + +Author: zqian@umich.edu +Date: 2007-11-13 12:48:29 -0500 (Tue, 13 Nov 2007) +New Revision: 38134 + +Modified: +assignment/branches/sakai_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +merge the fix to SAK-12167 into 2-4-x branch:svn merge -r 38132:38133 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 13 12:48:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 12:48:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 12:48:19 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id lADHmHcX030691; + Tue, 13 Nov 2007 12:48:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4739E35A.D7F7F.17430 ; + 13 Nov 2007 12:48:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E51D17A974; + Tue, 13 Nov 2007 17:48:08 +0000 (GMT) +Message-ID: <200711131743.lADHhEVE025312@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 721 + for ; + Tue, 13 Nov 2007 17:47:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9C9E61F32E + for ; Tue, 13 Nov 2007 17:47:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADHhEe3025314 + for ; Tue, 13 Nov 2007 12:43:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADHhEVE025312 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 12:43:14 -0500 +Date: Tue, 13 Nov 2007 12:43:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38133 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 12:48:19 2007 +X-DSPAM-Confidence: 0.9841 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38133 + +Author: zqian@umich.edu +Date: 2007-11-13 12:43:11 -0500 (Tue, 13 Nov 2007) +New Revision: 38133 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +Assignment Grades.csv file downloads with grades in the wrong column + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Nov 13 11:56:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 11:56:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 11:56:48 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by mission.mail.umich.edu () with ESMTP id lADGulHU020650; + Tue, 13 Nov 2007 11:56:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4739D741.5FFDF.17002 ; + 13 Nov 2007 11:56:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D29277C185; + Tue, 13 Nov 2007 16:56:31 +0000 (GMT) +Message-ID: <200711131651.lADGpd2O025129@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 87 + for ; + Tue, 13 Nov 2007 16:56:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0C16720F8E + for ; Tue, 13 Nov 2007 16:56:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADGpdjT025131 + for ; Tue, 13 Nov 2007 11:51:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADGpd2O025129 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 11:51:39 -0500 +Date: Tue, 13 Nov 2007 11:51:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38132 - in cafe/trunk: . announcement +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 11:56:48 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38132 + +Author: aaronz@vt.edu +Date: 2007-11-13 11:51:34 -0500 (Tue, 13 Nov 2007) +New Revision: 38132 + +Added: +cafe/trunk/announcement/ +cafe/trunk/announcement/pom.xml +Log: +NOJIRA: Removed the announcement tool from cafe since it now has dependencies on code outside cafe + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Nov 13 11:56:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 11:56:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 11:56:23 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by godsend.mail.umich.edu () with ESMTP id lADGuMiM025702; + Tue, 13 Nov 2007 11:56:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4739D72F.2AA0E.27446 ; + 13 Nov 2007 11:56:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0EF1676269; + Tue, 13 Nov 2007 16:56:12 +0000 (GMT) +Message-ID: <200711131651.lADGpIxx025117@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 285 + for ; + Tue, 13 Nov 2007 16:55:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E764320F8E + for ; Tue, 13 Nov 2007 16:55:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADGpICC025119 + for ; Tue, 13 Nov 2007 11:51:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADGpIxx025117 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 11:51:18 -0500 +Date: Tue, 13 Nov 2007 11:51:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38131 - cafe/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 11:56:23 2007 +X-DSPAM-Confidence: 0.9820 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38131 + +Author: aaronz@vt.edu +Date: 2007-11-13 11:51:14 -0500 (Tue, 13 Nov 2007) +New Revision: 38131 + +Modified: +cafe/trunk/ +cafe/trunk/.externals +Log: +NOJIRA: Removed the announcement tool from cafe since it now has dependencies on code outside cafe + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Tue Nov 13 10:28:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 10:28:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 10:28:33 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id lADFSXhK003891; + Tue, 13 Nov 2007 10:28:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4739C29A.AEA73.24620 ; + 13 Nov 2007 10:28:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 89CD67BE6B; + Tue, 13 Nov 2007 15:27:26 +0000 (GMT) +Message-ID: <200711131523.lADFN7nn025014@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 185 + for ; + Tue, 13 Nov 2007 15:27:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB41422D78 + for ; Tue, 13 Nov 2007 15:27:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADFN7Gb025016 + for ; Tue, 13 Nov 2007 10:23:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADFN7nn025014 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 10:23:07 -0500 +Date: Tue, 13 Nov 2007 10:23:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38130 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 10:28:33 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38130 + +Author: wagnermr@iupui.edu +Date: 2007-11-13 10:23:06 -0500 (Tue, 13 Nov 2007) +New Revision: 38130 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getViewableSectionUuidToNameMap + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From hu2@iupui.edu Tue Nov 13 10:20:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 13 Nov 2007 10:20:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 13 Nov 2007 10:20:11 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by flawless.mail.umich.edu () with ESMTP id lADFKAAa030255; + Tue, 13 Nov 2007 10:20:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4739C09C.6785E.29903 ; + 13 Nov 2007 10:19:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3906A7BF52; + Tue, 13 Nov 2007 15:20:02 +0000 (GMT) +Message-ID: <200711131512.lADFCgGV025002@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 621 + for ; + Tue, 13 Nov 2007 15:17:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7C8220F4D + for ; Tue, 13 Nov 2007 15:17:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADFCgdr025004 + for ; Tue, 13 Nov 2007 10:12:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADFCgGV025002 + for source@collab.sakaiproject.org; Tue, 13 Nov 2007 10:12:42 -0500 +Date: Tue, 13 Nov 2007 10:12:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f +To: source@collab.sakaiproject.org +From: hu2@iupui.edu +Subject: [sakai] svn commit: r38129 - msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 13 10:20:11 2007 +X-DSPAM-Confidence: 0.9793 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38129 + +Author: hu2@iupui.edu +Date: 2007-11-13 10:12:41 -0500 (Tue, 13 Nov 2007) +New Revision: 38129 + +Modified: +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +Log: +SAK-12073 +http://jira.sakaiproject.org/jira/browse/SAK-12073 +Ability to "Reply All" in the Messages tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Mon Nov 12 16:44:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 16:44:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 16:44:36 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by casino.mail.umich.edu () with ESMTP id lACLiYJx007904; + Mon, 12 Nov 2007 16:44:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4738C93C.C7162.17369 ; + 12 Nov 2007 16:44:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 559727976F; + Mon, 12 Nov 2007 21:44:25 +0000 (GMT) +Message-ID: <200711122139.lACLdUjk023869@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 818 + for ; + Mon, 12 Nov 2007 21:44:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B1668224CE + for ; Mon, 12 Nov 2007 21:44:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACLdUsV023871 + for ; Mon, 12 Nov 2007 16:39:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACLdUjk023869 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 16:39:30 -0500 +Date: Mon, 12 Nov 2007 16:39:30 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r38128 - in podcasts/trunk: podcasts-app/src/java/org/sakaiproject/tool/podcasts podcasts-app/src/webapp/podcasts podcasts-impl/impl/src/java/org/sakaiproject/component/app/podcasts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 16:44:36 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38128 + +Author: josrodri@iupui.edu +Date: 2007-11-12 16:39:28 -0500 (Mon, 12 Nov 2007) +New Revision: 38128 + +Modified: +podcasts/trunk/podcasts-app/src/java/org/sakaiproject/tool/podcasts/podHomeBean.java +podcasts/trunk/podcasts-app/src/webapp/podcasts/podAdd.jsp +podcasts/trunk/podcasts-impl/impl/src/java/org/sakaiproject/component/app/podcasts/PodcastServiceImpl.java +Log: +SAK-12070: during adding podcast, if file selected but another error occurs, need to display filename so user knows its still selected (not able to reproduce already in use error). + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Mon Nov 12 15:51:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 15:51:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 15:51:29 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id lACKpRGS010542; + Mon, 12 Nov 2007 15:51:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4738BCC9.7E647.23744 ; + 12 Nov 2007 15:51:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D70D379D32; + Mon, 12 Nov 2007 20:51:17 +0000 (GMT) +Message-ID: <200711122046.lACKkQSn023766@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 458 + for ; + Mon, 12 Nov 2007 20:50:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 314AD1E39B + for ; Mon, 12 Nov 2007 20:51:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACKkQwe023768 + for ; Mon, 12 Nov 2007 15:46:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACKkQSn023766 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 15:46:26 -0500 +Date: Mon, 12 Nov 2007 15:46:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38127 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook sakai-pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 15:51:29 2007 +X-DSPAM-Confidence: 0.9788 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38127 + +Author: wagnermr@iupui.edu +Date: 2007-11-12 15:46:25 -0500 (Mon, 12 Nov 2007) +New Revision: 38127 + +Modified: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +gradebook/trunk/service/sakai-pack/src/webapp/WEB-INF/components.xml +Log: +SAK-12175 +http://bugs.sakaiproject.org/jira/browse/SAK-12175 +Create methods required for gb integration with the Assignment2 tool +getViewableAssignmentsForCurrentUser +isGradableObjectDefined + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Nov 12 13:59:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 13:59:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 13:59:21 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by panther.mail.umich.edu () with ESMTP id lACIxKCO019590; + Mon, 12 Nov 2007 13:59:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4738A280.7771.13638 ; + 12 Nov 2007 13:59:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 176EB7AF8D; + Mon, 12 Nov 2007 18:48:14 +0000 (GMT) +Message-ID: <200711121854.lACIs6ja023576@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 255 + for ; + Mon, 12 Nov 2007 18:47:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7B9A20E86 + for ; Mon, 12 Nov 2007 18:58:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACIs6n9023578 + for ; Mon, 12 Nov 2007 13:54:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACIs6ja023576 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 13:54:06 -0500 +Date: Mon, 12 Nov 2007 13:54:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38122 - in gradebook/trunk/app/sakai-tool/src/webapp: WEB-INF tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 13:59:21 2007 +X-DSPAM-Confidence: 0.8420 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38122 + +Author: rjlowe@iupui.edu +Date: 2007-11-12 13:54:05 -0500 (Mon, 12 Nov 2007) +New Revision: 38122 + +Added: +gradebook/trunk/app/sakai-tool/src/webapp/tools/sakai.gradebook.addItem.helper.xml +Modified: +gradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/web.xml +Log: +SAK-12180 +http://bugs.sakaiproject.org/jira/browse/SAK-12180 +Gradebook / Create Add Gradebook Item Helper Tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 12 12:15:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 12:15:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 12:15:20 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id lACHFJj5008353; + Mon, 12 Nov 2007 12:15:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47388A1F.CDE9B.5033 ; + 12 Nov 2007 12:15:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 409DC74BCC; + Mon, 12 Nov 2007 17:15:03 +0000 (GMT) +Message-ID: <200711121710.lACHABJJ023410@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 122 + for ; + Mon, 12 Nov 2007 17:14:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 914E220DB8 + for ; Mon, 12 Nov 2007 17:14:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACHABr1023412 + for ; Mon, 12 Nov 2007 12:10:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACHABJJ023410 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 12:10:11 -0500 +Date: Mon, 12 Nov 2007 12:10:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38121 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 12:15:20 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38121 + +Author: zqian@umich.edu +Date: 2007-11-12 12:10:08 -0500 (Mon, 12 Nov 2007) +New Revision: 38121 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12164: 'Assign this grade...' function is writing over Grade data + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 12 11:50:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 11:50:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 11:50:14 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lACGoD2c018027; + Mon, 12 Nov 2007 11:50:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4738843E.8D8E3.5600 ; + 12 Nov 2007 11:50:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F5607AB62; + Mon, 12 Nov 2007 16:49:15 +0000 (GMT) +Message-ID: <200711121645.lACGj0Kt023372@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 915 + for ; + Mon, 12 Nov 2007 16:48:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 06D712237E + for ; Mon, 12 Nov 2007 16:49:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACGj0gK023374 + for ; Mon, 12 Nov 2007 11:45:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACGj0Kt023372 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 11:45:00 -0500 +Date: Mon, 12 Nov 2007 11:45:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38120 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 11:50:14 2007 +X-DSPAM-Confidence: 0.7603 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38120 + +Author: zqian@umich.edu +Date: 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007) +New Revision: 38120 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12178: Assignments: Log in as instructor, add assignment, in points field enter 10000000000, Alert message displayed, message should display correct input value + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Mon Nov 12 10:24:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 10:24:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 10:24:14 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id lACFOC1W030754; + Mon, 12 Nov 2007 10:24:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47387015.911AB.3560 ; + 12 Nov 2007 10:24:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A9C367ABE4; + Mon, 12 Nov 2007 15:24:07 +0000 (GMT) +Message-ID: <200711121519.lACFJAdM023328@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 985 + for ; + Mon, 12 Nov 2007 15:23:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 026D422190 + for ; Mon, 12 Nov 2007 15:23:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACFJAEA023330 + for ; Mon, 12 Nov 2007 10:19:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACFJAdM023328 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 10:19:10 -0500 +Date: Mon, 12 Nov 2007 10:19:10 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38118 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 10:24:14 2007 +X-DSPAM-Confidence: 0.9755 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38118 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-12 10:18:20 -0500 (Mon, 12 Nov 2007) +New Revision: 38118 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java +Log: +SAK-12065 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Mon Nov 12 04:58:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 04:58:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 04:58:44 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id lAC9wgCX002572; + Mon, 12 Nov 2007 04:58:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 473823CD.77451.6467 ; + 12 Nov 2007 04:58:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E5F60744C8; + Mon, 12 Nov 2007 09:58:31 +0000 (GMT) +Message-ID: <200711120953.lAC9rWva023139@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 267 + for ; + Mon, 12 Nov 2007 09:58:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B1C6221B2 + for ; Mon, 12 Nov 2007 09:58:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9rWk3023141 + for ; Mon, 12 Nov 2007 04:53:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9rWva023139 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:53:32 -0500 +Date: Mon, 12 Nov 2007 04:53:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38117 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 04:58:44 2007 +X-DSPAM-Confidence: 0.9740 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38117 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-12 04:53:08 -0500 (Mon, 12 Nov 2007) +New Revision: 38117 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +SAK-11787 make use of the new Content review methods + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Mon Nov 12 04:44:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 04:44:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 04:44:46 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by casino.mail.umich.edu () with ESMTP id lAC9ijOH009761; + Mon, 12 Nov 2007 04:44:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47382088.49A44.26084 ; + 12 Nov 2007 04:44:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71B057A832; + Mon, 12 Nov 2007 09:44:34 +0000 (GMT) +Message-ID: <200711120939.lAC9dnjd023127@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 560 + for ; + Mon, 12 Nov 2007 09:44:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 73D4A1DC5B + for ; Mon, 12 Nov 2007 09:44:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9dnne023129 + for ; Mon, 12 Nov 2007 04:39:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9dnjd023127 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:39:49 -0500 +Date: Mon, 12 Nov 2007 04:39:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38116 - content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 04:44:46 2007 +X-DSPAM-Confidence: 0.9765 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38116 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-12 04:39:21 -0500 (Mon, 12 Nov 2007) +New Revision: 38116 + +Modified: +content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java +Log: +SAK-11787 deprecate the correct method + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Mon Nov 12 04:42:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 04:42:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 04:42:30 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lAC9gSBL031831; + Mon, 12 Nov 2007 04:42:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47381FFF.1CEDD.30742 ; + 12 Nov 2007 04:42:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1E0C37468F; + Mon, 12 Nov 2007 09:42:18 +0000 (GMT) +Message-ID: <200711120937.lAC9bSIk023113@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 11 + for ; + Mon, 12 Nov 2007 09:42:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1E53C1DC5B + for ; Mon, 12 Nov 2007 09:42:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9bSLu023115 + for ; Mon, 12 Nov 2007 04:37:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9bSIk023113 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:37:28 -0500 +Date: Mon, 12 Nov 2007 04:37:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38115 - content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 04:42:30 2007 +X-DSPAM-Confidence: 0.9763 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38115 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-12 04:36:57 -0500 (Mon, 12 Nov 2007) +New Revision: 38115 + +Modified: +content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java +Log: +SAK-11787 deprecate the correct method + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Mon Nov 12 04:22:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 12 Nov 2007 04:22:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 12 Nov 2007 04:22:56 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id lAC9MsB7009028; + Mon, 12 Nov 2007 04:22:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47381B69.84FA3.30842 ; + 12 Nov 2007 04:22:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AC1AA7468F; + Mon, 12 Nov 2007 09:22:45 +0000 (GMT) +Message-ID: <200711120917.lAC9HrGm023077@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 410 + for ; + Mon, 12 Nov 2007 09:22:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4F30521DF7 + for ; Mon, 12 Nov 2007 09:22:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9HsGf023079 + for ; Mon, 12 Nov 2007 04:17:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9HrGm023077 + for source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:17:53 -0500 +Date: Mon, 12 Nov 2007 04:17:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r38114 - content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 12 04:22:56 2007 +X-DSPAM-Confidence: 0.9757 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38114 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-12 04:17:19 -0500 (Mon, 12 Nov 2007) +New Revision: 38114 + +Modified: +content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java +Log: +SAK-11787 deprecat getReport and replace with getReportInstructor and getReportStrudent + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Sun Nov 11 18:00:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 11 Nov 2007 18:00:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 11 Nov 2007 18:00:36 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id lABN0ZQq013176; + Sun, 11 Nov 2007 18:00:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4737898D.BCDC0.15509 ; + 11 Nov 2007 18:00:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7639F7335D; + Sun, 11 Nov 2007 23:00:26 +0000 (GMT) +Message-ID: <200711112255.lABMtc8h022266@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 275 + for ; + Sun, 11 Nov 2007 23:00:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 832BE21DBF + for ; Sun, 11 Nov 2007 23:00:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABMtcMY022268 + for ; Sun, 11 Nov 2007 17:55:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABMtc8h022266 + for source@collab.sakaiproject.org; Sun, 11 Nov 2007 17:55:38 -0500 +Date: Sun, 11 Nov 2007 17:55:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38113 - in component/branches/SAK-12134: component-api/component/src/java/org/sakaiproject/component/cover component-api/component/src/java/org/sakaiproject/component/loader/shared component-api/component/src/java/org/sakaiproject/component/proxy component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 11 18:00:36 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38113 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-11 17:54:56 -0500 (Sun, 11 Nov 2007) +New Revision: 38113 + +Removed: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManagerMBean.java +Modified: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java +Log: +Registration working Ok now. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Sun Nov 11 16:54:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 11 Nov 2007 16:54:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 11 Nov 2007 16:54:49 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id lABLsm1g012565; + Sun, 11 Nov 2007 16:54:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47377A23.47994.14236 ; + 11 Nov 2007 16:54:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BFC9174BE9; + Sun, 11 Nov 2007 21:54:42 +0000 (GMT) +Message-ID: <200711112149.lABLngOt022226@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990 + for ; + Sun, 11 Nov 2007 21:54:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3EF3621DE5 + for ; Sun, 11 Nov 2007 21:54:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABLngnE022228 + for ; Sun, 11 Nov 2007 16:49:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABLngOt022226 + for source@collab.sakaiproject.org; Sun, 11 Nov 2007 16:49:42 -0500 +Date: Sun, 11 Nov 2007 16:49:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38112 - event/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 11 16:54:49 2007 +X-DSPAM-Confidence: 0.9781 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38112 + +Author: ajpoland@iupui.edu +Date: 2007-11-11 16:49:41 -0500 (Sun, 11 Nov 2007) +New Revision: 38112 + +Added: +event/branches/SAK-11021/ +Log: +SAK-11021 create branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sun Nov 11 10:01:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 11 Nov 2007 10:01:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 11 Nov 2007 10:01:05 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lABF14rm008615; + Sun, 11 Nov 2007 10:01:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4737192A.7A93B.28264 ; + 11 Nov 2007 10:01:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 622C375CD5; + Sun, 11 Nov 2007 15:01:03 +0000 (GMT) +Message-ID: <200711111456.lABEu8BB021899@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357 + for ; + Sun, 11 Nov 2007 15:00:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5C37B20083 + for ; Sun, 11 Nov 2007 15:00:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABEu8Tj021901 + for ; Sun, 11 Nov 2007 09:56:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABEu8BB021899 + for source@collab.sakaiproject.org; Sun, 11 Nov 2007 09:56:08 -0500 +Date: Sun, 11 Nov 2007 09:56:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38111 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 11 10:01:05 2007 +X-DSPAM-Confidence: 0.9828 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38111 + +Author: aaronz@vt.edu +Date: 2007-11-11 09:56:04 -0500 (Sun, 11 Nov 2007) +New Revision: 38111 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Missed out an uncommented bit, now everything should be good to go + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sun Nov 11 09:53:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 11 Nov 2007 09:53:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 11 Nov 2007 09:53:46 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lABErjA5026382; + Sun, 11 Nov 2007 09:53:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47371774.240FF.3803 ; + 11 Nov 2007 09:53:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8D55E79842; + Sun, 11 Nov 2007 14:53:40 +0000 (GMT) +Message-ID: <200711111448.lABEmoIK021844@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 491 + for ; + Sun, 11 Nov 2007 14:53:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 252B31DC6F + for ; Sun, 11 Nov 2007 14:53:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABEmo31021847 + for ; Sun, 11 Nov 2007 09:48:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABEmoIK021844 + for source@collab.sakaiproject.org; Sun, 11 Nov 2007 09:48:50 -0500 +Date: Sun, 11 Nov 2007 09:48:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38110 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 11 09:53:46 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38110 + +Author: aaronz@vt.edu +Date: 2007-11-11 09:48:45 -0500 (Sun, 11 Nov 2007) +New Revision: 38110 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Load tests are completed and passing against this branch, this portion of the branch is complete + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sun Nov 11 06:15:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 11 Nov 2007 06:15:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 11 Nov 2007 06:15:48 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lABBFlHm013872; + Sun, 11 Nov 2007 06:15:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4736E45E.8AEAC.20225 ; + 11 Nov 2007 06:15:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D00C79B6D; + Sun, 11 Nov 2007 11:15:28 +0000 (GMT) +Message-ID: <200711111110.lABBAfPs021673@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1023 + for ; + Sun, 11 Nov 2007 11:15:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 548D71F665 + for ; Sun, 11 Nov 2007 11:15:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABBAf1m021675 + for ; Sun, 11 Nov 2007 06:10:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABBAfPs021673 + for source@collab.sakaiproject.org; Sun, 11 Nov 2007 06:10:41 -0500 +Date: Sun, 11 Nov 2007 06:10:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38109 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 11 06:15:48 2007 +X-DSPAM-Confidence: 0.9833 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38109 + +Author: aaronz@vt.edu +Date: 2007-11-11 06:10:33 -0500 (Sun, 11 Nov 2007) +New Revision: 38109 + +Added: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTesting.java +Removed: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ConcurrentList.java +Log: +SAK-12105: Tests indicate that best syncronized List performance is acheived using a Vector + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sat Nov 10 20:40:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 20:40:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 20:40:05 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by brazil.mail.umich.edu () with ESMTP id lAB1e4Lk027280; + Sat, 10 Nov 2007 20:40:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47365D6E.C010A.16683 ; + 10 Nov 2007 20:40:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 22F5B72BAB; + Sun, 11 Nov 2007 01:39:58 +0000 (GMT) +Message-ID: <200711110135.lAB1Z68s008386@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 252 + for ; + Sun, 11 Nov 2007 01:39:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A9AC821842 + for ; Sun, 11 Nov 2007 01:39:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAB1Z6FH008388 + for ; Sat, 10 Nov 2007 20:35:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAB1Z68s008386 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 20:35:06 -0500 +Date: Sat, 10 Nov 2007 20:35:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38108 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 20:40:04 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38108 + +Author: jimeng@umich.edu +Date: 2007-11-10 20:35:03 -0500 (Sat, 10 Nov 2007) +New Revision: 38108 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12168 +Added log message in catch block. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 19:40:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 19:40:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 19:40:56 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by brazil.mail.umich.edu () with ESMTP id lAB0eudL013604; + Sat, 10 Nov 2007 19:40:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47364F92.E9DFE.18942 ; + 10 Nov 2007 19:40:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B8C4D79318; + Sun, 11 Nov 2007 00:35:45 +0000 (GMT) +Message-ID: <200711110036.lAB0a13j008258@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357 + for ; + Sun, 11 Nov 2007 00:35:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1DEF81FCCD + for ; Sun, 11 Nov 2007 00:40:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAB0a1cJ008260 + for ; Sat, 10 Nov 2007 19:36:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAB0a13j008258 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 19:36:01 -0500 +Date: Sat, 10 Nov 2007 19:36:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38107 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 19:40:56 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38107 + +Author: aaronz@vt.edu +Date: 2007-11-10 19:35:57 -0500 (Sat, 10 Nov 2007) +New Revision: 38107 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java +Log: +SAK-12105: Added experimental list handling code and tests for speed, adjusted numbers + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 19:31:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 19:31:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 19:31:41 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by flawless.mail.umich.edu () with ESMTP id lAB0VeZB019595; + Sat, 10 Nov 2007 19:31:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47364D65.B5DED.8538 ; + 10 Nov 2007 19:31:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 42A1E79318; + Sun, 11 Nov 2007 00:26:32 +0000 (GMT) +Message-ID: <200711110026.lAB0QfJr008246@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 213 + for ; + Sun, 11 Nov 2007 00:26:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EC4481FCCD + for ; Sun, 11 Nov 2007 00:31:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAB0QgxL008248 + for ; Sat, 10 Nov 2007 19:26:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAB0QfJr008246 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 19:26:41 -0500 +Date: Sat, 10 Nov 2007 19:26:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38106 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 19:31:41 2007 +X-DSPAM-Confidence: 0.8428 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38106 + +Author: aaronz@vt.edu +Date: 2007-11-10 19:26:37 -0500 (Sat, 10 Nov 2007) +New Revision: 38106 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java +Log: +SAK-12105: Added experimental list handling code and tests for speed + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 18:50:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 18:50:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 18:50:18 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id lAANoFcn031276; + Sat, 10 Nov 2007 18:50:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 473643B2.5DBB7.28378 ; + 10 Nov 2007 18:50:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E4BEE77584; + Sat, 10 Nov 2007 23:50:10 +0000 (GMT) +Message-ID: <200711102345.lAANjLxd008232@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 292 + for ; + Sat, 10 Nov 2007 23:49:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4D1671CDDB + for ; Sat, 10 Nov 2007 23:49:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAANjLMv008234 + for ; Sat, 10 Nov 2007 18:45:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAANjLxd008232 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 18:45:21 -0500 +Date: Sat, 10 Nov 2007 18:45:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38105 - in content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test: . util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 18:50:18 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38105 + +Author: aaronz@vt.edu +Date: 2007-11-10 18:45:13 -0500 (Sat, 10 Nov 2007) +New Revision: 38105 + +Added: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ConcurrentList.java +Log: +SAK-12105: Added experimental list handling code and tests for speed + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Sat Nov 10 15:42:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 15:42:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 15:42:07 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by faithful.mail.umich.edu () with ESMTP id lAAKg6xA002541; + Sat, 10 Nov 2007 15:42:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47361797.A85EA.17745 ; + 10 Nov 2007 15:42:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A87F27934F; + Sat, 10 Nov 2007 20:41:56 +0000 (GMT) +Message-ID: <200711102037.lAAKb46Y007986@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906 + for ; + Sat, 10 Nov 2007 20:41:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5E3CF2185D + for ; Sat, 10 Nov 2007 20:41:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAKb4lR007988 + for ; Sat, 10 Nov 2007 15:37:04 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAKb46Y007986 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 15:37:04 -0500 +Date: Sat, 10 Nov 2007 15:37:04 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38104 - component/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 15:42:07 2007 +X-DSPAM-Confidence: 0.8427 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38104 + +Author: rjlowe@iupui.edu +Date: 2007-11-10 15:37:03 -0500 (Sat, 10 Nov 2007) +New Revision: 38104 + +Added: +component/branches/SAK-12166/ +Log: +SAK-12166 +new branch /svn/component/branch/SAK-12166 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sat Nov 10 14:55:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 14:55:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 14:55:55 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by fan.mail.umich.edu () with ESMTP id lAAJtsbw008126; + Sat, 10 Nov 2007 14:55:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47360CC2.F0368.15552 ; + 10 Nov 2007 14:55:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D2F2B6641F; + Sat, 10 Nov 2007 19:55:43 +0000 (GMT) +Message-ID: <200711101951.lAAJp1lf007927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 568 + for ; + Sat, 10 Nov 2007 19:55:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 516992187A + for ; Sat, 10 Nov 2007 19:55:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJp1vf007929 + for ; Sat, 10 Nov 2007 14:51:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJp1lf007927 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:51:01 -0500 +Date: Sat, 10 Nov 2007 14:51:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38103 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 14:55:55 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38103 + +Author: jimeng@umich.edu +Date: 2007-11-10 14:50:58 -0500 (Sat, 10 Nov 2007) +New Revision: 38103 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12168 +Avoid checking for availability when use is admin (super-user) + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Sat Nov 10 14:51:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 14:51:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 14:51:32 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by score.mail.umich.edu () with ESMTP id lAAJpVKF029478; + Sat, 10 Nov 2007 14:51:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47360BBF.3022B.21771 ; + 10 Nov 2007 14:51:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2BA7879434; + Sat, 10 Nov 2007 19:51:27 +0000 (GMT) +Message-ID: <200711101946.lAAJkjNj007915@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 138 + for ; + Sat, 10 Nov 2007 19:51:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 92E7421871 + for ; Sat, 10 Nov 2007 19:51:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJkjiG007917 + for ; Sat, 10 Nov 2007 14:46:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJkjNj007915 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:46:45 -0500 +Date: Sat, 10 Nov 2007 14:46:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38102 - content/branches/SAK-12105/content-jcr-migration-api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 14:51:32 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38102 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-10 14:46:40 -0500 (Sat, 10 Nov 2007) +New Revision: 38102 + +Removed: +content/branches/SAK-12105/content-jcr-migration-api/m2-target/ +Log: +SAK-12105 forgot to remove target build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Sat Nov 10 14:50:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 14:50:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 14:50:57 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by jacknife.mail.umich.edu () with ESMTP id lAAJoupZ015779; + Sat, 10 Nov 2007 14:50:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47360B99.39242.9333 ; + 10 Nov 2007 14:50:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 447C46641F; + Sat, 10 Nov 2007 19:50:40 +0000 (GMT) +Message-ID: <200711101945.lAAJjtH4007903@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 346 + for ; + Sat, 10 Nov 2007 19:50:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 75C5121871 + for ; Sat, 10 Nov 2007 19:50:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJjukD007905 + for ; Sat, 10 Nov 2007 14:45:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJjtH4007903 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:45:55 -0500 +Date: Sat, 10 Nov 2007 14:45:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38101 - in content/branches/SAK-12105: . content-impl-jcr/impl content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration content-impl-jcr/pack/src/webapp/WEB-INF content-jcr-migration-api content-jcr-migration-api/m2-target content-jcr-migration-api/m2-target/classes content-jcr-migration-api/m2-target/classes/org content-jcr-migration-api/m2-target/classes/org/sakaiproject content-jcr-migration-api/m2-target/classes/org/sakaiproject/content content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration/api content-jcr-migration-api/src content-jcr-migration-api/src/java content-jcr-migration-api/src/java/org content-jcr-migration-api/src/java/org/sakaiproject content-jcr-migration-api/src/java/org/sakaiproject/content content-jcr-migration-api/src/java/org/sakaiproject/c! + ontent/migration content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 14:50:57 2007 +X-DSPAM-Confidence: 0.8480 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38101 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-10 14:45:28 -0500 (Sat, 10 Nov 2007) +New Revision: 38101 + +Added: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRMigratorImpl.java +content/branches/SAK-12105/content-jcr-migration-api/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration/api/ +content/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration/api/ContentToJCRMigrator.class +content/branches/SAK-12105/content-jcr-migration-api/m2-target/sakai-content-jcr-migration-api-M2.jar +content/branches/SAK-12105/content-jcr-migration-api/pom.xml +content/branches/SAK-12105/content-jcr-migration-api/src/ +content/branches/SAK-12105/content-jcr-migration-api/src/java/ +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/ +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/ +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/ +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/ +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ +content/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRMigrator.java +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/pom.xml +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12105/pom.xml +Log: +SAK-12105 In process of moving a portion of the migration code from jython scripts to a component + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 14:15:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 14:15:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 14:15:45 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lAAJFiPV032184; + Sat, 10 Nov 2007 14:15:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4736035B.4F7FC.12141 ; + 10 Nov 2007 14:15:42 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AE3C371C3C; + Sat, 10 Nov 2007 19:15:29 +0000 (GMT) +Message-ID: <200711101910.lAAJAqFs007889@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 422 + for ; + Sat, 10 Nov 2007 19:15:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6A10A1FCC3 + for ; Sat, 10 Nov 2007 19:15:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJAqu1007891 + for ; Sat, 10 Nov 2007 14:10:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJAqFs007889 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:10:52 -0500 +Date: Sat, 10 Nov 2007 14:10:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38100 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 14:15:45 2007 +X-DSPAM-Confidence: 0.9841 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38100 + +Author: aaronz@vt.edu +Date: 2007-11-10 14:10:48 -0500 (Sat, 10 Nov 2007) +New Revision: 38100 + +Modified: +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12168: Fixed remove permissions check to be more efficient and also to work correctly for superuser + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 13:44:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 13:44:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 13:44:23 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by fan.mail.umich.edu () with ESMTP id lAAIiMtf019395; + Sat, 10 Nov 2007 13:44:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4735FBF5.F405C.1861 ; + 10 Nov 2007 13:44:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3F5007933D; + Sat, 10 Nov 2007 18:41:11 +0000 (GMT) +Message-ID: <200711101839.lAAIdJ7I007875@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 148 + for ; + Sat, 10 Nov 2007 18:40:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BB7BB1D604 + for ; Sat, 10 Nov 2007 18:43:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAIdJg5007877 + for ; Sat, 10 Nov 2007 13:39:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAIdJ7I007875 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 13:39:19 -0500 +Date: Sat, 10 Nov 2007 13:39:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38099 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 13:44:23 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38099 + +Author: aaronz@vt.edu +Date: 2007-11-10 13:39:14 -0500 (Sat, 10 Nov 2007) +New Revision: 38099 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Fixed error in the test and removed the exception swallowing for permissions + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 08:19:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 08:19:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 08:19:22 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by brazil.mail.umich.edu () with ESMTP id lAADJL0f020690; + Sat, 10 Nov 2007 08:19:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4735AFD4.24E4D.17360 ; + 10 Nov 2007 08:19:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5403C72CE7; + Sat, 10 Nov 2007 13:19:13 +0000 (GMT) +Message-ID: <200711101314.lAADEVIi007750@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 678 + for ; + Sat, 10 Nov 2007 13:19:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA667215B1 + for ; Sat, 10 Nov 2007 13:19:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAADEVtd007752 + for ; Sat, 10 Nov 2007 08:14:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAADEVIi007750 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 08:14:31 -0500 +Date: Sat, 10 Nov 2007 08:14:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38098 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 08:19:22 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38098 + +Author: aaronz@vt.edu +Date: 2007-11-10 08:14:27 -0500 (Sat, 10 Nov 2007) +New Revision: 38098 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Captured some of the exceptions while testing since we cannot seem to run the tests without getting seemingly random exceptions + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 07:57:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 07:57:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 07:57:51 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by godsend.mail.umich.edu () with ESMTP id lAACvpCH017204; + Sat, 10 Nov 2007 07:57:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4735AACA.4BCFF.20535 ; + 10 Nov 2007 07:57:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E0B8678CA2; + Sat, 10 Nov 2007 12:57:42 +0000 (GMT) +Message-ID: <200711101253.lAACr3gj007701@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 998 + for ; + Sat, 10 Nov 2007 12:57:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 493391F187 + for ; Sat, 10 Nov 2007 12:57:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACr3QQ007703 + for ; Sat, 10 Nov 2007 07:53:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACr3gj007701 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:53:03 -0500 +Date: Sat, 10 Nov 2007 07:53:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38097 - cafe/branches/2-5-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 07:57:51 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38097 + +Author: aaronz@vt.edu +Date: 2007-11-10 07:52:58 -0500 (Sat, 10 Nov 2007) +New Revision: 38097 + +Modified: +cafe/branches/2-5-x/ +cafe/branches/2-5-x/.externals +Log: +Cafe 2.5 branch should now actually be working + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 07:54:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 07:54:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 07:54:51 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lAACsp1s027010; + Sat, 10 Nov 2007 07:54:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4735AA15.88596.13908 ; + 10 Nov 2007 07:54:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A62F78841; + Sat, 10 Nov 2007 12:53:37 +0000 (GMT) +Message-ID: <200711101249.lAACnk6l007689@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365 + for ; + Sat, 10 Nov 2007 12:53:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8DC281F187 + for ; Sat, 10 Nov 2007 12:54:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACnkHv007691 + for ; Sat, 10 Nov 2007 07:49:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACnk6l007689 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:49:46 -0500 +Date: Sat, 10 Nov 2007 07:49:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38096 - cafe/branches/2-5-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 07:54:51 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38096 + +Author: aaronz@vt.edu +Date: 2007-11-10 07:49:41 -0500 (Sat, 10 Nov 2007) +New Revision: 38096 + +Modified: +cafe/branches/2-5-x/ +cafe/branches/2-5-x/.externals +Log: +Cafe 2.5 branch should now be working + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 07:43:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 07:43:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 07:43:58 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by panther.mail.umich.edu () with ESMTP id lAAChvJR010248; + Sat, 10 Nov 2007 07:43:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4735A77A.3BE35.21446 ; + 10 Nov 2007 07:43:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7B47C78CB4; + Sat, 10 Nov 2007 12:42:36 +0000 (GMT) +Message-ID: <200711101238.lAACckYl007677@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 891 + for ; + Sat, 10 Nov 2007 12:42:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CA55F211B2 + for ; Sat, 10 Nov 2007 12:43:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACckKD007679 + for ; Sat, 10 Nov 2007 07:38:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACckYl007677 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:38:46 -0500 +Date: Sat, 10 Nov 2007 07:38:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38095 - cafe/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 07:43:58 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38095 + +Author: aaronz@vt.edu +Date: 2007-11-10 07:38:40 -0500 (Sat, 10 Nov 2007) +New Revision: 38095 + +Added: +cafe/branches/2-5-x/ +Log: +created 2.5.x branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sat Nov 10 07:38:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sat, 10 Nov 2007 07:38:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sat, 10 Nov 2007 07:38:43 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by panther.mail.umich.edu () with ESMTP id lAACcgXD008863; + Sat, 10 Nov 2007 07:38:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4735A64D.26C71.18919 ; + 10 Nov 2007 07:38:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25FA078C99; + Sat, 10 Nov 2007 12:37:31 +0000 (GMT) +Message-ID: <200711101233.lAACXktQ007663@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769 + for ; + Sat, 10 Nov 2007 12:37:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4781D211B2 + for ; Sat, 10 Nov 2007 12:38:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACXkLK007665 + for ; Sat, 10 Nov 2007 07:33:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACXktQ007663 + for source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:33:46 -0500 +Date: Sat, 10 Nov 2007 07:33:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38094 - cafe/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sat Nov 10 07:38:43 2007 +X-DSPAM-Confidence: 0.8436 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38094 + +Author: aaronz@vt.edu +Date: 2007-11-10 07:33:42 -0500 (Sat, 10 Nov 2007) +New Revision: 38094 + +Removed: +cafe/branches/SAK-10971/ +Log: +Removing branch as it is no longer needed + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Nov 9 16:35:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 16:35:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 16:35:17 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by brazil.mail.umich.edu () with ESMTP id lA9LZGNe010051; + Fri, 9 Nov 2007 16:35:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4734D28D.3DAC8.26488 ; + 9 Nov 2007 16:35:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F2F8784E9; + Fri, 9 Nov 2007 21:35:03 +0000 (GMT) +Message-ID: <200711092130.lA9LUk1u006641@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 672 + for ; + Fri, 9 Nov 2007 21:34:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 54F2821409 + for ; Fri, 9 Nov 2007 21:34:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9LUkmV006643 + for ; Fri, 9 Nov 2007 16:30:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9LUk1u006641 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:30:46 -0500 +Date: Fri, 9 Nov 2007 16:30:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38092 - in msgcntr/branches/oncourse_2-4-x/messageforums-app/src: java/org/sakaiproject/tool/messageforums webapp/jsp/privateMsg +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 16:35:17 2007 +X-DSPAM-Confidence: 0.9892 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38092 + +Author: rjlowe@iupui.edu +Date: 2007-11-09 16:30:45 -0500 (Fri, 09 Nov 2007) +New Revision: 38092 + +Modified: +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp +Log: +svn merge -c 34591 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +U messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp +U messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp +svn log -r 34591:34591 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r34591 | josrodri@iupui.edu | 2007-08-30 14:25:51 -0400 (Thu, 30 Aug 2007) | 1 line + +SAK-11321: will now display the Received folder no matter the previous state of Messages, even if user has never visited the site before but others have sent the user messages +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Nov 9 16:34:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 16:34:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 16:34:08 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by godsend.mail.umich.edu () with ESMTP id lA9LY6xq006549; + Fri, 9 Nov 2007 16:34:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4734D23D.92DF3.6043 ; + 9 Nov 2007 16:33:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3DD070FFC; + Fri, 9 Nov 2007 21:33:47 +0000 (GMT) +Message-ID: <200711092129.lA9LTM15006628@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611 + for ; + Fri, 9 Nov 2007 21:33:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A1B421409 + for ; Fri, 9 Nov 2007 21:33:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9LTMp0006630 + for ; Fri, 9 Nov 2007 16:29:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9LTM15006628 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:29:22 -0500 +Date: Fri, 9 Nov 2007 16:29:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38091 - in msgcntr/branches/oncourse_2-4-x/messageforums-app/src: java/org/sakaiproject/tool/messageforums webapp/jsp/privateMsg +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 16:34:08 2007 +X-DSPAM-Confidence: 0.5949 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38091 + +Author: rjlowe@iupui.edu +Date: 2007-11-09 16:29:21 -0500 (Fri, 09 Nov 2007) +New Revision: 38091 + +Added: +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp +Modified: +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgEx.jsp +Log: +svn merge -c 31877 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +A messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp +U messageforums-app/src/webapp/jsp/privateMsg/pvtMsgEx.jsp +U messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp +svn merge -c 31880 https://source.sakaiproject.org/svn/msgcntr/trunk +G messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +U messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp +svn merge -c 31885 https://source.sakaiproject.org/svn/msgcntr/trunk +G messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +svn log -r 31877:31877 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r31877 | josrodri@iupui.edu | 2007-06-26 16:33:06 -0400 (Tue, 26 Jun 2007) | 1 line + +SAK-10419: fixed breadcrumbs for search results. Also added Previous/Next Folder links. Lastly, moved breadcrumb Previous/Next Folder code to own jsp page. +------------------------------------------------------------------------ +svn log -r 31880:31880 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r31880 | josrodri@iupui.edu | 2007-06-27 09:55:47 -0400 (Wed, 27 Jun 2007) | 1 line + +SAK-10419 - missed navigation case +------------------------------------------------------------------------ +svn log -r 31885:31885 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r31885 | josrodri@iupui.edu | 2007-06-27 11:16:48 -0400 (Wed, 27 Jun 2007) | 1 line + +SAK-10419 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Nov 9 16:14:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 16:14:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 16:14:37 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lA9LEaJT027053; + Fri, 9 Nov 2007 16:14:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4734CDB4.6C67B.1526 ; + 9 Nov 2007 16:14:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 606B578272; + Fri, 9 Nov 2007 21:14:27 +0000 (GMT) +Message-ID: <200711092109.lA9L9wNV006546@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198 + for ; + Fri, 9 Nov 2007 21:14:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 51DF0213FC + for ; Fri, 9 Nov 2007 21:14:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L9wYm006548 + for ; Fri, 9 Nov 2007 16:09:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L9wNV006546 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:09:58 -0500 +Date: Fri, 9 Nov 2007 16:09:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38089 - in syllabus/branches/sakai_2-4-x/syllabus-app/src: java/org/sakaiproject/tool/syllabus webapp/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 16:14:37 2007 +X-DSPAM-Confidence: 0.9888 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38089 + +Author: rjlowe@iupui.edu +Date: 2007-11-09 16:09:57 -0500 (Fri, 09 Nov 2007) +New Revision: 38089 + +Modified: +syllabus/branches/sakai_2-4-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +syllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus/main.jsp +Log: +svn merge -c 37803 https://source.sakaiproject.org/svn/syllabus/trunk +U syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +U syllabus-app/src/webapp/syllabus/main.jsp +svn log -r 37803:37803 https://source.sakaiproject.org/svn/syllabus/trunk +------------------------------------------------------------------------ +r37803 | josrodri@iupui.edu | 2007-11-06 14:03:15 -0500 (Tue, 06 Nov 2007) | 1 line + +SAK-10333, SAK-10587, SAK-11221: refactored how print friendly url is determined. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Nov 9 16:13:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 16:13:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 16:13:22 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id lA9LDLY2027812; + Fri, 9 Nov 2007 16:13:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4734CD68.E004F.10972 ; + 9 Nov 2007 16:13:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4838878423; + Fri, 9 Nov 2007 21:13:05 +0000 (GMT) +Message-ID: <200711092108.lA9L8aSZ006529@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 369 + for ; + Fri, 9 Nov 2007 21:12:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2918DB0C8 + for ; Fri, 9 Nov 2007 21:12:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L8anv006531 + for ; Fri, 9 Nov 2007 16:08:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L8aSZ006529 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:08:36 -0500 +Date: Fri, 9 Nov 2007 16:08:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r38088 - in component/branches/SAK-8315: component-api/component/src/java/org/sakaiproject/component/impl component-impl/impl/src/java/org/sakaiproject/component/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 16:13:22 2007 +X-DSPAM-Confidence: 0.7537 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38088 + +Author: ray@media.berkeley.edu +Date: 2007-11-09 16:08:28 -0500 (Fri, 09 Nov 2007) +New Revision: 38088 + +Modified: +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-8315/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java +Log: +Remove some obsolete code and comments + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Fri Nov 9 16:12:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 16:12:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 16:12:48 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lA9LCmrj017773; + Fri, 9 Nov 2007 16:12:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4734CD28.48B17.8505 ; + 9 Nov 2007 16:12:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2168B78272; + Fri, 9 Nov 2007 21:11:45 +0000 (GMT) +Message-ID: <200711092107.lA9L78xI006516@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738 + for ; + Fri, 9 Nov 2007 21:11:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2ECC4B0C8 + for ; Fri, 9 Nov 2007 21:11:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L78Fd006518 + for ; Fri, 9 Nov 2007 16:07:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L78xI006516 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:07:08 -0500 +Date: Fri, 9 Nov 2007 16:07:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38087 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 16:12:48 2007 +X-DSPAM-Confidence: 0.9791 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38087 + +Author: ajpoland@iupui.edu +Date: 2007-11-09 16:07:07 -0500 (Fri, 09 Nov 2007) +New Revision: 38087 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Nov 9 16:11:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 16:11:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 16:11:42 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by flawless.mail.umich.edu () with ESMTP id lA9LBfSR005083; + Fri, 9 Nov 2007 16:11:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4734CD00.A02A6.7585 ; + 9 Nov 2007 16:11:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0C3AB70F6A; + Fri, 9 Nov 2007 21:11:25 +0000 (GMT) +Message-ID: <200711092106.lA9L6n3w006504@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 901 + for ; + Fri, 9 Nov 2007 21:11:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 80AE6B0C8 + for ; Fri, 9 Nov 2007 21:10:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L6naK006506 + for ; Fri, 9 Nov 2007 16:06:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L6n3w006504 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:06:49 -0500 +Date: Fri, 9 Nov 2007 16:06:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38086 - syllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 16:11:42 2007 +X-DSPAM-Confidence: 0.9899 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38086 + +Author: rjlowe@iupui.edu +Date: 2007-11-09 16:06:48 -0500 (Fri, 09 Nov 2007) +New Revision: 38086 + +Modified: +syllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus/main.jsp +Log: +svn merge -c 34215 https://source.sakaiproject.org/svn/syllabus/trunk +U syllabus-app/src/webapp/syllabus/main.jsp +svn log -r 34215:34215 https://source.sakaiproject.org/svn/syllabus/trunk +------------------------------------------------------------------------ +r34215 | josrodri@iupui.edu | 2007-08-21 14:22:14 -0400 (Tue, 21 Aug 2007) | 1 line + +SAK-11221: missed check for https:// prefix when determining what url to redirect to +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Fri Nov 9 15:57:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 15:57:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 15:57:52 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id lA9KvpDc006820; + Fri, 9 Nov 2007 15:57:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4734C9CA.3AF33.5445 ; + 9 Nov 2007 15:57:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9FA4978469; + Fri, 9 Nov 2007 20:48:02 +0000 (GMT) +Message-ID: <200711092031.lA9KViML006409@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 43 + for ; + Fri, 9 Nov 2007 20:47:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 64AA0214FD + for ; Fri, 9 Nov 2007 20:35:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KViAT006411 + for ; Fri, 9 Nov 2007 15:31:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KViML006409 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:31:44 -0500 +Date: Fri, 9 Nov 2007 15:31:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38081 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 15:57:52 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38081 + +Author: ajpoland@iupui.edu +Date: 2007-11-09 15:31:43 -0500 (Fri, 09 Nov 2007) +New Revision: 38081 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Nov 9 15:57:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 15:57:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 15:57:51 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by fan.mail.umich.edu () with ESMTP id lA9KvohM006281; + Fri, 9 Nov 2007 15:57:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4734C9C8.224A.11561 ; + 9 Nov 2007 15:57:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 75DD6783AA; + Fri, 9 Nov 2007 20:48:01 +0000 (GMT) +Message-ID: <200711092030.lA9KUp2Z006397@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 43 + for ; + Fri, 9 Nov 2007 20:47:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CBCF6214F9 + for ; Fri, 9 Nov 2007 20:35:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KUpEU006399 + for ; Fri, 9 Nov 2007 15:30:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KUp2Z006397 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:30:51 -0500 +Date: Fri, 9 Nov 2007 15:30:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38080 - gradebook/branches/oncourse_2-4-x/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 15:57:50 2007 +X-DSPAM-Confidence: 0.8511 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38080 + +Author: rjlowe@iupui.edu +Date: 2007-11-09 15:30:50 -0500 (Fri, 09 Nov 2007) +New Revision: 38080 + +Modified: +gradebook/branches/oncourse_2-4-x/app/ui/src/webapp/js/spreadsheetUI.js +Log: +svn merge -c 37820 https://source.sakaiproject.org/svn/gradebook/trunk +C app/ui/src/webapp/js/spreadsheetUI.js +vi app/ui/src/webapp/js/spreadsheetUI.js +svn resolved app/ui/src/webapp/js/spreadsheetUI.js +Resolved conflicted state of 'app/ui/src/webapp/js/spreadsheetUI.js' +in-143-146:oncourse_2-4-x rjlowe$ svn log -r 37820:37820 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37820 | rjlowe@iupui.edu | 2007-11-06 16:17:54 -0500 (Tue, 06 Nov 2007) | 1 line + +SAK-11588 - All Grades page crashes IE when large number of students/gb items viewed at once +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Nov 9 15:41:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 15:41:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 15:41:55 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by score.mail.umich.edu () with ESMTP id lA9Kftxd016646; + Fri, 9 Nov 2007 15:41:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4734C60A.EC27D.32128 ; + 9 Nov 2007 15:41:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3DFC675D85; + Fri, 9 Nov 2007 20:32:03 +0000 (GMT) +Message-ID: <200711092037.lA9KbJUW006445@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 138 + for ; + Fri, 9 Nov 2007 20:31:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9B5F1B0C8 + for ; Fri, 9 Nov 2007 20:41:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KbJ1E006447 + for ; Fri, 9 Nov 2007 15:37:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KbJUW006445 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:37:19 -0500 +Date: Fri, 9 Nov 2007 15:37:19 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38084 - gradebook/branches/oncourse_2-4-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 15:41:55 2007 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38084 + +Author: rjlowe@iupui.edu +Date: 2007-11-09 15:37:18 -0500 (Fri, 09 Nov 2007) +New Revision: 38084 + +Modified: +gradebook/branches/oncourse_2-4-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +svn merge -c 38079 https://source.sakaiproject.org/svn/gradebook/trunk +U app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +svn log -r 38079:38079 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r38079 | cwen@iupui.edu | 2007-11-09 14:43:01 -0500 (Fri, 09 Nov 2007) | 5 lines + +http://128.196.219.68/jira/browse/SAK-12163 +SAK-12163 +=> +https://uisapp2.iu.edu/jira/browse/ONC-233 +exceptions thrown while attempting to rename the gradebook item. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Nov 9 15:39:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 15:39:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 15:39:30 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id lA9KdTMg023493; + Fri, 9 Nov 2007 15:39:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4734C57A.AAD9A.15932 ; + 9 Nov 2007 15:39:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4C00B75D85; + Fri, 9 Nov 2007 20:29:39 +0000 (GMT) +Message-ID: <200711092034.lA9KYuGu006421@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821 + for ; + Fri, 9 Nov 2007 20:29:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D96F421503 + for ; Fri, 9 Nov 2007 20:39:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KYuGJ006423 + for ; Fri, 9 Nov 2007 15:34:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KYuGu006421 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:34:56 -0500 +Date: Fri, 9 Nov 2007 15:34:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r38082 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 15:39:30 2007 +X-DSPAM-Confidence: 0.6964 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38082 + +Author: rjlowe@iupui.edu +Date: 2007-11-09 15:34:55 -0500 (Fri, 09 Nov 2007) +New Revision: 38082 + +Modified: +gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +Log: +svn merge -c 37823 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +svn log -r 37823:37823 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37823 | josrodri@iupui.edu | 2007-11-06 16:40:05 -0500 (Tue, 06 Nov 2007) | 3 lines + +SAK-12133: spreadsheet item add, if item already exists but no points possible is in spreadsheet for that item, just keep current value + +SAK-9762: added an init() method to do code currently processed in constructor. Kept an empty constructor for easy backing out. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Nov 9 14:47:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 14:47:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 14:47:46 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by mission.mail.umich.edu () with ESMTP id lA9Jljan017862; + Fri, 9 Nov 2007 14:47:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4734B951.B5D44.15068 ; + 9 Nov 2007 14:47:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1550371382; + Fri, 9 Nov 2007 19:47:27 +0000 (GMT) +Message-ID: <200711091943.lA9Jh2xU006304@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 852 + for ; + Fri, 9 Nov 2007 19:47:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB3C81C80D + for ; Fri, 9 Nov 2007 19:47:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9Jh2Vt006306 + for ; Fri, 9 Nov 2007 14:43:02 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9Jh2xU006304 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 14:43:02 -0500 +Date: Fri, 9 Nov 2007 14:43:02 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r38079 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 14:47:46 2007 +X-DSPAM-Confidence: 0.7608 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38079 + +Author: cwen@iupui.edu +Date: 2007-11-09 14:43:01 -0500 (Fri, 09 Nov 2007) +New Revision: 38079 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +Log: +http://128.196.219.68/jira/browse/SAK-12163 +SAK-12163 +=> +https://uisapp2.iu.edu/jira/browse/ONC-233 +exceptions thrown while attempting to rename the gradebook item. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Nov 9 13:19:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 13:19:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 13:19:45 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id lA9IJi9w001531; + Fri, 9 Nov 2007 13:19:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4734A4B9.4AE09.28570 ; + 9 Nov 2007 13:19:40 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D5C6376716; + Fri, 9 Nov 2007 18:13:43 +0000 (GMT) +Message-ID: <200711091815.lA9IF7Ew006103@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 637 + for ; + Fri, 9 Nov 2007 18:13:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C0D951C7F2 + for ; Fri, 9 Nov 2007 18:19:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9IF7ZQ006105 + for ; Fri, 9 Nov 2007 13:15:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9IF7Ew006103 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 13:15:07 -0500 +Date: Fri, 9 Nov 2007 13:15:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r38078 - mailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 13:19:45 2007 +X-DSPAM-Confidence: 0.9848 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38078 + +Author: bkirschn@umich.edu +Date: 2007-11-09 13:15:05 -0500 (Fri, 09 Nov 2007) +New Revision: 38078 + +Modified: +mailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ko.properties +Log: +SAK-12159 merge to 2.5.x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Nov 9 13:09:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 13:09:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 13:09:31 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by flawless.mail.umich.edu () with ESMTP id lA9I9Qbx027504; + Fri, 9 Nov 2007 13:09:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4734A24E.846.23204 ; + 9 Nov 2007 13:09:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4F53278071; + Fri, 9 Nov 2007 18:04:18 +0000 (GMT) +Message-ID: <200711091804.lA9I4aMT006072@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 679 + for ; + Fri, 9 Nov 2007 18:04:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D0AA82120E + for ; Fri, 9 Nov 2007 18:08:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9I4a9k006074 + for ; Fri, 9 Nov 2007 13:04:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9I4aMT006072 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 13:04:36 -0500 +Date: Fri, 9 Nov 2007 13:04:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r38077 - reference/trunk/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 13:09:31 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38077 + +Author: gsilver@umich.edu +Date: 2007-11-09 13:04:35 -0500 (Fri, 09 Nov 2007) +New Revision: 38077 + +Modified: +reference/trunk/library/src/webapp/skin/default/portal.css +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12161 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Fri Nov 9 11:23:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 11:23:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 11:23:15 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by brazil.mail.umich.edu () with ESMTP id lA9GNF3u020361; + Fri, 9 Nov 2007 11:23:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47348968.69BA4.2087 ; + 9 Nov 2007 11:23:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AFB6C78014; + Fri, 9 Nov 2007 16:23:03 +0000 (GMT) +Message-ID: <200711091618.lA9GIeYb005890@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 551 + for ; + Fri, 9 Nov 2007 16:22:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 670731CBD5 + for ; Fri, 9 Nov 2007 16:22:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9GIeHQ005892 + for ; Fri, 9 Nov 2007 11:18:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9GIeYb005890 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 11:18:40 -0500 +Date: Fri, 9 Nov 2007 11:18:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r38076 - osp/trunk/presentation/api-impl/src/resources/org/theospi/portfolio/presentation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 11:23:15 2007 +X-DSPAM-Confidence: 0.8433 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38076 + +Author: john.ellis@rsmart.com +Date: 2007-11-09 11:18:33 -0500 (Fri, 09 Nov 2007) +New Revision: 38076 + +Modified: +osp/trunk/presentation/api-impl/src/resources/org/theospi/portfolio/presentation/freeform_template.xsl +Log: +SAK-11979 +added code to render output as html + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Nov 9 11:23:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 11:23:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 11:23:04 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id lA9GN36o008819; + Fri, 9 Nov 2007 11:23:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47348959.E105A.1409 ; + 9 Nov 2007 11:22:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7816878003; + Fri, 9 Nov 2007 16:22:43 +0000 (GMT) +Message-ID: <200711091618.lA9GIDkb005867@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59 + for ; + Fri, 9 Nov 2007 16:22:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D99761CC18 + for ; Fri, 9 Nov 2007 16:22:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9GIDIf005869 + for ; Fri, 9 Nov 2007 11:18:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9GIDkb005867 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 11:18:13 -0500 +Date: Fri, 9 Nov 2007 11:18:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38075 - in content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test: . util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 11:23:04 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38075 + +Author: aaronz@vt.edu +Date: 2007-11-09 11:18:06 -0500 (Fri, 09 Nov 2007) +New Revision: 38075 + +Added: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ConcurrentList.java +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Added in testing for reads (partial) and a concurrent list + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Fri Nov 9 11:01:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 11:01:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 11:01:25 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by casino.mail.umich.edu () with ESMTP id lA9G1ODL028539; + Fri, 9 Nov 2007 11:01:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4734844E.8ACD7.6208 ; + 9 Nov 2007 11:01:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CEC7377FD7; + Fri, 9 Nov 2007 16:01:04 +0000 (GMT) +Message-ID: <200711091556.lA9FumTU005814@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 824 + for ; + Fri, 9 Nov 2007 16:00:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C3EEA1EF36 + for ; Fri, 9 Nov 2007 16:00:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9FumFY005816 + for ; Fri, 9 Nov 2007 10:56:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9FumTU005814 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 10:56:48 -0500 +Date: Fri, 9 Nov 2007 10:56:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r38074 - mailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 11:01:25 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38074 + +Author: bkirschn@umich.edu +Date: 2007-11-09 10:56:46 -0500 (Fri, 09 Nov 2007) +New Revision: 38074 + +Modified: +mailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ko.properties +Log: +SAK-12159 update Korean translation + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Fri Nov 9 10:36:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 10:36:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 10:36:57 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by sleepers.mail.umich.edu () with ESMTP id lA9Fau2I001930; + Fri, 9 Nov 2007 10:36:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47347E91.E3536.21288 ; + 9 Nov 2007 10:36:53 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 197D7763DC; + Fri, 9 Nov 2007 15:34:54 +0000 (GMT) +Message-ID: <200711091532.lA9FWM8o005778@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 24 + for ; + Fri, 9 Nov 2007 15:34:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 007191E5F2 + for ; Fri, 9 Nov 2007 15:36:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9FWM2M005780 + for ; Fri, 9 Nov 2007 10:32:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9FWM8o005778 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 10:32:22 -0500 +Date: Fri, 9 Nov 2007 10:32:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38072 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 10:36:57 2007 +X-DSPAM-Confidence: 0.9759 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38072 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-09 10:31:08 -0500 (Fri, 09 Nov 2007) +New Revision: 38072 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java +Log: +SAK-12065 AuthzQueriesFacade.isUserAuthorizedToTakeAssessmentReleasedToGroups(String assessmentId) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 9 09:30:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 09:30:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 09:30:58 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id lA9EUftX027811; + Fri, 9 Nov 2007 09:30:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47346F0B.4D600.15656 ; + 9 Nov 2007 09:30:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0650A77C69; + Fri, 9 Nov 2007 14:30:32 +0000 (GMT) +Message-ID: <200711091426.lA9EQ5fl005694@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973 + for ; + Fri, 9 Nov 2007 14:30:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CD89921322 + for ; Fri, 9 Nov 2007 14:30:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9EQ5IP005696 + for ; Fri, 9 Nov 2007 09:26:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9EQ5fl005694 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 09:26:05 -0500 +Date: Fri, 9 Nov 2007 09:26:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38068 - announcement/trunk/announcement-tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 09:30:58 2007 +X-DSPAM-Confidence: 0.9791 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38068 + +Author: chmaurer@iupui.edu +Date: 2007-11-09 09:26:04 -0500 (Fri, 09 Nov 2007) +New Revision: 38068 + +Modified: +announcement/trunk/announcement-tool/.classpath +Log: +Fixing eclipse classpath + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 9 09:27:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 09:27:25 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 09:27:25 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id lA9EROg9012678; + Fri, 9 Nov 2007 09:27:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47346E38.DF6A0.6750 ; + 9 Nov 2007 09:27:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A866A77DB8; + Fri, 9 Nov 2007 14:27:01 +0000 (GMT) +Message-ID: <200711091422.lA9EMcKa005678@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 492 + for ; + Fri, 9 Nov 2007 14:26:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DCF7121322 + for ; Fri, 9 Nov 2007 14:26:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9EMcnD005680 + for ; Fri, 9 Nov 2007 09:22:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9EMcKa005678 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 09:22:38 -0500 +Date: Fri, 9 Nov 2007 09:22:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38067 - site-manage/trunk/pageorder +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 09:27:25 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38067 + +Author: chmaurer@iupui.edu +Date: 2007-11-09 09:22:37 -0500 (Fri, 09 Nov 2007) +New Revision: 38067 + +Modified: +site-manage/trunk/pageorder/.classpath +Log: +Fixing eclipse classpath + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Fri Nov 9 09:27:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 09:27:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 09:27:03 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by casino.mail.umich.edu () with ESMTP id lA9ER2KI005446; + Fri, 9 Nov 2007 09:27:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47346E30.A2134.7903 ; + 9 Nov 2007 09:26:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 59F3777DBA; + Fri, 9 Nov 2007 14:26:50 +0000 (GMT) +Message-ID: <200711091422.lA9EMQig005666@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 241 + for ; + Fri, 9 Nov 2007 14:26:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A3E8A21322 + for ; Fri, 9 Nov 2007 14:26:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9EMQcX005668 + for ; Fri, 9 Nov 2007 09:22:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9EMQig005666 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 09:22:26 -0500 +Date: Fri, 9 Nov 2007 09:22:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38066 - blog/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 09:27:03 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38066 + +Author: chmaurer@iupui.edu +Date: 2007-11-09 09:22:24 -0500 (Fri, 09 Nov 2007) +New Revision: 38066 + +Modified: +blog/trunk/.classpath +Log: +Fixing eclipse classpath + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Nov 9 09:01:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 09:01:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 09:01:43 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lA9E1gaD012573; + Fri, 9 Nov 2007 09:01:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4734683B.52C08.20990 ; + 9 Nov 2007 09:01:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 20BF077D02; + Fri, 9 Nov 2007 14:01:04 +0000 (GMT) +Message-ID: <200711091357.lA9Dv51r005516@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 480 + for ; + Fri, 9 Nov 2007 14:00:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 46AE0212FA + for ; Fri, 9 Nov 2007 14:01:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9Dv5oj005518 + for ; Fri, 9 Nov 2007 08:57:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9Dv51r005516 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 08:57:05 -0500 +Date: Fri, 9 Nov 2007 08:57:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38065 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 09:01:43 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38065 + +Author: dlhaines@umich.edu +Date: 2007-11-09 08:57:03 -0500 (Fri, 09 Nov 2007) +New Revision: 38065 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: updated CT 294 patch for 2.4.xP + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Nov 9 09:01:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 09:01:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 09:01:07 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by score.mail.umich.edu () with ESMTP id lA9E165i027033; + Fri, 9 Nov 2007 09:01:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47346812.4D9C5.21466 ; + 9 Nov 2007 09:00:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4B75775FE4; + Fri, 9 Nov 2007 14:00:42 +0000 (GMT) +Message-ID: <200711091356.lA9DuKWR005504@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990 + for ; + Fri, 9 Nov 2007 14:00:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7DC121336 + for ; Fri, 9 Nov 2007 14:00:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9DuKlA005506 + for ; Fri, 9 Nov 2007 08:56:20 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9DuKWR005504 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 08:56:20 -0500 +Date: Fri, 9 Nov 2007 08:56:20 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38064 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 09:01:07 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38064 + +Author: dlhaines@umich.edu +Date: 2007-11-09 08:56:17 -0500 (Fri, 09 Nov 2007) +New Revision: 38064 + +Modified: +ctools/trunk/builds/ctools_2-4/patches/CT-294.patch +Log: +CTools: update CT 294 patch to not change synoptic announcement. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Fri Nov 9 08:47:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 08:47:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 08:47:13 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id lA9DlD3V018238; + Fri, 9 Nov 2007 08:47:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 473464D8.E62F1.19321 ; + 9 Nov 2007 08:47:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DA14277D03; + Fri, 9 Nov 2007 13:44:54 +0000 (GMT) +Message-ID: <200711091341.lA9DfiqF005484@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 545 + for ; + Fri, 9 Nov 2007 13:44:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B16F921336 + for ; Fri, 9 Nov 2007 13:45:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9DfikV005486 + for ; Fri, 9 Nov 2007 08:41:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9DfiqF005484 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 08:41:44 -0500 +Date: Fri, 9 Nov 2007 08:41:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r38063 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 08:47:13 2007 +X-DSPAM-Confidence: 0.9803 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38063 + +Author: ajpoland@iupui.edu +Date: 2007-11-09 08:41:43 -0500 (Fri, 09 Nov 2007) +New Revision: 38063 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Nov 9 07:22:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 07:22:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 07:22:24 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by sleepers.mail.umich.edu () with ESMTP id lA9CMNUB032384; + Fri, 9 Nov 2007 07:22:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 473450F9.AE9FE.14568 ; + 9 Nov 2007 07:22:20 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D85647624D; + Fri, 9 Nov 2007 12:22:11 +0000 (GMT) +Message-ID: <200711091217.lA9CHrb9005418@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 315 + for ; + Fri, 9 Nov 2007 12:21:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93BFC21309 + for ; Fri, 9 Nov 2007 12:21:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9CHrrC005420 + for ; Fri, 9 Nov 2007 07:17:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9CHrb9005418 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 07:17:53 -0500 +Date: Fri, 9 Nov 2007 07:17:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38062 - content/branches/SAK-12105 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 07:22:24 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38062 + +Author: aaronz@vt.edu +Date: 2007-11-09 07:17:49 -0500 (Fri, 09 Nov 2007) +New Revision: 38062 + +Modified: +content/branches/SAK-12105/pom.xml +Log: +SAK-12105: got rid of the default modules and placed everything in profiles + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Fri Nov 9 06:53:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 06:53:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 06:53:59 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lA9BrwNZ012133; + Fri, 9 Nov 2007 06:53:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47344A50.B36BD.25464 ; + 9 Nov 2007 06:53:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71C7F77A2C; + Fri, 9 Nov 2007 11:53:49 +0000 (GMT) +Message-ID: <200711091149.lA9BnXY8005365@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791 + for ; + Fri, 9 Nov 2007 11:53:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4EEE820E1D + for ; Fri, 9 Nov 2007 11:53:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9BnXco005367 + for ; Fri, 9 Nov 2007 06:49:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9BnXY8005365 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 06:49:33 -0500 +Date: Fri, 9 Nov 2007 06:49:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38061 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 06:53:59 2007 +X-DSPAM-Confidence: 0.7552 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38061 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-09 06:49:25 -0500 (Fri, 09 Nov 2007) +New Revision: 38061 + +Modified: +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java +content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java +Log: +SAK-12105 Implemented getCollectionSize for JCR. Probably not terribly efficient need to write a JCR XPATH query for it. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Nov 9 06:32:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 06:32:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 06:32:17 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lA9BWGMa025835; + Fri, 9 Nov 2007 06:32:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4734453A.8AFC9.25512 ; + 9 Nov 2007 06:32:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33730779E1; + Fri, 9 Nov 2007 11:32:05 +0000 (GMT) +Message-ID: <200711091127.lA9BRhgT005351@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 730 + for ; + Fri, 9 Nov 2007 11:31:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9818D212E7 + for ; Fri, 9 Nov 2007 11:31:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9BRhaH005353 + for ; Fri, 9 Nov 2007 06:27:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9BRhgT005351 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 06:27:43 -0500 +Date: Fri, 9 Nov 2007 06:27:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38060 - content/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 06:32:17 2007 +X-DSPAM-Confidence: 0.8443 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38060 + +Author: aaronz@vt.edu +Date: 2007-11-09 06:27:35 -0500 (Fri, 09 Nov 2007) +New Revision: 38060 + +Added: +content/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ProfileTestSerializer.java +Removed: +content/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ProfileSerializerTest.java +Modified: +content/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/AllTests.java +Log: +SAK-12105: Updated naming of the tests + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Fri Nov 9 00:10:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 09 Nov 2007 00:10:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 09 Nov 2007 00:10:41 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id lA95AeGG030201; + Fri, 9 Nov 2007 00:10:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4733EBCB.C0F9A.20994 ; + 9 Nov 2007 00:10:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A834D76E81; + Fri, 9 Nov 2007 05:10:34 +0000 (GMT) +Message-ID: <200711090506.lA956FEX004573@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 73 + for ; + Fri, 9 Nov 2007 05:10:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EC8EA1FBF4 + for ; Fri, 9 Nov 2007 05:10:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA956Fmu004575 + for ; Fri, 9 Nov 2007 00:06:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA956FEX004573 + for source@collab.sakaiproject.org; Fri, 9 Nov 2007 00:06:15 -0500 +Date: Fri, 9 Nov 2007 00:06:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38059 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/types +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 9 00:10:41 2007 +X-DSPAM-Confidence: 0.8472 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38059 + +Author: jimeng@umich.edu +Date: 2007-11-09 00:06:12 -0500 (Fri, 09 Nov 2007) +New Revision: 38059 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java +Log: +SAK-11790 +Remove member-count as a condition of removing a folder + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Thu Nov 8 23:52:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 23:52:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 23:52:18 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lA94qI1b004576; + Thu, 8 Nov 2007 23:52:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4733E77C.DA2CE.14360 ; + 8 Nov 2007 23:52:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7AA057757F; + Fri, 9 Nov 2007 04:52:19 +0000 (GMT) +Message-ID: <200711090447.lA94lidO004553@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 335 + for ; + Fri, 9 Nov 2007 04:51:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8BE0021272 + for ; Fri, 9 Nov 2007 04:51:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA94liOq004555 + for ; Thu, 8 Nov 2007 23:47:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA94lidO004553 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 23:47:44 -0500 +Date: Thu, 8 Nov 2007 23:47:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38058 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 23:52:18 2007 +X-DSPAM-Confidence: 0.8443 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38058 + +Author: ostermmg@whitman.edu +Date: 2007-11-08 23:47:37 -0500 (Thu, 08 Nov 2007) +New Revision: 38058 + +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12126 +Failure to remove Collection and swallowed exception yields warning + +svn merge -c38056 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Thu Nov 8 23:43:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 23:43:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 23:43:37 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by fan.mail.umich.edu () with ESMTP id lA94hbNB002136; + Thu, 8 Nov 2007 23:43:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4733E571.6B5F3.12570 ; + 8 Nov 2007 23:43:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 255CE772A7; + Fri, 9 Nov 2007 04:43:22 +0000 (GMT) +Message-ID: <200711090439.lA94d7w6004529@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 947 + for ; + Fri, 9 Nov 2007 04:42:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 52B9221268 + for ; Fri, 9 Nov 2007 04:43:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA94d7Uk004531 + for ; Thu, 8 Nov 2007 23:39:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA94d7w6004529 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 23:39:07 -0500 +Date: Thu, 8 Nov 2007 23:39:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r38057 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 23:43:37 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38057 + +Author: ostermmg@whitman.edu +Date: 2007-11-08 23:39:04 -0500 (Thu, 08 Nov 2007) +New Revision: 38057 + +Modified: +content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12126 +Failure to remove Collection and swallowed exception yields warning + +svn merge -c38056 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Thu Nov 8 23:28:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 23:28:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 23:28:35 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by mission.mail.umich.edu () with ESMTP id lA94SYIE016404; + Thu, 8 Nov 2007 23:28:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4733E1ED.51862.23315 ; + 8 Nov 2007 23:28:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AD1E475C04; + Fri, 9 Nov 2007 04:28:28 +0000 (GMT) +Message-ID: <200711090423.lA94NvhU004506@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 367 + for ; + Fri, 9 Nov 2007 04:28:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 87C7221270 + for ; Fri, 9 Nov 2007 04:27:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA94NvH1004508 + for ; Thu, 8 Nov 2007 23:23:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA94NvhU004506 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 23:23:57 -0500 +Date: Thu, 8 Nov 2007 23:23:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r38056 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 23:28:35 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38056 + +Author: jimeng@umich.edu +Date: 2007-11-08 23:23:54 -0500 (Thu, 08 Nov 2007) +New Revision: 38056 + +Modified: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12126 +Clear thread-local cache when removing resources. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 14:25:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 14:25:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 14:25:50 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id lA8JPn9X018984; + Thu, 8 Nov 2007 14:25:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 473362B5.9C610.6087 ; + 8 Nov 2007 14:25:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3B86176803; + Thu, 8 Nov 2007 19:25:40 +0000 (GMT) +Message-ID: <200711081920.lA8JKXBu003766@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984 + for ; + Thu, 8 Nov 2007 19:25:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7CF7E1CBE0 + for ; Thu, 8 Nov 2007 19:24:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8JKXWJ003768 + for ; Thu, 8 Nov 2007 14:20:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8JKXBu003766 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 14:20:33 -0500 +Date: Thu, 8 Nov 2007 14:20:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38055 - in content/branches/SAK-12105/content-test/test/src: java/org/sakaiproject/content/test resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 14:25:50 2007 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38055 + +Author: aaronz@vt.edu +Date: 2007-11-08 14:20:25 -0500 (Thu, 08 Nov 2007) +New Revision: 38055 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +content/branches/SAK-12105/content-test/test/src/resources/testBeans.xml +Log: +SAK-12105: Updates to the testbeans timing and the load test + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 14:09:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 14:09:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 14:09:15 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lA8J9EHv020496; + Thu, 8 Nov 2007 14:09:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47335ED3.7BDAE.1708 ; + 8 Nov 2007 14:09:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3F05776EBD; + Thu, 8 Nov 2007 19:09:04 +0000 (GMT) +Message-ID: <200711081904.lA8J4mBp003703@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 525 + for ; + Thu, 8 Nov 2007 19:08:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A82D21036 + for ; Thu, 8 Nov 2007 19:08:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8J4mkZ003705 + for ; Thu, 8 Nov 2007 14:04:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8J4mBp003703 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 14:04:48 -0500 +Date: Thu, 8 Nov 2007 14:04:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38054 - content/branches/SAK-12105 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 14:09:15 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38054 + +Author: aaronz@vt.edu +Date: 2007-11-08 14:04:44 -0500 (Thu, 08 Nov 2007) +New Revision: 38054 + +Modified: +content/branches/SAK-12105/pom.xml +Log: +SAK-12105: added profiles options to the base pom + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 13:19:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 13:19:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 13:19:06 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id lA8IJ5OJ029317; + Thu, 8 Nov 2007 13:19:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4733530B.578CA.15321 ; + 8 Nov 2007 13:18:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7DD0476D39; + Thu, 8 Nov 2007 18:14:22 +0000 (GMT) +Message-ID: <200711081757.lA8HvWcQ003638@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 759 + for ; + Thu, 8 Nov 2007 18:01:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 270FC21043 + for ; Thu, 8 Nov 2007 18:01:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8HvW61003640 + for ; Thu, 8 Nov 2007 12:57:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8HvWcQ003638 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 12:57:32 -0500 +Date: Thu, 8 Nov 2007 12:57:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38053 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 13:19:06 2007 +X-DSPAM-Confidence: 0.8479 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38053 + +Author: dlhaines@umich.edu +Date: 2007-11-08 12:57:29 -0500 (Thu, 08 Nov 2007) +New Revision: 38053 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update CT 314 for build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 12:43:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 12:43:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 12:43:33 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by awakenings.mail.umich.edu () with ESMTP id lA8HhW9C000657; + Thu, 8 Nov 2007 12:43:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47334AB8.1039A.9976 ; + 8 Nov 2007 12:43:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C098976DFC; + Thu, 8 Nov 2007 17:43:20 +0000 (GMT) +Message-ID: <200711081739.lA8Hd3A7003626@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 149 + for ; + Thu, 8 Nov 2007 17:43:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D29F41F2BB + for ; Thu, 8 Nov 2007 17:43:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8Hd3po003628 + for ; Thu, 8 Nov 2007 12:39:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8Hd3A7003626 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 12:39:03 -0500 +Date: Thu, 8 Nov 2007 12:39:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38052 - ctools/trunk/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 12:43:33 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38052 + +Author: dlhaines@umich.edu +Date: 2007-11-08 12:38:58 -0500 (Thu, 08 Nov 2007) +New Revision: 38052 + +Modified: +ctools/trunk/ctools-reference/config/09PrepopulatePages.properties +Log: +CTools: CT 314 update typo for default wiki pages. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 12:25:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 12:25:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 12:25:21 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id lA8HPKX7026998; + Thu, 8 Nov 2007 12:25:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47334676.EB847.31556 ; + 8 Nov 2007 12:25:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 38A3576E05; + Thu, 8 Nov 2007 17:25:12 +0000 (GMT) +Message-ID: <200711081720.lA8HKok7003565@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 311 + for ; + Thu, 8 Nov 2007 17:24:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B3A331F212 + for ; Thu, 8 Nov 2007 17:24:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8HKpMC003567 + for ; Thu, 8 Nov 2007 12:20:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8HKok7003565 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 12:20:50 -0500 +Date: Thu, 8 Nov 2007 12:20:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38051 - ctools/branches/ctools_2-4/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 12:25:21 2007 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38051 + +Author: dlhaines@umich.edu +Date: 2007-11-08 12:20:45 -0500 (Thu, 08 Nov 2007) +New Revision: 38051 + +Modified: +ctools/branches/ctools_2-4/ctools-reference/config/09PrepopulatePages.properties +Log: +CTools: CT-314, fix extra blank line in default wiki pages specification. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 11:21:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 11:21:22 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 11:21:22 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by brazil.mail.umich.edu () with ESMTP id lA8GLLGZ002684; + Thu, 8 Nov 2007 11:21:21 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4733377B.E893F.3822 ; + 8 Nov 2007 11:21:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6CFE76C4F; + Thu, 8 Nov 2007 16:21:15 +0000 (GMT) +Message-ID: <200711081617.lA8GH36u003504@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 746 + for ; + Thu, 8 Nov 2007 16:21:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 300BB1F22A + for ; Thu, 8 Nov 2007 16:21:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8GH3Ep003506 + for ; Thu, 8 Nov 2007 11:17:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8GH36u003504 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 11:17:03 -0500 +Date: Thu, 8 Nov 2007 11:17:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38050 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 11:21:22 2007 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38050 + +Author: dlhaines@umich.edu +Date: 2007-11-08 11:17:01 -0500 (Thu, 08 Nov 2007) +New Revision: 38050 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update CT 294 patch yet again + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 11:20:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 11:20:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 11:20:05 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id lA8GK4Z8028757; + Thu, 8 Nov 2007 11:20:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4733372E.B3E13.26983 ; + 8 Nov 2007 11:20:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 941AF76C54; + Thu, 8 Nov 2007 16:19:57 +0000 (GMT) +Message-ID: <200711081615.lA8GFgoU003492@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 189 + for ; + Thu, 8 Nov 2007 16:19:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6E4E71F06E + for ; Thu, 8 Nov 2007 16:19:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8GFgkG003494 + for ; Thu, 8 Nov 2007 11:15:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8GFgoU003492 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 11:15:42 -0500 +Date: Thu, 8 Nov 2007 11:15:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38049 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 11:20:05 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38049 + +Author: dlhaines@umich.edu +Date: 2007-11-08 11:15:40 -0500 (Thu, 08 Nov 2007) +New Revision: 38049 + +Modified: +ctools/trunk/builds/ctools_2-4/patches/CT-294.patch +Log: +CTools: CT 294 patch yet again. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Thu Nov 8 11:05:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 11:05:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 11:05:09 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by sleepers.mail.umich.edu () with ESMTP id lA8G58Xc017622; + Thu, 8 Nov 2007 11:05:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 473333AE.5F8E3.28435 ; + 8 Nov 2007 11:05:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 928B274FD8; + Thu, 8 Nov 2007 16:04:59 +0000 (GMT) +Message-ID: <200711081600.lA8G0fmR003454@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 872 + for ; + Thu, 8 Nov 2007 16:04:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDB991F06E + for ; Thu, 8 Nov 2007 16:04:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8G0fvP003456 + for ; Thu, 8 Nov 2007 11:00:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8G0fmR003454 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 11:00:41 -0500 +Date: Thu, 8 Nov 2007 11:00:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r38048 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 11:05:09 2007 +X-DSPAM-Confidence: 0.7608 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38048 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-08 11:00:34 -0500 (Thu, 08 Nov 2007) +New Revision: 38048 + +Modified: +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +Log: +SAK-12105 I guess this never got merged in. Need to check to see if a variable is null before using it because it blows up on the JCRContentService (which never injents the particular sql thing, but still extends the DBContentSerivce). + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 10:53:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 10:53:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 10:53:27 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by fan.mail.umich.edu () with ESMTP id lA8FrQ5n020918; + Thu, 8 Nov 2007 10:53:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 473330F0.DDBC0.6651 ; + 8 Nov 2007 10:53:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2097B76B77; + Thu, 8 Nov 2007 15:48:23 +0000 (GMT) +Message-ID: <200711081549.lA8Fn5bY003409@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 46 + for ; + Thu, 8 Nov 2007 15:48:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D461D20F83 + for ; Thu, 8 Nov 2007 15:53:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8Fn5GY003411 + for ; Thu, 8 Nov 2007 10:49:05 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8Fn5bY003409 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:49:05 -0500 +Date: Thu, 8 Nov 2007 10:49:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38047 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 10:53:27 2007 +X-DSPAM-Confidence: 0.9874 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38047 + +Author: dlhaines@umich.edu +Date: 2007-11-08 10:49:04 -0500 (Thu, 08 Nov 2007) +New Revision: 38047 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update CT 294 patch for 2.4.xP + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 10:52:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 10:52:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 10:52:12 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id lA8FqBkP029564; + Thu, 8 Nov 2007 10:52:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473330A5.C99A8.8703 ; + 8 Nov 2007 10:52:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3603276B61; + Thu, 8 Nov 2007 15:47:07 +0000 (GMT) +Message-ID: <200711081547.lA8FlpZX003397@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 309 + for ; + Thu, 8 Nov 2007 15:46:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0577920F83 + for ; Thu, 8 Nov 2007 15:51:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8FlphV003399 + for ; Thu, 8 Nov 2007 10:47:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8FlpZX003397 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:47:51 -0500 +Date: Thu, 8 Nov 2007 10:47:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38046 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 10:52:12 2007 +X-DSPAM-Confidence: 0.8488 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38046 + +Author: dlhaines@umich.edu +Date: 2007-11-08 10:47:50 -0500 (Thu, 08 Nov 2007) +New Revision: 38046 + +Modified: +ctools/trunk/builds/ctools_2-4/patches/CT-294.patch +Log: +CTools: update CT-294.patch for 2.4.xP + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Thu Nov 8 10:39:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 10:39:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 10:39:39 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id lA8Fdcgw007203; + Thu, 8 Nov 2007 10:39:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47332DB2.53532.10676 ; + 8 Nov 2007 10:39:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4E5C576B55; + Thu, 8 Nov 2007 15:34:29 +0000 (GMT) +Message-ID: <200711081535.lA8FZD3S003383@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 826 + for ; + Thu, 8 Nov 2007 15:34:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D561620F77 + for ; Thu, 8 Nov 2007 15:39:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8FZD6i003385 + for ; Thu, 8 Nov 2007 10:35:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8FZD3S003383 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:35:13 -0500 +Date: Thu, 8 Nov 2007 10:35:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r38045 - in sam/branches/SAK-12065: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author samigo-app/src/webapp/jsf/author samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 10:39:39 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38045 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-08 10:34:14 -0500 (Thu, 08 Nov 2007) +New Revision: 38045 + +Modified: +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/publishedSettings.jsp +sam/branches/SAK-12065/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentAccessControl.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java +Log: +SAK-12065. Gopal 8 N0v 2007. Added code to copy authz data to published assessments - not yet tested. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Nov 8 10:33:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 10:33:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 10:33:49 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by jacknife.mail.umich.edu () with ESMTP id lA8FXmKx013408; + Thu, 8 Nov 2007 10:33:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47332C49.BC1E1.23848 ; + 8 Nov 2007 10:33:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 33A0B757F2; + Thu, 8 Nov 2007 15:30:49 +0000 (GMT) +Message-ID: <200711081528.lA8FSZlX003371@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 996 + for ; + Thu, 8 Nov 2007 15:30:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9BE1F20F77 + for ; Thu, 8 Nov 2007 15:32:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8FSZbj003373 + for ; Thu, 8 Nov 2007 10:28:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8FSZlX003371 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:28:35 -0500 +Date: Thu, 8 Nov 2007 10:28:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38044 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 10:33:49 2007 +X-DSPAM-Confidence: 0.9883 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38044 + +Author: zqian@umich.edu +Date: 2007-11-08 10:28:34 -0500 (Thu, 08 Nov 2007) +New Revision: 38044 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-11748 into post-2-4: svn merge -r 35972:35973 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 8 09:31:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 09:31:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 09:31:39 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by chaos.mail.umich.edu () with ESMTP id lA8EVc9N009714; + Thu, 8 Nov 2007 09:31:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47331DB3.6A154.11351 ; + 8 Nov 2007 09:31:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6EF32766AD; + Thu, 8 Nov 2007 14:31:15 +0000 (GMT) +Message-ID: <200711081426.lA8EQrjc003236@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459 + for ; + Thu, 8 Nov 2007 14:30:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DBEA220F48 + for ; Thu, 8 Nov 2007 14:30:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8EQs8x003238 + for ; Thu, 8 Nov 2007 09:26:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8EQrjc003236 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:26:53 -0500 +Date: Thu, 8 Nov 2007 09:26:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38041 - osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 09:31:39 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38041 + +Author: chmaurer@iupui.edu +Date: 2007-11-08 09:26:53 -0500 (Thu, 08 Nov 2007) +New Revision: 38041 + +Modified: +osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties +osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12137 +Change wording to match + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 8 09:24:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 09:24:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 09:24:17 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by casino.mail.umich.edu () with ESMTP id lA8EOGIN013103; + Thu, 8 Nov 2007 09:24:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47331C0A.EFCA7.18839 ; + 8 Nov 2007 09:24:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D42AF76969; + Thu, 8 Nov 2007 14:24:09 +0000 (GMT) +Message-ID: <200711081419.lA8EJtkC003204@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686 + for ; + Thu, 8 Nov 2007 14:23:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2DF5220F46 + for ; Thu, 8 Nov 2007 14:23:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8EJtSZ003206 + for ; Thu, 8 Nov 2007 09:19:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8EJtkC003204 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:19:55 -0500 +Date: Thu, 8 Nov 2007 09:19:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38039 - osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 09:24:17 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38039 + +Author: chmaurer@iupui.edu +Date: 2007-11-08 09:19:54 -0500 (Thu, 08 Nov 2007) +New Revision: 38039 + +Modified: +osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties +osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12135 +Fixing typo + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Nov 8 09:13:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 09:13:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 09:13:17 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lA8EDGKM014154; + Thu, 8 Nov 2007 09:13:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47331976.9F7F3.32191 ; + 8 Nov 2007 09:13:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74C7B743D3; + Thu, 8 Nov 2007 14:13:10 +0000 (GMT) +Message-ID: <200711081408.lA8E8qI0003192@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 217 + for ; + Thu, 8 Nov 2007 14:12:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C0E7720F51 + for ; Thu, 8 Nov 2007 14:12:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8E8qRt003194 + for ; Thu, 8 Nov 2007 09:08:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8E8qI0003192 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:08:52 -0500 +Date: Thu, 8 Nov 2007 09:08:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r38038 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 09:13:17 2007 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38038 + +Author: dlhaines@umich.edu +Date: 2007-11-08 09:08:51 -0500 (Thu, 08 Nov 2007) +New Revision: 38038 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update 2.4.xP for SAK 10788 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Nov 8 09:12:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 09:12:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 09:12:02 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by chaos.mail.umich.edu () with ESMTP id lA8EC1fB030280; + Thu, 8 Nov 2007 09:12:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47331923.4AC95.24691 ; + 8 Nov 2007 09:11:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F059A727B6; + Thu, 8 Nov 2007 14:11:46 +0000 (GMT) +Message-ID: <200711081407.lA8E7Z7a003175@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 811 + for ; + Thu, 8 Nov 2007 14:11:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E463D20F51 + for ; Thu, 8 Nov 2007 14:11:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8E7Ztb003177 + for ; Thu, 8 Nov 2007 09:07:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8E7Z7a003175 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:07:35 -0500 +Date: Thu, 8 Nov 2007 09:07:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38037 - in postem/branches/oncourse_2-4-x: . components/src/webapp/WEB-INF postem-api/src/java/org/sakaiproject/api/app/postem/data postem-app postem-app/src/java/org/sakaiproject/tool/postem postem-app/src/webapp/WEB-INF postem-hbm postem-hbm/src/java/org/sakaiproject/component/app/postem/data postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 09:12:02 2007 +X-DSPAM-Confidence: 0.9915 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38037 + +Author: wagnermr@iupui.edu +Date: 2007-11-08 09:07:31 -0500 (Thu, 08 Nov 2007) +New Revision: 38037 + +Removed: +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java +Modified: +postem/branches/oncourse_2-4-x/.classpath +postem/branches/oncourse_2-4-x/components/src/webapp/WEB-INF/components.xml +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +postem/branches/oncourse_2-4-x/postem-app/pom.xml +postem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/Column.java +postem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/branches/oncourse_2-4-x/postem-app/src/webapp/WEB-INF/components.xml +postem/branches/oncourse_2-4-x/postem-hbm/pom.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +postem/branches/oncourse_2-4-x/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +svn merge -r38031:38032 https://source.sakaiproject.org/svn/postem/trunk +U .classpath +U components/src/webapp/WEB-INF/components.xml +U postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +U postem-app/src/java/org/sakaiproject/tool/postem/Column.java +U postem-app/src/webapp/WEB-INF/components.xml +C postem-app/pom.xml +U postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +D postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java +D postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml +D postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java +D postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +C postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +C postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +U postem-hbm/pom.xml +D postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java +D postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java +C postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java +------------------------------------------------------------------------ +r38032 | wagnermr@iupui.edu | 2007-11-08 08:17:45 -0500 (Thu, 08 Nov 2007) | 4 lines + +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +Back out original strategy for improving performance and implement new strategy +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 08:58:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 08:58:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 08:58:47 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lA8DwkWg016870; + Thu, 8 Nov 2007 08:58:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47331610.C05CE.32338 ; + 8 Nov 2007 08:58:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AC5307695B; + Thu, 8 Nov 2007 13:58:39 +0000 (GMT) +Message-ID: <200711081354.lA8DsPIN003095@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 648 + for ; + Thu, 8 Nov 2007 13:58:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6FB1B1EEC1 + for ; Thu, 8 Nov 2007 13:58:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DsPQw003097 + for ; Thu, 8 Nov 2007 08:54:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DsPIN003095 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:54:25 -0500 +Date: Thu, 8 Nov 2007 08:54:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38035 - entitybroker/trunk/pack +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 08:58:47 2007 +X-DSPAM-Confidence: 0.9828 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38035 + +Author: aaronz@vt.edu +Date: 2007-11-08 08:54:21 -0500 (Thu, 08 Nov 2007) +New Revision: 38035 + +Modified: +entitybroker/trunk/pack/project.xml +Log: +NOJIRA: fixed the maven 1 build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 8 08:34:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 08:34:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 08:34:42 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id lA8DYfoi004325; + Thu, 8 Nov 2007 08:34:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4733106B.7FCCB.24044 ; + 8 Nov 2007 08:34:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2A9CC74FDF; + Thu, 8 Nov 2007 13:33:34 +0000 (GMT) +Message-ID: <200711081330.lA8DUL9J002966@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 35 + for ; + Thu, 8 Nov 2007 13:33:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EFBD01EF4A + for ; Thu, 8 Nov 2007 13:34:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DUL6s002968 + for ; Thu, 8 Nov 2007 08:30:21 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DUL9J002966 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:30:21 -0500 +Date: Thu, 8 Nov 2007 08:30:21 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38034 - osp/tags/sakai_2-5-0_QA_013_GMT +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 08:34:42 2007 +X-DSPAM-Confidence: 0.8461 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38034 + +Author: chmaurer@iupui.edu +Date: 2007-11-08 08:30:19 -0500 (Thu, 08 Nov 2007) +New Revision: 38034 + +Modified: +osp/tags/sakai_2-5-0_QA_013_GMT/ +osp/tags/sakai_2-5-0_QA_013_GMT/.externals +osp/tags/sakai_2-5-0_QA_013_GMT/pom.xml +Log: +CUtting osp +gmt 2.5.013 qa tag + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Nov 8 08:30:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 08:30:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 08:30:04 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lA8DU3ML011490; + Thu, 8 Nov 2007 08:30:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47330F55.29955.16080 ; + 8 Nov 2007 08:30:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 033AE74FDF; + Thu, 8 Nov 2007 13:28:54 +0000 (GMT) +Message-ID: <200711081325.lA8DPeO5002917@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 151 + for ; + Thu, 8 Nov 2007 13:28:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 193C320F4B + for ; Thu, 8 Nov 2007 13:29:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DPeOl002919 + for ; Thu, 8 Nov 2007 08:25:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DPeO5002917 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:25:40 -0500 +Date: Thu, 8 Nov 2007 08:25:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r38033 - osp/tags +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 08:30:04 2007 +X-DSPAM-Confidence: 0.8479 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38033 + +Author: chmaurer@iupui.edu +Date: 2007-11-08 08:25:39 -0500 (Thu, 08 Nov 2007) +New Revision: 38033 + +Added: +osp/tags/sakai_2-5-0_QA_013_GMT/ +Log: +Prep for osp +gmt 2.5.013 qa tag + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Nov 8 08:22:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 08:22:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 08:22:17 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by brazil.mail.umich.edu () with ESMTP id lA8DMG4m012309; + Thu, 8 Nov 2007 08:22:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47330D82.EFE26.31751 ; + 8 Nov 2007 08:22:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D3BAB768AE; + Thu, 8 Nov 2007 13:21:10 +0000 (GMT) +Message-ID: <200711081317.lA8DHoF8002899@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 164 + for ; + Thu, 8 Nov 2007 13:20:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7EF1E20F46 + for ; Thu, 8 Nov 2007 13:21:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DHoS9002901 + for ; Thu, 8 Nov 2007 08:17:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DHoF8002899 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:17:50 -0500 +Date: Thu, 8 Nov 2007 08:17:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r38032 - in postem/trunk: . components/src/webapp/WEB-INF postem-api/src/java/org/sakaiproject/api/app/postem/data postem-app postem-app/src/java/org/sakaiproject/tool/postem postem-app/src/webapp/WEB-INF postem-hbm postem-hbm/src/java/org/sakaiproject/component/app/postem/data postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 08:22:17 2007 +X-DSPAM-Confidence: 0.9855 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38032 + +Author: wagnermr@iupui.edu +Date: 2007-11-08 08:17:45 -0500 (Thu, 08 Nov 2007) +New Revision: 38032 + +Removed: +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java +Modified: +postem/trunk/.classpath +postem/trunk/components/src/webapp/WEB-INF/components.xml +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +postem/trunk/postem-app/pom.xml +postem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/Column.java +postem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/trunk/postem-app/src/webapp/WEB-INF/components.xml +postem/trunk/postem-hbm/pom.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +postem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +Back out original strategy for improving performance and implement new strategy + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Nov 8 08:03:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 08:03:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 08:03:06 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lA8D35sp016873; + Thu, 8 Nov 2007 08:03:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47330903.608CB.9114 ; + 8 Nov 2007 08:03:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B0784750AD; + Thu, 8 Nov 2007 13:02:55 +0000 (GMT) +Message-ID: <200711081247.lA8ClTD3002885@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416 + for ; + Thu, 8 Nov 2007 12:51:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D34BA20F25 + for ; Thu, 8 Nov 2007 12:51:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8ClUaM002887 + for ; Thu, 8 Nov 2007 07:47:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8ClTD3002885 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:47:29 -0500 +Date: Thu, 8 Nov 2007 07:47:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38031 - in component/branches/SAK-12134: . component-api component-api/component component-api/component/src/java/org/sakaiproject/component component-api/component/src/java/org/sakaiproject/component/api component-api/component/src/java/org/sakaiproject/component/cover component-api/component/src/java/org/sakaiproject/component/impl component-api/component/src/java/org/sakaiproject/component/loader component-api/component/src/java/org/sakaiproject/component/loader/shared component-api/component/src/java/org/sakaiproject/component/proxy component-loader component-loader/component-loader-common component-loader/component-loader-common/impl component-loader/component-loader-common/impl/.settings component-loader/component-loader-common/impl/src component-loader/component-loader-common/impl/src/java component-loader/component-loader-common/impl/src/java/org component-loader/component-loader-common/impl/src/java/org/sakaiproject component-loader/com! + ponent-loader-common/impl/src/java/org/sakaiproject/component component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common component-loader/component-loader-server component-loader/component-loader-server/impl component-loader/component-loader-server/impl/.settings component-loader/component-loader-server/impl/src component-loader/component-loader-server/impl/src/java component-loader/component-loader-server/impl/src/java/org component-loader/component-loader-server/impl/src/java/org/sakaiproject component-loader/component-loader-server/impl/src/java/org/sakaiproject/component component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 08:03:06 2007 +X-DSPAM-Confidence: 0.5430 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38031 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-08 07:45:52 -0500 (Thu, 08 Nov 2007) +New Revision: 38031 + +Added: +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManagerException.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManagerNotAvailableException.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/ +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/ +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManagerMBean.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java +component/branches/SAK-12134/component-loader/ +component/branches/SAK-12134/component-loader/component-loader-common/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/.classpath +component/branches/SAK-12134/component-loader/component-loader-common/impl/.project +component/branches/SAK-12134/component-loader/component-loader-common/impl/.settings/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/.settings/org.eclipse.jdt.core.prefs +component/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/ +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/CommonLifecycle.java +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/CommonLifecycleEvent.java +component/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/CommonLifecycleListener.java +component/branches/SAK-12134/component-loader/component-loader-server/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/.classpath +component/branches/SAK-12134/component-loader/component-loader-server/impl/.project +component/branches/SAK-12134/component-loader/component-loader-server/impl/.settings/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/.settings/org.eclipse.jdt.core.prefs +component/branches/SAK-12134/component-loader/component-loader-server/impl/pom.xml +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/ +component/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java +component/branches/SAK-12134/component-loader/pom.xml +Modified: +component/branches/SAK-12134/component-api/.classpath +component/branches/SAK-12134/component-api/component/pom.xml +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java +component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-12134/pom.xml +Log: +SAK-12134 + +This is a working version of the Lifecycle component loader that loads the component manager based ont eh container lifecycle rather than as a result of the webapp. +It injects the a component manager mbean into the MBeanServer and this is then used by the static cover to recover the Component Manager. + +The static cover loads from the MBean and and there is a component manager proxy bean that enables the elimination of the static cover for the component manager +This bean can be created eg new instance and it will associated itself with the component manager on construction. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 07:44:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 07:44:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 07:44:03 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lA8Ci2OV018915; + Thu, 8 Nov 2007 07:44:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4733048D.A7F2.27514 ; + 8 Nov 2007 07:43:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F17D5750AD; + Thu, 8 Nov 2007 12:43:53 +0000 (GMT) +Message-ID: <200711081239.lA8CdcVd002873@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 113 + for ; + Thu, 8 Nov 2007 12:43:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B98661EF16 + for ; Thu, 8 Nov 2007 12:43:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8Cdcne002875 + for ; Thu, 8 Nov 2007 07:39:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8CdcVd002873 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:39:38 -0500 +Date: Thu, 8 Nov 2007 07:39:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38030 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 07:44:03 2007 +X-DSPAM-Confidence: 0.9886 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38030 + +Author: aaronz@vt.edu +Date: 2007-11-08 07:39:33 -0500 (Thu, 08 Nov 2007) +New Revision: 38030 + +Modified: +content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-12126: committed fix for this bug to the branch that Steve and I are working on JCR in + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 07:40:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 07:40:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 07:40:01 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by mission.mail.umich.edu () with ESMTP id lA8Ce0ID021102; + Thu, 8 Nov 2007 07:40:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47330399.EBBEC.7781 ; + 8 Nov 2007 07:39:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6CC9674311; + Thu, 8 Nov 2007 12:39:52 +0000 (GMT) +Message-ID: <200711081235.lA8CZeFn002859@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 946 + for ; + Thu, 8 Nov 2007 12:39:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 08C101EF16 + for ; Thu, 8 Nov 2007 12:39:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8CZewN002861 + for ; Thu, 8 Nov 2007 07:35:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8CZeFn002859 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:35:40 -0500 +Date: Thu, 8 Nov 2007 07:35:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38029 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 07:40:01 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38029 + +Author: aaronz@vt.edu +Date: 2007-11-08 07:35:34 -0500 (Thu, 08 Nov 2007) +New Revision: 38029 + +Modified: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Fixed the simulated items size for testing + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Nov 8 07:36:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 07:36:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 07:36:02 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by faithful.mail.umich.edu () with ESMTP id lA8Ca15E016868; + Thu, 8 Nov 2007 07:36:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 473302AB.E556A.12769 ; + 8 Nov 2007 07:35:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0A8FE74311; + Thu, 8 Nov 2007 12:35:53 +0000 (GMT) +Message-ID: <200711081231.lA8CVdG6002847@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640 + for ; + Thu, 8 Nov 2007 12:35:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 556AD1EF16 + for ; Thu, 8 Nov 2007 12:35:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8CVdQN002849 + for ; Thu, 8 Nov 2007 07:31:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8CVdG6002847 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:31:39 -0500 +Date: Thu, 8 Nov 2007 07:31:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r38028 - in portal/trunk: portal-api/api/src/java/org/sakaiproject/portal/api portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-util portal-util/util portal-util/util/src/java/org/sakaiproject/portal/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 07:36:02 2007 +X-DSPAM-Confidence: 0.7565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38028 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-08 07:30:42 -0500 (Thu, 08 Nov 2007) +New Revision: 38028 + +Added: +portal/trunk/portal-api/api/src/java/org/sakaiproject/portal/api/PageFilter.java +Modified: +portal/trunk/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java +portal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/GalleryHandler.java +portal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java +portal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java +portal/trunk/portal-util/.classpath +portal/trunk/portal-util/util/pom.xml +portal/trunk/portal-util/util/src/java/org/sakaiproject/portal/util/PortalSiteHelper.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-9620 + +Fixed the way the page lists are processed to generate structure and filtering. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 06:43:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 06:43:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 06:43:42 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by score.mail.umich.edu () with ESMTP id lA8BhfaL023590; + Thu, 8 Nov 2007 06:43:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4732F667.B69E6.24847 ; + 8 Nov 2007 06:43:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C5FC77683D; + Thu, 8 Nov 2007 11:43:34 +0000 (GMT) +Message-ID: <200711081139.lA8BdHdk002833@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 465 + for ; + Thu, 8 Nov 2007 11:43:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A96020F1A + for ; Thu, 8 Nov 2007 11:43:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8BdHF8002835 + for ; Thu, 8 Nov 2007 06:39:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8BdHdk002833 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 06:39:17 -0500 +Date: Thu, 8 Nov 2007 06:39:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38027 - content/branches/SAK-12105 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 06:43:42 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38027 + +Author: aaronz@vt.edu +Date: 2007-11-08 06:39:13 -0500 (Thu, 08 Nov 2007) +New Revision: 38027 + +Modified: +content/branches/SAK-12105/pom.xml +Log: +SAK-12105: updated POM again to make it so providers can be left out + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 06:41:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 06:41:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 06:41:36 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by casino.mail.umich.edu () with ESMTP id lA8BfZLe015073; + Thu, 8 Nov 2007 06:41:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4732F5EA.7793C.23940 ; + 8 Nov 2007 06:41:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DBDE976835; + Thu, 8 Nov 2007 11:41:28 +0000 (GMT) +Message-ID: <200711081137.lA8BbGhZ002819@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 809 + for ; + Thu, 8 Nov 2007 11:41:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0271E20F1A + for ; Thu, 8 Nov 2007 11:41:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8BbGqv002821 + for ; Thu, 8 Nov 2007 06:37:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8BbGhZ002819 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 06:37:16 -0500 +Date: Thu, 8 Nov 2007 06:37:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38026 - content/branches/SAK-12105/content-tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 06:41:36 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38026 + +Author: aaronz@vt.edu +Date: 2007-11-08 06:37:12 -0500 (Thu, 08 Nov 2007) +New Revision: 38026 + +Removed: +content/branches/SAK-12105/content-tool/pom.xml +Log: +SAK-12105: Removed unneeded pom file + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Nov 8 06:21:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 08 Nov 2007 06:21:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 08 Nov 2007 06:21:52 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lA8BLpQk004393; + Thu, 8 Nov 2007 06:21:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4732F149.AF1AE.12965 ; + 8 Nov 2007 06:21:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 520597679E; + Thu, 8 Nov 2007 11:21:43 +0000 (GMT) +Message-ID: <200711081117.lA8BHVcB002772@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 172 + for ; + Thu, 8 Nov 2007 11:21:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1DE291EE2B + for ; Thu, 8 Nov 2007 11:21:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8BHVlU002774 + for ; Thu, 8 Nov 2007 06:17:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8BHVcB002772 + for source@collab.sakaiproject.org; Thu, 8 Nov 2007 06:17:31 -0500 +Date: Thu, 8 Nov 2007 06:17:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38025 - content/branches/SAK-12105 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 8 06:21:52 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38025 + +Author: aaronz@vt.edu +Date: 2007-11-08 06:17:25 -0500 (Thu, 08 Nov 2007) +New Revision: 38025 + +Modified: +content/branches/SAK-12105/pom.xml +Log: +SAK-12105: updated pom file to use profiles with the JCR stuff + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 7 16:59:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 16:59:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 16:59:09 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by brazil.mail.umich.edu () with ESMTP id lA7Lx8wI013841; + Wed, 7 Nov 2007 16:59:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47323526.8766D.16306 ; + 7 Nov 2007 16:59:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DCBE175D5C; + Wed, 7 Nov 2007 21:58:57 +0000 (GMT) +Message-ID: <200711072154.lA7Lsown001587@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 876 + for ; + Wed, 7 Nov 2007 21:58:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA474AEEC + for ; Wed, 7 Nov 2007 21:58:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7LsoTj001589 + for ; Wed, 7 Nov 2007 16:54:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Lsown001587 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 16:54:50 -0500 +Date: Wed, 7 Nov 2007 16:54:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r38024 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 16:59:09 2007 +X-DSPAM-Confidence: 0.9876 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38024 + +Author: zqian@umich.edu +Date: 2007-11-07 16:54:46 -0500 (Wed, 07 Nov 2007) +New Revision: 38024 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +Fix to SAK-10788: If a provided id in a couse site is fake or doesn't provide any user information, Site Info appears to be like project site with empty participant list + +Watch for enrollments object being null and concatenate provider ids when there are more than one. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 15:54:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 15:54:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 15:54:02 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by panther.mail.umich.edu () with ESMTP id lA7Ks1MO024156; + Wed, 7 Nov 2007 15:54:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 473225DE.A238A.8341 ; + 7 Nov 2007 15:53:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 119FB75CF0; + Wed, 7 Nov 2007 20:53:50 +0000 (GMT) +Message-ID: <200711072049.lA7KnZNm001503@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 66 + for ; + Wed, 7 Nov 2007 20:53:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E8D0B1A37B + for ; Wed, 7 Nov 2007 20:53:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7KnZ5Q001505 + for ; Wed, 7 Nov 2007 15:49:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7KnZNm001503 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:49:35 -0500 +Date: Wed, 7 Nov 2007 15:49:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38021 - in content/branches/SAK-12105/content-test: pack/src/webapp/WEB-INF tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 15:54:02 2007 +X-DSPAM-Confidence: 0.9826 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38021 + +Author: aaronz@vt.edu +Date: 2007-11-07 15:49:27 -0500 (Wed, 07 Nov 2007) +New Revision: 38021 + +Modified: +content/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/applicationContext.xml +Log: +SAK-12105: Fixed up comments + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 15:53:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 15:53:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 15:53:20 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by mission.mail.umich.edu () with ESMTP id lA7KrI3g030125; + Wed, 7 Nov 2007 15:53:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 473225B6.7440E.11564 ; + 7 Nov 2007 15:53:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D113175CE9; + Wed, 7 Nov 2007 20:53:02 +0000 (GMT) +Message-ID: <200711072048.lA7KmoL3001491@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 739 + for ; + Wed, 7 Nov 2007 20:52:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C80EE1A37B + for ; Wed, 7 Nov 2007 20:52:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Kmo1H001493 + for ; Wed, 7 Nov 2007 15:48:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7KmoL3001491 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:48:50 -0500 +Date: Wed, 7 Nov 2007 15:48:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38020 - memory/branches/SAK-11913/memory-test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 15:53:20 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38020 + +Author: aaronz@vt.edu +Date: 2007-11-07 15:48:46 -0500 (Wed, 07 Nov 2007) +New Revision: 38020 + +Modified: +memory/branches/SAK-11913/memory-test/.classpath +Log: +SAK-11913: Fixed up the classpath + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 15:51:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 15:51:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 15:51:29 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by chaos.mail.umich.edu () with ESMTP id lA7KpPNP013146; + Wed, 7 Nov 2007 15:51:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47322545.7C246.16186 ; + 7 Nov 2007 15:51:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 36B6575CE7; + Wed, 7 Nov 2007 20:51:17 +0000 (GMT) +Message-ID: <200711072047.lA7Kl6fL001479@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 56 + for ; + Wed, 7 Nov 2007 20:51:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 298931A37B + for ; Wed, 7 Nov 2007 20:51:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Kl7fk001481 + for ; Wed, 7 Nov 2007 15:47:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Kl6fL001479 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:47:06 -0500 +Date: Wed, 7 Nov 2007 15:47:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38019 - in memory/branches/SAK-11913/memory-test: . pack pack/src/webapp/WEB-INF test test/src test/src/resources tool tool/src tool/src/webapp tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 15:51:29 2007 +X-DSPAM-Confidence: 0.9884 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38019 + +Author: aaronz@vt.edu +Date: 2007-11-07 15:46:48 -0500 (Wed, 07 Nov 2007) +New Revision: 38019 + +Added: +memory/branches/SAK-11913/memory-test/test/ +memory/branches/SAK-11913/memory-test/test/pom.xml +memory/branches/SAK-11913/memory-test/test/src/ +memory/branches/SAK-11913/memory-test/test/src/resources/ +memory/branches/SAK-11913/memory-test/test/src/resources/testBeans.xml +memory/branches/SAK-11913/memory-test/tool/ +memory/branches/SAK-11913/memory-test/tool/pom.xml +memory/branches/SAK-11913/memory-test/tool/src/ +memory/branches/SAK-11913/memory-test/tool/src/webapp/ +memory/branches/SAK-11913/memory-test/tool/src/webapp/WEB-INF/ +memory/branches/SAK-11913/memory-test/tool/src/webapp/WEB-INF/applicationContext.xml +memory/branches/SAK-11913/memory-test/tool/src/webapp/WEB-INF/web.xml +Removed: +memory/branches/SAK-11913/memory-test/impl/ +memory/branches/SAK-11913/memory-test/test/pom.xml +memory/branches/SAK-11913/memory-test/test/src/ +Modified: +memory/branches/SAK-11913/memory-test/.classpath +memory/branches/SAK-11913/memory-test/pack/pom.xml +memory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml +memory/branches/SAK-11913/memory-test/pom.xml +Log: +SAK-11913: Fixed up the test structure to use the more flexible duplex deployment option + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Wed Nov 7 15:51:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 15:51:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 15:51:07 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by awakenings.mail.umich.edu () with ESMTP id lA7Kp1qv031386; + Wed, 7 Nov 2007 15:51:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47322529.59F61.5081 ; + 7 Nov 2007 15:50:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E94D975CE3; + Wed, 7 Nov 2007 20:50:48 +0000 (GMT) +Message-ID: <200711072046.lA7Kkdf0001467@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 435 + for ; + Wed, 7 Nov 2007 20:50:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BA3881A37B + for ; Wed, 7 Nov 2007 20:50:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Kkds1001469 + for ; Wed, 7 Nov 2007 15:46:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Kkdf0001467 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:46:39 -0500 +Date: Wed, 7 Nov 2007 15:46:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r38018 - in mailtool/branches/2.5.0-SAK-11046: . help help/m2-target help/m2-target/classes help/m2-target/classes/sakai_mailtool help/src help/src/sakai_mailtool mailtool mailtool/META-INF mailtool/m2-target mailtool/m2-target/classes mailtool/m2-target/classes/org mailtool/m2-target/classes/org/sakaiproject mailtool/m2-target/classes/org/sakaiproject/tool mailtool/m2-target/classes/org/sakaiproject/tool/mailtool mailtool/m2-target/mailtool-M2 mailtool/m2-target/mailtool-M2/WEB-INF mailtool/m2-target/mailtool-M2/WEB-INF/classes mailtool/m2-target/mailtool-M2/WEB-INF/classes/org mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool mailtool/m2-target/mailtool-M2/WEB-INF/lib mailtool/m2-target/mailtool-M2/images mailtool/m2-target/mailtool-M2/mailtool mailtool/m2-target/mailtool-M2/tools mailt! + ool/scripts mailtool/src mailtool/src/bundle mailtool/src/bundle/org mailtool/src/bundle/org/sakaiproject mailtool/src/bundle/org/sakaiproject/tool mailtool/src/bundle/org/sakaiproject/tool/mailtool mailtool/src/java mailtool/src/java/org mailtool/src/java/org/sakaiproject mailtool/src/java/org/sakaiproject/tool mailtool/src/java/org/sakaiproject/tool/mailtool mailtool/src/test mailtool/src/test/org mailtool/src/test/org/sakaiproject mailtool/src/test/org/sakaiproject/tool mailtool/src/test/org/sakaiproject/tool/mailtool mailtool/src/webapp mailtool/src/webapp/WEB-INF mailtool/src/webapp/images mailtool/src/webapp/mailtool mailtool/src/webapp/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 15:51:07 2007 +X-DSPAM-Confidence: 0.6959 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38018 + +Author: kimsooil@bu.edu +Date: 2007-11-07 15:45:18 -0500 (Wed, 07 Nov 2007) +New Revision: 38018 + +Added: +mailtool/branches/2.5.0-SAK-11046/.classpath +mailtool/branches/2.5.0-SAK-11046/.project +mailtool/branches/2.5.0-SAK-11046/bin/ +mailtool/branches/2.5.0-SAK-11046/help/ +mailtool/branches/2.5.0-SAK-11046/help/m2-target/ +mailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/ +mailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/ +mailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/compose.htm +mailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/help.xml +mailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/options.htm +mailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/overview.htm +mailtool/branches/2.5.0-SAK-11046/help/m2-target/sakai-mailtool-help-M2.jar +mailtool/branches/2.5.0-SAK-11046/help/pom.xml +mailtool/branches/2.5.0-SAK-11046/help/src/ +mailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/ +mailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/compose.htm +mailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/help.xml +mailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/options.htm +mailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/overview.htm +mailtool/branches/2.5.0-SAK-11046/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/META-INF/ +mailtool/branches/2.5.0-SAK-11046/mailtool/META-INF/MANIFEST.MF +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Attachment.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Configuration.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/EmailGroup.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/EmailRole.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/EmailUser.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxGroup.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/FoothillSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Mailtool.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_ca.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_es.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_ko.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_nl.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/OptionsBean.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/RecipientSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByTree$TableEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByTree.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByUserTable$TableEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByUserTable.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectorComponent.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectorTag.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SideBySideModel$ListboxEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SideBySideModel.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SideBySideSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/TreeSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/UserSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2.war +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/META-INF/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/.faces-config.xml.faceside +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Attachment.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Configuration.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/EmailGroup.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/EmailRole.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/EmailUser.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxGroup.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/FoothillSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Mailtool.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_ca.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_es.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_ko.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_nl.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/OptionsBean.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/RecipientSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByTree$TableEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByTree.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByUserTable$TableEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByUserTable.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectorComponent.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectorTag.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SideBySideModel$ListboxEntry.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SideBySideModel.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SideBySideSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/TreeSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/UserSelector.class +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/faces-config.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/commons-beanutils-1.6.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/commons-digester-1.6.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/jmock-1.1.0.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/jsf-api-1.1.01.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/jsf-impl-1.1.01.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-app-M2.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-tool-M2.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-widgets-M2.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-widgets-sun-M2.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-util-M2.jar +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/local.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/mailtool_jsf.tld +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/web.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/hidediv.js +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/blank.gif +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/disk.gif +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/paperclip.gif +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/index.html +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool.js +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/config_refactor.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/main_onepage.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/prelude.jspf +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/results.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByFoothill.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByFoothill_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByTree.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByTree_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByUser.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByUser_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectSideBySide.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectSideBySide_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/tools/ +mailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/tools/sakai.mailtool.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/pom.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/scripts/ +mailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_medium_class.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_real_test.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_small_class.py +mailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_small_class.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_users.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/scripts/removedemo.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/src/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ca.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_es.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ko.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Attachment.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Configuration.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailGroup.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailRole.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailUser.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/FoothillSelector.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/RecipientSelector.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectByTree.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectByUserTable.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectorComponent.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectorTag.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SideBySideModel.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SideBySideSelector.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/TreeSelector.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/UserSelector.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/BaseMailtoolTest.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailListValidationTest.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailSenderTest.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolRecipientsTest.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageFromConstraint.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageSender.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageToConstraint.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtool.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtoolWithMessageSink.java +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/.faces-config.xml.faceside +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/faces-config.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/local.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/mailtool_jsf.tld +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/web.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/hidediv.js +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/blank.gif +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/disk.gif +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/paperclip.gif +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/index.html +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool.js +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/config_refactor.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/main_onepage.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/prelude.jspf +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/results.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByFoothill.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByFoothill_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByTree.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByTree_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByUser.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByUser_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectSideBySide.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectSideBySide_option.jsp +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/tools/ +mailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/tools/sakai.mailtool.xml +mailtool/branches/2.5.0-SAK-11046/mailtool/target/ +mailtool/branches/2.5.0-SAK-11046/pom.xml +Log: +trying to fix SAK-11046 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Wed Nov 7 15:47:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 15:47:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 15:47:05 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id lA7Kl45N026414; + Wed, 7 Nov 2007 15:47:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47322436.4220D.4044 ; + 7 Nov 2007 15:46:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C5C3375672; + Wed, 7 Nov 2007 20:46:42 +0000 (GMT) +Message-ID: <200711072042.lA7KgVDG001431@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 863 + for ; + Wed, 7 Nov 2007 20:46:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B1B171A37B + for ; Wed, 7 Nov 2007 20:46:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7KgVKA001433 + for ; Wed, 7 Nov 2007 15:42:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7KgVDG001431 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:42:31 -0500 +Date: Wed, 7 Nov 2007 15:42:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r38015 - mailtool/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 15:47:05 2007 +X-DSPAM-Confidence: 0.9791 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38015 + +Author: kimsooil@bu.edu +Date: 2007-11-07 15:42:28 -0500 (Wed, 07 Nov 2007) +New Revision: 38015 + +Added: +mailtool/branches/2.5.0-SAK-11046/ +Log: +Initial import. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 11:04:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 11:04:45 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 11:04:45 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id lA7G4iHD015040; + Wed, 7 Nov 2007 11:04:44 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4731E213.A623C.12063 ; + 7 Nov 2007 11:04:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 130D675862; + Wed, 7 Nov 2007 16:04:33 +0000 (GMT) +Message-ID: <200711071600.lA7G0EDs000763@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 171 + for ; + Wed, 7 Nov 2007 16:04:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2CFB720DA1 + for ; Wed, 7 Nov 2007 16:04:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7G0Elo000765 + for ; Wed, 7 Nov 2007 11:00:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7G0EDs000763 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 11:00:14 -0500 +Date: Wed, 7 Nov 2007 11:00:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r38011 - in content/branches/SAK-12105/content-test: . test/src/resources tool tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 11:04:45 2007 +X-DSPAM-Confidence: 0.9890 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38011 + +Author: aaronz@vt.edu +Date: 2007-11-07 10:58:39 -0500 (Wed, 07 Nov 2007) +New Revision: 38011 + +Modified: +content/branches/SAK-12105/content-test/.classpath +content/branches/SAK-12105/content-test/pom.xml +content/branches/SAK-12105/content-test/test/src/resources/testBeans.xml +content/branches/SAK-12105/content-test/tool/pom.xml +content/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/applicationContext.xml +Log: +SAK-12105: Tests will now run as a webapp or as a component, tests still need the fix to content hosting before they can work though +Building using the -Pwebapp will causes the tests to build and deploy as a webapp (makes it easier to write and run the tests without restarting Sakai), leaving this off will build the tests as components + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Wed Nov 7 10:57:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 10:57:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 10:57:37 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by flawless.mail.umich.edu () with ESMTP id lA7FvZmT005410; + Wed, 7 Nov 2007 10:57:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4731E069.65D5B.4624 ; + 7 Nov 2007 10:57:32 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B7262747FB; + Wed, 7 Nov 2007 15:53:27 +0000 (GMT) +Message-ID: <200711071553.lA7Fr9Ot000715@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895 + for ; + Wed, 7 Nov 2007 15:53:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7412820CA4 + for ; Wed, 7 Nov 2007 15:57:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Fr9hp000717 + for ; Wed, 7 Nov 2007 10:53:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Fr9Ot000715 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 10:53:09 -0500 +Date: Wed, 7 Nov 2007 10:53:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r38010 - in usermembership/trunk/tool/src: bundle/org/sakaiproject/umem/tool/bundle java/org/sakaiproject/umem/tool/ui webapp/usermembership +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 10:57:37 2007 +X-DSPAM-Confidence: 0.9780 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38010 + +Author: nuno@ufp.pt +Date: 2007-11-07 10:52:53 -0500 (Wed, 07 Nov 2007) +New Revision: 38010 + +Modified: +usermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages.properties +usermembership/trunk/tool/src/java/org/sakaiproject/umem/tool/ui/UserListBean.java +usermembership/trunk/tool/src/webapp/usermembership/userlist.jsp +Log: +SAK-12087: include the created and last modified date on the screen and csv export + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Wed Nov 7 10:12:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 10:12:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 10:12:05 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by flawless.mail.umich.edu () with ESMTP id lA7FC4fX004734; + Wed, 7 Nov 2007 10:12:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4731D5BF.1E110.13380 ; + 7 Nov 2007 10:12:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CD8FF72E2C; + Wed, 7 Nov 2007 15:11:57 +0000 (GMT) +Message-ID: <200711071507.lA7F7iTN032078@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477 + for ; + Wed, 7 Nov 2007 15:11:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9CEE91CF1B + for ; Wed, 7 Nov 2007 15:11:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7F7i7v032080 + for ; Wed, 7 Nov 2007 10:07:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7F7iTN032078 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 10:07:44 -0500 +Date: Wed, 7 Nov 2007 10:07:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37936 - sakai/tags +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 10:12:05 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37936 + +Author: arwhyte@umich.edu +Date: 2007-11-07 10:07:43 -0500 (Wed, 07 Nov 2007) +New Revision: 37936 + +Added: +sakai/tags/sakai_2-5-0_QA_013/ +Log: +prep QA_013 tag + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 7 10:03:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 10:03:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 10:03:37 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by fan.mail.umich.edu () with ESMTP id lA7F3a3i028119; + Wed, 7 Nov 2007 10:03:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4731D3BA.97BFB.588 ; + 7 Nov 2007 10:03:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D62A675730; + Wed, 7 Nov 2007 15:03:14 +0000 (GMT) +Message-ID: <200711071458.lA7EwwEW032003@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453 + for ; + Wed, 7 Nov 2007 15:02:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E29CB1DE75 + for ; Wed, 7 Nov 2007 15:02:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Eww0G032005 + for ; Wed, 7 Nov 2007 09:58:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EwwEW032003 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:58:58 -0500 +Date: Wed, 7 Nov 2007 09:58:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37934 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 10:03:37 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37934 + +Author: dlhaines@umich.edu +Date: 2007-11-07 09:58:19 -0500 (Wed, 07 Nov 2007) +New Revision: 37934 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: add SAK 10785 to 2.4.xP build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Wed Nov 7 10:01:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 10:01:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 10:01:20 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id lA7F1JoI023026; + Wed, 7 Nov 2007 10:01:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4731D326.E3669.30485 ; + 7 Nov 2007 10:00:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 67A3C7570E; + Wed, 7 Nov 2007 15:00:53 +0000 (GMT) +Message-ID: <200711071456.lA7EuTt3031990@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 883 + for ; + Wed, 7 Nov 2007 15:00:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1CE5620C4E + for ; Wed, 7 Nov 2007 15:00:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EuT7f031992 + for ; Wed, 7 Nov 2007 09:56:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EuTt3031990 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:56:29 -0500 +Date: Wed, 7 Nov 2007 09:56:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37933 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 10:01:20 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37933 + +Author: dlhaines@umich.edu +Date: 2007-11-07 09:56:16 -0500 (Wed, 07 Nov 2007) +New Revision: 37933 + +Added: +ctools/trunk/builds/ctools_2-4/patches/SAK-10785.patch +Log: +CTools: add patch for SAK 10785 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Wed Nov 7 09:55:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 09:55:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 09:55:55 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id lA7Etsgm017735; + Wed, 7 Nov 2007 09:55:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4731D1DE.60151.11463 ; + 7 Nov 2007 09:55:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C522F756C1; + Wed, 7 Nov 2007 14:55:23 +0000 (GMT) +Message-ID: <200711071451.lA7EpDDg031975@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 153 + for ; + Wed, 7 Nov 2007 14:55:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E983D1DE75 + for ; Wed, 7 Nov 2007 14:55:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EpDF9031977 + for ; Wed, 7 Nov 2007 09:51:13 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EpDDg031975 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:51:13 -0500 +Date: Wed, 7 Nov 2007 09:51:13 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37932 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 09:55:55 2007 +X-DSPAM-Confidence: 0.9768 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37932 + +Author: ajpoland@iupui.edu +Date: 2007-11-07 09:51:12 -0500 (Wed, 07 Nov 2007) +New Revision: 37932 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Nov 7 09:51:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 09:51:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 09:51:05 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by score.mail.umich.edu () with ESMTP id lA7Ep4T9032217; + Wed, 7 Nov 2007 09:51:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4731D0D2.A33BD.27438 ; + 7 Nov 2007 09:51:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 049B8756BA; + Wed, 7 Nov 2007 14:50:59 +0000 (GMT) +Message-ID: <200711071446.lA7Ekif7031927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 465 + for ; + Wed, 7 Nov 2007 14:50:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 125201DE75 + for ; Wed, 7 Nov 2007 14:50:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EkiAu031929 + for ; Wed, 7 Nov 2007 09:46:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Ekif7031927 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:46:44 -0500 +Date: Wed, 7 Nov 2007 09:46:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37931 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 09:51:05 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37931 + +Author: mmmay@indiana.edu +Date: 2007-11-07 09:46:41 -0500 (Wed, 07 Nov 2007) +New Revision: 37931 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37906:37907 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37906:37907 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37907 | zqian@umich.edu | 2007-11-06 20:44:29 -0500 (Tue, 06 Nov 2007) | 3 lines + +Fix to SAK-11497:Issues with editing assignment submissions that are past the due date + +Need to check the grade type before scaling the grades +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Nov 7 09:50:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 09:50:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 09:50:29 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lA7EoSii032063; + Wed, 7 Nov 2007 09:50:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4731D0AD.9555A.31760 ; + 7 Nov 2007 09:50:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 13D60756B5; + Wed, 7 Nov 2007 14:50:14 +0000 (GMT) +Message-ID: <200711071445.lA7EjvXb031915@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791 + for ; + Wed, 7 Nov 2007 14:49:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 522581DE75 + for ; Wed, 7 Nov 2007 14:49:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EjvjB031917 + for ; Wed, 7 Nov 2007 09:45:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EjvXb031915 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:45:57 -0500 +Date: Wed, 7 Nov 2007 09:45:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37930 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 09:50:29 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37930 + +Author: zqian@umich.edu +Date: 2007-11-07 09:45:55 -0500 (Wed, 07 Nov 2007) +New Revision: 37930 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge into post-2-4 fix to SAK-10785: Student should not receive textarea after re-submission when viewing assignment + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Wed Nov 7 09:49:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 09:49:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 09:49:26 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by mission.mail.umich.edu () with ESMTP id lA7EnQGj007508; + Wed, 7 Nov 2007 09:49:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4731D063.176E0.10479 ; + 7 Nov 2007 09:49:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D635D756A9; + Wed, 7 Nov 2007 14:49:06 +0000 (GMT) +Message-ID: <200711071444.lA7EiRa3031891@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 317 + for ; + Wed, 7 Nov 2007 14:48:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 652B11DE75 + for ; Wed, 7 Nov 2007 14:48:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EiSXT031893 + for ; Wed, 7 Nov 2007 09:44:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EiRa3031891 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:44:27 -0500 +Date: Wed, 7 Nov 2007 09:44:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37928 - in search/branches/sakai_2-5-x/search-impl/impl/src: java/org/sakaiproject/search/transaction/impl test/org/sakaiproject/search/indexer/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 09:49:26 2007 +X-DSPAM-Confidence: 0.7000 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37928 + +Author: mmmay@indiana.edu +Date: 2007-11-07 09:44:18 -0500 (Wed, 07 Nov 2007) +New Revision: 37928 + +Added: +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorDisabled.java +Removed: +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorTest.java +Modified: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/LocalTransactionSequenceImpl.java +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/TransactionSequenceImpl.java +search/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalTests.java +Log: +svn merge -r 36523:36524 https://source.sakaiproject.org/svn/search/trunk +D search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorTest.java +A search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorDisabled.java +U search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalTests.java +U search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/TransactionSequenceImpl.java +U search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/LocalTransactionSequenceImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/search mmmay$ svn log -r 36523:36524 https://source.sakaiproject.org/svn/search/trunk +------------------------------------------------------------------------ +r36524 | ian@caret.cam.ac.uk | 2007-10-05 13:12:26 -0400 (Fri, 05 Oct 2007) | 3 lines + +Sequence Generator causes problems with maven unit tests, so diabling it. + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Wed Nov 7 09:49:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 09:49:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 09:49:15 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by brazil.mail.umich.edu () with ESMTP id lA7EnFKs031428; + Wed, 7 Nov 2007 09:49:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4731D065.B5F75.23425 ; + 7 Nov 2007 09:49:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71FE0756B2; + Wed, 7 Nov 2007 14:49:07 +0000 (GMT) +Message-ID: <200711071444.lA7EiTmZ031900@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 632 + for ; + Wed, 7 Nov 2007 14:48:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8E2011DE75 + for ; Wed, 7 Nov 2007 14:48:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EiTik031902 + for ; Wed, 7 Nov 2007 09:44:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EiTmZ031900 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:44:29 -0500 +Date: Wed, 7 Nov 2007 09:44:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37929 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 09:49:15 2007 +X-DSPAM-Confidence: 0.9782 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37929 + +Author: ajpoland@iupui.edu +Date: 2007-11-07 09:44:28 -0500 (Wed, 07 Nov 2007) +New Revision: 37929 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Nov 7 09:47:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 09:47:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 09:47:53 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by godsend.mail.umich.edu () with ESMTP id lA7ElqVp010205; + Wed, 7 Nov 2007 09:47:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4731D013.1719C.24937 ; + 7 Nov 2007 09:47:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A9F1274FD8; + Wed, 7 Nov 2007 14:47:45 +0000 (GMT) +Message-ID: <200711071443.lA7EhYtg031879@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 795 + for ; + Wed, 7 Nov 2007 14:47:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B92951DE75 + for ; Wed, 7 Nov 2007 14:47:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EhY9B031881 + for ; Wed, 7 Nov 2007 09:43:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EhYtg031879 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:43:34 -0500 +Date: Wed, 7 Nov 2007 09:43:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37927 - gradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 09:47:53 2007 +X-DSPAM-Confidence: 0.9908 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37927 + +Author: rjlowe@iupui.edu +Date: 2007-11-07 09:43:32 -0500 (Wed, 07 Nov 2007) +New Revision: 37927 + +Modified: +gradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +Log: +svn merge -c 37926 https://source.sakaiproject.org/svn/gradebook/trunk +U service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +svn log -r 37926:37926 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37926 | rjlowe@iupui.edu | 2007-11-07 09:39:25 -0500 (Wed, 07 Nov 2007) | 4 lines + +SAK-12017 +http://bugs.sakaiproject.org/jira/browse/SAK-12017 +GB / "All Grades" sort by course grade +Fails when you have a student with a null course grade record - Fixed +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Wed Nov 7 09:43:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 09:43:56 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 09:43:56 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by score.mail.umich.edu () with ESMTP id lA7EhsCt027981; + Wed, 7 Nov 2007 09:43:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4731CF20.63326.703 ; + 7 Nov 2007 09:43:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4854B75682; + Wed, 7 Nov 2007 14:43:42 +0000 (GMT) +Message-ID: <200711071439.lA7EdRTx031846@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 135 + for ; + Wed, 7 Nov 2007 14:43:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A74201DE75 + for ; Wed, 7 Nov 2007 14:43:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EdR1G031848 + for ; Wed, 7 Nov 2007 09:39:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EdRTx031846 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:39:27 -0500 +Date: Wed, 7 Nov 2007 09:39:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37926 - gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 09:43:56 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37926 + +Author: rjlowe@iupui.edu +Date: 2007-11-07 09:39:25 -0500 (Wed, 07 Nov 2007) +New Revision: 37926 + +Modified: +gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +Log: +SAK-12017 +http://bugs.sakaiproject.org/jira/browse/SAK-12017 +GB / "All Grades" sort by course grade +Fails when you have a student with a null course grade record - Fixed + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 08:18:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 08:18:08 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 08:18:08 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by faithful.mail.umich.edu () with ESMTP id lA7DI8j6029465; + Wed, 7 Nov 2007 08:18:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 4731BB0A.AAF9E.11146 ; + 7 Nov 2007 08:18:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 074847559F; + Wed, 7 Nov 2007 13:17:56 +0000 (GMT) +Message-ID: <200711071313.lA7DDpVd031711@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1020 + for ; + Wed, 7 Nov 2007 13:17:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1D9D81DE02 + for ; Wed, 7 Nov 2007 13:17:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7DDpJG031713 + for ; Wed, 7 Nov 2007 08:13:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7DDpVd031711 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:13:51 -0500 +Date: Wed, 7 Nov 2007 08:13:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37925 - in content/branches/SAK-12105/content-test: test/src tool/src +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 08:18:08 2007 +X-DSPAM-Confidence: 0.9897 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37925 + +Author: aaronz@vt.edu +Date: 2007-11-07 08:13:44 -0500 (Wed, 07 Nov 2007) +New Revision: 37925 + +Removed: +content/branches/SAK-12105/content-test/test/src/main/ +content/branches/SAK-12105/content-test/tool/src/main/ +Log: +SAK-12105: Updates to the file structure since I forgot that Sakai cannot use the standard maven 2 file structure.... trashing the maven 2 standard main folders + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 08:16:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 08:16:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 08:16:39 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by fan.mail.umich.edu () with ESMTP id lA7DGcaP001832; + Wed, 7 Nov 2007 08:16:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4731BAB0.B7819.13768 ; + 7 Nov 2007 08:16:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 37B2B75494; + Wed, 7 Nov 2007 13:16:20 +0000 (GMT) +Message-ID: <200711071312.lA7DCGgY031698@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 999 + for ; + Wed, 7 Nov 2007 13:16:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5E1231DE02 + for ; Wed, 7 Nov 2007 13:16:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7DCGxR031700 + for ; Wed, 7 Nov 2007 08:12:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7DCGgY031698 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:12:16 -0500 +Date: Wed, 7 Nov 2007 08:12:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37924 - in content/branches/SAK-12105/content-test: . test/src test/src/java test/src/main test/src/resources tool/src tool/src/main tool/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 08:16:39 2007 +X-DSPAM-Confidence: 0.8498 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37924 + +Author: aaronz@vt.edu +Date: 2007-11-07 08:11:59 -0500 (Wed, 07 Nov 2007) +New Revision: 37924 + +Added: +content/branches/SAK-12105/content-test/test/src/java/ +content/branches/SAK-12105/content-test/test/src/java/org/ +content/branches/SAK-12105/content-test/test/src/resources/ +content/branches/SAK-12105/content-test/test/src/resources/testBeans.xml +content/branches/SAK-12105/content-test/tool/src/webapp/ +content/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/ +Removed: +content/branches/SAK-12105/content-test/test/src/java/org/ +content/branches/SAK-12105/content-test/test/src/main/java/ +content/branches/SAK-12105/content-test/test/src/main/resources/ +content/branches/SAK-12105/content-test/test/src/resources/testBeans.xml +content/branches/SAK-12105/content-test/tool/src/main/webapp/ +content/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/ +Modified: +content/branches/SAK-12105/content-test/.classpath +Log: +SAK-12105: Updates to the file structure since I forgot that Sakai cannot use the standard maven 2 file structure.... oh well, maybe a few more cycles of commits + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 08:11:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 08:11:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 08:11:43 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id lA7DBgPO008875; + Wed, 7 Nov 2007 08:11:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4731B988.6DBB1.5071 ; + 7 Nov 2007 08:11:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 66122751F2; + Wed, 7 Nov 2007 13:11:33 +0000 (GMT) +Message-ID: <200711071307.lA7D7SJN031686@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 162 + for ; + Wed, 7 Nov 2007 13:11:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4F9801DE02 + for ; Wed, 7 Nov 2007 13:11:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7D7Sk7031688 + for ; Wed, 7 Nov 2007 08:07:28 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7D7SJN031686 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:07:28 -0500 +Date: Wed, 7 Nov 2007 08:07:28 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37923 - in content/branches/SAK-12105/content-test: . pack test test/src/main/java/org/sakaiproject/content/test test/src/main/java/org/sakaiproject/content/test/mocks tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 08:11:43 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37923 + +Author: aaronz@vt.edu +Date: 2007-11-07 08:07:06 -0500 (Wed, 07 Nov 2007) +New Revision: 37923 + +Modified: +content/branches/SAK-12105/content-test/pack/pom.xml +content/branches/SAK-12105/content-test/pom.xml +content/branches/SAK-12105/content-test/test/pom.xml +content/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/CollectionSizeTests.java +content/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +content/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/mocks/MockContentCollection.java +content/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/mocks/MockContentEntity.java +content/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/mocks/MockContentResource.java +content/branches/SAK-12105/content-test/tool/pom.xml +Log: +SAK-12105: Updates to the maven 2 builds and minor cleanup of java + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Wed Nov 7 08:08:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 08:08:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 08:08:00 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by godsend.mail.umich.edu () with ESMTP id lA7D7xWT018692; + Wed, 7 Nov 2007 08:07:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4731B8AA.5631D.9943 ; + 7 Nov 2007 08:07:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 32561751A2; + Wed, 7 Nov 2007 13:07:51 +0000 (GMT) +Message-ID: <200711071303.lA7D3kdB031674@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 338 + for ; + Wed, 7 Nov 2007 13:07:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 234CE1BC77 + for ; Wed, 7 Nov 2007 13:07:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7D3krX031676 + for ; Wed, 7 Nov 2007 08:03:46 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7D3kdB031674 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:03:46 -0500 +Date: Wed, 7 Nov 2007 08:03:46 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37922 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 08:08:00 2007 +X-DSPAM-Confidence: 0.9789 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37922 + +Author: ajpoland@iupui.edu +Date: 2007-11-07 08:03:45 -0500 (Wed, 07 Nov 2007) +New Revision: 37922 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Nov 7 08:04:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 08:04:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 08:04:30 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lA7D4TX3023135; + Wed, 7 Nov 2007 08:04:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4731B7D7.9C2A6.16606 ; + 7 Nov 2007 08:04:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8EDCB7025A; + Wed, 7 Nov 2007 13:04:17 +0000 (GMT) +Message-ID: <200711071300.lA7D0CuH031660@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 726 + for ; + Wed, 7 Nov 2007 13:04:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E3D751DDF7 + for ; Wed, 7 Nov 2007 13:04:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7D0CUL031662 + for ; Wed, 7 Nov 2007 08:00:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7D0CuH031660 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:00:12 -0500 +Date: Wed, 7 Nov 2007 08:00:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37921 - in postem/branches/oncourse_2-4-x: . components/src/webapp/WEB-INF postem-api/src/java/org/sakaiproject/api/app/postem/data postem-app postem-app/src/java/org/sakaiproject/tool/postem postem-app/src/webapp/WEB-INF postem-app/src/webapp/postem postem-hbm postem-hbm/src/java/org/sakaiproject/component/app/postem/data postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 08:04:30 2007 +X-DSPAM-Confidence: 0.9947 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37921 + +Author: wagnermr@iupui.edu +Date: 2007-11-07 08:00:08 -0500 (Wed, 07 Nov 2007) +New Revision: 37921 + +Added: +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java +Removed: +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +Modified: +postem/branches/oncourse_2-4-x/.classpath +postem/branches/oncourse_2-4-x/components/src/webapp/WEB-INF/components.xml +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java +postem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +postem/branches/oncourse_2-4-x/postem-app/pom.xml +postem/branches/oncourse_2-4-x/postem-app/project.xml +postem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/Column.java +postem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/branches/oncourse_2-4-x/postem-app/src/webapp/WEB-INF/components.xml +postem/branches/oncourse_2-4-x/postem-app/src/webapp/postem/main.jsp +postem/branches/oncourse_2-4-x/postem-hbm/pom.xml +postem/branches/oncourse_2-4-x/postem-hbm/project.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +postem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +postem/branches/oncourse_2-4-x/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +svn merge -r37683:37772 https://source.sakaiproject.org/svn/postem/trunk +U .classpath +U components/src/webapp/WEB-INF/components.xml +U postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +U postem-app/src/java/org/sakaiproject/tool/postem/Column.java +U postem-app/src/webapp/WEB-INF/components.xml +U postem-app/src/webapp/postem/main.jsp +C postem-app/pom.xml +U postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +C postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +C postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java +A postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml +U postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +C postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +U postem-hbm/pom.xml +A postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java +A postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +U postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java + +------------------------------------------------------------------------ +r37684 | wagnermr@iupui.edu | 2007-11-01 14:24:54 -0400 (Thu, 01 Nov 2007) | 3 lines + +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +------------------------------------------------------------------------ +r37689 | wagnermr@iupui.edu | 2007-11-01 15:53:31 -0400 (Thu, 01 Nov 2007) | 4 lines + +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +fix for uploads with extra white space around username + +------------------------------------------------------------------------ +r37772 | wagnermr@iupui.edu | 2007-11-06 09:36:08 -0500 (Tue, 06 Nov 2007) | 4 lines + +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +optimize individual student view +------------------------------------------------------------------------ + + +svn merge -r37806:37807 https://source.sakaiproject.org/svn/postem/trunk +G postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +G postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +G postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java + +------------------------------------------------------------------------ +r37807 | wagnermr@iupui.edu | 2007-11-06 15:38:01 -0500 (Tue, 06 Nov 2007) | 4 lines + +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +problems with headings on update +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 07:57:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 07:57:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 07:57:55 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lA7CvsnO004001; + Wed, 7 Nov 2007 07:57:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4731B64D.547.8607 ; + 7 Nov 2007 07:57:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BCC6275584; + Wed, 7 Nov 2007 12:57:47 +0000 (GMT) +Message-ID: <200711071253.lA7CrjlB031648@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 573 + for ; + Wed, 7 Nov 2007 12:57:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BA5631DC21 + for ; Wed, 7 Nov 2007 12:57:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Crjhr031650 + for ; Wed, 7 Nov 2007 07:53:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CrjlB031648 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:53:45 -0500 +Date: Wed, 7 Nov 2007 07:53:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37920 - content/branches/SAK-12105/content-test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 07:57:55 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37920 + +Author: aaronz@vt.edu +Date: 2007-11-07 07:53:40 -0500 (Wed, 07 Nov 2007) +New Revision: 37920 + +Removed: +content/branches/SAK-12105/content-test/main/ +Modified: +content/branches/SAK-12105/content-test/.classpath +Log: +SAK-12105: Updates to the file structure (finally done I think) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 07:56:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 07:56:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 07:56:26 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id lA7CuQwC027079; + Wed, 7 Nov 2007 07:56:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4731B5E6.D6953.12964 ; + 7 Nov 2007 07:56:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 37DD47557A; + Wed, 7 Nov 2007 12:56:04 +0000 (GMT) +Message-ID: <200711071251.lA7Cpu01031625@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 387 + for ; + Wed, 7 Nov 2007 12:55:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CC24F1DC21 + for ; Wed, 7 Nov 2007 12:55:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CpuvI031627 + for ; Wed, 7 Nov 2007 07:51:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Cpu01031625 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:51:56 -0500 +Date: Wed, 7 Nov 2007 07:51:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37919 - in content/branches/SAK-12105/content-test: . main main/resources main/src/java test test/src test/src/main test/src/main/java test/src/main/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 07:56:26 2007 +X-DSPAM-Confidence: 0.8485 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37919 + +Author: aaronz@vt.edu +Date: 2007-11-07 07:51:42 -0500 (Wed, 07 Nov 2007) +New Revision: 37919 + +Added: +content/branches/SAK-12105/content-test/test/ +content/branches/SAK-12105/content-test/test/pom.xml +content/branches/SAK-12105/content-test/test/src/ +content/branches/SAK-12105/content-test/test/src/main/ +content/branches/SAK-12105/content-test/test/src/main/java/ +content/branches/SAK-12105/content-test/test/src/main/java/org/ +content/branches/SAK-12105/content-test/test/src/main/resources/ +content/branches/SAK-12105/content-test/test/src/main/resources/testBeans.xml +Removed: +content/branches/SAK-12105/content-test/main/pom.xml +content/branches/SAK-12105/content-test/main/resources/testBeans.xml +content/branches/SAK-12105/content-test/main/src/java/org/ +Log: +SAK-12105: Updates to the file structure + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 07:53:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 07:53:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 07:53:27 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by flawless.mail.umich.edu () with ESMTP id lA7CrQIw019367; + Wed, 7 Nov 2007 07:53:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4731B541.D930.18077 ; + 7 Nov 2007 07:53:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 41A4E7556D; + Wed, 7 Nov 2007 12:53:19 +0000 (GMT) +Message-ID: <200711071249.lA7CnFIK031613@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 994 + for ; + Wed, 7 Nov 2007 12:53:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 62C471DC21 + for ; Wed, 7 Nov 2007 12:53:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CnF5A031615 + for ; Wed, 7 Nov 2007 07:49:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CnFIK031613 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:49:15 -0500 +Date: Wed, 7 Nov 2007 07:49:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37918 - content/branches/SAK-12105/content-test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 07:53:27 2007 +X-DSPAM-Confidence: 0.8468 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37918 + +Author: aaronz@vt.edu +Date: 2007-11-07 07:49:10 -0500 (Wed, 07 Nov 2007) +New Revision: 37918 + +Added: +content/branches/SAK-12105/content-test/main/ +Removed: +content/branches/SAK-12105/content-test/test/ +Log: +SAK-12105: Updates to the file structure + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 07:52:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 07:52:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 07:52:33 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id lA7CqW02021013; + Wed, 7 Nov 2007 07:52:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4731B502.98F3F.4925 ; + 7 Nov 2007 07:52:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DBD947556C; + Wed, 7 Nov 2007 12:52:16 +0000 (GMT) +Message-ID: <200711071248.lA7CmE9d031601@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494 + for ; + Wed, 7 Nov 2007 12:52:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EC9E11DC21 + for ; Wed, 7 Nov 2007 12:52:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CmEWF031603 + for ; Wed, 7 Nov 2007 07:48:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CmE9d031601 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:48:14 -0500 +Date: Wed, 7 Nov 2007 07:48:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37917 - content/branches/SAK-12105/content-test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 07:52:33 2007 +X-DSPAM-Confidence: 0.8474 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37917 + +Author: aaronz@vt.edu +Date: 2007-11-07 07:48:08 -0500 (Wed, 07 Nov 2007) +New Revision: 37917 + +Added: +content/branches/SAK-12105/content-test/test/ +Removed: +content/branches/SAK-12105/content-test/impl/ +Log: +SAK-12105: Updates to the file structure + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 07:51:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 07:51:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 07:51:42 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lA7Cpf6s001756; + Wed, 7 Nov 2007 07:51:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4731B4D8.4D7FF.31862 ; + 7 Nov 2007 07:51:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7FCFA75569; + Wed, 7 Nov 2007 12:51:30 +0000 (GMT) +Message-ID: <200711071247.lA7ClPiH031589@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 389 + for ; + Wed, 7 Nov 2007 12:51:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C1A551DC21 + for ; Wed, 7 Nov 2007 12:51:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7ClPfY031591 + for ; Wed, 7 Nov 2007 07:47:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7ClPiH031589 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:47:25 -0500 +Date: Wed, 7 Nov 2007 07:47:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37916 - content/branches/SAK-12105/content-test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 07:51:42 2007 +X-DSPAM-Confidence: 0.8462 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37916 + +Author: aaronz@vt.edu +Date: 2007-11-07 07:47:20 -0500 (Wed, 07 Nov 2007) +New Revision: 37916 + +Removed: +content/branches/SAK-12105/content-test/test/ +Modified: +content/branches/SAK-12105/content-test/.classpath +Log: +SAK-12105: Updates to the file structure + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 07:50:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 07:50:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 07:50:36 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lA7CoYaH011304; + Wed, 7 Nov 2007 07:50:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4731B493.4FC03.1413 ; + 7 Nov 2007 07:50:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 054937553A; + Wed, 7 Nov 2007 12:50:17 +0000 (GMT) +Message-ID: <200711071246.lA7CkC6N031566@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 344 + for ; + Wed, 7 Nov 2007 12:50:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 834761DD21 + for ; Wed, 7 Nov 2007 12:50:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CkCfj031568 + for ; Wed, 7 Nov 2007 07:46:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CkC6N031566 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:46:12 -0500 +Date: Wed, 7 Nov 2007 07:46:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37915 - in content/branches/SAK-12105/content-test: impl/src/java/org/sakaiproject/content/test impl/src/java/org/sakaiproject/content/test/mocks test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 07:50:36 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37915 + +Author: aaronz@vt.edu +Date: 2007-11-07 07:45:55 -0500 (Wed, 07 Nov 2007) +New Revision: 37915 + +Added: +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/ +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/MockContentCollection.java +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/MockContentEntity.java +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/MockContentResource.java +Removed: +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/MockContentCollection.java +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/MockContentEntity.java +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/MockContentResource.java +Log: +SAK-12105: Updates to the file structure + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 07:28:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 07:28:52 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 07:28:52 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by awakenings.mail.umich.edu () with ESMTP id lA7CSpGZ029282; + Wed, 7 Nov 2007 07:28:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4731AF7C.1DA2F.3224 ; + 7 Nov 2007 07:28:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4C0AF70843; + Wed, 7 Nov 2007 12:28:40 +0000 (GMT) +Message-ID: <200711071211.lA7CB36I031511@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 40 + for ; + Wed, 7 Nov 2007 12:14:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 33F691DC55 + for ; Wed, 7 Nov 2007 12:14:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CB3ws031513 + for ; Wed, 7 Nov 2007 07:11:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CB36I031511 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:11:03 -0500 +Date: Wed, 7 Nov 2007 07:11:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37914 - in content/branches/SAK-12105/content-test: . impl pack pack/src/webapp/WEB-INF tool tool/src/main/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 07:28:52 2007 +X-DSPAM-Confidence: 0.8482 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37914 + +Author: aaronz@vt.edu +Date: 2007-11-07 07:10:51 -0500 (Wed, 07 Nov 2007) +New Revision: 37914 + +Modified: +content/branches/SAK-12105/content-test/.classpath +content/branches/SAK-12105/content-test/impl/pom.xml +content/branches/SAK-12105/content-test/pack/pom.xml +content/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12105/content-test/tool/pom.xml +content/branches/SAK-12105/content-test/tool/src/main/webapp/WEB-INF/applicationContext.xml +Log: +SAK-12105: Tests should now be able to be located centrally and deployed into a component or a webapp (still need to work on the maven 2 builds though) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 06:47:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 06:47:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 06:47:12 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by awakenings.mail.umich.edu () with ESMTP id lA7Bl9MS019577; + Wed, 7 Nov 2007 06:47:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4731A5B7.D3013.20309 ; + 7 Nov 2007 06:47:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B02C8731EF; + Wed, 7 Nov 2007 11:47:02 +0000 (GMT) +Message-ID: <200711071142.lA7Bgole031442@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 449 + for ; + Wed, 7 Nov 2007 11:46:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8CBE91CF3E + for ; Wed, 7 Nov 2007 11:46:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Bgobv031444 + for ; Wed, 7 Nov 2007 06:42:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Bgole031442 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 06:42:50 -0500 +Date: Wed, 7 Nov 2007 06:42:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37913 - in content/branches/SAK-12105/content-test/impl: . resources src +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 06:47:12 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37913 + +Author: aaronz@vt.edu +Date: 2007-11-07 06:42:43 -0500 (Wed, 07 Nov 2007) +New Revision: 37913 + +Added: +content/branches/SAK-12105/content-test/impl/resources/ +content/branches/SAK-12105/content-test/impl/resources/testBeans.xml +Removed: +content/branches/SAK-12105/content-test/impl/src/testBeans.xml +Log: +SAK-12105: Updates to the file structure + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Nov 7 06:44:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 06:44:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 06:44:50 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by jacknife.mail.umich.edu () with ESMTP id lA7BinTt019421; + Wed, 7 Nov 2007 06:44:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4731A52C.2ADB9.6496 ; + 7 Nov 2007 06:44:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 83EA573C47; + Wed, 7 Nov 2007 11:44:45 +0000 (GMT) +Message-ID: <200711071140.lA7BeZD7031430@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 564 + for ; + Wed, 7 Nov 2007 11:44:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3331C1CF3E + for ; Wed, 7 Nov 2007 11:44:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7BeZ3S031432 + for ; Wed, 7 Nov 2007 06:40:35 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7BeZD7031430 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 06:40:35 -0500 +Date: Wed, 7 Nov 2007 06:40:35 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37912 - in content/branches/SAK-12105/content-test/impl/src: . java +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 06:44:50 2007 +X-DSPAM-Confidence: 0.8436 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37912 + +Author: aaronz@vt.edu +Date: 2007-11-07 06:40:28 -0500 (Wed, 07 Nov 2007) +New Revision: 37912 + +Added: +content/branches/SAK-12105/content-test/impl/src/testBeans.xml +Removed: +content/branches/SAK-12105/content-test/impl/src/java/testBeans.xml +Log: +SAK-12105: Updates to the file structure + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Wed Nov 7 06:39:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 07 Nov 2007 06:39:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 07 Nov 2007 06:39:09 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lA7Bd8mt014593; + Wed, 7 Nov 2007 06:39:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4731A3D6.85E14.27751 ; + 7 Nov 2007 06:39:05 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4AB1375494; + Wed, 7 Nov 2007 11:39:03 +0000 (GMT) +Message-ID: <200711071134.lA7BYmn3031416@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 999 + for ; + Wed, 7 Nov 2007 11:38:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7CABF1DD09 + for ; Wed, 7 Nov 2007 11:38:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7BYmac031418 + for ; Wed, 7 Nov 2007 06:34:48 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7BYmn3031416 + for source@collab.sakaiproject.org; Wed, 7 Nov 2007 06:34:48 -0500 +Date: Wed, 7 Nov 2007 06:34:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r37911 - content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Nov 7 06:39:09 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37911 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-07 06:34:43 -0500 (Wed, 07 Nov 2007) +New Revision: 37911 + +Added: +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/CollectionSizeTests.java +Log: +SAK-12105 Tests for ContentHostingService.getCollectionSize + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Nov 6 17:47:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:47:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:47:14 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by awakenings.mail.umich.edu () with ESMTP id lA6MlDr1030960; + Tue, 6 Nov 2007 17:47:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4730EEEA.B457E.6724 ; + 6 Nov 2007 17:47:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07F5074CA5; + Tue, 6 Nov 2007 22:47:05 +0000 (GMT) +Message-ID: <200711062242.lA6Mgvq8029354@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1005 + for ; + Tue, 6 Nov 2007 22:46:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 61CFD20DA2 + for ; Tue, 6 Nov 2007 22:46:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MgvFT029356 + for ; Tue, 6 Nov 2007 17:42:57 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Mgvq8029354 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:42:57 -0500 +Date: Tue, 6 Nov 2007 17:42:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37835 - component/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:47:14 2007 +X-DSPAM-Confidence: 0.9757 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37835 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-06 17:42:47 -0500 (Tue, 06 Nov 2007) +New Revision: 37835 + +Added: +component/branches/SAK-12134/ +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12134 +Creating branch + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 17:31:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:31:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:31:53 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by panther.mail.umich.edu () with ESMTP id lA6MVqJW022896; + Tue, 6 Nov 2007 17:31:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4730EB51.E92A6.25642 ; + 6 Nov 2007 17:31:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5432B71E77; + Tue, 6 Nov 2007 22:31:44 +0000 (GMT) +Message-ID: <200711062227.lA6MRcrm029340@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 215 + for ; + Tue, 6 Nov 2007 22:31:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ABEDE20D0A + for ; Tue, 6 Nov 2007 22:31:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MRcCl029342 + for ; Tue, 6 Nov 2007 17:27:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MRcrm029340 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:27:38 -0500 +Date: Tue, 6 Nov 2007 17:27:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37834 - site-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:31:53 2007 +X-DSPAM-Confidence: 0.7628 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37834 + +Author: mmmay@indiana.edu +Date: 2007-11-06 17:27:37 -0500 (Tue, 06 Nov 2007) +New Revision: 37834 + +Modified: +site-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages.properties +Log: +svn merge -r 37373:37374 https://source.sakaiproject.org/svn/site-manage/trunk +U pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages.properties +in-143-196:~/java/2-5/sakai_2-5-x/site-manage mmmay$ svn log -r 37373:37374 https://source.sakaiproject.org/svn/site-manage/trunk +------------------------------------------------------------------------ +r37373 | joshua.ryan@asu.edu | 2007-10-25 02:49:22 -0400 (Thu, 25 Oct 2007) | 2 lines + +SAK-11230 edit the tool title to match page title when page title is edited, but if the page only contains one tool. + +------------------------------------------------------------------------ +r37374 | joshua.ryan@asu.edu | 2007-10-25 03:38:11 -0400 (Thu, 25 Oct 2007) | 2 lines + +SAK-9858 fixed typo + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 17:28:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:28:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:28:40 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id lA6MSdM5001349; + Tue, 6 Nov 2007 17:28:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4730EA8C.BBD63.19882 ; + 6 Nov 2007 17:28:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0FFCF7421B; + Tue, 6 Nov 2007 22:28:27 +0000 (GMT) +Message-ID: <200711062224.lA6MOC2s029328@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 108 + for ; + Tue, 6 Nov 2007 22:27:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4793620D0A + for ; Tue, 6 Nov 2007 22:28:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MOCqg029330 + for ; Tue, 6 Nov 2007 17:24:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MOC2s029328 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:24:12 -0500 +Date: Tue, 6 Nov 2007 17:24:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37833 - web/branches/sakai_2-5-x/news-tool/tool/src/java/org/sakaiproject/news/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:28:40 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37833 + +Author: mmmay@indiana.edu +Date: 2007-11-06 17:24:11 -0500 (Tue, 06 Nov 2007) +New Revision: 37833 + +Modified: +web/branches/sakai_2-5-x/news-tool/tool/src/java/org/sakaiproject/news/tool/NewsAction.java +Log: +svn merge -r 37436:37437 https://source.sakaiproject.org/svn/web/trunkU news-tool/tool/src/java/org/sakaiproject/news/tool/NewsAction.java +in-143-196:~/java/2-5/sakai_2-5-x/web mmmay$ svn log -r 37436:37437 https://source.sakaiproject.org/svn/web/trunk +------------------------------------------------------------------------ +r37437 | joshua.ryan@asu.edu | 2007-10-28 03:52:20 -0400 (Sun, 28 Oct 2007) | 2 lines + +SAK-7686 removed page title as a required field for editing the config of a news tool that is on a page with other tools, as page title isn't even in the config form if the news tool isn't on it's own page... + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 17:22:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:22:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:22:43 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lA6MMgFX017754; + Tue, 6 Nov 2007 17:22:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4730E92C.EC17D.7945 ; + 6 Nov 2007 17:22:39 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6C65D74840; + Tue, 6 Nov 2007 22:22:35 +0000 (GMT) +Message-ID: <200711062218.lA6MIO65029316@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760 + for ; + Tue, 6 Nov 2007 22:22:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 69E8720A80 + for ; Tue, 6 Nov 2007 22:22:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MIOOT029318 + for ; Tue, 6 Nov 2007 17:18:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MIO65029316 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:18:24 -0500 +Date: Tue, 6 Nov 2007 17:18:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37832 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:22:43 2007 +X-DSPAM-Confidence: 0.7009 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37832 + +Author: mmmay@indiana.edu +Date: 2007-11-06 17:18:23 -0500 (Tue, 06 Nov 2007) +New Revision: 37832 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm +Log: +svn merge -r 37472:37473 https://source.sakaiproject.org/svn/site-manage/trunk +U site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm +in-143-196:~/java/2-5/sakai_2-5-x/site-manage mmmay$ svn log -r 37472:37473 https://source.sakaiproject.org/svn/site-manage/trunk +------------------------------------------------------------------------ +r37473 | zqian@umich.edu | 2007-10-29 14:03:46 -0400 (Mon, 29 Oct 2007) | 1 line + +fix to SAK-12074: cannot drop added sections in site setup +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Nov 6 17:22:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:22:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:22:13 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lA6MMCl7032633; + Tue, 6 Nov 2007 17:22:12 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4730E90E.207E0.3130 ; + 6 Nov 2007 17:22:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A999A748FC; + Tue, 6 Nov 2007 22:22:04 +0000 (GMT) +Message-ID: <200711062217.lA6MHxZv029304@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 315 + for ; + Tue, 6 Nov 2007 22:21:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C4AEE20A80 + for ; Tue, 6 Nov 2007 22:21:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MHxC4029306 + for ; Tue, 6 Nov 2007 17:17:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MHxZv029304 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:17:59 -0500 +Date: Tue, 6 Nov 2007 17:17:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r37831 - message/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:22:13 2007 +X-DSPAM-Confidence: 0.8430 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37831 + +Author: josrodri@iupui.edu +Date: 2007-11-06 17:17:57 -0500 (Tue, 06 Nov 2007) +New Revision: 37831 + +Modified: +message/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl/BaseMessageService.java +Log: +SAK-11455: commented out schInv.delete event logging + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Nov 6 17:20:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:20:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:20:51 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by awakenings.mail.umich.edu () with ESMTP id lA6MKopt015884; + Tue, 6 Nov 2007 17:20:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4730E8BB.D6F2C.2337 ; + 6 Nov 2007 17:20:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 36EC5748AA; + Tue, 6 Nov 2007 22:20:40 +0000 (GMT) +Message-ID: <200711062216.lA6MGbjF029292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 288 + for ; + Tue, 6 Nov 2007 22:20:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E612420A80 + for ; Tue, 6 Nov 2007 22:20:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MGbjT029294 + for ; Tue, 6 Nov 2007 17:16:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MGbjF029292 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:16:37 -0500 +Date: Tue, 6 Nov 2007 17:16:37 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r37830 - announcement/trunk/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:20:51 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37830 + +Author: josrodri@iupui.edu +Date: 2007-11-06 17:16:35 -0500 (Tue, 06 Nov 2007) +New Revision: 37830 + +Modified: +announcement/trunk/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl/SiteEmailNotificationAnnc.java +Log: +SAK-11457: commented out annc.schInv.notify event logging + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 17:11:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:11:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:11:46 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id lA6MBcNX013253; + Tue, 6 Nov 2007 17:11:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4730E68F.583E9.30567 ; + 6 Nov 2007 17:11:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A225374C1E; + Tue, 6 Nov 2007 22:11:25 +0000 (GMT) +Message-ID: <200711062207.lA6M7NCu029269@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 944 + for ; + Tue, 6 Nov 2007 22:11:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3B1FF20A80 + for ; Tue, 6 Nov 2007 22:11:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6M7Nnu029271 + for ; Tue, 6 Nov 2007 17:07:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6M7NCu029269 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:07:23 -0500 +Date: Tue, 6 Nov 2007 17:07:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37829 - mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:11:46 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37829 + +Author: mmmay@indiana.edu +Date: 2007-11-06 17:07:22 -0500 (Tue, 06 Nov 2007) +New Revision: 37829 + +Modified: +mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java +Log: +svn merge -r 37639:37640 https://source.sakaiproject.org/svn/mailtool/trunk +U mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +U mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java +in-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37639:37640 https://source.sakaiproject.org/svn/mailtool/trunk +------------------------------------------------------------------------ +r37640 | kimsooil@bu.edu | 2007-10-30 14:02:55 -0400 (Tue, 30 Oct 2007) | 2 lines + +Fix SAK-11067 (more info - sender & recipient(s)) + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 17:10:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:10:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:10:21 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id lA6MAK52025137; + Tue, 6 Nov 2007 17:10:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4730E646.35C9A.15720 ; + 6 Nov 2007 17:10:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E1886748FC; + Tue, 6 Nov 2007 22:10:12 +0000 (GMT) +Message-ID: <200711062206.lA6M6BR2029257@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 449 + for ; + Tue, 6 Nov 2007 22:10:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E652B20A80 + for ; Tue, 6 Nov 2007 22:10:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6M6BCT029259 + for ; Tue, 6 Nov 2007 17:06:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6M6BR2029257 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:06:11 -0500 +Date: Tue, 6 Nov 2007 17:06:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37828 - mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:10:21 2007 +X-DSPAM-Confidence: 0.7612 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37828 + +Author: mmmay@indiana.edu +Date: 2007-11-06 17:06:10 -0500 (Tue, 06 Nov 2007) +New Revision: 37828 + +Modified: +mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java +Log: +svn merge -r 37634:37635 https://source.sakaiproject.org/svn/mailtool/trunk +U mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +U mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java +in-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37634:37635 https://source.sakaiproject.org/svn/mailtool/trunk +------------------------------------------------------------------------ +r37635 | kimsooil@bu.edu | 2007-10-30 12:56:52 -0400 (Tue, 30 Oct 2007) | 2 lines + +Fix SAK-11067 +(two log events-mailsent&optionUpdated will posted) +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 17:08:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:08:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:08:42 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id lA6M8fo6018891; + Tue, 6 Nov 2007 17:08:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4730E5E3.CF9A0.6197 ; + 6 Nov 2007 17:08:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0D019748FC; + Tue, 6 Nov 2007 22:08:34 +0000 (GMT) +Message-ID: <200711062204.lA6M4MAl029245@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 976 + for ; + Tue, 6 Nov 2007 22:08:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2649620A80 + for ; Tue, 6 Nov 2007 22:08:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6M4MLq029247 + for ; Tue, 6 Nov 2007 17:04:22 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6M4MAl029245 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:04:22 -0500 +Date: Tue, 6 Nov 2007 17:04:22 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37827 - mailtool/branches/sakai_2-5-x/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:08:42 2007 +X-DSPAM-Confidence: 0.7615 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37827 + +Author: mmmay@indiana.edu +Date: 2007-11-06 17:04:21 -0500 (Tue, 06 Nov 2007) +New Revision: 37827 + +Modified: +mailtool/branches/sakai_2-5-x/mailtool/pom.xml +Log: +svn merge -r 37501:37502 https://source.sakaiproject.org/svn/mailtool/trunk +U mailtool/pom.xml +in-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37501:37502 https://source.sakaiproject.org/svn/mailtool/trunk +------------------------------------------------------------------------ +r37502 | kimsooil@bu.edu | 2007-10-29 16:55:37 -0400 (Mon, 29 Oct 2007) | 1 line + +fix of SAK-11552 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 17:03:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 17:03:23 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 17:03:23 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id lA6M3MuW011462; + Tue, 6 Nov 2007 17:03:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4730E4A2.21A7D.18580 ; + 6 Nov 2007 17:03:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 32AA97421B; + Tue, 6 Nov 2007 22:03:11 +0000 (GMT) +Message-ID: <200711062159.lA6Lx8Ps029219@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 641 + for ; + Tue, 6 Nov 2007 22:02:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 14DDF1DC07 + for ; Tue, 6 Nov 2007 22:02:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Lx8sO029221 + for ; Tue, 6 Nov 2007 16:59:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Lx8Ps029219 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:59:08 -0500 +Date: Tue, 6 Nov 2007 16:59:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37826 - memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 17:03:23 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37826 + +Author: mmmay@indiana.edu +Date: 2007-11-06 16:59:07 -0500 (Tue, 06 Nov 2007) +New Revision: 37826 + +Modified: +memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +Log: +svn merge -r 37765:37766 https://source.sakaiproject.org/svn/memory/trunk +U memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/memory mmmay$ svn log -r 37765:37766 https://source.sakaiproject.org/svn/memory/trunk +------------------------------------------------------------------------ +r37766 | ian@caret.cam.ac.uk | 2007-11-05 19:31:18 -0500 (Mon, 05 Nov 2007) | 8 lines + +http://jira.sakaiproject.org/jira/browse/SAK-12116 +Fixed + +Converted back to Vectors as we know this is safe and works. +We need to look at this from a concurrent point of view asap. In the re-writen versions I used a CHM. + + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 6 16:52:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:52:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:52:48 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by sleepers.mail.umich.edu () with ESMTP id lA6Lqlvn029883; + Tue, 6 Nov 2007 16:52:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4730E22A.4A905.11809 ; + 6 Nov 2007 16:52:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B8EE73203; + Tue, 6 Nov 2007 21:52:44 +0000 (GMT) +Message-ID: <200711062148.lA6LmWhF029184@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 515 + for ; + Tue, 6 Nov 2007 21:52:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5080A1DC07 + for ; Tue, 6 Nov 2007 21:52:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LmWUb029186 + for ; Tue, 6 Nov 2007 16:48:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LmWhF029184 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:48:32 -0500 +Date: Tue, 6 Nov 2007 16:48:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37825 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:52:48 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37825 + +Author: dlhaines@umich.edu +Date: 2007-11-06 16:48:30 -0500 (Tue, 06 Nov 2007) +New Revision: 37825 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update 2.4.xP build revisions number. Add CT 125 patch. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 6 16:51:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:51:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:51:24 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id lA6LpNZt026730; + Tue, 6 Nov 2007 16:51:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4730E1D6.2ECD1.7428 ; + 6 Nov 2007 16:51:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B23F74B78; + Tue, 6 Nov 2007 21:51:20 +0000 (GMT) +Message-ID: <200711062147.lA6Ll3BW029171@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 748 + for ; + Tue, 6 Nov 2007 21:50:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E2B0A1DC07 + for ; Tue, 6 Nov 2007 21:50:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Ll3d7029173 + for ; Tue, 6 Nov 2007 16:47:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Ll3BW029171 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:47:03 -0500 +Date: Tue, 6 Nov 2007 16:47:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37824 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:51:24 2007 +X-DSPAM-Confidence: 0.9871 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37824 + +Author: dlhaines@umich.edu +Date: 2007-11-06 16:47:01 -0500 (Tue, 06 Nov 2007) +New Revision: 37824 + +Added: +ctools/trunk/builds/ctools_2-4/patches/CT-125.patch +Modified: +ctools/trunk/builds/ctools_2-4/patches/SAK-11215.patch +Log: +CTools: add patch for CT-125. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Nov 6 16:44:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:44:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:44:20 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by godsend.mail.umich.edu () with ESMTP id lA6LiJhJ011306; + Tue, 6 Nov 2007 16:44:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4730E02D.2CF37.25810 ; + 6 Nov 2007 16:44:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DE4B674C10; + Tue, 6 Nov 2007 21:44:12 +0000 (GMT) +Message-ID: <200711062140.lA6Le6HE029158@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 704 + for ; + Tue, 6 Nov 2007 21:43:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CEC1B20A64 + for ; Tue, 6 Nov 2007 21:43:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Le6dO029160 + for ; Tue, 6 Nov 2007 16:40:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Le6HE029158 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:40:06 -0500 +Date: Tue, 6 Nov 2007 16:40:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r37823 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:44:20 2007 +X-DSPAM-Confidence: 0.6936 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37823 + +Author: josrodri@iupui.edu +Date: 2007-11-06 16:40:05 -0500 (Tue, 06 Nov 2007) +New Revision: 37823 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java +Log: +SAK-12133: spreadsheet item add, if item already exists but no points possible is in spreadsheet for that item, just keep current value + +SAK-9762: added an init() method to do code currently processed in constructor. Kept an empty constructor for easy backing out. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 6 16:33:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:33:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:33:20 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lA6LXJbn003510; + Tue, 6 Nov 2007 16:33:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4730DD98.27C9A.8946 ; + 6 Nov 2007 16:33:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4E2E47492E; + Tue, 6 Nov 2007 21:33:13 +0000 (GMT) +Message-ID: <200711062129.lA6LT8Md029144@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 961 + for ; + Tue, 6 Nov 2007 21:33:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EDC271DC0B + for ; Tue, 6 Nov 2007 21:32:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LT83u029146 + for ; Tue, 6 Nov 2007 16:29:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LT8Md029144 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:29:08 -0500 +Date: Tue, 6 Nov 2007 16:29:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37822 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:33:20 2007 +X-DSPAM-Confidence: 0.8480 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37822 + +Author: zqian@umich.edu +Date: 2007-11-06 16:29:05 -0500 (Tue, 06 Nov 2007) +New Revision: 37822 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-12047 into post-2-4 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 16:24:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:24:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:24:04 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by flawless.mail.umich.edu () with ESMTP id lA6LO38f029646; + Tue, 6 Nov 2007 16:24:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4730DB65.40DFA.9945 ; + 6 Nov 2007 16:23:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0FB9D74868; + Tue, 6 Nov 2007 21:23:50 +0000 (GMT) +Message-ID: <200711062119.lA6LJYtU029107@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 539 + for ; + Tue, 6 Nov 2007 21:23:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A80591DC2B + for ; Tue, 6 Nov 2007 21:23:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LJYqL029109 + for ; Tue, 6 Nov 2007 16:19:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LJYtU029107 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:19:34 -0500 +Date: Tue, 6 Nov 2007 16:19:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37821 - sakai/tags/sakai_2-5-0_QA_012 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:24:04 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37821 + +Author: arwhyte@umich.edu +Date: 2007-11-06 16:19:32 -0500 (Tue, 06 Nov 2007) +New Revision: 37821 + +Modified: +sakai/tags/sakai_2-5-0_QA_012/ +sakai/tags/sakai_2-5-0_QA_012/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 6 16:22:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:22:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:22:26 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by panther.mail.umich.edu () with ESMTP id lA6LMOCA008252; + Tue, 6 Nov 2007 16:22:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4730DB05.5D5E3.14462 ; + 6 Nov 2007 16:22:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DB22174151; + Tue, 6 Nov 2007 21:22:11 +0000 (GMT) +Message-ID: <200711062117.lA6LHtU1029095@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 569 + for ; + Tue, 6 Nov 2007 21:21:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 54B991DC0F + for ; Tue, 6 Nov 2007 21:21:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LHuse029097 + for ; Tue, 6 Nov 2007 16:17:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LHtU1029095 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:17:55 -0500 +Date: Tue, 6 Nov 2007 16:17:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37820 - gradebook/trunk/app/ui/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:22:26 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37820 + +Author: rjlowe@iupui.edu +Date: 2007-11-06 16:17:54 -0500 (Tue, 06 Nov 2007) +New Revision: 37820 + +Modified: +gradebook/trunk/app/ui/src/webapp/js/spreadsheetUI.js +Log: +SAK-11588 - All Grades page crashes IE when large number of students/gb items viewed at once + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 6 16:06:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:06:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:06:00 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by fan.mail.umich.edu () with ESMTP id lA6L5wb0031497; + Tue, 6 Nov 2007 16:05:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4730D731.35C0C.17360 ; + 6 Nov 2007 16:05:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 11EE050E21; + Tue, 6 Nov 2007 21:05:54 +0000 (GMT) +Message-ID: <200711062101.lA6L1h6r029056@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 752 + for ; + Tue, 6 Nov 2007 21:05:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 47DE620A70 + for ; Tue, 6 Nov 2007 21:05:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6L1ht4029058 + for ; Tue, 6 Nov 2007 16:01:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6L1h6r029056 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:01:43 -0500 +Date: Tue, 6 Nov 2007 16:01:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37819 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:06:00 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37819 + +Author: dlhaines@umich.edu +Date: 2007-11-06 16:01:41 -0500 (Tue, 06 Nov 2007) +New Revision: 37819 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update assignments post 2.4 revision. Update build revision number. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 16:04:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:04:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:04:37 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by casino.mail.umich.edu () with ESMTP id lA6L4bTZ006849; + Tue, 6 Nov 2007 16:04:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4730D6D4.CA6F4.31438 ; + 6 Nov 2007 16:04:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 34C9574AE5; + Tue, 6 Nov 2007 21:04:19 +0000 (GMT) +Message-ID: <200711062100.lA6L00fB029030@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 753 + for ; + Tue, 6 Nov 2007 21:03:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E0BA320A70 + for ; Tue, 6 Nov 2007 21:03:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6L00JF029032 + for ; Tue, 6 Nov 2007 16:00:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6L00fB029030 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:00:00 -0500 +Date: Tue, 6 Nov 2007 16:00:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37818 - sakai/tags/sakai_2-5-0_QA_012 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:04:37 2007 +X-DSPAM-Confidence: 0.9868 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37818 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:59:59 -0500 (Tue, 06 Nov 2007) +New Revision: 37818 + +Removed: +sakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/ +Log: +delete directory + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 16:01:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:01:59 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:01:59 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id lA6L1wGW005092; + Tue, 6 Nov 2007 16:01:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4730D640.587EF.7952 ; + 6 Nov 2007 16:01:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E727A74BE4; + Tue, 6 Nov 2007 21:01:52 +0000 (GMT) +Message-ID: <200711062057.lA6KvWRD029013@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909 + for ; + Tue, 6 Nov 2007 21:01:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8343520A64 + for ; Tue, 6 Nov 2007 21:01:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KvW52029015 + for ; Tue, 6 Nov 2007 15:57:32 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KvWRD029013 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:57:32 -0500 +Date: Tue, 6 Nov 2007 15:57:32 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37817 - in sakai/tags/sakai_2-5-0_QA_012: pack-demo sakai_2-5-0_QA_011/pack-demo +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:01:59 2007 +X-DSPAM-Confidence: 0.9828 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37817 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:57:31 -0500 (Tue, 06 Nov 2007) +New Revision: 37817 + +Added: +sakai/tags/sakai_2-5-0_QA_012/pack-demo/pom.xml +Removed: +sakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/pack-demo/pom.xml +Log: +move contents + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 16:01:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 16:01:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 16:01:51 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id lA6L1otM016167; + Tue, 6 Nov 2007 16:01:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4730D638.B8F0.15953 ; + 6 Nov 2007 16:01:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 66AAE748D7; + Tue, 6 Nov 2007 21:01:44 +0000 (GMT) +Message-ID: <200711062057.lA6KvN1k029000@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 636 + for ; + Tue, 6 Nov 2007 21:01:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 896E020A64 + for ; Tue, 6 Nov 2007 21:01:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KvNsG029002 + for ; Tue, 6 Nov 2007 15:57:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KvN1k029000 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:57:23 -0500 +Date: Tue, 6 Nov 2007 15:57:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37816 - sakai/tags/sakai_2-5-0_QA_012 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 16:01:51 2007 +X-DSPAM-Confidence: 0.9832 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37816 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:57:22 -0500 (Tue, 06 Nov 2007) +New Revision: 37816 + +Added: +sakai/tags/sakai_2-5-0_QA_012/pack-demo/ +Log: +make dir + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 15:59:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:59:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:59:14 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id lA6KxEM7023483; + Tue, 6 Nov 2007 15:59:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4730D59C.EF0.1843 ; + 6 Nov 2007 15:59:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6BEBC74BE7; + Tue, 6 Nov 2007 20:59:07 +0000 (GMT) +Message-ID: <200711062055.lA6Kt09d028986@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 583 + for ; + Tue, 6 Nov 2007 20:58:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 11C401340D + for ; Tue, 6 Nov 2007 20:58:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Kt0HY028988 + for ; Tue, 6 Nov 2007 15:55:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Kt09d028986 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:55:00 -0500 +Date: Tue, 6 Nov 2007 15:55:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37815 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:59:14 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37815 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:54:59 -0500 (Tue, 06 Nov 2007) +New Revision: 37815 + +Added: +sakai/tags/sakai_2-5-0_QA_012/ECLv1.txt +Removed: +sakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/ECLv1.txt +Log: +move contents + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 6 15:59:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:59:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:59:12 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by brazil.mail.umich.edu () with ESMTP id lA6KxAHZ001866; + Tue, 6 Nov 2007 15:59:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4730D597.7F391.1712 ; + 6 Nov 2007 15:59:06 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4EB2074BE6; + Tue, 6 Nov 2007 20:59:03 +0000 (GMT) +Message-ID: <200711062054.lA6Ksl6m028973@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 482 + for ; + Tue, 6 Nov 2007 20:58:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8552E1340D + for ; Tue, 6 Nov 2007 20:58:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KslVH028975 + for ; Tue, 6 Nov 2007 15:54:47 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Ksl6m028973 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:54:47 -0500 +Date: Tue, 6 Nov 2007 15:54:47 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37814 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:59:12 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37814 + +Author: dlhaines@umich.edu +Date: 2007-11-06 15:54:43 -0500 (Tue, 06 Nov 2007) +New Revision: 37814 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update build revision number. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Nov 6 15:58:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:58:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:58:19 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id lA6KwIjN022418; + Tue, 6 Nov 2007 15:58:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4730D563.14669.32389 ; + 6 Nov 2007 15:58:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B3E7C74AE5; + Tue, 6 Nov 2007 20:58:04 +0000 (GMT) +Message-ID: <200711062053.lA6KrxtL028961@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 885 + for ; + Tue, 6 Nov 2007 20:57:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 220D61340D + for ; Tue, 6 Nov 2007 20:57:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KrxOB028963 + for ; Tue, 6 Nov 2007 15:53:59 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KrxtL028961 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:53:59 -0500 +Date: Tue, 6 Nov 2007 15:53:59 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37813 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:58:19 2007 +X-DSPAM-Confidence: 0.8474 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37813 + +Author: dlhaines@umich.edu +Date: 2007-11-06 15:53:55 -0500 (Tue, 06 Nov 2007) +New Revision: 37813 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update for new assignement and site-manage fixes. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 15:58:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:58:05 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:58:05 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id lA6Kw32Z000367; + Tue, 6 Nov 2007 15:58:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4730D554.5D116.1668 ; + 6 Nov 2007 15:58:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7B64D748D6; + Tue, 6 Nov 2007 20:57:55 +0000 (GMT) +Message-ID: <200711062053.lA6Krqwj028949@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131 + for ; + Tue, 6 Nov 2007 20:57:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 243E01340D + for ; Tue, 6 Nov 2007 20:57:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Krqgp028951 + for ; Tue, 6 Nov 2007 15:53:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Krqwj028949 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:53:52 -0500 +Date: Tue, 6 Nov 2007 15:53:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37812 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:58:05 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37812 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:53:51 -0500 (Tue, 06 Nov 2007) +New Revision: 37812 + +Added: +sakai/tags/sakai_2-5-0_QA_012/pom.xml +Removed: +sakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/pom.xml +Log: +move contents + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 15:56:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:56:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:56:50 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by casino.mail.umich.edu () with ESMTP id lA6KumWK001911; + Tue, 6 Nov 2007 15:56:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4730D505.2E9A9.17392 ; + 6 Nov 2007 15:56:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BF7DA74BDC; + Tue, 6 Nov 2007 20:56:36 +0000 (GMT) +Message-ID: <200711062052.lA6KqY6n028936@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293 + for ; + Tue, 6 Nov 2007 20:56:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 526E01340D + for ; Tue, 6 Nov 2007 20:56:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KqYqq028938 + for ; Tue, 6 Nov 2007 15:52:34 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KqY6n028936 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:52:34 -0500 +Date: Tue, 6 Nov 2007 15:52:34 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37811 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:56:50 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37811 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:52:33 -0500 (Tue, 06 Nov 2007) +New Revision: 37811 + +Added: +sakai/tags/sakai_2-5-0_QA_012/.svnignore +Removed: +sakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/.svnignore +Log: +move contents + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 15:55:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:55:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:55:53 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by score.mail.umich.edu () with ESMTP id lA6KtqGD005103; + Tue, 6 Nov 2007 15:55:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4730D4CA.6063B.14789 ; + 6 Nov 2007 15:55:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D69174BCB; + Tue, 6 Nov 2007 20:55:35 +0000 (GMT) +Message-ID: <200711062051.lA6KpPLA028923@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 525 + for ; + Tue, 6 Nov 2007 20:55:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 906FB1340D + for ; Tue, 6 Nov 2007 20:55:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KpPYx028925 + for ; Tue, 6 Nov 2007 15:51:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KpPLA028923 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:51:25 -0500 +Date: Tue, 6 Nov 2007 15:51:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37810 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:55:53 2007 +X-DSPAM-Confidence: 0.9848 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37810 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:51:23 -0500 (Tue, 06 Nov 2007) +New Revision: 37810 + +Added: +sakai/tags/sakai_2-5-0_QA_012/.externals +Removed: +sakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/.externals +Log: +move contents + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 15:51:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:51:57 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:51:57 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by fan.mail.umich.edu () with ESMTP id lA6KpuZe023230; + Tue, 6 Nov 2007 15:51:56 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4730D3E2.ADFAB.24233 ; + 6 Nov 2007 15:51:51 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 606C374B97; + Tue, 6 Nov 2007 20:51:48 +0000 (GMT) +Message-ID: <200711062047.lA6KlV53028910@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 693 + for ; + Tue, 6 Nov 2007 20:51:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D39A01340D + for ; Tue, 6 Nov 2007 20:51:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KlVbb028912 + for ; Tue, 6 Nov 2007 15:47:31 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KlV53028910 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:47:31 -0500 +Date: Tue, 6 Nov 2007 15:47:31 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37809 - sakai/tags/sakai_2-5-0_QA_012 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:51:57 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37809 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:47:30 -0500 (Tue, 06 Nov 2007) +New Revision: 37809 + +Added: +sakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/ +Log: +copy contents + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From arwhyte@umich.edu Tue Nov 6 15:49:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:49:36 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:49:36 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lA6KnZ3e008521; + Tue, 6 Nov 2007 15:49:35 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4730D356.1D6D5.9442 ; + 6 Nov 2007 15:49:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 22AEE74BD4; + Tue, 6 Nov 2007 20:49:28 +0000 (GMT) +Message-ID: <200711062045.lA6Kj9YJ028897@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754 + for ; + Tue, 6 Nov 2007 20:49:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 944691340D + for ; Tue, 6 Nov 2007 20:48:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Kj91a028899 + for ; Tue, 6 Nov 2007 15:45:09 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Kj9YJ028897 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:45:09 -0500 +Date: Tue, 6 Nov 2007 15:45:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f +To: source@collab.sakaiproject.org +From: arwhyte@umich.edu +Subject: [sakai] svn commit: r37808 - sakai/tags +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:49:36 2007 +X-DSPAM-Confidence: 0.8475 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37808 + +Author: arwhyte@umich.edu +Date: 2007-11-06 15:45:08 -0500 (Tue, 06 Nov 2007) +New Revision: 37808 + +Added: +sakai/tags/sakai_2-5-0_QA_012/ +Log: +create 2.5.0_QA_012 folder + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Tue Nov 6 15:42:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:42:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:42:19 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by awakenings.mail.umich.edu () with ESMTP id lA6KgJTn024801; + Tue, 6 Nov 2007 15:42:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4730D1A1.3A825.20643 ; + 6 Nov 2007 15:42:14 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0141E74BA3; + Tue, 6 Nov 2007 20:42:09 +0000 (GMT) +Message-ID: <200711062038.lA6Kc3Mq028858@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 327 + for ; + Tue, 6 Nov 2007 20:41:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 739171340D + for ; Tue, 6 Nov 2007 20:41:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Kc3p0028860 + for ; Tue, 6 Nov 2007 15:38:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Kc3Mq028858 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:38:03 -0500 +Date: Tue, 6 Nov 2007 15:38:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37807 - in postem/trunk: postem-api/src/java/org/sakaiproject/api/app/postem/data postem-app/src/java/org/sakaiproject/tool/postem postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:42:19 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37807 + +Author: wagnermr@iupui.edu +Date: 2007-11-06 15:38:01 -0500 (Tue, 06 Nov 2007) +New Revision: 37807 + +Modified: +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +postem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +problems with headings on update + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 6 15:34:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:34:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:34:26 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id lA6KYPbB019055; + Tue, 6 Nov 2007 15:34:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4730CFC9.690EA.3313 ; + 6 Nov 2007 15:34:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C0B6174B0F; + Tue, 6 Nov 2007 20:34:17 +0000 (GMT) +Message-ID: <200711062030.lA6KUBAK028826@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 278 + for ; + Tue, 6 Nov 2007 20:34:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A0C6F1DC02 + for ; Tue, 6 Nov 2007 20:34:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KUB0g028828 + for ; Tue, 6 Nov 2007 15:30:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KUBAK028826 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:30:11 -0500 +Date: Tue, 6 Nov 2007 15:30:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37806 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:34:26 2007 +X-DSPAM-Confidence: 0.9855 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37806 + +Author: zqian@umich.edu +Date: 2007-11-06 15:30:07 -0500 (Tue, 06 Nov 2007) +New Revision: 37806 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-12047 into post-2-4 branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Nov 6 15:18:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 15:18:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 15:18:13 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by sleepers.mail.umich.edu () with ESMTP id lA6KIBuR023836; + Tue, 6 Nov 2007 15:18:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4730CBF6.8F136.15687 ; + 6 Nov 2007 15:18:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 90E5E74AA9; + Tue, 6 Nov 2007 20:17:59 +0000 (GMT) +Message-ID: <200711062013.lA6KDuBE028809@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1023 + for ; + Tue, 6 Nov 2007 20:17:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C20551DC2B + for ; Tue, 6 Nov 2007 20:17:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KDuLK028811 + for ; Tue, 6 Nov 2007 15:13:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KDuBE028809 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:13:56 -0500 +Date: Tue, 6 Nov 2007 15:13:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37805 - in assignment/branches/post-2-4: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 15:18:13 2007 +X-DSPAM-Confidence: 0.8486 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37805 + +Author: zqian@umich.edu +Date: 2007-11-06 15:13:47 -0500 (Tue, 06 Nov 2007) +New Revision: 37805 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-11215 into post-2-4 branch: svn merge -r34224:34225 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 14:54:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 14:54:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 14:54:55 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id lA6JssfQ008036; + Tue, 6 Nov 2007 14:54:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4730C686.A7683.22677 ; + 6 Nov 2007 14:54:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AD36174A55; + Tue, 6 Nov 2007 19:35:43 +0000 (GMT) +Message-ID: <200711061925.lA6JPn12028590@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 426 + for ; + Tue, 6 Nov 2007 19:34:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9712B20657 + for ; Tue, 6 Nov 2007 19:29:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6JPnTP028592 + for ; Tue, 6 Nov 2007 14:25:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6JPn12028590 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 14:25:49 -0500 +Date: Tue, 6 Nov 2007 14:25:49 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37804 - content-review/branches/sakai_2-5-x/content-review-api/model/src/java/org/sakaiproject/contentreview/model +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 14:54:55 2007 +X-DSPAM-Confidence: 0.7003 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37804 + +Author: mmmay@indiana.edu +Date: 2007-11-06 14:25:48 -0500 (Tue, 06 Nov 2007) +New Revision: 37804 + +Modified: +content-review/branches/sakai_2-5-x/content-review-api/model/src/java/org/sakaiproject/contentreview/model/ContentReviewItem.java +Log: +svn merge -r 37783:37784 https://source.sakaiproject.org/svn/content-review/trunk +U content-review-api/model/src/java/org/sakaiproject/contentreview/model/ContentReviewItem.java +in-143-196:~/java/2-5/sakai_2-5-x/content-review mmmay$ svn log -r 37783:37784 https://source.sakaiproject.org/svn/content-review/trunk +------------------------------------------------------------------------ +r37784 | david.horwitz@uct.ac.za | 2007-11-06 11:11:51 -0500 (Tue, 06 Nov 2007) | 1 line + +SAK-12128 Added method to class for retry time +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Tue Nov 6 14:08:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 14:08:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 14:08:02 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by flawless.mail.umich.edu () with ESMTP id lA6J82Kb006261; + Tue, 6 Nov 2007 14:08:02 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4730BB84.E8289.16696 ; + 6 Nov 2007 14:07:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DF43C7114A; + Tue, 6 Nov 2007 19:06:00 +0000 (GMT) +Message-ID: <200711061903.lA6J3Gjn028548@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 144 + for ; + Tue, 6 Nov 2007 19:05:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9193120626 + for ; Tue, 6 Nov 2007 19:07:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6J3Gw3028550 + for ; Tue, 6 Nov 2007 14:03:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6J3Gjn028548 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 14:03:16 -0500 +Date: Tue, 6 Nov 2007 14:03:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r37803 - in syllabus/trunk/syllabus-app/src: java/org/sakaiproject/tool/syllabus webapp/syllabus +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 14:08:02 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37803 + +Author: josrodri@iupui.edu +Date: 2007-11-06 14:03:15 -0500 (Tue, 06 Nov 2007) +New Revision: 37803 + +Modified: +syllabus/trunk/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java +syllabus/trunk/syllabus-app/src/webapp/syllabus/main.jsp +Log: +SAK-10333, SAK-10587, SAK-11221: refactored how print friendly url is determined. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Nov 6 14:02:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 14:02:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 14:02:58 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by casino.mail.umich.edu () with ESMTP id lA6J2vAJ018636; + Tue, 6 Nov 2007 14:02:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4730BA53.2BF16.6157 ; + 6 Nov 2007 14:02:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D5B0C749A8; + Tue, 6 Nov 2007 19:02:40 +0000 (GMT) +Message-ID: <200711061858.lA6Iwac8028524@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 128 + for ; + Tue, 6 Nov 2007 19:02:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0611420617 + for ; Tue, 6 Nov 2007 19:02:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Iwa1B028526 + for ; Tue, 6 Nov 2007 13:58:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Iwac8028524 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:58:36 -0500 +Date: Tue, 6 Nov 2007 13:58:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r37802 - in oncourse/trunk/src: . email email/email-impl email/email-impl/impl email/email-impl/impl/src email/email-impl/impl/src/java email/email-impl/impl/src/java/org email/email-impl/impl/src/java/org/sakaiproject email/email-impl/impl/src/java/org/sakaiproject/email email/email-impl/impl/src/java/org/sakaiproject/email/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 14:02:57 2007 +X-DSPAM-Confidence: 0.9828 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37802 + +Author: gjthomas@iupui.edu +Date: 2007-11-06 13:58:35 -0500 (Tue, 06 Nov 2007) +New Revision: 37802 + +Added: +oncourse/trunk/src/email/ +oncourse/trunk/src/email/email-impl/ +oncourse/trunk/src/email/email-impl/impl/ +oncourse/trunk/src/email/email-impl/impl/src/ +oncourse/trunk/src/email/email-impl/impl/src/java/ +oncourse/trunk/src/email/email-impl/impl/src/java/org/ +oncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/ +oncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/email/ +oncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/email/impl/ +oncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/email/impl/BaseDigestService.java +Log: +ONC-154 - digest modification + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 14:00:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 14:00:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 14:00:06 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lA6J05t9014829; + Tue, 6 Nov 2007 14:00:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4730B9AF.D8A30.5202 ; + 6 Nov 2007 14:00:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C29DF748F6; + Tue, 6 Nov 2007 18:59:57 +0000 (GMT) +Message-ID: <200711061855.lA6IttwG028511@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 407 + for ; + Tue, 6 Nov 2007 18:59:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 586EC20617 + for ; Tue, 6 Nov 2007 18:59:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6IttNO028513 + for ; Tue, 6 Nov 2007 13:55:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6IttwG028511 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:55:55 -0500 +Date: Tue, 6 Nov 2007 13:55:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37801 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 14:00:06 2007 +X-DSPAM-Confidence: 0.6197 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37801 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:55:54 -0500 (Tue, 06 Nov 2007) +New Revision: 37801 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -r 37743:37744 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37743:37744 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37744 | bahollad@indiana.edu | 2007-11-05 12:58:10 -0500 (Mon, 05 Nov 2007) | 9 lines + +SAK-12027 +Possible problems with sakai 2.4->2.5 mysql conversion script + +Fixed these two errors: +>[Error] Script lines: 724-727 ---------------------- +Duplicate column name 'itemscope' + +>[Error] Script lines: 728-728 ---------------------- +Duplicate key name 'isearchbuilderitem_sco' +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 13:35:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 13:35:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 13:35:38 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id lA6IZbFY016472; + Tue, 6 Nov 2007 13:35:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4730B3E3.5F8.25649 ; + 6 Nov 2007 13:35:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 14E04749C1; + Tue, 6 Nov 2007 18:30:53 +0000 (GMT) +Message-ID: <200711061830.lA6IUfNi028428@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 526 + for ; + Tue, 6 Nov 2007 18:30:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6669B1DB80 + for ; Tue, 6 Nov 2007 18:34:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6IUf4A028430 + for ; Tue, 6 Nov 2007 13:30:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6IUfNi028428 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:30:41 -0500 +Date: Tue, 6 Nov 2007 13:30:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37800 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 13:35:38 2007 +X-DSPAM-Confidence: 0.5993 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37800 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:30:40 -0500 (Tue, 06 Nov 2007) +New Revision: 37800 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn merge -r 37671:37672 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37671:37672 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37671 | eli@media.berkeley.edu | 2007-10-31 14:21:49 -0400 (Wed, 31 Oct 2007) | 1 line + +SAK-12092 Adding file fixes bug. The reference is already in the CSS +------------------------------------------------------------------------ +r37672 | bahollad@indiana.edu | 2007-10-31 15:40:02 -0400 (Wed, 31 Oct 2007) | 2 lines + +SAK-12027 +Added back some removed lines. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 13:14:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 13:14:48 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 13:14:48 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by awakenings.mail.umich.edu () with ESMTP id lA6IEl7w025298; + Tue, 6 Nov 2007 13:14:47 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4730AF01.DDFFE.1570 ; + 6 Nov 2007 13:14:30 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 355B17492C; + Tue, 6 Nov 2007 18:09:29 +0000 (GMT) +Message-ID: <200711061809.lA6I9uaT028370@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32 + for ; + Tue, 6 Nov 2007 18:09:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DFD84205FA + for ; Tue, 6 Nov 2007 18:13:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I9uYg028372 + for ; Tue, 6 Nov 2007 13:09:56 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I9uaT028370 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:09:56 -0500 +Date: Tue, 6 Nov 2007 13:09:56 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37799 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 13:14:48 2007 +X-DSPAM-Confidence: 0.7007 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37799 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:09:54 -0500 (Tue, 06 Nov 2007) +New Revision: 37799 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37722:37723 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37722:37723 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37723 | zqian@umich.edu | 2007-11-02 16:21:48 -0400 (Fri, 02 Nov 2007) | 3 lines + +Fix to SAK-12029:zip file not accepted in Assignments "Upload All" feature + +Checked in Ray's patch +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 13:14:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 13:14:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 13:14:11 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by faithful.mail.umich.edu () with ESMTP id lA6IEAGB005938; + Tue, 6 Nov 2007 13:14:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4730AED6.BC292.25407 ; + 6 Nov 2007 13:13:47 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D255173343; + Tue, 6 Nov 2007 18:08:59 +0000 (GMT) +Message-ID: <200711061808.lA6I8qNu028358@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 770 + for ; + Tue, 6 Nov 2007 18:08:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B9961205F8 + for ; Tue, 6 Nov 2007 18:12:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I8rcO028360 + for ; Tue, 6 Nov 2007 13:08:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I8qNu028358 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:08:52 -0500 +Date: Tue, 6 Nov 2007 13:08:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37798 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 13:14:11 2007 +X-DSPAM-Confidence: 0.6568 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37798 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:08:51 -0500 (Tue, 06 Nov 2007) +New Revision: 37798 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm +Log: +svn merge -r 37712:37713 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37712:37713 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37713 | zqian@umich.edu | 2007-11-02 15:00:36 -0400 (Fri, 02 Nov 2007) | 1 line + +fix to SAK-11769:Assignments Confirmation before Upload All +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 13:11:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 13:11:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 13:11:51 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id lA6IBoj7027346; + Tue, 6 Nov 2007 13:11:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4730AE5D.3501C.6599 ; + 6 Nov 2007 13:11:46 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C4EC774273; + Tue, 6 Nov 2007 18:07:18 +0000 (GMT) +Message-ID: <200711061807.lA6I7TMo028346@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 305 + for ; + Tue, 6 Nov 2007 18:06:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A50722059D + for ; Tue, 6 Nov 2007 18:11:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I7T3J028348 + for ; Tue, 6 Nov 2007 13:07:30 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I7TMo028346 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:07:29 -0500 +Date: Tue, 6 Nov 2007 13:07:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37797 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 13:11:51 2007 +X-DSPAM-Confidence: 0.7622 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37797 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:07:28 -0500 (Tue, 06 Nov 2007) +New Revision: 37797 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37707:37708 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37707:37708 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37708 | zqian@umich.edu | 2007-11-02 13:52:56 -0400 (Fri, 02 Nov 2007) | 1 line + +fix to SAK-11497:Issues with editing assignment submissions that are past the due date +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 13:10:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 13:10:32 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 13:10:32 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by flawless.mail.umich.edu () with ESMTP id lA6IAVDS000613; + Tue, 6 Nov 2007 13:10:31 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4730AE0F.684ED.9530 ; + 6 Nov 2007 13:10:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F40887426E; + Tue, 6 Nov 2007 18:06:07 +0000 (GMT) +Message-ID: <200711061806.lA6I6Geg028334@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 166 + for ; + Tue, 6 Nov 2007 18:05:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 36C7D205F5 + for ; Tue, 6 Nov 2007 18:10:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I6GJM028336 + for ; Tue, 6 Nov 2007 13:06:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I6Geg028334 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:06:16 -0500 +Date: Tue, 6 Nov 2007 13:06:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37796 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 13:10:32 2007 +X-DSPAM-Confidence: 0.7628 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37796 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:06:14 -0500 (Tue, 06 Nov 2007) +New Revision: 37796 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm +Log: +svn merge -r 37700:37701 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37700:37701 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37700 | zqian@umich.edu | 2007-11-02 10:26:09 -0400 (Fri, 02 Nov 2007) | 1 line + +Fix to SAK-12085:Long group list in For column does not wrap +------------------------------------------------------------------------ +r37701 | zqian@umich.edu | 2007-11-02 10:56:44 -0400 (Fri, 02 Nov 2007) | 1 line + +Fix to SAK-11858:Assignment Grade view doesn't include EID +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 13:09:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 13:09:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 13:09:28 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by brazil.mail.umich.edu () with ESMTP id lA6I9RxU016814; + Tue, 6 Nov 2007 13:09:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4730ADCD.9E69C.24114 ; + 6 Nov 2007 13:09:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E0AC17491D; + Tue, 6 Nov 2007 18:04:42 +0000 (GMT) +Message-ID: <200711061805.lA6I51uI028322@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 277 + for ; + Tue, 6 Nov 2007 18:04:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 866D12059D + for ; Tue, 6 Nov 2007 18:08:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I51pG028324 + for ; Tue, 6 Nov 2007 13:05:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I51uI028322 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:05:01 -0500 +Date: Tue, 6 Nov 2007 13:05:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37795 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 13:09:28 2007 +X-DSPAM-Confidence: 0.7010 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37795 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:05:00 -0500 (Tue, 06 Nov 2007) +New Revision: 37795 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +svn merge -r 37699:37700 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37699:37700 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37700 | zqian@umich.edu | 2007-11-02 10:26:09 -0400 (Fri, 02 Nov 2007) | 1 line + +Fix to SAK-12085:Long group list in For column does not wrap +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 13:09:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 13:09:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 13:09:01 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lA6I9018002765; + Tue, 6 Nov 2007 13:09:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4730ADB5.828E2.2773 ; + 6 Nov 2007 13:08:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 936F57492C; + Tue, 6 Nov 2007 18:04:13 +0000 (GMT) +Message-ID: <200711061803.lA6I3i0X028310@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 940 + for ; + Tue, 6 Nov 2007 18:03:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 25AD22059D + for ; Tue, 6 Nov 2007 18:07:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I3iw7028312 + for ; Tue, 6 Nov 2007 13:03:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I3i0X028310 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:03:44 -0500 +Date: Tue, 6 Nov 2007 13:03:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37794 - in assignment/branches/sakai_2-5-x: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 13:09:01 2007 +X-DSPAM-Confidence: 0.7007 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37794 + +Author: mmmay@indiana.edu +Date: 2007-11-06 13:03:42 -0500 (Tue, 06 Nov 2007) +New Revision: 37794 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37675:37676 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37675:37676 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37676 | zqian@umich.edu | 2007-10-31 21:41:13 -0400 (Wed, 31 Oct 2007) | 1 line + +fix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Tue Nov 6 12:56:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 12:56:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 12:56:02 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id lA6Hu1St012928; + Tue, 6 Nov 2007 12:56:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4730AAAA.88A24.6570 ; + 6 Nov 2007 12:55:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AFB3973AC9; + Tue, 6 Nov 2007 17:55:50 +0000 (GMT) +Message-ID: <200711061751.lA6Hpel4028295@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 272 + for ; + Tue, 6 Nov 2007 17:55:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CC5E72059A + for ; Tue, 6 Nov 2007 17:55:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Hpep2028297 + for ; Tue, 6 Nov 2007 12:51:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Hpel4028295 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 12:51:40 -0500 +Date: Tue, 6 Nov 2007 12:51:40 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r37793 - content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 12:56:02 2007 +X-DSPAM-Confidence: 0.6501 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37793 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-11-06 12:51:32 -0500 (Tue, 06 Nov 2007) +New Revision: 37793 + +Modified: +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105 Had to change from an autowired to resource annotation, because with the migration utilities there are multiple versions of ContentHostingService registered in the component manager. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 12:05:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 12:05:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 12:05:40 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by sleepers.mail.umich.edu () with ESMTP id lA6H5d3k015117; + Tue, 6 Nov 2007 12:05:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 47309EDD.4489.13306 ; + 6 Nov 2007 12:05:36 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 312E9744E3; + Tue, 6 Nov 2007 17:05:31 +0000 (GMT) +Message-ID: <200711061701.lA6H1ThA028209@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 508 + for ; + Tue, 6 Nov 2007 17:05:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D3671DA87 + for ; Tue, 6 Nov 2007 17:05:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6H1Tkx028211 + for ; Tue, 6 Nov 2007 12:01:29 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6H1ThA028209 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 12:01:29 -0500 +Date: Tue, 6 Nov 2007 12:01:29 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37792 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 12:05:40 2007 +X-DSPAM-Confidence: 0.7007 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37792 + +Author: mmmay@indiana.edu +Date: 2007-11-06 12:01:27 -0500 (Tue, 06 Nov 2007) +New Revision: 37792 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37499:37500 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37499:37500 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 12:04:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 12:04:38 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 12:04:38 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by fan.mail.umich.edu () with ESMTP id lA6H4bVS026153; + Tue, 6 Nov 2007 12:04:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47309E9D.F18D7.15945 ; + 6 Nov 2007 12:04:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6162473263; + Tue, 6 Nov 2007 17:04:27 +0000 (GMT) +Message-ID: <200711061700.lA6H0Psx028195@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 918 + for ; + Tue, 6 Nov 2007 17:04:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EF0C51DA87 + for ; Tue, 6 Nov 2007 17:04:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6H0Pvh028197 + for ; Tue, 6 Nov 2007 12:00:25 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6H0Psx028195 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 12:00:25 -0500 +Date: Tue, 6 Nov 2007 12:00:25 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37791 - in assignment/branches/sakai_2-5-x: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 12:04:38 2007 +X-DSPAM-Confidence: 0.6567 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37791 + +Author: mmmay@indiana.edu +Date: 2007-11-06 12:00:23 -0500 (Tue, 06 Nov 2007) +New Revision: 37791 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +Log: +svn merge -r 37435:37436 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37435:37436 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37436 | zqian@umich.edu | 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007) | 1 line + +fix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 12:02:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 12:02:15 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 12:02:15 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by sleepers.mail.umich.edu () with ESMTP id lA6H2E2L012826; + Tue, 6 Nov 2007 12:02:14 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47309E09.9BAC3.23021 ; + 6 Nov 2007 12:02:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B90C72CEA; + Tue, 6 Nov 2007 17:01:59 +0000 (GMT) +Message-ID: <200711061658.lA6Gw0Uu028177@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 296 + for ; + Tue, 6 Nov 2007 17:01:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F8171DA87 + for ; Tue, 6 Nov 2007 17:01:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Gw0rA028179 + for ; Tue, 6 Nov 2007 11:58:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gw0Uu028177 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:58:00 -0500 +Date: Tue, 6 Nov 2007 11:58:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37790 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 12:02:15 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37790 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:57:59 -0500 (Tue, 06 Nov 2007) +New Revision: 37790 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37399:37400 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37399:37400 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37400 | zqian@umich.edu | 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12029:zip file not accepted in Assignments "Upload All" feature +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Tue Nov 6 12:01:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 12:01:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 12:01:26 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id lA6H1P63023579; + Tue, 6 Nov 2007 12:01:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47309DD3.D6A57.18857 ; + 6 Nov 2007 12:01:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DEB2F71142; + Tue, 6 Nov 2007 17:01:05 +0000 (GMT) +Message-ID: <200711061657.lA6Gv5Uo028165@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 644 + for ; + Tue, 6 Nov 2007 17:00:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A5A81DA87 + for ; Tue, 6 Nov 2007 17:00:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Gv6bA028167 + for ; Tue, 6 Nov 2007 11:57:06 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gv5Uo028165 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:57:05 -0500 +Date: Tue, 6 Nov 2007 11:57:05 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37789 - in component/branches/SAK-8315: component-api/component/src/config/org/sakaiproject/config component-impl/integration-test/src/test/java/org/sakaiproject/component component-impl/integration-test/src/test/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 12:01:26 2007 +X-DSPAM-Confidence: 0.7542 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37789 + +Author: ray@media.berkeley.edu +Date: 2007-11-06 11:56:57 -0500 (Tue, 06 Nov 2007) +New Revision: 37789 + +Modified: +component/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java +component/branches/SAK-8315/component-impl/integration-test/src/test/resources/sakai.properties +Log: +Add test for system properties promotion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 12:01:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 12:01:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 12:01:02 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lA6H11Q0000716; + Tue, 6 Nov 2007 12:01:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47309DBE.EC6B4.17982 ; + 6 Nov 2007 12:00:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3B69270D27; + Tue, 6 Nov 2007 17:00:43 +0000 (GMT) +Message-ID: <200711061656.lA6Gugob028153@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848 + for ; + Tue, 6 Nov 2007 17:00:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 45B3B1DA87 + for ; Tue, 6 Nov 2007 17:00:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GugWN028155 + for ; Tue, 6 Nov 2007 11:56:42 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gugob028153 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:56:42 -0500 +Date: Tue, 6 Nov 2007 11:56:42 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37788 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 12:01:02 2007 +X-DSPAM-Confidence: 0.7622 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37788 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:56:41 -0500 (Tue, 06 Nov 2007) +New Revision: 37788 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37387:37388 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37387:37388 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37388 | zqian@umich.edu | 2007-10-25 14:20:57 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12050: wrong alert message when only choose upload feedback text for 'upload all assignment submission' +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 11:57:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:57:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:57:37 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id lA6GvXKe005686; + Tue, 6 Nov 2007 11:57:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47309CF1.F2FC3.17254 ; + 6 Nov 2007 11:57:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6D20C73263; + Tue, 6 Nov 2007 16:57:16 +0000 (GMT) +Message-ID: <200711061653.lA6Gr89L028141@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617 + for ; + Tue, 6 Nov 2007 16:56:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 88E1F1DA87 + for ; Tue, 6 Nov 2007 16:56:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Gr8eE028143 + for ; Tue, 6 Nov 2007 11:53:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gr89L028141 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:53:08 -0500 +Date: Tue, 6 Nov 2007 11:53:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37787 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:57:37 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37787 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:53:07 -0500 (Tue, 06 Nov 2007) +New Revision: 37787 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +vn merge -r 37384:37385 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37384:37385 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Tue Nov 6 11:47:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:47:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:47:55 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by panther.mail.umich.edu () with ESMTP id lA6GlsQC026098; + Tue, 6 Nov 2007 11:47:54 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47309AB2.CDBE6.8424 ; + 6 Nov 2007 11:47:50 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 77D0C744E6; + Tue, 6 Nov 2007 16:47:45 +0000 (GMT) +Message-ID: <200711061643.lA6GhcbH028130@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 364 + for ; + Tue, 6 Nov 2007 16:47:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8184720089 + for ; Tue, 6 Nov 2007 16:47:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GhdMP028132 + for ; Tue, 6 Nov 2007 11:43:39 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GhcbH028130 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:43:38 -0500 +Date: Tue, 6 Nov 2007 11:43:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [contrib] svn commit: r13280 - in turnitin/trunk/contentreview-impl: hbm/src/java/org/sakaiproject/contentreview/hbm turnitin/src/java/org/sakaiproject/contentreview/impl/hbm turnitin/src/java/org/sakaiproject/contentreview/impl/turnitin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:47:55 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13280 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-06 11:42:15 -0500 (Tue, 06 Nov 2007) +New Revision: 13280 + +Modified: +turnitin/trunk/contentreview-impl/hbm/src/java/org/sakaiproject/contentreview/hbm/ContentReviewItem.hbm.xml +turnitin/trunk/contentreview-impl/turnitin/src/java/org/sakaiproject/contentreview/impl/hbm/BaseReviewServiceImpl.java +turnitin/trunk/contentreview-impl/turnitin/src/java/org/sakaiproject/contentreview/impl/turnitin/TurnitinReviewServiceImpl.java +Log: +SAK-12128 Added method to impl for retry time + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Tue Nov 6 11:37:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:37:06 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:37:06 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id lA6Gb5b1023392; + Tue, 6 Nov 2007 11:37:05 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4730982B.D46EA.11759 ; + 6 Nov 2007 11:37:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 83567746D8; + Tue, 6 Nov 2007 16:36:59 +0000 (GMT) +Message-ID: <200711061632.lA6GWoVp028047@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 808 + for ; + Tue, 6 Nov 2007 16:36:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7B01020089 + for ; Tue, 6 Nov 2007 16:36:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GWpjT028049 + for ; Tue, 6 Nov 2007 11:32:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GWoVp028047 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:32:50 -0500 +Date: Tue, 6 Nov 2007 11:32:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [contrib] svn commit: r13279 - ucb/image-gallery/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:37:06 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13279 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-06 11:32:47 -0500 (Tue, 06 Nov 2007) +New Revision: 13279 + +Modified: +ucb/image-gallery/trunk/project.properties +Log: +Backed up RSF version to 0.7.2 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Tue Nov 6 11:34:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:34:29 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:34:29 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lA6GYSjs012976; + Tue, 6 Nov 2007 11:34:28 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4730978D.1E361.16513 ; + 6 Nov 2007 11:34:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CA5027442D; + Tue, 6 Nov 2007 16:34:22 +0000 (GMT) +Message-ID: <200711061630.lA6GU8DV028036@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 881 + for ; + Tue, 6 Nov 2007 16:34:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AEE6320089 + for ; Tue, 6 Nov 2007 16:33:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GU8tK028038 + for ; Tue, 6 Nov 2007 11:30:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GU8DV028036 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:30:08 -0500 +Date: Tue, 6 Nov 2007 11:30:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [contrib] svn commit: r13278 - in muse/mneme/trunk/mneme-tool/tool/src: bundle views +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:34:29 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13278 + +Author: ggolden@umich.edu +Date: 2007-11-06 11:30:04 -0500 (Tue, 06 Nov 2007) +New Revision: 13278 + +Modified: +muse/mneme/trunk/mneme-tool/tool/src/bundle/mneme.properties +muse/mneme/trunk/mneme-tool/tool/src/bundle/testEdit.properties +muse/mneme/trunk/mneme-tool/tool/src/bundle/testSettings.properties +muse/mneme/trunk/mneme-tool/tool/src/views/testEdit.xml +muse/mneme/trunk/mneme-tool/tool/src/views/testSettings.xml +Log: +assessment edit and settings layout tuned up + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From antranig@caret.cam.ac.uk Tue Nov 6 11:34:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:34:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:34:04 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by chaos.mail.umich.edu () with ESMTP id lA6GY3mu022053; + Tue, 6 Nov 2007 11:34:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47309772.9B94B.8961 ; + 6 Nov 2007 11:33:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2517374410; + Tue, 6 Nov 2007 16:33:51 +0000 (GMT) +Message-ID: <200711061629.lA6GTjRP028025@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 861 + for ; + Tue, 6 Nov 2007 16:33:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B00A020497 + for ; Tue, 6 Nov 2007 16:33:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GTjHP028027 + for ; Tue, 6 Nov 2007 11:29:45 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GTjRP028025 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:29:45 -0500 +Date: Tue, 6 Nov 2007 11:29:45 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: antranig@caret.cam.ac.uk +Subject: [contrib] svn commit: r13277 - in ucb/image-gallery/trunk: . src/java/org/sakaiproject/gallery/producers src/java/org/sakaiproject/gallery/util src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:34:04 2007 +X-DSPAM-Confidence: 0.8439 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13277 + +Author: antranig@caret.cam.ac.uk +Date: 2007-11-06 11:29:29 -0500 (Tue, 06 Nov 2007) +New Revision: 13277 + +Added: +ucb/image-gallery/trunk/src/java/org/sakaiproject/gallery/util/XMLUtil.java +Modified: +ucb/image-gallery/trunk/pom.xml +ucb/image-gallery/trunk/project.properties +ucb/image-gallery/trunk/src/java/org/sakaiproject/gallery/producers/LayoutProducer.java +ucb/image-gallery/trunk/src/webapp/WEB-INF/requestContext.xml +Log: +FLUID-76: Added XML id flattening method (will be in next RSF release) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ggolden@umich.edu Tue Nov 6 11:33:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:33:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:33:49 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by mission.mail.umich.edu () with ESMTP id lA6GXmle030312; + Tue, 6 Nov 2007 11:33:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47309765.2C59A.22059 ; + 6 Nov 2007 11:33:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 764DB742B2; + Tue, 6 Nov 2007 16:33:33 +0000 (GMT) +Message-ID: <200711061629.lA6GTRhF028014@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331 + for ; + Tue, 6 Nov 2007 16:33:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4316E20497 + for ; Tue, 6 Nov 2007 16:33:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GTRC4028016 + for ; Tue, 6 Nov 2007 11:29:27 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GTRhF028014 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:29:27 -0500 +Date: Tue, 6 Nov 2007 11:29:27 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f +To: source@collab.sakaiproject.org +From: ggolden@umich.edu +Subject: [contrib] svn commit: r13276 - in muse/ambrosia/trunk: ambrosia-api/api/src/java/org/muse/ambrosia/api ambrosia-impl/impl/src/java/org/muse/ambrosia/impl ambrosia-library/lib/src/webapp/skin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:33:49 2007 +X-DSPAM-Confidence: 0.8444 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13276 + +Author: ggolden@umich.edu +Date: 2007-11-06 11:29:21 -0500 (Tue, 06 Nov 2007) +New Revision: 13276 + +Modified: +muse/ambrosia/trunk/ambrosia-api/api/src/java/org/muse/ambrosia/api/Container.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiAttachmentsEdit.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiContainer.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiCountEdit.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiDateEdit.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiDurationEdit.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiHtmlEdit.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiSelection.java +muse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiTextEdit.java +muse/ambrosia/trunk/ambrosia-library/lib/src/webapp/skin/ambrosia_0-5-0.css +Log: +started tuning the css + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 11:22:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:22:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:22:01 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id lA6GM0Bd013411; + Tue, 6 Nov 2007 11:22:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 473094A2.4850E.26938 ; + 6 Nov 2007 11:21:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A60BE68675; + Tue, 6 Nov 2007 16:21:53 +0000 (GMT) +Message-ID: <200711061617.lA6GHmT0027988@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79 + for ; + Tue, 6 Nov 2007 16:21:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6D73C1DB7E + for ; Tue, 6 Nov 2007 16:21:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GHnAU027990 + for ; Tue, 6 Nov 2007 11:17:49 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GHmT0027988 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:17:48 -0500 +Date: Tue, 6 Nov 2007 11:17:48 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37786 - in osp/branches/sakai_2-5-x/matrix: api/src/java/org/theospi/portfolio/matrix/model/impl tool/src/java/org/theospi/portfolio/matrix/control +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:22:01 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37786 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:17:47 -0500 (Tue, 06 Nov 2007) +New Revision: 37786 + +Modified: +osp/branches/sakai_2-5-x/matrix/api/src/java/org/theospi/portfolio/matrix/model/impl/MatrixImpl.hbm.xml +osp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/BaseScaffoldingController.java +osp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/EditScaffoldingCellController.java +osp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewMatrixController.java +osp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewScaffoldingController.java +Log: +svn merge -r 37692:37693 https://source.sakaiproject.org/svn/osp/trunk +U matrix/api/src/java/org/theospi/portfolio/matrix/model/impl/MatrixImpl.hbm.xml +U matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewScaffoldingController.java +U matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewMatrixController.java +U matrix/tool/src/java/org/theospi/portfolio/matrix/control/BaseScaffoldingController.java +U matrix/tool/src/java/org/theospi/portfolio/matrix/control/EditScaffoldingCellController.java +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 37692:37693 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r37693 | bkirschn@umich.edu | 2007-11-01 16:41:49 -0400 (Thu, 01 Nov 2007) | 5 lines + +SAK-12066 - fix bugs related to hibernate lazy loading... +revert r36794 re-enable lazy loading +revert r34564 re-enable BaseScaffoldingController.traverseScaffoldingCells +update BaseScaffoldingController.traverseScaffoldingCells() to use matrixManager.getScaffoldingCells + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 11:18:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:18:47 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:18:47 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by brazil.mail.umich.edu () with ESMTP id lA6GIkG3000943; + Tue, 6 Nov 2007 11:18:46 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 473093E0.E4A77.13982 ; + 6 Nov 2007 11:18:43 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 51E90742CA; + Tue, 6 Nov 2007 16:18:40 +0000 (GMT) +Message-ID: <200711061614.lA6GEZH1027976@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 301 + for ; + Tue, 6 Nov 2007 16:18:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7057D1DB7E + for ; Tue, 6 Nov 2007 16:18:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GEalx027978 + for ; Tue, 6 Nov 2007 11:14:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GEZH1027976 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:14:36 -0500 +Date: Tue, 6 Nov 2007 11:14:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37785 - calendar/branches/sakai_2-5-x/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:18:47 2007 +X-DSPAM-Confidence: 0.7618 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37785 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:14:34 -0500 (Tue, 06 Nov 2007) +New Revision: 37785 + +Modified: +calendar/branches/sakai_2-5-x/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +Log: +svn merge -r 37761:37762 https://source.sakaiproject.org/svn/calendar/trunk +U calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +in-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 37761:37762 https://source.sakaiproject.org/svn/calendar/trunk +------------------------------------------------------------------------ +r37762 | bkirschn@umich.edu | 2007-11-05 17:10:42 -0500 (Mon, 05 Nov 2007) | 1 line + +SAK-6867 fix incorrect logic for displaying group events +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Tue Nov 6 11:16:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:16:42 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:16:42 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lA6GGfO8019150; + Tue, 6 Nov 2007 11:16:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47309357.DFA73.10978 ; + 6 Nov 2007 11:16:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ACE64744EA; + Tue, 6 Nov 2007 16:16:21 +0000 (GMT) +Message-ID: <200711061612.lA6GCGKw027964@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 344 + for ; + Tue, 6 Nov 2007 16:16:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 561DD20497 + for ; Tue, 6 Nov 2007 16:16:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GCGtv027966 + for ; Tue, 6 Nov 2007 11:12:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GCGKw027964 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:12:16 -0500 +Date: Tue, 6 Nov 2007 11:12:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37784 - content-review/trunk/content-review-api/model/src/java/org/sakaiproject/contentreview/model +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:16:42 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37784 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-06 11:11:51 -0500 (Tue, 06 Nov 2007) +New Revision: 37784 + +Modified: +content-review/trunk/content-review-api/model/src/java/org/sakaiproject/contentreview/model/ContentReviewItem.java +Log: +SAK-12128 Added method to class for retry time + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 11:13:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:13:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:13:04 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by mission.mail.umich.edu () with ESMTP id lA6GD4gP016535; + Tue, 6 Nov 2007 11:13:04 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47309285.C7502.19861 ; + 6 Nov 2007 11:12:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 06FBC746BE; + Tue, 6 Nov 2007 16:12:55 +0000 (GMT) +Message-ID: <200711061608.lA6G8puu027951@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26 + for ; + Tue, 6 Nov 2007 16:12:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2C0D1204A1 + for ; Tue, 6 Nov 2007 16:12:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G8phH027953 + for ; Tue, 6 Nov 2007 11:08:51 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G8puu027951 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:08:51 -0500 +Date: Tue, 6 Nov 2007 11:08:51 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37783 - mailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:13:04 2007 +X-DSPAM-Confidence: 0.7008 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37783 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:08:50 -0500 (Tue, 06 Nov 2007) +New Revision: 37783 + +Modified: +mailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties +Log: +svn merge -r 37721:37722 https://source.sakaiproject.org/svn/mailtool/trunk +U mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37721:37722 https://source.sakaiproject.org/svn/mailtool/trunk +------------------------------------------------------------------------ +r37722 | bkirschn@umich.edu | 2007-11-02 15:04:50 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 11:11:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:11:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:11:30 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id lA6GBTAF000985; + Tue, 6 Nov 2007 11:11:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4730922A.E86C9.30842 ; + 6 Nov 2007 11:11:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EC54374521; + Tue, 6 Nov 2007 16:11:22 +0000 (GMT) +Message-ID: <200711061607.lA6G7G5K027939@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467 + for ; + Tue, 6 Nov 2007 16:11:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 69BB020497 + for ; Tue, 6 Nov 2007 16:11:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G7HXi027941 + for ; Tue, 6 Nov 2007 11:07:17 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G7G5K027939 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:07:17 -0500 +Date: Tue, 6 Nov 2007 11:07:17 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37782 - in site-manage/branches/sakai_2-5-x: pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:11:30 2007 +X-DSPAM-Confidence: 0.7623 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37782 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:07:15 -0500 (Tue, 06 Nov 2007) +New Revision: 37782 + +Modified: +site-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_nl.properties +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties +Log: +svn merge -r 37720:37721 https://source.sakaiproject.org/svn/site-manage/trunk +U site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties +U pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/site-manage mmmay$ svn log -r 37720:37721 https://source.sakaiproject.org/svn/site-manage/trunk +------------------------------------------------------------------------ +r37721 | bkirschn@umich.edu | 2007-11-02 15:04:39 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 11:10:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:10:11 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:10:11 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by brazil.mail.umich.edu () with ESMTP id lA6GAAdD026590; + Tue, 6 Nov 2007 11:10:10 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 473091DC.5B0CC.4588 ; + 6 Nov 2007 11:10:07 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 36641743B7; + Tue, 6 Nov 2007 16:10:03 +0000 (GMT) +Message-ID: <200711061606.lA6G61qi027927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83 + for ; + Tue, 6 Nov 2007 16:09:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D931F20497 + for ; Tue, 6 Nov 2007 16:09:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G61GH027929 + for ; Tue, 6 Nov 2007 11:06:01 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G61qi027927 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:06:01 -0500 +Date: Tue, 6 Nov 2007 11:06:01 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37781 - profile/branches/sakai_2-5-x/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:10:11 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37781 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:06:00 -0500 (Tue, 06 Nov 2007) +New Revision: 37781 + +Modified: +profile/branches/sakai_2-5-x/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle/Messages_nl.properties +Log: +svn merge -r 37719:37720 https://source.sakaiproject.org/svn/profile/trunk +U profile-app/src/bundle/org/sakaiproject/tool/profile/bundle/Messages_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/profile mmmay$ svn log -r 37719:37720 https://source.sakaiproject.org/svn/profile/trunk +------------------------------------------------------------------------ +r37720 | bkirschn@umich.edu | 2007-11-02 15:04:33 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 11:07:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 11:07:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 11:07:49 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by casino.mail.umich.edu () with ESMTP id lA6G7mAl018257; + Tue, 6 Nov 2007 11:07:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4730914D.C7337.13834 ; + 6 Nov 2007 11:07:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1815A68675; + Tue, 6 Nov 2007 16:07:41 +0000 (GMT) +Message-ID: <200711061603.lA6G3XtO027914@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 771 + for ; + Tue, 6 Nov 2007 16:07:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0411A20497 + for ; Tue, 6 Nov 2007 16:07:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G3X5Y027916 + for ; Tue, 6 Nov 2007 11:03:33 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G3XtO027914 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:03:33 -0500 +Date: Tue, 6 Nov 2007 11:03:33 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37780 - osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 11:07:49 2007 +X-DSPAM-Confidence: 0.7538 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37780 + +Author: mmmay@indiana.edu +Date: 2007-11-06 11:03:32 -0500 (Tue, 06 Nov 2007) +New Revision: 37780 + +Modified: +osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_nl.properties +Log: +SAK-11241 Dutch translations +Files Changed +MODIFY /osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_nl.properties + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 10:36:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 10:36:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 10:36:19 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by casino.mail.umich.edu () with ESMTP id lA6FaJLr023261; + Tue, 6 Nov 2007 10:36:19 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473089E7.3276.25531 ; + 6 Nov 2007 10:36:12 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 65E1F74664; + Tue, 6 Nov 2007 15:32:13 +0000 (GMT) +Message-ID: <200711061529.lA6FTro7027829@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339 + for ; + Tue, 6 Nov 2007 15:31:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 063A7204A7 + for ; Tue, 6 Nov 2007 15:33:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6FTrl8027831 + for ; Tue, 6 Nov 2007 10:29:53 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6FTro7027829 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:29:53 -0500 +Date: Tue, 6 Nov 2007 10:29:53 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37779 - postem/branches/sakai_2-5-x/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 10:36:19 2007 +X-DSPAM-Confidence: 0.7622 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37779 + +Author: mmmay@indiana.edu +Date: 2007-11-06 10:29:52 -0500 (Tue, 06 Nov 2007) +New Revision: 37779 + +Modified: +postem/branches/sakai_2-5-x/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle/Messages_nl.properties +Log: +svn merge -r 37718:37719 https://source.sakaiproject.org/svn/postem/trunk +U postem-app/src/bundle/org/sakaiproject/tool/postem/bundle/Messages_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/postem mmmay$ svn log -r 37718:37719 https://source.sakaiproject.org/svn/postem/trunk +------------------------------------------------------------------------ +r37719 | bkirschn@umich.edu | 2007-11-02 15:04:12 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 10:12:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 10:12:46 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 10:12:46 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by mission.mail.umich.edu () with ESMTP id lA6FCjkJ003049; + Tue, 6 Nov 2007 10:12:45 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47308466.DF457.4519 ; + 6 Nov 2007 10:12:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6AAEE74608; + Tue, 6 Nov 2007 15:12:33 +0000 (GMT) +Message-ID: <200711061508.lA6F8a0o027633@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680 + for ; + Tue, 6 Nov 2007 15:12:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AAC2420498 + for ; Tue, 6 Nov 2007 15:12:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F8alX027635 + for ; Tue, 6 Nov 2007 10:08:36 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F8a0o027633 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:08:36 -0500 +Date: Tue, 6 Nov 2007 10:08:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37778 - calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 10:12:46 2007 +X-DSPAM-Confidence: 0.7622 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37778 + +Author: mmmay@indiana.edu +Date: 2007-11-06 10:08:35 -0500 (Tue, 06 Nov 2007) +New Revision: 37778 + +Modified: +calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle/calendar_nl.properties +Log: +svn merge -r 37715:37716 https://source.sakaiproject.org/svn/calendar/trunk +U calendar-tool/tool/src/bundle/calendar_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 37715:37716 https://source.sakaiproject.org/svn/calendar/trunk +------------------------------------------------------------------------ +r37716 | bkirschn@umich.edu | 2007-11-02 15:03:47 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 10:11:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 10:11:49 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 10:11:49 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by godsend.mail.umich.edu () with ESMTP id lA6FBmEQ015803; + Tue, 6 Nov 2007 10:11:48 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4730842C.1ED7C.23603 ; + 6 Nov 2007 10:11:45 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 97EB974478; + Tue, 6 Nov 2007 15:11:37 +0000 (GMT) +Message-ID: <200711061507.lA6F7cZO027621@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 261 + for ; + Tue, 6 Nov 2007 15:11:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 54A8420498 + for ; Tue, 6 Nov 2007 15:11:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F7cwv027623 + for ; Tue, 6 Nov 2007 10:07:38 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F7cZO027621 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:07:38 -0500 +Date: Tue, 6 Nov 2007 10:07:38 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37777 - chat/branches/sakai_2-5-x/chat-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 10:11:49 2007 +X-DSPAM-Confidence: 0.7624 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37777 + +Author: mmmay@indiana.edu +Date: 2007-11-06 10:07:37 -0500 (Tue, 06 Nov 2007) +New Revision: 37777 + +Modified: +chat/branches/sakai_2-5-x/chat-tool/tool/src/bundle/chat_nl.properties +Log: +svn merge -r 37716:37717 https://source.sakaiproject.org/svn/calendar/trunk +in-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ cd .. +in-143-196:~/java/2-5/sakai_2-5-x mmmay$ cd chat +in-143-196:~/java/2-5/sakai_2-5-x/chat mmmay$ svn merge -r 37716:37717 https://source.sakaiproject.org/svn/chat/trunk +U chat-tool/tool/src/bundle/chat_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/chat mmmay$ svn log -r 37716:37717 https://source.sakaiproject.org/svn/chat/trunk +------------------------------------------------------------------------ +r37717 | bkirschn@umich.edu | 2007-11-02 15:03:53 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 10:08:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 10:08:03 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 10:08:03 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id lA6F81N7008465; + Tue, 6 Nov 2007 10:08:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4730834B.1913F.15905 ; + 6 Nov 2007 10:07:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C4035745EB; + Tue, 6 Nov 2007 15:07:52 +0000 (GMT) +Message-ID: <200711061503.lA6F3q12027606@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 216 + for ; + Tue, 6 Nov 2007 15:07:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C639D1DB72 + for ; Tue, 6 Nov 2007 15:07:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F3qhY027608 + for ; Tue, 6 Nov 2007 10:03:52 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F3q12027606 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:03:52 -0500 +Date: Tue, 6 Nov 2007 10:03:52 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37776 - assignment/branches/sakai_2-5-x/assignment-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 10:08:03 2007 +X-DSPAM-Confidence: 0.7009 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37776 + +Author: mmmay@indiana.edu +Date: 2007-11-06 10:03:51 -0500 (Tue, 06 Nov 2007) +New Revision: 37776 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment_nl.properties +Log: +svn merge -r 37714:37715 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37714:37715 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37715 | bkirschn@umich.edu | 2007-11-02 15:03:41 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Tue Nov 6 10:05:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 10:05:34 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 10:05:34 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id lA6F5XrN006434; + Tue, 6 Nov 2007 10:05:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 473082B7.B7D1A.10684 ; + 6 Nov 2007 10:05:31 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D7D37745EE; + Tue, 6 Nov 2007 15:05:24 +0000 (GMT) +Message-ID: <200711061501.lA6F1NGa027593@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 348 + for ; + Tue, 6 Nov 2007 15:05:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2632D1DB72 + for ; Tue, 6 Nov 2007 15:05:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F1NG7027595 + for ; Tue, 6 Nov 2007 10:01:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F1NGa027593 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:01:23 -0500 +Date: Tue, 6 Nov 2007 10:01:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37775 - announcement/branches/sakai_2-5-x/announcement-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 10:05:34 2007 +X-DSPAM-Confidence: 0.7623 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37775 + +Author: mmmay@indiana.edu +Date: 2007-11-06 10:01:23 -0500 (Tue, 06 Nov 2007) +New Revision: 37775 + +Modified: +announcement/branches/sakai_2-5-x/announcement-tool/tool/src/bundle/announcement_nl.properties +Log: +svn merge -r 37713:37714 https://source.sakaiproject.org/svn/announcement/trunk +U announcement-tool/tool/src/bundle/announcement_nl.properties +in-143-196:~/java/2-5/sakai_2-5-x/announcement mmmay$ svn log -r 37713:37714 https://source.sakaiproject.org/svn/announcement/trunk +------------------------------------------------------------------------ +r37714 | bkirschn@umich.edu | 2007-11-02 15:03:35 -0400 (Fri, 02 Nov 2007) | 1 line + +SAK-11241 Dutch translations +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Tue Nov 6 09:40:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 09:40:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 09:40:30 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by sleepers.mail.umich.edu () with ESMTP id lA6EeTkI032740; + Tue, 6 Nov 2007 09:40:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47307CCE.1B928.20492 ; + 6 Nov 2007 09:40:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7F46871DD8; + Tue, 6 Nov 2007 14:40:11 +0000 (GMT) +Message-ID: <200711061436.lA6Ea9Vr027545@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 722 + for ; + Tue, 6 Nov 2007 14:39:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 25B7B1C380 + for ; Tue, 6 Nov 2007 14:39:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Ea9rl027547 + for ; Tue, 6 Nov 2007 09:36:10 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Ea9Vr027545 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 09:36:09 -0500 +Date: Tue, 6 Nov 2007 09:36:09 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37772 - in postem/trunk: postem-api/src/java/org/sakaiproject/api/app/postem/data postem-app/src/java/org/sakaiproject/tool/postem postem-hbm/src/java/org/sakaiproject/component/app/postem/data postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 09:40:30 2007 +X-DSPAM-Confidence: 0.8478 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37772 + +Author: wagnermr@iupui.edu +Date: 2007-11-06 09:36:08 -0500 (Tue, 06 Nov 2007) +New Revision: 37772 + +Modified: +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +postem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +postem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +optimize individual student view + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Nov 6 09:18:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 09:18:31 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 09:18:31 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id lA6EIUFw009937; + Tue, 6 Nov 2007 09:18:30 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 473077AF.A587C.20622 ; + 6 Nov 2007 09:18:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25CCE73528; + Tue, 6 Nov 2007 14:18:19 +0000 (GMT) +Message-ID: <200711061414.lA6EEBoo027483@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 695 + for ; + Tue, 6 Nov 2007 14:17:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AE6E51DB4E + for ; Tue, 6 Nov 2007 14:17:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6EEBPk027485 + for ; Tue, 6 Nov 2007 09:14:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6EEBoo027483 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 09:14:11 -0500 +Date: Tue, 6 Nov 2007 09:14:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37771 - postem/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 09:18:31 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37771 + +Author: rjlowe@iupui.edu +Date: 2007-11-06 09:14:10 -0500 (Tue, 06 Nov 2007) +New Revision: 37771 + +Added: +postem/branches/oncourse_2-4-x/ +Log: +New oncourse branch of postem for IU specific changes + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gopal.ramasammycook@gmail.com Tue Nov 6 09:08:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 09:08:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 09:08:41 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id lA6E88Fa016819; + Tue, 6 Nov 2007 09:08:08 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47307541.BFF64.26586 ; + 6 Nov 2007 09:08:04 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EFBFB744CB; + Tue, 6 Nov 2007 14:07:52 +0000 (GMT) +Message-ID: <200711061403.lA6E3n03027414@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12 + for ; + Tue, 6 Nov 2007 14:07:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 525611A891 + for ; Tue, 6 Nov 2007 14:07:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6E3ooa027416 + for ; Tue, 6 Nov 2007 09:03:50 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6E3n03027414 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 09:03:50 -0500 +Date: Tue, 6 Nov 2007 09:03:50 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f +To: source@collab.sakaiproject.org +From: gopal.ramasammycook@gmail.com +Subject: [sakai] svn commit: r37770 - in sam/branches/SAK-12065: . samigo-app/src/java/org/sakaiproject/tool/assessment/bundle samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author samigo-app/src/webapp/jsf/author samigo-app/src/webapp/jsf/template samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 09:08:41 2007 +X-DSPAM-Confidence: 0.9877 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37770 + +Author: gopal.ramasammycook@gmail.com +Date: 2007-11-06 09:02:19 -0500 (Tue, 06 Nov 2007) +New Revision: 37770 + +Modified: +sam/branches/SAK-12065/.classpath +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages.properties +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages.properties +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/TemplateBean.java +sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/authorSettings.jsp +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/publishedSettings.jsp +sam/branches/SAK-12065/samigo-app/src/webapp/jsf/template/templateEditor.jsp +sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/PublishingTargetHelperImpl.java +Log: +Gopal update 6 Nov 2007. Done display for setting Samigo Assessment Release-To settings. Written code for saving group-ids to Authz as agents. Need to retrieve these for updating the display of checkboxes. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Tue Nov 6 04:20:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 06 Nov 2007 04:20:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 06 Nov 2007 04:20:18 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lA69KF8K015196; + Tue, 6 Nov 2007 04:20:15 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 473031C5.8C9F5.7978 ; + 6 Nov 2007 04:20:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CC2247114A; + Tue, 6 Nov 2007 09:19:59 +0000 (GMT) +Message-ID: <200711060915.lA69FwDO026950@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651 + for ; + Tue, 6 Nov 2007 09:19:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2C1AA1DB33 + for ; Tue, 6 Nov 2007 09:19:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA69Fwl0026952 + for ; Tue, 6 Nov 2007 04:15:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA69FwDO026950 + for source@collab.sakaiproject.org; Tue, 6 Nov 2007 04:15:58 -0500 +Date: Tue, 6 Nov 2007 04:15:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37769 - in sam/branches/SAK-12065: . samigo-shared-deploy +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Nov 6 04:20:18 2007 +X-DSPAM-Confidence: 0.8470 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37769 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-06 04:15:39 -0500 (Tue, 06 Nov 2007) +New Revision: 37769 + +Added: +sam/branches/SAK-12065/samigo-shared-deploy/ +sam/branches/SAK-12065/samigo-shared-deploy/pom.xml +Removed: +sam/branches/SAK-12065/samigo-shared-deploy/pom.xml +Modified: +sam/branches/SAK-12065/pom.xml +Log: +SAK-12605 merged changes from 12809 inot branch + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 22:47:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 22:47:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 22:47:28 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lA63lRku024128; + Mon, 5 Nov 2007 22:47:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 472FE3C9.DA953.29701 ; + 5 Nov 2007 22:47:24 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3CE8E70822; + Tue, 6 Nov 2007 03:47:21 +0000 (GMT) +Message-ID: <200711060343.lA63hIn3026193@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 28 + for ; + Tue, 6 Nov 2007 03:47:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9EC4F1DAD6 + for ; Tue, 6 Nov 2007 03:47:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA63hIIA026195 + for ; Mon, 5 Nov 2007 22:43:19 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA63hIn3026193 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 22:43:18 -0500 +Date: Mon, 5 Nov 2007 22:43:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37768 - in site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 22:47:28 2007 +X-DSPAM-Confidence: 0.7605 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37768 + +Author: zqian@umich.edu +Date: 2007-11-05 22:43:13 -0500 (Mon, 05 Nov 2007) +New Revision: 37768 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteConfirm.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-addCourseConfirm.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editClass.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +merge fix to SAK-10915 into 2-4-x branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 22:33:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 22:33:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 22:33:18 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by casino.mail.umich.edu () with ESMTP id lA63XHdo024989; + Mon, 5 Nov 2007 22:33:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 472FE06A.87B85.9311 ; + 5 Nov 2007 22:33:01 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4183873585; + Tue, 6 Nov 2007 03:32:57 +0000 (GMT) +Message-ID: <200711060328.lA63SsHi026179@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696 + for ; + Tue, 6 Nov 2007 03:32:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B6AFA1DAD6 + for ; Tue, 6 Nov 2007 03:32:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA63St1l026181 + for ; Mon, 5 Nov 2007 22:28:55 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA63SsHi026179 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 22:28:55 -0500 +Date: Mon, 5 Nov 2007 22:28:55 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37767 - in site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 22:33:18 2007 +X-DSPAM-Confidence: 0.6964 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37767 + +Author: zqian@umich.edu +Date: 2007-11-05 22:28:51 -0500 (Mon, 05 Nov 2007) +New Revision: 37767 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm +Log: +merge fix to SAK-10520 into 2-4-x: Site Setup - can't add a manaul roster to an existing site + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Mon Nov 5 20:01:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 20:01:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 20:01:01 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by awakenings.mail.umich.edu () with ESMTP id lA6110dJ021679; + Mon, 5 Nov 2007 20:01:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472FBCC7.2B651.21795 ; + 5 Nov 2007 20:00:57 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 048A560D72; + Tue, 6 Nov 2007 01:00:47 +0000 (GMT) +Message-ID: <200711060031.lA60VOr2026001@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 908 + for ; + Tue, 6 Nov 2007 01:00:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 00E311EFCD + for ; Tue, 6 Nov 2007 00:35:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA60VOhR026003 + for ; Mon, 5 Nov 2007 19:31:24 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA60VOr2026001 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 19:31:24 -0500 +Date: Mon, 5 Nov 2007 19:31:24 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37766 - memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 20:01:01 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37766 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-05 19:31:18 -0500 (Mon, 05 Nov 2007) +New Revision: 37766 + +Modified: +memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12116 +Fixed + +Converted back to Vectors as we know this is safe and works. +We need to look at this from a concurrent point of view asap. In the re-writen versions I used a CHM. + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Mon Nov 5 19:07:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 19:07:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 19:07:30 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by flawless.mail.umich.edu () with ESMTP id lA607ROH019742; + Mon, 5 Nov 2007 19:07:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472FB03A.3B68C.17586 ; + 5 Nov 2007 19:07:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8A0A773585; + Tue, 6 Nov 2007 00:07:22 +0000 (GMT) +Message-ID: <200711060003.lA603B0N025978@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 411 + for ; + Tue, 6 Nov 2007 00:07:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3054D1DA55 + for ; Tue, 6 Nov 2007 00:06:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA603BMJ025980 + for ; Mon, 5 Nov 2007 19:03:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA603B0N025978 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 19:03:11 -0500 +Date: Mon, 5 Nov 2007 19:03:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37765 - component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 19:07:30 2007 +X-DSPAM-Confidence: 0.7546 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37765 + +Author: ray@media.berkeley.edu +Date: 2007-11-05 19:03:08 -0500 (Mon, 05 Nov 2007) +New Revision: 37765 + +Modified: +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java +Log: +Don't create beans as a side-effect during startup + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From hu2@iupui.edu Mon Nov 5 18:19:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 18:19:20 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 18:19:20 -0500 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id lA5NJKia031441; + Mon, 5 Nov 2007 18:19:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 472FA4F2.110D1.18221 ; + 5 Nov 2007 18:19:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0952B709AB; + Mon, 5 Nov 2007 23:19:06 +0000 (GMT) +Message-ID: <200711052315.lA5NFCfm025937@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 600 + for ; + Mon, 5 Nov 2007 23:18:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C6C5A1DA37 + for ; Mon, 5 Nov 2007 23:18:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5NFCLb025939 + for ; Mon, 5 Nov 2007 18:15:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5NFCfm025937 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 18:15:12 -0500 +Date: Mon, 5 Nov 2007 18:15:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f +To: source@collab.sakaiproject.org +From: hu2@iupui.edu +Subject: [sakai] svn commit: r37764 - in msgcntr/trunk: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-app/src/webapp/jsp messageforums-app/src/webapp/jsp/privateMsg +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 18:19:20 2007 +X-DSPAM-Confidence: 0.9751 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37764 + +Author: hu2@iupui.edu +Date: 2007-11-05 18:15:10 -0500 (Mon, 05 Nov 2007) +New Revision: 37764 + +Modified: +msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +msgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgDetail.jsp +msgcntr/trunk/messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp +Log: +SAK-12073 +http://jira.sakaiproject.org/jira/browse/SAK-12073 +Ability to "Reply All" in the Messages tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 5 17:24:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 17:24:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 17:24:21 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by awakenings.mail.umich.edu () with ESMTP id lA5MOKVW006537; + Mon, 5 Nov 2007 17:24:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 472F980E.A019E.5505 ; + 5 Nov 2007 17:24:17 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25B2470C2B; + Mon, 5 Nov 2007 22:24:10 +0000 (GMT) +Message-ID: <200711052220.lA5MK8xd025851@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 933 + for ; + Mon, 5 Nov 2007 22:23:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BA4781F0A6 + for ; Mon, 5 Nov 2007 22:23:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5MK8ex025853 + for ; Mon, 5 Nov 2007 17:20:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5MK8xd025851 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 17:20:08 -0500 +Date: Mon, 5 Nov 2007 17:20:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37763 - reference/branches/sakai_2-5-x/library/src/webapp/skin/default/images +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 17:24:21 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37763 + +Author: mmmay@indiana.edu +Date: 2007-11-05 17:20:07 -0500 (Mon, 05 Nov 2007) +New Revision: 37763 + +Added: +reference/branches/sakai_2-5-x/library/src/webapp/skin/default/images/tab-arrow-down-active.gif +Log: +svn merge -r 37670:37671 https://source.sakaiproject.org/svn/reference/trunk +A library/src/webapp/skin/default/images/tab-arrow-down-active.gif +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37670:37671 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37671 | eli@media.berkeley.edu | 2007-10-31 14:21:49 -0400 (Wed, 31 Oct 2007) | 1 line + +SAK-12092 Adding file fixes bug. The reference is already in the CSS +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Mon Nov 5 17:14:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 17:14:51 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 17:14:51 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id lA5MEoTs026367; + Mon, 5 Nov 2007 17:14:50 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 472F95D5.3B45E.16453 ; + 5 Nov 2007 17:14:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 86ED371B64; + Mon, 5 Nov 2007 22:14:42 +0000 (GMT) +Message-ID: <200711052210.lA5MAh98025839@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 620 + for ; + Mon, 5 Nov 2007 22:14:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C32261D7D5 + for ; Mon, 5 Nov 2007 22:14:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5MAhGD025841 + for ; Mon, 5 Nov 2007 17:10:43 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5MAh98025839 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 17:10:43 -0500 +Date: Mon, 5 Nov 2007 17:10:43 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37762 - calendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 17:14:51 2007 +X-DSPAM-Confidence: 0.9821 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37762 + +Author: bkirschn@umich.edu +Date: 2007-11-05 17:10:42 -0500 (Mon, 05 Nov 2007) +New Revision: 37762 + +Modified: +calendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +Log: +SAK-6867 fix incorrect logic for displaying group events + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 5 17:06:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 17:06:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 17:06:40 -0500 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id lA5M6clA027742; + Mon, 5 Nov 2007 17:06:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 472F93E6.B6DDE.12740 ; + 5 Nov 2007 17:06:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3A8E573A92; + Mon, 5 Nov 2007 22:06:27 +0000 (GMT) +Message-ID: <200711052202.lA5M28cr025813@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 470 + for ; + Mon, 5 Nov 2007 22:05:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A6301D643 + for ; Mon, 5 Nov 2007 22:05:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5M28ck025815 + for ; Mon, 5 Nov 2007 17:02:08 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5M28cr025813 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 17:02:08 -0500 +Date: Mon, 5 Nov 2007 17:02:08 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37761 - in osp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src: java/org/sakaiproject/portal/xsltcharon/impl webapp/WEB-INF/transform +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 17:06:40 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37761 + +Author: mmmay@indiana.edu +Date: 2007-11-05 17:02:07 -0500 (Mon, 05 Nov 2007) +New Revision: 37761 + +Modified: +osp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java +osp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/transform/portal.xsl +Log: +svn merge -r 37706:37707 https://source.sakaiproject.org/svn/osp/trunk +U xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java +U xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/transform/portal.xsl +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 37706:37707 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r37707 | john.ellis@rsmart.com | 2007-11-02 13:13:25 -0400 (Fri, 02 Nov 2007) | 3 lines + +SAK-12097 +added code to bring all config items into xml, then use the loginPortalPrefix config item in the xsl + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 5 17:03:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 17:03:40 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 17:03:40 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id lA5M3dQf015952; + Mon, 5 Nov 2007 17:03:39 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472F9332.9ED43.19015 ; + 5 Nov 2007 17:03:34 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8404473A92; + Mon, 5 Nov 2007 22:03:27 +0000 (GMT) +Message-ID: <200711052159.lA5LxIYO025799@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 87 + for ; + Mon, 5 Nov 2007 22:03:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B59331D643 + for ; Mon, 5 Nov 2007 22:03:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LxIER025801 + for ; Mon, 5 Nov 2007 16:59:18 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LxIYO025799 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:59:18 -0500 +Date: Mon, 5 Nov 2007 16:59:18 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37760 - in msgcntr/branches/sakai_2-5-x: messageforums-app/src/java/org/sakaiproject/tool/messageforums messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui messageforums-app/src/webapp/jsp/privateMsg messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 17:03:40 2007 +X-DSPAM-Confidence: 0.6202 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37760 + +Author: mmmay@indiana.edu +Date: 2007-11-05 16:59:16 -0500 (Mon, 05 Nov 2007) +New Revision: 37760 + +Modified: +msgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/MessageForumSynopticBean.java +msgcntr/branches/sakai_2-5-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp +msgcntr/branches/sakai_2-5-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java +Log: +svn merge -r 37679:37680 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/MessageForumSynopticBean.java +U messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp +in-143-196:~/java/2-5/sakai_2-5-x/msgcntr mmmay$ svn log -r 37679:37680 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r37680 | hu2@iupui.edu | 2007-11-01 09:03:59 -0400 (Thu, 01 Nov 2007) | 11 lines + +SAK-11130 +http://jira.sakaiproject.org/jira/browse/SAK-11130 +With a localized Sakai, if pvt_deleted, pvt_received and pvt_sent are not set to "Deleted", "Received" and "Sent" (default values). The folders that are not set to default values do not work. + +Without looking at the code I think those default folders names have a internal name which is the same as their default label. When the label is localized, the code is unable to match the localized label to the internal name. + +Quick fix: do not localize pvt_deleted, pvt_received and pvt_sent. I've done it and it works. + +Better but not-so-quick fix: match those default folders localized labels and internal names in the code. I won't complain if someone else does it. :-) + +it support english and spanish now. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 5 17:00:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 17:00:04 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 17:00:04 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by flawless.mail.umich.edu () with ESMTP id lA5M03gN013046; + Mon, 5 Nov 2007 17:00:03 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 472F925D.B092D.5513 ; + 5 Nov 2007 17:00:00 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AB7BA73A92; + Mon, 5 Nov 2007 21:59:46 +0000 (GMT) +Message-ID: <200711052155.lA5LtieP025782@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 470 + for ; + Mon, 5 Nov 2007 21:59:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BD8AC1D93B + for ; Mon, 5 Nov 2007 21:59:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Ltiw3025784 + for ; Mon, 5 Nov 2007 16:55:44 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LtieP025782 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:55:44 -0500 +Date: Mon, 5 Nov 2007 16:55:44 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37759 - in sam/branches/sakai_2-5-x: . samigo-shared-deploy +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 17:00:04 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37759 + +Author: mmmay@indiana.edu +Date: 2007-11-05 16:55:43 -0500 (Mon, 05 Nov 2007) +New Revision: 37759 + +Added: +sam/branches/sakai_2-5-x/samigo-shared-deploy/ +sam/branches/sakai_2-5-x/samigo-shared-deploy/pom.xml +Removed: +sam/branches/sakai_2-5-x/samigo-shared-deploy/pom.xml +Modified: +sam/branches/sakai_2-5-x/pom.xml +Log: +svn merge -r 37725:37726 https://source.sakaiproject.org/svn/sam/trunk +U pom.xml +A samigo-shared-deploy +A samigo-shared-deploy/pom.xml +in-143-196:~/java/2-5/sakai_2-5-x/sam mmmay$ svn log -r 37725:37726 https://source.sakaiproject.org/svn/sam/trunk +------------------------------------------------------------------------ +r37726 | ktsao@stanford.edu | 2007-11-04 02:24:05 -0500 (Sun, 04 Nov 2007) | 1 line + +SAK-12089 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 5 16:58:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 16:58:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 16:58:12 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by awakenings.mail.umich.edu () with ESMTP id lA5LwBOq020790; + Mon, 5 Nov 2007 16:58:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 472F91EE.63938.20229 ; + 5 Nov 2007 16:58:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C07C67392B; + Mon, 5 Nov 2007 21:58:03 +0000 (GMT) +Message-ID: <200711052154.lA5Ls0HM025770@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 386 + for ; + Mon, 5 Nov 2007 21:57:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6BD4C1D643 + for ; Mon, 5 Nov 2007 21:57:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Ls0Mh025772 + for ; Mon, 5 Nov 2007 16:54:00 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5Ls0HM025770 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:54:00 -0500 +Date: Mon, 5 Nov 2007 16:54:00 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37758 - sam/branches/sakai_2-5-x/samigo-app +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 16:58:12 2007 +X-DSPAM-Confidence: 0.7004 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37758 + +Author: mmmay@indiana.edu +Date: 2007-11-05 16:53:59 -0500 (Mon, 05 Nov 2007) +New Revision: 37758 + +Modified: +sam/branches/sakai_2-5-x/samigo-app/pom.xml +Log: +svn merge -r 37672:37673 https://source.sakaiproject.org/svn/sam/trunk +U samigo-app/pom.xml +in-143-196:~/java/2-5/sakai_2-5-x/sam mmmay$ svn log -r 37672:37673 https://source.sakaiproject.org/svn/sam/trunk +------------------------------------------------------------------------ +r37673 | ktsao@stanford.edu | 2007-10-31 16:36:42 -0400 (Wed, 31 Oct 2007) | 1 line + +SAK-12090 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Nov 5 16:54:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 16:54:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 16:54:19 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by brazil.mail.umich.edu () with ESMTP id lA5LsHuf002721; + Mon, 5 Nov 2007 16:54:17 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 472F9103.1A361.21240 ; + 5 Nov 2007 16:54:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9F5587362A; + Mon, 5 Nov 2007 21:54:08 +0000 (GMT) +Message-ID: <200711052150.lA5Lo6XW025758@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 943 + for ; + Mon, 5 Nov 2007 21:53:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDF061D5F0 + for ; Mon, 5 Nov 2007 21:53:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Lo6Zv025760 + for ; Mon, 5 Nov 2007 16:50:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5Lo6XW025758 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:50:06 -0500 +Date: Mon, 5 Nov 2007 16:50:06 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37757 - usermembership/branches/sakai_2-5-x/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 16:54:19 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37757 + +Author: mmmay@indiana.edu +Date: 2007-11-05 16:50:05 -0500 (Mon, 05 Nov 2007) +New Revision: 37757 + +Modified: +usermembership/branches/sakai_2-5-x/tool/pom.xml +Log: +svn merge -r 37730:37731 https://source.sakaiproject.org/svn/usermembership/trunk +U tool/pom.xml +in-143-196:~/java/2-5/sakai_2-5-x/usermembership mmmay$ svn log -r 37730:37731 https://source.sakaiproject.org/svn/usermembership/trunk +------------------------------------------------------------------------ +r37731 | nuno@ufp.pt | 2007-11-05 06:11:32 -0500 (Mon, 05 Nov 2007) | 1 line + +SAK-12104: Tool incorrectly deployed with Maven2 (blank tool page) +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 16:24:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 16:24:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 16:24:07 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by fan.mail.umich.edu () with ESMTP id lA5LO6u9030315; + Mon, 5 Nov 2007 16:24:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 472F89EF.E1E26.20102 ; + 5 Nov 2007 16:24:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 646C568675; + Mon, 5 Nov 2007 21:23:57 +0000 (GMT) +Message-ID: <200711052119.lA5LJvkd025631@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 316 + for ; + Mon, 5 Nov 2007 21:23:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BEC3D1F0F5 + for ; Mon, 5 Nov 2007 21:23:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LJvUt025633 + for ; Mon, 5 Nov 2007 16:19:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LJvkd025631 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:19:57 -0500 +Date: Mon, 5 Nov 2007 16:19:57 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37756 - authz/branches/sakai_2-4-x/authz-tool/tool/src/java/org/sakaiproject/authz/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 16:24:07 2007 +X-DSPAM-Confidence: 0.9848 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37756 + +Author: zqian@umich.edu +Date: 2007-11-05 16:19:54 -0500 (Mon, 05 Nov 2007) +New Revision: 37756 + +Modified: +authz/branches/sakai_2-4-x/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java +Log: +merge fix to SAK-9996 into 2-4-x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 16:21:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 16:21:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 16:21:26 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by faithful.mail.umich.edu () with ESMTP id lA5LLMV9002887; + Mon, 5 Nov 2007 16:21:22 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472F894A.B2CB9.14943 ; + 5 Nov 2007 16:21:18 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 150897392B; + Mon, 5 Nov 2007 21:21:12 +0000 (GMT) +Message-ID: <200711052117.lA5LHEIF025619@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990 + for ; + Mon, 5 Nov 2007 21:21:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9B4621F0A6 + for ; Mon, 5 Nov 2007 21:21:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LHExh025621 + for ; Mon, 5 Nov 2007 16:17:14 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LHEIF025619 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:17:14 -0500 +Date: Mon, 5 Nov 2007 16:17:14 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37755 - authz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 16:21:26 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37755 + +Author: zqian@umich.edu +Date: 2007-11-05 16:17:11 -0500 (Mon, 05 Nov 2007) +New Revision: 37755 + +Modified: +authz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java +Log: +fix to SAK-9996: Cannot save realm and no warning to user if invalid provider id is entered: be more specific in the log message and log the wrong provider id also + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 16:17:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 16:17:53 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 16:17:53 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by awakenings.mail.umich.edu () with ESMTP id lA5LHpnP025802; + Mon, 5 Nov 2007 16:17:51 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 472F8878.6EF4D.31032 ; + 5 Nov 2007 16:17:48 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EF2EC7383B; + Mon, 5 Nov 2007 21:17:40 +0000 (GMT) +Message-ID: <200711052113.lA5LDf3T025607@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713 + for ; + Mon, 5 Nov 2007 21:17:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 20BFE1F0A6 + for ; Mon, 5 Nov 2007 21:17:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LDf6I025609 + for ; Mon, 5 Nov 2007 16:13:41 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LDf3T025607 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:13:41 -0500 +Date: Mon, 5 Nov 2007 16:13:41 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37754 - in site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 16:17:53 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37754 + +Author: zqian@umich.edu +Date: 2007-11-05 16:13:37 -0500 (Mon, 05 Nov 2007) +New Revision: 37754 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +merge fix to SAK-9996 into 2-4-x branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Mon Nov 5 16:14:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 16:14:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 16:14:30 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lA5LETD7030348; + Mon, 5 Nov 2007 16:14:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472F87AD.97578.16296 ; + 5 Nov 2007 16:14:25 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 34B827383B; + Mon, 5 Nov 2007 21:14:14 +0000 (GMT) +Message-ID: <200711052110.lA5LAFUk025595@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83 + for ; + Mon, 5 Nov 2007 21:13:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A1121F0A6 + for ; Mon, 5 Nov 2007 21:14:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LAFLW025597 + for ; Mon, 5 Nov 2007 16:10:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LAFUk025595 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:10:15 -0500 +Date: Mon, 5 Nov 2007 16:10:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37753 - component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 16:14:30 2007 +X-DSPAM-Confidence: 0.7514 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37753 + +Author: ray@media.berkeley.edu +Date: 2007-11-05 16:10:09 -0500 (Mon, 05 Nov 2007) +New Revision: 37753 + +Modified: +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/BeanFactoryPostProcessorCreator.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java +Log: +Add some JavaDoc + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Mon Nov 5 15:42:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 15:42:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 15:42:58 -0500 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by panther.mail.umich.edu () with ESMTP id lA5KgvHC014028; + Mon, 5 Nov 2007 15:42:57 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 472F8036.7AD09.18724 ; + 5 Nov 2007 15:42:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8881B71282; + Mon, 5 Nov 2007 20:42:24 +0000 (GMT) +Message-ID: <200711052038.lA5KcFZG025447@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 595 + for ; + Mon, 5 Nov 2007 20:42:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 89C981CDD3 + for ; Mon, 5 Nov 2007 20:42:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5KcFNF025449 + for ; Mon, 5 Nov 2007 15:38:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5KcFZG025447 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:38:15 -0500 +Date: Mon, 5 Nov 2007 15:38:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37752 - in component/branches/SAK-8315/component-api/component/src: config/org/sakaiproject/config java/org/sakaiproject/component/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 15:42:58 2007 +X-DSPAM-Confidence: 0.7544 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37752 + +Author: ray@media.berkeley.edu +Date: 2007-11-05 15:38:09 -0500 (Mon, 05 Nov 2007) +New Revision: 37752 + +Added: +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java +Modified: +component/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +Log: +Add support for dynamically set default properties + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 15:23:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 15:23:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 15:23:37 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by faithful.mail.umich.edu () with ESMTP id lA5KNa7B026751; + Mon, 5 Nov 2007 15:23:36 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 472F7BC2.97C75.8072 ; + 5 Nov 2007 15:23:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 872907394B; + Mon, 5 Nov 2007 20:23:27 +0000 (GMT) +Message-ID: <200711052019.lA5KJNSK025299@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875 + for ; + Mon, 5 Nov 2007 20:23:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0227F1F183 + for ; Mon, 5 Nov 2007 20:23:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5KJNcU025301 + for ; Mon, 5 Nov 2007 15:19:23 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5KJNSK025299 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:19:23 -0500 +Date: Mon, 5 Nov 2007 15:19:23 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37751 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 15:23:37 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37751 + +Author: zqian@umich.edu +Date: 2007-11-05 15:19:21 -0500 (Mon, 05 Nov 2007) +New Revision: 37751 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +merge fix to SAK-11786 into 2-4-x branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 15:14:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 15:14:21 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 15:14:21 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by godsend.mail.umich.edu () with ESMTP id lA5KEKW7006066; + Mon, 5 Nov 2007 15:14:20 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 472F7990.8E884.18160 ; + 5 Nov 2007 15:14:11 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4B5227393C; + Mon, 5 Nov 2007 20:14:10 +0000 (GMT) +Message-ID: <200711052010.lA5KABbd025258@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534 + for ; + Mon, 5 Nov 2007 20:13:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9C9F61F121 + for ; Mon, 5 Nov 2007 20:13:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5KABOQ025260 + for ; Mon, 5 Nov 2007 15:10:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5KABbd025258 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:10:11 -0500 +Date: Mon, 5 Nov 2007 15:10:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37750 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 15:14:21 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37750 + +Author: zqian@umich.edu +Date: 2007-11-05 15:10:09 -0500 (Mon, 05 Nov 2007) +New Revision: 37750 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +merge fix to SAK-11467 into 2-4-x branch: svn merge -r 34954:34955 https://source.sakaiproject.org/svn//site-manage/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Mon Nov 5 15:13:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 15:13:02 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 15:13:02 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lA5KD14B028211; + Mon, 5 Nov 2007 15:13:01 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 472F7947.2E515.2498 ; + 5 Nov 2007 15:12:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B0E177392C; + Mon, 5 Nov 2007 20:12:55 +0000 (GMT) +Message-ID: <200711052008.lA5K8sFE025246@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 192 + for ; + Mon, 5 Nov 2007 20:12:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B49C91F14E + for ; Mon, 5 Nov 2007 20:12:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5K8s77025248 + for ; Mon, 5 Nov 2007 15:08:54 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5K8sFE025246 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:08:54 -0500 +Date: Mon, 5 Nov 2007 15:08:54 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r37749 - providers/trunk/component/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 15:13:02 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37749 + +Author: csev@umich.edu +Date: 2007-11-05 15:08:49 -0500 (Mon, 05 Nov 2007) +New Revision: 37749 + +Modified: +providers/trunk/component/src/webapp/WEB-INF/components.xml +Log: +SAK-12113 + +Committed the wrong version of components.xml - reverting. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From josrodri@iupui.edu Mon Nov 5 15:09:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 15:09:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 15:09:43 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by faithful.mail.umich.edu () with ESMTP id lA5K9gVd018447; + Mon, 5 Nov 2007 15:09:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 472F787F.7B84F.12877 ; + 5 Nov 2007 15:09:38 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F0E4B738DD; + Mon, 5 Nov 2007 20:09:35 +0000 (GMT) +Message-ID: <200711052005.lA5K5avY025215@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 413 + for ; + Mon, 5 Nov 2007 20:09:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8666A1F14E + for ; Mon, 5 Nov 2007 20:09:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5K5brZ025217 + for ; Mon, 5 Nov 2007 15:05:37 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5K5avY025215 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:05:36 -0500 +Date: Mon, 5 Nov 2007 15:05:36 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f +To: source@collab.sakaiproject.org +From: josrodri@iupui.edu +Subject: [sakai] svn commit: r37748 - in gradebook/trunk/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp webapp/inc webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 15:09:43 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37748 + +Author: josrodri@iupui.edu +Date: 2007-11-05 15:05:34 -0500 (Mon, 05 Nov 2007) +New Revision: 37748 + +Added: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java +gradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf +gradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js +Modified: +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/trunk/app/ui/src/webapp/addAssignment.jsp +gradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf +Log: +SAK-12114 (local issue ONC-2): allow multiple gradebook item additions at one time. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Mon Nov 5 15:06:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 15:06:43 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 15:06:43 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by fan.mail.umich.edu () with ESMTP id lA5K6geH006346; + Mon, 5 Nov 2007 15:06:42 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 472F77C0.DDEA2.23307 ; + 5 Nov 2007 15:06:29 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5F0567385A; + Mon, 5 Nov 2007 20:06:24 +0000 (GMT) +Message-ID: <200711052002.lA5K2FXc025195@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 93 + for ; + Mon, 5 Nov 2007 20:06:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 826B81F121 + for ; Mon, 5 Nov 2007 20:06:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5K2GfU025197 + for ; Mon, 5 Nov 2007 15:02:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5K2FXc025195 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:02:15 -0500 +Date: Mon, 5 Nov 2007 15:02:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r37747 - in providers/trunk/component: . src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 15:06:43 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37747 + +Author: csev@umich.edu +Date: 2007-11-05 15:02:11 -0500 (Mon, 05 Nov 2007) +New Revision: 37747 + +Modified: +providers/trunk/component/pom.xml +providers/trunk/component/src/webapp/WEB-INF/components.xml +Log: +SAK-12113 + +Add the commented out code for the inclusion of the all hands dependency. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Nov 5 15:02:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 15:02:09 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 15:02:09 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by mission.mail.umich.edu () with ESMTP id lA5K291d013244; + Mon, 5 Nov 2007 15:02:09 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 472F76B2.D3D4C.9571 ; + 5 Nov 2007 15:01:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8394373933; + Mon, 5 Nov 2007 20:01:56 +0000 (GMT) +Message-ID: <200711051957.lA5JvwOl025167@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 995 + for ; + Mon, 5 Nov 2007 20:01:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 727361F121 + for ; Mon, 5 Nov 2007 20:01:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5JvwhF025169 + for ; Mon, 5 Nov 2007 14:57:58 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5JvwOl025167 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 14:57:58 -0500 +Date: Mon, 5 Nov 2007 14:57:58 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37746 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 15:02:09 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37746 + +Author: zqian@umich.edu +Date: 2007-11-05 14:57:56 -0500 (Mon, 05 Nov 2007) +New Revision: 37746 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +fix to SAK-9996: Cannot save realm and no warning to user if invalid provider id is entered: no need to call isSectionDefined again after the getSection call + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bahollad@indiana.edu Mon Nov 5 13:13:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 13:13:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 13:13:07 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id lA5ID6ve020389; + Mon, 5 Nov 2007 13:13:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 472F5D2B.14F09.25644 ; + 5 Nov 2007 13:13:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3D6B773762; + Mon, 5 Nov 2007 18:12:03 +0000 (GMT) +Message-ID: <200711051758.lA5HwCA0024902@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524 + for ; + Mon, 5 Nov 2007 18:01:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B68831FCCD + for ; Mon, 5 Nov 2007 18:01:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5HwCtJ024904 + for ; Mon, 5 Nov 2007 12:58:12 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5HwCA0024902 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 12:58:12 -0500 +Date: Mon, 5 Nov 2007 12:58:12 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f +To: source@collab.sakaiproject.org +From: bahollad@indiana.edu +Subject: [sakai] svn commit: r37744 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 13:13:07 2007 +X-DSPAM-Confidence: 0.6501 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37744 + +Author: bahollad@indiana.edu +Date: 2007-11-05 12:58:10 -0500 (Mon, 05 Nov 2007) +New Revision: 37744 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-12027 +Possible problems with sakai 2.4->2.5 mysql conversion script + +Fixed these two errors: +>[Error] Script lines: 724-727 ---------------------- +Duplicate column name 'itemscope' + +>[Error] Script lines: 728-728 ---------------------- +Duplicate key name 'isearchbuilderitem_sco' + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Nov 5 13:12:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 13:12:41 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 13:12:41 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by score.mail.umich.edu () with ESMTP id lA5ICeuU016131; + Mon, 5 Nov 2007 13:12:40 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 472F5D0F.DF836.19356 ; + 5 Nov 2007 13:12:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 52AB37368B; + Mon, 5 Nov 2007 18:12:01 +0000 (GMT) +Message-ID: <200711051805.lA5I5BP4024916@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 96 + for ; + Mon, 5 Nov 2007 18:08:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8624EB56C + for ; Mon, 5 Nov 2007 18:08:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5I5Bpf024918 + for ; Mon, 5 Nov 2007 13:05:11 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5I5BP4024916 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 13:05:11 -0500 +Date: Mon, 5 Nov 2007 13:05:11 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37745 - in content/branches/SAK-12105/content-test/impl: . src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 13:12:41 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37745 + +Author: aaronz@vt.edu +Date: 2007-11-05 13:05:03 -0500 (Mon, 05 Nov 2007) +New Revision: 37745 + +Modified: +content/branches/SAK-12105/content-test/impl/pom.xml +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +Log: +SAK-12105: Tests for adding a large set of resources and removing it are now working, fixed up the maven 2 build + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Mon Nov 5 11:47:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 11:47:35 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 11:47:35 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lA5GlYNv009323; + Mon, 5 Nov 2007 11:47:34 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 472F491D.2F010.14177 ; + 5 Nov 2007 11:47:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7510371C22; + Mon, 5 Nov 2007 16:47:24 +0000 (GMT) +Message-ID: <200711051643.lA5GhQJx024693@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676 + for ; + Mon, 5 Nov 2007 16:47:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D89DC1FD12 + for ; Mon, 5 Nov 2007 16:47:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5GhQk9024695 + for ; Mon, 5 Nov 2007 11:43:26 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5GhQJx024693 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 11:43:26 -0500 +Date: Mon, 5 Nov 2007 11:43:26 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37742 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 11:47:35 2007 +X-DSPAM-Confidence: 0.8410 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37742 + +Author: jzaremba@unicon.net +Date: 2007-11-05 11:43:22 -0500 (Mon, 05 Nov 2007) +New Revision: 37742 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +TSQ-797 Resolved NPE in loadConditionData method + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Mon Nov 5 11:05:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 11:05:28 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 11:05:28 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id lA5G5RKk001609; + Mon, 5 Nov 2007 11:05:27 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 472F3F38.AFEA8.7345 ; + 5 Nov 2007 11:05:15 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 914577357D; + Mon, 5 Nov 2007 16:05:11 +0000 (GMT) +Message-ID: <200711051601.lA5G13cO024539@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 642 + for ; + Mon, 5 Nov 2007 16:04:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CD2781D5EA + for ; Mon, 5 Nov 2007 16:04:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5G13nl024541 + for ; Mon, 5 Nov 2007 11:01:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5G13cO024539 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 11:01:03 -0500 +Date: Mon, 5 Nov 2007 11:01:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37740 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 11:05:28 2007 +X-DSPAM-Confidence: 0.9825 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37740 + +Author: ajpoland@iupui.edu +Date: 2007-11-05 11:01:01 -0500 (Mon, 05 Nov 2007) +New Revision: 37740 + +Modified: +oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +Log: +ONC-143 Combine Rosters adds News tool to all Sites + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Nov 5 10:58:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 10:58:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 10:58:26 -0500 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by casino.mail.umich.edu () with ESMTP id lA5FwPKT029257; + Mon, 5 Nov 2007 10:58:25 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 472F3D98.CA0CF.23395 ; + 5 Nov 2007 10:58:19 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 13E5071717; + Mon, 5 Nov 2007 15:58:14 +0000 (GMT) +Message-ID: <200711051554.lA5FsFkF024509@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 67 + for ; + Mon, 5 Nov 2007 15:57:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 176051D5EA + for ; Mon, 5 Nov 2007 15:57:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5FsFRn024511 + for ; Mon, 5 Nov 2007 10:54:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5FsFkF024509 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 10:54:15 -0500 +Date: Mon, 5 Nov 2007 10:54:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37739 - in content/branches/SAK-12105/content-test: . impl impl/src impl/src/java impl/src/java/org impl/src/java/org/sakaiproject impl/src/java/org/sakaiproject/content impl/src/java/org/sakaiproject/content/test pack pack/src pack/src/webapp pack/src/webapp/WEB-INF test/src/java/org/sakaiproject/content/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 10:58:26 2007 +X-DSPAM-Confidence: 0.9900 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37739 + +Author: aaronz@vt.edu +Date: 2007-11-05 10:53:54 -0500 (Mon, 05 Nov 2007) +New Revision: 37739 + +Added: +content/branches/SAK-12105/content-test/impl/ +content/branches/SAK-12105/content-test/impl/pom.xml +content/branches/SAK-12105/content-test/impl/src/ +content/branches/SAK-12105/content-test/impl/src/java/ +content/branches/SAK-12105/content-test/impl/src/java/org/ +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/ +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/ +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/ +content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java +content/branches/SAK-12105/content-test/pack/ +content/branches/SAK-12105/content-test/pack/pom.xml +content/branches/SAK-12105/content-test/pack/src/ +content/branches/SAK-12105/content-test/pack/src/webapp/ +content/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/ +content/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/components.xml +content/branches/SAK-12105/content-test/pom.xml +Modified: +content/branches/SAK-12105/content-test/.classpath +content/branches/SAK-12105/content-test/.project +content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/ContentIntegrationTest.java +Log: +SAK-12105: Added in the first load test with the first couple of tests in it, just getting things in place before I try to run it +Cleaned up the exsting stuff in content-test and commented out the other set of tests + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From csev@umich.edu Mon Nov 5 10:49:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 10:49:26 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 10:49:26 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by faithful.mail.umich.edu () with ESMTP id lA5FnOpX031198; + Mon, 5 Nov 2007 10:49:24 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472F3B7E.8A964.10520 ; + 5 Nov 2007 10:49:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 224C273548; + Mon, 5 Nov 2007 15:48:18 +0000 (GMT) +Message-ID: <200711051545.lA5FjGPb024473@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 309 + for ; + Mon, 5 Nov 2007 15:48:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 405E51FD1C + for ; Mon, 5 Nov 2007 15:48:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5FjG0Q024475 + for ; Mon, 5 Nov 2007 10:45:16 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5FjGPb024473 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 10:45:16 -0500 +Date: Mon, 5 Nov 2007 10:45:16 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f +To: source@collab.sakaiproject.org +From: csev@umich.edu +Subject: [sakai] svn commit: r37736 - web/trunk/web-impl/impl/src/java/org/sakaiproject/web/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 10:49:26 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37736 + +Author: csev@umich.edu +Date: 2007-11-05 10:45:14 -0500 (Mon, 05 Nov 2007) +New Revision: 37736 + +Modified: +web/trunk/web-impl/impl/src/java/org/sakaiproject/web/impl/WebServiceImpl.java +Log: +SAK-12110 + +Add extra check to make sure the toolsession is not null in the case where +the service is being used from a batch job, web service, or some other import +scenario where there is no browser ad no user. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Nov 5 08:46:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 08:46:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 08:46:13 -0500 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id lA5DkB9w029206; + Mon, 5 Nov 2007 08:46:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 472F1E9D.628ED.29484 ; + 5 Nov 2007 08:46:08 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A7CF6733EF; + Mon, 5 Nov 2007 13:46:20 +0000 (GMT) +Message-ID: <200711051342.lA5Dg3sJ023940@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 936 + for ; + Mon, 5 Nov 2007 13:46:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2BCDB1D58E + for ; Mon, 5 Nov 2007 13:45:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Dg3uu023942 + for ; Mon, 5 Nov 2007 08:42:03 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5Dg3sJ023940 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 08:42:03 -0500 +Date: Mon, 5 Nov 2007 08:42:03 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37733 - content/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 08:46:13 2007 +X-DSPAM-Confidence: 0.8428 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37733 + +Author: rjlowe@iupui.edu +Date: 2007-11-05 08:42:02 -0500 (Mon, 05 Nov 2007) +New Revision: 37733 + +Added: +content/branches/SAK-12105/ +Log: +New /svn/content/branches/SAK-12105 for Aaron Zeckoski + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Mon Nov 5 06:38:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 06:38:00 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 06:38:00 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by fan.mail.umich.edu () with ESMTP id lA5BbxCv012549; + Mon, 5 Nov 2007 06:37:59 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 472F0091.D45A1.20848 ; + 5 Nov 2007 06:37:56 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7415470E11; + Mon, 5 Nov 2007 11:37:55 +0000 (GMT) +Message-ID: <200711051129.lA5BT7E5023776@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 193 + for ; + Mon, 5 Nov 2007 11:32:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0992E1CDDB + for ; Mon, 5 Nov 2007 11:32:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5BT76O023778 + for ; Mon, 5 Nov 2007 06:29:07 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5BT7E5023776 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 06:29:07 -0500 +Date: Mon, 5 Nov 2007 06:29:07 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r37732 - in usermembership/trunk/tool/src: java/org/sakaiproject/umem/tool/ui webapp/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 06:38:00 2007 +X-DSPAM-Confidence: 0.8438 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37732 + +Author: nuno@ufp.pt +Date: 2007-11-05 06:28:57 -0500 (Mon, 05 Nov 2007) +New Revision: 37732 + +Modified: +usermembership/trunk/tool/src/java/org/sakaiproject/umem/tool/ui/UserListBean.java +usermembership/trunk/tool/src/webapp/tools/sakai.usermembership.xml +Log: +SAK-12088: filtering the searching and viewing of users to only those users with the same named usertype(s) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Mon Nov 5 06:15:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 05 Nov 2007 06:15:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 05 Nov 2007 06:15:55 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id lA5BFqAM005108; + Mon, 5 Nov 2007 06:15:52 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 472EFB62.E81B2.14923 ; + 5 Nov 2007 06:15:49 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71A227319D; + Mon, 5 Nov 2007 11:15:44 +0000 (GMT) +Message-ID: <200711051111.lA5BBduq023749@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 359 + for ; + Mon, 5 Nov 2007 11:15:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3755F1FCDF + for ; Mon, 5 Nov 2007 11:15:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5BBeuG023751 + for ; Mon, 5 Nov 2007 06:11:40 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5BBduq023749 + for source@collab.sakaiproject.org; Mon, 5 Nov 2007 06:11:39 -0500 +Date: Mon, 5 Nov 2007 06:11:39 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r37731 - usermembership/trunk/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Nov 5 06:15:55 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37731 + +Author: nuno@ufp.pt +Date: 2007-11-05 06:11:32 -0500 (Mon, 05 Nov 2007) +New Revision: 37731 + +Modified: +usermembership/trunk/tool/pom.xml +Log: +SAK-12104: Tool incorrectly deployed with Maven2 (blank tool page) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Sun Nov 4 10:42:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:42:13 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:42:13 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by chaos.mail.umich.edu () with ESMTP id lA4FgDmG010585; + Sun, 4 Nov 2007 10:42:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 472DE84D.8ED66.20680 ; + 4 Nov 2007 10:42:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 40DF27262C; + Sun, 4 Nov 2007 15:41:56 +0000 (GMT) +Message-ID: <200711021311.lA2DBfMT030317@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42 + for ; + Sun, 4 Nov 2007 15:40:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 176251DE33 + for ; Fri, 2 Nov 2007 13:15:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2DBfYp030319 + for ; Fri, 2 Nov 2007 09:11:41 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2DBfMT030317 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 09:11:41 -0400 +Date: Fri, 2 Nov 2007 09:11:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37699 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:42:13 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37699 + +Author: mmmay@indiana.edu +Date: 2007-11-02 09:11:40 -0400 (Fri, 02 Nov 2007) +New Revision: 37699 + +Modified: +component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +svn merge -r 37696:37697 https://source.sakaiproject.org/svn/component/trunk +U component-api/component/src/config/org/sakaiproject/config/sakai.properties +in-143-196:~/java/2-5/sakai_2-5-x/component mmmay$ svn log -r 37696:37697 https://source.sakaiproject.org/svn/component/trunk +------------------------------------------------------------------------ +r37697 | ian@caret.cam.ac.uk | 2007-11-02 02:10:20 -0400 (Fri, 02 Nov 2007) | 4 lines + +http://jira.sakaiproject.org/jira/browse/SAK-12055 +Fixed + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 10:42:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:42:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:42:07 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by sleepers.mail.umich.edu () with ESMTP id lA4Fg6NE011069; + Sun, 4 Nov 2007 10:42:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 472DE847.14E71.11520 ; + 4 Nov 2007 10:42:03 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 48C88725DD; + Sun, 4 Nov 2007 15:41:55 +0000 (GMT) +Message-ID: <200711021904.lA2J4sbU030934@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358 + for ; + Sun, 4 Nov 2007 15:40:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 105DB1E358 + for ; Fri, 2 Nov 2007 19:08:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4s3R030936 + for ; Fri, 2 Nov 2007 15:04:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4sbU030934 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:54 -0400 +Date: Fri, 2 Nov 2007 15:04:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37722 - mailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:42:07 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37722 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:04:50 -0400 (Fri, 02 Nov 2007) +New Revision: 37722 + +Modified: +mailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Nov 4 10:41:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:41:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:41:33 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by sleepers.mail.umich.edu () with ESMTP id lA4FfXiQ010925; + Sun, 4 Nov 2007 10:41:33 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 472DE823.EB73B.19705 ; + 4 Nov 2007 10:41:27 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7C0D37261E; + Sun, 4 Nov 2007 15:41:19 +0000 (GMT) +Message-ID: <200711021837.lA2IbOPT030739@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786 + for ; + Sun, 4 Nov 2007 15:40:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1FB911E2B8 + for ; Fri, 2 Nov 2007 18:40:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2IbOQr030741 + for ; Fri, 2 Nov 2007 14:37:24 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2IbOPT030739 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 14:37:24 -0400 +Date: Fri, 2 Nov 2007 14:37:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r37710 - content/trunk/content-tool/tool/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:41:33 2007 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37710 + +Author: jimeng@umich.edu +Date: 2007-11-02 14:37:21 -0400 (Fri, 02 Nov 2007) +New Revision: 37710 + +Removed: +content/trunk/content-tool/tool/src/webapp/dojo/ +Log: +SAK-12063 +Removed dojo/dijit source from content-tool + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 10:25:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:25:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:25:30 -0500 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by flawless.mail.umich.edu () with ESMTP id lA4FPTAM011469; + Sun, 4 Nov 2007 10:25:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 472DE460.CA732.15067 ; + 4 Nov 2007 10:25:23 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 738A0724DC; + Sun, 4 Nov 2007 15:25:19 +0000 (GMT) +Message-ID: <200711021903.lA2J3csl030838@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 195 + for ; + Sun, 4 Nov 2007 15:23:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 106C91E344 + for ; Fri, 2 Nov 2007 19:07:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3cme030840 + for ; Fri, 2 Nov 2007 15:03:38 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3csl030838 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:38 -0400 +Date: Fri, 2 Nov 2007 15:03:38 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37714 - announcement/trunk/announcement-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:25:30 2007 +X-DSPAM-Confidence: 0.9874 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37714 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:03:35 -0400 (Fri, 02 Nov 2007) +New Revision: 37714 + +Modified: +announcement/trunk/announcement-tool/tool/src/bundle/announcement_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 10:22:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:22:19 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:22:19 -0500 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id lA4FMIcX028830; + Sun, 4 Nov 2007 10:22:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472DE3A5.BD83F.30704 ; + 4 Nov 2007 10:22:16 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A4BB71552; + Sun, 4 Nov 2007 15:20:25 +0000 (GMT) +Message-ID: <200711021903.lA2J3iHV030850@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 53 + for ; + Sat, 3 Nov 2007 18:30:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C0BCE1E346 + for ; Fri, 2 Nov 2007 19:07:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3iC7030852 + for ; Fri, 2 Nov 2007 15:03:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3iHV030850 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:44 -0400 +Date: Fri, 2 Nov 2007 15:03:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37715 - assignment/trunk/assignment-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:22:19 2007 +X-DSPAM-Confidence: 0.9868 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37715 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:03:41 -0400 (Fri, 02 Nov 2007) +New Revision: 37715 + +Modified: +assignment/trunk/assignment-bundles/assignment_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Sun Nov 4 10:16:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:16:50 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:16:50 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by brazil.mail.umich.edu () with ESMTP id lA4FGnOe019992; + Sun, 4 Nov 2007 10:16:49 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 472DE256.AE4F9.4402 ; + 4 Nov 2007 10:16:41 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CE042724AC; + Sun, 4 Nov 2007 15:15:20 +0000 (GMT) +Message-ID: <200711021900.lA2J0lVU030821@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 666 + for ; + Sat, 3 Nov 2007 18:30:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDD831E341 + for ; Fri, 2 Nov 2007 19:04:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J0lVP030823 + for ; Fri, 2 Nov 2007 15:00:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J0lVU030821 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:00:47 -0400 +Date: Fri, 2 Nov 2007 15:00:47 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37713 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:16:50 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37713 + +Author: zqian@umich.edu +Date: 2007-11-02 15:00:36 -0400 (Fri, 02 Nov 2007) +New Revision: 37713 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm +Log: +fix to SAK-11769:Assignments Confirmation before Upload All + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Sun Nov 4 10:15:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:15:55 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:15:55 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lA4FFtMZ010933; + Sun, 4 Nov 2007 10:15:55 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 472DE225.B51EC.6009 ; + 4 Nov 2007 10:15:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25DFE713B0; + Sun, 4 Nov 2007 15:14:51 +0000 (GMT) +Message-ID: <200711021753.lA2Hr0ew030679@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 979 + for ; + Sat, 3 Nov 2007 18:29:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB0A01E1E8 + for ; Fri, 2 Nov 2007 17:56:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2Hr0H5030681 + for ; Fri, 2 Nov 2007 13:53:00 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2Hr0ew030679 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 13:53:00 -0400 +Date: Fri, 2 Nov 2007 13:53:00 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37708 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:15:55 2007 +X-DSPAM-Confidence: 0.9884 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37708 + +Author: zqian@umich.edu +Date: 2007-11-02 13:52:56 -0400 (Fri, 02 Nov 2007) +New Revision: 37708 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-11497:Issues with editing assignment submissions that are past the due date + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Sun Nov 4 10:15:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:15:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:15:01 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id lA4FF0AN002040; + Sun, 4 Nov 2007 10:15:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472DE1EC.BF7C6.28398 ; + 4 Nov 2007 10:14:55 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0AB9572322; + Sun, 4 Nov 2007 15:13:37 +0000 (GMT) +Message-ID: <200711021851.lA2IpWAo030759@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692 + for ; + Sat, 3 Nov 2007 18:29:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 533C41E323 + for ; Fri, 2 Nov 2007 18:55:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2IpWV6030761 + for ; Fri, 2 Nov 2007 14:51:33 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2IpWAo030759 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 14:51:32 -0400 +Date: Fri, 2 Nov 2007 14:51:32 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37711 - in memory/branches/SAK-11913/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakaiproject/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:15:01 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37711 + +Author: aaronz@vt.edu +Date: 2007-11-02 14:51:21 -0400 (Fri, 02 Nov 2007) +New Revision: 37711 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java +Log: +SAK-11913: Added in a config class and also fixed up the the code to actually take advantage of the ehcache listeners + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Sun Nov 4 10:14:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:14:18 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:14:18 -0500 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id lA4FEIbn030908; + Sun, 4 Nov 2007 10:14:18 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 472DE1BE.6E1A4.12482 ; + 4 Nov 2007 10:14:09 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7D87771CB6; + Sun, 4 Nov 2007 15:12:41 +0000 (GMT) +Message-ID: <200711021713.lA2HDfoh030653@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 389 + for ; + Sat, 3 Nov 2007 18:30:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C73AE1E15C + for ; Fri, 2 Nov 2007 17:17:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2HDfMH030655 + for ; Fri, 2 Nov 2007 13:13:41 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2HDfoh030653 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 13:13:41 -0400 +Date: Fri, 2 Nov 2007 13:13:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r37707 - in osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src: java/org/sakaiproject/portal/xsltcharon/impl webapp/WEB-INF/transform +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:14:18 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37707 + +Author: john.ellis@rsmart.com +Date: 2007-11-02 13:13:25 -0400 (Fri, 02 Nov 2007) +New Revision: 37707 + +Modified: +osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java +osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/transform/portal.xsl +Log: +SAK-12097 +added code to bring all config items into xml, then use the loginPortalPrefix config item in the xsl + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Sun Nov 4 10:12:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:12:33 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:12:33 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id lA4FCW7p024401; + Sun, 4 Nov 2007 10:12:32 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472DE159.8AD94.23283 ; + 4 Nov 2007 10:12:28 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 02C416EFC9; + Sun, 4 Nov 2007 15:11:40 +0000 (GMT) +Message-ID: <200711040228.lA42SDf1032011@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758 + for ; + Sat, 3 Nov 2007 18:31:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D068F1F97C + for ; Sun, 4 Nov 2007 02:31:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA42SDSn032013 + for ; Sat, 3 Nov 2007 22:28:13 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA42SDf1032011 + for source@collab.sakaiproject.org; Sat, 3 Nov 2007 22:28:13 -0400 +Date: Sat, 3 Nov 2007 22:28:13 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37725 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:12:33 2007 +X-DSPAM-Confidence: 0.8487 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37725 + +Author: zqian@umich.edu +Date: 2007-11-03 22:28:10 -0400 (Sat, 03 Nov 2007) +New Revision: 37725 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm +Log: +fix for SAK-11377:'Add a course(s) and/or section(s) not listed above...' should check if course/section already has worksite + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Sun Nov 4 10:12:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:12:27 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:12:27 -0500 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id lA4FCQWh007265; + Sun, 4 Nov 2007 10:12:26 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 472DE153.305F4.16460 ; + 4 Nov 2007 10:12:22 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D7812667B8; + Sun, 4 Nov 2007 15:11:15 +0000 (GMT) +Message-ID: <200711021618.lA2GIemg030605@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198 + for ; + Sat, 3 Nov 2007 18:29:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9FE0A1E0E1 + for ; Fri, 2 Nov 2007 16:22:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2GIeq2030607 + for ; Fri, 2 Nov 2007 12:18:40 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2GIemg030605 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 12:18:40 -0400 +Date: Fri, 2 Nov 2007 12:18:40 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37706 - in content/branches/SAK-11543: content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/cover content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:12:27 2007 +X-DSPAM-Confidence: 0.8450 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37706 + +Author: jzaremba@unicon.net +Date: 2007-11-02 12:18:13 -0400 (Fri, 02 Nov 2007) +New Revision: 37706 + +Modified: +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/SAK-11543/content-bundles/content.properties +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +Refactoring + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Nov 4 10:11:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:11:24 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:11:24 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by panther.mail.umich.edu () with ESMTP id lA4FBN8x005616; + Sun, 4 Nov 2007 10:11:23 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 472DE116.35806.12615 ; + 4 Nov 2007 10:11:21 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E633471D13; + Sat, 3 Nov 2007 18:48:09 +0000 (GMT) +Message-ID: <200711021836.lA2IaAZi030727@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 36 + for ; + Sat, 3 Nov 2007 18:29:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 68EF81E2B6 + for ; Fri, 2 Nov 2007 18:39:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2IaBwY030729 + for ; Fri, 2 Nov 2007 14:36:11 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2IaAZi030727 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 14:36:10 -0400 +Date: Fri, 2 Nov 2007 14:36:10 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r37709 - content/trunk/content-tool/tool/src/webapp/vm/content +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:11:24 2007 +X-DSPAM-Confidence: 0.8496 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37709 + +Author: jimeng@umich.edu +Date: 2007-11-02 14:36:07 -0400 (Fri, 02 Nov 2007) +New Revision: 37709 + +Modified: +content/trunk/content-tool/tool/src/webapp/vm/content/sakai_filepicker_select.vm +content/trunk/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm +Log: +SAK-12063 +Resources uses dojo/dijit source from reference instead of content-tool + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 10:11:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:11:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:11:12 -0500 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id lA4FBBC1030127; + Sun, 4 Nov 2007 10:11:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472DE0FF.7DB8C.20858 ; + 4 Nov 2007 10:10:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5ED9172396; + Sat, 3 Nov 2007 18:47:45 +0000 (GMT) +Message-ID: <200711021904.lA2J4TSJ030898@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 743 + for ; + Sat, 3 Nov 2007 18:31:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D89E61E350 + for ; Fri, 2 Nov 2007 19:08:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4TBx030900 + for ; Fri, 2 Nov 2007 15:04:29 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4TSJ030898 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:29 -0400 +Date: Fri, 2 Nov 2007 15:04:29 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37719 - postem/trunk/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:11:12 2007 +X-DSPAM-Confidence: 0.9839 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37719 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:04:12 -0400 (Fri, 02 Nov 2007) +New Revision: 37719 + +Modified: +postem/trunk/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle/Messages_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 10:10:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:10:58 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:10:58 -0500 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id lA4FAwKc009739; + Sun, 4 Nov 2007 10:10:58 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 472DE0FB.99A79.25695 ; + 4 Nov 2007 10:10:54 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9989270CC9; + Sat, 3 Nov 2007 18:47:31 +0000 (GMT) +Message-ID: <200711021903.lA2J3vgg030874@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 493 + for ; + Sat, 3 Nov 2007 18:29:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 73E781E34A + for ; Fri, 2 Nov 2007 19:07:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3vhB030876 + for ; Fri, 2 Nov 2007 15:03:57 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3vgg030874 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:57 -0400 +Date: Fri, 2 Nov 2007 15:03:57 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37717 - chat/trunk/chat-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:10:58 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37717 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:03:53 -0400 (Fri, 02 Nov 2007) +New Revision: 37717 + +Modified: +chat/trunk/chat-tool/tool/src/bundle/chat_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 10:06:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:06:07 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:06:07 -0500 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by godsend.mail.umich.edu () with ESMTP id lA4F66PB007499; + Sun, 4 Nov 2007 10:06:06 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 472DDE34.11E31.31813 ; + 4 Nov 2007 09:59:02 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D74971D28; + Sat, 3 Nov 2007 18:36:30 +0000 (GMT) +Message-ID: <200711021904.lA2J48g5030886@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 229 + for ; + Sat, 3 Nov 2007 18:29:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 605161E34C + for ; Fri, 2 Nov 2007 19:07:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J488j030888 + for ; Fri, 2 Nov 2007 15:04:08 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J48g5030886 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:08 -0400 +Date: Fri, 2 Nov 2007 15:04:08 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37718 - osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:06:07 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37718 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:04:04 -0400 (Fri, 02 Nov 2007) +New Revision: 37718 + +Modified: +osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 10:05:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 10:05:12 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 10:05:12 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id lA4F5Bom005379; + Sun, 4 Nov 2007 10:05:11 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 472DDF99.8636.19620 ; + 4 Nov 2007 10:04:59 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B356571358; + Sat, 3 Nov 2007 18:42:27 +0000 (GMT) +Message-ID: <200711021904.lA2J4mU3030922@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 613 + for ; + Sat, 3 Nov 2007 18:29:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9E6F11E356 + for ; Fri, 2 Nov 2007 19:08:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4mUF030924 + for ; Fri, 2 Nov 2007 15:04:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4mU3030922 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:48 -0400 +Date: Fri, 2 Nov 2007 15:04:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37721 - in site-manage/trunk: pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle site-manage-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 10:05:12 2007 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37721 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:04:39 -0400 (Fri, 02 Nov 2007) +New Revision: 37721 + +Modified: +site-manage/trunk/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_nl.properties +site-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Sun Nov 4 09:58:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:58:37 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:58:37 -0500 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by flawless.mail.umich.edu () with ESMTP id lA4Ewbok003261; + Sun, 4 Nov 2007 09:58:37 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 472DDE16.3E853.17476 ; + 4 Nov 2007 09:58:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D828C71F67; + Sat, 3 Nov 2007 18:36:06 +0000 (GMT) +Message-ID: <200711021456.lA2EukD2030450@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751 + for ; + Sat, 3 Nov 2007 18:28:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 237381E052 + for ; Fri, 2 Nov 2007 15:00:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2EukYO030452 + for ; Fri, 2 Nov 2007 10:56:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2EukD2030450 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 10:56:46 -0400 +Date: Fri, 2 Nov 2007 10:56:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37701 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:58:37 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37701 + +Author: zqian@umich.edu +Date: 2007-11-02 10:56:44 -0400 (Fri, 02 Nov 2007) +New Revision: 37701 + +Modified: +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm +Log: +Fix to SAK-11858:Assignment Grade view doesn't include EID + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Sun Nov 4 09:58:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:58:14 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:58:14 -0500 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by chaos.mail.umich.edu () with ESMTP id lA4EwDMo029646; + Sun, 4 Nov 2007 09:58:13 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 472DDDFF.54A91.6944 ; + 4 Nov 2007 09:58:10 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6DD4272230; + Sat, 3 Nov 2007 18:35:44 +0000 (GMT) +Message-ID: <200711040724.lA47OF8o032118@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 792 + for ; + Sat, 3 Nov 2007 18:29:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A753920716 + for ; Sun, 4 Nov 2007 07:27:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA47OFoP032120 + for ; Sun, 4 Nov 2007 02:24:15 -0500 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA47OF8o032118 + for source@collab.sakaiproject.org; Sun, 4 Nov 2007 02:24:15 -0500 +Date: Sun, 4 Nov 2007 02:24:15 -0500 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r37726 - in sam/trunk: . samigo-shared-deploy +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:58:14 2007 +X-DSPAM-Confidence: 0.9816 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37726 + +Author: ktsao@stanford.edu +Date: 2007-11-04 02:24:05 -0500 (Sun, 04 Nov 2007) +New Revision: 37726 + +Added: +sam/trunk/samigo-shared-deploy/ +sam/trunk/samigo-shared-deploy/pom.xml +Modified: +sam/trunk/pom.xml +Log: +SAK-12089 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Sun Nov 4 09:58:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:58:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:58:01 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id lA4Ew09j021744; + Sun, 4 Nov 2007 09:58:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 472DDDF3.49E52.23588 ; + 4 Nov 2007 09:57:58 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E50B071485; + Sat, 3 Nov 2007 18:35:26 +0000 (GMT) +Message-ID: <200711021310.lA2DAGcZ030305@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 963 + for ; + Sat, 3 Nov 2007 18:31:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA4631DE30 + for ; Fri, 2 Nov 2007 13:13:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2DAG4u030307 + for ; Fri, 2 Nov 2007 09:10:16 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2DAGcZ030305 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 09:10:16 -0400 +Date: Fri, 2 Nov 2007 09:10:16 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37698 - in reference/branches/sakai_2-5-x: demo docs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:58:01 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37698 + +Author: mmmay@indiana.edu +Date: 2007-11-02 09:10:14 -0400 (Fri, 02 Nov 2007) +New Revision: 37698 + +Modified: +reference/branches/sakai_2-5-x/demo/sakai.properties +reference/branches/sakai_2-5-x/docs/sakai.properties +Log: +svn merge -r 37695:37696 https://source.sakaiproject.org/svn/reference/trunk +U demo/sakai.properties +U docs/sakai.properties +in-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37695:37696 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37696 | ian@caret.cam.ac.uk | 2007-11-02 02:08:53 -0400 (Fri, 02 Nov 2007) | 4 lines + +http://jira.sakaiproject.org/jira/browse/SAK-12055 +Fixed + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Sun Nov 4 09:57:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:57:44 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:57:44 -0500 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by awakenings.mail.umich.edu () with ESMTP id lA4EvfKR029821; + Sun, 4 Nov 2007 09:57:41 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472DDCF5.449CA.23872 ; + 4 Nov 2007 09:53:44 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7A18D71E69; + Sat, 3 Nov 2007 18:30:28 +0000 (GMT) +Message-ID: <200711021504.lA2F4dXS030479@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 876 + for ; + Sat, 3 Nov 2007 18:28:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 04DD71E063 + for ; Fri, 2 Nov 2007 15:08:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2F4eEu030481 + for ; Fri, 2 Nov 2007 11:04:40 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2F4dXS030479 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 11:04:39 -0400 +Date: Fri, 2 Nov 2007 11:04:39 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37703 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:57:44 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37703 + +Author: dlhaines@umich.edu +Date: 2007-11-02 11:04:38 -0400 (Fri, 02 Nov 2007) +New Revision: 37703 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update patch for SAK 9725 for new build. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Sun Nov 4 09:57:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:57:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:57:17 -0500 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id lA4EvGQB021430; + Sun, 4 Nov 2007 09:57:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 472DDDC7.98E5.23855 ; + 4 Nov 2007 09:57:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 413DF712E1; + Sat, 3 Nov 2007 18:34:45 +0000 (GMT) +Message-ID: <200711021426.lA2EQBMv030389@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0 + for ; + Sat, 3 Nov 2007 18:31:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F39801DFFD + for ; Fri, 2 Nov 2007 14:29:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2EQBxO030391 + for ; Fri, 2 Nov 2007 10:26:11 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2EQBMv030389 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 10:26:11 -0400 +Date: Fri, 2 Nov 2007 10:26:11 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37700 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:57:17 2007 +X-DSPAM-Confidence: 0.9873 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37700 + +Author: zqian@umich.edu +Date: 2007-11-02 10:26:09 -0400 (Fri, 02 Nov 2007) +New Revision: 37700 + +Modified: +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +Fix to SAK-12085:Long group list in For column does not wrap + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Sun Nov 4 09:56:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:56:01 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:56:01 -0500 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by casino.mail.umich.edu () with ESMTP id lA4Eu0Wt019250; + Sun, 4 Nov 2007 09:56:00 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 472DDD76.7251.11045 ; + 4 Nov 2007 09:55:52 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 113E37128C; + Sat, 3 Nov 2007 18:33:26 +0000 (GMT) +Message-ID: <200711021531.lA2FV64u030555@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 72 + for ; + Sat, 3 Nov 2007 18:29:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5BCB41E092 + for ; Fri, 2 Nov 2007 15:34:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2FV69Y030557 + for ; Fri, 2 Nov 2007 11:31:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2FV64u030555 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 11:31:06 -0400 +Date: Fri, 2 Nov 2007 11:31:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37705 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:56:01 2007 +X-DSPAM-Confidence: 0.9887 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37705 + +Author: dlhaines@umich.edu +Date: 2007-11-02 11:31:04 -0400 (Fri, 02 Nov 2007) +New Revision: 37705 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update for fix to SAK 10419 patch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 09:55:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:55:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:55:39 -0500 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by flawless.mail.umich.edu () with ESMTP id lA4Etcx3002010; + Sun, 4 Nov 2007 09:55:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 472DDD64.978D6.30700 ; + 4 Nov 2007 09:55:35 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 776FE7236E; + Sat, 3 Nov 2007 18:33:09 +0000 (GMT) +Message-ID: <200711021904.lA2J4aMf030910@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 551 + for ; + Sat, 3 Nov 2007 18:30:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D9F941E352 + for ; Fri, 2 Nov 2007 19:08:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4awH030912 + for ; Fri, 2 Nov 2007 15:04:36 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4aMf030910 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:36 -0400 +Date: Fri, 2 Nov 2007 15:04:36 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37720 - profile/trunk/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:55:39 2007 +X-DSPAM-Confidence: 0.9851 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37720 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:04:33 -0400 (Fri, 02 Nov 2007) +New Revision: 37720 + +Modified: +profile/trunk/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle/Messages_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Sun Nov 4 09:55:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:55:17 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:55:17 -0500 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id lA4EtGLu001891; + Sun, 4 Nov 2007 09:55:16 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 472DDD4E.7C55C.16141 ; + 4 Nov 2007 09:55:13 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5255A71E32; + Sat, 3 Nov 2007 18:32:45 +0000 (GMT) +Message-ID: <200711022021.lA2KLqdD031036@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854 + for ; + Sat, 3 Nov 2007 18:29:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 839AA1E378 + for ; Fri, 2 Nov 2007 20:25:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2KLqRx031038 + for ; Fri, 2 Nov 2007 16:21:52 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2KLqdD031036 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 16:21:52 -0400 +Date: Fri, 2 Nov 2007 16:21:52 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37723 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:55:17 2007 +X-DSPAM-Confidence: 0.8500 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37723 + +Author: zqian@umich.edu +Date: 2007-11-02 16:21:48 -0400 (Fri, 02 Nov 2007) +New Revision: 37723 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +Fix to SAK-12029:zip file not accepted in Assignments "Upload All" feature + +Checked in Ray's patch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Sun Nov 4 09:53:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:53:39 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:53:39 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by faithful.mail.umich.edu () with ESMTP id lA4Erc5Q024826; + Sun, 4 Nov 2007 09:53:38 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 472DDCEA.ED2E.25115 ; + 4 Nov 2007 09:53:33 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B8B9471E83; + Sat, 3 Nov 2007 18:30:28 +0000 (GMT) +Message-ID: <200711021903.lA2J3oQW030862@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897 + for ; + Sat, 3 Nov 2007 18:28:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0FAA11E348 + for ; Fri, 2 Nov 2007 19:07:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3oAs030864 + for ; Fri, 2 Nov 2007 15:03:50 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3oQW030862 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:50 -0400 +Date: Fri, 2 Nov 2007 15:03:50 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37716 - calendar/trunk/calendar-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:53:39 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37716 + +Author: bkirschn@umich.edu +Date: 2007-11-02 15:03:47 -0400 (Fri, 02 Nov 2007) +New Revision: 37716 + +Modified: +calendar/trunk/calendar-tool/tool/src/bundle/calendar_nl.properties +Log: +SAK-11241 Dutch translations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Sun Nov 4 09:53:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 04 Nov 2007 09:53:30 -0500 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 04 Nov 2007 09:53:30 -0500 +Received: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43]) + by brazil.mail.umich.edu () with ESMTP id lA4ErTbY011160; + Sun, 4 Nov 2007 09:53:29 -0500 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dreamcatcher.mr.itd.umich.edu ID 472DDCE3.11315.24761 ; + 4 Nov 2007 09:53:26 -0500 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1FB7171C68; + Sat, 3 Nov 2007 18:30:08 +0000 (GMT) +Message-ID: <200711022227.lA2MR8ql031161@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 175 + for ; + Sat, 3 Nov 2007 18:28:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 24D8E1E632 + for ; Fri, 2 Nov 2007 22:30:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2MR8Fh031163 + for ; Fri, 2 Nov 2007 18:27:08 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2MR8ql031161 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 18:27:08 -0400 +Date: Fri, 2 Nov 2007 18:27:08 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37724 - in component/branches/SAK-8315: component-api component-api/component/src/config/org/sakaiproject/config component-api/component/src/java/org/sakaiproject/component/api component-api/component/src/java/org/sakaiproject/component/impl component-api/component/src/java/org/sakaiproject/util component-impl component-impl/impl/src component-impl/impl/src/java/org/sakaiproject/component/impl component-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Nov 4 09:53:30 2007 +X-DSPAM-Confidence: 0.7598 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37724 + +Author: ray@media.berkeley.edu +Date: 2007-11-02 18:26:46 -0400 (Fri, 02 Nov 2007) +New Revision: 37724 + +Added: +component/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java +Removed: +component/branches/SAK-8315/component-impl/impl/src/resources/ +Modified: +component/branches/SAK-8315/component-api/.classpath +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java +component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java +component/branches/SAK-8315/component-impl/.classpath +component/branches/SAK-8315/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java +component/branches/SAK-8315/component-impl/pack/src/webapp/WEB-INF/components.xml +Log: +Move ApplicationContext refresh logic out of other locations and into ApplicationContext subclass + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Nov 2 02:14:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 02 Nov 2007 02:14:28 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 02 Nov 2007 02:14:28 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id lA26ESma017267; + Fri, 2 Nov 2007 02:14:28 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 472AC03E.6A198.10307 ; + 2 Nov 2007 02:14:25 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6555709D3; + Thu, 1 Nov 2007 10:45:44 +0000 (GMT) +Message-ID: <200711020610.lA26AU8K029607@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 950 + for ; + Thu, 1 Nov 2007 10:45:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ABAC61DBF7 + for ; Fri, 2 Nov 2007 06:13:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA26AULU029609 + for ; Fri, 2 Nov 2007 02:10:30 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA26AU8K029607 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 02:10:30 -0400 +Date: Fri, 2 Nov 2007 02:10:30 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37697 - component/trunk/component-api/component/src/config/org/sakaiproject/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 2 02:14:28 2007 +X-DSPAM-Confidence: 0.9786 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37697 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-02 02:10:20 -0400 (Fri, 02 Nov 2007) +New Revision: 37697 + +Modified: +component/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12055 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Nov 2 02:13:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 02 Nov 2007 02:13:16 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 02 Nov 2007 02:13:16 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by score.mail.umich.edu () with ESMTP id lA26DC7p017044; + Fri, 2 Nov 2007 02:13:13 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472ABFEC.99B5A.3770 ; + 2 Nov 2007 02:13:10 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 039B0709D1; + Thu, 1 Nov 2007 10:44:23 +0000 (GMT) +Message-ID: <200711020609.lA2697d7029595@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 568 + for ; + Thu, 1 Nov 2007 10:44:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D71991DBF7 + for ; Fri, 2 Nov 2007 06:12:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2698TE029597 + for ; Fri, 2 Nov 2007 02:09:08 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2697d7029595 + for source@collab.sakaiproject.org; Fri, 2 Nov 2007 02:09:07 -0400 +Date: Fri, 2 Nov 2007 02:09:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37696 - in reference/trunk: demo docs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Nov 2 02:13:16 2007 +X-DSPAM-Confidence: 0.9793 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37696 + +Author: ian@caret.cam.ac.uk +Date: 2007-11-02 02:08:53 -0400 (Fri, 02 Nov 2007) +New Revision: 37696 + +Modified: +reference/trunk/demo/sakai.properties +reference/trunk/docs/sakai.properties +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12055 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Thu Nov 1 18:14:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 18:14:15 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 18:14:15 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by awakenings.mail.umich.edu () with ESMTP id lA1MEBK4029841; + Thu, 1 Nov 2007 18:14:11 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 472A4FAD.8A680.18429 ; + 1 Nov 2007 18:14:08 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 944B34EAA7; + Thu, 1 Nov 2007 02:58:02 +0000 (GMT) +Message-ID: <200711012210.lA1MAKjW029296@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 914 + for ; + Thu, 1 Nov 2007 02:57:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 07DA9162AC + for ; Thu, 1 Nov 2007 22:13:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1MAL4V029298 + for ; Thu, 1 Nov 2007 18:10:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1MAKjW029296 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 18:10:20 -0400 +Date: Thu, 1 Nov 2007 18:10:20 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37695 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 18:14:15 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37695 + +Author: zach.thomas@txstate.edu +Date: 2007-11-01 18:10:14 -0400 (Thu, 01 Nov 2007) +New Revision: 37695 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +another stab at TSQ-789 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ostermmg@whitman.edu Thu Nov 1 18:00:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 18:00:01 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 18:00:01 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by jacknife.mail.umich.edu () with ESMTP id lA1M00IM001821; + Thu, 1 Nov 2007 18:00:00 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 472A4C58.9FA52.24336 ; + 1 Nov 2007 17:59:55 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0FA254F8EC; + Thu, 1 Nov 2007 02:43:58 +0000 (GMT) +Message-ID: <200711012156.lA1Lu7ol029217@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 685 + for ; + Thu, 1 Nov 2007 02:43:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A42D21DC37 + for ; Thu, 1 Nov 2007 21:59:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Lu7HC029219 + for ; Thu, 1 Nov 2007 17:56:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Lu7ol029217 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 17:56:07 -0400 +Date: Thu, 1 Nov 2007 17:56:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f +To: source@collab.sakaiproject.org +From: ostermmg@whitman.edu +Subject: [sakai] svn commit: r37694 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 18:00:01 2007 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37694 + +Author: ostermmg@whitman.edu +Date: 2007-11-01 17:56:04 -0400 (Thu, 01 Nov 2007) +New Revision: 37694 + +Modified: +content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +SAK-11813 +Provide mechanism to maintain unintended leading spaces in content volumes + +svn merge -c36566 https://source.sakaiproject.org/svn/content/trunk/ . +U content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Thu Nov 1 16:45:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 16:45:49 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 16:45:49 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id lA1KjmpJ003641; + Thu, 1 Nov 2007 16:45:48 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472A3AEF.57EB3.12554 ; + 1 Nov 2007 16:45:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 84B5070785; + Thu, 1 Nov 2007 01:29:39 +0000 (GMT) +Message-ID: <200711012041.lA1KfqlU029109@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 304 + for ; + Thu, 1 Nov 2007 01:29:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A60F01DC05 + for ; Thu, 1 Nov 2007 20:45:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Kfq77029111 + for ; Thu, 1 Nov 2007 16:41:52 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1KfqlU029109 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 16:41:52 -0400 +Date: Thu, 1 Nov 2007 16:41:52 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37693 - in osp/trunk/matrix: api/src/java/org/theospi/portfolio/matrix/model/impl tool/src/java/org/theospi/portfolio/matrix/control +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 16:45:49 2007 +X-DSPAM-Confidence: 0.9855 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37693 + +Author: bkirschn@umich.edu +Date: 2007-11-01 16:41:49 -0400 (Thu, 01 Nov 2007) +New Revision: 37693 + +Modified: +osp/trunk/matrix/api/src/java/org/theospi/portfolio/matrix/model/impl/MatrixImpl.hbm.xml +osp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/BaseScaffoldingController.java +osp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/EditScaffoldingCellController.java +osp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewMatrixController.java +osp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewScaffoldingController.java +Log: +SAK-12066 - fix bugs related to hibernate lazy loading... +revert r36794 re-enable lazy loading +revert r34564 re-enable BaseScaffoldingController.traverseScaffoldingCells +update BaseScaffoldingController.traverseScaffoldingCells() to use matrixManager.getScaffoldingCells + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 1 16:06:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 16:06:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 16:06:04 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by awakenings.mail.umich.edu () with ESMTP id lA1K62Ub010788; + Thu, 1 Nov 2007 16:06:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 472A31A2.D8B29.22554 ; + 1 Nov 2007 16:05:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 885CD70760; + Thu, 1 Nov 2007 00:49:59 +0000 (GMT) +Message-ID: <200711012002.lA1K2EB3028984@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 433 + for ; + Thu, 1 Nov 2007 00:49:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 35A561DADD + for ; Thu, 1 Nov 2007 20:05:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1K2EWW028986 + for ; Thu, 1 Nov 2007 16:02:14 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1K2EB3028984 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 16:02:14 -0400 +Date: Thu, 1 Nov 2007 16:02:14 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37692 - osp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 16:06:04 2007 +X-DSPAM-Confidence: 0.7624 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37692 + +Author: mmmay@indiana.edu +Date: 2007-11-01 16:02:13 -0400 (Thu, 01 Nov 2007) +New Revision: 37692 + +Modified: +osp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation/addPresentation2.jsp +Log: +svn merge -r 37363:37364 https://source.sakaiproject.org/svn/osp/trunk +U presentation/tool/src/webapp/WEB-INF/jsp/presentation/addPresentation2.jsp +in-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 37363:37364 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r37364 | chmaurer@iupui.edu | 2007-10-24 15:47:28 -0400 (Wed, 24 Oct 2007) | 2 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-12026 +Applying the patch to fix the multi-select for forms. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 1 16:02:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 16:02:15 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 16:02:15 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by fan.mail.umich.edu () with ESMTP id lA1K29nd003582; + Thu, 1 Nov 2007 16:02:09 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472A30BB.9ACFD.21548 ; + 1 Nov 2007 16:02:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 78A83705BC; + Thu, 1 Nov 2007 00:46:07 +0000 (GMT) +Message-ID: <200711011958.lA1JwKxZ028959@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 756 + for ; + Thu, 1 Nov 2007 00:45:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B33991DADD + for ; Thu, 1 Nov 2007 20:01:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JwKPO028961 + for ; Thu, 1 Nov 2007 15:58:20 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JwKxZ028959 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:58:20 -0400 +Date: Thu, 1 Nov 2007 15:58:20 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37691 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 16:02:15 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37691 + +Author: mmmay@indiana.edu +Date: 2007-11-01 15:58:19 -0400 (Thu, 01 Nov 2007) +New Revision: 37691 + +Modified: +polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java +Log: +svn merge -r 37659:37661 https://source.sakaiproject.org/svn/polls/trunk +U tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java +in-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn merge -r 37660:37661 https://source.sakaiproject.org/svn/polls/trunk +in-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 37659:37661 https://source.sakaiproject.org/svn/polls/trunk +------------------------------------------------------------------------ +r37660 | david.horwitz@uct.ac.za | 2007-10-31 04:16:00 -0400 (Wed, 31 Oct 2007) | 1 line + +SAK-12083 only give one error condition on voting +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 1 15:58:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 15:58:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 15:58:52 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id lA1JwpLD006843; + Thu, 1 Nov 2007 15:58:51 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 472A2FF2.E8D5D.336 ; + 1 Nov 2007 15:58:47 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1984F7024D; + Thu, 1 Nov 2007 00:42:48 +0000 (GMT) +Message-ID: <200711011955.lA1Jt5tP028947@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 23 + for ; + Thu, 1 Nov 2007 00:42:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 862C01DC02 + for ; Thu, 1 Nov 2007 19:58:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Jt547028949 + for ; Thu, 1 Nov 2007 15:55:05 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Jt5tP028947 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:55:05 -0400 +Date: Thu, 1 Nov 2007 15:55:05 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37690 - in webservices/branches/sakai_2-5-x/axis: . provisional src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 15:58:52 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37690 + +Author: mmmay@indiana.edu +Date: 2007-11-01 15:55:04 -0400 (Thu, 01 Nov 2007) +New Revision: 37690 + +Added: +webservices/branches/sakai_2-5-x/axis/provisional/ +webservices/branches/sakai_2-5-x/axis/provisional/ContentHosting.jws +webservices/branches/sakai_2-5-x/axis/provisional/README +Removed: +webservices/branches/sakai_2-5-x/axis/provisional/ContentHosting.jws +webservices/branches/sakai_2-5-x/axis/provisional/README +webservices/branches/sakai_2-5-x/axis/src/webapp/ContentHosting.jws +Log: +svn merge -r 37663:37664 https://source.sakaiproject.org/svn/webservices/trunk +A axis/provisional +A axis/provisional/ContentHosting.jws +A axis/provisional/README +D axis/src/webapp/ContentHosting.jws +in-143-196:~/java/2-5/sakai_2-5-x/webservices mmmay$ svn log -r 37663:37664 https://source.sakaiproject.org/svn/webservices/trunk------------------------------------------------------------------------ +r37664 | sgithens@caret.cam.ac.uk | 2007-10-31 08:23:45 -0400 (Wed, 31 Oct 2007) | 1 line + +SAK-12084 Creating a provisional spot for new webservices. Moving ContentHosting.jws in there until the performance problem is fixed. At the moment unsure of whether this will change the method signature. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Nov 1 15:57:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 15:57:30 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 15:57:30 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by jacknife.mail.umich.edu () with ESMTP id lA1JvTMW010027; + Thu, 1 Nov 2007 15:57:29 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472A2F9F.A8590.10457 ; + 1 Nov 2007 15:57:23 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9DCFB705AA; + Thu, 1 Nov 2007 00:41:15 +0000 (GMT) +Message-ID: <200711011953.lA1JrWCx028935@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 638 + for ; + Thu, 1 Nov 2007 00:41:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D790A1DADD + for ; Thu, 1 Nov 2007 19:56:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JrW0H028937 + for ; Thu, 1 Nov 2007 15:53:32 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JrWCx028935 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:53:32 -0400 +Date: Thu, 1 Nov 2007 15:53:32 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37689 - in postem/trunk: postem-app/src/java/org/sakaiproject/tool/postem postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 15:57:30 2007 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37689 + +Author: wagnermr@iupui.edu +Date: 2007-11-01 15:53:31 -0400 (Thu, 01 Nov 2007) +New Revision: 37689 + +Modified: +postem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts +fix for uploads with extra white space around username + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 1 15:50:56 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 15:50:56 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 15:50:56 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id lA1Jotgm015660; + Thu, 1 Nov 2007 15:50:55 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 472A2E17.B2C5.10265 ; + 1 Nov 2007 15:50:50 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 58F08705E8; + Thu, 1 Nov 2007 00:34:51 +0000 (GMT) +Message-ID: <200711011947.lA1Jl7f5028923@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 255 + for ; + Thu, 1 Nov 2007 00:34:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B341A1DC02 + for ; Thu, 1 Nov 2007 19:50:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Jl7DS028925 + for ; Thu, 1 Nov 2007 15:47:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Jl7f5028923 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:47:07 -0400 +Date: Thu, 1 Nov 2007 15:47:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37688 - in reports/branches/sakai_2-5-x: reports-api/api/src/java/org/sakaiproject/reports/service reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl reports-tool/tool/src/java/org/sakaiproject/reports/tool reports-tool/tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 15:50:56 2007 +X-DSPAM-Confidence: 0.7613 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37688 + +Author: mmmay@indiana.edu +Date: 2007-11-01 15:47:06 -0400 (Thu, 01 Nov 2007) +New Revision: 37688 + +Added: +reports/branches/sakai_2-5-x/reports-tool/tool/src/java/org/sakaiproject/reports/tool/ReportsStartupListener.java +Modified: +reports/branches/sakai_2-5-x/reports-api/api/src/java/org/sakaiproject/reports/service/ReportsManager.java +reports/branches/sakai_2-5-x/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java +reports/branches/sakai_2-5-x/reports-tool/tool/src/webapp/WEB-INF/web.xml +Log: +svn merge -r 37645:37646 https://source.sakaiproject.org/svn/reports/trunk +U reports-api/api/src/java/org/sakaiproject/reports/service/ReportsManager.java +A reports-tool/tool/src/java/org/sakaiproject/reports/tool/ReportsStartupListener.java +U reports-tool/tool/src/webapp/WEB-INF/web.xml +U reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java +in-143-196:~/java/2-5/sakai_2-5-x/reports mmmay$ svn log -r 37645:37646 https://source.sakaiproject.org/svn/reports/trunk +------------------------------------------------------------------------ +r37646 | john.ellis@rsmart.com | 2007-10-30 14:44:35 -0400 (Tue, 30 Oct 2007) | 3 lines + +SAK-12028 +moved around where the init took place so that it would be surrounded by the correct tx + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 1 15:48:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 15:48:34 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 15:48:34 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by jacknife.mail.umich.edu () with ESMTP id lA1JmWIE002980; + Thu, 1 Nov 2007 15:48:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472A2D8A.3583F.17184 ; + 1 Nov 2007 15:48:29 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 28923707C6; + Thu, 1 Nov 2007 00:32:30 +0000 (GMT) +Message-ID: <200711011944.lA1JijC4028911@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339 + for ; + Thu, 1 Nov 2007 00:32:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A683E1DC02 + for ; Thu, 1 Nov 2007 19:48:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JijoM028913 + for ; Thu, 1 Nov 2007 15:44:45 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JijC4028911 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:44:45 -0400 +Date: Thu, 1 Nov 2007 15:44:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37687 - in calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src: bundle/org/sakaiproject/tool/summarycalendar/bundle java/org/sakaiproject/tool/summarycalendar/ui webapp/summary-calendar +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 15:48:34 2007 +X-DSPAM-Confidence: 0.7617 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37687 + +Author: mmmay@indiana.edu +Date: 2007-11-01 15:44:43 -0400 (Thu, 01 Nov 2007) +New Revision: 37687 + +Added: +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_en_GB.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ko.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventTypes.java +Modified: +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ar.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ca.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_es.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_fr_CA.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ja.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_nl.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ru.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_sv.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_zh_CN.properties +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/CalendarBean.java +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventSummary.java +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/PrefsBean.java +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/webapp/summary-calendar/calendar.jsp +calendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/webapp/summary-calendar/prefs.jsp +Log: +svn merge -r 37633:37634 https://source.sakaiproject.org/svn/calendar/trunk +U calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/CalendarBean.java +U calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventSummary.java +U calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/PrefsBean.java +A calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventTypes.java +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_zh_CN.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ar.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ca.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ru.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_es.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_sv.properties +A calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ko.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_nl.properties +A calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_en_GB.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_fr_CA.properties +U calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ja.properties +U calendar-summary-tool/tool/src/webapp/summary-calendar/calendar.jsp +U calendar-summary-tool/tool/src/webapp/summary-calendar/prefs.jsp +in-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 37633:37634 https://source.sakaiproject.org/svn/calendar/trunk +------------------------------------------------------------------------ +r37634 | nuno@ufp.pt | 2007-10-30 11:58:56 -0400 (Tue, 30 Oct 2007) | 1 line + +SAK-10440: Localize Calendar Summary event types +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Thu Nov 1 15:42:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 15:42:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 15:42:36 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id lA1JgZ8M021494; + Thu, 1 Nov 2007 15:42:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472A2C24.C3513.9476 ; + 1 Nov 2007 15:42:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A563470548; + Thu, 1 Nov 2007 00:26:31 +0000 (GMT) +Message-ID: <200711011938.lA1JciCb028899@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875 + for ; + Thu, 1 Nov 2007 00:26:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 02C191DBFF + for ; Thu, 1 Nov 2007 19:42:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JciXZ028901 + for ; Thu, 1 Nov 2007 15:38:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JciCb028899 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:38:44 -0400 +Date: Thu, 1 Nov 2007 15:38:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37686 - sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 15:42:36 2007 +X-DSPAM-Confidence: 0.7622 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37686 + +Author: mmmay@indiana.edu +Date: 2007-11-01 15:38:43 -0400 (Thu, 01 Nov 2007) +New Revision: 37686 + +Modified: +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java +Log: +vn merge -r 37419:37420 https://source.sakaiproject.org/svn/sam/trunk +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java +in-143-196:~/java/2-5/sakai_2-5-x/sam mmmay$ svn log -r 37419:37420 https://source.sakaiproject.org/svn/sam/trunk +------------------------------------------------------------------------ +r37420 | ktsao@stanford.edu | 2007-10-26 13:47:03 -0400 (Fri, 26 Oct 2007) | 1 line + +SAK-12049 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Thu Nov 1 14:51:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 14:51:08 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 14:51:08 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by mission.mail.umich.edu () with ESMTP id lA1Ip7wV002590; + Thu, 1 Nov 2007 14:51:07 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 472A2013.A0470.18152 ; + 1 Nov 2007 14:51:03 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D1178707A7; + Wed, 31 Oct 2007 23:44:54 +0000 (GMT) +Message-ID: <200711011847.lA1IlA9l028847@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 513 + for ; + Wed, 31 Oct 2007 23:44:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 287B0AEF0 + for ; Thu, 1 Nov 2007 18:50:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1IlAKa028849 + for ; Thu, 1 Nov 2007 14:47:10 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1IlA9l028847 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 14:47:10 -0400 +Date: Thu, 1 Nov 2007 14:47:10 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37685 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 14:51:08 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37685 + +Author: zach.thomas@txstate.edu +Date: 2007-11-01 14:47:07 -0400 (Thu, 01 Nov 2007) +New Revision: 37685 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +fix for TSQ-789, event name too long for the SAKAI_EVENT table + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Nov 1 14:28:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 14:28:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 14:28:46 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by brazil.mail.umich.edu () with ESMTP id lA1ISj5Z032348; + Thu, 1 Nov 2007 14:28:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 472A1AD6.1B422.1868 ; + 1 Nov 2007 14:28:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71D0970572; + Wed, 31 Oct 2007 23:22:43 +0000 (GMT) +Message-ID: <200711011824.lA1IOvIC028753@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769 + for ; + Wed, 31 Oct 2007 23:22:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AB5CA1DBC7 + for ; Thu, 1 Nov 2007 18:28:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1IOwn5028755 + for ; Thu, 1 Nov 2007 14:24:58 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1IOvIC028753 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 14:24:57 -0400 +Date: Thu, 1 Nov 2007 14:24:57 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37684 - in postem/trunk: . components/src/webapp/WEB-INF postem-api/src/java/org/sakaiproject/api/app/postem/data postem-app postem-app/src/java/org/sakaiproject/tool/postem postem-app/src/webapp/WEB-INF postem-app/src/webapp/postem postem-hbm postem-hbm/src/java/org/sakaiproject/component/app/postem/data postem-impl/src/java/org/sakaiproject/component/app/postem +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 14:28:46 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37684 + +Author: wagnermr@iupui.edu +Date: 2007-11-01 14:24:54 -0400 (Thu, 01 Nov 2007) +New Revision: 37684 + +Added: +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java +Modified: +postem/trunk/.classpath +postem/trunk/components/src/webapp/WEB-INF/components.xml +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java +postem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java +postem/trunk/postem-app/pom.xml +postem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/Column.java +postem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java +postem/trunk/postem-app/src/webapp/WEB-INF/components.xml +postem/trunk/postem-app/src/webapp/postem/main.jsp +postem/trunk/postem-hbm/pom.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java +postem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java +postem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java +Log: +SAK-12095 +http://bugs.sakaiproject.org/jira/browse/SAK-12095 +Performance problems when tool contains large posts + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Nov 1 12:59:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 12:59:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 12:59:55 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by godsend.mail.umich.edu () with ESMTP id lA1GxsQR024868; + Thu, 1 Nov 2007 12:59:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 472A0602.B5C20.12648 ; + 1 Nov 2007 12:59:50 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CF341704EB; + Wed, 31 Oct 2007 21:57:55 +0000 (GMT) +Message-ID: <200711011656.lA1Gu5DY028591@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897 + for ; + Wed, 31 Oct 2007 21:57:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2CB391DBC8 + for ; Thu, 1 Nov 2007 16:59:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Gu5RB028593 + for ; Thu, 1 Nov 2007 12:56:05 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Gu5DY028591 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 12:56:05 -0400 +Date: Thu, 1 Nov 2007 12:56:05 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r37683 - reference/trunk/library/src/webapp/skin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 12:59:55 2007 +X-DSPAM-Confidence: 0.9802 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37683 + +Author: gsilver@umich.edu +Date: 2007-11-01 12:56:04 -0400 (Thu, 01 Nov 2007) +New Revision: 37683 + +Modified: +reference/trunk/library/src/webapp/skin/tool_base.css +Log: +SAK-9279 +- help IE render a disabled text input as disabled + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Nov 1 11:23:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 11:23:48 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 11:23:48 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id lA1FNlKF006233; + Thu, 1 Nov 2007 11:23:47 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4729EF7B.AF962.20303 ; + 1 Nov 2007 11:23:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9DB22703BE; + Wed, 31 Oct 2007 20:21:44 +0000 (GMT) +Message-ID: <200711011519.lA1FJbnS028483@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 930 + for ; + Wed, 31 Oct 2007 20:21:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D4ABE1DB84 + for ; Thu, 1 Nov 2007 15:23:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1FJcxC028485 + for ; Thu, 1 Nov 2007 11:19:38 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1FJbnS028483 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 11:19:37 -0400 +Date: Thu, 1 Nov 2007 11:19:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r37682 - in announcement/trunk/announcement-tool/tool: . src/bundle src/java/org/sakaiproject/announcement/tool src/webapp/vm/announcement +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 11:23:48 2007 +X-DSPAM-Confidence: 0.8459 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37682 + +Author: gjthomas@iupui.edu +Date: 2007-11-01 11:19:36 -0400 (Thu, 01 Nov 2007) +New Revision: 37682 + +Modified: +announcement/trunk/announcement-tool/tool/pom.xml +announcement/trunk/announcement-tool/tool/src/bundle/announcement.properties +announcement/trunk/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java +announcement/trunk/announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-metadata.vm +Log: +Adds a direct link back to the associated assignment if certain criteria exists. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Thu Nov 1 10:56:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 10:56:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 10:56:46 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id lA1Eujhp021947; + Thu, 1 Nov 2007 10:56:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4729E926.C79A9.3327 ; + 1 Nov 2007 10:56:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BB87F615DB; + Wed, 31 Oct 2007 19:54:47 +0000 (GMT) +Message-ID: <200711011452.lA1EqxfW028401@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 940 + for ; + Wed, 31 Oct 2007 19:54:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B9F501C378 + for ; Thu, 1 Nov 2007 14:56:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Eqxqq028403 + for ; Thu, 1 Nov 2007 10:52:59 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1EqxfW028401 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 10:52:59 -0400 +Date: Thu, 1 Nov 2007 10:52:59 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r37681 - in calendar/trunk/calendar-tool/tool/src: bundle java/org/sakaiproject/calendar/tool webapp/vm/calendar +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 10:56:46 2007 +X-DSPAM-Confidence: 0.8465 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37681 + +Author: gjthomas@iupui.edu +Date: 2007-11-01 10:52:56 -0400 (Thu, 01 Nov 2007) +New Revision: 37681 + +Modified: +calendar/trunk/calendar-tool/tool/src/bundle/calendar.properties +calendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java +calendar/trunk/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm +Log: +Adds a direct link back to the associated assignment if certain criteria exists. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From hu2@iupui.edu Thu Nov 1 09:07:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 09:07:45 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 09:07:45 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by score.mail.umich.edu () with ESMTP id lA1D7iZE017856; + Thu, 1 Nov 2007 09:07:44 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4729CF9A.D6894.15663 ; + 1 Nov 2007 09:07:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CF91F562F6; + Wed, 31 Oct 2007 18:06:23 +0000 (GMT) +Message-ID: <200711011304.lA1D43xs028265@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 874 + for ; + Wed, 31 Oct 2007 18:06:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4E8E41DB70 + for ; Thu, 1 Nov 2007 13:07:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1D44Rq028267 + for ; Thu, 1 Nov 2007 09:04:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1D43xs028265 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 09:04:03 -0400 +Date: Thu, 1 Nov 2007 09:04:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f +To: source@collab.sakaiproject.org +From: hu2@iupui.edu +Subject: [sakai] svn commit: r37680 - in msgcntr/trunk: messageforums-app/src/java/org/sakaiproject/tool/messageforums messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui messageforums-app/src/webapp/jsp/privateMsg messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 09:07:45 2007 +X-DSPAM-Confidence: 0.7000 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37680 + +Author: hu2@iupui.edu +Date: 2007-11-01 09:03:59 -0400 (Thu, 01 Nov 2007) +New Revision: 37680 + +Modified: +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/MessageForumSynopticBean.java +msgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp +msgcntr/trunk/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java +Log: +SAK-11130 +http://jira.sakaiproject.org/jira/browse/SAK-11130 +With a localized Sakai, if pvt_deleted, pvt_received and pvt_sent are not set to "Deleted", "Received" and "Sent" (default values). The folders that are not set to default values do not work. + +Without looking at the code I think those default folders names have a internal name which is the same as their default label. When the label is localized, the code is unable to match the localized label to the internal name. + +Quick fix: do not localize pvt_deleted, pvt_received and pvt_sent. I've done it and it works. + +Better but not-so-quick fix: match those default folders localized labels and internal names in the code. I won't complain if someone else does it. :-) + +it support english and spanish now. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Thu Nov 1 08:46:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 08:46:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 08:46:46 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by score.mail.umich.edu () with ESMTP id lA1CkjVh007751; + Thu, 1 Nov 2007 08:46:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4729CAAF.9C537.25327 ; + 1 Nov 2007 08:46:42 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6574F701C3; + Wed, 31 Oct 2007 17:47:42 +0000 (GMT) +Message-ID: <200711011243.lA1ChGgI028251@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 224 + for ; + Wed, 31 Oct 2007 17:47:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E5821DB62 + for ; Thu, 1 Nov 2007 12:46:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1ChGeo028253 + for ; Thu, 1 Nov 2007 08:43:16 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1ChGgI028251 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 08:43:16 -0400 +Date: Thu, 1 Nov 2007 08:43:16 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37679 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 08:46:46 2007 +X-DSPAM-Confidence: 0.9824 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37679 + +Author: ajpoland@iupui.edu +Date: 2007-11-01 08:43:15 -0400 (Thu, 01 Nov 2007) +New Revision: 37679 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Thu Nov 1 08:46:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 08:46:31 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 08:46:31 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id lA1CkU3Q014397; + Thu, 1 Nov 2007 08:46:30 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 4729CA9F.5A015.19890 ; + 1 Nov 2007 08:46:26 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71ABF701DD; + Wed, 31 Oct 2007 17:47:20 +0000 (GMT) +Message-ID: <200711011241.lA1CfrWm028239@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 600 + for ; + Wed, 31 Oct 2007 17:47:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 37C2B1DB62 + for ; Thu, 1 Nov 2007 12:45:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1CfrN6028241 + for ; Thu, 1 Nov 2007 08:41:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1CfrWm028239 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 08:41:53 -0400 +Date: Thu, 1 Nov 2007 08:41:53 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37678 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 08:46:31 2007 +X-DSPAM-Confidence: 0.8516 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37678 + +Author: wagnermr@iupui.edu +Date: 2007-11-01 08:41:52 -0400 (Thu, 01 Nov 2007) +New Revision: 37678 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r34159:34160 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +------------------------------------------------------------------------ +r34160 | zqian@umich.edu | 2007-08-20 12:31:43 -0400 (Mon, 20 Aug 2007) | 1 line + +fix to SAK-11191:Student unable to resubmit assignment that is past 'Accept Until' date +------------------------------------------------------------------------ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Thu Nov 1 03:45:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 01 Nov 2007 03:45:50 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 01 Nov 2007 03:45:50 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id lA17jkHZ009034; + Thu, 1 Nov 2007 03:45:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47298425.66819.2341 ; + 1 Nov 2007 03:45:44 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 321E051FA6; + Wed, 31 Oct 2007 12:52:32 +0000 (GMT) +Message-ID: <200711010742.lA17gEdi027612@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 330 + for ; + Wed, 31 Oct 2007 12:52:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1E0601DB3D + for ; Thu, 1 Nov 2007 07:45:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA17gEOY027614 + for ; Thu, 1 Nov 2007 03:42:14 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA17gEdi027612 + for source@collab.sakaiproject.org; Thu, 1 Nov 2007 03:42:14 -0400 +Date: Thu, 1 Nov 2007 03:42:14 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37677 - sam/branches/SAK-12065/samigo-app +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Nov 1 03:45:50 2007 +X-DSPAM-Confidence: 0.8463 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37677 + +Author: david.horwitz@uct.ac.za +Date: 2007-11-01 03:42:06 -0400 (Thu, 01 Nov 2007) +New Revision: 37677 + +Modified: +sam/branches/SAK-12065/samigo-app/pom.xml +Log: +SAK-12065 update to current trunk + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Oct 31 21:44:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 21:44:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 21:44:55 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id lA11isq7002073; + Wed, 31 Oct 2007 21:44:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47292F8D.9F4DF.2649 ; + 31 Oct 2007 21:44:51 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 905BE50983; + Wed, 31 Oct 2007 06:53:12 +0000 (GMT) +Message-ID: <200711010141.lA11fHn8027298@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 852 + for ; + Wed, 31 Oct 2007 06:52:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A3D6E1DAD6 + for ; Thu, 1 Nov 2007 01:44:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA11fHSF027300 + for ; Wed, 31 Oct 2007 21:41:17 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA11fHn8027298 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 21:41:17 -0400 +Date: Wed, 31 Oct 2007 21:41:17 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37676 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 21:44:55 2007 +X-DSPAM-Confidence: 0.9883 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37676 + +Author: zqian@umich.edu +Date: 2007-10-31 21:41:13 -0400 (Wed, 31 Oct 2007) +New Revision: 37676 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Wed Oct 31 19:55:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 19:55:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 19:55:13 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id l9VNtCFS010200; + Wed, 31 Oct 2007 19:55:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 472915DA.9B013.18115 ; + 31 Oct 2007 19:55:09 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D76F86FCC8; + Wed, 31 Oct 2007 05:07:52 +0000 (GMT) +Message-ID: <200710312351.l9VNpXZa027189@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 873 + for ; + Wed, 31 Oct 2007 05:07:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 663801DA5C + for ; Wed, 31 Oct 2007 23:54:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VNpXWo027191 + for ; Wed, 31 Oct 2007 19:51:33 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VNpXZa027189 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 19:51:33 -0400 +Date: Wed, 31 Oct 2007 19:51:33 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37675 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 19:55:13 2007 +X-DSPAM-Confidence: 0.8466 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37675 + +Author: jzaremba@unicon.net +Date: 2007-10-31 19:51:30 -0400 (Wed, 31 Oct 2007) +New Revision: 37675 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +TSQ-788 conditions now available when using add details link for an item + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Oct 31 16:48:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 16:48:24 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 16:48:24 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by mission.mail.umich.edu () with ESMTP id l9VKmN2s029707; + Wed, 31 Oct 2007 16:48:23 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4728EA11.43A17.28059 ; + 31 Oct 2007 16:48:20 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3BE0D6F9F2; + Wed, 31 Oct 2007 02:00:56 +0000 (GMT) +Message-ID: <200710312045.l9VKj22x026979@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 766 + for ; + Wed, 31 Oct 2007 02:00:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C232E1A7AB + for ; Wed, 31 Oct 2007 20:48:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VKj2fx026981 + for ; Wed, 31 Oct 2007 16:45:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VKj22x026979 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 16:45:02 -0400 +Date: Wed, 31 Oct 2007 16:45:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r37674 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business app/business/src/java/org/sakaiproject/tool/gradebook/business/impl app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test service/api/src/java/org/sakaiproject/service/gradebook/shared +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 16:48:24 2007 +X-DSPAM-Confidence: 0.7566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37674 + +Author: cwen@iupui.edu +Date: 2007-10-31 16:44:59 -0400 (Wed, 31 Oct 2007) +New Revision: 37674 + +Added: +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/MultipleAssignmentSavingException.java +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java +Log: +http://128.196.219.68/jira/browse/SAK-12091 +SAK-12091 +=> +add createAssignments and checkValidName methods to GradebookManager. +also add MultipleAssignmentSavingException. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Wed Oct 31 16:40:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 16:40:18 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 16:40:18 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id l9VKeH7R031293; + Wed, 31 Oct 2007 16:40:18 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4728E822.397CE.31193 ; + 31 Oct 2007 16:40:15 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 251BC6FB74; + Wed, 31 Oct 2007 01:52:36 +0000 (GMT) +Message-ID: <200710312036.l9VKajAN026964@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 530 + for ; + Wed, 31 Oct 2007 01:52:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 308631A7AB + for ; Wed, 31 Oct 2007 20:39:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VKajsK026966 + for ; Wed, 31 Oct 2007 16:36:45 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VKajAN026964 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 16:36:45 -0400 +Date: Wed, 31 Oct 2007 16:36:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r37673 - sam/trunk/samigo-app +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 16:40:18 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37673 + +Author: ktsao@stanford.edu +Date: 2007-10-31 16:36:42 -0400 (Wed, 31 Oct 2007) +New Revision: 37673 + +Modified: +sam/trunk/samigo-app/pom.xml +Log: +SAK-12090 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bahollad@indiana.edu Wed Oct 31 15:43:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 15:43:31 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 15:43:31 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id l9VJhSl8021197; + Wed, 31 Oct 2007 15:43:28 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4728DAD9.915B2.9058 ; + 31 Oct 2007 15:43:25 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 146A76FA11; + Wed, 31 Oct 2007 00:55:49 +0000 (GMT) +Message-ID: <200710311940.l9VJe30S026863@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 442 + for ; + Wed, 31 Oct 2007 00:55:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E7978AF3C + for ; Wed, 31 Oct 2007 19:43:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VJe33P026865 + for ; Wed, 31 Oct 2007 15:40:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VJe30S026863 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 15:40:03 -0400 +Date: Wed, 31 Oct 2007 15:40:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f +To: source@collab.sakaiproject.org +From: bahollad@indiana.edu +Subject: [sakai] svn commit: r37672 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 15:43:31 2007 +X-DSPAM-Confidence: 0.6509 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37672 + +Author: bahollad@indiana.edu +Date: 2007-10-31 15:40:02 -0400 (Wed, 31 Oct 2007) +New Revision: 37672 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-12027 +Added back some removed lines. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Wed Oct 31 13:37:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 13:37:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 13:37:37 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id l9VHbanl006857; + Wed, 31 Oct 2007 13:37:36 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4728BD58.DD21F.12018 ; + 31 Oct 2007 13:37:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E35546F9C2; + Tue, 30 Oct 2007 23:13:07 +0000 (GMT) +Message-ID: <200710311734.l9VHYGJm026629@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 192 + for ; + Tue, 30 Oct 2007 23:12:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E452A1AAA6 + for ; Wed, 31 Oct 2007 17:37:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VHYHA1026631 + for ; Wed, 31 Oct 2007 13:34:17 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VHYGJm026629 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 13:34:17 -0400 +Date: Wed, 31 Oct 2007 13:34:17 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37670 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 13:37:37 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37670 + +Author: zach.thomas@txstate.edu +Date: 2007-10-31 13:34:14 -0400 (Wed, 31 Oct 2007) +New Revision: 37670 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +we have persistence\! fixes TSQ-722 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Wed Oct 31 13:19:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 13:19:03 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 13:19:03 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by brazil.mail.umich.edu () with ESMTP id l9VHJ2o8027747; + Wed, 31 Oct 2007 13:19:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4728B900.1B213.24285 ; + 31 Oct 2007 13:18:59 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 469426F98B; + Tue, 30 Oct 2007 22:54:31 +0000 (GMT) +Message-ID: <200710311715.l9VHFVms026595@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 498 + for ; + Tue, 30 Oct 2007 22:54:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 792D51D61F + for ; Wed, 31 Oct 2007 17:18:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VHFVtk026597 + for ; Wed, 31 Oct 2007 13:15:31 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VHFVms026595 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 13:15:31 -0400 +Date: Wed, 31 Oct 2007 13:15:31 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r37669 - in gradebook/trunk/app: business/src/java/org/sakaiproject/tool/gradebook/business/impl ui/src/java/org/sakaiproject/tool/gradebook/jsf ui/src/java/org/sakaiproject/tool/gradebook/ui ui/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 13:19:03 2007 +X-DSPAM-Confidence: 0.7598 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37669 + +Author: cwen@iupui.edu +Date: 2007-10-31 13:15:28 -0400 (Wed, 31 Oct 2007) +New Revision: 37669 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +gradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp +gradebook/trunk/app/ui/src/webapp/instructorView.jsp +Log: +http://128.196.219.68/jira/browse/SAK-10427 +SAK-10427 +=> +fix some displyaing/saving issues. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Wed Oct 31 10:15:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 10:15:19 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 10:15:19 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id l9VEFIZe031777; + Wed, 31 Oct 2007 10:15:18 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47288DF0.8EA4A.5867 ; + 31 Oct 2007 10:15:16 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3CC446F7BE; + Tue, 30 Oct 2007 19:50:50 +0000 (GMT) +Message-ID: <200710311412.l9VEC2CY026322@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 437 + for ; + Tue, 30 Oct 2007 19:50:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F018C1D5CF + for ; Wed, 31 Oct 2007 14:14:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VEC2bL026324 + for ; Wed, 31 Oct 2007 10:12:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VEC2CY026322 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 10:12:02 -0400 +Date: Wed, 31 Oct 2007 10:12:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37668 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 10:15:19 2007 +X-DSPAM-Confidence: 0.9808 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37668 + +Author: ajpoland@iupui.edu +Date: 2007-10-31 10:12:00 -0400 (Wed, 31 Oct 2007) +New Revision: 37668 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Oct 31 10:13:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 10:13:50 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 10:13:50 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id l9VEDnsP014246; + Wed, 31 Oct 2007 10:13:49 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47288D8E.84861.19803 ; + 31 Oct 2007 10:13:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8F25C583D6; + Tue, 30 Oct 2007 19:49:05 +0000 (GMT) +Message-ID: <200710311410.l9VEACPe026309@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 631 + for ; + Tue, 30 Oct 2007 19:48:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C214C1D5CF + for ; Wed, 31 Oct 2007 14:13:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VEACQU026311 + for ; Wed, 31 Oct 2007 10:10:12 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VEACPe026309 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 10:10:12 -0400 +Date: Wed, 31 Oct 2007 10:10:12 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37667 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 10:13:50 2007 +X-DSPAM-Confidence: 0.7011 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37667 + +Author: wagnermr@iupui.edu +Date: 2007-10-31 10:10:11 -0400 (Wed, 31 Oct 2007) +New Revision: 37667 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +svn merge -r37384:37385 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +------------------------------------------------------------------------ +r37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + +svn merge -r37399:37400 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +------------------------------------------------------------------------ +r37400 | zqian@umich.edu | 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12029:zip file not accepted in Assignments "Upload All" feature +------------------------------------------------------------------------ + +svn merge -r37499:37500 https://source.sakaiproject.org/svn/assignment/trunk +G assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +------------------------------------------------------------------------ +r37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + +svn merge -r37435:37436 https://source.sakaiproject.org/svn/assignment/trunk +G assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + +------------------------------------------------------------------------ +r37436 | zqian@umich.edu | 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007) | 1 line + +fix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Wed Oct 31 10:13:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 10:13:40 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 10:13:40 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id l9VEDdmG013484; + Wed, 31 Oct 2007 10:13:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47288D8A.3A2D4.11763 ; + 31 Oct 2007 10:13:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 48B7B52E40; + Tue, 30 Oct 2007 19:49:05 +0000 (GMT) +Message-ID: <200710311410.l9VEAAvh026297@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1010 + for ; + Tue, 30 Oct 2007 19:48:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0DC241D5CF + for ; Wed, 31 Oct 2007 14:13:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VEAAJF026299 + for ; Wed, 31 Oct 2007 10:10:10 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VEAAvh026297 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 10:10:10 -0400 +Date: Wed, 31 Oct 2007 10:10:10 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37666 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 10:13:40 2007 +X-DSPAM-Confidence: 0.7011 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37666 + +Author: wagnermr@iupui.edu +Date: 2007-10-31 10:10:08 -0400 (Wed, 31 Oct 2007) +New Revision: 37666 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +Log: +svn merge -r37384:37385 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +------------------------------------------------------------------------ +r37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + +svn merge -r37399:37400 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +------------------------------------------------------------------------ +r37400 | zqian@umich.edu | 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12029:zip file not accepted in Assignments "Upload All" feature +------------------------------------------------------------------------ + +svn merge -r37499:37500 https://source.sakaiproject.org/svn/assignment/trunk +G assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +------------------------------------------------------------------------ +r37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + +svn merge -r37435:37436 https://source.sakaiproject.org/svn/assignment/trunk +G assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java + +------------------------------------------------------------------------ +r37436 | zqian@umich.edu | 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007) | 1 line + +fix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Oct 31 09:16:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 09:16:22 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 09:16:22 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by score.mail.umich.edu () with ESMTP id l9VDGKvp016331; + Wed, 31 Oct 2007 09:16:20 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4728801A.10980.3413 ; + 31 Oct 2007 09:16:16 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B4FBE50C5B; + Tue, 30 Oct 2007 18:52:44 +0000 (GMT) +Message-ID: <200710311312.l9VDCsfg026258@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603 + for ; + Tue, 30 Oct 2007 18:52:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 389B41D4E1 + for ; Wed, 31 Oct 2007 13:15:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VDCsdW026260 + for ; Wed, 31 Oct 2007 09:12:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VDCsfg026258 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 09:12:54 -0400 +Date: Wed, 31 Oct 2007 09:12:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37665 - in memory/branches/SAK-11913/memory-test: . impl impl/src/java/org/sakaiproject/memory/test pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 09:16:22 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37665 + +Author: aaronz@vt.edu +Date: 2007-10-31 09:12:41 -0400 (Wed, 31 Oct 2007) +New Revision: 37665 + +Added: +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestSakaiCaches.java +Modified: +memory/branches/SAK-11913/memory-test/.classpath +memory/branches/SAK-11913/memory-test/impl/pom.xml +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +memory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-11913: Added in first test for the current caches in Sakai (User), test is not really working very well though as far as I can tell... + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From sgithens@caret.cam.ac.uk Wed Oct 31 08:27:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 08:27:33 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 08:27:33 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id l9VCRWOY021025; + Wed, 31 Oct 2007 08:27:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472874AB.381E0.20008 ; + 31 Oct 2007 08:27:29 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6A1756F775; + Tue, 30 Oct 2007 18:03:53 +0000 (GMT) +Message-ID: <200710311223.l9VCNtig026222@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 643 + for ; + Tue, 30 Oct 2007 18:03:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0819D1D4D8 + for ; Wed, 31 Oct 2007 12:26:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VCNtTN026224 + for ; Wed, 31 Oct 2007 08:23:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VCNtig026222 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 08:23:55 -0400 +Date: Wed, 31 Oct 2007 08:23:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: sgithens@caret.cam.ac.uk +Subject: [sakai] svn commit: r37664 - in webservices/trunk/axis: . provisional src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 08:27:33 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37664 + +Author: sgithens@caret.cam.ac.uk +Date: 2007-10-31 08:23:45 -0400 (Wed, 31 Oct 2007) +New Revision: 37664 + +Added: +webservices/trunk/axis/provisional/ +webservices/trunk/axis/provisional/ContentHosting.jws +webservices/trunk/axis/provisional/README +Removed: +webservices/trunk/axis/src/webapp/ContentHosting.jws +Log: +SAK-12084 Creating a provisional spot for new webservices. Moving ContentHosting.jws in there until the performance problem is fixed. At the moment unsure of whether this will change the method signature. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Wed Oct 31 07:50:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 07:50:11 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 07:50:11 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by sleepers.mail.umich.edu () with ESMTP id l9VBoAjh002547; + Wed, 31 Oct 2007 07:50:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47286BEA.BA4FB.3657 ; + 31 Oct 2007 07:50:05 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8C3D56F305; + Tue, 30 Oct 2007 17:31:29 +0000 (GMT) +Message-ID: <200710311146.l9VBkZdp026196@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 573 + for ; + Tue, 30 Oct 2007 17:31:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C95671D3B1 + for ; Wed, 31 Oct 2007 11:49:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VBkaBX026198 + for ; Wed, 31 Oct 2007 07:46:36 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VBkZdp026196 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 07:46:35 -0400 +Date: Wed, 31 Oct 2007 07:46:35 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r37663 - blog/trunk/jsfComponent +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 07:50:11 2007 +X-DSPAM-Confidence: 0.9822 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37663 + +Author: a.fish@lancaster.ac.uk +Date: 2007-10-31 07:46:28 -0400 (Wed, 31 Oct 2007) +New Revision: 37663 + +Modified: +blog/trunk/jsfComponent/project.xml +Log: +Added sakai-util dependency + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Oct 31 07:13:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 07:13:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 07:13:36 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id l9VBDaBo021084; + Wed, 31 Oct 2007 07:13:36 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4728635A.D8EAE.24740 ; + 31 Oct 2007 07:13:33 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 08AA26F2EE; + Tue, 30 Oct 2007 16:55:05 +0000 (GMT) +Message-ID: <200710311110.l9VBAG2x026182@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 427 + for ; + Tue, 30 Oct 2007 16:54:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BE01F1D300 + for ; Wed, 31 Oct 2007 11:13:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VBAGbw026184 + for ; Wed, 31 Oct 2007 07:10:16 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VBAG2x026182 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 07:10:16 -0400 +Date: Wed, 31 Oct 2007 07:10:16 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37662 - memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 07:13:36 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37662 + +Author: aaronz@vt.edu +Date: 2007-10-31 07:10:11 -0400 (Wed, 31 Oct 2007) +New Revision: 37662 + +Modified: +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +Log: +SAK-11913: Single cache, one and multithreaded cache load simulations are complete, simulating 15 million cache reads with 88% hit rate in a cache with 10000 items max + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Oct 31 04:50:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 04:50:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 04:50:54 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by brazil.mail.umich.edu () with ESMTP id l9V8or0p014925; + Wed, 31 Oct 2007 04:50:53 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 472841E8.A7DC5.721 ; + 31 Oct 2007 04:50:51 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3A5E16F684; + Tue, 30 Oct 2007 14:33:22 +0000 (GMT) +Message-ID: <200710310847.l9V8lVd0026130@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 983 + for ; + Tue, 30 Oct 2007 14:32:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EE2DA1D3D3 + for ; Wed, 31 Oct 2007 08:50:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V8lVFY026132 + for ; Wed, 31 Oct 2007 04:47:31 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V8lVd0026130 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 04:47:31 -0400 +Date: Wed, 31 Oct 2007 04:47:31 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37661 - polls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/validators +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 04:50:54 2007 +X-DSPAM-Confidence: 0.9786 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37661 + +Author: david.horwitz@uct.ac.za +Date: 2007-10-31 04:47:18 -0400 (Wed, 31 Oct 2007) +New Revision: 37661 + +Modified: +polls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java +Log: +SAK-12083 merge into 2-4-x + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Wed Oct 31 04:19:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 31 Oct 2007 04:19:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 31 Oct 2007 04:19:43 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by flawless.mail.umich.edu () with ESMTP id l9V8Jg9q004001; + Wed, 31 Oct 2007 04:19:42 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47283A97.B8439.605 ; + 31 Oct 2007 04:19:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 373646F665; + Tue, 30 Oct 2007 14:02:05 +0000 (GMT) +Message-ID: <200710310816.l9V8GNhu025870@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 386 + for ; + Tue, 30 Oct 2007 14:01:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4B3E51CFEA + for ; Wed, 31 Oct 2007 08:19:19 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V8GNMk025872 + for ; Wed, 31 Oct 2007 04:16:23 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V8GNhu025870 + for source@collab.sakaiproject.org; Wed, 31 Oct 2007 04:16:23 -0400 +Date: Wed, 31 Oct 2007 04:16:23 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37660 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 31 04:19:43 2007 +X-DSPAM-Confidence: 0.9756 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37660 + +Author: david.horwitz@uct.ac.za +Date: 2007-10-31 04:16:00 -0400 (Wed, 31 Oct 2007) +New Revision: 37660 + +Modified: +polls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java +Log: +SAK-12083 only give one error condition on voting + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 30 23:23:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 23:23:32 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 23:23:32 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id l9V3NU44000602; + Tue, 30 Oct 2007 23:23:30 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4727F52D.A12EB.12924 ; + 30 Oct 2007 23:23:28 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1E2956F2EE; + Tue, 30 Oct 2007 09:09:45 +0000 (GMT) +Message-ID: <200710310320.l9V3KA4x025142@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 205 + for ; + Tue, 30 Oct 2007 09:09:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC6261CDDB + for ; Wed, 31 Oct 2007 03:23:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V3KAFZ025144 + for ; Tue, 30 Oct 2007 23:20:10 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V3KA4x025142 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 23:20:10 -0400 +Date: Tue, 30 Oct 2007 23:20:10 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37659 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 23:23:32 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37659 + +Author: zqian@umich.edu +Date: 2007-10-30 23:20:08 -0400 (Tue, 30 Oct 2007) +New Revision: 37659 + +Modified: +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +Log: +Fix to SAK-11898: View or grade submissions: Pager is shown even when there aren't submissions + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Tue Oct 30 20:03:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 20:03:25 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 20:03:25 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id l9V03O76001306; + Tue, 30 Oct 2007 20:03:24 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4727C646.8CE7.21500 ; + 30 Oct 2007 20:03:20 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 472B56F20A; + Tue, 30 Oct 2007 05:59:37 +0000 (GMT) +Message-ID: <200710310000.l9V0098g025070@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 538 + for ; + Tue, 30 Oct 2007 05:59:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 09320B5B3 + for ; Wed, 31 Oct 2007 00:03:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V0090C025072 + for ; Tue, 30 Oct 2007 20:00:09 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V0098g025070 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 20:00:09 -0400 +Date: Tue, 30 Oct 2007 20:00:09 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37658 - in content/branches/SAK-11543/content-tool/tool/src: java/org/sakaiproject/content/tool webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 20:03:25 2007 +X-DSPAM-Confidence: 0.8436 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37658 + +Author: jzaremba@unicon.net +Date: 2007-10-30 20:00:02 -0400 (Tue, 30 Oct 2007) +New Revision: 37658 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +Log: +Condition widgets now working upon creating new resource. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Tue Oct 30 19:23:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 19:23:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 19:23:38 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id l9UNNcbp006155; + Tue, 30 Oct 2007 19:23:38 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4727BCF4.3DB.19800 ; + 30 Oct 2007 19:23:34 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6089A6F1EF; + Tue, 30 Oct 2007 05:19:52 +0000 (GMT) +Message-ID: <200710302320.l9UNKHPx025056@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611 + for ; + Tue, 30 Oct 2007 05:19:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93A221CF1D + for ; Tue, 30 Oct 2007 23:23:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UNKH93025058 + for ; Tue, 30 Oct 2007 19:20:17 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UNKHPx025056 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 19:20:17 -0400 +Date: Tue, 30 Oct 2007 19:20:17 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37657 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 19:23:38 2007 +X-DSPAM-Confidence: 0.7556 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37657 + +Author: zach.thomas@txstate.edu +Date: 2007-10-30 19:20:15 -0400 (Tue, 30 Oct 2007) +New Revision: 37657 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +fix for TSQ-785 Rule should be evaluated at create-time + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Tue Oct 30 16:59:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:59:12 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:59:12 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id l9UKxA7i024586; + Tue, 30 Oct 2007 16:59:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47279B16.F09C9.6034 ; + 30 Oct 2007 16:59:05 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DE3966EF5B; + Tue, 30 Oct 2007 02:55:20 +0000 (GMT) +Message-ID: <200710302055.l9UKtmK0024847@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738 + for ; + Tue, 30 Oct 2007 02:55:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0B9C51CDEC + for ; Tue, 30 Oct 2007 20:58:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKtmpE024849 + for ; Tue, 30 Oct 2007 16:55:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKtmK0024847 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:55:48 -0400 +Date: Tue, 30 Oct 2007 16:55:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37655 - in content/branches/SAK-11543: content-bundles content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:59:12 2007 +X-DSPAM-Confidence: 0.8413 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37655 + +Author: jzaremba@unicon.net +Date: 2007-10-30 16:55:42 -0400 (Tue, 30 Oct 2007) +New Revision: 37655 + +Modified: +content/branches/SAK-11543/content-bundles/types.properties +content/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +Log: +TSQ-786 Displaying user friendly message in place of condition widgets when no gradebook assignments are available. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 16:43:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:43:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:43:38 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by panther.mail.umich.edu () with ESMTP id l9UKhbHn004247; + Tue, 30 Oct 2007 16:43:37 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4727976E.F09F6.12389 ; + 30 Oct 2007 16:43:29 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C461A5A832; + Tue, 30 Oct 2007 02:39:48 +0000 (GMT) +Message-ID: <200710302040.l9UKeLrr024833@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 589 + for ; + Tue, 30 Oct 2007 02:39:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A44B91CDD8 + for ; Tue, 30 Oct 2007 20:43:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKeLSN024835 + for ; Tue, 30 Oct 2007 16:40:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKeLrr024833 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:40:21 -0400 +Date: Tue, 30 Oct 2007 16:40:21 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37654 - ctools/trunk/builds/ctools_2-4/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:43:38 2007 +X-DSPAM-Confidence: 0.9833 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37654 + +Author: dlhaines@umich.edu +Date: 2007-10-30 16:40:19 -0400 (Tue, 30 Oct 2007) +New Revision: 37654 + +Modified: +ctools/trunk/builds/ctools_2-4/tools/build-ctools.xml +ctools/trunk/builds/ctools_2-4/tools/build-patch-util.xml +Log: +CTools: delete unnecessary comments. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 16:42:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:42:39 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:42:39 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by fan.mail.umich.edu () with ESMTP id l9UKgcBq022697; + Tue, 30 Oct 2007 16:42:38 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47279737.6DE7A.31432 ; + 30 Oct 2007 16:42:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AD9A76F0FB; + Tue, 30 Oct 2007 02:38:52 +0000 (GMT) +Message-ID: <200710302039.l9UKdNqF024821@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 837 + for ; + Tue, 30 Oct 2007 02:38:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EE33C1CDD8 + for ; Tue, 30 Oct 2007 20:42:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKdNn1024823 + for ; Tue, 30 Oct 2007 16:39:23 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKdNqF024821 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:39:23 -0400 +Date: Tue, 30 Oct 2007 16:39:23 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37653 - ctools/trunk/builds/ctools_2-4/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:42:39 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37653 + +Author: dlhaines@umich.edu +Date: 2007-10-30 16:39:22 -0400 (Tue, 30 Oct 2007) +New Revision: 37653 + +Removed: +ctools/trunk/builds/ctools_2-4/tools/build-samigo.xml +Log: +CTools: delete unneeded module. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 16:42:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:42:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:42:17 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by mission.mail.umich.edu () with ESMTP id l9UKgGep030370; + Tue, 30 Oct 2007 16:42:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47279721.D87B2.17416 ; + 30 Oct 2007 16:42:12 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3F8D86E0AD; + Tue, 30 Oct 2007 02:38:29 +0000 (GMT) +Message-ID: <200710302038.l9UKctfT024809@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453 + for ; + Tue, 30 Oct 2007 02:38:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C28631CDD8 + for ; Tue, 30 Oct 2007 20:41:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKctrV024811 + for ; Tue, 30 Oct 2007 16:38:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKctfT024809 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:38:55 -0400 +Date: Tue, 30 Oct 2007 16:38:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37652 - ctools/trunk/builds/ctools_2-4/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:42:17 2007 +X-DSPAM-Confidence: 0.9811 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37652 + +Author: dlhaines@umich.edu +Date: 2007-10-30 16:38:53 -0400 (Tue, 30 Oct 2007) +New Revision: 37652 + +Modified: +ctools/trunk/builds/ctools_2-4/tools/build-sakai.xml +Log: +CTools: delete unnecessary comments. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 16:34:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:34:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:34:47 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id l9UKYkdt010937; + Tue, 30 Oct 2007 16:34:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4727955D.1DB83.18686 ; + 30 Oct 2007 16:34:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6B6676E10E; + Tue, 30 Oct 2007 02:30:55 +0000 (GMT) +Message-ID: <200710302031.l9UKVSg6024795@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791 + for ; + Tue, 30 Oct 2007 02:30:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CFFE51CDAF + for ; Tue, 30 Oct 2007 20:34:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKVSIP024797 + for ; Tue, 30 Oct 2007 16:31:28 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKVSg6024795 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:31:28 -0400 +Date: Tue, 30 Oct 2007 16:31:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37651 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:34:47 2007 +X-DSPAM-Confidence: 0.8471 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37651 + +Author: dlhaines@umich.edu +Date: 2007-10-30 16:31:27 -0400 (Tue, 30 Oct 2007) +New Revision: 37651 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update 2.4.xP for (most) requested fixes. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 16:31:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:31:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:31:55 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by score.mail.umich.edu () with ESMTP id l9UKVsqW023432; + Tue, 30 Oct 2007 16:31:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472794B5.962C4.11183 ; + 30 Oct 2007 16:31:52 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9CBE66E0AD; + Tue, 30 Oct 2007 02:28:07 +0000 (GMT) +Message-ID: <200710302028.l9UKSfAL024782@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 240 + for ; + Tue, 30 Oct 2007 02:27:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1E44B1CDAF + for ; Tue, 30 Oct 2007 20:31:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKSfxs024784 + for ; Tue, 30 Oct 2007 16:28:41 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKSfAL024782 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:28:41 -0400 +Date: Tue, 30 Oct 2007 16:28:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37650 - ctools/trunk/builds/ctools_2-4/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:31:55 2007 +X-DSPAM-Confidence: 0.9877 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37650 + +Author: dlhaines@umich.edu +Date: 2007-10-30 16:28:39 -0400 (Tue, 30 Oct 2007) +New Revision: 37650 + +Modified: +ctools/trunk/builds/ctools_2-4/tools/build-patch-util.xml +ctools/trunk/builds/ctools_2-4/tools/build-type-util.xml +Log: +CTools: update build tools for testing individual patches. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 16:31:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:31:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:31:02 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by mission.mail.umich.edu () with ESMTP id l9UKV1s2022363; + Tue, 30 Oct 2007 16:31:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47279463.DF4D9.27463 ; + 30 Oct 2007 16:30:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 93C3A64D51; + Tue, 30 Oct 2007 02:26:46 +0000 (GMT) +Message-ID: <200710302027.l9UKR8Ar024763@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 225 + for ; + Tue, 30 Oct 2007 02:26:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E1E571CDAF + for ; Tue, 30 Oct 2007 20:30:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKR8Oh024765 + for ; Tue, 30 Oct 2007 16:27:08 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKR8Ar024763 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:27:08 -0400 +Date: Tue, 30 Oct 2007 16:27:08 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37649 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:31:02 2007 +X-DSPAM-Confidence: 0.9864 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37649 + +Author: dlhaines@umich.edu +Date: 2007-10-30 16:27:07 -0400 (Tue, 30 Oct 2007) +New Revision: 37649 + +Modified: +ctools/trunk/builds/ctools_2-4/patches/SAK-10419.patch +Log: +CTools: hand patch for SAK 10419. Fix file paths. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 16:24:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 16:24:14 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 16:24:14 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id l9UKODn7018333; + Tue, 30 Oct 2007 16:24:13 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 472792E7.C46E5.22956 ; + 30 Oct 2007 16:24:10 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 238BB6EF5B; + Tue, 30 Oct 2007 02:20:26 +0000 (GMT) +Message-ID: <200710302020.l9UKKuCf024724@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 295 + for ; + Tue, 30 Oct 2007 02:20:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5ECCC1A371 + for ; Tue, 30 Oct 2007 20:23:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKKu16024726 + for ; Tue, 30 Oct 2007 16:20:56 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKKuCf024724 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:20:56 -0400 +Date: Tue, 30 Oct 2007 16:20:56 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37648 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 16:24:14 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37648 + +Author: dlhaines@umich.edu +Date: 2007-10-30 16:20:53 -0400 (Tue, 30 Oct 2007) +New Revision: 37648 + +Modified: +ctools/trunk/builds/ctools_2-4/patches/SAK-10419.patch +Log: +CTools: hand patch for SAK 10419 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 30 15:29:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 15:29:49 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 15:29:49 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id l9UJTkDV010322; + Tue, 30 Oct 2007 15:29:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47278622.BA44E.29964 ; + 30 Oct 2007 15:29:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 03C7558750; + Tue, 30 Oct 2007 01:25:44 +0000 (GMT) +Message-ID: <200710301926.l9UJQRbr024563@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 264 + for ; + Tue, 30 Oct 2007 01:25:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 686B81A145 + for ; Tue, 30 Oct 2007 19:29:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UJQRH4024565 + for ; Tue, 30 Oct 2007 15:26:27 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UJQRbr024563 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 15:26:27 -0400 +Date: Tue, 30 Oct 2007 15:26:27 -0400 +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [svn] revprop propchange - r37636 svn:log +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 15:29:49 2007 +X-DSPAM-Confidence: 0.9657 +X-DSPAM-Probability: 0.0000 + +Author: zqian@umich.edu +Revision: 37636 +Property Name: svn:log + +New Property Value: +merged fix to SAK-10670 into post_24 branch: svn merge -r 33071:33072 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Oct 30 15:02:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 15:02:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 15:02:46 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by panther.mail.umich.edu () with ESMTP id l9UJ2kfv027301; + Tue, 30 Oct 2007 15:02:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47277FCF.9FF30.6350 ; + 30 Oct 2007 15:02:42 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 180406EF5D; + Tue, 30 Oct 2007 00:58:52 +0000 (GMT) +Message-ID: <200710301859.l9UIxVaw024452@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 863 + for ; + Tue, 30 Oct 2007 00:58:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0E6261CDDA + for ; Tue, 30 Oct 2007 19:02:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIxWFC024454 + for ; Tue, 30 Oct 2007 14:59:32 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIxVaw024452 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:59:32 -0400 +Date: Tue, 30 Oct 2007 14:59:32 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r37647 - osp/tags/sakai_2-5-0_QA_011_GMT +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 15:02:46 2007 +X-DSPAM-Confidence: 0.9806 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37647 + +Author: chmaurer@iupui.edu +Date: 2007-10-30 14:59:30 -0400 (Tue, 30 Oct 2007) +New Revision: 37647 + +Modified: +osp/tags/sakai_2-5-0_QA_011_GMT/ +osp/tags/sakai_2-5-0_QA_011_GMT/.externals +osp/tags/sakai_2-5-0_QA_011_GMT/pom.xml +Log: +Adding gmt to the osp specific build for 2.5.011 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From john.ellis@rsmart.com Tue Oct 30 14:48:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 14:48:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 14:48:37 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by awakenings.mail.umich.edu () with ESMTP id l9UImZnw020730; + Tue, 30 Oct 2007 14:48:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47277C7B.797E0.29706 ; + 30 Oct 2007 14:48:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 139436F056; + Tue, 30 Oct 2007 00:44:40 +0000 (GMT) +Message-ID: <200710301845.l9UIjIbg024416@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 122 + for ; + Tue, 30 Oct 2007 00:44:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6A13C1BD0D + for ; Tue, 30 Oct 2007 18:48:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIjId9024418 + for ; Tue, 30 Oct 2007 14:45:18 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIjIbg024416 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:45:18 -0400 +Date: Tue, 30 Oct 2007 14:45:18 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f +To: source@collab.sakaiproject.org +From: john.ellis@rsmart.com +Subject: [sakai] svn commit: r37646 - in reports/trunk: reports-api/api/src/java/org/sakaiproject/reports/service reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl reports-tool/tool/src/java/org/sakaiproject/reports/tool reports-tool/tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 14:48:37 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37646 + +Author: john.ellis@rsmart.com +Date: 2007-10-30 14:44:35 -0400 (Tue, 30 Oct 2007) +New Revision: 37646 + +Added: +reports/trunk/reports-tool/tool/src/java/org/sakaiproject/reports/tool/ReportsStartupListener.java +Modified: +reports/trunk/reports-api/api/src/java/org/sakaiproject/reports/service/ReportsManager.java +reports/trunk/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java +reports/trunk/reports-tool/tool/src/webapp/WEB-INF/web.xml +Log: +SAK-12028 +moved around where the init took place so that it would be surrounded by the correct tx + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 14:46:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 14:46:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 14:46:02 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by mission.mail.umich.edu () with ESMTP id l9UIk2eV007849; + Tue, 30 Oct 2007 14:46:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47277BE2.8D902.11053 ; + 30 Oct 2007 14:45:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B5F686F045; + Tue, 30 Oct 2007 00:42:08 +0000 (GMT) +Message-ID: <200710301842.l9UIgkce024388@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 92 + for ; + Tue, 30 Oct 2007 00:41:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5DF211BD0D + for ; Tue, 30 Oct 2007 18:45:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIgkH2024390 + for ; Tue, 30 Oct 2007 14:42:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIgkce024388 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:42:46 -0400 +Date: Tue, 30 Oct 2007 14:42:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37645 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 14:46:02 2007 +X-DSPAM-Confidence: 0.9782 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37645 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 14:42:45 -0400 (Tue, 30 Oct 2007) +New Revision: 37645 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Oct 30 14:45:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 14:45:41 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 14:45:41 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by score.mail.umich.edu () with ESMTP id l9UIjeVW014454; + Tue, 30 Oct 2007 14:45:40 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47277BCC.245D9.14251 ; + 30 Oct 2007 14:45:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE91D6F044; + Tue, 30 Oct 2007 00:41:45 +0000 (GMT) +Message-ID: <200710301842.l9UIgRso024366@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 125 + for ; + Tue, 30 Oct 2007 00:41:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3274C1BD0D + for ; Tue, 30 Oct 2007 18:45:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIgRAX024368 + for ; Tue, 30 Oct 2007 14:42:27 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIgRso024366 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:42:27 -0400 +Date: Tue, 30 Oct 2007 14:42:27 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37644 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 14:45:41 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37644 + +Author: rjlowe@iupui.edu +Date: 2007-10-30 14:42:25 -0400 (Tue, 30 Oct 2007) +New Revision: 37644 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +Unmerging SAK-12047 as it brought in issues with SAK 12029 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Oct 30 14:31:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 14:31:32 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 14:31:32 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id l9UIVVHR001501; + Tue, 30 Oct 2007 14:31:31 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4727787C.17F5C.12836 ; + 30 Oct 2007 14:31:27 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 19DDD6EFF8; + Tue, 30 Oct 2007 00:27:36 +0000 (GMT) +Message-ID: <200710301828.l9UISBpI024254@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 167 + for ; + Tue, 30 Oct 2007 00:27:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5B32D1BCCA + for ; Tue, 30 Oct 2007 18:31:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UISBuk024256 + for ; Tue, 30 Oct 2007 14:28:11 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UISBpI024254 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:28:11 -0400 +Date: Tue, 30 Oct 2007 14:28:11 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r37643 - osp/tags +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 14:31:32 2007 +X-DSPAM-Confidence: 0.9817 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37643 + +Author: chmaurer@iupui.edu +Date: 2007-10-30 14:28:10 -0400 (Tue, 30 Oct 2007) +New Revision: 37643 + +Added: +osp/tags/sakai_2-5-0_QA_011_GMT/ +Log: +Creating 2.5.011 qa tag for OSP and GMT + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 14:25:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 14:25:57 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 14:25:57 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id l9UIPu3F029907; + Tue, 30 Oct 2007 14:25:56 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4727772D.E2A21.29645 ; + 30 Oct 2007 14:25:53 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CD3256EC9D; + Tue, 30 Oct 2007 00:22:02 +0000 (GMT) +Message-ID: <200710301822.l9UIMjOq024187@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 324 + for ; + Tue, 30 Oct 2007 00:21:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 23500BCD0 + for ; Tue, 30 Oct 2007 18:25:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIMjaZ024189 + for ; Tue, 30 Oct 2007 14:22:45 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIMjOq024187 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:22:45 -0400 +Date: Tue, 30 Oct 2007 14:22:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37642 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 14:25:57 2007 +X-DSPAM-Confidence: 0.9779 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37642 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 14:22:44 -0400 (Tue, 30 Oct 2007) +New Revision: 37642 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Oct 30 14:25:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 14:25:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 14:25:13 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id l9UIPCx3010820; + Tue, 30 Oct 2007 14:25:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47277702.19ACD.23971 ; + 30 Oct 2007 14:25:09 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DFC9D6F01C; + Tue, 30 Oct 2007 00:21:15 +0000 (GMT) +Message-ID: <200710301821.l9UILqV0024175@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 448 + for ; + Tue, 30 Oct 2007 00:21:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A736DBCD0 + for ; Tue, 30 Oct 2007 18:24:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UILqhc024177 + for ; Tue, 30 Oct 2007 14:21:52 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UILqV0024175 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:21:52 -0400 +Date: Tue, 30 Oct 2007 14:21:52 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37641 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 14:25:13 2007 +X-DSPAM-Confidence: 0.9925 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37641 + +Author: rjlowe@iupui.edu +Date: 2007-10-30 14:21:51 -0400 (Tue, 30 Oct 2007) +New Revision: 37641 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37499:37500 https://source.sakaiproject.org/svn/assignment/trunk +C assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +M assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-146:~/java/test/assignment admin$ svn log -r 37500:37500 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Tue Oct 30 14:06:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 14:06:48 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 14:06:48 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id l9UI6RXm009175; + Tue, 30 Oct 2007 14:06:27 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4727729D.58319.1128 ; + 30 Oct 2007 14:06:24 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 735C06EFCD; + Tue, 30 Oct 2007 00:01:37 +0000 (GMT) +Message-ID: <200710301802.l9UI2xFc024113@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 286 + for ; + Tue, 30 Oct 2007 00:01:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 911B71C7FD + for ; Tue, 30 Oct 2007 18:05:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UI2xXD024115 + for ; Tue, 30 Oct 2007 14:02:59 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UI2xFc024113 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:02:59 -0400 +Date: Tue, 30 Oct 2007 14:02:59 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37640 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 14:06:48 2007 +X-DSPAM-Confidence: 0.9819 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37640 + +Author: kimsooil@bu.edu +Date: 2007-10-30 14:02:55 -0400 (Tue, 30 Oct 2007) +New Revision: 37640 + +Modified: +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java +Log: +Fix SAK-11067 (more info - sender & recipient(s)) + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 13:51:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 13:51:01 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 13:51:01 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by mission.mail.umich.edu () with ESMTP id l9UHp0tn032400; + Tue, 30 Oct 2007 13:51:00 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 47276EFD.AEA4F.9335 ; + 30 Oct 2007 13:50:56 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 653236AF4F; + Mon, 29 Oct 2007 23:52:57 +0000 (GMT) +Message-ID: <200710301747.l9UHlLLr024038@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 301 + for ; + Mon, 29 Oct 2007 23:52:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4971D1C811 + for ; Tue, 30 Oct 2007 17:50:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHlLHd024040 + for ; Tue, 30 Oct 2007 13:47:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHlLLr024038 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:47:21 -0400 +Date: Tue, 30 Oct 2007 13:47:21 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37639 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 13:51:01 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37639 + +Author: dlhaines@umich.edu +Date: 2007-10-30 13:47:20 -0400 (Tue, 30 Oct 2007) +New Revision: 37639 + +Added: +ctools/trunk/builds/ctools_2-4/patches/SAK-11215.patch +Log: +CTools: add new patch for 2.4.xP + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 13:46:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 13:46:51 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 13:46:51 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id l9UHkoic020223; + Tue, 30 Oct 2007 13:46:50 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47276E02.A49D6.18056 ; + 30 Oct 2007 13:46:45 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AFAD36EF9E; + Mon, 29 Oct 2007 23:48:48 +0000 (GMT) +Message-ID: <200710301743.l9UHhLTg024026@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 48 + for ; + Mon, 29 Oct 2007 23:48:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 680401C7FE + for ; Tue, 30 Oct 2007 17:46:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHhL9S024028 + for ; Tue, 30 Oct 2007 13:43:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHhLTg024026 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:43:21 -0400 +Date: Tue, 30 Oct 2007 13:43:21 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37638 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 13:46:51 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37638 + +Author: dlhaines@umich.edu +Date: 2007-10-30 13:43:20 -0400 (Tue, 30 Oct 2007) +New Revision: 37638 + +Added: +ctools/trunk/builds/ctools_2-4/patches/SAK-10788.patch +Log: +CTools: add new patch for 2.4.xP + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 13:40:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 13:40:57 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 13:40:57 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id l9UHesQM027671; + Tue, 30 Oct 2007 13:40:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47276CA0.32E90.3464 ; + 30 Oct 2007 13:40:51 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74C3E6EF8F; + Mon, 29 Oct 2007 23:42:59 +0000 (GMT) +Message-ID: <200710301737.l9UHbi7N024006@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 101 + for ; + Mon, 29 Oct 2007 23:42:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C10331C7FE + for ; Tue, 30 Oct 2007 17:40:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHbiBp024008 + for ; Tue, 30 Oct 2007 13:37:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHbi7N024006 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:37:44 -0400 +Date: Tue, 30 Oct 2007 13:37:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37637 - ctools/trunk/builds/ctools_2-4/patches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 13:40:57 2007 +X-DSPAM-Confidence: 0.9854 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37637 + +Author: dlhaines@umich.edu +Date: 2007-10-30 13:37:42 -0400 (Tue, 30 Oct 2007) +New Revision: 37637 + +Added: +ctools/trunk/builds/ctools_2-4/patches/SAK-11919.patch +Log: +CTools: add new patch for 2.4.xP + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 30 13:39:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 13:39:24 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 13:39:24 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id l9UHdLbG008777; + Tue, 30 Oct 2007 13:39:21 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47276C43.129FD.15572 ; + 30 Oct 2007 13:39:18 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F0D056EF8D; + Mon, 29 Oct 2007 23:41:24 +0000 (GMT) +Message-ID: <200710301736.l9UHa4Rv023983@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 656 + for ; + Mon, 29 Oct 2007 23:41:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BCB731C7F4 + for ; Tue, 30 Oct 2007 17:38:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHa43E023989 + for ; Tue, 30 Oct 2007 13:36:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHa4Rv023983 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:36:04 -0400 +Date: Tue, 30 Oct 2007 13:36:04 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37636 - in assignment/branches/post-2-4/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 13:39:24 2007 +X-DSPAM-Confidence: 0.8481 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37636 + +Author: zqian@umich.edu +Date: 2007-10-30 13:36:00 -0400 (Tue, 30 Oct 2007) +New Revision: 37636 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm +Log: +merged fix to SAK-33072 into post_24 branch: svn merge -r 33071:33072 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Tue Oct 30 13:00:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 13:00:21 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 13:00:21 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by brazil.mail.umich.edu () with ESMTP id l9UH0JZA015528; + Tue, 30 Oct 2007 13:00:19 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4727631D.5C8E1.28326 ; + 30 Oct 2007 13:00:16 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A7D8B50FA1; + Mon, 29 Oct 2007 23:02:20 +0000 (GMT) +Message-ID: <200710301656.l9UGuuJa023899@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 11 + for ; + Mon, 29 Oct 2007 23:02:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 833701B894 + for ; Tue, 30 Oct 2007 16:59:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UGuumx023901 + for ; Tue, 30 Oct 2007 12:56:56 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UGuuJa023899 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 12:56:56 -0400 +Date: Tue, 30 Oct 2007 12:56:56 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37635 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 13:00:21 2007 +X-DSPAM-Confidence: 0.9781 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37635 + +Author: kimsooil@bu.edu +Date: 2007-10-30 12:56:52 -0400 (Tue, 30 Oct 2007) +New Revision: 37635 + +Modified: +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java +Log: +Fix SAK-11067 +(two log events-mailsent&optionUpdated will posted) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From nuno@ufp.pt Tue Oct 30 12:02:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 12:02:44 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 12:02:44 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id l9UG2hRf020391; + Tue, 30 Oct 2007 12:02:43 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4727559C.DC8A0.21805 ; + 30 Oct 2007 12:02:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CAED86EDFD; + Mon, 29 Oct 2007 22:04:40 +0000 (GMT) +Message-ID: <200710301559.l9UFxRwT023794@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 201 + for ; + Mon, 29 Oct 2007 22:04:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1C6EE1BC27 + for ; Tue, 30 Oct 2007 16:02:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UFxRjO023796 + for ; Tue, 30 Oct 2007 11:59:27 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UFxRwT023794 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 11:59:27 -0400 +Date: Tue, 30 Oct 2007 11:59:27 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f +To: source@collab.sakaiproject.org +From: nuno@ufp.pt +Subject: [sakai] svn commit: r37634 - in calendar/trunk/calendar-summary-tool/tool/src: bundle/org/sakaiproject/tool/summarycalendar/bundle java/org/sakaiproject/tool/summarycalendar/ui webapp/summary-calendar +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 12:02:44 2007 +X-DSPAM-Confidence: 0.9777 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37634 + +Author: nuno@ufp.pt +Date: 2007-10-30 11:58:56 -0400 (Tue, 30 Oct 2007) +New Revision: 37634 + +Added: +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_en_GB.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ko.properties +calendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventTypes.java +Modified: +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ar.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ca.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_es.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_fr_CA.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ja.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_nl.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ru.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_sv.properties +calendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_zh_CN.properties +calendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/CalendarBean.java +calendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventSummary.java +calendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/PrefsBean.java +calendar/trunk/calendar-summary-tool/tool/src/webapp/summary-calendar/calendar.jsp +calendar/trunk/calendar-summary-tool/tool/src/webapp/summary-calendar/prefs.jsp +Log: +SAK-10440: Localize Calendar Summary event types + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Tue Oct 30 10:59:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:59:33 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:59:33 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id l9UExW4f013349; + Tue, 30 Oct 2007 10:59:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472746CF.6F4CD.2279 ; + 30 Oct 2007 10:59:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C9CD658AEA; + Mon, 29 Oct 2007 21:01:30 +0000 (GMT) +Message-ID: <200710301456.l9UEuLDH022677@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984 + for ; + Mon, 29 Oct 2007 21:01:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5EAA71CBFE + for ; Tue, 30 Oct 2007 14:59:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEuLSh022679 + for ; Tue, 30 Oct 2007 10:56:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEuLDH022677 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:56:21 -0400 +Date: Tue, 30 Oct 2007 10:56:21 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37560 - mailtool/trunk/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:59:33 2007 +X-DSPAM-Confidence: 0.8414 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37560 + +Author: kimsooil@bu.edu +Date: 2007-10-30 10:56:17 -0400 (Tue, 30 Oct 2007) +New Revision: 37560 + +Modified: +mailtool/trunk/mailtool/pom.xml +Log: +redundant dependencis (also in /master/pom.xml) are removed in pom.xml + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:52:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:52:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:52:55 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id l9UEqstI002542; + Tue, 30 Oct 2007 10:52:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 47274541.1201A.21680 ; + 30 Oct 2007 10:52:51 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 61D2D6EDE8; + Mon, 29 Oct 2007 20:54:53 +0000 (GMT) +Message-ID: <200710301449.l9UEngRC022662@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 287 + for ; + Mon, 29 Oct 2007 20:54:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A5691CBFE + for ; Tue, 30 Oct 2007 14:52:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEng5S022664 + for ; Tue, 30 Oct 2007 10:49:42 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEngRC022662 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:49:42 -0400 +Date: Tue, 30 Oct 2007 10:49:42 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37559 - osp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:52:55 2007 +X-DSPAM-Confidence: 0.9923 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37559 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:49:41 -0400 (Tue, 30 Oct 2007) +New Revision: 37559 + +Modified: +osp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation/wizardHeader.inc +Log: + +svn merge -c 37558 https://source.sakaiproject.org/svn/osp/trunk +U presentation/tool/src/webapp/WEB-INF/jsp/presentation/wizardHeader.inc +svn log -r 37558 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r37558 | chmaurer@iupui.edu | 2007-10-30 10:44:06 -0400 (Tue, 30 Oct 2007) | 2 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-12078 +Removing some extra text that may have slipped through during some local testing. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Oct 30 10:48:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:48:06 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:48:06 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by sleepers.mail.umich.edu () with ESMTP id l9UEm6rE016147; + Tue, 30 Oct 2007 10:48:06 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4727441E.C5303.30847 ; + 30 Oct 2007 10:48:02 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1B2F86EDFD; + Mon, 29 Oct 2007 20:49:37 +0000 (GMT) +Message-ID: <200710301444.l9UEi7ff022649@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 852 + for ; + Mon, 29 Oct 2007 20:49:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8B5CA1C809 + for ; Tue, 30 Oct 2007 14:46:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEi8p2022651 + for ; Tue, 30 Oct 2007 10:44:08 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEi7ff022649 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:44:07 -0400 +Date: Tue, 30 Oct 2007 10:44:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r37558 - osp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:48:06 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37558 + +Author: chmaurer@iupui.edu +Date: 2007-10-30 10:44:06 -0400 (Tue, 30 Oct 2007) +New Revision: 37558 + +Modified: +osp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation/wizardHeader.inc +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12078 +Removing some extra text that may have slipped through during some local testing. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:47:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:47:40 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:47:40 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id l9UEldHa000798; + Tue, 30 Oct 2007 10:47:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47274400.8CEAA.12458 ; + 30 Oct 2007 10:47:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 96DBA6EE0A; + Mon, 29 Oct 2007 20:49:28 +0000 (GMT) +Message-ID: <200710301443.l9UEhheN022637@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 374 + for ; + Mon, 29 Oct 2007 20:48:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4B41F1C809 + for ; Tue, 30 Oct 2007 14:46:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEhhvg022639 + for ; Tue, 30 Oct 2007 10:43:43 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEhheN022637 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:43 -0400 +Date: Tue, 30 Oct 2007 10:43:43 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37557 - tool/branches/sakai_2-5-x/tool-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:47:40 2007 +X-DSPAM-Confidence: 0.9901 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37557 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:43:42 -0400 (Tue, 30 Oct 2007) +New Revision: 37557 + +Modified: +tool/branches/sakai_2-5-x/tool-impl/impl/src/bundle/tools_nl.properties +Log: + +svn merge -c 37455 https://source.sakaiproject.org/svn/tool/trunk +U tool-impl/impl/src/bundle/tools_nl.properties +svn log -r 37455 https://source.sakaiproject.org/svn/tool/trunk +------------------------------------------------------------------------ +r37455 | mbreuker@loi.nl | 2007-10-29 11:13:33 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (tool names) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:47:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:47:23 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:47:23 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by mission.mail.umich.edu () with ESMTP id l9UElM5o030753; + Tue, 30 Oct 2007 10:47:22 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 472743F2.C2CCB.9485 ; + 30 Oct 2007 10:47:19 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E98976EE0E; + Mon, 29 Oct 2007 20:49:18 +0000 (GMT) +Message-ID: <200710301443.l9UEh1Yx022601@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761 + for ; + Mon, 29 Oct 2007 20:47:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DB8AA1C80A + for ; Tue, 30 Oct 2007 14:45:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEh1xj022603 + for ; Tue, 30 Oct 2007 10:43:01 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEh1Yx022601 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:01 -0400 +Date: Tue, 30 Oct 2007 10:43:01 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37554 - user/branches/sakai_2-5-x/user-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:47:23 2007 +X-DSPAM-Confidence: 0.9897 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37554 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:43:00 -0400 (Tue, 30 Oct 2007) +New Revision: 37554 + +Modified: +user/branches/sakai_2-5-x/user-tool/tool/src/bundle/admin_nl.properties +Log: + +svn merge -c 37452 https://source.sakaiproject.org/svn/user/trunk +U user-tool/tool/src/bundle/admin_nl.properties +svn log -r 37452 https://source.sakaiproject.org/svn/user/trunk +------------------------------------------------------------------------ +r37452 | mbreuker@loi.nl | 2007-10-29 10:24:40 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (user tool) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:47:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:47:14 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:47:14 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by godsend.mail.umich.edu () with ESMTP id l9UElDHc031336; + Tue, 30 Oct 2007 10:47:13 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 472743E5.D1CF6.5729 ; + 30 Oct 2007 10:47:08 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 685906EE03; + Mon, 29 Oct 2007 20:49:06 +0000 (GMT) +Message-ID: <200710301443.l9UEhOHu022625@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534 + for ; + Mon, 29 Oct 2007 20:48:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C1F321C80A + for ; Tue, 30 Oct 2007 14:46:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEhOuO022627 + for ; Tue, 30 Oct 2007 10:43:24 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEhOHu022625 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:24 -0400 +Date: Tue, 30 Oct 2007 10:43:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37556 - osp/branches/sakai_2-5-x/common/tool/src/bundle/org/theospi/portfolio/common/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:47:14 2007 +X-DSPAM-Confidence: 0.9901 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37556 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:43:23 -0400 (Tue, 30 Oct 2007) +New Revision: 37556 + +Modified: +osp/branches/sakai_2-5-x/common/tool/src/bundle/org/theospi/portfolio/common/bundle/Messages_nl.properties +Log: + +svn merge -c 37454 https://source.sakaiproject.org/svn/osp/trunk +U common/tool/src/bundle/org/theospi/portfolio/common/bundle/Messages_nl.properties +svn log -r 37454 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r37454 | mbreuker@loi.nl | 2007-10-29 11:11:37 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (osp common) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:47:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:47:07 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:47:07 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id l9UEl5PX030518; + Tue, 30 Oct 2007 10:47:06 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 472743E0.2BC28.5479 ; + 30 Oct 2007 10:46:59 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 63B3A6EDFF; + Mon, 29 Oct 2007 20:49:00 +0000 (GMT) +Message-ID: <200710301443.l9UEhDRT022613@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680 + for ; + Mon, 29 Oct 2007 20:48:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 79B901C80A + for ; Tue, 30 Oct 2007 14:46:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEhDvD022615 + for ; Tue, 30 Oct 2007 10:43:13 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEhDRT022613 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:13 -0400 +Date: Tue, 30 Oct 2007 10:43:13 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37555 - content/branches/sakai_2-5-x/content-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:47:07 2007 +X-DSPAM-Confidence: 0.9899 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37555 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:43:12 -0400 (Tue, 30 Oct 2007) +New Revision: 37555 + +Modified: +content/branches/sakai_2-5-x/content-bundles/types_nl.properties +Log: + +svn merge -c 37453 https://source.sakaiproject.org/svn/content/trunk +U content-bundles/types_nl.properties +svn log -r 37453 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r37453 | mbreuker@loi.nl | 2007-10-29 10:55:00 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (resources tool) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:46:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:46:50 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:46:50 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by sleepers.mail.umich.edu () with ESMTP id l9UEknFn015368; + Tue, 30 Oct 2007 10:46:49 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 472743CE.914EB.3519 ; + 30 Oct 2007 10:46:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07CF75A062; + Mon, 29 Oct 2007 20:48:43 +0000 (GMT) +Message-ID: <200710301442.l9UEgX7p022589@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696 + for ; + Mon, 29 Oct 2007 20:47:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 81C521C80A + for ; Tue, 30 Oct 2007 14:45:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEgY1a022591 + for ; Tue, 30 Oct 2007 10:42:34 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEgX7p022589 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:34 -0400 +Date: Tue, 30 Oct 2007 10:42:34 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37553 - user/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:46:50 2007 +X-DSPAM-Confidence: 0.9899 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37553 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:42:32 -0400 (Tue, 30 Oct 2007) +New Revision: 37553 + +Modified: +user/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle/user-tool-prefs_nl.properties +Log: + +svn merge -c 37451 https://source.sakaiproject.org/svn/user/trunk +U user-tool-prefs/tool/src/bundle/user-tool-prefs_nl.properties +svn log -r 37451 https://source.sakaiproject.org/svn/user/trunk +------------------------------------------------------------------------ +r37451 | mbreuker@loi.nl | 2007-10-29 10:24:00 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (user prefs tool) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:46:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:46:07 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:46:07 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by casino.mail.umich.edu () with ESMTP id l9UEk6Gn007880; + Tue, 30 Oct 2007 10:46:06 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472743A8.79DD7.9328 ; + 30 Oct 2007 10:46:03 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 08A3C6EE01; + Mon, 29 Oct 2007 20:48:04 +0000 (GMT) +Message-ID: <200710301442.l9UEgIuu022565@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 376 + for ; + Mon, 29 Oct 2007 20:47:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7990D1C809 + for ; Tue, 30 Oct 2007 14:45:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEgIg3022567 + for ; Tue, 30 Oct 2007 10:42:18 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEgIuu022565 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:18 -0400 +Date: Tue, 30 Oct 2007 10:42:18 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37551 - osp/branches/sakai_2-5-x/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:46:07 2007 +X-DSPAM-Confidence: 0.8506 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37551 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:42:17 -0400 (Tue, 30 Oct 2007) +New Revision: 37551 + +Modified: +osp/branches/sakai_2-5-x/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle/Messages_nl.properties +Log: + +svn merge -c 37442 https://source.sakaiproject.org/svn/osp/trunk +U matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle/Messages_nl.properties +svn log -r 37442 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r37442 | mbreuker@loi.nl | 2007-10-29 06:47:54 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (osp matrix tool) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:46:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:46:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:46:02 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id l9UEk2ZK032055; + Tue, 30 Oct 2007 10:46:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 472743A3.DD1C0.3131 ; + 30 Oct 2007 10:45:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 336616EE09; + Mon, 29 Oct 2007 20:48:00 +0000 (GMT) +Message-ID: <200710301442.l9UEgPFe022577@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 842 + for ; + Mon, 29 Oct 2007 20:47:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AC5AE1C809 + for ; Tue, 30 Oct 2007 14:45:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEgPBN022579 + for ; Tue, 30 Oct 2007 10:42:25 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEgPFe022577 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:25 -0400 +Date: Tue, 30 Oct 2007 10:42:25 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37552 - usermembership/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/umem/tool/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:46:02 2007 +X-DSPAM-Confidence: 0.9900 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37552 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:42:23 -0400 (Tue, 30 Oct 2007) +New Revision: 37552 + +Modified: +usermembership/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_nl.properties +Log: + +svn merge -c 37450 https://source.sakaiproject.org/svn/usermembership/trunk +U tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_nl.properties +svn log -r 37450 https://source.sakaiproject.org/svn/usermembership/trunk +------------------------------------------------------------------------ +r37450 | mbreuker@loi.nl | 2007-10-29 10:23:15 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (usermembership tool) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:45:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:45:31 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:45:31 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id l9UEjV8E030235; + Tue, 30 Oct 2007 10:45:31 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4727437D.DFE1A.23793 ; + 30 Oct 2007 10:45:28 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 688DC6EDFC; + Mon, 29 Oct 2007 20:47:22 +0000 (GMT) +Message-ID: <200710301442.l9UEg6na022553@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 896 + for ; + Mon, 29 Oct 2007 20:46:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8E2A91C809 + for ; Tue, 30 Oct 2007 14:44:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEg6r8022555 + for ; Tue, 30 Oct 2007 10:42:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEg6na022553 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:06 -0400 +Date: Tue, 30 Oct 2007 10:42:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37550 - osp/branches/sakai_2-5-x/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:45:31 2007 +X-DSPAM-Confidence: 0.8505 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37550 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:42:06 -0400 (Tue, 30 Oct 2007) +New Revision: 37550 + +Modified: +osp/branches/sakai_2-5-x/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle/Messages_nl.properties +Log: + +svn merge -c 37386 https://source.sakaiproject.org/svn/osp/trunk +U glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle/Messages_nl.properties +svn log -r 37386 https://source.sakaiproject.org/svn/osp/trunk +------------------------------------------------------------------------ +r37386 | mbreuker@loi.nl | 2007-10-25 12:10:41 -0400 (Thu, 25 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (osp glossary tool) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:45:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:45:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:45:13 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id l9UEjCGW007264; + Tue, 30 Oct 2007 10:45:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4727436F.6FC83.9110 ; + 30 Oct 2007 10:45:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 858B45A062; + Mon, 29 Oct 2007 20:47:00 +0000 (GMT) +Message-ID: <200710301441.l9UEfjs7022541@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 101 + for ; + Mon, 29 Oct 2007 20:46:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8D11B1C809 + for ; Tue, 30 Oct 2007 14:44:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEfkrj022543 + for ; Tue, 30 Oct 2007 10:41:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEfjs7022541 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:41:45 -0400 +Date: Tue, 30 Oct 2007 10:41:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37549 - blog/branches/sakai_2-5-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:45:13 2007 +X-DSPAM-Confidence: 0.8504 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37549 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:41:44 -0400 (Tue, 30 Oct 2007) +New Revision: 37549 + +Modified: +blog/branches/sakai_2-5-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_nl.properties +Log: + +svn merge -c 37348 https://source.sakaiproject.org/svn/blog/trunk +U tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_nl.properties +svn log -r 37348 https://source.sakaiproject.org/svn/blog/trunk +------------------------------------------------------------------------ +r37348 | mbreuker@loi.nl | 2007-10-24 07:10:15 -0400 (Wed, 24 Oct 2007) | 1 line + +SAK-12021 - update dutch translations (blogger tool) +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:44:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:44:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:44:43 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by chaos.mail.umich.edu () with ESMTP id l9UEig76024109; + Tue, 30 Oct 2007 10:44:42 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47274353.6649B.23215 ; + 30 Oct 2007 10:44:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C706E57B96; + Mon, 29 Oct 2007 20:46:39 +0000 (GMT) +Message-ID: <200710301441.l9UEfQfA022529@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 50 + for ; + Mon, 29 Oct 2007 20:46:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7B6F91C809 + for ; Tue, 30 Oct 2007 14:44:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEfQHT022531 + for ; Tue, 30 Oct 2007 10:41:27 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEfQfA022529 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:41:26 -0400 +Date: Tue, 30 Oct 2007 10:41:26 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37548 - entity/branches/sakai_2-5-x/entity-impl/impl/src/java/org/sakaiproject/entity/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:44:43 2007 +X-DSPAM-Confidence: 0.9893 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37548 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:41:25 -0400 (Tue, 30 Oct 2007) +New Revision: 37548 + +Modified: +entity/branches/sakai_2-5-x/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java +Log: + +svn merge -c 36445 https://source.sakaiproject.org/svn/entity/trunk +U entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java +svn log -r 36445 https://source.sakaiproject.org/svn/entity/trunk +------------------------------------------------------------------------ +r36445 | ian@caret.cam.ac.uk | 2007-10-05 04:50:21 -0400 (Fri, 05 Oct 2007) | 6 lines + +Provided a non debug version of the parser +The stray references come from valid places and are not an issue. + +http://jira.sakaiproject.org/jira/browse/SAK-11815 + + +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:44:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:44:32 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:44:32 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id l9UEiWte030920; + Tue, 30 Oct 2007 10:44:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47274341.12F3F.30477 ; + 30 Oct 2007 10:44:20 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B287B6EDFB; + Mon, 29 Oct 2007 20:46:20 +0000 (GMT) +Message-ID: <200710301441.l9UEf6UO022517@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 101 + for ; + Mon, 29 Oct 2007 20:46:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4B6F31C809 + for ; Tue, 30 Oct 2007 14:43:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEf68Q022519 + for ; Tue, 30 Oct 2007 10:41:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEf6UO022517 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:41:06 -0400 +Date: Tue, 30 Oct 2007 10:41:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37547 - in assignment/branches/sakai_2-5-x/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:44:32 2007 +X-DSPAM-Confidence: 0.8519 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37547 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:41:04 -0400 (Tue, 30 Oct 2007) +New Revision: 37547 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: + +svn merge -c 37483 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +svn log -r 37483 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37483 | zqian@umich.edu | 2007-10-29 15:15:04 -0400 (Mon, 29 Oct 2007) | 1 line + +fix to SAK-12075:assignment tool requires both 'asn.new' and 'asn.grade' for a TA to see the Grade link +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:44:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:44:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:44:02 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by mission.mail.umich.edu () with ESMTP id l9UEi19o027897; + Tue, 30 Oct 2007 10:44:01 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4727432B.8E6A6.27588 ; + 30 Oct 2007 10:43:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5518558AEA; + Mon, 29 Oct 2007 20:45:59 +0000 (GMT) +Message-ID: <200710301440.l9UEekvZ022505@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 755 + for ; + Mon, 29 Oct 2007 20:45:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 63DD51C809 + for ; Tue, 30 Oct 2007 14:43:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEek2F022507 + for ; Tue, 30 Oct 2007 10:40:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEekvZ022505 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:40:46 -0400 +Date: Tue, 30 Oct 2007 10:40:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37546 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:44:02 2007 +X-DSPAM-Confidence: 0.9915 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37546 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:40:45 -0400 (Tue, 30 Oct 2007) +New Revision: 37546 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: + +svn merge -c 37328 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +svn log -r 37328 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37328 | zqian@umich.edu | 2007-10-23 12:36:01 -0400 (Tue, 23 Oct 2007) | 1 line + +fix to SAK-11634:Assignment uses UsageSession rather than normal Session +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:43:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:43:40 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:43:40 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id l9UEhd1T005780; + Tue, 30 Oct 2007 10:43:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47274315.DB9DD.8632 ; + 30 Oct 2007 10:43:37 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5E4826EDE8; + Mon, 29 Oct 2007 20:45:32 +0000 (GMT) +Message-ID: <200710301440.l9UEeNUC022493@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 77 + for ; + Mon, 29 Oct 2007 20:45:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 086971C809 + for ; Tue, 30 Oct 2007 14:43:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEeNWq022495 + for ; Tue, 30 Oct 2007 10:40:23 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEeNUC022493 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:40:23 -0400 +Date: Tue, 30 Oct 2007 10:40:23 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37545 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:43:40 2007 +X-DSPAM-Confidence: 0.9921 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37545 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:40:22 -0400 (Tue, 30 Oct 2007) +New Revision: 37545 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: + +svn merge -c 37417 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +svn log -r 37417 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37417 | zqian@umich.edu | 2007-10-26 11:49:11 -0400 (Fri, 26 Oct 2007) | 1 line + +fix to SAK-11821: fix the problem those auto added submission object have two same submitter ids listed in xml +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:36:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:36:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:36:37 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id l9UEaaqo008158; + Tue, 30 Oct 2007 10:36:36 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47274169.264F7.6828 ; + 30 Oct 2007 10:36:28 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6FD766EDE5; + Mon, 29 Oct 2007 20:38:27 +0000 (GMT) +Message-ID: <200710301433.l9UEXJVo022423@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 967 + for ; + Mon, 29 Oct 2007 20:38:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B2AD01C809 + for ; Tue, 30 Oct 2007 14:36:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEXJ0t022425 + for ; Tue, 30 Oct 2007 10:33:19 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEXJVo022423 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:33:19 -0400 +Date: Tue, 30 Oct 2007 10:33:19 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37544 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:36:37 2007 +X-DSPAM-Confidence: 0.9922 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37544 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:33:17 -0400 (Tue, 30 Oct 2007) +New Revision: 37544 + +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +Log: + +svn merge -c 37367 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +svn log -r 37367 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37367 | zqian@umich.edu | 2007-10-24 16:20:51 -0400 (Wed, 24 Oct 2007) | 1 line + +fix to SAK-11821: fix the problem with 0 value for getting graded or submission submission count. Was using wrong sql syntax for Oracle +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:32:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:32:40 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:32:40 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id l9UEWdMv020544; + Tue, 30 Oct 2007 10:32:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4727407B.63291.26322 ; + 30 Oct 2007 10:32:34 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4D7086EDE5; + Mon, 29 Oct 2007 20:34:31 +0000 (GMT) +Message-ID: <200710301429.l9UETLDf022365@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 805 + for ; + Mon, 29 Oct 2007 20:34:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D79671C3A5 + for ; Tue, 30 Oct 2007 14:32:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UETLe6022367 + for ; Tue, 30 Oct 2007 10:29:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UETLDf022365 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:29:21 -0400 +Date: Tue, 30 Oct 2007 10:29:21 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37543 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:32:40 2007 +X-DSPAM-Confidence: 0.9929 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37543 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:29:18 -0400 (Tue, 30 Oct 2007) +New Revision: 37543 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: + +svn merge -c 37326 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +svn log -r 37326 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37326 | zqian@umich.edu | 2007-10-23 12:16:57 -0400 (Tue, 23 Oct 2007) | 1 line + +fix to SAK-11992:Deleted assignment appearing to students but not instructor; when the assignment is non-electronic type, delete assignment also removes all submissions and assignment content object. Otherwise, if there is no submission to the assignment yet, both assignment and assignment content objects will be removed. If there is submission object, assignment is just marked as 'deleted' +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:32:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:32:19 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:32:19 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by score.mail.umich.edu () with ESMTP id l9UEWJwc003640; + Tue, 30 Oct 2007 10:32:19 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47274067.421BA.27830 ; + 30 Oct 2007 10:32:10 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9FF6E6EDE7; + Mon, 29 Oct 2007 20:34:06 +0000 (GMT) +Message-ID: <200710301428.l9UESruc022338@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 580 + for ; + Mon, 29 Oct 2007 20:33:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 066FD1C3A5 + for ; Tue, 30 Oct 2007 14:31:43 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UESro6022340 + for ; Tue, 30 Oct 2007 10:28:53 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UESruc022338 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:28:53 -0400 +Date: Tue, 30 Oct 2007 10:28:53 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37541 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:32:19 2007 +X-DSPAM-Confidence: 0.9917 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37541 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:28:51 -0400 (Tue, 30 Oct 2007) +New Revision: 37541 + +Modified: +assignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: + +svn merge -c 37335 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-bundles/assignment.properties +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +svn log -r 37335 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37335 | zqian@umich.edu | 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007) | 1 line + +fix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions' +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:32:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:32:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:32:13 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by flawless.mail.umich.edu () with ESMTP id l9UEWDp5029767; + Tue, 30 Oct 2007 10:32:13 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47274067.4C74A.10228 ; + 30 Oct 2007 10:32:10 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 50E216EDEA; + Mon, 29 Oct 2007 20:34:10 +0000 (GMT) +Message-ID: <200710301428.l9UESwWc022351@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 136 + for ; + Mon, 29 Oct 2007 20:33:55 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98B391C3A5 + for ; Tue, 30 Oct 2007 14:31:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UESxh9022353 + for ; Tue, 30 Oct 2007 10:28:59 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UESwWc022351 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:28:58 -0400 +Date: Tue, 30 Oct 2007 10:28:58 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37542 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:32:13 2007 +X-DSPAM-Confidence: 0.9916 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37542 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:28:57 -0400 (Tue, 30 Oct 2007) +New Revision: 37542 + +Modified: +assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: + +svn merge -c 37409 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +svn log -r 37409 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37409 | zqian@umich.edu | 2007-10-26 10:35:02 -0400 (Fri, 26 Oct 2007) | 3 lines + +Fix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions' + +Assign grades also to those non-graded submissions. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:30:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:30:53 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:30:53 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by score.mail.umich.edu () with ESMTP id l9UEUqIO003006; + Tue, 30 Oct 2007 10:30:52 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47274016.A48AD.23689 ; + 30 Oct 2007 10:30:49 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EB8F46EDE5; + Mon, 29 Oct 2007 20:32:49 +0000 (GMT) +Message-ID: <200710301427.l9UERS9f022295@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425 + for ; + Mon, 29 Oct 2007 20:32:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 086811C3A5 + for ; Tue, 30 Oct 2007 14:30:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UERSD0022297 + for ; Tue, 30 Oct 2007 10:27:28 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UERS9f022295 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:27:28 -0400 +Date: Tue, 30 Oct 2007 10:27:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37540 - in reset-pass/branches/sakai_2-5-x: . reset-pass/src/java/org/sakaiproject/tool/resetpass reset-pass/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:30:53 2007 +X-DSPAM-Confidence: 0.9902 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37540 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:27:26 -0400 (Tue, 30 Oct 2007) +New Revision: 37540 + +Modified: +reset-pass/branches/sakai_2-5-x/.classpath +reset-pass/branches/sakai_2-5-x/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java +reset-pass/branches/sakai_2-5-x/reset-pass/src/webapp/WEB-INF/requestContext.xml +Log: + +svn merge -c 37532 https://source.sakaiproject.org/svn/reset-pass/trunk +U .classpath +U reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java +U reset-pass/src/webapp/WEB-INF/requestContext.xml +svn log -r 37532 https://source.sakaiproject.org/svn/reset-pass/trunk +------------------------------------------------------------------------ +r37532 | david.horwitz@uct.ac.za | 2007-10-30 05:35:42 -0400 (Tue, 30 Oct 2007) | 1 line + +SAK-12076 used spring injection instead of static cover +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 30 10:30:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:30:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:30:37 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by flawless.mail.umich.edu () with ESMTP id l9UEUbUl028929; + Tue, 30 Oct 2007 10:30:37 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47273FFC.62BB4.26097 ; + 30 Oct 2007 10:30:33 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 313A954108; + Mon, 29 Oct 2007 20:32:22 +0000 (GMT) +Message-ID: <200710301427.l9UERCb6022279@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758 + for ; + Mon, 29 Oct 2007 20:32:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E97111C3A5 + for ; Tue, 30 Oct 2007 14:30:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UERCdO022281 + for ; Tue, 30 Oct 2007 10:27:12 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UERCb6022279 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:27:12 -0400 +Date: Tue, 30 Oct 2007 10:27:12 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37539 - profile/branches/sakai_2-5-x/common-composite-component/src/java/org/sakaiproject/component/common/edu/person +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:30:37 2007 +X-DSPAM-Confidence: 0.8523 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37539 + +Author: ajpoland@iupui.edu +Date: 2007-10-30 10:27:11 -0400 (Tue, 30 Oct 2007) +New Revision: 37539 + +Modified: +profile/branches/sakai_2-5-x/common-composite-component/src/java/org/sakaiproject/component/common/edu/person/SakaiPersonManagerImpl.java +Log: + +svn merge -c 37535 https://source.sakaiproject.org/svn/profile/trunk +U common-composite-component/src/java/org/sakaiproject/component/common/edu/person/SakaiPersonManagerImpl.java +svn log -r 37535 https://source.sakaiproject.org/svn/profile/trunk +------------------------------------------------------------------------ +r37535 | wagnermr@iupui.edu | 2007-10-30 08:12:02 -0400 (Tue, 30 Oct 2007) | 4 lines + +SAK-12068 +http://bugs.sakaiproject.org/jira/browse/SAK-12068 +SakaiPerson should not attempt to update user account when System profiles are updated +patch provided by david horwitz +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 30 10:12:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 10:12:03 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 10:12:03 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by panther.mail.umich.edu () with ESMTP id l9UEC2pa024307; + Tue, 30 Oct 2007 10:12:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47273BAD.52AED.30428 ; + 30 Oct 2007 10:12:00 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D67A76EDC5; + Mon, 29 Oct 2007 20:13:53 +0000 (GMT) +Message-ID: <200710301408.l9UE8jOr022029@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 56 + for ; + Mon, 29 Oct 2007 20:13:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C0DFE1C815 + for ; Tue, 30 Oct 2007 14:11:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UE8j40022031 + for ; Tue, 30 Oct 2007 10:08:45 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UE8jOr022029 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:08:45 -0400 +Date: Tue, 30 Oct 2007 10:08:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37538 - ctools/branches/ctools_2-4/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 10:12:03 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37538 + +Author: dlhaines@umich.edu +Date: 2007-10-30 10:08:43 -0400 (Tue, 30 Oct 2007) +New Revision: 37538 + +Modified: +ctools/branches/ctools_2-4/ctools-reference/config/coursemanagement.properties +Log: +CTools: CT-376 update affiliate + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Oct 30 09:57:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 09:57:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 09:57:04 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id l9UDv2aZ026392; + Tue, 30 Oct 2007 09:57:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47273827.AB34E.6887 ; + 30 Oct 2007 09:56:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6EF9D6EC33; + Mon, 29 Oct 2007 19:58:55 +0000 (GMT) +Message-ID: <200710301353.l9UDrlXX021969@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1009 + for ; + Mon, 29 Oct 2007 19:58:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C8A8C1CC04 + for ; Tue, 30 Oct 2007 13:56:37 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UDrlsr021971 + for ; Tue, 30 Oct 2007 09:53:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UDrlXX021969 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 09:53:47 -0400 +Date: Tue, 30 Oct 2007 09:53:47 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37537 - oncourse/trunk/src +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 09:57:04 2007 +X-DSPAM-Confidence: 0.8477 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37537 + +Author: rjlowe@iupui.edu +Date: 2007-10-30 09:53:46 -0400 (Tue, 30 Oct 2007) +New Revision: 37537 + +Removed: +oncourse/trunk/src/assignment/ +Log: +removing assignments from IU overlay (redundant since oncourse_2-4-x branch of assignments) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Tue Oct 30 09:29:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 09:29:25 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 09:29:25 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by panther.mail.umich.edu () with ESMTP id l9UDTN12027376; + Tue, 30 Oct 2007 09:29:23 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 472731AC.6FA3C.27529 ; + 30 Oct 2007 09:29:19 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 465C06EC33; + Mon, 29 Oct 2007 19:30:55 +0000 (GMT) +Message-ID: <200710301325.l9UDPxhP021900@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 262 + for ; + Mon, 29 Oct 2007 19:30:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CD9251BC48 + for ; Tue, 30 Oct 2007 13:28:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UDPxwT021902 + for ; Tue, 30 Oct 2007 09:25:59 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UDPxhP021900 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 09:25:59 -0400 +Date: Tue, 30 Oct 2007 09:25:59 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37536 - oncourse/trunk/src/assignment/assignment-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 09:29:25 2007 +X-DSPAM-Confidence: 0.8421 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37536 + +Author: rjlowe@iupui.edu +Date: 2007-10-30 09:25:58 -0400 (Tue, 30 Oct 2007) +New Revision: 37536 + +Modified: +oncourse/trunk/src/assignment/assignment-tool/tool/src/bundle/assignment.properties +Log: +SAK-11967 - Adding bundle change to IU overlay + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Tue Oct 30 08:15:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 08:15:12 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 08:15:12 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id l9UCFC8o009268; + Tue, 30 Oct 2007 08:15:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4727204A.B4FE2.15849 ; + 30 Oct 2007 08:15:09 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E4F3C4F5F9; + Mon, 29 Oct 2007 18:17:06 +0000 (GMT) +Message-ID: <200710301212.l9UCC30h021770@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 213 + for ; + Mon, 29 Oct 2007 18:16:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 558961CBFE + for ; Tue, 30 Oct 2007 12:14:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UCC38g021772 + for ; Tue, 30 Oct 2007 08:12:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UCC30h021770 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 08:12:03 -0400 +Date: Tue, 30 Oct 2007 08:12:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37535 - profile/trunk/common-composite-component/src/java/org/sakaiproject/component/common/edu/person +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 08:15:12 2007 +X-DSPAM-Confidence: 0.8489 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37535 + +Author: wagnermr@iupui.edu +Date: 2007-10-30 08:12:02 -0400 (Tue, 30 Oct 2007) +New Revision: 37535 + +Modified: +profile/trunk/common-composite-component/src/java/org/sakaiproject/component/common/edu/person/SakaiPersonManagerImpl.java +Log: +SAK-12068 +http://bugs.sakaiproject.org/jira/browse/SAK-12068 +SakaiPerson should not attempt to update user account when System profiles are updated +patch provided by david horwitz + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Tue Oct 30 07:48:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 07:48:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 07:48:17 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id l9UBmGOW004833; + Tue, 30 Oct 2007 07:48:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472719FA.A08A6.23385 ; + 30 Oct 2007 07:48:13 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9A74F6ECA8; + Mon, 29 Oct 2007 17:56:13 +0000 (GMT) +Message-ID: <200710301144.l9UBitVU021705@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 237 + for ; + Mon, 29 Oct 2007 17:55:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5612B1C852 + for ; Tue, 30 Oct 2007 11:47:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UBiuj9021707 + for ; Tue, 30 Oct 2007 07:44:56 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UBitVU021705 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 07:44:55 -0400 +Date: Tue, 30 Oct 2007 07:44:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37534 - in polls/trunk: impl/dao/src/java/org/sakaiproject/poll/dao/impl impl/pack/src/webapp/WEB-INF tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 07:48:17 2007 +X-DSPAM-Confidence: 0.9755 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37534 + +Author: david.horwitz@uct.ac.za +Date: 2007-10-30 07:43:23 -0400 (Tue, 30 Oct 2007) +New Revision: 37534 + +Modified: +polls/trunk/impl/dao/src/java/org/sakaiproject/poll/dao/impl/PollListManagerDaoImpl.java +polls/trunk/impl/dao/src/java/org/sakaiproject/poll/dao/impl/PollVoteManagerDaoImpl.java +polls/trunk/impl/pack/src/webapp/WEB-INF/spring-hibernate.xml +polls/trunk/tool/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12077 remove static covers from implementations + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jleasia@umich.edu Tue Oct 30 07:18:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 07:18:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 07:18:55 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id l9UBIssb000938; + Tue, 30 Oct 2007 07:18:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47271314.65F34.17418 ; + 30 Oct 2007 07:18:52 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 089F66EB1E; + Mon, 29 Oct 2007 17:26:47 +0000 (GMT) +Message-ID: <200710301115.l9UBFbta021685@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 450 + for ; + Mon, 29 Oct 2007 17:26:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D09E315D86 + for ; Tue, 30 Oct 2007 11:18:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UBFb93021687 + for ; Tue, 30 Oct 2007 07:15:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UBFbta021685 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 07:15:37 -0400 +Date: Tue, 30 Oct 2007 07:15:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jleasia@umich.edu using -f +To: source@collab.sakaiproject.org +From: jleasia@umich.edu +Subject: [sakai] svn commit: r37533 - ctools/trunk/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 07:18:55 2007 +X-DSPAM-Confidence: 0.9840 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37533 + +Author: jleasia@umich.edu +Date: 2007-10-30 07:15:35 -0400 (Tue, 30 Oct 2007) +New Revision: 37533 + +Modified: +ctools/trunk/ctools-reference/config/coursemanagement.properties +Log: +add bschool affiliate CT-376 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Tue Oct 30 05:40:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 30 Oct 2007 05:40:21 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 30 Oct 2007 05:40:21 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by chaos.mail.umich.edu () with ESMTP id l9U9eKCa032155; + Tue, 30 Oct 2007 05:40:20 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4726FBFF.18606.19232 ; + 30 Oct 2007 05:40:17 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B072465ABB; + Mon, 29 Oct 2007 15:48:14 +0000 (GMT) +Message-ID: <200710300937.l9U9b2d0021604@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 699 + for ; + Mon, 29 Oct 2007 15:47:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 948EF1BCB5 + for ; Tue, 30 Oct 2007 09:39:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9U9b2vv021606 + for ; Tue, 30 Oct 2007 05:37:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9U9b2d0021604 + for source@collab.sakaiproject.org; Tue, 30 Oct 2007 05:37:02 -0400 +Date: Tue, 30 Oct 2007 05:37:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37532 - in reset-pass/trunk: . reset-pass/src/java/org/sakaiproject/tool/resetpass reset-pass/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 30 05:40:21 2007 +X-DSPAM-Confidence: 0.9754 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37532 + +Author: david.horwitz@uct.ac.za +Date: 2007-10-30 05:35:42 -0400 (Tue, 30 Oct 2007) +New Revision: 37532 + +Modified: +reset-pass/trunk/.classpath +reset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java +reset-pass/trunk/reset-pass/src/webapp/WEB-INF/requestContext.xml +Log: +SAK-12076 used spring injection instead of static cover + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:29:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:29:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:29:00 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id l9TMSxpw016699; + Mon, 29 Oct 2007 18:28:59 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47265E7C.34668.24505 ; + 29 Oct 2007 18:28:16 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7908150743; + Mon, 29 Oct 2007 04:54:00 +0000 (GMT) +Message-ID: <200710292225.l9TMP5AG020736@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 344 + for ; + Mon, 29 Oct 2007 04:53:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C769F1C56F + for ; Mon, 29 Oct 2007 22:27:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMP5uG020738 + for ; Mon, 29 Oct 2007 18:25:05 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMP5AG020736 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:25:05 -0400 +Date: Mon, 29 Oct 2007 18:25:05 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37531 - in memory/branches/sakai_2-5-x/memory-impl: impl/src/java/org/sakaiproject/memory/impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:29:00 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37531 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:25:04 -0400 (Mon, 29 Oct 2007) +New Revision: 37531 + +Added: +memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java +Modified: +memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +memory/branches/sakai_2-5-x/memory-impl/pack/src/webapp/WEB-INF/components.xml +Log: +svn merge -r 37362:37363 https://source.sakaiproject.org/svn/memory/trunk +U memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +A memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java +U memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +U memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +U memory-impl/pack/src/webapp/WEB-INF/components.xml +in-143-196:~/sakai_2-5-x/memory mmmay$ svn log -r 37362:37363 https://source.sakaiproject.org/svn/memory/trunk +------------------------------------------------------------------------ +r37363 | ian@caret.cam.ac.uk | 2007-10-24 15:40:34 -0400 (Wed, 24 Oct 2007) | 6 lines + +http://jira.sakaiproject.org/jira/browse/SAK-12030 + +Fixed, but needs some really carefull testing to make certain that items are being evicted correctly. +The multirefcache eviction code is almost the same as it was withthe HashMap memory service. + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:25:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:25:53 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:25:53 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id l9TMPqGF014164; + Mon, 29 Oct 2007 18:25:52 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47265DEA.BD024.2210 ; + 29 Oct 2007 18:25:50 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AF5AD50743; + Mon, 29 Oct 2007 04:51:36 +0000 (GMT) +Message-ID: <200710292222.l9TMMl7n020724@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 438 + for ; + Mon, 29 Oct 2007 04:51:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 726BA1BAB1 + for ; Mon, 29 Oct 2007 22:25:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMMlAm020726 + for ; Mon, 29 Oct 2007 18:22:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMMl7n020724 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:22:47 -0400 +Date: Mon, 29 Oct 2007 18:22:47 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37530 - in db/branches/sakai_2-5-x/db-impl: ext/src/java/org/sakaiproject/springframework/orm/hibernate pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:25:53 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37530 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:22:46 -0400 (Mon, 29 Oct 2007) +New Revision: 37530 + +Added: +db/branches/sakai_2-5-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/HibernateJMXAgent.java +Modified: +db/branches/sakai_2-5-x/db-impl/pack/src/webapp/WEB-INF/components.xml +Log: +svn merge -r 37365:37366 https://source.sakaiproject.org/svn/db/trunk +A db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/HibernateJMXAgent.java +U db-impl/pack/src/webapp/WEB-INF/components.xml +in-143-196:~/sakai_2-5-x/db mmmay$ svn log -r 37365:37366 https://source.sakaiproject.org/svn/db/trunk +------------------------------------------------------------------------ +r37366 | ian@caret.cam.ac.uk | 2007-10-24 15:54:58 -0400 (Wed, 24 Oct 2007) | 8 lines + +http://jira.sakaiproject.org/jira/browse/SAK-12040 + +Fixed, +Enables Hibernate JMXAgent, +To use start tomcat with -Dcom.sun.management.jmxremote and start jconsole +once hibernate is fully registered, you will see a hibernate MBean + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:24:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:24:26 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:24:26 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by casino.mail.umich.edu () with ESMTP id l9TMOPCr014096; + Mon, 29 Oct 2007 18:24:25 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47265D8E.91771.16120 ; + 29 Oct 2007 18:24:17 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3E76D6D95B; + Mon, 29 Oct 2007 04:49:58 +0000 (GMT) +Message-ID: <200710292221.l9TML6Ex020712@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 792 + for ; + Mon, 29 Oct 2007 04:49:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 08FF61BAB1 + for ; Mon, 29 Oct 2007 22:23:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TML6fD020714 + for ; Mon, 29 Oct 2007 18:21:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TML6Ex020712 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:21:06 -0400 +Date: Mon, 29 Oct 2007 18:21:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37529 - content/branches/sakai_2-5-x/contentmultiplex-impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:24:26 2007 +X-DSPAM-Confidence: 0.7007 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37529 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:21:05 -0400 (Mon, 29 Oct 2007) +New Revision: 37529 + +Modified: +content/branches/sakai_2-5-x/contentmultiplex-impl/.classpath +Log: +svn merge -r 37026:37027 https://source.sakaiproject.org/svn/content/trunk +U contentmultiplex-impl/.classpath +in-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37026:37027 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r37027 | ian@caret.cam.ac.uk | 2007-10-15 16:46:54 -0400 (Mon, 15 Oct 2007) | 4 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-11946 +Fixed + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:23:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:23:34 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:23:34 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id l9TMNW84011486; + Mon, 29 Oct 2007 18:23:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47265D4F.61CE3.11773 ; + 29 Oct 2007 18:23:20 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 310514FD81; + Mon, 29 Oct 2007 04:48:59 +0000 (GMT) +Message-ID: <200710292220.l9TMK5HM020700@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 454 + for ; + Mon, 29 Oct 2007 04:48:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 101921C7E8 + for ; Mon, 29 Oct 2007 22:22:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMK6Hr020702 + for ; Mon, 29 Oct 2007 18:20:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMK5HM020700 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:20:05 -0400 +Date: Mon, 29 Oct 2007 18:20:05 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37528 - in content/branches/sakai_2-5-x: . contentmultiplex-impl contentmultiplex-impl/impl contentmultiplex-impl/impl/src contentmultiplex-impl/impl/src/java contentmultiplex-impl/impl/src/java/org contentmultiplex-impl/impl/src/java/org/sakaiproject contentmultiplex-impl/impl/src/java/org/sakaiproject/content contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:23:34 2007 +X-DSPAM-Confidence: 0.7012 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37528 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:20:03 -0400 (Mon, 29 Oct 2007) +New Revision: 37528 + +Added: +content/branches/sakai_2-5-x/contentmultiplex-impl/ +content/branches/sakai_2-5-x/contentmultiplex-impl/.classpath +content/branches/sakai_2-5-x/contentmultiplex-impl/.project +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/pom.xml +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +Removed: +content/branches/sakai_2-5-x/contentmultiplex-impl/.classpath +content/branches/sakai_2-5-x/contentmultiplex-impl/.project +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/pom.xml +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ +content/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +Modified: +content/branches/sakai_2-5-x/pom.xml +Log: +Neeed to pick up SAK-11946 +in-143-196:~/sakai_2-5-x/content mmmay$ svn merge -r 36615:36616 https://source.sakaiproject.org/svn/content/trunk +U pom.xml +A contentmultiplex-impl +A contentmultiplex-impl/.classpath +A contentmultiplex-impl/impl +A contentmultiplex-impl/impl/src +A contentmultiplex-impl/impl/src/java +A contentmultiplex-impl/impl/src/java/org +A contentmultiplex-impl/impl/src/java/org/sakaiproject +A contentmultiplex-impl/impl/src/java/org/sakaiproject/content +A contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +A contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +A contentmultiplex-impl/impl/pom.xml +A contentmultiplex-impl/.project +in-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37026:37027 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r37027 | ian@caret.cam.ac.uk | 2007-10-15 16:46:54 -0400 (Mon, 15 Oct 2007) | 4 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-11946 +Fixed + + +------------------------------------------------------------------------ +in-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 36615:36616 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r36616 | ian@caret.cam.ac.uk | 2007-10-09 12:43:49 -0400 (Tue, 09 Oct 2007) | 4 lines + +SAK-10366 +Added a multiplexer to enable migration of data + + +------------------------------------------------------------------------ +in-143-196:~/sakai_2-5-x/content mmmay$ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:16:20 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:16:20 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:16:20 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by casino.mail.umich.edu () with ESMTP id l9TMGIiO010201; + Mon, 29 Oct 2007 18:16:18 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47265BAD.EA84.23744 ; + 29 Oct 2007 18:16:16 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B46A14FD81; + Mon, 29 Oct 2007 04:42:00 +0000 (GMT) +Message-ID: <200710292213.l9TMD5JL020666@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 507 + for ; + Mon, 29 Oct 2007 04:41:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 09D861C7E8 + for ; Mon, 29 Oct 2007 22:15:53 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMD6et020668 + for ; Mon, 29 Oct 2007 18:13:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMD5JL020666 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:13:05 -0400 +Date: Mon, 29 Oct 2007 18:13:05 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37527 - in content/branches/sakai_2-5-x: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:16:20 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37527 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:13:03 -0400 (Mon, 29 Oct 2007) +New Revision: 37527 + +Modified: +content/branches/sakai_2-5-x/content-bundles/types.properties +content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +Log: +svn merge -r 37337:37338 https://source.sakaiproject.org/svn/content/trunk +U content-bundles/types.properties +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +U content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +in-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37337:37338 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r37338 | ian@caret.cam.ac.uk | 2007-10-23 18:25:28 -0400 (Tue, 23 Oct 2007) | 7 lines + +Fixed the mount point issue, +there is a new bundle value which needs propagating to other language files. + +http://bugs.sakaiproject.org/jira/browse/SAK-12019 + + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:12:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:12:26 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:12:26 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id l9TMCO2E003847; + Mon, 29 Oct 2007 18:12:24 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47265AC1.EAA46.26060 ; + 29 Oct 2007 18:12:21 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BDC3B5644E; + Mon, 29 Oct 2007 04:38:05 +0000 (GMT) +Message-ID: <200710292209.l9TM9GMs020648@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 517 + for ; + Mon, 29 Oct 2007 04:37:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 914AF1C7E8 + for ; Mon, 29 Oct 2007 22:12:04 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM9GVG020650 + for ; Mon, 29 Oct 2007 18:09:16 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM9GMs020648 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:09:16 -0400 +Date: Mon, 29 Oct 2007 18:09:16 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37526 - in archive/branches/sakai_2-5-x/import-handlers/content-handlers: . src/java/org/sakaiproject/importer/impl/handlers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:12:26 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37526 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:09:15 -0400 (Mon, 29 Oct 2007) +New Revision: 37526 + +Modified: +archive/branches/sakai_2-5-x/import-handlers/content-handlers/.classpath +archive/branches/sakai_2-5-x/import-handlers/content-handlers/pom.xml +archive/branches/sakai_2-5-x/import-handlers/content-handlers/src/java/org/sakaiproject/importer/impl/handlers/ResourcesHandler.java +Log: +svn merge -r 37060:37061 https://source.sakaiproject.org/svn/archive/trunk +U import-handlers/content-handlers/.classpath +U import-handlers/content-handlers/src/java/org/sakaiproject/importer/impl/handlers/ResourcesHandler.java +U import-handlers/content-handlers/pom.xml +in-143-196:~/sakai_2-5-x/archive mmmay$ svn log -r 37060:37061 https://source.sakaiproject.org/svn/archive/trunk +------------------------------------------------------------------------ +r37061 | zach.thomas@txstate.edu | 2007-10-16 14:54:11 -0400 (Tue, 16 Oct 2007) | 1 line + +fixes SAK-11956 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:09:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:09:53 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:09:53 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id l9TM9qdJ010927; + Mon, 29 Oct 2007 18:09:52 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47265A2B.1B0DE.8652 ; + 29 Oct 2007 18:09:50 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A03106E1B2; + Mon, 29 Oct 2007 04:35:30 +0000 (GMT) +Message-ID: <200710292206.l9TM6d78020633@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 545 + for ; + Mon, 29 Oct 2007 04:35:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4CC791C7E8 + for ; Mon, 29 Oct 2007 22:09:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM6dkB020635 + for ; Mon, 29 Oct 2007 18:06:39 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM6d78020633 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:06:39 -0400 +Date: Mon, 29 Oct 2007 18:06:39 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37525 - search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:09:53 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37525 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:06:37 -0400 (Mon, 29 Oct 2007) +New Revision: 37525 + +Modified: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/SearchBuilderQueueManager.java +Log: +svn merge -r 36547:36548 https://source.sakaiproject.org/svn/search/trunk +U search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/SearchBuilderQueueManager.java +in-143-196:~/sakai_2-5-x/search mmmay$ svn log -r 36547:36548 https://source.sakaiproject.org/svn/search/trunk +------------------------------------------------------------------------ +r36548 | ian@caret.cam.ac.uk | 2007-10-06 19:02:13 -0400 (Sat, 06 Oct 2007) | 4 lines + +SAK-11820 http://jira.sakaiproject.org/jira/browse/SAK-11820 + +Wrapped sensitive area in try catch + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:07:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:07:34 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:07:34 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id l9TM7X3A006186; + Mon, 29 Oct 2007 18:07:33 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 4726599F.6BF0D.5963 ; + 29 Oct 2007 18:07:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9E9934FD81; + Mon, 29 Oct 2007 04:33:15 +0000 (GMT) +Message-ID: <200710292204.l9TM4P7Z020621@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 251 + for ; + Mon, 29 Oct 2007 04:33:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CCF511C7E8 + for ; Mon, 29 Oct 2007 22:07:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM4PGl020623 + for ; Mon, 29 Oct 2007 18:04:25 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM4P7Z020621 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:04:25 -0400 +Date: Mon, 29 Oct 2007 18:04:25 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37524 - in web/branches/sakai_2-5-x/web-tool/tool/src: bundle webapp/vm/web +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:07:34 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37524 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:04:23 -0400 (Mon, 29 Oct 2007) +New Revision: 37524 + +Modified: +web/branches/sakai_2-5-x/web-tool/tool/src/bundle/iframe.properties +web/branches/sakai_2-5-x/web-tool/tool/src/webapp/vm/web/chef_iframe-customize.vm +Log: +svn merge -r 37224:37225 https://source.sakaiproject.org/svn/web/trunk +U web-tool/tool/src/bundle/iframe.properties +U web-tool/tool/src/webapp/vm/web/chef_iframe-customize.vm +in-143-196:~/sakai_2-5-x/web mmmay$ svn log -r 37224:37225 https://source.sakaiproject.org/svn/web/trunk +------------------------------------------------------------------------ +r37225 | gsilver@umich.edu | 2007-10-23 09:12:18 -0400 (Tue, 23 Oct 2007) | 1 line + +http://jira.sakaiproject.org/jira/browse/SAK-12007 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:04:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:04:42 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:04:42 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by brazil.mail.umich.edu () with ESMTP id l9TM4fOu032622; + Mon, 29 Oct 2007 18:04:41 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 472658F3.7D6B0.14497 ; + 29 Oct 2007 18:04:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B64575D405; + Mon, 29 Oct 2007 04:30:23 +0000 (GMT) +Message-ID: <200710292201.l9TM1YtZ020609@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 774 + for ; + Mon, 29 Oct 2007 04:30:06 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F39791C7E8 + for ; Mon, 29 Oct 2007 22:04:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM1Z2D020611 + for ; Mon, 29 Oct 2007 18:01:35 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM1YtZ020609 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:01:34 -0400 +Date: Mon, 29 Oct 2007 18:01:34 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37523 - search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/component/service/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:04:42 2007 +X-DSPAM-Confidence: 0.7627 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37523 + +Author: mmmay@indiana.edu +Date: 2007-10-29 18:01:33 -0400 (Mon, 29 Oct 2007) +New Revision: 37523 + +Modified: +search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/component/service/impl/BaseSearchServiceImpl.java +Log: +svn merge -r 36548:36549 https://source.sakaiproject.org/svn/search/trunk +U search-impl/impl/src/java/org/sakaiproject/search/component/service/impl/BaseSearchServiceImpl.java +in-143-196:~/sakai_2-5-x/search mmmay$ svn log -r 36548:36549 https://source.sakaiproject.org/svn/search/trunk +------------------------------------------------------------------------ +r36548 | ian@caret.cam.ac.uk | 2007-10-06 19:02:13 -0400 (Sat, 06 Oct 2007) | 4 lines + +SAK-11820 http://jira.sakaiproject.org/jira/browse/SAK-11820 + +Wrapped sensitive area in try catch + +------------------------------------------------------------------------ +r36549 | ian@caret.cam.ac.uk | 2007-10-06 19:12:02 -0400 (Sat, 06 Oct 2007) | 8 lines + +SAK-11222 http://jira.sakaiproject.org/jira/browse/SAK-11222 + +REST XML search does encode its exceptions in the response message. These are decoded on the client and +reported in the log files. + +I have added a report on the search server + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 18:03:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 18:03:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 18:03:02 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by brazil.mail.umich.edu () with ESMTP id l9TM2u3U031499; + Mon, 29 Oct 2007 18:02:56 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4726588A.EE47A.18015 ; + 29 Oct 2007 18:02:53 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B53C7552A7; + Mon, 29 Oct 2007 04:28:34 +0000 (GMT) +Message-ID: <200710292159.l9TLxf25020589@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 934 + for ; + Mon, 29 Oct 2007 04:28:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ACE1F1C3FE + for ; Mon, 29 Oct 2007 22:02:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLxfDi020591 + for ; Mon, 29 Oct 2007 17:59:41 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLxf25020589 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:59:41 -0400 +Date: Mon, 29 Oct 2007 17:59:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37522 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 18:03:02 2007 +X-DSPAM-Confidence: 0.7626 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37522 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:59:40 -0400 (Mon, 29 Oct 2007) +New Revision: 37522 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm +Log: +svn merge -r 37351:37352 https://source.sakaiproject.org/svn/site-manage/trunk +U site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm +in-143-196:~/sakai_2-5-x/site-manage mmmay$ svn log -r 37351:37352 https://source.sakaiproject.org/svn/site-manage/trunk +------------------------------------------------------------------------ +r37352 | zqian@umich.edu | 2007-10-24 09:55:38 -0400 (Wed, 24 Oct 2007) | 1 line + +fix to SAK-9471:Groups can be added in site info with no members, it is possible to create a group which does not display any group name +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:58:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:58:30 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:58:30 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by godsend.mail.umich.edu () with ESMTP id l9TLwTNi030367; + Mon, 29 Oct 2007 17:58:29 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4726577E.3C909.4289 ; + 29 Oct 2007 17:58:25 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CA58C61B52; + Mon, 29 Oct 2007 04:24:09 +0000 (GMT) +Message-ID: <200710292155.l9TLtHmX020577@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990 + for ; + Mon, 29 Oct 2007 04:23:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4F6B81B9AB + for ; Mon, 29 Oct 2007 21:58:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLtHAf020579 + for ; Mon, 29 Oct 2007 17:55:17 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLtHmX020577 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:55:17 -0400 +Date: Mon, 29 Oct 2007 17:55:17 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37521 - in site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:58:30 2007 +X-DSPAM-Confidence: 0.7010 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37521 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:55:15 -0400 (Mon, 29 Oct 2007) +New Revision: 37521 + +Modified: +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-list.vm +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm +site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm +Log: +merge -r 36640:36641 https://source.sakaiproject.org/svn/site-manage/trunk +U site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +U site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-list.vm +U site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm +U site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm +in-143-196:~/sakai_2-5-x/site-manage mmmay$ svn log -r 36640:36641 https://source.sakaiproject.org/svn/site-manage/trunk +------------------------------------------------------------------------ +r36641 | zqian@umich.edu | 2007-10-10 11:46:24 -0400 (Wed, 10 Oct 2007) | 1 line + +fix to SAK-11879:remove the hardcoded 'course' String for course site type, use the configuration setting instead +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:56:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:56:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:56:37 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by panther.mail.umich.edu () with ESMTP id l9TLubrl003710; + Mon, 29 Oct 2007 17:56:37 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4726570A.CBD66.29031 ; + 29 Oct 2007 17:56:32 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0866D4FD81; + Mon, 29 Oct 2007 04:22:13 +0000 (GMT) +Message-ID: <200710292153.l9TLrMBh020565@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 523 + for ; + Mon, 29 Oct 2007 04:22:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C82F71B9AB + for ; Mon, 29 Oct 2007 21:56:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLrMZZ020567 + for ; Mon, 29 Oct 2007 17:53:22 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLrMBh020565 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:53:22 -0400 +Date: Mon, 29 Oct 2007 17:53:22 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37520 - portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:56:37 2007 +X-DSPAM-Confidence: 0.7010 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37520 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:53:21 -0400 (Mon, 29 Oct 2007) +New Revision: 37520 + +Modified: +portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +svn merge -r 36619:36620 https://source.sakaiproject.org/svn/portal/trunk +U portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +in-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 36619:36620 https://source.sakaiproject.org/svn/portal/trunk +------------------------------------------------------------------------ +r36620 | gsilver@umich.edu | 2007-10-09 15:49:06 -0400 (Tue, 09 Oct 2007) | 2 lines + +http://bugs.sakaiproject.org/jira/browse/SAK-11391 +- removing some cruft scaffolding dating from 1.5 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:51:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:51:21 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:51:21 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id l9TLpKk8008871; + Mon, 29 Oct 2007 17:51:20 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472655CD.D392B.3593 ; + 29 Oct 2007 17:51:18 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B210C561C2; + Mon, 29 Oct 2007 04:16:57 +0000 (GMT) +Message-ID: <200710292148.l9TLm6Ir020550@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 934 + for ; + Mon, 29 Oct 2007 04:16:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AF10F1B849 + for ; Mon, 29 Oct 2007 21:50:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLm6TP020552 + for ; Mon, 29 Oct 2007 17:48:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLm6Ir020550 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:48:06 -0400 +Date: Mon, 29 Oct 2007 17:48:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37519 - portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:51:21 2007 +X-DSPAM-Confidence: 0.6197 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37519 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:48:05 -0400 (Mon, 29 Oct 2007) +New Revision: 37519 + +Modified: +portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +svn merge -r 36568:36569 https://source.sakaiproject.org/svn/portal/trunk +U portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +in-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 36568:36569 https://source.sakaiproject.org/svn/portal/trunk +------------------------------------------------------------------------ +r36569 | ian@caret.cam.ac.uk | 2007-10-08 11:30:42 -0400 (Mon, 08 Oct 2007) | 3 lines + +Changed the spacing +SAK-11731 http://jira.sakaiproject.org/jira/browse/SAK-11731 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:47:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:47:48 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:47:48 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id l9TLll1L025213; + Mon, 29 Oct 2007 17:47:47 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 472654FE.B14C0.24408 ; + 29 Oct 2007 17:47:45 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 17BE66E38D; + Mon, 29 Oct 2007 04:13:22 +0000 (GMT) +Message-ID: <200710292144.l9TLiXfJ020527@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 964 + for ; + Mon, 29 Oct 2007 04:13:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 390D01B849 + for ; Mon, 29 Oct 2007 21:47:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLiXlB020529 + for ; Mon, 29 Oct 2007 17:44:33 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLiXfJ020527 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:44:33 -0400 +Date: Mon, 29 Oct 2007 17:44:33 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37518 - in portal/branches/sakai_2-5-x: portal-impl/impl/src/java/org/sakaiproject/portal/charon portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:47:48 2007 +X-DSPAM-Confidence: 0.5442 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37518 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:44:31 -0400 (Mon, 29 Oct 2007) +New Revision: 37518 + +Modified: +portal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java +portal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java +portal/branches/sakai_2-5-x/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockCharonPortal.java +portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +svn log -r 36550:36554 https://source.sakaiproject.org/svn/portal/trunk +------------------------------------------------------------------------ +r36550 | ian@caret.cam.ac.uk | 2007-10-06 19:28:33 -0400 (Sat, 06 Oct 2007) | 6 lines + +SAK-11828 http://jira.sakaiproject.org/jira/browse/SAK-11828 + + +id is not used anywhere, as far as I can tell. + + +------------------------------------------------------------------------ +r36551 | ian@caret.cam.ac.uk | 2007-10-06 19:46:18 -0400 (Sat, 06 Oct 2007) | 5 lines + +SAK-11731 http://jira.sakaiproject.org/jira/browse/SAK-11731 + +Fixed with a nbsp. not certain that the patch supplied would always work so going with this one. + + +------------------------------------------------------------------------ +r36552 | ian@caret.cam.ac.uk | 2007-10-06 20:01:12 -0400 (Sat, 06 Oct 2007) | 9 lines + +SAK-11466 http://jira.sakaiproject.org/jira/browse/SAK-11466 + +added login.use.xlogin.to.relogin + +If true, the default and Xlogin is used, then xlogin will be used for relogin. +If false, the non container login will be used + + + +------------------------------------------------------------------------ +r36553 | ian@caret.cam.ac.uk | 2007-10-06 20:01:53 -0400 (Sat, 06 Oct 2007) | 5 lines + +http://jira.sakaiproject.org/jira/browse/SAK-11466 + +Fixed + + +------------------------------------------------------------------------ +r36554 | ian@caret.cam.ac.uk | 2007-10-06 20:21:27 -0400 (Sat, 06 Oct 2007) | 5 lines + +http://jira.sakaiproject.org/jira/browse/SAK-10850 + +Fixed, in the portal for all popups + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:46:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:46:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:46:02 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by casino.mail.umich.edu () with ESMTP id l9TLk1na026956; + Mon, 29 Oct 2007 17:46:01 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47265494.3C855.18866 ; + 29 Oct 2007 17:45:59 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C71816E682; + Mon, 29 Oct 2007 04:11:40 +0000 (GMT) +Message-ID: <200710292142.l9TLglwe020509@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 368 + for ; + Mon, 29 Oct 2007 04:11:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A4F151B849 + for ; Mon, 29 Oct 2007 21:45:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLgl07020511 + for ; Mon, 29 Oct 2007 17:42:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLglwe020509 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:42:47 -0400 +Date: Mon, 29 Oct 2007 17:42:47 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37517 - portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:46:02 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37517 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:42:46 -0400 (Mon, 29 Oct 2007) +New Revision: 37517 + +Modified: +portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +svn merge -r 36549:36550 https://source.sakaiproject.org/svn/portal/trunk +U portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +in-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 36549:36550 https://source.sakaiproject.org/svn/portal/trunk +------------------------------------------------------------------------ +r36550 | ian@caret.cam.ac.uk | 2007-10-06 19:28:33 -0400 (Sat, 06 Oct 2007) | 6 lines + +SAK-11828 http://jira.sakaiproject.org/jira/browse/SAK-11828 + + +id is not used anywhere, as far as I can tell. + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:38:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:38:19 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:38:19 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by godsend.mail.umich.edu () with ESMTP id l9TLcIeg021780; + Mon, 29 Oct 2007 17:38:18 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 472652BE.1FA01.2758 ; + 29 Oct 2007 17:38:15 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 56F0A4EBDF; + Mon, 29 Oct 2007 04:03:53 +0000 (GMT) +Message-ID: <200710292134.l9TLYws6020487@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 142 + for ; + Mon, 29 Oct 2007 04:03:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D02CC10ECB + for ; Mon, 29 Oct 2007 21:37:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLYwro020489 + for ; Mon, 29 Oct 2007 17:34:58 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLYws6020487 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:34:58 -0400 +Date: Mon, 29 Oct 2007 17:34:58 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37516 - citations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:38:19 2007 +X-DSPAM-Confidence: 0.6568 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37516 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:34:57 -0400 (Mon, 29 Oct 2007) +New Revision: 37516 + +Modified: +citations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java +Log: +svn merge -r 37470:37471 https://source.sakaiproject.org/svn/citations/trunk +U citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java +in-143-196:~/sakai_2-5-x/citations mmmay$ svn log -r 37470:37471 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r37471 | dsobiera@indiana.edu | 2007-10-29 14:00:50 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-9375 - added check so if page size is changed near the start of collection, collection is reset to start of collection. This fixed page showing 11-20 items. Then set page size to 20. Before this fix, page would then be 11-30. now it is 1-20. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:35:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:35:44 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:35:44 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id l9TLZhZJ025213; + Mon, 29 Oct 2007 17:35:43 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4726522A.84BF.15288 ; + 29 Oct 2007 17:35:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8087F4EAAB; + Mon, 29 Oct 2007 04:01:26 +0000 (GMT) +Message-ID: <200710292132.l9TLWY78020475@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 986 + for ; + Mon, 29 Oct 2007 04:01:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA7331C482 + for ; Mon, 29 Oct 2007 21:35:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLWYQ7020477 + for ; Mon, 29 Oct 2007 17:32:34 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLWY78020475 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:32:34 -0400 +Date: Mon, 29 Oct 2007 17:32:34 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37515 - blog/branches/sakai_2-5-x/tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:35:44 2007 +X-DSPAM-Confidence: 0.7623 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37515 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:32:34 -0400 (Mon, 29 Oct 2007) +New Revision: 37515 + +Modified: +blog/branches/sakai_2-5-x/tool/src/webapp/WEB-INF/web.xml +Log: +svn merge -r 37443:37444 https://source.sakaiproject.org/svn/blog/trunk +U tool/src/webapp/WEB-INF/web.xml +in-143-196:~/sakai_2-5-x/blog mmmay$ svn log -r 37443:37444 https://source.sakaiproject.org/svn/blog/trunk +------------------------------------------------------------------------ +r37444 | a.fish@lancaster.ac.uk | 2007-10-29 08:00:00 -0400 (Mon, 29 Oct 2007) | 1 line + +SAK-11750. Changed JsfTool to HelperAwareJsfTool. I do not know whether this has fixed the problem as I cannot even see a book button on my browser (Firefox on OSX) +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:33:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:33:58 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:33:58 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id l9TLXvod001074; + Mon, 29 Oct 2007 17:33:57 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 472651BF.A9225.17847 ; + 29 Oct 2007 17:33:54 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B412E4EAAB; + Mon, 29 Oct 2007 03:59:38 +0000 (GMT) +Message-ID: <200710292130.l9TLUl4c020463@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 52 + for ; + Mon, 29 Oct 2007 03:59:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 561521C482 + for ; Mon, 29 Oct 2007 21:33:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLUlEZ020465 + for ; Mon, 29 Oct 2007 17:30:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLUl4c020463 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:30:47 -0400 +Date: Mon, 29 Oct 2007 17:30:47 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37514 - portal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:33:58 2007 +X-DSPAM-Confidence: 0.7008 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37514 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:30:46 -0400 (Mon, 29 Oct 2007) +New Revision: 37514 + +Modified: +portal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts/portalscripts.js +Log: +svn merge -r 37433:37434 https://source.sakaiproject.org/svn/portal/trunk +U portal-charon/charon/src/webapp/scripts/portalscripts.js +in-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 37433:37434 https://source.sakaiproject.org/svn/portal/trunk +------------------------------------------------------------------------ +r37434 | colin.clark@utoronto.ca | 2007-10-26 19:22:56 -0400 (Fri, 26 Oct 2007) | 6 lines + +SAK-11824 + +Portal My Active Sites: Fixes a bug in IE 6 where some form controls show through the My Active Sites drop down menu when it is active. This fix uses an MIT-licensed fucntion written by Brandon Aaron, which hacks around the underlying bug in jQuery using an invisible iFrame. + +Patch from Eli Cochran. + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:31:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:31:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:31:52 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by awakenings.mail.umich.edu () with ESMTP id l9TLVpIL024337; + Mon, 29 Oct 2007 17:31:52 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4726513C.E4F5A.7111 ; + 29 Oct 2007 17:31:44 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 10D2B4EBDF; + Mon, 29 Oct 2007 03:57:29 +0000 (GMT) +Message-ID: <200710292128.l9TLSbt5020451@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 717 + for ; + Mon, 29 Oct 2007 03:57:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BAB3A1C7F2 + for ; Mon, 29 Oct 2007 21:31:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLSbuS020453 + for ; Mon, 29 Oct 2007 17:28:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLSbt5020451 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:28:37 -0400 +Date: Mon, 29 Oct 2007 17:28:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37513 - in roster/branches/sakai_2-5-x/roster-app/src: java/org/sakaiproject/tool/roster webapp/roster/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:31:52 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37513 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:28:36 -0400 (Mon, 29 Oct 2007) +New Revision: 37513 + +Modified: +roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/FilteredParticipantListingBean.java +roster/branches/sakai_2-5-x/roster-app/src/webapp/roster/inc/filter.jspf +Log: +svn merge -r 37427:37428 https://source.sakaiproject.org/svn/roster/trunk +U roster-app/src/java/org/sakaiproject/tool/roster/FilteredParticipantListingBean.java +U roster-app/src/webapp/roster/inc/filter.jspf +in-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37427:37428 https://source.sakaiproject.org/svn/roster/trunk +------------------------------------------------------------------------ +r37428 | louis@media.berkeley.edu | 2007-10-26 15:16:33 -0400 (Fri, 26 Oct 2007) | 1 line + +SAK-12059 Roster Group/Section Filter does not show +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:29:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:29:57 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:29:57 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by panther.mail.umich.edu () with ESMTP id l9TLTu4Q021196; + Mon, 29 Oct 2007 17:29:56 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 472650CF.64002.26798 ; + 29 Oct 2007 17:29:54 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5A7EB6E6D0; + Mon, 29 Oct 2007 03:55:39 +0000 (GMT) +Message-ID: <200710292126.l9TLQncT020439@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88 + for ; + Mon, 29 Oct 2007 03:55:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 09A771C482 + for ; Mon, 29 Oct 2007 21:29:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLQn7G020441 + for ; Mon, 29 Oct 2007 17:26:49 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLQncT020439 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:26:49 -0400 +Date: Mon, 29 Oct 2007 17:26:49 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37512 - roster/branches/sakai_2-5-x/roster-app/src/webapp/roster +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:29:57 2007 +X-DSPAM-Confidence: 0.6240 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37512 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:26:48 -0400 (Mon, 29 Oct 2007) +New Revision: 37512 + +Modified: +roster/branches/sakai_2-5-x/roster-app/src/webapp/roster/pictures.jsp +Log: +svn merge -r 37394:37395 https://source.sakaiproject.org/svn/roster/trunk +U roster-app/src/webapp/roster/pictures.jsp +in-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37394:37395 https://source.sakaiproject.org/svn/roster/trunk +------------------------------------------------------------------------ +r37395 | louis@media.berkeley.edu | 2007-10-25 17:16:21 -0400 (Thu, 25 Oct 2007) | 1 line + +SAK-11144 In IE7, switch picture view takes two clicks +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:27:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:27:51 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:27:51 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by chaos.mail.umich.edu () with ESMTP id l9TLRoPK021513; + Mon, 29 Oct 2007 17:27:50 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4726504A.EB36C.6774 ; + 29 Oct 2007 17:27:47 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 338C26E6C8; + Mon, 29 Oct 2007 03:53:28 +0000 (GMT) +Message-ID: <200710292124.l9TLOdUZ020427@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312 + for ; + Mon, 29 Oct 2007 03:53:17 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0A4DC1C482 + for ; Mon, 29 Oct 2007 21:27:26 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLOd9c020429 + for ; Mon, 29 Oct 2007 17:24:39 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLOdUZ020427 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:24:39 -0400 +Date: Mon, 29 Oct 2007 17:24:39 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37511 - roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:27:51 2007 +X-DSPAM-Confidence: 0.7007 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37511 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:24:38 -0400 (Mon, 29 Oct 2007) +New Revision: 37511 + +Modified: +roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java +Log: +svn merge -r 37398:37399 https://source.sakaiproject.org/svn/roster/trunk +U roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java +in-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37398:37399 https://source.sakaiproject.org/svn/roster/trunk +------------------------------------------------------------------------ +r37399 | louis@media.berkeley.edu | 2007-10-25 21:25:22 -0400 (Thu, 25 Oct 2007) | 1 line + +SAK-11444 make the default Roster order configurable +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:26:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:26:11 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:26:11 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by chaos.mail.umich.edu () with ESMTP id l9TLQAlU020918; + Mon, 29 Oct 2007 17:26:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47264FEC.8BABA.4916 ; + 29 Oct 2007 17:26:07 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1A0A95DF51; + Mon, 29 Oct 2007 03:51:52 +0000 (GMT) +Message-ID: <200710292123.l9TLN2PO020404@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 486 + for ; + Mon, 29 Oct 2007 03:51:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E68711C482 + for ; Mon, 29 Oct 2007 21:25:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLN2s4020406 + for ; Mon, 29 Oct 2007 17:23:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLN2PO020404 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:23:02 -0400 +Date: Mon, 29 Oct 2007 17:23:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37510 - roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:26:11 2007 +X-DSPAM-Confidence: 0.7009 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37510 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:23:01 -0400 (Mon, 29 Oct 2007) +New Revision: 37510 + +Modified: +roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/BaseRosterPageBean.java +roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java +Log: +vn merge -r 37382:37383 https://source.sakaiproject.org/svn/roster/trunk +U roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java +U roster-app/src/java/org/sakaiproject/tool/roster/BaseRosterPageBean.java +in-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37382:37383 https://source.sakaiproject.org/svn/roster/trunk +------------------------------------------------------------------------ +r37383 | louis@media.berkeley.edu | 2007-10-25 11:28:47 -0400 (Thu, 25 Oct 2007) | 1 line + +SAK-11444 make the default Roster order configurable +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:23:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:23:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:23:02 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by score.mail.umich.edu () with ESMTP id l9TLN1in028468; + Mon, 29 Oct 2007 17:23:01 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47264F2F.89224.11628 ; + 29 Oct 2007 17:22:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C2D026D81A; + Mon, 29 Oct 2007 03:48:44 +0000 (GMT) +Message-ID: <200710292119.l9TLJlq6020381@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 463 + for ; + Mon, 29 Oct 2007 03:48:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 06E351BAB1 + for ; Mon, 29 Oct 2007 21:22:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLJlo9020383 + for ; Mon, 29 Oct 2007 17:19:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLJlq6020381 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:19:47 -0400 +Date: Mon, 29 Oct 2007 17:19:47 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37509 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:23:02 2007 +X-DSPAM-Confidence: 0.7008 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37509 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:19:46 -0400 (Mon, 29 Oct 2007) +New Revision: 37509 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js/citationscript.js +Log: +svn merge -r 37428:37429 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/webapp/js/citationscript.js +in-143-196:~/sakai_2-5-x/citations mmmay$ svn log -r 37428:37429 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r37429 | dsobiera@indiana.edu | 2007-10-26 15:37:55 -0400 (Fri, 26 Oct 2007) | 1 line + +SAK-12046 - Added window.name != "" check to avoid IE complaining when window.name = "" and that being sent to getElementById(). Firefox is okay with "" as a parameter to this. IE...not so much. This change will prevent the error. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:17:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:17:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:17:04 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id l9TLH3V9013128; + Mon, 29 Oct 2007 17:17:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47264DC9.5A1B7.24291 ; + 29 Oct 2007 17:17:00 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 840B46E371; + Mon, 29 Oct 2007 03:42:46 +0000 (GMT) +Message-ID: <200710292113.l9TLDvq9020358@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 14 + for ; + Mon, 29 Oct 2007 03:42:32 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1840D1C48E + for ; Mon, 29 Oct 2007 21:16:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLDvkq020360 + for ; Mon, 29 Oct 2007 17:13:57 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLDvq9020358 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:13:57 -0400 +Date: Mon, 29 Oct 2007 17:13:57 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37508 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:17:04 2007 +X-DSPAM-Confidence: 0.7011 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37508 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:13:56 -0400 (Mon, 29 Oct 2007) +New Revision: 37508 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -r 37414:37415 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +in-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37414:37415 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37415 | bahollad@indiana.edu | 2007-10-26 11:37:46 -0400 (Fri, 26 Oct 2007) | 3 lines + +SAK-12027 +Possible problems with sakai 2.4->2.5 mysql conversion script + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:15:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:15:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:15:43 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by score.mail.umich.edu () with ESMTP id l9TLFg1f024722; + Mon, 29 Oct 2007 17:15:42 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47264D78.9DD74.10223 ; + 29 Oct 2007 17:15:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D8C5E505EA; + Mon, 29 Oct 2007 03:41:19 +0000 (GMT) +Message-ID: <200710292112.l9TLCSdF020346@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176 + for ; + Mon, 29 Oct 2007 03:41:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A47831C48E + for ; Mon, 29 Oct 2007 21:15:16 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLCS4e020348 + for ; Mon, 29 Oct 2007 17:12:28 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLCSdF020346 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:12:28 -0400 +Date: Mon, 29 Oct 2007 17:12:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37507 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:15:43 2007 +X-DSPAM-Confidence: 0.7619 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37507 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:12:27 -0400 (Mon, 29 Oct 2007) +New Revision: 37507 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -r 37354:37355 https://source.sakaiproject.org/svn/reference/trunk +G docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +in-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37354:37355 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37355 | ian@caret.cam.ac.uk | 2007-10-24 11:49:39 -0400 (Wed, 24 Oct 2007) | 3 lines + +http://jira.sakaiproject.org/jira/browse/SAK-11948 +Fixed + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Oct 29 17:12:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:12:03 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:12:03 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id l9TLC3PV012845; + Mon, 29 Oct 2007 17:12:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47264C9E.14B2.23352 ; + 29 Oct 2007 17:12:00 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B0356D7A3; + Mon, 29 Oct 2007 03:37:45 +0000 (GMT) +Message-ID: <200710292108.l9TL8urp020334@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 490 + for ; + Mon, 29 Oct 2007 03:37:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6947B1C65B + for ; Mon, 29 Oct 2007 21:11:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL8udm020336 + for ; Mon, 29 Oct 2007 17:08:56 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL8urp020334 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:08:56 -0400 +Date: Mon, 29 Oct 2007 17:08:56 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r37506 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:12:03 2007 +X-DSPAM-Confidence: 0.7563 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37506 + +Author: cwen@iupui.edu +Date: 2007-10-29 17:08:55 -0400 (Mon, 29 Oct 2007) +New Revision: 37506 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +Log: +http://128.196.219.68/jira/browse/SAK-10427 +SAK-10427 +=> +fix some NPE. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:09:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:09:22 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:09:22 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id l9TL9LLe008055; + Mon, 29 Oct 2007 17:09:21 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47264BFB.ED11A.13187 ; + 29 Oct 2007 17:09:19 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1181F6350C; + Mon, 29 Oct 2007 03:35:01 +0000 (GMT) +Message-ID: <200710292106.l9TL63EK020322@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242 + for ; + Mon, 29 Oct 2007 03:34:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F9EC1C48E + for ; Mon, 29 Oct 2007 21:08:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL63cN020324 + for ; Mon, 29 Oct 2007 17:06:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL63EK020322 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:06:03 -0400 +Date: Mon, 29 Oct 2007 17:06:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37505 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:09:22 2007 +X-DSPAM-Confidence: 0.7010 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37505 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:06:02 -0400 (Mon, 29 Oct 2007) +New Revision: 37505 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +svn merge -r 37406:37407 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +in-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37406:37407 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37407 | bahollad@indiana.edu | 2007-10-26 08:51:00 -0400 (Fri, 26 Oct 2007) | 2 lines + +SAK-12027 +Possible problems with sakai 2.4->2.5 mysql conversion script +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:05:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:05:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:05:36 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id l9TL5ZoY008503; + Mon, 29 Oct 2007 17:05:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47264B19.D666A.11330 ; + 29 Oct 2007 17:05:32 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E8C0661B7D; + Mon, 29 Oct 2007 03:31:18 +0000 (GMT) +Message-ID: <200710292102.l9TL2JXc020310@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 398 + for ; + Mon, 29 Oct 2007 03:31:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1227A1C48E + for ; Mon, 29 Oct 2007 21:05:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL2Jco020312 + for ; Mon, 29 Oct 2007 17:02:19 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL2JXc020310 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:02:19 -0400 +Date: Mon, 29 Oct 2007 17:02:19 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37504 - content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:05:36 2007 +X-DSPAM-Confidence: 0.6569 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37504 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:02:18 -0400 (Mon, 29 Oct 2007) +New Revision: 37504 + +Modified: +content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +in-143-196:~/sakai_2-5-x/content mmmay$ svn merge -r 37386:37387 https://source.sakaiproject.org/svn/content/trunk +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +in-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37386:37387 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r37387 | bkirschn@umich.edu | 2007-10-25 12:15:43 -0400 (Thu, 25 Oct 2007) | 1 line + +SAK-1357 update exception error handling +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 17:04:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 17:04:19 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 17:04:19 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id l9TL4Ink005206; + Mon, 29 Oct 2007 17:04:18 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47264ACC.8B92B.28866 ; + 29 Oct 2007 17:04:15 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 205444F968; + Mon, 29 Oct 2007 03:29:53 +0000 (GMT) +Message-ID: <200710292101.l9TL13bJ020298@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751 + for ; + Mon, 29 Oct 2007 03:29:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3D7961BAF9 + for ; Mon, 29 Oct 2007 21:03:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL13N6020300 + for ; Mon, 29 Oct 2007 17:01:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL13bJ020298 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:01:03 -0400 +Date: Mon, 29 Oct 2007 17:01:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37503 - in content/branches/sakai_2-5-x: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 17:04:19 2007 +X-DSPAM-Confidence: 0.7630 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37503 + +Author: mmmay@indiana.edu +Date: 2007-10-29 17:01:02 -0400 (Mon, 29 Oct 2007) +New Revision: 37503 + +Modified: +content/branches/sakai_2-5-x/content-bundles/types.properties +content/branches/sakai_2-5-x/content-bundles/types_ar.properties +content/branches/sakai_2-5-x/content-bundles/types_fr_CA.properties +content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +svn merge -r 37380:37382 https://source.sakaiproject.org/svn/content/trunk +U content-bundles/types_ar.properties +U content-bundles/types_fr_CA.properties +U content-bundles/types.properties +U content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +in-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37380:37382 https://source.sakaiproject.org/svn/content/trunk +------------------------------------------------------------------------ +r37381 | bkirschn@umich.edu | 2007-10-25 10:59:51 -0400 (Thu, 25 Oct 2007) | 1 line + +SAK-11814 formatting change: fix tabs only +------------------------------------------------------------------------ +r37382 | bkirschn@umich.edu | 2007-10-25 11:14:13 -0400 (Thu, 25 Oct 2007) | 1 line + +SAK-1357 SAK-11814 fix uploading and editting UTF-8 content +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Mon Oct 29 16:58:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:58:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:58:52 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by flawless.mail.umich.edu () with ESMTP id l9TKwpAG029321; + Mon, 29 Oct 2007 16:58:51 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 47264986.3C913.15391 ; + 29 Oct 2007 16:58:49 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6E8ED59D7; + Mon, 29 Oct 2007 03:24:33 +0000 (GMT) +Message-ID: <200710292055.l9TKterX020284@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 266 + for ; + Mon, 29 Oct 2007 03:24:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA74A1BAF9 + for ; Mon, 29 Oct 2007 20:58:27 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKtep6020286 + for ; Mon, 29 Oct 2007 16:55:40 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKterX020284 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:55:40 -0400 +Date: Mon, 29 Oct 2007 16:55:40 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37502 - mailtool/trunk/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:58:52 2007 +X-DSPAM-Confidence: 0.9825 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37502 + +Author: kimsooil@bu.edu +Date: 2007-10-29 16:55:37 -0400 (Mon, 29 Oct 2007) +New Revision: 37502 + +Modified: +mailtool/trunk/mailtool/pom.xml +Log: +fix of SAK-11552 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:49:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:49:01 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:49:01 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by mission.mail.umich.edu () with ESMTP id l9TKn0sa003162; + Mon, 29 Oct 2007 16:49:00 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47264736.5B4F8.28076 ; + 29 Oct 2007 16:48:57 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 70B7559D7; + Mon, 29 Oct 2007 03:14:31 +0000 (GMT) +Message-ID: <200710292045.l9TKjOrQ020260@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323 + for ; + Mon, 29 Oct 2007 03:14:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3362C1BAF9 + for ; Mon, 29 Oct 2007 20:48:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKjOk4020262 + for ; Mon, 29 Oct 2007 16:45:24 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKjOrQ020260 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:45:24 -0400 +Date: Mon, 29 Oct 2007 16:45:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37501 - in sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui: bean/author bean/delivery listener/author listener/delivery listener/samlite +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:49:01 2007 +X-DSPAM-Confidence: 0.7624 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37501 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:45:21 -0400 (Mon, 29 Oct 2007) +New Revision: 37501 + +Modified: +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemAuthorBean.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ItemContentsBean.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorAssessmentListener.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemAddListener.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePartListener.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/DeliveryActionListener.java +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/AssessmentListener.java +Log: +in-143-196:~/sakai_2-5-x/sam mmmay$ svn merge -r 36267:36268 https://source.sakaiproject.org/svn/sam/trunk +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemAuthorBean.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ItemContentsBean.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemAddListener.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorAssessmentListener.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePartListener.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/DeliveryActionListener.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/AssessmentListener.java +in-143-196:~/sakai_2-5-x/sam mmmay$ svn log -r 36267:36268 https://source.sakaiproject.org/svn/sam/trunk +------------------------------------------------------------------------ +r36268 | ktsao@stanford.edu | 2007-10-03 19:43:13 -0400 (Wed, 03 Oct 2007) | 1 line + +SAK-11137 +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Oct 29 16:36:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:36:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:36:13 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id l9TKaCcu023512; + Mon, 29 Oct 2007 16:36:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47264435.BC626.29777 ; + 29 Oct 2007 16:36:08 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 65E506E371; + Mon, 29 Oct 2007 03:01:54 +0000 (GMT) +Message-ID: <200710292033.l9TKX3c7020234@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516 + for ; + Mon, 29 Oct 2007 03:01:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 50F5D1BADF + for ; Mon, 29 Oct 2007 20:35:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKX3hB020236 + for ; Mon, 29 Oct 2007 16:33:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKX3c7020234 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:33:03 -0400 +Date: Mon, 29 Oct 2007 16:33:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37500 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:36:13 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37500 + +Author: zqian@umich.edu +Date: 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) +New Revision: 37500 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:36:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:36:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:36:00 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id l9TKZxID019356; + Mon, 29 Oct 2007 16:35:59 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47264429.1F1B5.888 ; + 29 Oct 2007 16:35:56 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5AF2B4E864; + Mon, 29 Oct 2007 03:01:40 +0000 (GMT) +Message-ID: <200710292032.l9TKWnU0020222@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 578 + for ; + Mon, 29 Oct 2007 03:01:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1428B1BADF + for ; Mon, 29 Oct 2007 20:35:36 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKWnkY020224 + for ; Mon, 29 Oct 2007 16:32:49 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKWnU0020222 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:32:49 -0400 +Date: Mon, 29 Oct 2007 16:32:49 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37499 - sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:36:00 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37499 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:32:48 -0400 (Mon, 29 Oct 2007) +New Revision: 37499 + +Modified: +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/EmailBean.java +Log: +svn merge -r 34599:34600 https://source.sakaiproject.org/svn/sam/trunk +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/EmailBean.java +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java +in-143-196:~/sakai_2-5-x/sam mmmay$ svn log -r 34599:34600 https://source.sakaiproject.org/svn/sam/trunk +------------------------------------------------------------------------ +r34600 | ktsao@stanford.edu | 2007-08-30 14:59:20 -0400 (Thu, 30 Aug 2007) | 1 line + +SAK-11137 +------------------------------------------------------------------------ + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:19:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:19:59 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:19:59 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by godsend.mail.umich.edu () with ESMTP id l9TKJwep012444; + Mon, 29 Oct 2007 16:19:58 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 47264067.EA7E6.30532 ; + 29 Oct 2007 16:19:54 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6299B611A1; + Mon, 29 Oct 2007 02:45:37 +0000 (GMT) +Message-ID: <200710292016.l9TKGidX020173@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529 + for ; + Mon, 29 Oct 2007 02:45:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 14B7E1C482 + for ; Mon, 29 Oct 2007 20:19:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKGi66020175 + for ; Mon, 29 Oct 2007 16:16:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKGidX020173 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:16:44 -0400 +Date: Mon, 29 Oct 2007 16:16:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37498 - reference/branches/sakai_2-5-x/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:19:59 2007 +X-DSPAM-Confidence: 0.7623 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37498 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:16:43 -0400 (Mon, 29 Oct 2007) +New Revision: 37498 + +Modified: +reference/branches/sakai_2-5-x/library/src/webapp/skin/default/portal.css +Log: +svn merge -r 37383:37384 https://source.sakaiproject.org/svn/reference/trunk +U library/src/webapp/skin/default/portal.css +in-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37383:37384 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37384 | gsilver@umich.edu | 2007-10-25 11:56:07 -0400 (Thu, 25 Oct 2007) | 2 lines + +http://jira.sakaiproject.org/jira/browse/SAK-11701 +- tool icons +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:14:12 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:14:12 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:14:12 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by casino.mail.umich.edu () with ESMTP id l9TKEADS003623; + Mon, 29 Oct 2007 16:14:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47263F0B.ACB1A.29292 ; + 29 Oct 2007 16:14:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BEEF3611A1; + Mon, 29 Oct 2007 02:39:45 +0000 (GMT) +Message-ID: <200710292010.l9TKAtaC020161@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 27 + for ; + Mon, 29 Oct 2007 02:39:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DD84B1BAF3 + for ; Mon, 29 Oct 2007 20:13:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKAtQb020163 + for ; Mon, 29 Oct 2007 16:10:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKAtaC020161 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:10:55 -0400 +Date: Mon, 29 Oct 2007 16:10:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37497 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:14:12 2007 +X-DSPAM-Confidence: 0.6566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37497 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:10:54 -0400 (Mon, 29 Oct 2007) +New Revision: 37497 + +Modified: +citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js/citationscript.js +Log: +svn merge -r 37364:37365 https://source.sakaiproject.org/svn/citations/trunk +U citations-tool/tool/src/webapp/js/citationscript.js +in-143-196:~/sakai_2-5-x/citations mmmay$ svn log -r 37364:37365 https://source.sakaiproject.org/svn/citations/trunk +------------------------------------------------------------------------ +r37365 | dsobiera@indiana.edu | 2007-10-24 15:54:09 -0400 (Wed, 24 Oct 2007) | 1 line + +SAK-12041 - Modified Javascript to disable all buttons BEFORE the AJAX load to prevent more than one button push at a time. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:11:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:11:25 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:11:25 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by godsend.mail.umich.edu () with ESMTP id l9TKBP2D007730; + Mon, 29 Oct 2007 16:11:25 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47263E65.9BB45.6812 ; + 29 Oct 2007 16:11:20 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E92B76E637; + Mon, 29 Oct 2007 02:37:00 +0000 (GMT) +Message-ID: <200710292008.l9TK8DLk020149@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 567 + for ; + Mon, 29 Oct 2007 02:36:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A9A7D1C565 + for ; Mon, 29 Oct 2007 20:11:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK8DiJ020151 + for ; Mon, 29 Oct 2007 16:08:13 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK8DLk020149 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:08:13 -0400 +Date: Mon, 29 Oct 2007 16:08:13 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37496 - rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:11:25 2007 +X-DSPAM-Confidence: 0.7006 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37496 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:08:12 -0400 (Mon, 29 Oct 2007) +New Revision: 37496 + +Modified: +rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java +Log: +svn merge -r 37336:37337 https://source.sakaiproject.org/svn/rwiki/trunk +U rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java +in-143-196:~/sakai_2-5-x/rwiki mmmay$ svn log -r 37336:37337 https://source.sakaiproject.org/svn/rwiki/trunk +------------------------------------------------------------------------ +r37336 | ian@caret.cam.ac.uk | 2007-10-23 17:16:48 -0400 (Tue, 23 Oct 2007) | 7 lines + +Discovered that the eid and id usage was the wrong way round. +Fixed over entire preferences storage. + +http://jira.sakaiproject.org/jira/browse/SAK-11988 + + + +------------------------------------------------------------------------ +r37337 | ian@caret.cam.ac.uk | 2007-10-23 17:33:59 -0400 (Tue, 23 Oct 2007) | 4 lines + +SAK-11988 +Missed eclipse file + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:10:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:10:03 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:10:03 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id l9TKA21G010777; + Mon, 29 Oct 2007 16:10:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47263E11.4678.8751 ; + 29 Oct 2007 16:09:56 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EC1286E67E; + Mon, 29 Oct 2007 02:35:41 +0000 (GMT) +Message-ID: <200710292006.l9TK6sUa020125@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 471 + for ; + Mon, 29 Oct 2007 02:35:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 818501BAF3 + for ; Mon, 29 Oct 2007 20:09:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK6sna020127 + for ; Mon, 29 Oct 2007 16:06:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK6sUa020125 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:06:54 -0400 +Date: Mon, 29 Oct 2007 16:06:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37495 - in rwiki/branches/sakai_2-5-x: rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:10:03 2007 +X-DSPAM-Confidence: 0.7005 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37495 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:06:52 -0400 (Mon, 29 Oct 2007) +New Revision: 37495 + +Modified: +rwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java +rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java +rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java +Log: +svn merge -r 37335:37336 https://source.sakaiproject.org/svn/rwiki/trunk +U rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java +U rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java +U rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java +in-143-196:~/sakai_2-5-x/rwiki mmmay$ svn log -r 37335:37336 https://source.sakaiproject.org/svn/rwiki/trunk +------------------------------------------------------------------------ +r37336 | ian@caret.cam.ac.uk | 2007-10-23 17:16:48 -0400 (Tue, 23 Oct 2007) | 7 lines + +Discovered that the eid and id usage was the wrong way round. +Fixed over entire preferences storage. + +http://jira.sakaiproject.org/jira/browse/SAK-11988 + + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:08:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:08:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:08:52 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id l9TK8pkn007832; + Mon, 29 Oct 2007 16:08:51 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47263DCC.8AD76.31569 ; + 29 Oct 2007 16:08:48 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E2B57611A1; + Mon, 29 Oct 2007 02:34:31 +0000 (GMT) +Message-ID: <200710292005.l9TK5fTo020112@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 671 + for ; + Mon, 29 Oct 2007 02:34:15 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4641B1BAF3 + for ; Mon, 29 Oct 2007 20:08:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK5gZZ020114 + for ; Mon, 29 Oct 2007 16:05:42 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK5fTo020112 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:05:41 -0400 +Date: Mon, 29 Oct 2007 16:05:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37494 - rwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:08:52 2007 +X-DSPAM-Confidence: 0.7620 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37494 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:05:40 -0400 (Mon, 29 Oct 2007) +New Revision: 37494 + +Modified: +rwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java +Log: +svn merge -r 37223:37224 https://source.sakaiproject.org/svn/rwiki/trunk +U rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java +in-143-196:~/sakai_2-5-x/rwiki mmmay$ svn log -r 37223:37224 https://source.sakaiproject.org/svn/rwiki/trunk +------------------------------------------------------------------------ +r37224 | ian@caret.cam.ac.uk | 2007-10-23 09:10:02 -0400 (Tue, 23 Oct 2007) | 6 lines + +Problem with confusion over user.getId() and user.getEid() causing emails not to go out. +This should perhapse be back ported into 2.4.x + +http://jira.sakaiproject.org/jira/browse/SAK-11988 + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:05:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:05:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:05:04 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id l9TK53t6007803; + Mon, 29 Oct 2007 16:05:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47263CE9.51704.7221 ; + 29 Oct 2007 16:05:00 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 476046E4E8; + Mon, 29 Oct 2007 02:30:46 +0000 (GMT) +Message-ID: <200710292001.l9TK1tFt020100@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 113 + for ; + Mon, 29 Oct 2007 02:30:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7FAC21BAF3 + for ; Mon, 29 Oct 2007 20:04:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK1tL4020102 + for ; Mon, 29 Oct 2007 16:01:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK1tFt020100 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:01:55 -0400 +Date: Mon, 29 Oct 2007 16:01:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37493 - db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:05:04 2007 +X-DSPAM-Confidence: 0.7616 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37493 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:01:53 -0400 (Mon, 29 Oct 2007) +New Revision: 37493 + +Modified: +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +Log: +svn merge -r 37346:37347 https://source.sakaiproject.org/svn/db/trunk +U db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +U db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +U db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +U db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +U db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +in-143-196:~/sakai_2-5-x/db mmmay$ svn log -r 37346:37347 https://source.sakaiproject.org/svn/db/trunk +------------------------------------------------------------------------ +r37347 | ian@caret.cam.ac.uk | 2007-10-24 04:04:55 -0400 (Wed, 24 Oct 2007) | 5 lines + +http://jira.sakaiproject.org/jira/browse/SAK-12031 + +Missed build errors after syncing with assignments. + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:03:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:03:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:03:46 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by awakenings.mail.umich.edu () with ESMTP id l9TK3jaO003830; + Mon, 29 Oct 2007 16:03:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 47263C9A.5B748.31582 ; + 29 Oct 2007 16:03:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 54C276E635; + Mon, 29 Oct 2007 02:29:27 +0000 (GMT) +Message-ID: <200710292000.l9TK0Y6g020085@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 908 + for ; + Mon, 29 Oct 2007 02:29:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 09F4E1BAF3 + for ; Mon, 29 Oct 2007 20:03:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK0Yxe020087 + for ; Mon, 29 Oct 2007 16:00:34 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK0Y6g020085 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:00:34 -0400 +Date: Mon, 29 Oct 2007 16:00:34 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37492 - assignment/branches/sakai_2-5-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:03:46 2007 +X-DSPAM-Confidence: 0.7621 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37492 + +Author: mmmay@indiana.edu +Date: 2007-10-29 16:00:33 -0400 (Mon, 29 Oct 2007) +New Revision: 37492 + +Modified: +assignment/branches/sakai_2-5-x/runconversion-2.4.x.sh +assignment/branches/sakai_2-5-x/runconversion.sh +Log: +in-143-196:~/sakai_2-5-x/assignment mmmay$ svn merge -r 37343:37344 https://source.sakaiproject.org/svn/assignment/trunk +U runconversion.sh +U runconversion-2.4.x.sh +in-143-196:~/sakai_2-5-x/assignment mmmay$ svn log -r 37343:37344 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37343 | ian@caret.cam.ac.uk | 2007-10-23 19:44:33 -0400 (Tue, 23 Oct 2007) | 5 lines + +Moved the conversion framework into sakai-db-conversion + +http://jira.sakaiproject.org/jira/browse/SAK-12031 + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 16:02:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 16:02:14 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 16:02:14 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id l9TK2EqS006306; + Mon, 29 Oct 2007 16:02:14 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47263C40.17EBA.10101 ; + 29 Oct 2007 16:02:10 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 47BC65CBA4; + Mon, 29 Oct 2007 02:27:55 +0000 (GMT) +Message-ID: <200710291958.l9TJwvN1020072@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 563 + for ; + Mon, 29 Oct 2007 02:27:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 88BCC1BAF3 + for ; Mon, 29 Oct 2007 20:01:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJwvBT020074 + for ; Mon, 29 Oct 2007 15:58:57 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJwvN1020072 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:58:57 -0400 +Date: Mon, 29 Oct 2007 15:58:57 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37491 - in assignment/branches/sakai_2-5-x/assignment-impl/impl: . src/java/org/sakaiproject/assignment/impl/conversion/api src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 16:02:14 2007 +X-DSPAM-Confidence: 0.7618 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37491 + +Author: mmmay@indiana.edu +Date: 2007-10-29 15:58:55 -0400 (Mon, 29 Oct 2007) +New Revision: 37491 + +Removed: +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +Modified: +assignment/branches/sakai_2-5-x/assignment-impl/impl/pom.xml +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +Log: +svn merge -r 37342:37343 https://source.sakaiproject.org/svn/assignment/trunk +D assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java +D assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java +D assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +D assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +U assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +D assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +U assignment-impl/impl/pom.xml +in-143-196:~/sakai_2-5-x/assignment mmmay$ svn log -r 37342:37343 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37343 | ian@caret.cam.ac.uk | 2007-10-23 19:44:33 -0400 (Tue, 23 Oct 2007) | 5 lines + +Moved the conversion framework into sakai-db-conversion + +http://jira.sakaiproject.org/jira/browse/SAK-12031 + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 15:58:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 15:58:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 15:58:46 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by casino.mail.umich.edu () with ESMTP id l9TJwjVo025320; + Mon, 29 Oct 2007 15:58:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 47263B62.D8405.4606 ; + 29 Oct 2007 15:58:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 584EC4EAA9; + Mon, 29 Oct 2007 02:24:14 +0000 (GMT) +Message-ID: <200710291955.l9TJtNQm020050@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 509 + for ; + Mon, 29 Oct 2007 02:24:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1C61A1BAF3 + for ; Mon, 29 Oct 2007 19:58:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJtNWx020052 + for ; Mon, 29 Oct 2007 15:55:23 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJtNQm020050 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:55:23 -0400 +Date: Mon, 29 Oct 2007 15:55:23 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37490 - in db/branches/sakai_2-5-x: . db-util db-util/conversion db-util/conversion/src db-util/conversion/src/java db-util/conversion/src/java/org db-util/conversion/src/java/org/sakaiproject db-util/conversion/src/java/org/sakaiproject/util db-util/conversion/src/java/org/sakaiproject/util/conversion db-util/storage/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 15:58:46 2007 +X-DSPAM-Confidence: 0.7618 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37490 + +Author: mmmay@indiana.edu +Date: 2007-10-29 15:55:21 -0400 (Mon, 29 Oct 2007) +New Revision: 37490 + +Added: +db/branches/sakai_2-5-x/db-util/conversion/ +db/branches/sakai_2-5-x/db-util/conversion/pom.xml +db/branches/sakai_2-5-x/db-util/conversion/runconversion.sh +db/branches/sakai_2-5-x/db-util/conversion/src/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +db/branches/sakai_2-5-x/db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java +Removed: +db/branches/sakai_2-5-x/db-util/conversion/pom.xml +db/branches/sakai_2-5-x/db-util/conversion/runconversion.sh +db/branches/sakai_2-5-x/db-util/conversion/src/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/ +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +Modified: +db/branches/sakai_2-5-x/db-util/.classpath +db/branches/sakai_2-5-x/pom.xml +Log: +svn merge -r 37341:37342 https://source.sakaiproject.org/svn/db/trunk +U db-util/.classpath +A db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java +A db-util/conversion +A db-util/conversion/runconversion.sh +A db-util/conversion/src +A db-util/conversion/src/java +A db-util/conversion/src/java/org +A db-util/conversion/src/java/org/sakaiproject +A db-util/conversion/src/java/org/sakaiproject/util +A db-util/conversion/src/java/org/sakaiproject/util/conversion +A db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +A db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +A db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +A db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +A db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +A db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java +A db-util/conversion/pom.xml +U pom.xml +in-143-196:~/sakai_2-5-x/db mmmay$ svn log -r 37341:37342 https://source.sakaiproject.org/svn/db/trunk +------------------------------------------------------------------------ +r37342 | ian@caret.cam.ac.uk | 2007-10-23 19:43:14 -0400 (Tue, 23 Oct 2007) | 5 lines + +Moved conversion utility into sakai-db-conversion + +http://jira.sakaiproject.org/jira/browse/SAK-12031 + + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Mon Oct 29 15:50:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 15:50:41 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 15:50:41 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by faithful.mail.umich.edu () with ESMTP id l9TJodEW025126; + Mon, 29 Oct 2007 15:50:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4726398A.89A6F.6172 ; + 29 Oct 2007 15:50:37 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ABADF59D7; + Mon, 29 Oct 2007 02:16:19 +0000 (GMT) +Message-ID: <200710291944.l9TJiVQl019968@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789 + for ; + Mon, 29 Oct 2007 02:13:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 60D021B9B9 + for ; Mon, 29 Oct 2007 19:47:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJiVGK019970 + for ; Mon, 29 Oct 2007 15:44:31 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJiVQl019968 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:44:31 -0400 +Date: Mon, 29 Oct 2007 15:44:31 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37486 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 15:50:41 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37486 + +Author: kimsooil@bu.edu +Date: 2007-10-29 15:44:28 -0400 (Mon, 29 Oct 2007) +New Revision: 37486 + +Modified: +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +Log: +Applied patch in SAK-11181 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Oct 29 15:33:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 15:33:35 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 15:33:35 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by jacknife.mail.umich.edu () with ESMTP id l9TJXYSc017838; + Mon, 29 Oct 2007 15:33:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47263583.4DF18.14890 ; + 29 Oct 2007 15:33:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0220C6E635; + Mon, 29 Oct 2007 01:59:12 +0000 (GMT) +Message-ID: <200710291930.l9TJUL9h019953@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 865 + for ; + Mon, 29 Oct 2007 01:58:57 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F02971BAC9 + for ; Mon, 29 Oct 2007 19:33:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJULv5019955 + for ; Mon, 29 Oct 2007 15:30:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJUL9h019953 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:30:21 -0400 +Date: Mon, 29 Oct 2007 15:30:21 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37485 - memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 15:33:35 2007 +X-DSPAM-Confidence: 0.8472 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37485 + +Author: aaronz@vt.edu +Date: 2007-10-29 15:30:15 -0400 (Mon, 29 Oct 2007) +New Revision: 37485 + +Added: +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/HeavyLoadTestMemoryService.java +Modified: +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +Log: +SAK-11913: Added first part of larger scale concurrent test + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Mon Oct 29 15:31:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 15:31:51 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 15:31:51 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by jacknife.mail.umich.edu () with ESMTP id l9TJVoYo016324; + Mon, 29 Oct 2007 15:31:50 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47263501.BF2EC.3023 ; + 29 Oct 2007 15:31:17 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2FFB86E3A6; + Mon, 29 Oct 2007 01:56:52 +0000 (GMT) +Message-ID: <200710291927.l9TJRrmc019941@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 810 + for ; + Mon, 29 Oct 2007 01:56:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4FCC71BAC9 + for ; Mon, 29 Oct 2007 19:30:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJRrxb019943 + for ; Mon, 29 Oct 2007 15:27:53 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJRrmc019941 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:27:53 -0400 +Date: Mon, 29 Oct 2007 15:27:53 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37484 - ctools/branches/ctools_2-4/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 15:31:51 2007 +X-DSPAM-Confidence: 0.9874 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37484 + +Author: dlhaines@umich.edu +Date: 2007-10-29 15:27:50 -0400 (Mon, 29 Oct 2007) +New Revision: 37484 + +Added: +ctools/branches/ctools_2-4/ctools-reference/config/09PrepopulatePages.properties +Log: +CTools: add UMich wiki default pages to branch. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Oct 29 15:18:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 15:18:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 15:18:17 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id l9TJIGtF005397; + Mon, 29 Oct 2007 15:18:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 472631F0.37945.8763 ; + 29 Oct 2007 15:18:12 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DFFE16E5CD; + Mon, 29 Oct 2007 01:43:56 +0000 (GMT) +Message-ID: <200710291915.l9TJF7Sk019922@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 655 + for ; + Mon, 29 Oct 2007 01:43:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 178081C3FE + for ; Mon, 29 Oct 2007 19:17:54 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJF7C3019924 + for ; Mon, 29 Oct 2007 15:15:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJF7Sk019922 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:15:07 -0400 +Date: Mon, 29 Oct 2007 15:15:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37483 - in assignment/trunk/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 15:18:17 2007 +X-DSPAM-Confidence: 0.9856 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37483 + +Author: zqian@umich.edu +Date: 2007-10-29 15:15:04 -0400 (Mon, 29 Oct 2007) +New Revision: 37483 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +fix to SAK-12075:assignment tool requires both 'asn.new' and 'asn.grade' for a TA to see the Grade link + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mmmay@indiana.edu Mon Oct 29 15:17:29 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 15:17:29 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 15:17:29 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by casino.mail.umich.edu () with ESMTP id l9TJHSpZ026567; + Mon, 29 Oct 2007 15:17:29 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 472631C2.63783.13780 ; + 29 Oct 2007 15:17:26 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 862AA52403; + Mon, 29 Oct 2007 01:43:10 +0000 (GMT) +Message-ID: <200710291914.l9TJE9lc019910@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 202 + for ; + Mon, 29 Oct 2007 01:42:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 51FA41C3FE + for ; Mon, 29 Oct 2007 19:16:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJE9Ma019912 + for ; Mon, 29 Oct 2007 15:14:09 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJE9lc019910 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:14:09 -0400 +Date: Mon, 29 Oct 2007 15:14:09 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f +To: source@collab.sakaiproject.org +From: mmmay@indiana.edu +Subject: [sakai] svn commit: r37482 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 15:17:29 2007 +X-DSPAM-Confidence: 0.6567 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37482 + +Author: mmmay@indiana.edu +Date: 2007-10-29 15:14:07 -0400 (Mon, 29 Oct 2007) +New Revision: 37482 + +Modified: +util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java +Log: +in-143-196:~/sakai_2-5-x/util mmmay$ svn merge -r 37176:37177 https://source.sakaiproject.org/svn/util/trunk +U util-util/util/src/java/org/sakaiproject/util/FormattedText.java +in-143-196:~/sakai_2-5-x/util mmmay$ svn log -r 37176:37177 https://source.sakaiproject.org/svn/util/trunk +------------------------------------------------------------------------ +r37177 | joshua.ryan@asu.edu | 2007-10-22 17:28:52 -0400 (Mon, 22 Oct 2007) | 2 lines + +SAK-11770 Allow urls with http in them + +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Mon Oct 29 15:16:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 15:16:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 15:16:04 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by godsend.mail.umich.edu () with ESMTP id l9TJG3Yc003831; + Mon, 29 Oct 2007 15:16:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47263169.B2F3F.14205 ; + 29 Oct 2007 15:15:56 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D3B94E77F; + Mon, 29 Oct 2007 01:41:41 +0000 (GMT) +Message-ID: <200710291912.l9TJCj7S019877@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 165 + for ; + Mon, 29 Oct 2007 01:41:23 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2DF181C3FE + for ; Mon, 29 Oct 2007 19:15:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJCkGg019879 + for ; Mon, 29 Oct 2007 15:12:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJCj7S019877 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:12:45 -0400 +Date: Mon, 29 Oct 2007 15:12:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37481 - ctools/trunk/ctools-reference/config +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 15:16:04 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37481 + +Author: dlhaines@umich.edu +Date: 2007-10-29 15:12:43 -0400 (Mon, 29 Oct 2007) +New Revision: 37481 + +Added: +ctools/trunk/ctools-reference/config/09PrepopulatePages.properties +Log: +CTools: add new custom wiki page. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Mon Oct 29 14:47:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:47:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:47:17 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by jacknife.mail.umich.edu () with ESMTP id l9TIlGuG015917; + Mon, 29 Oct 2007 14:47:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47262A90.61A9A.4774 ; + 29 Oct 2007 14:46:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 519E865D28; + Mon, 29 Oct 2007 01:12:20 +0000 (GMT) +Message-ID: <200710291843.l9TIhOTq019804@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 241 + for ; + Mon, 29 Oct 2007 01:12:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5883612830 + for ; Mon, 29 Oct 2007 18:46:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIhOjk019809 + for ; Mon, 29 Oct 2007 14:43:24 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIhOTq019804 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:43:24 -0400 +Date: Mon, 29 Oct 2007 14:43:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r37479 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business app/business/src/java/org/sakaiproject/tool/gradebook/business/impl app/business/src/sql/mysql app/business/src/sql/oracle app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle app/ui/src/java/org/sakaiproject/tool/gradebook/ui app/ui/src/webapp app/ui/src/webapp/inc service/api/src/java/org/sakaiproject/service/gradebook/shared service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook service/hibernate/src/java/org/sakaiproject/tool/gradebook service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:47:17 2007 +X-DSPAM-Confidence: 0.7566 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37479 + +Author: cwen@iupui.edu +Date: 2007-10-29 14:30:26 -0400 (Mon, 29 Oct 2007) +New Revision: 37479 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/business/src/sql/mysql/SAK-10427.sql +gradebook/trunk/app/business/src/sql/oracle/SAK-10427.sql +gradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java +gradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java +gradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp +gradebook/trunk/app/ui/src/webapp/gradebookSetup.jsp +gradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf +gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java +gradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml +gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Assignment.java +gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java +gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Category.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java +Log: +http://128.196.219.68/jira/browse/SAK-10427 +SAK-10427 +=> +allow creating non-calculated items without include those +items for course grade calculation or stats. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Mon Oct 29 14:47:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:47:14 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:47:14 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by chaos.mail.umich.edu () with ESMTP id l9TIlEoF011110; + Mon, 29 Oct 2007 14:47:14 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47262A88.A1E2B.4495 ; + 29 Oct 2007 14:46:40 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7B4B66E5E5; + Mon, 29 Oct 2007 01:12:20 +0000 (GMT) +Message-ID: <200710291843.l9TIhOQd019807@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 415 + for ; + Mon, 29 Oct 2007 01:12:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7F8A31C3DD + for ; Mon, 29 Oct 2007 18:46:11 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIhOCo019810 + for ; Mon, 29 Oct 2007 14:43:24 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIhOQd019807 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:43:24 -0400 +Date: Mon, 29 Oct 2007 14:43:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37480 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:47:14 2007 +X-DSPAM-Confidence: 0.9855 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37480 + +Author: kimsooil@bu.edu +Date: 2007-10-29 14:43:21 -0400 (Mon, 29 Oct 2007) +New Revision: 37480 + +Modified: +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +Log: +fix SAK-11052 - correct incorrect jira #(11046 -> 11052) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Mon Oct 29 14:32:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:32:18 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:32:18 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id l9TIWIHo008479; + Mon, 29 Oct 2007 14:32:18 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 47262728.52808.8333 ; + 29 Oct 2007 14:32:11 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0FADE6E567; + Mon, 29 Oct 2007 00:57:57 +0000 (GMT) +Message-ID: <200710291829.l9TIT35m019762@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 373 + for ; + Mon, 29 Oct 2007 00:57:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 02B281B94C + for ; Mon, 29 Oct 2007 18:31:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIT4GY019764 + for ; Mon, 29 Oct 2007 14:29:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIT35m019762 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:29:03 -0400 +Date: Mon, 29 Oct 2007 14:29:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37478 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:32:18 2007 +X-DSPAM-Confidence: 0.9788 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37478 + +Author: kimsooil@bu.edu +Date: 2007-10-29 14:29:00 -0400 (Mon, 29 Oct 2007) +New Revision: 37478 + +Modified: +mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java +Log: +fix SAK-11046 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Mon Oct 29 14:28:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:28:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:28:46 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by panther.mail.umich.edu () with ESMTP id l9TISkkK020429; + Mon, 29 Oct 2007 14:28:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47262654.6E168.31431 ; + 29 Oct 2007 14:28:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 94E7F6AC9B; + Mon, 29 Oct 2007 00:54:25 +0000 (GMT) +Message-ID: <200710291825.l9TIPV65019739@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 435 + for ; + Mon, 29 Oct 2007 00:54:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A12F21B94C + for ; Mon, 29 Oct 2007 18:28:18 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIPVga019741 + for ; Mon, 29 Oct 2007 14:25:31 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIPV65019739 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:25:31 -0400 +Date: Mon, 29 Oct 2007 14:25:31 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37477 - mailtool/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:28:46 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37477 + +Author: kimsooil@bu.edu +Date: 2007-10-29 14:25:28 -0400 (Mon, 29 Oct 2007) +New Revision: 37477 + +Removed: +mailtool/branches/2.5.x/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From hu2@iupui.edu Mon Oct 29 14:09:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:09:42 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:09:42 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by jacknife.mail.umich.edu () with ESMTP id l9TI9fl9024790; + Mon, 29 Oct 2007 14:09:41 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 472621DF.30670.2371 ; + 29 Oct 2007 14:09:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 280296E58D; + Mon, 29 Oct 2007 00:35:21 +0000 (GMT) +Message-ID: <200710291806.l9TI6SbG019698@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789 + for ; + Mon, 29 Oct 2007 00:35:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7CAA1BA77 + for ; Mon, 29 Oct 2007 18:09:14 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI6SGX019700 + for ; Mon, 29 Oct 2007 14:06:28 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI6SbG019698 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:06:28 -0400 +Date: Mon, 29 Oct 2007 14:06:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f +To: source@collab.sakaiproject.org +From: hu2@iupui.edu +Subject: [sakai] svn commit: r37475 - in msgcntr/trunk: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-app/src/java/org/sakaiproject/tool/messageforums messageforums-app/src/webapp/WEB-INF messageforums-app/src/webapp/jsp messageforums-app/src/webapp/jsp/privateMsg messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:09:42 2007 +X-DSPAM-Confidence: 0.9829 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37475 + +Author: hu2@iupui.edu +Date: 2007-10-29 14:06:25 -0400 (Mon, 29 Oct 2007) +New Revision: 37475 + +Modified: +msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +msgcntr/trunk/messageforums-app/src/webapp/WEB-INF/faces-config.xml +msgcntr/trunk/messageforums-app/src/webapp/jsp/compose.jsp +msgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgDetail.jsp +msgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgHpView.jsp +msgcntr/trunk/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/MessageForumsTypeManagerImpl.java +msgcntr/trunk/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java +msgcntr/trunk/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/PrivateMessageImpl.java +Log: +SAK-12073 +http://jira.sakaiproject.org/jira/browse/SAK-12073 +Ability to "Reply All" in the Messages tool + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Oct 29 14:06:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:06:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:06:52 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by panther.mail.umich.edu () with ESMTP id l9TI6qUp006050; + Mon, 29 Oct 2007 14:06:52 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47262136.8219.28853 ; + 29 Oct 2007 14:06:48 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5B4216E1A2; + Mon, 29 Oct 2007 00:32:35 +0000 (GMT) +Message-ID: <200710291803.l9TI3maw019674@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 629 + for ; + Mon, 29 Oct 2007 00:32:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8EAA61BA32 + for ; Mon, 29 Oct 2007 18:06:34 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI3mcD019676 + for ; Mon, 29 Oct 2007 14:03:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI3maw019674 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:03:48 -0400 +Date: Mon, 29 Oct 2007 14:03:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37473 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:06:52 2007 +X-DSPAM-Confidence: 0.9885 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37473 + +Author: zqian@umich.edu +Date: 2007-10-29 14:03:46 -0400 (Mon, 29 Oct 2007) +New Revision: 37473 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm +Log: +fix to SAK-12074: cannot drop added sections in site setup + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From kimsooil@bu.edu Mon Oct 29 14:05:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:05:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:05:47 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by chaos.mail.umich.edu () with ESMTP id l9TI5kkI016846; + Mon, 29 Oct 2007 14:05:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472620F5.4A917.5275 ; + 29 Oct 2007 14:05:44 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 89B3D52403; + Mon, 29 Oct 2007 00:31:29 +0000 (GMT) +Message-ID: <200710291802.l9TI2aCe019658@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 832 + for ; + Mon, 29 Oct 2007 00:31:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 902841BA32 + for ; Mon, 29 Oct 2007 18:05:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI2a2D019660 + for ; Mon, 29 Oct 2007 14:02:36 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI2aCe019658 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:02:36 -0400 +Date: Mon, 29 Oct 2007 14:02:36 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f +To: source@collab.sakaiproject.org +From: kimsooil@bu.edu +Subject: [sakai] svn commit: r37472 - mailtool/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:05:47 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37472 + +Author: kimsooil@bu.edu +Date: 2007-10-29 14:02:33 -0400 (Mon, 29 Oct 2007) +New Revision: 37472 + +Added: +mailtool/branches/2.5.x/ +Log: + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Oct 29 14:03:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:03:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:03:43 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id l9TI3hG6021635; + Mon, 29 Oct 2007 14:03:43 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4726206E.27CC7.16858 ; + 29 Oct 2007 14:03:29 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A2E475A5E9; + Mon, 29 Oct 2007 00:29:12 +0000 (GMT) +Message-ID: <200710291800.l9TI0Lp1019631@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 714 + for ; + Mon, 29 Oct 2007 00:28:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C3F27B576 + for ; Mon, 29 Oct 2007 18:03:07 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI0Lf9019633 + for ; Mon, 29 Oct 2007 14:00:22 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI0Lp1019631 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:00:21 -0400 +Date: Mon, 29 Oct 2007 14:00:21 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37470 - memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:03:43 2007 +X-DSPAM-Confidence: 0.9841 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37470 + +Author: aaronz@vt.edu +Date: 2007-10-29 14:00:17 -0400 (Mon, 29 Oct 2007) +New Revision: 37470 + +Modified: +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +Log: +SAK-11913: Added in viable tests to compare the various caching setups + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Oct 29 14:03:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:03:25 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:03:25 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by score.mail.umich.edu () with ESMTP id l9TI3ORd019185; + Mon, 29 Oct 2007 14:03:24 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47262066.439EA.27775 ; + 29 Oct 2007 14:03:21 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 18D6E4EB4A; + Mon, 29 Oct 2007 00:29:05 +0000 (GMT) +Message-ID: <200710291800.l9TI0DmI019618@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 606 + for ; + Mon, 29 Oct 2007 00:28:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E93AEB576 + for ; Mon, 29 Oct 2007 18:02:59 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI0DJk019620 + for ; Mon, 29 Oct 2007 14:00:14 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI0DmI019618 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:00:13 -0400 +Date: Mon, 29 Oct 2007 14:00:13 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37469 - in memory/branches/SAK-11913/memory-api/api/src/java: . org/sakaiproject/memory/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:03:25 2007 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37469 + +Author: aaronz@vt.edu +Date: 2007-10-29 14:00:07 -0400 (Mon, 29 Oct 2007) +New Revision: 37469 + +Modified: +memory/branches/SAK-11913/memory-api/api/src/java/ehcache.xml +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cacher.java +Log: +SAK-11913: Added in viable tests to compare the various caching setups + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Oct 29 14:03:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 14:03:11 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 14:03:11 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by casino.mail.umich.edu () with ESMTP id l9TI3Aot030425; + Mon, 29 Oct 2007 14:03:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47262058.65B80.14682 ; + 29 Oct 2007 14:03:07 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7431D52402; + Mon, 29 Oct 2007 00:28:52 +0000 (GMT) +Message-ID: <200710291800.l9TI03WH019606@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 325 + for ; + Mon, 29 Oct 2007 00:28:40 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 615661B9F1 + for ; Mon, 29 Oct 2007 18:02:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI03dG019608 + for ; Mon, 29 Oct 2007 14:00:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI03WH019606 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:00:03 -0400 +Date: Mon, 29 Oct 2007 14:00:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37468 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 14:03:11 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37468 + +Author: aaronz@vt.edu +Date: 2007-10-29 13:59:58 -0400 (Mon, 29 Oct 2007) +New Revision: 37468 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +Log: +SAK-11913: Added in viable tests to compare the various caching setups + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 29 13:31:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 13:31:21 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 13:31:21 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id l9THVJGH025015; + Mon, 29 Oct 2007 13:31:19 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 472618DD.48B14.14092 ; + 29 Oct 2007 13:31:14 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3D6B86DC94; + Sun, 28 Oct 2007 23:58:56 +0000 (GMT) +Message-ID: <200710291728.l9THS74S019459@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 560 + for ; + Sun, 28 Oct 2007 23:58:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DF1141C3A3 + for ; Mon, 29 Oct 2007 17:30:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THS7Xl019461 + for ; Mon, 29 Oct 2007 13:28:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THS74S019459 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:28:07 -0400 +Date: Mon, 29 Oct 2007 13:28:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37465 - sam/branches +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 13:31:21 2007 +X-DSPAM-Confidence: 0.9841 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37465 + +Author: rjlowe@iupui.edu +Date: 2007-10-29 13:28:03 -0400 (Mon, 29 Oct 2007) +New Revision: 37465 + +Added: +sam/branches/SAK-12065/ +Log: +New branch of T&Q for David Horwitz + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Mon Oct 29 13:27:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 13:27:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 13:27:36 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by godsend.mail.umich.edu () with ESMTP id l9THRZ8S001897; + Mon, 29 Oct 2007 13:27:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 472617FF.1BAF0.27643 ; + 29 Oct 2007 13:27:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 38DE36E4CE; + Sun, 28 Oct 2007 23:55:07 +0000 (GMT) +Message-ID: <200710291724.l9THOFm4019447@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 544 + for ; + Sun, 28 Oct 2007 23:54:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F3448131CD + for ; Mon, 29 Oct 2007 17:27:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THOF9S019449 + for ; Mon, 29 Oct 2007 13:24:15 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THOFm4019447 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:24:15 -0400 +Date: Mon, 29 Oct 2007 13:24:15 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37464 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 13:27:36 2007 +X-DSPAM-Confidence: 0.9813 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37464 + +Author: ajpoland@iupui.edu +Date: 2007-10-29 13:24:14 -0400 (Mon, 29 Oct 2007) +New Revision: 37464 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 29 13:26:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 13:26:51 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 13:26:51 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id l9THQoc8022224; + Mon, 29 Oct 2007 13:26:50 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 472617CA.AEB0.2481 ; + 29 Oct 2007 13:26:36 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D30606E3FE; + Sun, 28 Oct 2007 23:54:23 +0000 (GMT) +Message-ID: <200710291723.l9THNbZ1019435@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 478 + for ; + Sun, 28 Oct 2007 23:54:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BE64E131CD + for ; Mon, 29 Oct 2007 17:26:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THNbZJ019437 + for ; Mon, 29 Oct 2007 13:23:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THNbZ1019435 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:23:37 -0400 +Date: Mon, 29 Oct 2007 13:23:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37463 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 13:26:51 2007 +X-DSPAM-Confidence: 0.9912 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37463 + +Author: rjlowe@iupui.edu +Date: 2007-10-29 13:23:36 -0400 (Mon, 29 Oct 2007) +New Revision: 37463 + +Modified: +gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +svn merge -r 37461:37462 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +svn log -r 37462:37462 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37462 | rjlowe@iupui.edu | 2007-10-29 13:21:52 -0400 (Mon, 29 Oct 2007) | 5 lines + +SAK-11270 +http://bugs.sakaiproject.org/jira/browse/SAK-11270 +gb / assignment list in "Roster/All Grades" view +null check + +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 29 13:25:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 13:25:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 13:25:04 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id l9THP3iu028632; + Mon, 29 Oct 2007 13:25:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4726176A.3FEFD.24190 ; + 29 Oct 2007 13:25:01 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9C1F56D55B; + Sun, 28 Oct 2007 23:52:44 +0000 (GMT) +Message-ID: <200710291721.l9THLrpn019423@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 352 + for ; + Sun, 28 Oct 2007 23:52:30 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CD2C8131CD + for ; Mon, 29 Oct 2007 17:24:38 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THLrFu019425 + for ; Mon, 29 Oct 2007 13:21:53 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THLrpn019423 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:21:53 -0400 +Date: Mon, 29 Oct 2007 13:21:53 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37462 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 13:25:04 2007 +X-DSPAM-Confidence: 0.9842 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37462 + +Author: rjlowe@iupui.edu +Date: 2007-10-29 13:21:52 -0400 (Mon, 29 Oct 2007) +New Revision: 37462 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +SAK-11270 +http://bugs.sakaiproject.org/jira/browse/SAK-11270 +gb / assignment list in "Roster/All Grades" view +null check + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From hu2@iupui.edu Mon Oct 29 13:16:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 13:16:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 13:16:37 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by mission.mail.umich.edu () with ESMTP id l9THGZth027938; + Mon, 29 Oct 2007 13:16:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4726156D.477CB.20961 ; + 29 Oct 2007 13:16:33 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5670F4FC0F; + Sun, 28 Oct 2007 23:44:17 +0000 (GMT) +Message-ID: <200710291713.l9THDSqr019411@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 418 + for ; + Sun, 28 Oct 2007 23:44:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 058EF1C3A3 + for ; Mon, 29 Oct 2007 17:16:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THDSdf019413 + for ; Mon, 29 Oct 2007 13:13:28 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THDSqr019411 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:13:28 -0400 +Date: Mon, 29 Oct 2007 13:13:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f +To: source@collab.sakaiproject.org +From: hu2@iupui.edu +Subject: [sakai] svn commit: r37461 - msgcntr/trunk/messageforums-app/src/webapp/jsp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 13:16:37 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37461 + +Author: hu2@iupui.edu +Date: 2007-10-29 13:13:27 -0400 (Mon, 29 Oct 2007) +New Revision: 37461 + +Added: +msgcntr/trunk/messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp +Log: +SAK-12073 +http://jira.sakaiproject.org/jira/browse/SAK-12073 +Ability to "Reply All" in the Messages tool + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Mon Oct 29 12:59:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 12:59:50 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 12:59:50 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id l9TGxnFD026482; + Mon, 29 Oct 2007 12:59:49 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4726117F.86CE2.17475 ; + 29 Oct 2007 12:59:46 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C0FB75B026; + Sun, 28 Oct 2007 23:27:25 +0000 (GMT) +Message-ID: <200710291656.l9TGuaCW019376@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506 + for ; + Sun, 28 Oct 2007 23:27:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E67331C379 + for ; Mon, 29 Oct 2007 16:59:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TGuaqN019378 + for ; Mon, 29 Oct 2007 12:56:36 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TGuaCW019376 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 12:56:36 -0400 +Date: Mon, 29 Oct 2007 12:56:36 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37460 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 12:59:50 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37460 + +Author: dlhaines@umich.edu +Date: 2007-10-29 12:56:34 -0400 (Mon, 29 Oct 2007) +New Revision: 37460 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties +Log: +CTools: update the P build to include the new evaluation code. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Mon Oct 29 12:51:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 12:51:21 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 12:51:21 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by brazil.mail.umich.edu () with ESMTP id l9TGpKgB024048; + Mon, 29 Oct 2007 12:51:20 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47260F7A.5000B.1583 ; + 29 Oct 2007 12:51:09 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BE4066E477; + Sun, 28 Oct 2007 23:18:54 +0000 (GMT) +Message-ID: <200710291648.l9TGm6mY019364@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 214 + for ; + Sun, 28 Oct 2007 23:18:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 386B11C38D + for ; Mon, 29 Oct 2007 16:50:51 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TGm6pd019366 + for ; Mon, 29 Oct 2007 12:48:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TGm6mY019364 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 12:48:06 -0400 +Date: Mon, 29 Oct 2007 12:48:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r37459 - in blog/branches/sakai_2-4-x/tool/src/webapp: WEB-INF sakai-blogger-tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 12:51:21 2007 +X-DSPAM-Confidence: 0.8459 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37459 + +Author: a.fish@lancaster.ac.uk +Date: 2007-10-29 12:47:40 -0400 (Mon, 29 Oct 2007) +New Revision: 37459 + +Modified: +blog/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/faces-config.xml +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/AddCommentView.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/ConfirmDeletePost.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostCreateView.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostEditView.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostListViewer.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostViewer.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PreviewPost.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/main.jsp +blog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/title.jsp +Log: +SAK-7578. Moved the blog code from using ResourceBundle to using the ResourceLoader. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Mon Oct 29 12:45:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 12:45:09 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 12:45:09 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by faithful.mail.umich.edu () with ESMTP id l9TGj8ZS001859; + Mon, 29 Oct 2007 12:45:08 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 47260E0D.2A0B5.27127 ; + 29 Oct 2007 12:45:04 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A6796B660; + Sun, 28 Oct 2007 23:12:50 +0000 (GMT) +Message-ID: <200710291641.l9TGfhf6019333@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 563 + for ; + Sun, 28 Oct 2007 23:12:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1F5C31B94D + for ; Mon, 29 Oct 2007 16:44:28 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TGfhhK019335 + for ; Mon, 29 Oct 2007 12:41:43 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TGfhf6019333 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 12:41:43 -0400 +Date: Mon, 29 Oct 2007 12:41:43 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r37458 - in blog/branches/sakai_2-4-x: . jsfComponent jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 12:45:09 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37458 + +Author: a.fish@lancaster.ac.uk +Date: 2007-10-29 12:41:21 -0400 (Mon, 29 Oct 2007) +New Revision: 37458 + +Modified: +blog/branches/sakai_2-4-x/.classpath +blog/branches/sakai_2-4-x/jsfComponent/project.xml +blog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIEditPost.java +blog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIOutputPost.java +Log: +SAK-7578. Moved the blog code from using ResourceBundle to using the ResourceLoader. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Mon Oct 29 11:42:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 11:42:27 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 11:42:27 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by faithful.mail.umich.edu () with ESMTP id l9TFgQum029720; + Mon, 29 Oct 2007 11:42:26 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4725FF5C.6A7C0.16321 ; + 29 Oct 2007 11:42:23 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 407EA6E3DA; + Sun, 28 Oct 2007 22:10:07 +0000 (GMT) +Message-ID: <200710291539.l9TFdKVF019147@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 736 + for ; + Sun, 28 Oct 2007 22:09:50 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 417491C367 + for ; Mon, 29 Oct 2007 15:42:02 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFdKUV019149 + for ; Mon, 29 Oct 2007 11:39:21 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFdKVF019147 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:39:20 -0400 +Date: Mon, 29 Oct 2007 11:39:20 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r37457 - in blog/trunk: jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/validators tool/src/webapp/WEB-INF tool/src/webapp/sakai-blogger-tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 11:42:27 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37457 + +Author: a.fish@lancaster.ac.uk +Date: 2007-10-29 11:38:09 -0400 (Mon, 29 Oct 2007) +New Revision: 37457 + +Modified: +blog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/LegendWriter.java +blog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/PostWriter.java +blog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIEditPost.java +blog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIListOfPosts.java +blog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PostEditionAbstractController.java +blog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/validators/PostTitleValidator.java +blog/trunk/tool/src/webapp/WEB-INF/faces-config.xml +blog/trunk/tool/src/webapp/sakai-blogger-tool/AddCommentView.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/ConfirmDeletePost.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/CreatePostView.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/EditPostView.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/MembersView.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/PreviewPost.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/UserBlogView.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/ViewPost.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/main.jsp +blog/trunk/tool/src/webapp/sakai-blogger-tool/title.jsp +Log: +SAK-7578. Moved the blog code from using ResourceBundle to using the ResourceLoader. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Mon Oct 29 11:42:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 11:42:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 11:42:17 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by jacknife.mail.umich.edu () with ESMTP id l9TFgGim032223; + Mon, 29 Oct 2007 11:42:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4725FF49.6552A.26498 ; + 29 Oct 2007 11:42:04 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5E71A6E373; + Sun, 28 Oct 2007 22:09:45 +0000 (GMT) +Message-ID: <200710291539.l9TFd2Mu019135@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 260 + for ; + Sun, 28 Oct 2007 22:09:31 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 375FA1C367 + for ; Mon, 29 Oct 2007 15:41:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFd2SS019137 + for ; Mon, 29 Oct 2007 11:39:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFd2Mu019135 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:39:02 -0400 +Date: Mon, 29 Oct 2007 11:39:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r37456 - reference/trunk/library/src/webapp/skin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 11:42:17 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37456 + +Author: gsilver@umich.edu +Date: 2007-10-29 11:39:01 -0400 (Mon, 29 Oct 2007) +New Revision: 37456 + +Modified: +reference/trunk/library/src/webapp/skin/tool_base.css +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12071 +- *not* for 2.5 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Mon Oct 29 11:16:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 11:16:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 11:16:54 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by panther.mail.umich.edu () with ESMTP id l9TFGrI7017947; + Mon, 29 Oct 2007 11:16:53 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4725F959.299F1.24977 ; + 29 Oct 2007 11:16:44 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C0A146E36E; + Sun, 28 Oct 2007 21:44:23 +0000 (GMT) +Message-ID: <200710291513.l9TFDeIh019076@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 208 + for ; + Sun, 28 Oct 2007 21:44:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 38077BE03 + for ; Mon, 29 Oct 2007 15:16:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFDeTZ019078 + for ; Mon, 29 Oct 2007 11:13:40 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFDeIh019076 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:13:40 -0400 +Date: Mon, 29 Oct 2007 11:13:40 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37455 - tool/trunk/tool-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 11:16:54 2007 +X-DSPAM-Confidence: 0.9801 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37455 + +Author: mbreuker@loi.nl +Date: 2007-10-29 11:13:33 -0400 (Mon, 29 Oct 2007) +New Revision: 37455 + +Modified: +tool/trunk/tool-impl/impl/src/bundle/tools_nl.properties +Log: +SAK-12021 - update dutch translations (tool names) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Mon Oct 29 11:14:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 11:14:53 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 11:14:53 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id l9TFEpvj011975; + Mon, 29 Oct 2007 11:14:51 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4725F8E5.A915.30925 ; + 29 Oct 2007 11:14:48 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 50FE945772; + Sun, 28 Oct 2007 21:42:22 +0000 (GMT) +Message-ID: <200710291511.l9TFBfjV019064@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 150 + for ; + Sun, 28 Oct 2007 21:42:10 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E4DF3BE03 + for ; Mon, 29 Oct 2007 15:14:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFBf0v019066 + for ; Mon, 29 Oct 2007 11:11:41 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFBfjV019064 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:11:41 -0400 +Date: Mon, 29 Oct 2007 11:11:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37454 - osp/trunk/common/tool/src/bundle/org/theospi/portfolio/common/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 11:14:53 2007 +X-DSPAM-Confidence: 0.9798 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37454 + +Author: mbreuker@loi.nl +Date: 2007-10-29 11:11:37 -0400 (Mon, 29 Oct 2007) +New Revision: 37454 + +Modified: +osp/trunk/common/tool/src/bundle/org/theospi/portfolio/common/bundle/Messages_nl.properties +Log: +SAK-12021 - update dutch translations (osp common) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Mon Oct 29 10:58:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 10:58:15 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 10:58:15 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by faithful.mail.umich.edu () with ESMTP id l9TEwE7G001788; + Mon, 29 Oct 2007 10:58:14 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 4725F501.114F3.12140 ; + 29 Oct 2007 10:58:12 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0BA786DB06; + Sun, 28 Oct 2007 21:25:49 +0000 (GMT) +Message-ID: <200710291455.l9TEt58R019050@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 14 + for ; + Sun, 28 Oct 2007 21:25:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 360B71BAD3 + for ; Mon, 29 Oct 2007 14:57:47 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEt58k019052 + for ; Mon, 29 Oct 2007 10:55:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEt58R019050 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:55:05 -0400 +Date: Mon, 29 Oct 2007 10:55:05 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37453 - content/trunk/content-bundles +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 10:58:15 2007 +X-DSPAM-Confidence: 0.9789 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37453 + +Author: mbreuker@loi.nl +Date: 2007-10-29 10:55:00 -0400 (Mon, 29 Oct 2007) +New Revision: 37453 + +Modified: +content/trunk/content-bundles/types_nl.properties +Log: +SAK-12021 - update dutch translations (resources tool) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Mon Oct 29 10:27:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 10:27:51 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 10:27:51 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id l9TERoIB014807; + Mon, 29 Oct 2007 10:27:50 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4725EDD8.AEBD3.4300 ; + 29 Oct 2007 10:27:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 12C1A6E26B; + Sun, 28 Oct 2007 20:55:19 +0000 (GMT) +Message-ID: <200710291424.l9TEOiuC018963@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385 + for ; + Sun, 28 Oct 2007 20:55:09 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 263571341D + for ; Mon, 29 Oct 2007 14:27:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEOiMM018965 + for ; Mon, 29 Oct 2007 10:24:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEOiuC018963 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:24:44 -0400 +Date: Mon, 29 Oct 2007 10:24:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37452 - user/trunk/user-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 10:27:51 2007 +X-DSPAM-Confidence: 0.9774 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37452 + +Author: mbreuker@loi.nl +Date: 2007-10-29 10:24:40 -0400 (Mon, 29 Oct 2007) +New Revision: 37452 + +Modified: +user/trunk/user-tool/tool/src/bundle/admin_nl.properties +Log: +SAK-12021 - update dutch translations (user tool) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Mon Oct 29 10:27:24 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 10:27:24 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 10:27:24 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id l9TERNRp013585; + Mon, 29 Oct 2007 10:27:23 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4725EDB6.9AB36.6796 ; + 29 Oct 2007 10:27:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F22546E266; + Sun, 28 Oct 2007 20:54:42 +0000 (GMT) +Message-ID: <200710291424.l9TEO4sX018951@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 670 + for ; + Sun, 28 Oct 2007 20:54:29 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7A9A81341D + for ; Mon, 29 Oct 2007 14:26:45 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEO4ix018953 + for ; Mon, 29 Oct 2007 10:24:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEO4sX018951 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:24:04 -0400 +Date: Mon, 29 Oct 2007 10:24:04 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37451 - user/trunk/user-tool-prefs/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 10:27:24 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37451 + +Author: mbreuker@loi.nl +Date: 2007-10-29 10:24:00 -0400 (Mon, 29 Oct 2007) +New Revision: 37451 + +Modified: +user/trunk/user-tool-prefs/tool/src/bundle/user-tool-prefs_nl.properties +Log: +SAK-12021 - update dutch translations (user prefs tool) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Mon Oct 29 10:26:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 10:26:25 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 10:26:25 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id l9TEQOCd012958; + Mon, 29 Oct 2007 10:26:24 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4725ED8A.83257.23048 ; + 29 Oct 2007 10:26:21 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A35E462399; + Sun, 28 Oct 2007 20:53:56 +0000 (GMT) +Message-ID: <200710291423.l9TENJoh018939@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 62 + for ; + Sun, 28 Oct 2007 20:53:44 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EFC3D1341D + for ; Mon, 29 Oct 2007 14:26:00 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TENKsn018941 + for ; Mon, 29 Oct 2007 10:23:20 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TENJoh018939 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:23:19 -0400 +Date: Mon, 29 Oct 2007 10:23:19 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37450 - usermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 10:26:25 2007 +X-DSPAM-Confidence: 0.9823 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37450 + +Author: mbreuker@loi.nl +Date: 2007-10-29 10:23:15 -0400 (Mon, 29 Oct 2007) +New Revision: 37450 + +Modified: +usermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_nl.properties +Log: +SAK-12021 - update dutch translations (usermembership tool) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Mon Oct 29 10:22:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 10:22:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 10:22:43 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by sleepers.mail.umich.edu () with ESMTP id l9TEMgKm009248; + Mon, 29 Oct 2007 10:22:42 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4725ECAB.8B224.13124 ; + 29 Oct 2007 10:22:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4A2896E25E; + Sun, 28 Oct 2007 20:50:15 +0000 (GMT) +Message-ID: <200710291419.l9TEJftD018927@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 86 + for ; + Sun, 28 Oct 2007 20:49:58 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 94331CF0F + for ; Mon, 29 Oct 2007 14:22:22 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEJfDI018929 + for ; Mon, 29 Oct 2007 10:19:41 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEJftD018927 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:19:41 -0400 +Date: Mon, 29 Oct 2007 10:19:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37449 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 10:22:43 2007 +X-DSPAM-Confidence: 0.9778 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37449 + +Author: ajpoland@iupui.edu +Date: 2007-10-29 10:19:40 -0400 (Mon, 29 Oct 2007) +New Revision: 37449 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 29 10:22:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 10:22:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 10:22:13 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id l9TEMDFA009789; + Mon, 29 Oct 2007 10:22:13 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4725EC8E.DABED.14790 ; + 29 Oct 2007 10:22:10 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9F6B16E25F; + Sun, 28 Oct 2007 20:49:41 +0000 (GMT) +Message-ID: <200710291419.l9TEJ1Kc018915@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800 + for ; + Sun, 28 Oct 2007 20:49:24 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5986BCF0F + for ; Mon, 29 Oct 2007 14:21:42 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEJ1Vx018917 + for ; Mon, 29 Oct 2007 10:19:01 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEJ1Kc018915 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:19:01 -0400 +Date: Mon, 29 Oct 2007 10:19:01 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37448 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 10:22:13 2007 +X-DSPAM-Confidence: 0.9901 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37448 + +Author: rjlowe@iupui.edu +Date: 2007-10-29 10:19:00 -0400 (Mon, 29 Oct 2007) +New Revision: 37448 + +Modified: +gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +svn merge -r 37446:37447 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +svn log -r 37447:37447 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37447 | rjlowe@iupui.edu | 2007-10-29 10:16:51 -0400 (Mon, 29 Oct 2007) | 3 lines + +SAK-11270 +http://bugs.sakaiproject.org/jira/browse/SAK-11270 +gb / assignment list in "Roster/All Grades" view +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 29 10:20:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 10:20:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 10:20:04 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by score.mail.umich.edu () with ESMTP id l9TEK3VN010780; + Mon, 29 Oct 2007 10:20:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4725EC0B.E2E58.32253 ; + 29 Oct 2007 10:19:59 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D5745A35E; + Sun, 28 Oct 2007 20:47:27 +0000 (GMT) +Message-ID: <200710291416.l9TEGqgJ018903@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 948 + for ; + Sun, 28 Oct 2007 20:47:05 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 81690CF0F + for ; Mon, 29 Oct 2007 14:19:33 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEGqTl018905 + for ; Mon, 29 Oct 2007 10:16:52 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEGqgJ018903 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:16:52 -0400 +Date: Mon, 29 Oct 2007 10:16:52 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37447 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 10:20:04 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37447 + +Author: rjlowe@iupui.edu +Date: 2007-10-29 10:16:51 -0400 (Mon, 29 Oct 2007) +New Revision: 37447 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +SAK-11270 +http://bugs.sakaiproject.org/jira/browse/SAK-11270 +gb / assignment list in "Roster/All Grades" view + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Mon Oct 29 08:12:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 08:12:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 08:12:04 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by score.mail.umich.edu () with ESMTP id l9TCC3pG013822; + Mon, 29 Oct 2007 08:12:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4725CE07.79173.27382 ; + 29 Oct 2007 08:12:01 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4D3AB5057F; + Sun, 28 Oct 2007 18:39:25 +0000 (GMT) +Message-ID: <200710291208.l9TC8set018722@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 196 + for ; + Sun, 28 Oct 2007 18:39:12 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2F0451B989 + for ; Mon, 29 Oct 2007 12:11:35 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TC8sm1018724 + for ; Mon, 29 Oct 2007 08:08:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TC8set018722 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 08:08:54 -0400 +Date: Mon, 29 Oct 2007 08:08:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r37446 - blog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 08:12:04 2007 +X-DSPAM-Confidence: 0.9867 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37446 + +Author: a.fish@lancaster.ac.uk +Date: 2007-10-29 08:08:47 -0400 (Mon, 29 Oct 2007) +New Revision: 37446 + +Modified: +blog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence/SakaiPersistenceManager.java +Log: +SAK-10367. Turned on stack trace printing in all the potentially suspect methods. Previous to this pretty much all of the useful information in the traces was being dumped and an empty PersistenceException was being thrown. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Mon Oct 29 08:07:51 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 08:07:51 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 08:07:51 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id l9TC7oB0011617; + Mon, 29 Oct 2007 08:07:50 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4725CD11.4E32.3084 ; + 29 Oct 2007 08:07:47 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 725C15B026; + Sun, 28 Oct 2007 18:35:16 +0000 (GMT) +Message-ID: <200710291204.l9TC4jH0018702@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 204 + for ; + Sun, 28 Oct 2007 18:35:03 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B5F06B054 + for ; Mon, 29 Oct 2007 12:07:25 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TC4j7t018704 + for ; Mon, 29 Oct 2007 08:04:45 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TC4jH0018702 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 08:04:45 -0400 +Date: Mon, 29 Oct 2007 08:04:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r37445 - blog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 08:07:51 2007 +X-DSPAM-Confidence: 0.9794 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37445 + +Author: a.fish@lancaster.ac.uk +Date: 2007-10-29 08:04:35 -0400 (Mon, 29 Oct 2007) +New Revision: 37445 + +Modified: +blog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PostViewerController.java +blog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PreviewPostController.java +Log: +When you now preview a post and save from the preview window, you are taken straight to the view for the post just saved. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From a.fish@lancaster.ac.uk Mon Oct 29 08:03:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 08:03:16 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 08:03:16 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id l9TC3ENC008845; + Mon, 29 Oct 2007 08:03:14 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4725CBFC.A2054.26386 ; + 29 Oct 2007 08:03:12 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DA48E560A4; + Sun, 28 Oct 2007 18:30:41 +0000 (GMT) +Message-ID: <200710291200.l9TC07Do018688@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 431 + for ; + Sun, 28 Oct 2007 18:30:20 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 375F7B054 + for ; Mon, 29 Oct 2007 12:02:48 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TC07NB018690 + for ; Mon, 29 Oct 2007 08:00:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TC07Do018688 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 08:00:07 -0400 +Date: Mon, 29 Oct 2007 08:00:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f +To: source@collab.sakaiproject.org +From: a.fish@lancaster.ac.uk +Subject: [sakai] svn commit: r37444 - blog/trunk/tool/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 08:03:16 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37444 + +Author: a.fish@lancaster.ac.uk +Date: 2007-10-29 08:00:00 -0400 (Mon, 29 Oct 2007) +New Revision: 37444 + +Modified: +blog/trunk/tool/src/webapp/WEB-INF/web.xml +Log: +SAK-11750. Changed JsfTool to HelperAwareJsfTool. I do not know whether this has fixed the problem as I cannot even see a book button on my browser (Firefox on OSX) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Mon Oct 29 07:41:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 07:41:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 07:41:38 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by score.mail.umich.edu () with ESMTP id l9TBfbS9001046; + Mon, 29 Oct 2007 07:41:37 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4725C6EC.542BE.21680 ; + 29 Oct 2007 07:41:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0CB076D60C; + Sun, 28 Oct 2007 18:08:29 +0000 (GMT) +Message-ID: <200710291136.l9TBa1h0018667@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 513 + for ; + Sun, 28 Oct 2007 18:07:49 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C16BDB054 + for ; Mon, 29 Oct 2007 11:38:41 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TBa1sO018669 + for ; Mon, 29 Oct 2007 07:36:01 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TBa1h0018667 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 07:36:01 -0400 +Date: Mon, 29 Oct 2007 07:36:01 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37443 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 07:41:38 2007 +X-DSPAM-Confidence: 0.8494 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37443 + +Author: dlhaines@umich.edu +Date: 2007-10-29 07:35:59 -0400 (Mon, 29 Oct 2007) +New Revision: 37443 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties +Log: +CTools: update for evaulation tools fixes. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Mon Oct 29 06:51:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 06:51:10 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 06:51:10 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by casino.mail.umich.edu () with ESMTP id l9TAp9YG018708; + Mon, 29 Oct 2007 06:51:09 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 4725BB14.B077B.17971 ; + 29 Oct 2007 06:51:04 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7C08B561EA; + Sun, 28 Oct 2007 17:21:31 +0000 (GMT) +Message-ID: <200710291047.l9TAlwTX018653@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 169 + for ; + Sun, 28 Oct 2007 17:21:13 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5F9BC1B966 + for ; Mon, 29 Oct 2007 10:50:39 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TAlxp6018655 + for ; Mon, 29 Oct 2007 06:47:59 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TAlwTX018653 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 06:47:58 -0400 +Date: Mon, 29 Oct 2007 06:47:58 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37442 - osp/trunk/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 06:51:10 2007 +X-DSPAM-Confidence: 0.8468 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37442 + +Author: mbreuker@loi.nl +Date: 2007-10-29 06:47:54 -0400 (Mon, 29 Oct 2007) +New Revision: 37442 + +Modified: +osp/trunk/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle/Messages_nl.properties +Log: +SAK-12021 - update dutch translations (osp matrix tool) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From david.horwitz@uct.ac.za Mon Oct 29 06:46:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 06:46:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 06:46:00 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id l9TAjxEs023166; + Mon, 29 Oct 2007 06:45:59 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4725B9DF.A88F.21380 ; + 29 Oct 2007 06:45:56 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4CC665057F; + Sun, 28 Oct 2007 17:16:11 +0000 (GMT) +Message-ID: <200710291042.l9TAgcC6018641@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 624 + for ; + Sun, 28 Oct 2007 17:15:56 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 10E541BCB2 + for ; Mon, 29 Oct 2007 10:45:21 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TAgdHt018643 + for ; Mon, 29 Oct 2007 06:42:39 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TAgcC6018641 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 06:42:38 -0400 +Date: Mon, 29 Oct 2007 06:42:38 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f +To: source@collab.sakaiproject.org +From: david.horwitz@uct.ac.za +Subject: [sakai] svn commit: r37441 - in polls/branches/sakai_2-4-x: . tool/src/java/org/sakaiproject/poll/tool/producers +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 06:46:00 2007 +X-DSPAM-Confidence: 0.9805 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37441 + +Author: david.horwitz@uct.ac.za +Date: 2007-10-29 06:41:06 -0400 (Mon, 29 Oct 2007) +New Revision: 37441 + +Modified: +polls/branches/sakai_2-4-x/.classpath +polls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/producers/PollVoteProducer.java +Log: +SAK-12067 add unique constraint to TML loop + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Mon Oct 29 01:51:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 29 Oct 2007 01:51:30 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 29 Oct 2007 01:51:30 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by jacknife.mail.umich.edu () with ESMTP id l9T5pT7R009048; + Mon, 29 Oct 2007 01:51:29 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 472574D9.29D8F.7522 ; + 29 Oct 2007 01:51:26 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9CA106DDA7; + Sun, 28 Oct 2007 12:21:31 +0000 (GMT) +Message-ID: <200710290548.l9T5m6rT018055@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 867 + for ; + Sun, 28 Oct 2007 12:21:08 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A85BA1BA35 + for ; Mon, 29 Oct 2007 05:50:46 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9T5m7Mx018057 + for ; Mon, 29 Oct 2007 01:48:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9T5m6rT018055 + for source@collab.sakaiproject.org; Mon, 29 Oct 2007 01:48:06 -0400 +Date: Mon, 29 Oct 2007 01:48:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37440 - in content/branches/SAK-11543: content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/cover content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 29 01:51:30 2007 +X-DSPAM-Confidence: 0.9826 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37440 + +Author: zach.thomas@txstate.edu +Date: 2007-10-29 01:47:56 -0400 (Mon, 29 Oct 2007) +New Revision: 37440 + +Modified: +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +Log: +fixed problem of persisting (and showing) condition argument, e.g. score threshold for condition + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jimeng@umich.edu Sun Oct 28 20:48:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Sun, 28 Oct 2007 20:48:23 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Sun, 28 Oct 2007 20:48:23 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by casino.mail.umich.edu () with ESMTP id l9T0mLWV006068; + Sun, 28 Oct 2007 20:48:21 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47252DCD.88D3.11036 ; + 28 Oct 2007 20:48:16 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 86BE450EC1; + Sun, 28 Oct 2007 07:18:27 +0000 (GMT) +Message-ID: <200710290045.l9T0jD4Q016959@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 919 + for ; + Sun, 28 Oct 2007 07:18:01 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6F69B12A45 + for ; Mon, 29 Oct 2007 00:47:52 +0000 (GMT) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9T0jDK8016961 + for ; Sun, 28 Oct 2007 20:45:13 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9T0jD4Q016959 + for source@collab.sakaiproject.org; Sun, 28 Oct 2007 20:45:13 -0400 +Date: Sun, 28 Oct 2007 20:45:13 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f +To: source@collab.sakaiproject.org +From: jimeng@umich.edu +Subject: [sakai] svn commit: r37439 - in reference/trunk/library/src/webapp: . dojo dojo/dojo-release-0.9.0 dojo/dojo-release-0.9.0/dijit dojo/dojo-release-0.9.0/dijit/_base dojo/dojo-release-0.9.0/dijit/_editor dojo/dojo-release-0.9.0/dijit/_editor/nls dojo/dojo-release-0.9.0/dijit/_editor/nls/de dojo/dojo-release-0.9.0/dijit/_editor/nls/it dojo/dojo-release-0.9.0/dijit/_editor/plugins dojo/dojo-release-0.9.0/dijit/_tree dojo/dojo-release-0.9.0/dijit/bench dojo/dojo-release-0.9.0/dijit/demos dojo/dojo-release-0.9.0/dijit/demos/mail dojo/dojo-release-0.9.0/dijit/form dojo/dojo-release-0.9.0/dijit/form/nls dojo/dojo-release-0.9.0/dijit/form/nls/de dojo/dojo-release-0.9.0/dijit/form/nls/fr dojo/dojo-release-0.9.0/dijit/form/nls/it dojo/dojo-release-0.9.0/dijit/form/nls/ja dojo/dojo-release-0.9.0/dijit/form/nls/zh-cn dojo/dojo-release-0.9.0/dijit/form/templates dojo/dojo-release-0.9.0/dijit/layout dojo/dojo-release-0.9.0/dijit/layout/templates dojo/dojo-release-0.9.0/dijit/nls ! + dojo/dojo-release-0.9.0/dijit/nls/de dojo/dojo-release-0.9.0/dijit/templates dojo/dojo-release-0.9.0/dijit/templates/buttons dojo/dojo-release-0.9.0/dijit/tests dojo/dojo-release-0.9.0/dijit/tests/_base dojo/dojo-release-0.9.0/dijit/tests/_editor dojo/dojo-release-0.9.0/dijit/tests/css dojo/dojo-release-0.9.0/dijit/tests/form dojo/dojo-release-0.9.0/dijit/tests/form/images dojo/dojo-release-0.9.0/dijit/tests/i18n dojo/dojo-release-0.9.0/dijit/tests/images dojo/dojo-release-0.9.0/dijit/tests/layout dojo/dojo-release-0.9.0/dijit/themes dojo/dojo-release-0.9.0/dijit/themes/a11y dojo/dojo-release-0.9.0/dijit/themes/noir dojo/dojo-release-0.9.0/dijit/themes/noir/images dojo/dojo-release-0.9.0/dijit/themes/sakadojo dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images dojo/dojo-release-0.9.0/dijit/themes/soria dojo/dojo-release-0.9.0/dijit/themes/soria/images dojo/dojo-release-0.9.0/dijit/themes/tundra dojo/dojo-release-0.9.0/dijit/themes/tundra/images dojo/dojo-release-0.9.0/dojo! + dojo/dojo-release-0.9.0/dojo/_firebug dojo/dojo-release-0.9.0! + /dojo/cl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Sun Oct 28 20:48:23 2007 +X-DSPAM-Confidence: 0.6187 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37439 + +Author: jimeng@umich.edu +Date: 2007-10-28 20:23:08 -0400 (Sun, 28 Oct 2007) +New Revision: 37439 + +Added: +reference/trunk/library/src/webapp/dojo/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/ColorPalette.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Declaration.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Dialog.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Editor.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Menu.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/ProgressBar.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/TitlePane.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Toolbar.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Tooltip.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Tree.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Calendar.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Container.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Templated.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Widget.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/bidi.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/focus.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/manager.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/place.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/popup.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/scroll.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/sniff.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/typematic.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/wai.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/window.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/RichText.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/_Plugin.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/LinkDialog.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/commands.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/de/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/de/commands.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/it/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/it/commands.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/AlwaysShowToolbar.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/EnterKeyHandling.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/LinkDialog.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/range.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/selection.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/Controller.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/Node.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/Tree.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/benchReceive.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/benchTool.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/create_widgets.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/test_Button-programmatic.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/test_button-results.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/widget_construction_test.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/changes.txt +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/form.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/icons.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/mail.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/mail.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit-all.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit-all.js.uncompressed.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit.js.uncompressed.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Button.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/CheckBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/ComboBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/CurrencyTextBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/DateTextBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/FilteringSelect.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Form.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/InlineEditBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/NumberSpinner.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/NumberTextBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Slider.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/TextBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Textarea.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/TimeTextBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/ValidationTextBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_DropDownTextBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_FormWidget.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_Spinner.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_TimePicker.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/ComboBox.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/Textarea.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/de/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/de/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/fr/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/fr/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/it/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/it/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/ja/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/ja/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/zh-cn/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/zh-cn/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/Button.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/CheckBox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/ComboBox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/ComboButton.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/DropDownButton.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/HorizontalSlider.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/InlineEditBox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/Spinner.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/TextBox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/TimePicker.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/VerticalSlider.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/blank.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/AccordionContainer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/ContentPane.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/LayoutContainer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/LinkPane.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/SplitContainer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/StackContainer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/TabContainer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/_LayoutWidget.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/AccordionPane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/TabContainer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/TooltipDialog.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/common.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/de/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/de/common.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ROOT.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_de-de.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_de.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_en-gb.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_en-us.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_en.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_es-es.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_es.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_fr-fr.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_fr.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_it-it.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_it.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ja-jp.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ja.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ko-kr.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ko.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_pt-br.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_pt.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_xx.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_zh-cn.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_zh-tw.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_zh.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/loading.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/Calendar.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/ColorPalette.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/Dialog.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/ProgressBar.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/TitlePane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/Tooltip.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/blank.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/buttons/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/buttons/bg-fade.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/colors3x4.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/colors7x10.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/Container.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/Container.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_Templated.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_Templated.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/manager.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/manager.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_FocusManager.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_focusWidget.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_placeStrict.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_typematic.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_editor/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_editor/test_RichText.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_editor/test_richtext.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/countries.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/css/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/css/dijitTests.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/Form.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/Form.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxData.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxDataToo.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/images/Alabama.jpg +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Button.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_CheckBox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_ComboBox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_ComboBox_destroy.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_FilteringSelect.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_InlineEditBox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Slider.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Spinner.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Textarea.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_validate.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/currency.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/date.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/number.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/test_i18n.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/textbox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/time.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/arrowSmall.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/copy.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/cut.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/flatScreen.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/note.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/paste.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/plus.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/testsBodyBg.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/tube.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/tubeTall.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/ContentPane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/ContentPane.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/combotab.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/doc0.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/doc1.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/doc2.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/getResponse.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/tab1.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/tab2.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_AccordionContainer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_ContentPane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_Layout.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_LayoutCode.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_LayoutContainer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_SplitContainer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_StackContainer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_TabContainer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_TabContainer_remote.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/ondijitclick.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/ondijitclick.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/testBidi.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Calendar.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_ColorPalette.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Declaration.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Dialog.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Editor.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Menu.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_ProgressBar.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Table.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_TitlePane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Toolbar.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Tooltip.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Tree.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Tree_Notification_API_Support.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/treeTest.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/widgetsInTemplate.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/widgetsInTemplate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/a11y/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/a11y/README.txt +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/a11y/indeterminate_progress.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/dijit.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/dijit_rtl.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonActive-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonActive-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonActive-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonDisabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonDisabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonDisabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonEnabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonEnabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonEnabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonHover-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonHover-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonHover-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/close.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/closeActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/closeHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowActive-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowActive-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowActive-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowHover-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowHover-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowHover-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnActive-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnActive-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnActive-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnHover-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnHover-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnHover-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonDisabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonDisabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonDisabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonEnabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonEnabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonEnabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-center.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-center.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-right-06.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-center.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndNoCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndNoMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/images.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectActive-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectActive-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectActive-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectDisabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectDisabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectDisabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectEnabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectEnabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectEnabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectHover-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectHover-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectHover-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerActive-bottom.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerActive-top.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-bottom.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-top.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-bottom.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-top.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerHover-bottom.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerHover-top.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabActive-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabActive-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabActive-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabDisabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabDisabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabDisabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabEnabled-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabEnabled-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabEnabled-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabHover-left.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabHover-right.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabHover-stretch.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.psd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/dojoUITundra06.psd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/dojosakadojoGradientBg.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/dojosakadojoGradientBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowDown.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowLeft.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowLeft.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowRight.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowRight.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowUp.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/calendarDayLabel.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/calendarMonthLabel.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/calendarYearLabel.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmark.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmark.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmarkNoBorder.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmarkNoBorder.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dijitProgressBarAnim.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dijitProgressBarAnim.psd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndNoCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndNoMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/doubleArrowDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/doubleArrowUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/editor.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i_half.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i_half_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/menu.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/no.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/noX.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/popupMenuBg.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/preciseSliderThumb.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/preciseSliderThumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-1.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-2.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-3.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-4.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-5.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-6.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-7.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-8.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-9.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim.psd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarEmpty.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarFull.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonActiveDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonActiveHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderEmpty.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderEmptyVertical.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderFull.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderFullVertical.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderThumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/smallArrowDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/smallArrowUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerH-thumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerH.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerV-thumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerV.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabClose.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabClose.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabCloseHover.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabCloseHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/titleBar.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/titleBarBg.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorDown.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorLeft.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorLeft.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorRight.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorRight.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorUp.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_leaf.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_leaf_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_loading.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_minus.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_minus_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_plus.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_plus_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/validationInputBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo_rtl.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/arrows.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/checkmark.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndNoCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndNoMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/editor.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientBottomBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientInverseBottomBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientInverseTopBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientTopBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/preciseSliderThumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/progressBarAnim.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/sliderThumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerH-thumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerH.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerV-thumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerV.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/tabClose.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/tabCloseHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/tooltips.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_loading.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_minus.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_minus_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_plus.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_plus_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/soria.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/soria_rtl.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/templateThemeTest.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/themeTester.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/dojoTundraGradientBg.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/dojoTundraGradientBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/dojoUITundra06.psd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowDown.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowLeft.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowLeft.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowRight.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowRight.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowUp.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/calendarDayLabel.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/calendarMonthLabel.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/calendarYearLabel.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmark.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmark.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmarkNoBorder.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmarkNoBorder.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dijitProgressBarAnim.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dijitProgressBarAnim.psd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndNoCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndNoMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/doubleArrowDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/doubleArrowUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/editor.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i_half.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i_half_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/menu.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/no.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/noX.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/popupMenuBg.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/preciseSliderThumb.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/preciseSliderThumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-1.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-2.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-3.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-4.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-5.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-6.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-7.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-8.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-9.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim.psd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarEmpty.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarFull.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonActiveDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonActiveHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderEmpty.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderEmptyVertical.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderFull.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderFullVertical.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderThumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/smallArrowDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/smallArrowUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerH-thumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerH.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerV-thumb.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerV.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabActive.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabClose.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabClose.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabCloseHover.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabCloseHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabDisabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabEnabled.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabHover.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/titleBar.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/titleBarBg.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorDown.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorLeft.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorLeft.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorRight.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorRight.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorUp.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_leaf.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_leaf_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_loading.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_minus.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_minus_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_plus.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_plus_rtl.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/validationInputBg.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/tundra.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/tundra_rtl.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/AdapterRegistry.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/DeferredList.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/OpenAjax.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/LICENSE +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/errorIcon.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/firebug.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/firebug.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/infoIcon.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/warningIcon.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/back.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/behavior.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/build.txt +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/monetary.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de-de/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de-de/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-au/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-au/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-au/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-gb/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-gb/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-us/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-us/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-us/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es-es/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es-es/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es-es/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it-it/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it-it/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja-jp/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja-jp/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko-kr/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko-kr/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko-kr/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt-br/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt-br/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-cn/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-cn/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-cn/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-tw/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-tw/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh/gregorian.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/supplemental.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/colors.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cookie.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/ItemFileReadStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/ItemFileWriteStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Identity.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Notification.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Read.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Request.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Write.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/filter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/simpleFetch.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/sorter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date/locale.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date/stamp.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/autoscroll.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/avatar.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/common.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/container.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/manager.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/move.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/selector.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/source.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dojo.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dojo.js.uncompressed.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/fx.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/i18n.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/io/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/io/iframe.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/io/script.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/nls/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/nls/colors.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/parser.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/regexp.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/LICENSE +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/blank.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/dnd.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/dojo.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/iframe_history.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndNoCopy.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndNoMove.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/JsonService.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/JsonpService.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/RpcService.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/string.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/AdapterRegistry.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/TODO +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/Color.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/Deferred.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/NodeList.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/foo/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/foo/bar.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/testEval.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/addLoadEvents.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/bootstrap.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/getText.txt +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/hostenv_browser.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/hostenv_rhino.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/hostenv_spidermonkey.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/loader.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/array.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/connect.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/declare.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/fx.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/fx.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_box.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_box_quirks.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_quirks.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_rtl.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/json.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/lang.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/query.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/query.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/timeout.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/xhr.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/xhr.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/xhrDummyMethod.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/back-bookmark.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/back.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/back.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/behavior.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/behavior.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/cldr.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/colors.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/connect.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/cookie.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/cookie.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/currency.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/ItemFileReadStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/ItemFileWriteStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_commentFiltered.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_idcollision.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withBoolean.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withDates.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withNull.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_large.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_small.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/readOnlyItemFileTestTemplates.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/utils.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date/locale.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date/stamp.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/dndDefault.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/flickr_viewer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_box_constraints.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_container.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_container_markup.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_custom_constraints.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_dnd.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_form.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_moveable.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_moveable_markup.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_params.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_parent_constraints.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_parent_constraints_margins.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_selector.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_selector_markup.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/fx.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/fx.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/i18n.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframe.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframe.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.js.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.json.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.text.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeUploadTest.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/script.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/script.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/scriptJsonp.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/scriptSimple.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/scriptTimeout.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/upload.cgi +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ar/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ar/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/cs/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/cs/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/de/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/de/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/el/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/el/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-au/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-au/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-hawaii/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-hawaii/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-new_york-brooklyn/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-new_york-brooklyn/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-texas/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-texas/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/es/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/es/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fa/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fa/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fr/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fr/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/he/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/he/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/hi/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/hi/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/it/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/it/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ja/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ja/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ko/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ko/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pl/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pl/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pt/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pt/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ru/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ru/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/sw/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/sw/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/th/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/th/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/tr/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/tr/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/yi/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/yi/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-cn/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-cn/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-tw/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-tw/salutations.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/number.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/parser.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/parser.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/ApplicationState.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/JSON.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/testClass.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/testClass.smd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/test_JsonRPCMediator.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/test_css.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/rpc.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/string.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_cometd/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_cometd/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_cometd/cometd.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/LICENSE +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/_crypto.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/common.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/demos/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/demos/customers/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/demos/customers/customers.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/Theme.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/_color.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/Theme.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/_color.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/charting.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/GreySkies.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/blue.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/cyan.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/green.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/orange.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/purple.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/red.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/ArrayList.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/BinaryTree.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Dictionary.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Queue.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Set.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/SortedList.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Stack.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/ArrayList.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/BinaryTree.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Dictionary.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Queue.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Set.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/SortedList.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Stack.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/collections.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/cometd.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/Blowfish.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/LICENSE +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/MD5.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/Blowfish.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/MD5.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/crypto.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/CsvStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/FlickrStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/HtmlTableStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/OpmlStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/XmlStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_DataDemoTable.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_FlickrStore.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_FlickrStoreTree.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_LazyLoad.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_MultiStores.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/flickrDemo.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Argentina/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Argentina/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Brazil/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Brazil/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Ottawa/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Ottawa/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Toronto/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Toronto/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/China/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/China/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Commonwealth of Australia/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Commonwealth of Australia/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Egypt/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Egypt/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/France/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/France/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Germany/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Germany/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/India/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/India/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Italy/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Italy/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Mombasa/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Mombasa/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Nairobi/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Nairobi/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Guadalajara/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Guadalajara/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Mexico City/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Mexico City/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mongolia/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mongolia/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Russia/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Russia/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Spain/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Spain/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/Khartoum/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/Khartoum/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/United States of America/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/United States of America/data.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/root.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/stores/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/stores/LazyLoadJSIStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/FlickrView.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/FlickrViewList.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/templates/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/templates/FlickrView.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/templates/FlickrViewList.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/dom.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/dom.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/ml/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/ml/test_HtmlTableStore_declaratively.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/CsvStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/FlickrStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/HtmlTableStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/OpmlStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/XmlStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books2.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books2.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books3.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books_isbnAttr.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books_isbnAttr2.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/geography.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/geography_withspeciallabel.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/movies.csv +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/patterns.csv +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/php.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/posix.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/posix.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/ascii85.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/bits.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/easy64.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/lzw.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/splay.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/ascii85.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/bits.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors2.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors2.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors3.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors3.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/easy64.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/encoding.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/lzw.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/splay.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/test.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/vq.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/_common.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/DojoExternalInterface.as +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/flash6_gateway.fla +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/DojoExternalInterface.as +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/ExpressInstall.as +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/easing.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/test_animateClass.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/test_easing.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/test_sizeTo.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/Silverlight.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/butterfly.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/circles.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/clock.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/images/clock_face.jpg +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/lion.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/tiger.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/matrix.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/path.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/shape.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/silverlight.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/svg.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/Silverlight.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/error.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/placeholder.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/rect.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/matrix.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_arc.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_bezier.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_fill.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_gfx.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_gradient.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_group.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_image1.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_image2.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_linearGradient.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_linestyle.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_pattern.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_poly.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_setPath.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_tbbox.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_text.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_textpath.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_transform.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/vml.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/tests/frag.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/tests/xip.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/xip.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/xip_client.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/xip_server.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/ContentPane.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/FloatingPane.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/ResizeHandle.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/FloatingPane.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/FloatingPane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/ResizeHandle.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/down.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/resize.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/tabClose.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/up.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/ContentPane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/blank.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/dojoLogo.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/gridUnderlay.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/testImage.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/remote/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/remote/getResponse.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/test_FloatingPane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/test_ResizeHandle.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/test_SizingPane.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/_common.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/about.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/editor.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/editor.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/LICENSE +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/build.sh +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/editor.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/commons-beanutils.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/commons-lang-2.2.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/derby.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/ezmorph-1.0.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/jetty-6.1.3.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/jetty-util-6.1.3.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/json-lib-1.0b2-jdk13.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/servlet-api-2.5-6.1.3.jar +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/manifest +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/Document.java +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/Documents.java +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/Main.java +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/MoxieException.java +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/MoxieServlet.java +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/version.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/helloworld/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/helloworld/helloworld.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/helloworld/version.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/docs/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/docs/bookmarklets.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/files.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/network_check.txt +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/offline.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/offline.js.uncompressed.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/checkmark.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/greenball.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/learnhow.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/learnhow.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/offline-widget.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/offline-widget.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/redball.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/roller.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/sync.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/ui.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/SlideShow.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/Show.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/Show.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/Slide.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/SlideShow.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/SlideShow.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/down.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconDirDown.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconDirUp.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconPause.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconPlay.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/next.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/prev.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/up.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/_ext1.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-1.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-2.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-3.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-4.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-5.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-6.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-7.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-8.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-9.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/test_SlideShow.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/test_presentation.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/resources/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/resources/README.template +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/rpc/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/rpc/yahoo.smd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/sql.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/FlashStorageProvider.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/GearsStorageProvider.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Provider.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage.as +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage_version6.swf +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage_version8.swf +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/WhatWGStorageProvider.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/_common.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/build.sh +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/manager.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/storage_dialog.fla +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/resources/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/resources/testBook.txt +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/resources/testXML.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/test_storage.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/test_storage.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/Builder.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/Builder.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/BuilderPerf.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/PerfFun.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/lipsum.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/notes.txt +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/peller.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/string.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/Sequence.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/Streamer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/ThreadPool.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/tests/test_Sequence.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/tests/test_ThreadPool.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/Uuid.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/generateRandomUuid.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/generateTimeBasedUuid.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/tests/uuid.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/ca.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/check.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/creditCard.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/regexp.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/creditcard.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/validate.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/us.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/web.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/ColorPicker.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/ColorPicker.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/hue.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/hueHandle.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/pickerPointer.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/underlay.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList/FisheyeList.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList/blank.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/Loader.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/honey.php +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/icons/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/icons/loading.gif +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Toaster.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Toaster/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Toaster/Toaster.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_1.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_2.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_3.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_4.png +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_ColorPicker.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_FisheyeList.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_Loader.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_Toaster.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/CompositeWire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/DataWire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/TableAdapter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/TextAdapter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/TreeAdapter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/Wire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/XmlWire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/TableContainer.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/TableContainer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/WidgetRepeater.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/countries.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_ActionChaining.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_ActionWiring.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_BasicChildWire.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_BasicColumnWiring.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_ConditionalActions.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_FlickrStoreWire.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_TopicWiring.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/flickrDemo.css +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/states.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Action.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Data.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/DataStore.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Invocation.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Service.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Transfer.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/util.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Action.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Data.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/DataStore.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/DataStore.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Invocation.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/JSON.smd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/XML.smd +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/a.json +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/a.xml +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Transfer.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/module.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/CompositeWire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/ConverterDynamic.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/DataWire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/TableAdapter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/TextAdapter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/TreeAdapter.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/Wire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/XmlWire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/_base.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/runTests.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/wire.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/wireml.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/xml/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/xml/DomParser.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/xml/README +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_browserRunner.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_rhinoRunner.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/ +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/LICENSE +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/doh.wav +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/dohaaa.wav +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/woohoo.wav +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/runner.html +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/runner.js +reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/small_logo.png +Log: +SAK-12063 +This is for 2.6 -- NOT 2.5 +Copying current version of dojo libraries to reference. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 26 23:15:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 23:15:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 23:15:38 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id l9R3Fbdg029760; + Fri, 26 Oct 2007 23:15:37 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4722AD55.8380.5661 ; + 26 Oct 2007 23:15:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2470F5E6AF; + Fri, 26 Oct 2007 10:47:51 +0100 (BST) +Message-ID: <200710270312.l9R3CiMB023836@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 107 + for ; + Fri, 26 Oct 2007 10:47:33 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A5A011DBBE + for ; Sat, 27 Oct 2007 04:15:16 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9R3CiDS023838 + for ; Fri, 26 Oct 2007 23:12:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9R3CiMB023836 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 23:12:44 -0400 +Date: Fri, 26 Oct 2007 23:12:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37436 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 23:15:38 2007 +X-DSPAM-Confidence: 0.8481 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37436 + +Author: zqian@umich.edu +Date: 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007) +New Revision: 37436 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +Log: +fix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Fri Oct 26 19:56:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 19:56:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 19:56:55 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by casino.mail.umich.edu () with ESMTP id l9QNuspp002105; + Fri, 26 Oct 2007 19:56:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47227EC1.9795C.26302 ; + 26 Oct 2007 19:56:52 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4148F64E52; + Fri, 26 Oct 2007 07:28:51 +0100 (BST) +Message-ID: <200710262353.l9QNrort021983@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 434 + for ; + Fri, 26 Oct 2007 07:28:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C63CA1DB9A + for ; Sat, 27 Oct 2007 00:56:22 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QNrpsr021985 + for ; Fri, 26 Oct 2007 19:53:51 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QNrort021983 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 19:53:50 -0400 +Date: Fri, 26 Oct 2007 19:53:50 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37435 - in content/branches/SAK-11543: content-api/api/src/java/org/sakaiproject/content/api content-api/api/src/java/org/sakaiproject/content/cover content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 19:56:55 2007 +X-DSPAM-Confidence: 0.9745 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37435 + +Author: jzaremba@unicon.net +Date: 2007-10-26 19:53:32 -0400 (Fri, 26 Oct 2007) +New Revision: 37435 + +Modified: +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java +content/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +Log: +TSQ-747 UI is partially reflecting existing state. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From colin.clark@utoronto.ca Fri Oct 26 19:25:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 19:25:59 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 19:25:59 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by awakenings.mail.umich.edu () with ESMTP id l9QNPwbm004405; + Fri, 26 Oct 2007 19:25:58 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47227780.6B652.19200 ; + 26 Oct 2007 19:25:55 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B578D4FADB; + Fri, 26 Oct 2007 06:58:05 +0100 (BST) +Message-ID: <200710262322.l9QNMwKY021961@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323 + for ; + Fri, 26 Oct 2007 06:57:46 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7D23813A83 + for ; Sat, 27 Oct 2007 00:25:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QNMxe4021963 + for ; Fri, 26 Oct 2007 19:22:59 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QNMwKY021961 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 19:22:58 -0400 +Date: Fri, 26 Oct 2007 19:22:58 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to colin.clark@utoronto.ca using -f +To: source@collab.sakaiproject.org +From: colin.clark@utoronto.ca +Subject: [sakai] svn commit: r37434 - portal/trunk/portal-charon/charon/src/webapp/scripts +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 19:25:59 2007 +X-DSPAM-Confidence: 0.8480 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37434 + +Author: colin.clark@utoronto.ca +Date: 2007-10-26 19:22:56 -0400 (Fri, 26 Oct 2007) +New Revision: 37434 + +Modified: +portal/trunk/portal-charon/charon/src/webapp/scripts/portalscripts.js +Log: +SAK-11824 + +Portal My Active Sites: Fixes a bug in IE 6 where some form controls show through the My Active Sites drop down menu when it is active. This fix uses an MIT-licensed fucntion written by Brandon Aaron, which hacks around the underlying bug in jQuery using an invisible iFrame. + +Patch from Eli Cochran. + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Oct 26 19:02:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 19:02:09 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 19:02:09 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by brazil.mail.umich.edu () with ESMTP id l9QN27sF005489; + Fri, 26 Oct 2007 19:02:07 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 472271E0.C16C2.22979 ; + 26 Oct 2007 19:02:05 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 25356598EE; + Fri, 26 Oct 2007 06:34:07 +0100 (BST) +Message-ID: <200710262259.l9QMx1Ok021920@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 837 + for ; + Fri, 26 Oct 2007 06:33:42 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E8C271DB6E + for ; Sat, 27 Oct 2007 00:01:32 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QMx1nW021922 + for ; Fri, 26 Oct 2007 18:59:01 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QMx1Ok021920 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 18:59:01 -0400 +Date: Fri, 26 Oct 2007 18:59:01 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37433 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 19:02:09 2007 +X-DSPAM-Confidence: 0.7556 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37433 + +Author: ray@media.berkeley.edu +Date: 2007-10-26 18:58:57 -0400 (Fri, 26 Oct 2007) +New Revision: 37433 + +Modified: +bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +BSP-1324 See if my blind attempt to fix SAK-12029 works better than what we have now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Oct 26 17:10:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 17:10:03 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 17:10:03 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by awakenings.mail.umich.edu () with ESMTP id l9QLA2Rl012903; + Fri, 26 Oct 2007 17:10:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 472257A4.9E1F6.24447 ; + 26 Oct 2007 17:09:59 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C79756CE12; + Fri, 26 Oct 2007 04:51:09 +0100 (BST) +Message-ID: <200710262107.l9QL71RF021863@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959 + for ; + Fri, 26 Oct 2007 04:50:48 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 93FD213A1A + for ; Fri, 26 Oct 2007 22:09:32 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QL71sU021865 + for ; Fri, 26 Oct 2007 17:07:01 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QL71RF021863 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 17:07:01 -0400 +Date: Fri, 26 Oct 2007 17:07:01 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37432 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 17:10:03 2007 +X-DSPAM-Confidence: 0.7546 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37432 + +Author: ray@media.berkeley.edu +Date: 2007-10-26 17:06:58 -0400 (Fri, 26 Oct 2007) +New Revision: 37432 + +Modified: +bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +BSP-1324 More diagnostics for SAK-12029 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Oct 26 16:49:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 16:49:42 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 16:49:42 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id l9QKneUx021932; + Fri, 26 Oct 2007 16:49:40 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 472252D0.251F1.22433 ; + 26 Oct 2007 16:49:37 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9BA4A6C69C; + Fri, 26 Oct 2007 04:30:37 +0100 (BST) +Message-ID: <200710262046.l9QKkXx7021848@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 620 + for ; + Fri, 26 Oct 2007 04:30:17 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0E2231DB68 + for ; Fri, 26 Oct 2007 21:49:03 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QKkXbK021850 + for ; Fri, 26 Oct 2007 16:46:33 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QKkXx7021848 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 16:46:33 -0400 +Date: Fri, 26 Oct 2007 16:46:33 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37431 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 16:49:42 2007 +X-DSPAM-Confidence: 0.7552 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37431 + +Author: ray@media.berkeley.edu +Date: 2007-10-26 16:46:30 -0400 (Fri, 26 Oct 2007) +New Revision: 37431 + +Modified: +bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +BSP-1324 Add some logging so that we have some chance to diagnose SAK-12029 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Oct 26 16:25:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 16:25:40 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 16:25:40 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by faithful.mail.umich.edu () with ESMTP id l9QKPdqw023636; + Fri, 26 Oct 2007 16:25:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47224D3E.2FB17.15760 ; + 26 Oct 2007 16:25:37 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 71A796C696; + Fri, 26 Oct 2007 04:06:52 +0100 (BST) +Message-ID: <200710262022.l9QKMm54021808@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 699 + for ; + Fri, 26 Oct 2007 04:06:35 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EFF501DB65 + for ; Fri, 26 Oct 2007 21:25:18 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QKMmwE021810 + for ; Fri, 26 Oct 2007 16:22:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QKMm54021808 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 16:22:48 -0400 +Date: Fri, 26 Oct 2007 16:22:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37430 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 16:25:40 2007 +X-DSPAM-Confidence: 0.6937 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37430 + +Author: ray@media.berkeley.edu +Date: 2007-10-26 16:22:45 -0400 (Fri, 26 Oct 2007) +New Revision: 37430 + +Modified: +bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +BSP-1324 merge -r37387:37410 from assignment/branches/post-2-4 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Fri Oct 26 15:37:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 15:37:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 15:37:43 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by sleepers.mail.umich.edu () with ESMTP id l9QJbgZK030031; + Fri, 26 Oct 2007 15:37:42 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47224200.726BB.9567 ; + 26 Oct 2007 15:37:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3FC0C598ED; + Fri, 26 Oct 2007 03:18:49 +0100 (BST) +Message-ID: <200710261916.l9QJGcfC021742@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 831 + for ; + Fri, 26 Oct 2007 03:00:26 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DF4921DBA4 + for ; Fri, 26 Oct 2007 20:19:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QJGcE0021744 + for ; Fri, 26 Oct 2007 15:16:38 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QJGcfC021742 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 15:16:38 -0400 +Date: Fri, 26 Oct 2007 15:16:38 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r37428 - in roster/trunk/roster-app/src: java/org/sakaiproject/tool/roster webapp/roster/inc +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 15:37:43 2007 +X-DSPAM-Confidence: 0.7540 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37428 + +Author: louis@media.berkeley.edu +Date: 2007-10-26 15:16:33 -0400 (Fri, 26 Oct 2007) +New Revision: 37428 + +Modified: +roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/FilteredParticipantListingBean.java +roster/trunk/roster-app/src/webapp/roster/inc/filter.jspf +Log: +SAK-12059 Roster Group/Section Filter does not show + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 26 14:58:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 14:58:25 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 14:58:25 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id l9QIwOYF008999; + Fri, 26 Oct 2007 14:58:24 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 472238C9.71F58.26039 ; + 26 Oct 2007 14:58:21 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4FAF96CD2D; + Fri, 26 Oct 2007 02:39:32 +0100 (BST) +Message-ID: <200710261855.l9QItZpt021696@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 703 + for ; + Fri, 26 Oct 2007 02:39:19 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2E5781DB7C + for ; Fri, 26 Oct 2007 19:58:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QItZKe021698 + for ; Fri, 26 Oct 2007 14:55:35 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QItZpt021696 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:55:35 -0400 +Date: Fri, 26 Oct 2007 14:55:35 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37427 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 14:58:25 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37427 + +Author: dlhaines@umich.edu +Date: 2007-10-26 14:55:33 -0400 (Fri, 26 Oct 2007) +New Revision: 37427 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Log: +CTools: update P release revision number. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 26 14:57:44 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 14:57:44 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 14:57:44 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by score.mail.umich.edu () with ESMTP id l9QIvi3P030151; + Fri, 26 Oct 2007 14:57:44 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 472238A0.B1AE1.26705 ; + 26 Oct 2007 14:57:40 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4EB4851E3E; + Fri, 26 Oct 2007 02:38:50 +0100 (BST) +Message-ID: <200710261854.l9QIsmt7021684@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26 + for ; + Fri, 26 Oct 2007 02:38:34 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9B4031DB7C + for ; Fri, 26 Oct 2007 19:57:18 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QIsmLs021686 + for ; Fri, 26 Oct 2007 14:54:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QIsmt7021684 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:54:48 -0400 +Date: Fri, 26 Oct 2007 14:54:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37426 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 14:57:44 2007 +X-DSPAM-Confidence: 0.9835 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37426 + +Author: dlhaines@umich.edu +Date: 2007-10-26 14:54:45 -0400 (Fri, 26 Oct 2007) +New Revision: 37426 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties +Log: +CTools: update P release revision number. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 26 14:51:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 14:51:59 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 14:51:59 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by brazil.mail.umich.edu () with ESMTP id l9QIpuxf009410; + Fri, 26 Oct 2007 14:51:56 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47223746.C156A.16549 ; + 26 Oct 2007 14:51:53 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B4E056F23; + Fri, 26 Oct 2007 02:33:03 +0100 (BST) +Message-ID: <200710261848.l9QImu75021672@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 382 + for ; + Fri, 26 Oct 2007 02:32:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0C6ACBDC3 + for ; Fri, 26 Oct 2007 19:51:25 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QImudD021674 + for ; Fri, 26 Oct 2007 14:48:56 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QImu75021672 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:48:56 -0400 +Date: Fri, 26 Oct 2007 14:48:56 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37425 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 14:51:59 2007 +X-DSPAM-Confidence: 0.9834 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37425 + +Author: dlhaines@umich.edu +Date: 2007-10-26 14:48:54 -0400 (Fri, 26 Oct 2007) +New Revision: 37425 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties +Log: +CTools: update keywords + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 26 14:49:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 14:49:22 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 14:49:22 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id l9QInL5p017890; + Fri, 26 Oct 2007 14:49:21 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 472236AB.31092.13460 ; + 26 Oct 2007 14:49:18 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 712FD51E3E; + Fri, 26 Oct 2007 02:30:27 +0100 (BST) +Message-ID: <200710261846.l9QIkS4P021660@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 764 + for ; + Fri, 26 Oct 2007 02:30:12 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9B359BDC3 + for ; Fri, 26 Oct 2007 19:48:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QIkSph021662 + for ; Fri, 26 Oct 2007 14:46:29 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QIkS4P021660 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:46:28 -0400 +Date: Fri, 26 Oct 2007 14:46:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37424 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 14:49:22 2007 +X-DSPAM-Confidence: 0.9825 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37424 + +Author: dlhaines@umich.edu +Date: 2007-10-26 14:46:26 -0400 (Fri, 26 Oct 2007) +New Revision: 37424 + +Added: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties +Removed: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties +Log: +CTools: Insert yet another Evaluation tool release as 2.4.xO and push current 2.4.xO to 2.4.xP + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Fri Oct 26 14:11:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 14:11:40 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 14:11:40 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by panther.mail.umich.edu () with ESMTP id l9QIBdS2022244; + Fri, 26 Oct 2007 14:11:40 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 47222DD3.F3627.19032 ; + 26 Oct 2007 14:11:36 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A332456F23; + Fri, 26 Oct 2007 01:52:38 +0100 (BST) +Message-ID: <200710261808.l9QI8gE6021562@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 645 + for ; + Fri, 26 Oct 2007 01:52:26 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9107B1DB8B + for ; Fri, 26 Oct 2007 19:11:12 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QI8hIg021564 + for ; Fri, 26 Oct 2007 14:08:43 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QI8gE6021562 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:08:42 -0400 +Date: Fri, 26 Oct 2007 14:08:42 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37423 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 14:11:40 2007 +X-DSPAM-Confidence: 0.9771 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37423 + +Author: ajpoland@iupui.edu +Date: 2007-10-26 14:08:42 -0400 (Fri, 26 Oct 2007) +New Revision: 37423 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From wagnermr@iupui.edu Fri Oct 26 14:08:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 14:08:50 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 14:08:50 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by chaos.mail.umich.edu () with ESMTP id l9QI8nuZ009911; + Fri, 26 Oct 2007 14:08:49 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47222D2B.C972B.1331 ; + 26 Oct 2007 14:08:46 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 94F4156F23; + Fri, 26 Oct 2007 01:49:54 +0100 (BST) +Message-ID: <200710261805.l9QI5wmO021550@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 415 + for ; + Fri, 26 Oct 2007 01:49:41 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C0E631DB8B + for ; Fri, 26 Oct 2007 19:08:27 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QI5wvN021552 + for ; Fri, 26 Oct 2007 14:05:58 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QI5wmO021550 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:05:58 -0400 +Date: Fri, 26 Oct 2007 14:05:58 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f +To: source@collab.sakaiproject.org +From: wagnermr@iupui.edu +Subject: [sakai] svn commit: r37422 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 14:08:50 2007 +X-DSPAM-Confidence: 0.9906 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37422 + +Author: wagnermr@iupui.edu +Date: 2007-10-26 14:05:56 -0400 (Fri, 26 Oct 2007) +New Revision: 37422 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r37408:37409 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +------------------------------------------------------------------------ +r37409 | zqian@umich.edu | 2007-10-26 10:35:02 -0400 (Fri, 26 Oct 2007) | 3 lines + +Fix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions' + +Assign grades also to those non-graded submissions. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 26 14:01:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 14:01:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 14:01:47 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by sleepers.mail.umich.edu () with ESMTP id l9QI1k6M010499; + Fri, 26 Oct 2007 14:01:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 47222B82.7D893.20802 ; + 26 Oct 2007 14:01:42 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 114A951383; + Fri, 26 Oct 2007 01:42:48 +0100 (BST) +Message-ID: <200710261758.l9QHwqh1021528@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 574 + for ; + Fri, 26 Oct 2007 01:42:35 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5EBBD1DB8B + for ; Fri, 26 Oct 2007 19:01:22 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QHwqlk021530 + for ; Fri, 26 Oct 2007 13:58:52 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QHwqh1021528 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:58:52 -0400 +Date: Fri, 26 Oct 2007 13:58:52 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37421 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 14:01:47 2007 +X-DSPAM-Confidence: 0.9852 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37421 + +Author: zqian@umich.edu +Date: 2007-10-26 13:58:49 -0400 (Fri, 26 Oct 2007) +New Revision: 37421 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12058:Grade Report in Assignments orders by default by Last Name, should order by Last Name, First Name + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Fri Oct 26 13:50:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 13:50:08 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 13:50:08 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id l9QHo70J002934; + Fri, 26 Oct 2007 13:50:07 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 472228C0.6E366.11380 ; + 26 Oct 2007 13:50:04 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4DF1354B3D; + Fri, 26 Oct 2007 01:31:01 +0100 (BST) +Message-ID: <200710261747.l9QHl6vi021497@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 962 + for ; + Fri, 26 Oct 2007 01:30:47 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4061F1BB30 + for ; Fri, 26 Oct 2007 18:49:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QHl6m9021499 + for ; Fri, 26 Oct 2007 13:47:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QHl6vi021497 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:47:06 -0400 +Date: Fri, 26 Oct 2007 13:47:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r37420 - sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 13:50:08 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37420 + +Author: ktsao@stanford.edu +Date: 2007-10-26 13:47:03 -0400 (Fri, 26 Oct 2007) +New Revision: 37420 + +Modified: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java +Log: +SAK-12049 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Oct 26 13:26:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 13:26:30 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 13:26:30 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by sleepers.mail.umich.edu () with ESMTP id l9QHQTbu019944; + Fri, 26 Oct 2007 13:26:29 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4722233C.BFC.18463 ; + 26 Oct 2007 13:26:22 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E6F5453295; + Fri, 26 Oct 2007 01:07:21 +0100 (BST) +Message-ID: <200710261723.l9QHNEDK021424@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 449 + for ; + Fri, 26 Oct 2007 01:06:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 213FF1DB9D + for ; Fri, 26 Oct 2007 18:25:46 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QHNEa7021426 + for ; Fri, 26 Oct 2007 13:23:14 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QHNEDK021424 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:23:14 -0400 +Date: Fri, 26 Oct 2007 13:23:14 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37419 - bspace/assignment/post-2-4 +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 13:26:30 2007 +X-DSPAM-Confidence: 0.7565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37419 + +Author: ray@media.berkeley.edu +Date: 2007-10-26 13:23:11 -0400 (Fri, 26 Oct 2007) +New Revision: 37419 + +Modified: +bspace/assignment/post-2-4/runconversion-2.4.x.sh +Log: +BSP-1324 Update script with new Oracle driver file name + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 26 13:03:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 13:03:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 13:03:38 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by brazil.mail.umich.edu () with ESMTP id l9QH3btX009615; + Fri, 26 Oct 2007 13:03:37 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47221DE2.9D1B7.13729 ; + 26 Oct 2007 13:03:33 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3B3D96C8E9; + Fri, 26 Oct 2007 00:44:37 +0100 (BST) +Message-ID: <200710261700.l9QH0bp2021404@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 493 + for ; + Fri, 26 Oct 2007 00:44:17 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0EAA11AAAA + for ; Fri, 26 Oct 2007 18:03:06 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QH0b9F021406 + for ; Fri, 26 Oct 2007 13:00:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QH0bp2021404 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:00:37 -0400 +Date: Fri, 26 Oct 2007 13:00:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37418 - in memory/branches/SAK-11913/memory-test: . impl impl/src/java/org/sakaiproject/memory/test pack pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 13:03:38 2007 +X-DSPAM-Confidence: 0.9878 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37418 + +Author: aaronz@vt.edu +Date: 2007-10-26 13:00:25 -0400 (Fri, 26 Oct 2007) +New Revision: 37418 + +Modified: +memory/branches/SAK-11913/memory-test/impl/pom.xml +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +memory/branches/SAK-11913/memory-test/pack/pom.xml +memory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml +memory/branches/SAK-11913/memory-test/pom.xml +Log: +SAK-11913: Fixed up the config problems in the test runner load test, it will now run correctly, now I just need to get the test to be more viable + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 26 11:52:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 11:52:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 11:52:46 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id l9QFqjBU029161; + Fri, 26 Oct 2007 11:52:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47220D47.B5FE0.15548 ; + 26 Oct 2007 11:52:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DEC636BD8C; + Thu, 25 Oct 2007 23:35:07 +0100 (BST) +Message-ID: <200710261549.l9QFnDeH021339@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284 + for ; + Thu, 25 Oct 2007 23:34:47 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8A8721BC6F + for ; Fri, 26 Oct 2007 16:51:42 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFnDHT021341 + for ; Fri, 26 Oct 2007 11:49:13 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFnDeH021339 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:49:13 -0400 +Date: Fri, 26 Oct 2007 11:49:13 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37417 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 11:52:46 2007 +X-DSPAM-Confidence: 0.9881 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37417 + +Author: zqian@umich.edu +Date: 2007-10-26 11:49:11 -0400 (Fri, 26 Oct 2007) +New Revision: 37417 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-11821: fix the problem those auto added submission object have two same submitter ids listed in xml + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 26 11:42:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 11:42:08 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 11:42:08 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by mission.mail.umich.edu () with ESMTP id l9QFg7h1006427; + Fri, 26 Oct 2007 11:42:07 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 47220AC9.BE23.20895 ; + 26 Oct 2007 11:42:04 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 13BF752479; + Thu, 25 Oct 2007 23:25:05 +0100 (BST) +Message-ID: <200710261539.l9QFdJ5i021327@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 159 + for ; + Thu, 25 Oct 2007 23:24:46 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4FEBE1BC6F + for ; Fri, 26 Oct 2007 16:41:48 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFdJBV021329 + for ; Fri, 26 Oct 2007 11:39:19 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFdJ5i021327 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:39:19 -0400 +Date: Fri, 26 Oct 2007 11:39:19 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37416 - in memory/branches/SAK-11913/memory-test: . impl impl/src/java/org/sakaiproject/memory/test pack pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 11:42:08 2007 +X-DSPAM-Confidence: 0.9870 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37416 + +Author: aaronz@vt.edu +Date: 2007-10-26 11:39:07 -0400 (Fri, 26 Oct 2007) +New Revision: 37416 + +Modified: +memory/branches/SAK-11913/memory-test/.classpath +memory/branches/SAK-11913/memory-test/impl/pom.xml +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +memory/branches/SAK-11913/memory-test/pack/pom.xml +memory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-11913: Added in a test runner test to load test the caching service, need to add in more tests though + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bahollad@indiana.edu Fri Oct 26 11:41:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 11:41:49 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 11:41:49 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by awakenings.mail.umich.edu () with ESMTP id l9QFfmUk012760; + Fri, 26 Oct 2007 11:41:48 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 47220AB5.53B12.18662 ; + 26 Oct 2007 11:41:44 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D76C36CBDD; + Thu, 25 Oct 2007 23:24:28 +0100 (BST) +Message-ID: <200710261537.l9QFbmlb021315@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 814 + for ; + Thu, 25 Oct 2007 23:24:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A3DBC1DB5A + for ; Fri, 26 Oct 2007 16:40:17 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFbmtl021317 + for ; Fri, 26 Oct 2007 11:37:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFbmlb021315 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:37:48 -0400 +Date: Fri, 26 Oct 2007 11:37:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f +To: source@collab.sakaiproject.org +From: bahollad@indiana.edu +Subject: [sakai] svn commit: r37415 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 11:41:49 2007 +X-DSPAM-Confidence: 0.7600 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37415 + +Author: bahollad@indiana.edu +Date: 2007-10-26 11:37:46 -0400 (Fri, 26 Oct 2007) +New Revision: 37415 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-12027 +Possible problems with sakai 2.4->2.5 mysql conversion script + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 26 11:40:15 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 11:40:15 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 11:40:15 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by chaos.mail.umich.edu () with ESMTP id l9QFeEMO026714; + Fri, 26 Oct 2007 11:40:14 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47220A4A.6721E.5959 ; + 26 Oct 2007 11:39:57 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 979ED5B8A6; + Thu, 25 Oct 2007 23:23:52 +0100 (BST) +Message-ID: <200710261537.l9QFb2Dw021301@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 862 + for ; + Thu, 25 Oct 2007 23:23:38 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 771DB1BC6F + for ; Fri, 26 Oct 2007 16:39:31 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFb2XO021303 + for ; Fri, 26 Oct 2007 11:37:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFb2Dw021301 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:37:02 -0400 +Date: Fri, 26 Oct 2007 11:37:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37414 - in memory/branches/SAK-11913/memory-impl: impl/src/java/org/sakaiproject/memory/impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 11:40:15 2007 +X-DSPAM-Confidence: 0.9826 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37414 + +Author: aaronz@vt.edu +Date: 2007-10-26 11:36:50 -0400 (Fri, 26 Oct 2007) +New Revision: 37414 + +Added: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml +memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/ehcache-beans.xml +Log: +Added in some of the changes from trunk to the branch + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 26 10:42:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 10:42:58 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 10:42:58 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by panther.mail.umich.edu () with ESMTP id l9QEgv6E013436; + Fri, 26 Oct 2007 10:42:57 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4721FCEB.7CBEE.9642 ; + 26 Oct 2007 10:42:54 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 56FBE6CB70; + Thu, 25 Oct 2007 22:26:50 +0100 (BST) +Message-ID: <200710261439.l9QEdkmN021213@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312 + for ; + Thu, 25 Oct 2007 22:26:22 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C7A1F1DB65 + for ; Fri, 26 Oct 2007 15:42:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEdkfY021215 + for ; Fri, 26 Oct 2007 10:39:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEdkmN021213 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:39:46 -0400 +Date: Fri, 26 Oct 2007 10:39:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37412 - assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 10:42:58 2007 +X-DSPAM-Confidence: 0.8487 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37412 + +Author: zqian@umich.edu +Date: 2007-10-26 10:39:44 -0400 (Fri, 26 Oct 2007) +New Revision: 37412 + +Modified: +assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge fix to SAK-11967 into 2.4.x branch:svn merge -r 37408:37409 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Oct 26 10:42:23 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 10:42:23 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 10:42:23 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by flawless.mail.umich.edu () with ESMTP id l9QEgMdC014759; + Fri, 26 Oct 2007 10:42:22 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4721FCC6.CBB84.19773 ; + 26 Oct 2007 10:42:18 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BCF266CB67; + Thu, 25 Oct 2007 22:26:17 +0100 (BST) +Message-ID: <200710261439.l9QEdYWX021201@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 359 + for ; + Thu, 25 Oct 2007 22:26:01 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4735C1DB65 + for ; Fri, 26 Oct 2007 15:42:03 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEdYG3021203 + for ; Fri, 26 Oct 2007 10:39:34 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEdYWX021201 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:39:34 -0400 +Date: Fri, 26 Oct 2007 10:39:34 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37411 - bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 10:42:23 2007 +X-DSPAM-Confidence: 0.6929 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37411 + +Author: ray@media.berkeley.edu +Date: 2007-10-26 10:39:30 -0400 (Fri, 26 Oct 2007) +New Revision: 37411 + +Modified: +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +Log: +BSP-1324 Quiet down logging + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 26 10:41:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 10:41:35 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 10:41:35 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by jacknife.mail.umich.edu () with ESMTP id l9QEfYrY011032; + Fri, 26 Oct 2007 10:41:34 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4721FC98.93219.12616 ; + 26 Oct 2007 10:41:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4304862277; + Thu, 25 Oct 2007 22:25:30 +0100 (BST) +Message-ID: <200710261438.l9QEckDZ021187@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356 + for ; + Thu, 25 Oct 2007 22:25:17 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98AE21DB65 + for ; Fri, 26 Oct 2007 15:41:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEck6a021191 + for ; Fri, 26 Oct 2007 10:38:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEckDZ021187 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:38:46 -0400 +Date: Fri, 26 Oct 2007 10:38:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37410 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 10:41:35 2007 +X-DSPAM-Confidence: 0.7567 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37410 + +Author: zqian@umich.edu +Date: 2007-10-26 10:38:44 -0400 (Fri, 26 Oct 2007) +New Revision: 37410 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge fix to SAK-11967 into post-2-4 branch:svn merge -r 37408:37409 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 26 10:38:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 10:38:08 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 10:38:08 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id l9QEc85a012246; + Fri, 26 Oct 2007 10:38:08 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 4721FBC7.2075.12664 ; + 26 Oct 2007 10:38:02 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1EDAA62277; + Thu, 25 Oct 2007 22:21:28 +0100 (BST) +Message-ID: <200710261435.l9QEZ4nZ021149@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 217 + for ; + Thu, 25 Oct 2007 22:21:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6901F1DB65 + for ; Fri, 26 Oct 2007 15:37:33 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEZ4dZ021151 + for ; Fri, 26 Oct 2007 10:35:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEZ4nZ021149 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:35:04 -0400 +Date: Fri, 26 Oct 2007 10:35:04 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37409 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 10:38:08 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37409 + +Author: zqian@umich.edu +Date: 2007-10-26 10:35:02 -0400 (Fri, 26 Oct 2007) +New Revision: 37409 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +Fix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions' + +Assign grades also to those non-graded submissions. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 26 10:06:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 10:06:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 10:06:47 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by brazil.mail.umich.edu () with ESMTP id l9QE6ki7031703; + Fri, 26 Oct 2007 10:06:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4721F46E.D572B.15280 ; + 26 Oct 2007 10:06:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7C8636CAEA; + Thu, 25 Oct 2007 21:50:36 +0100 (BST) +Message-ID: <200710261403.l9QE3mMo021068@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 219 + for ; + Thu, 25 Oct 2007 21:50:19 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 18AAE19931 + for ; Fri, 26 Oct 2007 15:06:17 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QE3mSv021070 + for ; Fri, 26 Oct 2007 10:03:49 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QE3mMo021068 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:03:48 -0400 +Date: Fri, 26 Oct 2007 10:03:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37408 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 10:06:47 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37408 + +Author: zqian@umich.edu +Date: 2007-10-26 10:03:47 -0400 (Fri, 26 Oct 2007) +New Revision: 37408 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge fix to SAK-11765 into post-2-4: + +svn merge -r 36061:36062 https://source.sakaiproject.org/svn/assignment/trunk/ + +svn merge -r 36075:36076 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bahollad@indiana.edu Fri Oct 26 08:54:26 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 08:54:26 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 08:54:26 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by brazil.mail.umich.edu () with ESMTP id l9QCsPhs025744; + Fri, 26 Oct 2007 08:54:25 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4721E37B.EF320.7066 ; + 26 Oct 2007 08:54:22 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 82A5B60C9F; + Thu, 25 Oct 2007 20:37:56 +0100 (BST) +Message-ID: <200710261251.l9QCp25n021009@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 49 + for ; + Thu, 25 Oct 2007 20:37:31 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1EDE81BC84 + for ; Fri, 26 Oct 2007 13:53:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QCp2uh021011 + for ; Fri, 26 Oct 2007 08:51:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QCp25n021009 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 08:51:02 -0400 +Date: Fri, 26 Oct 2007 08:51:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f +To: source@collab.sakaiproject.org +From: bahollad@indiana.edu +Subject: [sakai] svn commit: r37407 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 08:54:26 2007 +X-DSPAM-Confidence: 0.7593 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37407 + +Author: bahollad@indiana.edu +Date: 2007-10-26 08:51:00 -0400 (Fri, 26 Oct 2007) +New Revision: 37407 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +SAK-12027 +Possible problems with sakai 2.4->2.5 mysql conversion script + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Fri Oct 26 08:19:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 26 Oct 2007 08:19:32 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 26 Oct 2007 08:19:32 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id l9QCJV03003430; + Fri, 26 Oct 2007 08:19:31 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4721DB4D.1F373.24814 ; + 26 Oct 2007 08:19:29 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8A3CD6C936; + Thu, 25 Oct 2007 20:02:52 +0100 (BST) +Message-ID: <200710261216.l9QCGanX020967@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 418 + for ; + Thu, 25 Oct 2007 20:02:29 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7BCB91BC86 + for ; Fri, 26 Oct 2007 13:19:08 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QCGbX0020969 + for ; Fri, 26 Oct 2007 08:16:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QCGanX020967 + for source@collab.sakaiproject.org; Fri, 26 Oct 2007 08:16:36 -0400 +Date: Fri, 26 Oct 2007 08:16:36 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37406 - bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 26 08:19:32 2007 +X-DSPAM-Confidence: 0.7591 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37406 + +Author: ray@media.berkeley.edu +Date: 2007-10-26 08:16:32 -0400 (Fri, 26 Oct 2007) +New Revision: 37406 + +Modified: +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java +Log: +BSP-1324 Quiet down logging while I look into the transaction problem on dev + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 25 22:58:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 22:58:33 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 22:58:33 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id l9Q2wW97029806; + Thu, 25 Oct 2007 22:58:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 472157D3.8A086.28210 ; + 25 Oct 2007 22:58:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E16A56C464; + Thu, 25 Oct 2007 10:56:19 +0100 (BST) +Message-ID: <200710260255.l9Q2tkdj020001@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 373 + for ; + Thu, 25 Oct 2007 10:56:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 353471BD19 + for ; Fri, 26 Oct 2007 03:58:14 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q2tk7f020003 + for ; Thu, 25 Oct 2007 22:55:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q2tkdj020001 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 22:55:46 -0400 +Date: Thu, 25 Oct 2007 22:55:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37402 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 22:58:33 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37402 + +Author: zqian@umich.edu +Date: 2007-10-25 22:55:44 -0400 (Thu, 25 Oct 2007) +New Revision: 37402 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-12029 into post-2-4 branch: svn merge -r 37399:37400 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 25 22:19:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 22:19:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 22:19:37 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id l9Q2Ja4f030454; + Thu, 25 Oct 2007 22:19:36 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47214EB3.53B09.24976 ; + 25 Oct 2007 22:19:34 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A74056C2E8; + Thu, 25 Oct 2007 10:17:13 +0100 (BST) +Message-ID: <200710260216.l9Q2GiLW019960@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 436 + for ; + Thu, 25 Oct 2007 10:16:50 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 98F05BCD3 + for ; Fri, 26 Oct 2007 03:19:11 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q2Gi8Q019962 + for ; Thu, 25 Oct 2007 22:16:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q2GiLW019960 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 22:16:44 -0400 +Date: Thu, 25 Oct 2007 22:16:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37400 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 22:19:37 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37400 + +Author: zqian@umich.edu +Date: 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007) +New Revision: 37400 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12029:zip file not accepted in Assignments "Upload All" feature + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Oct 25 21:28:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 21:28:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 21:28:17 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by sleepers.mail.umich.edu () with ESMTP id l9Q1SGDN001770; + Thu, 25 Oct 2007 21:28:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 472142AA.395B2.1651 ; + 25 Oct 2007 21:28:13 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8DDB650246; + Thu, 25 Oct 2007 09:25:56 +0100 (BST) +Message-ID: <200710260125.l9Q1POwU019899@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1004 + for ; + Thu, 25 Oct 2007 09:25:34 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1AD6B1D64A + for ; Fri, 26 Oct 2007 02:27:51 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q1PO7b019901 + for ; Thu, 25 Oct 2007 21:25:25 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q1POwU019899 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 21:25:24 -0400 +Date: Thu, 25 Oct 2007 21:25:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r37399 - roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 21:28:17 2007 +X-DSPAM-Confidence: 0.7546 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37399 + +Author: louis@media.berkeley.edu +Date: 2007-10-25 21:25:22 -0400 (Thu, 25 Oct 2007) +New Revision: 37399 + +Modified: +roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java +Log: +SAK-11444 make the default Roster order configurable + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 25 20:36:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 20:36:48 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 20:36:48 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by mission.mail.umich.edu () with ESMTP id l9Q0amND011052; + Thu, 25 Oct 2007 20:36:48 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4721369B.33796.19916 ; + 25 Oct 2007 20:36:45 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4C1C24E6BA; + Thu, 25 Oct 2007 08:34:16 +0100 (BST) +Message-ID: <200710260033.l9Q0XtaL019813@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875 + for ; + Thu, 25 Oct 2007 08:33:53 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B669A1D622 + for ; Fri, 26 Oct 2007 01:36:22 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q0XthC019815 + for ; Thu, 25 Oct 2007 20:33:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q0XtaL019813 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 20:33:55 -0400 +Date: Thu, 25 Oct 2007 20:33:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37398 - assignment/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 20:36:48 2007 +X-DSPAM-Confidence: 0.8493 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37398 + +Author: zqian@umich.edu +Date: 2007-10-25 20:33:54 -0400 (Thu, 25 Oct 2007) +New Revision: 37398 + +Modified: +assignment/trunk/upgradeschema_oracle.config +Log: +fix to SAK-11821:remove the line break + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Oct 25 20:13:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 20:13:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 20:13:54 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by brazil.mail.umich.edu () with ESMTP id l9Q0DsEL020874; + Thu, 25 Oct 2007 20:13:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 4721313B.41C03.7246 ; + 25 Oct 2007 20:13:50 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EE9F3550B2; + Thu, 25 Oct 2007 08:11:31 +0100 (BST) +Message-ID: <200710260010.l9Q0At5W019737@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256 + for ; + Thu, 25 Oct 2007 08:11:12 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DC8E61D58D + for ; Fri, 26 Oct 2007 01:13:22 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q0At6G019739 + for ; Thu, 25 Oct 2007 20:10:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q0At5W019737 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 20:10:55 -0400 +Date: Thu, 25 Oct 2007 20:10:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37397 - in bspace/assignment/post-2-4: . assignment-api/api/src/java/org/sakaiproject/assignment/api assignment-api/api/src/java/org/sakaiproject/assignment/cover assignment-impl assignment-impl/impl assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl assignment-impl/impl/src/sql/hsqldb assignment-impl/impl/src/sql/mysql assignment-impl/impl/src/sql/oracle assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 20:13:54 2007 +X-DSPAM-Confidence: 0.7603 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37397 + +Author: ray@media.berkeley.edu +Date: 2007-10-25 20:10:15 -0400 (Thu, 25 Oct 2007) +New Revision: 37397 + +Added: +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/ +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/ +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/ +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SAXSerializablePropertiesAccess.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +bspace/assignment/post-2-4/runconversion-2.4.x.sh +bspace/assignment/post-2-4/runconversion.sh +bspace/assignment/post-2-4/upgradeschema_mysql.config +bspace/assignment/post-2-4/upgradeschema_oracle.config +Removed: +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/ +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/ +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SAXSerializablePropertiesAccess.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +Modified: +bspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +bspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentSubmission.java +bspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +bspace/assignment/post-2-4/assignment-impl/.classpath +bspace/assignment/post-2-4/assignment-impl/impl/pom.xml +bspace/assignment/post-2-4/assignment-impl/impl/project.xml +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl/AssignmentActivityProducerImpl.java +bspace/assignment/post-2-4/assignment-impl/impl/src/sql/hsqldb/sakai_assignment.sql +bspace/assignment/post-2-4/assignment-impl/impl/src/sql/mysql/sakai_assignment.sql +bspace/assignment/post-2-4/assignment-impl/impl/src/sql/oracle/sakai_assignment.sql +bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +BSP-1324 Try to drag in what's needed to fix SAK-11821 from the trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Thu Oct 25 17:23:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 17:23:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 17:23:13 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by score.mail.umich.edu () with ESMTP id l9PLNClV000824; + Thu, 25 Oct 2007 17:23:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 4721093A.10729.32266 ; + 25 Oct 2007 17:23:09 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 76CBA6C3A8; + Thu, 25 Oct 2007 05:27:43 +0100 (BST) +Message-ID: <200710252120.l9PLKAVo019482@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 546 + for ; + Thu, 25 Oct 2007 05:27:22 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C8E701D631 + for ; Thu, 25 Oct 2007 22:22:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PLKB8D019484 + for ; Thu, 25 Oct 2007 17:20:11 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PLKAVo019482 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 17:20:10 -0400 +Date: Thu, 25 Oct 2007 17:20:10 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37396 - in content/branches/SAK-11543/content-tool/tool/src: java/org/sakaiproject/content/tool webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 17:23:13 2007 +X-DSPAM-Confidence: 0.9763 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37396 + +Author: jzaremba@unicon.net +Date: 2007-10-25 17:20:02 -0400 (Thu, 25 Oct 2007) +New Revision: 37396 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +Log: +TSQ-747 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Oct 25 17:19:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 17:19:10 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 17:19:10 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by chaos.mail.umich.edu () with ESMTP id l9PLJATf029834; + Thu, 25 Oct 2007 17:19:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 47210847.72736.4270 ; + 25 Oct 2007 17:19:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 072356C3A7; + Thu, 25 Oct 2007 05:23:46 +0100 (BST) +Message-ID: <200710252116.l9PLGOe8019470@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 299 + for ; + Thu, 25 Oct 2007 05:23:32 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F10E91D631 + for ; Thu, 25 Oct 2007 22:18:49 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PLGO8U019472 + for ; Thu, 25 Oct 2007 17:16:24 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PLGOe8019470 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 17:16:24 -0400 +Date: Thu, 25 Oct 2007 17:16:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r37395 - roster/trunk/roster-app/src/webapp/roster +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 17:19:10 2007 +X-DSPAM-Confidence: 0.6945 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37395 + +Author: louis@media.berkeley.edu +Date: 2007-10-25 17:16:21 -0400 (Thu, 25 Oct 2007) +New Revision: 37395 + +Modified: +roster/trunk/roster-app/src/webapp/roster/pictures.jsp +Log: +SAK-11144 In IE7, switch picture view takes two clicks + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Oct 25 16:37:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 16:37:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 16:37:54 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by mission.mail.umich.edu () with ESMTP id l9PKbrLn006833; + Thu, 25 Oct 2007 16:37:53 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4720FE9C.108C6.5094 ; + 25 Oct 2007 16:37:50 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AB2474EE58; + Thu, 25 Oct 2007 04:42:30 +0100 (BST) +Message-ID: <200710252035.l9PKZ6HQ019408@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 310 + for ; + Thu, 25 Oct 2007 04:42:18 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B095F1D58E + for ; Thu, 25 Oct 2007 21:37:32 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PKZ614019410 + for ; Thu, 25 Oct 2007 16:35:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PKZ6HQ019408 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 16:35:06 -0400 +Date: Thu, 25 Oct 2007 16:35:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37394 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 16:37:54 2007 +X-DSPAM-Confidence: 0.9783 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37394 + +Author: rjlowe@iupui.edu +Date: 2007-10-25 16:35:05 -0400 (Thu, 25 Oct 2007) +New Revision: 37394 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties +Log: +SAK-11967 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Thu Oct 25 15:47:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 15:47:33 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 15:47:33 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by sleepers.mail.umich.edu () with ESMTP id l9PJlW85004477; + Thu, 25 Oct 2007 15:47:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4720F2CC.518F6.26930 ; + 25 Oct 2007 15:47:28 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 741066C27F; + Thu, 25 Oct 2007 03:53:07 +0100 (BST) +Message-ID: <200710251944.l9PJii0P019294@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 558 + for ; + Thu, 25 Oct 2007 03:52:55 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id AAA041D605 + for ; Thu, 25 Oct 2007 20:47:09 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJii4B019296 + for ; Thu, 25 Oct 2007 15:44:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJii0P019294 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:44:44 -0400 +Date: Thu, 25 Oct 2007 15:44:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37393 - in sam/branches/sakai_2-5-x: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery samigo-app/src/webapp/jsf/delivery samigo-app/src/webapp/jsf/delivery/item samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 15:47:33 2007 +X-DSPAM-Confidence: 0.9910 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37393 + +Author: ajpoland@iupui.edu +Date: 2007-10-25 15:44:41 -0400 (Thu, 25 Oct 2007) +New Revision: 37393 + +Modified: +sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java +sam/branches/sakai_2-5-x/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp +sam/branches/sakai_2-5-x/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp +sam/branches/sakai_2-5-x/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp +sam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java +sam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +Log: + +svn merge -c 37148 https://source.sakaiproject.org/svn/sam/trunk +U samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java +U samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp +U samigo-app/src/webapp/jsf/delivery/item/attachment.jsp +U samigo-app/src/webapp/jsf/delivery/part_attachment.jsp +U samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +U samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +U samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java +U samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +svn log -r 37148 https://source.sakaiproject.org/svn/sam/trunk +------------------------------------------------------------------------ +r37148 | ktsao@stanford.edu | 2007-10-19 13:55:26 -0400 (Fri, 19 Oct 2007) | 1 line + +SAK-11909 +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Oct 25 15:36:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 15:36:10 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 15:36:10 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by casino.mail.umich.edu () with ESMTP id l9PJa8V0023711; + Thu, 25 Oct 2007 15:36:08 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4720F023.3ADF9.12291 ; + 25 Oct 2007 15:36:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 917826C1D1; + Thu, 25 Oct 2007 03:41:45 +0100 (BST) +Message-ID: <200710251933.l9PJXMIO019224@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 391 + for ; + Thu, 25 Oct 2007 03:41:32 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 07FA51BD0F + for ; Thu, 25 Oct 2007 20:35:47 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJXMDN019226 + for ; Thu, 25 Oct 2007 15:33:22 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJXMIO019224 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:33:22 -0400 +Date: Thu, 25 Oct 2007 15:33:22 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37392 - in bspace: . entity +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 15:36:10 2007 +X-DSPAM-Confidence: 0.7595 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37392 + +Author: ray@media.berkeley.edu +Date: 2007-10-25 15:33:19 -0400 (Thu, 25 Oct 2007) +New Revision: 37392 + +Added: +bspace/entity/ +bspace/entity/sakai_2-4-x/ +Log: +BSP-1324 Create local entity branch to bring in 2.5 serialization code which is needed for the SAK-11821 Assignments fix + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Thu Oct 25 15:31:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 15:31:35 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 15:31:35 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by jacknife.mail.umich.edu () with ESMTP id l9PJVZGi009227; + Thu, 25 Oct 2007 15:31:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4720EF0F.C3A86.3354 ; + 25 Oct 2007 15:31:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4E1526C223; + Thu, 25 Oct 2007 03:37:11 +0100 (BST) +Message-ID: <200710251928.l9PJSkkf019212@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 196 + for ; + Thu, 25 Oct 2007 03:36:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 1A20A1BC69 + for ; Thu, 25 Oct 2007 20:31:11 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJSkBQ019214 + for ; Thu, 25 Oct 2007 15:28:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJSkkf019212 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:28:46 -0400 +Date: Thu, 25 Oct 2007 15:28:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37391 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 15:31:35 2007 +X-DSPAM-Confidence: 0.9760 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37391 + +Author: ajpoland@iupui.edu +Date: 2007-10-25 15:28:45 -0400 (Thu, 25 Oct 2007) +New Revision: 37391 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Oct 25 15:31:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 15:31:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 15:31:02 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id l9PJV1ds032482; + Thu, 25 Oct 2007 15:31:01 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4720EEEE.3BDEB.16856 ; + 25 Oct 2007 15:30:57 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C07626C21D; + Thu, 25 Oct 2007 03:36:36 +0100 (BST) +Message-ID: <200710251928.l9PJS9ZL019200@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 271 + for ; + Thu, 25 Oct 2007 03:36:16 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 67D711BC69 + for ; Thu, 25 Oct 2007 20:30:35 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJSA0J019202 + for ; Thu, 25 Oct 2007 15:28:10 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJS9ZL019200 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:28:09 -0400 +Date: Thu, 25 Oct 2007 15:28:09 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37390 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 15:31:02 2007 +X-DSPAM-Confidence: 0.9923 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37390 + +Author: rjlowe@iupui.edu +Date: 2007-10-25 15:28:08 -0400 (Thu, 25 Oct 2007) +New Revision: 37390 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37384:37385 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +in-143-146:~/java/test/oncourse_2-4-x admin$ svn log -r 37385 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line + +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Thu Oct 25 14:31:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 14:31:42 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 14:31:42 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id l9PIVf4a015992; + Thu, 25 Oct 2007 14:31:41 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4720E0FD.DF161.3454 ; + 25 Oct 2007 14:31:29 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EBAA16BFA4; + Thu, 25 Oct 2007 02:37:06 +0100 (BST) +Message-ID: <200710251828.l9PISZ8h019131@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 223 + for ; + Thu, 25 Oct 2007 02:36:44 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DA97EB253 + for ; Thu, 25 Oct 2007 19:31:00 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PISZV9019133 + for ; Thu, 25 Oct 2007 14:28:35 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PISZ8h019131 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 14:28:35 -0400 +Date: Thu, 25 Oct 2007 14:28:35 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37389 - in bspace/assignment/post-2-4: assignment-api/api/src/java/org/sakaiproject/assignment/api assignment-api/api/src/java/org/sakaiproject/assignment/cover assignment-impl/impl/src/bundle assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/bundle assignment-tool/tool/src/java/org/sakaiproject/assignment/tool assignment-tool/tool/src/webapp/vm/assignment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 14:31:42 2007 +X-DSPAM-Confidence: 0.6518 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37389 + +Author: ray@media.berkeley.edu +Date: 2007-10-25 14:28:18 -0400 (Thu, 25 Oct 2007) +New Revision: 37389 + +Modified: +bspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java +bspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java +bspace/assignment/post-2-4/assignment-impl/impl/src/bundle/assignment.properties +bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +bspace/assignment/post-2-4/assignment-tool/tool/src/bundle/assignment.properties +bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_preview_assignment.vm +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm +bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm +Log: +BSP-1324 Merge -r 35724:37387 from post-2-4; was not able to replicate SAK-12029 locally, so we'll test it on dev + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 25 14:24:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 14:24:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 14:24:00 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id l9PINxnf010145; + Thu, 25 Oct 2007 14:23:59 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4720DF39.11093.32269 ; + 25 Oct 2007 14:23:56 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8F36A6C122; + Thu, 25 Oct 2007 02:29:32 +0100 (BST) +Message-ID: <200710251821.l9PIL1ql019119@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 197 + for ; + Thu, 25 Oct 2007 02:29:12 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8FD80B253 + for ; Thu, 25 Oct 2007 19:23:26 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PIL1pS019121 + for ; Thu, 25 Oct 2007 14:21:01 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PIL1ql019119 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 14:21:01 -0400 +Date: Thu, 25 Oct 2007 14:21:01 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37388 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 14:24:00 2007 +X-DSPAM-Confidence: 0.9844 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37388 + +Author: zqian@umich.edu +Date: 2007-10-25 14:20:57 -0400 (Thu, 25 Oct 2007) +New Revision: 37388 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12050: wrong alert message when only choose upload feedback text for 'upload all assignment submission' + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Thu Oct 25 12:18:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 12:18:35 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 12:18:35 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by mission.mail.umich.edu () with ESMTP id l9PGIXT4003872; + Thu, 25 Oct 2007 12:18:33 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4720C1D0.EAF1C.29603 ; + 25 Oct 2007 12:18:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DAFF458D12; + Thu, 25 Oct 2007 00:24:07 +0100 (BST) +Message-ID: <200710251615.l9PGFkfF018842@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 669 + for ; + Thu, 25 Oct 2007 00:23:54 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3ACC3BCCB + for ; Thu, 25 Oct 2007 17:18:11 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PGFk1p018844 + for ; Thu, 25 Oct 2007 12:15:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PGFkfF018842 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 12:15:46 -0400 +Date: Thu, 25 Oct 2007 12:15:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37387 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 12:18:35 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37387 + +Author: bkirschn@umich.edu +Date: 2007-10-25 12:15:43 -0400 (Thu, 25 Oct 2007) +New Revision: 37387 + +Modified: +content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-1357 update exception error handling + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Thu Oct 25 12:13:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 12:13:41 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 12:13:40 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id l9PGDd9Y000789; + Thu, 25 Oct 2007 12:13:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 4720C0AA.CE63B.7364 ; + 25 Oct 2007 12:13:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0219F6BFE0; + Thu, 25 Oct 2007 00:19:13 +0100 (BST) +Message-ID: <200710251610.l9PGAn3d018822@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 698 + for ; + Thu, 25 Oct 2007 00:18:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3FE521D610 + for ; Thu, 25 Oct 2007 17:13:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PGAoMu018824 + for ; Thu, 25 Oct 2007 12:10:50 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PGAn3d018822 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 12:10:49 -0400 +Date: Thu, 25 Oct 2007 12:10:49 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37386 - osp/trunk/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 12:13:40 2007 +X-DSPAM-Confidence: 0.9765 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37386 + +Author: mbreuker@loi.nl +Date: 2007-10-25 12:10:41 -0400 (Thu, 25 Oct 2007) +New Revision: 37386 + +Modified: +osp/trunk/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle/Messages_nl.properties +Log: +SAK-12021 - update dutch translations (osp glossary tool) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 25 12:08:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 12:08:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 12:08:13 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by jacknife.mail.umich.edu () with ESMTP id l9PG8CC6012125; + Thu, 25 Oct 2007 12:08:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4720BF5E.4EF76.10839 ; + 25 Oct 2007 12:08:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4CCAF6BFE0; + Thu, 25 Oct 2007 00:13:43 +0100 (BST) +Message-ID: <200710251605.l9PG5F2g018807@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 656 + for ; + Thu, 25 Oct 2007 00:13:27 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DCABF1D605 + for ; Thu, 25 Oct 2007 17:07:40 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PG5F4m018809 + for ; Thu, 25 Oct 2007 12:05:15 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PG5F2g018807 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 12:05:15 -0400 +Date: Thu, 25 Oct 2007 12:05:15 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37385 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 12:08:13 2007 +X-DSPAM-Confidence: 0.9814 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37385 + +Author: zqian@umich.edu +Date: 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) +New Revision: 37385 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Thu Oct 25 11:59:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 11:59:58 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 11:59:58 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id l9PFxvMT024087; + Thu, 25 Oct 2007 11:59:57 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4720BD67.74273.24843 ; + 25 Oct 2007 11:59:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AFD2D6BFD4; + Thu, 25 Oct 2007 00:04:41 +0100 (BST) +Message-ID: <200710251556.l9PFu8Nc018787@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 264 + for ; + Thu, 25 Oct 2007 00:04:24 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 961A211C47 + for ; Thu, 25 Oct 2007 16:58:37 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PFu8gD018789 + for ; Thu, 25 Oct 2007 11:56:08 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PFu8Nc018787 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 11:56:08 -0400 +Date: Thu, 25 Oct 2007 11:56:08 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r37384 - reference/trunk/library/src/webapp/skin/default +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 11:59:58 2007 +X-DSPAM-Confidence: 0.9815 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37384 + +Author: gsilver@umich.edu +Date: 2007-10-25 11:56:07 -0400 (Thu, 25 Oct 2007) +New Revision: 37384 + +Modified: +reference/trunk/library/src/webapp/skin/default/portal.css +Log: +http://jira.sakaiproject.org/jira/browse/SAK-11701 +- tool icons + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From louis@media.berkeley.edu Thu Oct 25 11:31:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 11:31:49 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 11:31:49 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by mission.mail.umich.edu () with ESMTP id l9PFVmCg007103; + Thu, 25 Oct 2007 11:31:48 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4720B6DE.5BBF9.25686 ; + 25 Oct 2007 11:31:45 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B717250FF6; + Wed, 24 Oct 2007 23:47:22 +0100 (BST) +Message-ID: <200710251528.l9PFSouS018748@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 451 + for ; + Wed, 24 Oct 2007 23:47:01 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D950D1D5C2 + for ; Thu, 25 Oct 2007 16:31:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PFSp4A018750 + for ; Thu, 25 Oct 2007 11:28:51 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PFSouS018748 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 11:28:50 -0400 +Date: Thu, 25 Oct 2007 11:28:50 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: louis@media.berkeley.edu +Subject: [sakai] svn commit: r37383 - roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 11:31:49 2007 +X-DSPAM-Confidence: 0.7560 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37383 + +Author: louis@media.berkeley.edu +Date: 2007-10-25 11:28:47 -0400 (Thu, 25 Oct 2007) +New Revision: 37383 + +Modified: +roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/BaseRosterPageBean.java +roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java +Log: +SAK-11444 make the default Roster order configurable + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Thu Oct 25 11:17:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 11:17:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 11:17:13 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by fan.mail.umich.edu () with ESMTP id l9PFHCRS026799; + Thu, 25 Oct 2007 11:17:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 4720B36F.429FA.29155 ; + 25 Oct 2007 11:17:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B605A6BFA7; + Wed, 24 Oct 2007 23:32:44 +0100 (BST) +Message-ID: <200710251514.l9PFEFal018736@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 815 + for ; + Wed, 24 Oct 2007 23:32:25 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 62334BCD1 + for ; Thu, 25 Oct 2007 16:16:40 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PFEFrB018738 + for ; Thu, 25 Oct 2007 11:14:15 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PFEFal018736 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 11:14:15 -0400 +Date: Thu, 25 Oct 2007 11:14:15 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37382 - in content/trunk: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 11:17:13 2007 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37382 + +Author: bkirschn@umich.edu +Date: 2007-10-25 11:14:13 -0400 (Thu, 25 Oct 2007) +New Revision: 37382 + +Modified: +content/trunk/content-bundles/types.properties +content/trunk/content-bundles/types_ar.properties +content/trunk/content-bundles/types_fr_CA.properties +content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-1357 SAK-11814 fix uploading and editting UTF-8 content + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From bkirschn@umich.edu Thu Oct 25 11:02:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 11:02:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 11:02:52 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id l9PF2peD002941; + Thu, 25 Oct 2007 11:02:51 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4720B011.1FDC9.13923 ; + 25 Oct 2007 11:02:44 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B12396BF9E; + Wed, 24 Oct 2007 23:18:21 +0100 (BST) +Message-ID: <200710251459.l9PExrS8018696@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 858 + for ; + Wed, 24 Oct 2007 23:18:00 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9F7321D5B9 + for ; Thu, 25 Oct 2007 16:02:17 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PExrue018698 + for ; Thu, 25 Oct 2007 10:59:53 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PExrS8018696 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 10:59:53 -0400 +Date: Thu, 25 Oct 2007 10:59:53 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f +To: source@collab.sakaiproject.org +From: bkirschn@umich.edu +Subject: [sakai] svn commit: r37381 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 11:02:52 2007 +X-DSPAM-Confidence: 0.9853 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37381 + +Author: bkirschn@umich.edu +Date: 2007-10-25 10:59:51 -0400 (Thu, 25 Oct 2007) +New Revision: 37381 + +Modified: +content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java +Log: +SAK-11814 formatting change: fix tabs only + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Thu Oct 25 09:20:41 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 09:20:41 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 09:20:41 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by casino.mail.umich.edu () with ESMTP id l9PDKesS003952; + Thu, 25 Oct 2007 09:20:40 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47209823.2629.31755 ; + 25 Oct 2007 09:20:37 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 32468606FE; + Wed, 24 Oct 2007 21:36:00 +0100 (BST) +Message-ID: <200710251317.l9PDHkHq018481@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 377 + for ; + Wed, 24 Oct 2007 21:35:47 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5D4801D5D5 + for ; Thu, 25 Oct 2007 14:20:10 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PDHlAc018483 + for ; Thu, 25 Oct 2007 09:17:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PDHkHq018481 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 09:17:46 -0400 +Date: Thu, 25 Oct 2007 09:17:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37380 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 09:20:41 2007 +X-DSPAM-Confidence: 0.9790 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37380 + +Author: ajpoland@iupui.edu +Date: 2007-10-25 09:17:45 -0400 (Thu, 25 Oct 2007) +New Revision: 37380 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Oct 25 09:20:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 09:20:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 09:20:00 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id l9PDJxsw020340; + Thu, 25 Oct 2007 09:20:00 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 472097F8.38162.14004 ; + 25 Oct 2007 09:19:55 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 221A45BDEE; + Wed, 24 Oct 2007 21:35:25 +0100 (BST) +Message-ID: <200710251317.l9PDHD8e018469@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 452 + for ; + Wed, 24 Oct 2007 21:35:14 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DF48A1D5D5 + for ; Thu, 25 Oct 2007 14:19:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PDHDNa018471 + for ; Thu, 25 Oct 2007 09:17:13 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PDHD8e018469 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 09:17:13 -0400 +Date: Thu, 25 Oct 2007 09:17:13 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37379 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 09:20:00 2007 +X-DSPAM-Confidence: 0.9916 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37379 + +Author: rjlowe@iupui.edu +Date: 2007-10-25 09:17:12 -0400 (Thu, 25 Oct 2007) +New Revision: 37379 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties +Log: +svn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +svn log -r 37335:37335 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37335 | zqian@umich.edu | 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007) | 1 line + +fix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions' +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Thu Oct 25 09:16:13 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 09:16:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 09:16:13 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id l9PDGBuB019430; + Thu, 25 Oct 2007 09:16:11 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 47209717.12201.4501 ; + 25 Oct 2007 09:16:09 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id BFFCD6BEF5; + Wed, 24 Oct 2007 21:31:42 +0100 (BST) +Message-ID: <200710251313.l9PDDV3M018448@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 530 + for ; + Wed, 24 Oct 2007 21:31:28 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B833B1D5D5 + for ; Thu, 25 Oct 2007 14:15:54 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PDDVom018450 + for ; Thu, 25 Oct 2007 09:13:31 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PDDV3M018448 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 09:13:31 -0400 +Date: Thu, 25 Oct 2007 09:13:31 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37378 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 09:16:13 2007 +X-DSPAM-Confidence: 0.9916 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37378 + +Author: rjlowe@iupui.edu +Date: 2007-10-25 09:13:30 -0400 (Thu, 25 Oct 2007) +New Revision: 37378 + +Modified: +assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +svn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk +U assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +svn log -r 37335:37335 https://source.sakaiproject.org/svn/assignment/trunk +------------------------------------------------------------------------ +r37335 | zqian@umich.edu | 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007) | 1 line + +fix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions' +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Thu Oct 25 07:48:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 07:48:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 07:48:38 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by sleepers.mail.umich.edu () with ESMTP id l9PBmcUt029769; + Thu, 25 Oct 2007 07:48:38 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4720828F.DDD73.20790 ; + 25 Oct 2007 07:48:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id CB3B3565B9; + Wed, 24 Oct 2007 20:04:02 +0100 (BST) +Message-ID: <200710251145.l9PBjqVX018225@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 652 + for ; + Wed, 24 Oct 2007 20:03:48 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 28D7111990 + for ; Thu, 25 Oct 2007 12:48:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PBjqQm018227 + for ; Thu, 25 Oct 2007 07:45:52 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PBjqVX018225 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 07:45:52 -0400 +Date: Thu, 25 Oct 2007 07:45:52 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37377 - content/branches/SAK-11543/content-impl/impl/src/java/org/sakaiproject/content/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 07:48:38 2007 +X-DSPAM-Confidence: 0.8458 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37377 + +Author: zach.thomas@txstate.edu +Date: 2007-10-25 07:45:49 -0400 (Thu, 25 Oct 2007) +New Revision: 37377 + +Modified: +content/branches/SAK-11543/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java +Log: +added additional logic to isAvailable method to look for the resource.satisfies.rule property. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Oct 25 07:20:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 07:20:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 07:20:36 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by sleepers.mail.umich.edu () with ESMTP id l9PBKZd5020834; + Thu, 25 Oct 2007 07:20:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 47207BFD.52242.17527 ; + 25 Oct 2007 07:20:32 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2A8FF5555B; + Wed, 24 Oct 2007 19:35:52 +0100 (BST) +Message-ID: <200710251117.l9PBHjwd018172@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 171 + for ; + Wed, 24 Oct 2007 19:35:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5E48B1D5EF + for ; Thu, 25 Oct 2007 12:20:12 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PBHjWZ018174 + for ; Thu, 25 Oct 2007 07:17:45 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PBHjwd018172 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 07:17:45 -0400 +Date: Thu, 25 Oct 2007 07:17:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37376 - event/branches/sakai_2-4-x/event-impl/impl/src/java/org/sakaiproject/event/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 07:20:36 2007 +X-DSPAM-Confidence: 0.9732 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37376 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-25 07:17:40 -0400 (Thu, 25 Oct 2007) +New Revision: 37376 + +Modified: +event/branches/sakai_2-4-x/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-7428 +Applied patch + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Oct 25 05:02:18 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 25 Oct 2007 05:02:18 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 25 Oct 2007 05:02:18 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by flawless.mail.umich.edu () with ESMTP id l9P92HKh027708; + Thu, 25 Oct 2007 05:02:17 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47205B94.94731.29896 ; + 25 Oct 2007 05:02:15 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3A9FA5F751; + Wed, 24 Oct 2007 17:24:38 +0100 (BST) +Message-ID: <200710250859.l9P8xXkL016695@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 905 + for ; + Wed, 24 Oct 2007 17:24:25 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 388C81D5F1 + for ; Thu, 25 Oct 2007 10:01:56 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9P8xXwR016699 + for ; Thu, 25 Oct 2007 04:59:33 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9P8xXkL016695 + for source@collab.sakaiproject.org; Thu, 25 Oct 2007 04:59:33 -0400 +Date: Thu, 25 Oct 2007 04:59:33 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37375 - event/trunk/event-impl/impl/src/java/org/sakaiproject/event/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 25 05:02:18 2007 +X-DSPAM-Confidence: 0.9760 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37375 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-25 04:59:28 -0400 (Thu, 25 Oct 2007) +New Revision: 37375 + +Modified: +event/trunk/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-7428 + +Patch applied with recoding, stucture has changed in trunk + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ray@media.berkeley.edu Wed Oct 24 18:09:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 18:09:53 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 18:09:53 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by jacknife.mail.umich.edu () with ESMTP id l9OM9nCo028551; + Wed, 24 Oct 2007 18:09:49 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 471FC2A7.ECCE3.3212 ; + 24 Oct 2007 18:09:46 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 488EC690D0; + Wed, 24 Oct 2007 06:32:54 +0100 (BST) +Message-ID: <200710242207.l9OM73hO013321@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1007 + for ; + Wed, 24 Oct 2007 06:32:38 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4C1D1C3CE + for ; Wed, 24 Oct 2007 23:09:25 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OM74gs013323 + for ; Wed, 24 Oct 2007 18:07:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OM73hO013321 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 18:07:03 -0400 +Date: Wed, 24 Oct 2007 18:07:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f +To: source@collab.sakaiproject.org +From: ray@media.berkeley.edu +Subject: [sakai] svn commit: r37369 - user/trunk/user-impl/integration-test/src/test/java/org/sakaiproject/user/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 18:09:53 2007 +X-DSPAM-Confidence: 0.7594 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37369 + +Author: ray@media.berkeley.edu +Date: 2007-10-24 18:06:59 -0400 (Wed, 24 Oct 2007) +New Revision: 37369 + +Modified: +user/trunk/user-impl/integration-test/src/test/java/org/sakaiproject/user/impl/UserDirectoryServiceGetTest.java +Log: +SAK-11597 Add regression test for blocking duplicate user EIDs + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Wed Oct 24 16:52:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 16:52:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 16:52:55 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by godsend.mail.umich.edu () with ESMTP id l9OKqsDV004352; + Wed, 24 Oct 2007 16:52:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 471FB09F.BADB2.5591 ; + 24 Oct 2007 16:52:50 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2EC206B97B; + Wed, 24 Oct 2007 05:21:56 +0100 (BST) +Message-ID: <200710242050.l9OKo68t013238@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 963 + for ; + Wed, 24 Oct 2007 05:21:37 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0158510EA8 + for ; Wed, 24 Oct 2007 21:52:26 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OKo6BZ013240 + for ; Wed, 24 Oct 2007 16:50:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OKo68t013238 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 16:50:06 -0400 +Date: Wed, 24 Oct 2007 16:50:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r37368 - sam/branches/sakai_2-4-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 16:52:55 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37368 + +Author: ktsao@stanford.edu +Date: 2007-10-24 16:50:03 -0400 (Wed, 24 Oct 2007) +New Revision: 37368 + +Modified: +sam/branches/sakai_2-4-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java +Log: +SAK-11726 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Oct 24 16:23:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 16:23:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 16:23:43 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by sleepers.mail.umich.edu () with ESMTP id l9OKNgf6018457; + Wed, 24 Oct 2007 16:23:42 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 471FA9C9.205AC.30075 ; + 24 Oct 2007 16:23:40 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B7FFD6B5D0; + Wed, 24 Oct 2007 04:52:43 +0100 (BST) +Message-ID: <200710242020.l9OKKrop013158@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 247 + for ; + Wed, 24 Oct 2007 04:52:23 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BED691BAC6 + for ; Wed, 24 Oct 2007 21:23:13 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OKKrlr013160 + for ; Wed, 24 Oct 2007 16:20:53 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OKKrop013158 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 16:20:53 -0400 +Date: Wed, 24 Oct 2007 16:20:53 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37367 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 16:23:43 2007 +X-DSPAM-Confidence: 0.9871 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37367 + +Author: zqian@umich.edu +Date: 2007-10-24 16:20:51 -0400 (Wed, 24 Oct 2007) +New Revision: 37367 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java +Log: +fix to SAK-11821: fix the problem with 0 value for getting graded or submission submission count. Was using wrong sql syntax for Oracle + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Oct 24 15:57:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 15:57:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 15:57:55 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by score.mail.umich.edu () with ESMTP id l9OJvs2G010325; + Wed, 24 Oct 2007 15:57:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 471FA3BC.DF68D.16117 ; + 24 Oct 2007 15:57:51 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2637254354; + Wed, 24 Oct 2007 04:26:53 +0100 (BST) +Message-ID: <200710241955.l9OJtAF5013108@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 871 + for ; + Wed, 24 Oct 2007 04:26:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id F27C410E77 + for ; Wed, 24 Oct 2007 20:57:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJtAFQ013110 + for ; Wed, 24 Oct 2007 15:55:10 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJtAF5013108 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:55:10 -0400 +Date: Wed, 24 Oct 2007 15:55:10 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37366 - in db/trunk/db-impl: ext/src/java/org/sakaiproject/springframework/orm/hibernate pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 15:57:55 2007 +X-DSPAM-Confidence: 0.9800 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37366 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-24 15:54:58 -0400 (Wed, 24 Oct 2007) +New Revision: 37366 + +Added: +db/trunk/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/HibernateJMXAgent.java +Modified: +db/trunk/db-impl/pack/src/webapp/WEB-INF/components.xml +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12040 + +Fixed, +Enables Hibernate JMXAgent, +To use start tomcat with -Dcom.sun.management.jmxremote and start jconsole +once hibernate is fully registered, you will see a hibernate MBean + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Wed Oct 24 15:50:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 15:50:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 15:50:17 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by chaos.mail.umich.edu () with ESMTP id l9OJoG71008961; + Wed, 24 Oct 2007 15:50:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 471FA1F3.48B6F.7008 ; + 24 Oct 2007 15:50:14 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 263DB54354; + Wed, 24 Oct 2007 04:19:16 +0100 (BST) +Message-ID: <200710241947.l9OJlTPE013073@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88 + for ; + Wed, 24 Oct 2007 04:18:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 66CFF1998F + for ; Wed, 24 Oct 2007 20:49:50 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJlTiN013075 + for ; Wed, 24 Oct 2007 15:47:30 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJlTPE013073 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:47:29 -0400 +Date: Wed, 24 Oct 2007 15:47:29 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r37364 - osp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 15:50:17 2007 +X-DSPAM-Confidence: 0.9849 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37364 + +Author: chmaurer@iupui.edu +Date: 2007-10-24 15:47:28 -0400 (Wed, 24 Oct 2007) +New Revision: 37364 + +Modified: +osp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation/addPresentation2.jsp +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-12026 +Applying the patch to fix the multi-select for forms. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Oct 24 15:43:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 15:43:27 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 15:43:27 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by godsend.mail.umich.edu () with ESMTP id l9OJhQlA029459; + Wed, 24 Oct 2007 15:43:26 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 471FA059.6205F.13911 ; + 24 Oct 2007 15:43:24 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4BA6959BCA; + Wed, 24 Oct 2007 04:12:26 +0100 (BST) +Message-ID: <200710241940.l9OJekDX013057@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453 + for ; + Wed, 24 Oct 2007 04:12:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 42F9F1998F + for ; Wed, 24 Oct 2007 20:43:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJekwb013059 + for ; Wed, 24 Oct 2007 15:40:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJekDX013057 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:40:46 -0400 +Date: Wed, 24 Oct 2007 15:40:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37363 - in memory/trunk/memory-impl: impl/src/java/org/sakaiproject/memory/impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 15:43:27 2007 +X-DSPAM-Confidence: 0.8474 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37363 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-24 15:40:34 -0400 (Wed, 24 Oct 2007) +New Revision: 37363 + +Added: +memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java +Modified: +memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +memory/trunk/memory-impl/pack/src/webapp/WEB-INF/components.xml +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12030 + +Fixed, but needs some really carefull testing to make certain that items are being evicted correctly. +The multirefcache eviction code is almost the same as it was withthe HashMap memory service. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Oct 24 15:18:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 15:18:05 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 15:18:05 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by fan.mail.umich.edu () with ESMTP id l9OJI4lr010671; + Wed, 24 Oct 2007 15:18:04 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 471F9A65.BA9A7.1130 ; + 24 Oct 2007 15:18:01 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 97C486B933; + Wed, 24 Oct 2007 03:48:03 +0100 (BST) +Message-ID: <200710241915.l9OJFOGc012965@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 270 + for ; + Wed, 24 Oct 2007 03:47:52 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B4ABE1BAC6 + for ; Wed, 24 Oct 2007 20:17:44 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJFOlD012967 + for ; Wed, 24 Oct 2007 15:15:24 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJFOGc012965 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:15:24 -0400 +Date: Wed, 24 Oct 2007 15:15:24 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r37362 - oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 15:18:05 2007 +X-DSPAM-Confidence: 0.9791 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37362 + +Author: gjthomas@iupui.edu +Date: 2007-10-24 15:15:23 -0400 (Wed, 24 Oct 2007) +New Revision: 37362 + +Modified: +oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java +Log: +ONC-8 - layout issue change + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Wed Oct 24 15:17:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 15:17:35 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 15:17:35 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by godsend.mail.umich.edu () with ESMTP id l9OJHY98014853; + Wed, 24 Oct 2007 15:17:34 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 471F9A46.E9CC.10597 ; + 24 Oct 2007 15:17:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E7C3367A66; + Wed, 24 Oct 2007 03:47:29 +0100 (BST) +Message-ID: <200710241914.l9OJEmfL012953@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997 + for ; + Wed, 24 Oct 2007 03:47:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0BDEA1BAC6 + for ; Wed, 24 Oct 2007 20:17:08 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJEmT3012955 + for ; Wed, 24 Oct 2007 15:14:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJEmfL012953 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:14:48 -0400 +Date: Wed, 24 Oct 2007 15:14:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r37361 - oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 15:17:35 2007 +X-DSPAM-Confidence: 0.9787 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37361 + +Author: gjthomas@iupui.edu +Date: 2007-10-24 15:14:47 -0400 (Wed, 24 Oct 2007) +New Revision: 37361 + +Modified: +oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java +Log: +ONC-8 - layout issue change + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Oct 24 12:09:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 12:09:08 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 12:09:08 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by score.mail.umich.edu () with ESMTP id l9OG960Q027195; + Wed, 24 Oct 2007 12:09:06 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 471F6E16.66108.20276 ; + 24 Oct 2007 12:08:57 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3157961DDD; + Wed, 24 Oct 2007 00:38:56 +0100 (BST) +Message-ID: <200710241606.l9OG6IYl012700@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 243 + for ; + Wed, 24 Oct 2007 00:38:41 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5E8681B9A1 + for ; Wed, 24 Oct 2007 17:08:38 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OG6I9S012702 + for ; Wed, 24 Oct 2007 12:06:18 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OG6IYl012700 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 12:06:18 -0400 +Date: Wed, 24 Oct 2007 12:06:18 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37356 - in memory/branches/SAK-11913: . memory-impl/impl/src/java/org/sakaiproject/memory/impl memory-test memory-test/impl memory-test/impl/src memory-test/impl/src/java memory-test/impl/src/java/org memory-test/impl/src/java/org/sakaiproject memory-test/impl/src/java/org/sakaiproject/memory memory-test/impl/src/java/org/sakaiproject/memory/test memory-test/pack memory-test/pack/src memory-test/pack/src/webapp memory-test/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 12:09:08 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37356 + +Author: aaronz@vt.edu +Date: 2007-10-24 12:05:58 -0400 (Wed, 24 Oct 2007) +New Revision: 37356 + +Added: +memory/branches/SAK-11913/memory-test/ +memory/branches/SAK-11913/memory-test/.classpath +memory/branches/SAK-11913/memory-test/.project +memory/branches/SAK-11913/memory-test/impl/ +memory/branches/SAK-11913/memory-test/impl/pom.xml +memory/branches/SAK-11913/memory-test/impl/src/ +memory/branches/SAK-11913/memory-test/impl/src/java/ +memory/branches/SAK-11913/memory-test/impl/src/java/org/ +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/ +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/ +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/ +memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java +memory/branches/SAK-11913/memory-test/pack/ +memory/branches/SAK-11913/memory-test/pack/pom.xml +memory/branches/SAK-11913/memory-test/pack/src/ +memory/branches/SAK-11913/memory-test/pack/src/webapp/ +memory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/ +memory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml +memory/branches/SAK-11913/memory-test/pom.xml +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +Log: +SAK-11913: added load testing project + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Oct 24 11:52:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 11:52:31 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 11:52:31 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by sleepers.mail.umich.edu () with ESMTP id l9OFqU74031034; + Wed, 24 Oct 2007 11:52:30 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 471F6A38.9FCC5.30113 ; + 24 Oct 2007 11:52:27 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 8ECF84E687; + Wed, 24 Oct 2007 00:22:22 +0100 (BST) +Message-ID: <200710241549.l9OFnhlk012680@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 225 + for ; + Wed, 24 Oct 2007 00:22:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C92261D3CF + for ; Wed, 24 Oct 2007 16:52:03 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OFnhRc012682 + for ; Wed, 24 Oct 2007 11:49:43 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OFnhlk012680 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 11:49:43 -0400 +Date: Wed, 24 Oct 2007 11:49:43 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37355 - reference/trunk/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 11:52:31 2007 +X-DSPAM-Confidence: 0.9789 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37355 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-24 11:49:39 -0400 (Wed, 24 Oct 2007) +New Revision: 37355 + +Modified: +reference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: +http://jira.sakaiproject.org/jira/browse/SAK-11948 +Fixed + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Oct 24 11:31:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 11:31:42 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 11:31:42 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by chaos.mail.umich.edu () with ESMTP id l9OFVfdG013510; + Wed, 24 Oct 2007 11:31:41 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 471F654E.1A471.17969 ; + 24 Oct 2007 11:31:28 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 24C0A6B652; + Wed, 24 Oct 2007 00:01:23 +0100 (BST) +Message-ID: <200710241528.l9OFSbmG012653@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137 + for ; + Wed, 24 Oct 2007 00:00:55 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7F98FDD16 + for ; Wed, 24 Oct 2007 16:30:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OFSbiF012655 + for ; Wed, 24 Oct 2007 11:28:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OFSbmG012653 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 11:28:37 -0400 +Date: Wed, 24 Oct 2007 11:28:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37354 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 11:31:42 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37354 + +Author: aaronz@vt.edu +Date: 2007-10-24 11:28:33 -0400 (Wed, 24 Oct 2007) +New Revision: 37354 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +Log: +SAK-11913: Made the memory stats easier to read and more informative + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Oct 24 11:11:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 11:11:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 11:11:47 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by jacknife.mail.umich.edu () with ESMTP id l9OFBidq009905; + Wed, 24 Oct 2007 11:11:44 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 471F60AB.69553.6182 ; + 24 Oct 2007 11:11:42 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 863CD6B61B; + Tue, 23 Oct 2007 23:41:42 +0100 (BST) +Message-ID: <200710241508.l9OF8ucw012641@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 19 + for ; + Tue, 23 Oct 2007 23:41:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A9A7C1D3C7 + for ; Wed, 24 Oct 2007 16:11:16 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OF8ujR012643 + for ; Wed, 24 Oct 2007 11:08:56 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OF8ucw012641 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 11:08:56 -0400 +Date: Wed, 24 Oct 2007 11:08:56 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37353 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 11:11:47 2007 +X-DSPAM-Confidence: 0.9831 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37353 + +Author: aaronz@vt.edu +Date: 2007-10-24 11:08:51 -0400 (Wed, 24 Oct 2007) +New Revision: 37353 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +Log: +SAK-11913: Made the memory stats easier to read and more informative + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Wed Oct 24 09:58:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 09:58:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 09:58:46 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by faithful.mail.umich.edu () with ESMTP id l9ODwjWi011284; + Wed, 24 Oct 2007 09:58:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 471F4F78.721F3.31484 ; + 24 Oct 2007 09:58:28 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id EAD216B553; + Tue, 23 Oct 2007 22:28:17 +0100 (BST) +Message-ID: <200710241355.l9ODteZ8012495@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 965 + for ; + Tue, 23 Oct 2007 22:28:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0533F1BAB4 + for ; Wed, 24 Oct 2007 14:57:59 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9ODteNf012497 + for ; Wed, 24 Oct 2007 09:55:40 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9ODteZ8012495 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 09:55:40 -0400 +Date: Wed, 24 Oct 2007 09:55:40 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37352 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 09:58:46 2007 +X-DSPAM-Confidence: 0.8508 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37352 + +Author: zqian@umich.edu +Date: 2007-10-24 09:55:38 -0400 (Wed, 24 Oct 2007) +New Revision: 37352 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm +Log: +fix to SAK-9471:Groups can be added in site info with no members, it is possible to create a group which does not display any group name + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Oct 24 08:08:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 08:08:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 08:08:46 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id l9OC8kTm028425; + Wed, 24 Oct 2007 08:08:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 471F35C8.A01AD.22014 ; + 24 Oct 2007 08:08:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0AED76B538; + Tue, 23 Oct 2007 20:55:40 +0100 (BST) +Message-ID: <200710241205.l9OC5pM8012304@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13 + for ; + Tue, 23 Oct 2007 20:55:18 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id C48031CF18 + for ; Wed, 24 Oct 2007 13:08:10 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OC5pWR012306 + for ; Wed, 24 Oct 2007 08:05:51 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OC5pM8012304 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 08:05:51 -0400 +Date: Wed, 24 Oct 2007 08:05:51 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37350 - in memory/branches/SAK-11913/memory-impl: impl/src/java/org/sakaiproject/memory/impl pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 08:08:46 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37350 + +Author: aaronz@vt.edu +Date: 2007-10-24 08:05:40 -0400 (Wed, 24 Oct 2007) +New Revision: 37350 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/ehcache-beans.xml +Log: +SAK-11913: Adjusted the configuration to remove the cache that was created in memory, tweaked the implementation of the memory service + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Wed Oct 24 08:08:40 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 08:08:40 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 08:08:40 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by godsend.mail.umich.edu () with ESMTP id l9OC8dbn011784; + Wed, 24 Oct 2007 08:08:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 471F35B8.D4058.23027 ; + 24 Oct 2007 08:08:27 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 121196B52E; + Tue, 23 Oct 2007 20:55:30 +0100 (BST) +Message-ID: <200710241205.l9OC5bRv012292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467 + for ; + Tue, 23 Oct 2007 20:55:04 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D37211CF18 + for ; Wed, 24 Oct 2007 13:07:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OC5b51012294 + for ; Wed, 24 Oct 2007 08:05:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OC5bRv012292 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 08:05:37 -0400 +Date: Wed, 24 Oct 2007 08:05:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37349 - memory/branches/SAK-11913/memory-api/api/src/java +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 08:08:40 2007 +X-DSPAM-Confidence: 0.9866 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37349 + +Author: aaronz@vt.edu +Date: 2007-10-24 08:05:33 -0400 (Wed, 24 Oct 2007) +New Revision: 37349 + +Modified: +memory/branches/SAK-11913/memory-api/api/src/java/ehcache.xml +Log: +SAK-11913: Adjusted the configuration to remove the cache that was created in memory, tweaked the implementation of the memory service + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From mbreuker@loi.nl Wed Oct 24 07:13:09 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 07:13:09 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 07:13:09 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id l9OBD89b013561; + Wed, 24 Oct 2007 07:13:08 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 471F28BE.C0264.29249 ; + 24 Oct 2007 07:13:05 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C8C7053BE4; + Tue, 23 Oct 2007 20:00:09 +0100 (BST) +Message-ID: <200710241110.l9OBAK1L012263@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 336 + for ; + Tue, 23 Oct 2007 19:59:45 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CAB3E1BA75 + for ; Wed, 24 Oct 2007 12:12:39 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OBAKuE012265 + for ; Wed, 24 Oct 2007 07:10:20 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OBAK1L012263 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 07:10:20 -0400 +Date: Wed, 24 Oct 2007 07:10:20 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f +To: source@collab.sakaiproject.org +From: mbreuker@loi.nl +Subject: [sakai] svn commit: r37348 - blog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 07:13:09 2007 +X-DSPAM-Confidence: 0.9797 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37348 + +Author: mbreuker@loi.nl +Date: 2007-10-24 07:10:15 -0400 (Wed, 24 Oct 2007) +New Revision: 37348 + +Modified: +blog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_nl.properties +Log: +SAK-12021 - update dutch translations (blogger tool) + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Wed Oct 24 04:07:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Wed, 24 Oct 2007 04:07:45 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Wed, 24 Oct 2007 04:07:45 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by fan.mail.umich.edu () with ESMTP id l9O87iw0008999; + Wed, 24 Oct 2007 04:07:44 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 471EFD4A.C7C55.24039 ; + 24 Oct 2007 04:07:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 576C655A94; + Tue, 23 Oct 2007 16:59:32 +0100 (BST) +Message-ID: <200710240805.l9O852hN012104@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 410 + for ; + Tue, 23 Oct 2007 16:59:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 005301CD04 + for ; Wed, 24 Oct 2007 09:07:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9O8520B012106 + for ; Wed, 24 Oct 2007 04:05:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9O852hN012104 + for source@collab.sakaiproject.org; Wed, 24 Oct 2007 04:05:02 -0400 +Date: Wed, 24 Oct 2007 04:05:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37347 - db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Wed Oct 24 04:07:45 2007 +X-DSPAM-Confidence: 0.9788 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37347 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-24 04:04:55 -0400 (Wed, 24 Oct 2007) +New Revision: 37347 + +Modified: +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12031 + +Missed build errors after syncing with assignments. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 23 21:15:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 21:15:34 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 21:15:34 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by brazil.mail.umich.edu () with ESMTP id l9O1FYwE032450; + Tue, 23 Oct 2007 21:15:34 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 471E9CB1.3B37D.24099 ; + 23 Oct 2007 21:15:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0E2106B22A; + Tue, 23 Oct 2007 10:09:02 +0100 (BST) +Message-ID: <200710240112.l9O1CvVS011417@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 953 + for ; + Tue, 23 Oct 2007 10:08:44 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5EFA8B2BC + for ; Wed, 24 Oct 2007 02:15:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9O1CvcD011419 + for ; Tue, 23 Oct 2007 21:12:57 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9O1CvVS011417 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 21:12:57 -0400 +Date: Tue, 23 Oct 2007 21:12:57 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37346 - in assignment/branches/sakai_2-4-x/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 21:15:34 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37346 + +Author: zqian@umich.edu +Date: 2007-10-23 21:12:53 -0400 (Tue, 23 Oct 2007) +New Revision: 37346 + +Modified: +assignment/branches/sakai_2-4-x/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-11967 into 2-4-x branch:svn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 23 21:12:48 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 21:12:48 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 21:12:48 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by faithful.mail.umich.edu () with ESMTP id l9O1Clpd030175; + Tue, 23 Oct 2007 21:12:47 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 471E9C08.D6723.9501 ; + 23 Oct 2007 21:12:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5498A6B22A; + Tue, 23 Oct 2007 10:06:27 +0100 (BST) +Message-ID: <200710240110.l9O1A4d3011404@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 455 + for ; + Tue, 23 Oct 2007 10:06:12 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 659E5B2BC + for ; Wed, 24 Oct 2007 02:12:22 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9O1A4Uk011406 + for ; Tue, 23 Oct 2007 21:10:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9O1A4d3011404 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 21:10:04 -0400 +Date: Tue, 23 Oct 2007 21:10:04 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37345 - in assignment/branches/post-2-4/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 21:12:48 2007 +X-DSPAM-Confidence: 0.9873 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37345 + +Author: zqian@umich.edu +Date: 2007-10-23 21:09:59 -0400 (Tue, 23 Oct 2007) +New Revision: 37345 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merge the fix to SAK-11967 into post-2-4 branch:svn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 19:54:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 19:54:11 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 19:54:11 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by sleepers.mail.umich.edu () with ESMTP id l9NNsAqi030299; + Tue, 23 Oct 2007 19:54:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 471E899B.D0531.1829 ; + 23 Oct 2007 19:54:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3155A68995; + Tue, 23 Oct 2007 08:47:53 +0100 (BST) +Message-ID: <200710232351.l9NNpYig011284@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676 + for ; + Tue, 23 Oct 2007 08:47:40 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 365BDBDBE + for ; Wed, 24 Oct 2007 00:53:52 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNpYef011286 + for ; Tue, 23 Oct 2007 19:51:34 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNpYig011284 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:51:34 -0400 +Date: Tue, 23 Oct 2007 19:51:34 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37344 - assignment/trunk +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 19:54:11 2007 +X-DSPAM-Confidence: 0.9868 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37344 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 19:51:30 -0400 (Tue, 23 Oct 2007) +New Revision: 37344 + +Modified: +assignment/trunk/runconversion-2.4.x.sh +assignment/trunk/runconversion.sh +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12031 + +Modified conversion scripts to use the central framework +The could be modified further to use the central script, left notes in the patch. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 19:47:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 19:47:28 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 19:47:28 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by godsend.mail.umich.edu () with ESMTP id l9NNlRxR019493; + Tue, 23 Oct 2007 19:47:27 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 471E8808.80DEF.11446 ; + 23 Oct 2007 19:47:23 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B5C8F4E754; + Tue, 23 Oct 2007 08:41:09 +0100 (BST) +Message-ID: <200710232344.l9NNijIu011229@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176 + for ; + Tue, 23 Oct 2007 08:40:51 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BC2D4BDBE + for ; Wed, 24 Oct 2007 00:47:03 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNikkd011231 + for ; Tue, 23 Oct 2007 19:44:46 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNijIu011229 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:44:45 -0400 +Date: Tue, 23 Oct 2007 19:44:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37343 - in assignment/trunk/assignment-impl/impl: . src/java/org/sakaiproject/assignment/impl/conversion/api src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 19:47:28 2007 +X-DSPAM-Confidence: 0.9809 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37343 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 19:44:33 -0400 (Tue, 23 Oct 2007) +New Revision: 37343 + +Removed: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +Modified: +assignment/trunk/assignment-impl/impl/pom.xml +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java +Log: +Moved the conversion framework into sakai-db-conversion + +http://jira.sakaiproject.org/jira/browse/SAK-12031 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 19:46:21 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 19:46:21 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 19:46:21 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by brazil.mail.umich.edu () with ESMTP id l9NNkK65022332; + Tue, 23 Oct 2007 19:46:20 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 471E87C6.DAD4F.4946 ; + 23 Oct 2007 19:46:17 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 06EE550FD6; + Tue, 23 Oct 2007 08:39:59 +0100 (BST) +Message-ID: <200710232343.l9NNhhcJ011217@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 511 + for ; + Tue, 23 Oct 2007 08:39:42 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D79FFBDBE + for ; Wed, 24 Oct 2007 00:46:01 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNhijf011219 + for ; Tue, 23 Oct 2007 19:43:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNhhcJ011217 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:43:43 -0400 +Date: Tue, 23 Oct 2007 19:43:43 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37342 - in db/trunk: . db-util db-util/conversion db-util/conversion/src db-util/conversion/src/java db-util/conversion/src/java/org db-util/conversion/src/java/org/sakaiproject db-util/conversion/src/java/org/sakaiproject/util db-util/conversion/src/java/org/sakaiproject/util/conversion db-util/storage/src/java/org/sakaiproject/util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 19:46:21 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37342 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 19:43:14 -0400 (Tue, 23 Oct 2007) +New Revision: 37342 + +Added: +db/trunk/db-util/conversion/ +db/trunk/db-util/conversion/pom.xml +db/trunk/db-util/conversion/runconversion.sh +db/trunk/db-util/conversion/src/ +db/trunk/db-util/conversion/src/java/ +db/trunk/db-util/conversion/src/java/org/ +db/trunk/db-util/conversion/src/java/org/sakaiproject/ +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/ +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/ +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java +db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java +db/trunk/db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java +Modified: +db/trunk/db-util/.classpath +db/trunk/pom.xml +Log: +Moved conversion utility into sakai-db-conversion + +http://jira.sakaiproject.org/jira/browse/SAK-12031 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 19:44:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 19:44:39 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 19:44:39 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by faithful.mail.umich.edu () with ESMTP id l9NNicmb026601; + Tue, 23 Oct 2007 19:44:38 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 471E8761.16AED.17085 ; + 23 Oct 2007 19:44:35 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9D2EE4EC4D; + Tue, 23 Oct 2007 08:38:08 +0100 (BST) +Message-ID: <200710232342.l9NNg1xw011205@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339 + for ; + Tue, 23 Oct 2007 08:37:50 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5695DBDBE + for ; Wed, 24 Oct 2007 00:44:19 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNg10Y011207 + for ; Tue, 23 Oct 2007 19:42:01 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNg1xw011205 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:42:01 -0400 +Date: Tue, 23 Oct 2007 19:42:01 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37341 - in content/trunk: . content-impl/impl content-impl/impl/src/java/org/sakaiproject/content/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 19:44:39 2007 +X-DSPAM-Confidence: 0.9761 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37341 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 19:41:38 -0400 (Tue, 23 Oct 2007) +New Revision: 37341 + +Removed: +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/ByteStorageConversion.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/CheckConnection.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionController.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionDriver.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionException.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionHandler.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/UpgradeSchema.java +content/trunk/runconversion.sh +Modified: +content/trunk/content-impl/impl/pom.xml +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentCollectionSerializer.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentResourceSerializer.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConvertTime.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java +content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java +content/trunk/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ByteStorageConversionCheck.java +content/trunk/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MySQLByteStorage.java +Log: +Moved conversion utility into /db + + +http://jira.sakaiproject.org/jira/browse/SAK-12031 + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Tue Oct 23 19:42:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 19:42:35 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 19:42:35 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by mission.mail.umich.edu () with ESMTP id l9NNgY9d029854; + Tue, 23 Oct 2007 19:42:34 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 471E86DC.C4520.27633 ; + 23 Oct 2007 19:42:23 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6AAA4679B8; + Tue, 23 Oct 2007 08:35:51 +0100 (BST) +Message-ID: <200710232339.l9NNdiEH011193@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 465 + for ; + Tue, 23 Oct 2007 08:35:28 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B1172BDBE + for ; Wed, 24 Oct 2007 00:42:02 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNdiO1011195 + for ; Tue, 23 Oct 2007 19:39:44 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNdiEH011193 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:39:44 -0400 +Date: Tue, 23 Oct 2007 19:39:44 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37340 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 19:42:35 2007 +X-DSPAM-Confidence: 0.9857 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37340 + +Author: dlhaines@umich.edu +Date: 2007-10-23 19:39:42 -0400 (Tue, 23 Oct 2007) +New Revision: 37340 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xN.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xN.properties +Log: +CTools: update 2.4.xN build for new evaluation revision. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 18:31:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 18:31:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 18:31:43 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by casino.mail.umich.edu () with ESMTP id l9NMVgk3003906; + Tue, 23 Oct 2007 18:31:42 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 471E7648.9E569.9011 ; + 23 Oct 2007 18:31:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 98F9D695E6; + Tue, 23 Oct 2007 07:25:18 +0100 (BST) +Message-ID: <200710232229.l9NMT4OU011109@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 891 + for ; + Tue, 23 Oct 2007 07:25:00 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B1AAD1CDF6 + for ; Tue, 23 Oct 2007 23:31:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NMT4sv011111 + for ; Tue, 23 Oct 2007 18:29:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NMT4OU011109 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 18:29:04 -0400 +Date: Tue, 23 Oct 2007 18:29:04 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37339 - in content/trunk: content-impl-jcr/pack content-impl-jcr/pack/src/webapp/WEB-INF contentmultiplex-impl contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 18:31:43 2007 +X-DSPAM-Confidence: 0.9737 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37339 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 18:28:52 -0400 (Tue, 23 Oct 2007) +New Revision: 37339 + +Modified: +content/trunk/content-impl-jcr/pack/pom.xml +content/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml +content/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml +content/trunk/contentmultiplex-impl/ +content/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java +Log: +Integrating the multiplexer + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 18:28:35 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 18:28:35 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 18:28:35 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by faithful.mail.umich.edu () with ESMTP id l9NMSYGP024562; + Tue, 23 Oct 2007 18:28:34 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 471E757F.2B346.20800 ; + 23 Oct 2007 18:28:18 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 77552695E6; + Tue, 23 Oct 2007 07:22:03 +0100 (BST) +Message-ID: <200710232225.l9NMPfW9011086@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 452 + for ; + Tue, 23 Oct 2007 07:21:49 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6D1CC1CDF6 + for ; Tue, 23 Oct 2007 23:27:59 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NMPfLj011088 + for ; Tue, 23 Oct 2007 18:25:41 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NMPfW9011086 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 18:25:41 -0400 +Date: Tue, 23 Oct 2007 18:25:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37338 - in content/trunk: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool content-tool/tool/src/webapp/vm/resources +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 18:28:35 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37338 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 18:25:28 -0400 (Tue, 23 Oct 2007) +New Revision: 37338 + +Modified: +content/trunk/content-bundles/types.properties +content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +content/trunk/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm +Log: +Fixed the mount point issue, +there is a new bundle value which needs propagating to other language files. + +http://bugs.sakaiproject.org/jira/browse/SAK-12019 + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 17:36:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 17:36:42 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 17:36:42 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by godsend.mail.umich.edu () with ESMTP id l9NLafQB019765; + Tue, 23 Oct 2007 17:36:41 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 471E6963.9F5FA.22252 ; + 23 Oct 2007 17:36:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3DA636842F; + Tue, 23 Oct 2007 06:30:23 +0100 (BST) +Message-ID: <200710232134.l9NLY2nm010977@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198 + for ; + Tue, 23 Oct 2007 06:30:11 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6F442C82C + for ; Tue, 23 Oct 2007 22:36:20 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NLY2Xf010979 + for ; Tue, 23 Oct 2007 17:34:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NLY2nm010977 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 17:34:02 -0400 +Date: Tue, 23 Oct 2007 17:34:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37337 - rwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 17:36:42 2007 +X-DSPAM-Confidence: 0.9759 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37337 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 17:33:59 -0400 (Tue, 23 Oct 2007) +New Revision: 37337 + +Modified: +rwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java +Log: +SAK-11988 +Missed eclipse file + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 23 17:21:59 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 17:21:59 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 17:21:59 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by brazil.mail.umich.edu () with ESMTP id l9NLLw2R023313; + Tue, 23 Oct 2007 17:21:58 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 471E65EF.BA959.21140 ; + 23 Oct 2007 17:21:55 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5C57F6A3AA; + Tue, 23 Oct 2007 06:15:12 +0100 (BST) +Message-ID: <200710232107.l9NL7Mj2010849@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 945 + for ; + Tue, 23 Oct 2007 06:06:00 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A13221CDF7 + for ; Tue, 23 Oct 2007 22:09:39 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NL7MiL010851 + for ; Tue, 23 Oct 2007 17:07:22 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NL7Mj2010849 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 17:07:22 -0400 +Date: Tue, 23 Oct 2007 17:07:22 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37335 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 17:21:59 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37335 + +Author: zqian@umich.edu +Date: 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007) +New Revision: 37335 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions' + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 17:21:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 17:21:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 17:21:54 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id l9NLLrMn001813; + Tue, 23 Oct 2007 17:21:53 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 471E65E8.BF4A3.5404 ; + 23 Oct 2007 17:21:49 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9B00E6A3A9; + Tue, 23 Oct 2007 06:15:11 +0100 (BST) +Message-ID: <200710232117.l9NLH3DP010908@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 181 + for ; + Tue, 23 Oct 2007 06:12:52 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E756C1CDF8 + for ; Tue, 23 Oct 2007 22:19:20 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NLH3AB010910 + for ; Tue, 23 Oct 2007 17:17:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NLH3DP010908 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 17:17:03 -0400 +Date: Tue, 23 Oct 2007 17:17:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37336 - in rwiki/trunk: rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 17:21:54 2007 +X-DSPAM-Confidence: 0.8434 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37336 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 17:16:48 -0400 (Tue, 23 Oct 2007) +New Revision: 37336 + +Modified: +rwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java +rwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java +rwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java +Log: +Discovered that the eid and id usage was the wrong way round. +Fixed over entire preferences storage. + +http://jira.sakaiproject.org/jira/browse/SAK-11988 + + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Oct 23 14:00:37 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 14:00:37 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 14:00:37 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by faithful.mail.umich.edu () with ESMTP id l9NI0aMf021236; + Tue, 23 Oct 2007 14:00:36 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 471E36B4.2E78C.28190 ; + 23 Oct 2007 14:00:26 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D7F4D60CCB; + Tue, 23 Oct 2007 03:01:49 +0100 (BST) +Message-ID: <200710231753.l9NHrEiO010401@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 37 + for ; + Tue, 23 Oct 2007 02:57:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A41A61CD94 + for ; Tue, 23 Oct 2007 18:55:31 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NHrEig010403 + for ; Tue, 23 Oct 2007 13:53:14 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NHrEiO010401 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 13:53:14 -0400 +Date: Tue, 23 Oct 2007 13:53:14 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37329 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 14:00:37 2007 +X-DSPAM-Confidence: 0.9838 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37329 + +Author: aaronz@vt.edu +Date: 2007-10-23 13:53:09 -0400 (Tue, 23 Oct 2007) +New Revision: 37329 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +Log: +SAK-11913: Fixed up a few issues in the code so that it is more backwards compatible + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 23 12:38:43 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 12:38:43 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 12:38:43 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by awakenings.mail.umich.edu () with ESMTP id l9NGcfKA003901; + Tue, 23 Oct 2007 12:38:41 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 471E238C.91F59.32451 ; + 23 Oct 2007 12:38:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0466E6AE58; + Tue, 23 Oct 2007 01:40:05 +0100 (BST) +Message-ID: <200710231636.l9NGa2eV010292@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516 + for ; + Tue, 23 Oct 2007 01:39:49 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9A2A81CBCC + for ; Tue, 23 Oct 2007 17:38:19 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NGa28P010294 + for ; Tue, 23 Oct 2007 12:36:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NGa2eV010292 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 12:36:02 -0400 +Date: Tue, 23 Oct 2007 12:36:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37328 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 12:38:43 2007 +X-DSPAM-Confidence: 0.9855 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37328 + +Author: zqian@umich.edu +Date: 2007-10-23 12:36:01 -0400 (Tue, 23 Oct 2007) +New Revision: 37328 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +Log: +fix to SAK-11634:Assignment uses UsageSession rather than normal Session + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 23 12:23:55 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 12:23:55 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 12:23:55 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by fan.mail.umich.edu () with ESMTP id l9NGNsmt014124; + Tue, 23 Oct 2007 12:23:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 471E2006.D6DB1.26664 ; + 23 Oct 2007 12:23:38 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A5F015868D; + Tue, 23 Oct 2007 01:25:03 +0100 (BST) +Message-ID: <200710231621.l9NGL4H1010241@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 234 + for ; + Tue, 23 Oct 2007 01:24:50 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id ABDB91CBCC + for ; Tue, 23 Oct 2007 17:23:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NGL490010243 + for ; Tue, 23 Oct 2007 12:21:04 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NGL4H1010241 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 12:21:04 -0400 +Date: Tue, 23 Oct 2007 12:21:04 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37327 - in assignment/branches/post-2-4: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/bundle assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 12:23:55 2007 +X-DSPAM-Confidence: 0.9858 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37327 + +Author: zqian@umich.edu +Date: 2007-10-23 12:20:57 -0400 (Tue, 23 Oct 2007) +New Revision: 37327 + +Modified: +assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +merged fix to SAK-11992 into post-2-4 branch: svn merge -r 37325:37326 https://source.sakaiproject.org/svn/assignment/trunk/ + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 23 12:19:42 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 12:19:42 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 12:19:42 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by faithful.mail.umich.edu () with ESMTP id l9NGJfqf022011; + Tue, 23 Oct 2007 12:19:41 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 471E1F16.7CCE0.4998 ; + 23 Oct 2007 12:19:37 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B2E866ADF4; + Tue, 23 Oct 2007 01:21:03 +0100 (BST) +Message-ID: <200710231617.l9NGH2q4010224@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622 + for ; + Tue, 23 Oct 2007 01:20:51 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3A7031C846 + for ; Tue, 23 Oct 2007 17:19:20 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NGH3gv010226 + for ; Tue, 23 Oct 2007 12:17:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NGH2q4010224 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 12:17:02 -0400 +Date: Tue, 23 Oct 2007 12:17:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37326 - in assignment/trunk: assignment-bundles assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 12:19:42 2007 +X-DSPAM-Confidence: 0.9899 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37326 + +Author: zqian@umich.edu +Date: 2007-10-23 12:16:57 -0400 (Tue, 23 Oct 2007) +New Revision: 37326 + +Modified: +assignment/trunk/assignment-bundles/assignment.properties +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-11992:Deleted assignment appearing to students but not instructor; when the assignment is non-electronic type, delete assignment also removes all submissions and assignment content object. Otherwise, if there is no submission to the assignment yet, both assignment and assignment content objects will be removed. If there is submission object, assignment is just marked as 'deleted' + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Oct 23 11:37:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 11:37:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 11:37:04 -0400 +Received: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152]) + by panther.mail.umich.edu () with ESMTP id l9NFb36M001839; + Tue, 23 Oct 2007 11:37:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY carrie.mr.itd.umich.edu ID 471E14FD.E4173.5093 ; + 23 Oct 2007 11:36:32 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C62636AE0A; + Tue, 23 Oct 2007 00:37:50 +0100 (BST) +Message-ID: <200710231533.l9NFXoAF010152@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909 + for ; + Tue, 23 Oct 2007 00:37:31 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5FB221CC1A + for ; Tue, 23 Oct 2007 16:36:06 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NFXo4c010154 + for ; Tue, 23 Oct 2007 11:33:50 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NFXoAF010152 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 11:33:50 -0400 +Date: Tue, 23 Oct 2007 11:33:50 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r37324 - osp/tags/sakai_2-5-0_QA_010_GMT +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 11:37:04 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37324 + +Author: chmaurer@iupui.edu +Date: 2007-10-23 11:33:49 -0400 (Tue, 23 Oct 2007) +New Revision: 37324 + +Modified: +osp/tags/sakai_2-5-0_QA_010_GMT/ +osp/tags/sakai_2-5-0_QA_010_GMT/.externals +osp/tags/sakai_2-5-0_QA_010_GMT/pom.xml +Log: +changes for OSP tag to include gmt + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Tue Oct 23 11:19:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 11:19:14 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 11:19:14 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by sleepers.mail.umich.edu () with ESMTP id l9NFJESr008157; + Tue, 23 Oct 2007 11:19:14 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 471E10D4.DF419.26403 ; + 23 Oct 2007 11:18:47 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0B38A544F9; + Tue, 23 Oct 2007 00:20:08 +0100 (BST) +Message-ID: <200710231515.l9NFFtHT010113@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 886 + for ; + Tue, 23 Oct 2007 00:19:41 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2F7D11CBE8 + for ; Tue, 23 Oct 2007 16:18:10 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NFFt8A010115 + for ; Tue, 23 Oct 2007 11:15:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NFFtHT010113 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 11:15:55 -0400 +Date: Tue, 23 Oct 2007 11:15:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r37323 - osp/tags +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 11:19:14 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37323 + +Author: chmaurer@iupui.edu +Date: 2007-10-23 11:15:54 -0400 (Tue, 23 Oct 2007) +New Revision: 37323 + +Added: +osp/tags/sakai_2-5-0_QA_010_GMT/ +Log: +prep for 2.5 010 OSP + GMT tag + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Tue Oct 23 10:11:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 10:11:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 10:11:17 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by awakenings.mail.umich.edu () with ESMTP id l9NEBFbS001868; + Tue, 23 Oct 2007 10:11:15 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 471E00FD.9A85E.17758 ; + 23 Oct 2007 10:11:12 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 885316ADB3; + Mon, 22 Oct 2007 23:15:28 +0100 (BST) +Message-ID: <200710231408.l9NE8bxQ008840@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 687 + for ; + Mon, 22 Oct 2007 23:15:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 59D141CC24 + for ; Tue, 23 Oct 2007 15:10:51 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NE8b8c008842 + for ; Tue, 23 Oct 2007 10:08:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NE8bxQ008840 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 10:08:37 -0400 +Date: Tue, 23 Oct 2007 10:08:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37228 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 10:11:17 2007 +X-DSPAM-Confidence: 0.7610 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37228 + +Author: zqian@umich.edu +Date: 2007-10-23 10:08:35 -0400 (Tue, 23 Oct 2007) +New Revision: 37228 + +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java +assignment/trunk/upgradeschema_oracle.config +Log: +further fix for SAK-11821 from Carl Hall: 1) remove the rs.first() call; 2) check for the empty saxList; 3) add the insert back into convert.1.populate.migrate.table inside updateschema_oracle.config file + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Tue Oct 23 09:23:04 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 09:23:04 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 09:23:04 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by awakenings.mail.umich.edu () with ESMTP id l9NDN3PD005080; + Tue, 23 Oct 2007 09:23:03 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 471DF5B2.7BFBF.29216 ; + 23 Oct 2007 09:23:01 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6F8AC5FDCD; + Mon, 22 Oct 2007 22:27:22 +0100 (BST) +Message-ID: <200710231320.l9NDKS7E008765@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 123 + for ; + Mon, 22 Oct 2007 22:27:10 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6FF771CC18 + for ; Tue, 23 Oct 2007 14:22:42 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NDKSmn008767 + for ; Tue, 23 Oct 2007 09:20:28 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NDKS7E008765 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 09:20:28 -0400 +Date: Tue, 23 Oct 2007 09:20:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r37226 - oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 09:23:04 2007 +X-DSPAM-Confidence: 0.9788 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37226 + +Author: gjthomas@iupui.edu +Date: 2007-10-23 09:20:27 -0400 (Tue, 23 Oct 2007) +New Revision: 37226 + +Modified: +oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java +Log: +ONC-8 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Tue Oct 23 09:15:07 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 09:15:07 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 09:15:07 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by flawless.mail.umich.edu () with ESMTP id l9NDF6AT003884; + Tue, 23 Oct 2007 09:15:06 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 471DF3D3.C82DC.17732 ; + 23 Oct 2007 09:15:02 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4E6276AD47; + Mon, 22 Oct 2007 22:19:25 +0100 (BST) +Message-ID: <200710231312.l9NDCJBL008723@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848 + for ; + Mon, 22 Oct 2007 22:19:01 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 699E21CC14 + for ; Tue, 23 Oct 2007 14:14:33 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NDCJLw008725 + for ; Tue, 23 Oct 2007 09:12:20 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NDCJBL008723 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 09:12:19 -0400 +Date: Tue, 23 Oct 2007 09:12:19 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r37225 - in web/trunk/web-tool/tool/src: bundle webapp/vm/web +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 09:15:07 2007 +X-DSPAM-Confidence: 0.9804 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37225 + +Author: gsilver@umich.edu +Date: 2007-10-23 09:12:18 -0400 (Tue, 23 Oct 2007) +New Revision: 37225 + +Modified: +web/trunk/web-tool/tool/src/bundle/iframe.properties +web/trunk/web-tool/tool/src/webapp/vm/web/chef_iframe-customize.vm +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12007 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Tue Oct 23 09:12:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 09:12:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 09:12:54 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by faithful.mail.umich.edu () with ESMTP id l9NDCreF000776; + Tue, 23 Oct 2007 09:12:53 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 471DF34E.68C8F.30401 ; + 23 Oct 2007 09:12:49 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 43B125FDCD; + Mon, 22 Oct 2007 22:17:12 +0100 (BST) +Message-ID: <200710231310.l9NDA7mH008680@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 559 + for ; + Mon, 22 Oct 2007 22:16:45 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DDBB11CC12 + for ; Tue, 23 Oct 2007 14:12:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NDA8Eq008682 + for ; Tue, 23 Oct 2007 09:10:08 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NDA7mH008680 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 09:10:07 -0400 +Date: Tue, 23 Oct 2007 09:10:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37224 - rwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 09:12:54 2007 +X-DSPAM-Confidence: 0.9847 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37224 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-23 09:10:02 -0400 (Tue, 23 Oct 2007) +New Revision: 37224 + +Modified: +rwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java +Log: +Problem with confusion over user.getId() and user.getEid() causing emails not to go out. +This should perhapse be back ported into 2.4.x + +http://jira.sakaiproject.org/jira/browse/SAK-11988 + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Tue Oct 23 08:42:32 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 08:42:32 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 08:42:32 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by flawless.mail.umich.edu () with ESMTP id l9NCgVcD015641; + Tue, 23 Oct 2007 08:42:31 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 471DEC31.33FF4.23371 ; + 23 Oct 2007 08:42:28 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 94DD86ACFA; + Mon, 22 Oct 2007 21:46:48 +0100 (BST) +Message-ID: <200710231239.l9NCdh36008629@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 146 + for ; + Mon, 22 Oct 2007 21:46:24 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2867F1C84A + for ; Tue, 23 Oct 2007 13:41:56 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NCdhwL008631 + for ; Tue, 23 Oct 2007 08:39:43 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NCdh36008629 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 08:39:43 -0400 +Date: Tue, 23 Oct 2007 08:39:43 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37223 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 08:42:32 2007 +X-DSPAM-Confidence: 0.9783 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37223 + +Author: ajpoland@iupui.edu +Date: 2007-10-23 08:39:42 -0400 (Tue, 23 Oct 2007) +New Revision: 37223 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Oct 23 08:37:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 08:37:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 08:37:36 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id l9NCbZYK015121; + Tue, 23 Oct 2007 08:37:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 471DEB09.BF385.10894 ; + 23 Oct 2007 08:37:32 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 9AF376AA3E; + Mon, 22 Oct 2007 21:41:48 +0100 (BST) +Message-ID: <200710231234.l9NCYt5v008605@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686 + for ; + Mon, 22 Oct 2007 21:41:35 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0EFB51C84A + for ; Tue, 23 Oct 2007 13:37:08 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NCYtJw008607 + for ; Tue, 23 Oct 2007 08:34:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NCYt5v008605 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 08:34:55 -0400 +Date: Tue, 23 Oct 2007 08:34:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37222 - memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 08:37:36 2007 +X-DSPAM-Confidence: 0.8477 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37222 + +Author: aaronz@vt.edu +Date: 2007-10-23 08:34:51 -0400 (Tue, 23 Oct 2007) +New Revision: 37222 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java +Log: +SAK-11913: All unit tests completed and running correctly +Interfaces should be stable now + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Oct 23 07:45:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 07:45:30 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 07:45:30 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id l9NBjTkC024997; + Tue, 23 Oct 2007 07:45:29 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 471DDED4.2D314.9581 ; + 23 Oct 2007 07:45:27 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 7A4A459CD3; + Mon, 22 Oct 2007 20:49:44 +0100 (BST) +Message-ID: <200710231142.l9NBgvM2008548@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 567 + for ; + Mon, 22 Oct 2007 20:49:27 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 2A049AF36 + for ; Tue, 23 Oct 2007 12:45:11 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NBgvOE008550 + for ; Tue, 23 Oct 2007 07:42:57 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NBgvM2008548 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 07:42:57 -0400 +Date: Tue, 23 Oct 2007 07:42:57 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37221 - in memory/branches/SAK-11913/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakaiproject/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 07:45:30 2007 +X-DSPAM-Confidence: 0.7558 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37221 + +Author: aaronz@vt.edu +Date: 2007-10-23 07:42:48 -0400 (Tue, 23 Oct 2007) +New Revision: 37221 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java +Log: +SAK-11913: Updates to make the package closer to JSR-107 +Tests now mostly completed + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Tue Oct 23 07:44:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Tue, 23 Oct 2007 07:44:39 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Tue, 23 Oct 2007 07:44:39 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by sleepers.mail.umich.edu () with ESMTP id l9NBidkS010648; + Tue, 23 Oct 2007 07:44:39 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 471DDEA1.35E5A.8157 ; + 23 Oct 2007 07:44:36 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2017A52410; + Mon, 22 Oct 2007 20:48:21 +0100 (BST) +Message-ID: <200710231141.l9NBfpHD008536@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 342 + for ; + Mon, 22 Oct 2007 20:47:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 364AE1C8B6 + for ; Tue, 23 Oct 2007 12:44:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NBfpRU008538 + for ; Tue, 23 Oct 2007 07:41:51 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NBfpHD008536 + for source@collab.sakaiproject.org; Tue, 23 Oct 2007 07:41:51 -0400 +Date: Tue, 23 Oct 2007 07:41:51 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37220 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Tue Oct 23 07:44:39 2007 +X-DSPAM-Confidence: 0.9845 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37220 + +Author: aaronz@vt.edu +Date: 2007-10-23 07:41:46 -0400 (Tue, 23 Oct 2007) +New Revision: 37220 + +Modified: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cache.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cacher.java +Log: +Mostly completed tests now, still need to work out the attach tests + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Mon Oct 22 19:57:34 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 19:57:34 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 19:57:34 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by godsend.mail.umich.edu () with ESMTP id l9MNvXP9013454; + Mon, 22 Oct 2007 19:57:33 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 471D38E8.6E665.15061 ; + 22 Oct 2007 19:57:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0FD5D6A8DD; + Mon, 22 Oct 2007 09:47:37 +0100 (BST) +Message-ID: <200710222354.l9MNsegh007551@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 76 + for ; + Mon, 22 Oct 2007 09:47:01 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 171EE1AC79 + for ; Tue, 23 Oct 2007 00:56:51 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MNsenQ007553 + for ; Mon, 22 Oct 2007 19:54:40 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MNsegh007551 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 19:54:40 -0400 +Date: Mon, 22 Oct 2007 19:54:40 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37219 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 19:57:34 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37219 + +Author: zach.thomas@txstate.edu +Date: 2007-10-22 19:54:38 -0400 (Mon, 22 Oct 2007) +New Revision: 37219 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +added the lookup of event data classes from the ConditionService + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Mon Oct 22 18:24:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 18:24:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 18:24:00 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by faithful.mail.umich.edu () with ESMTP id l9MMNxdm018695; + Mon, 22 Oct 2007 18:23:59 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 471D22F9.75E5.1365 ; + 22 Oct 2007 18:23:55 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 970946A86D; + Mon, 22 Oct 2007 08:14:01 +0100 (BST) +Message-ID: <200710222221.l9MMLJjQ006925@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 743 + for ; + Mon, 22 Oct 2007 08:13:44 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8AA171629F + for ; Mon, 22 Oct 2007 23:23:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MMLJS3006927 + for ; Mon, 22 Oct 2007 18:21:19 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MMLJjQ006925 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 18:21:19 -0400 +Date: Mon, 22 Oct 2007 18:21:19 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37178 - reference/branches/sakai_2-5-x/docs/conversion +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 18:24:00 2007 +X-DSPAM-Confidence: 0.8510 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37178 + +Author: ajpoland@iupui.edu +Date: 2007-10-22 18:21:16 -0400 (Mon, 22 Oct 2007) +New Revision: 37178 + +Modified: +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +reference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +Log: + +svn merge -c 37033 https://source.sakaiproject.org/svn/reference/trunk +U docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql +U docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql +svn log -r 37033 https://source.sakaiproject.org/svn/reference/trunk +------------------------------------------------------------------------ +r37033 | jholtzman@berkeley.edu | 2007-10-15 18:29:26 -0400 (Mon, 15 Oct 2007) | 1 line + +SAK-11935 -- 2.4 to 2.5 Roster conversion script +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Oct 22 16:41:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 16:41:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 16:41:38 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by mission.mail.umich.edu () with ESMTP id l9MKfcN8011660; + Mon, 22 Oct 2007 16:41:38 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 471D0AF6.E3145.27089 ; + 22 Oct 2007 16:41:34 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3DB4050A24; + Mon, 22 Oct 2007 06:33:38 +0100 (BST) +Message-ID: <200710222038.l9MKct2n006788@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 915 + for ; + Mon, 22 Oct 2007 06:33:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 19F4B16296 + for ; Mon, 22 Oct 2007 21:41:06 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MKctkt006790 + for ; Mon, 22 Oct 2007 16:38:56 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MKct2n006788 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 16:38:55 -0400 +Date: Mon, 22 Oct 2007 16:38:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37176 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 16:41:38 2007 +X-DSPAM-Confidence: 0.9869 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37176 + +Author: zqian@umich.edu +Date: 2007-10-22 16:38:53 -0400 (Mon, 22 Oct 2007) +New Revision: 37176 + +Added: +assignment/trunk/runconversion-2.4.x.sh +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +assignment/trunk/runconversion.sh +Log: +merge Carl Hall's fix to SAK-11821: a) added runconversion-2.4.x.sh for 2.4.x branch; b) added the placeholder for jdbc drivers inside runconversion.sh; c) changed the SchemaConversionControll.java to work with all dbs + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Oct 22 15:48:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 15:48:13 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 15:48:13 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by brazil.mail.umich.edu () with ESMTP id l9MJmC49029376; + Mon, 22 Oct 2007 15:48:12 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 471CFE75.76CBF.16801 ; + 22 Oct 2007 15:48:08 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4605B5560E; + Mon, 22 Oct 2007 05:46:15 +0100 (BST) +Message-ID: <200710221945.l9MJjW0c006655@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 106 + for ; + Mon, 22 Oct 2007 05:45:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 8FBBC1C046 + for ; Mon, 22 Oct 2007 20:47:43 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MJjWV3006657 + for ; Mon, 22 Oct 2007 15:45:32 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MJjW0c006655 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 15:45:32 -0400 +Date: Mon, 22 Oct 2007 15:45:32 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37173 - in assignment/trunk: . assignment-impl/impl/src/sql/oracle +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 15:48:13 2007 +X-DSPAM-Confidence: 0.9875 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37173 + +Author: zqian@umich.edu +Date: 2007-10-22 15:45:29 -0400 (Mon, 22 Oct 2007) +New Revision: 37173 + +Modified: +assignment/trunk/assignment-impl/impl/src/sql/oracle/sakai_assignment.sql +assignment/trunk/upgradeschema_oracle.config +Log: +fix to SAK-11821: changed the Oracle sql to use shorter index name to avoid Oracle naming constrait and add missing add before the rownum inside upgradeschema_oracle.config file + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Mon Oct 22 15:23:49 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 15:23:49 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 15:23:49 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by mission.mail.umich.edu () with ESMTP id l9MJNmBq026223; + Mon, 22 Oct 2007 15:23:48 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 471CF8B9.DAD5.9839 ; + 22 Oct 2007 15:23:40 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 23E746A5B4; + Mon, 22 Oct 2007 05:21:56 +0100 (BST) +Message-ID: <200710221921.l9MJL9nm006587@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 152 + for ; + Mon, 22 Oct 2007 05:21:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 9623D160B2 + for ; Mon, 22 Oct 2007 20:23:20 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MJL9Ca006589 + for ; Mon, 22 Oct 2007 15:21:09 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MJL9nm006587 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 15:21:09 -0400 +Date: Mon, 22 Oct 2007 15:21:09 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37172 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 15:23:49 2007 +X-DSPAM-Confidence: 0.9882 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37172 + +Author: zqian@umich.edu +Date: 2007-10-22 15:21:06 -0400 (Mon, 22 Oct 2007) +New Revision: 37172 + +Added: +assignment/trunk/upgradeschema_mysql.config +assignment/trunk/upgradeschema_oracle.config +Modified: +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java +assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config +assignment/trunk/runconversion.sh +Log: +added two config file for Oracle and MySQL configuration. User will need to use the file name as the argumenet for running the conversion script + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gjthomas@iupui.edu Mon Oct 22 14:54:31 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 14:54:31 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 14:54:31 -0400 +Received: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151]) + by chaos.mail.umich.edu () with ESMTP id l9MIsUhs031969; + Mon, 22 Oct 2007 14:54:30 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY it.mr.itd.umich.edu ID 471CF1DD.1DE14.21394 ; + 22 Oct 2007 14:54:23 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 4F22E5D06C; + Mon, 22 Oct 2007 04:52:41 +0100 (BST) +Message-ID: <200710221851.l9MIpsqC006553@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524 + for ; + Mon, 22 Oct 2007 04:52:25 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 49E0B1AAFD + for ; Mon, 22 Oct 2007 19:54:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIps6k006555 + for ; Mon, 22 Oct 2007 14:51:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIpsqC006553 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:51:54 -0400 +Date: Mon, 22 Oct 2007 14:51:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f +To: source@collab.sakaiproject.org +From: gjthomas@iupui.edu +Subject: [sakai] svn commit: r37171 - in oncourse/trunk/src: presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool reference/library/src/webapp/image reference/library/src/webapp/skin/default reference/library/src/webapp/skin/default/images +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 14:54:31 2007 +X-DSPAM-Confidence: 0.9784 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37171 + +Author: gjthomas@iupui.edu +Date: 2007-10-22 14:51:53 -0400 (Mon, 22 Oct 2007) +New Revision: 37171 + +Added: +oncourse/trunk/src/reference/library/src/webapp/skin/default/images/presence-chat.png +Removed: +oncourse/trunk/src/reference/library/src/webapp/image/user_invisible_chat.png +oncourse/trunk/src/reference/library/src/webapp/image/user_visible_chat.png +Modified: +oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java +oncourse/trunk/src/reference/library/src/webapp/skin/default/tool.css +Log: +ONC-8 - Presence icon changes + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 22 14:44:14 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 14:44:14 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 14:44:14 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by flawless.mail.umich.edu () with ESMTP id l9MIiD9X008041; + Mon, 22 Oct 2007 14:44:13 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 471CEF6B.32129.4000 ; + 22 Oct 2007 14:43:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 74DA76A5EA; + Mon, 22 Oct 2007 04:42:13 +0100 (BST) +Message-ID: <200710221841.l9MIfQho006541@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 345 + for ; + Mon, 22 Oct 2007 04:41:55 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id E8F141C3B5 + for ; Mon, 22 Oct 2007 19:43:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIfQn1006543 + for ; Mon, 22 Oct 2007 14:41:26 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIfQho006541 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:41:26 -0400 +Date: Mon, 22 Oct 2007 14:41:26 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37170 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 14:44:14 2007 +X-DSPAM-Confidence: 0.9883 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37170 + +Author: rjlowe@iupui.edu +Date: 2007-10-22 14:41:25 -0400 (Mon, 22 Oct 2007) +New Revision: 37170 + +Modified: +gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +svn merge -r 37168:37169 https://source.sakaiproject.org/svn/gradebook/trunk +U app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +svn log -r 37169:37169 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37169 | rjlowe@iupui.edu | 2007-10-22 14:38:02 -0400 (Mon, 22 Oct 2007) | 3 lines + +SAK-11270 +http://bugs.sakaiproject.org/jira/browse/SAK-11270 +gb / assignment list in "Roster/All Grades" view +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 22 14:40:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 14:40:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 14:40:54 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by flawless.mail.umich.edu () with ESMTP id l9MIestO006242; + Mon, 22 Oct 2007 14:40:54 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 471CEEAB.D747E.28758 ; + 22 Oct 2007 14:40:47 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 07ED95D06C; + Mon, 22 Oct 2007 04:38:53 +0100 (BST) +Message-ID: <200710221838.l9MIc333006529@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 370 + for ; + Mon, 22 Oct 2007 04:38:31 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A8A9F1C3B5 + for ; Mon, 22 Oct 2007 19:40:14 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIc31F006531 + for ; Mon, 22 Oct 2007 14:38:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIc333006529 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:38:03 -0400 +Date: Mon, 22 Oct 2007 14:38:03 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37169 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 14:40:54 2007 +X-DSPAM-Confidence: 0.9782 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37169 + +Author: rjlowe@iupui.edu +Date: 2007-10-22 14:38:02 -0400 (Mon, 22 Oct 2007) +New Revision: 37169 + +Modified: +gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java +Log: +SAK-11270 +http://bugs.sakaiproject.org/jira/browse/SAK-11270 +gb / assignment list in "Roster/All Grades" view + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Mon Oct 22 14:18:25 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 14:18:25 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 14:18:25 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by panther.mail.umich.edu () with ESMTP id l9MIIOXr002665; + Mon, 22 Oct 2007 14:18:24 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 471CE961.96274.8849 ; + 22 Oct 2007 14:18:12 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id F332A6584E; + Mon, 22 Oct 2007 04:16:21 +0100 (BST) +Message-ID: <200710221815.l9MIFZru006501@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 258 + for ; + Mon, 22 Oct 2007 04:15:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 740D113A3C + for ; Mon, 22 Oct 2007 19:17:46 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIFZFH006503 + for ; Mon, 22 Oct 2007 14:15:35 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIFZru006501 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:15:35 -0400 +Date: Mon, 22 Oct 2007 14:15:35 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37168 - ctools/trunk/builds/externals +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 14:18:25 2007 +X-DSPAM-Confidence: 0.7604 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37168 + +Author: dlhaines@umich.edu +Date: 2007-10-22 14:15:33 -0400 (Mon, 22 Oct 2007) +New Revision: 37168 + +Modified: +ctools/trunk/builds/externals/getFrozenExternals +Log: +CTools: update getFrozenExternals to take the new file format. Take out externals.max. It is not useful. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 22 13:38:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 13:38:03 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 13:38:03 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id l9MHc1iK021799; + Mon, 22 Oct 2007 13:38:01 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 471CDFF4.10B12.16989 ; + 22 Oct 2007 13:37:58 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D55BF5D915; + Mon, 22 Oct 2007 03:36:16 +0100 (BST) +Message-ID: <200710221735.l9MHZUBV006456@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 879 + for ; + Mon, 22 Oct 2007 03:36:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 641F01C346 + for ; Mon, 22 Oct 2007 18:37:41 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHZU7N006458 + for ; Mon, 22 Oct 2007 13:35:30 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHZUBV006456 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:35:30 -0400 +Date: Mon, 22 Oct 2007 13:35:30 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37167 - gradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 13:38:03 2007 +X-DSPAM-Confidence: 0.9904 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37167 + +Author: rjlowe@iupui.edu +Date: 2007-10-22 13:35:29 -0400 (Mon, 22 Oct 2007) +New Revision: 37167 + +Modified: +gradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +Log: +ONC-224 - Merging in fix from /trunk + +svn merge -r 37165:37166 https://source.sakaiproject.org/svn/gradebook/trunk/ +U service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +svn log -r 37166:37166 https://source.sakaiproject.org/svn/gradebook/trunk +------------------------------------------------------------------------ +r37166 | rjlowe@iupui.edu | 2007-10-22 13:31:36 -0400 (Mon, 22 Oct 2007) | 3 lines + +SAK-12017 +http://bugs.sakaiproject.org/jira/browse/SAK-12017 +GB / "All Grades" sort by course grade +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Mon Oct 22 13:34:10 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 13:34:10 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 13:34:10 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by sleepers.mail.umich.edu () with ESMTP id l9MHY93u006615; + Mon, 22 Oct 2007 13:34:09 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 471CDF0A.110F2.26219 ; + 22 Oct 2007 13:34:06 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2159160B48; + Mon, 22 Oct 2007 03:32:22 +0100 (BST) +Message-ID: <200710221731.l9MHVbh6006443@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1007 + for ; + Mon, 22 Oct 2007 03:32:11 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D7F641C412 + for ; Mon, 22 Oct 2007 18:33:47 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHVbwH006445 + for ; Mon, 22 Oct 2007 13:31:37 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHVbh6006443 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:31:37 -0400 +Date: Mon, 22 Oct 2007 13:31:37 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37166 - gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 13:34:10 2007 +X-DSPAM-Confidence: 0.9818 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37166 + +Author: rjlowe@iupui.edu +Date: 2007-10-22 13:31:36 -0400 (Mon, 22 Oct 2007) +New Revision: 37166 + +Modified: +gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java +Log: +SAK-12017 +http://bugs.sakaiproject.org/jira/browse/SAK-12017 +GB / "All Grades" sort by course grade + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Oct 22 13:19:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 13:19:58 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 13:19:58 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by jacknife.mail.umich.edu () with ESMTP id l9MHJvhE010842; + Mon, 22 Oct 2007 13:19:57 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 471CDBA9.E80D.14552 ; + 22 Oct 2007 13:19:39 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id D0F6160B48; + Mon, 22 Oct 2007 03:17:58 +0100 (BST) +Message-ID: <200710221717.l9MHH6Ii006431@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 733 + for ; + Mon, 22 Oct 2007 03:17:42 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5BFB2D6EC + for ; Mon, 22 Oct 2007 18:19:17 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHH6A8006433 + for ; Mon, 22 Oct 2007 13:17:06 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHH6Ii006431 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:17:06 -0400 +Date: Mon, 22 Oct 2007 13:17:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37165 - in memory/branches/SAK-11913/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakaiproject/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 13:19:58 2007 +X-DSPAM-Confidence: 0.9805 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37165 + +Author: aaronz@vt.edu +Date: 2007-10-22 13:16:57 -0400 (Mon, 22 Oct 2007) +New Revision: 37165 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java +Log: +SAK-11913: Basic test scaffolding in place to test the MemCache + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Mon Oct 22 13:19:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Mon, 22 Oct 2007 13:19:33 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Mon, 22 Oct 2007 13:19:33 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by chaos.mail.umich.edu () with ESMTP id l9MHJWMb004164; + Mon, 22 Oct 2007 13:19:32 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 471CDB9E.7DD17.21137 ; + 22 Oct 2007 13:19:29 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E0FE363DEF; + Mon, 22 Oct 2007 03:17:45 +0100 (BST) +Message-ID: <200710221716.l9MHGsxX006419@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 217 + for ; + Mon, 22 Oct 2007 03:17:28 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BCAE6D6EC + for ; Mon, 22 Oct 2007 18:19:04 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHGs97006421 + for ; Mon, 22 Oct 2007 13:16:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHGsxX006419 + for source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:16:54 -0400 +Date: Mon, 22 Oct 2007 13:16:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37164 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Mon Oct 22 13:19:33 2007 +X-DSPAM-Confidence: 0.9788 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37164 + +Author: aaronz@vt.edu +Date: 2007-10-22 13:16:50 -0400 (Mon, 22 Oct 2007) +New Revision: 37164 + +Modified: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cache.java +Log: +SAK-11913: Basic test scaffolding in place to test the MemCache + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From cwen@iupui.edu Fri Oct 19 15:30:58 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 15:30:58 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 15:30:58 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by mission.mail.umich.edu () with ESMTP id l9JJUv79002099; + Fri, 19 Oct 2007 15:30:57 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 471905E3.F3ECD.20286 ; + 19 Oct 2007 15:30:49 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3929866DBE; + Fri, 19 Oct 2007 06:15:51 +0100 (BST) +Message-ID: <200710191927.l9JJRUNw023067@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821 + for ; + Fri, 19 Oct 2007 06:15:20 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4A2DA1997F + for ; Fri, 19 Oct 2007 20:29:31 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JJRVjY023069 + for ; Fri, 19 Oct 2007 15:27:31 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JJRUNw023067 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 15:27:30 -0400 +Date: Fri, 19 Oct 2007 15:27:30 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f +To: source@collab.sakaiproject.org +From: cwen@iupui.edu +Subject: [sakai] svn commit: r37149 - in gradebook/trunk: app/business/src/java/org/sakaiproject/tool/gradebook/business/impl app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test service/impl/src/java/org/sakaiproject/component/gradebook +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 15:30:58 2007 +X-DSPAM-Confidence: 0.7565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37149 + +Author: cwen@iupui.edu +Date: 2007-10-19 15:27:28 -0400 (Fri, 19 Oct 2007) +New Revision: 37149 + +Modified: +gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java +gradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookTestSuite.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java +gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookExternalAssessmentServiceImpl.java +Log: +http://128.196.219.68/jira/browse/SAK-12005 +=> +fix gradebook unit test for m2. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Fri Oct 19 13:58:01 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 13:58:01 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 13:58:01 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by panther.mail.umich.edu () with ESMTP id l9JHw1vb014481; + Fri, 19 Oct 2007 13:58:01 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 4718F020.A73AA.5606 ; + 19 Oct 2007 13:57:55 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 5072B646F9; + Fri, 19 Oct 2007 04:55:24 +0100 (BST) +Message-ID: <200710191755.l9JHteu9022952@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 705 + for ; + Fri, 19 Oct 2007 04:55:06 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 37B451099D + for ; Fri, 19 Oct 2007 18:57:40 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHteW0022954 + for ; Fri, 19 Oct 2007 13:55:40 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHteu9022952 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:55:40 -0400 +Date: Fri, 19 Oct 2007 13:55:40 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r37148 - in sam/trunk: samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery samigo-app/src/webapp/jsf/delivery samigo-app/src/webapp/jsf/delivery/item samigo-services/src/java/org/sakaiproject/tool/assessment/facade samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 13:58:01 2007 +X-DSPAM-Confidence: 0.9826 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37148 + +Author: ktsao@stanford.edu +Date: 2007-10-19 13:55:26 -0400 (Fri, 19 Oct 2007) +New Revision: 37148 + +Modified: +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java +sam/trunk/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp +sam/trunk/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp +sam/trunk/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java +sam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java +Log: +SAK-11909 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 13:56:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 13:56:22 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 13:56:22 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id l9JHuLU6007696; + Fri, 19 Oct 2007 13:56:21 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4718EFB4.335EC.16715 ; + 19 Oct 2007 13:56:07 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E9E86691B4; + Fri, 19 Oct 2007 04:53:50 +0100 (BST) +Message-ID: <200710191753.l9JHrnPO022940@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 614 + for ; + Fri, 19 Oct 2007 04:53:38 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA8801099D + for ; Fri, 19 Oct 2007 18:55:48 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHrnhZ022942 + for ; Fri, 19 Oct 2007 13:53:49 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHrnPO022940 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:53:49 -0400 +Date: Fri, 19 Oct 2007 13:53:49 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37147 - in memory/branches/SAK-11913/memory-impl/impl: . src/java/org/sakaiproject/memory/impl src/test/org/sakaiproject/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 13:56:22 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37147 + +Author: aaronz@vt.edu +Date: 2007-10-19 13:53:36 -0400 (Fri, 19 Oct 2007) +New Revision: 37147 + +Modified: +memory/branches/SAK-11913/memory-impl/impl/pom.xml +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java +Log: +SAK-11913: All tests for memoryService are now passing in eclipse and maven +Still need to write tests for MemCache and need to write profiling tests + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 13:55:57 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 13:55:57 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 13:55:57 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by jacknife.mail.umich.edu () with ESMTP id l9JHtu8S024712; + Fri, 19 Oct 2007 13:55:56 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4718EFA5.96AB0.1673 ; + 19 Oct 2007 13:55:52 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1A2A1646F9; + Fri, 19 Oct 2007 04:53:35 +0100 (BST) +Message-ID: <200710191753.l9JHrXMJ022928@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 886 + for ; + Fri, 19 Oct 2007 04:53:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A292F1099D + for ; Fri, 19 Oct 2007 18:55:33 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHrXa2022930 + for ; Fri, 19 Oct 2007 13:53:33 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHrXMJ022928 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:53:33 -0400 +Date: Fri, 19 Oct 2007 13:53:33 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37146 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 13:55:57 2007 +X-DSPAM-Confidence: 0.9843 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37146 + +Author: aaronz@vt.edu +Date: 2007-10-19 13:53:28 -0400 (Fri, 19 Oct 2007) +New Revision: 37146 + +Modified: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cache.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MemoryService.java +Log: +SAK-11913: All tests for memoryService are now passing in eclipse and maven +Still need to write tests for MemCache and need to write profiling tests + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Oct 19 13:36:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 13:36:28 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 13:36:28 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by jacknife.mail.umich.edu () with ESMTP id l9JHaRqc011373; + Fri, 19 Oct 2007 13:36:27 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4718EB15.30A86.11990 ; + 19 Oct 2007 13:36:24 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C8F0568B43; + Fri, 19 Oct 2007 04:33:56 +0100 (BST) +Message-ID: <200710191733.l9JHXsrd022907@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 7 + for ; + Fri, 19 Oct 2007 04:33:41 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CADFFDD3C + for ; Fri, 19 Oct 2007 18:35:54 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHXtn7022909 + for ; Fri, 19 Oct 2007 13:33:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHXsrd022907 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:33:54 -0400 +Date: Fri, 19 Oct 2007 13:33:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r37145 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 13:36:28 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37145 + +Author: gsilver@umich.edu +Date: 2007-10-19 13:33:53 -0400 (Fri, 19 Oct 2007) +New Revision: 37145 + +Modified: +site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/velocity.properties +Log: +SAK-12003 +- set the file.resource.loader.modificationCheckInterval = 0 for 2.4.x + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From gsilver@umich.edu Fri Oct 19 12:37:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 12:37:05 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 12:37:05 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by sleepers.mail.umich.edu () with ESMTP id l9JGb4rc029331; + Fri, 19 Oct 2007 12:37:04 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4718DD0B.66196.13189 ; + 19 Oct 2007 12:36:31 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0FFCF69009; + Fri, 19 Oct 2007 03:34:07 +0100 (BST) +Message-ID: <200710191618.l9JGIE73022835@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 86 + for ; + Fri, 19 Oct 2007 03:17:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BBF1B1B9F4 + for ; Fri, 19 Oct 2007 17:20:14 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JGIE5M022837 + for ; Fri, 19 Oct 2007 12:18:15 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JGIE73022835 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 12:18:14 -0400 +Date: Fri, 19 Oct 2007 12:18:14 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f +To: source@collab.sakaiproject.org +From: gsilver@umich.edu +Subject: [sakai] svn commit: r37144 - site-manage/trunk/site-manage-tool/tool/src/webapp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 12:37:05 2007 +X-DSPAM-Confidence: 0.9812 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37144 + +Author: gsilver@umich.edu +Date: 2007-10-19 12:18:10 -0400 (Fri, 19 Oct 2007) +New Revision: 37144 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/webapp/velocity.properties +Log: +http://jira.sakaiproject.org/jira/browse/SAK-12003 +- resetting file.resource.loader.modificationCheckInterval in velocity.properties to '0' + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Fri Oct 19 11:34:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.97]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 11:34:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 11:34:47 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by sleepers.mail.umich.edu () with ESMTP id l9JFYkGV026192; + Fri, 19 Oct 2007 11:34:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4718CE89.BC06D.1471 ; + 19 Oct 2007 11:34:42 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A69605EC9E; + Fri, 19 Oct 2007 02:32:10 +0100 (BST) +Message-ID: <200710191532.l9JFWI76022727@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 689 + for ; + Fri, 19 Oct 2007 02:31:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EAA201BA07 + for ; Fri, 19 Oct 2007 16:34:16 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JFWIVP022729 + for ; Fri, 19 Oct 2007 11:32:18 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JFWI76022727 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 11:32:18 -0400 +Date: Fri, 19 Oct 2007 11:32:18 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37143 - assignment/trunk/assignment-impl/impl/src/sql/hsqldb +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 11:34:47 2007 +X-DSPAM-Confidence: 0.8490 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37143 + +Author: zqian@umich.edu +Date: 2007-10-19 11:32:15 -0400 (Fri, 19 Oct 2007) +New Revision: 37143 + +Modified: +assignment/trunk/assignment-impl/impl/src/sql/hsqldb/sakai_assignment.sql +Log: +SAK-11821:AssignmentService allows creation of duplicate submission objects + +Fix the hsql sql code for creating ASSIGNMENT_SUBMISSION table, missing a comma in the create statement. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Fri Oct 19 11:15:27 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 11:15:27 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 11:15:27 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by flawless.mail.umich.edu () with ESMTP id l9JFFQbq029492; + Fri, 19 Oct 2007 11:15:26 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 4718CA08.B7C8E.22265 ; + 19 Oct 2007 11:15:23 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 44B6F68FEF; + Fri, 19 Oct 2007 02:12:59 +0100 (BST) +Message-ID: <200710191513.l9JFD655022681@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 392 + for ; + Fri, 19 Oct 2007 02:12:44 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id BCCBD1B98E + for ; Fri, 19 Oct 2007 16:15:07 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JFD7Th022683 + for ; Fri, 19 Oct 2007 11:13:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JFD655022681 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 11:13:06 -0400 +Date: Fri, 19 Oct 2007 11:13:06 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37142 - in content/branches/SAK-11543: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 11:15:27 2007 +X-DSPAM-Confidence: 0.9795 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37142 + +Author: jzaremba@unicon.net +Date: 2007-10-19 11:13:01 -0400 (Fri, 19 Oct 2007) +New Revision: 37142 + +Modified: +content/branches/SAK-11543/content-bundles/content.properties +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +TSQ-747 Initial code to remove condition if condition check box unchecked. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 10:23:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 10:23:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 10:23:52 -0400 +Received: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142]) + by flawless.mail.umich.edu () with ESMTP id l9JENp2H027847; + Fri, 19 Oct 2007 10:23:51 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY eyewitness.mr.itd.umich.edu ID 4718BDF1.297E7.7049 ; + 19 Oct 2007 10:23:48 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id E5AD268F33; + Fri, 19 Oct 2007 01:21:16 +0100 (BST) +Message-ID: <200710191421.l9JELMTE022646@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 957 + for ; + Fri, 19 Oct 2007 01:20:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B8F871B96C + for ; Fri, 19 Oct 2007 15:23:18 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JELMlc022648 + for ; Fri, 19 Oct 2007 10:21:22 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JELMTE022646 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:21:22 -0400 +Date: Fri, 19 Oct 2007 10:21:22 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37141 - in memory/branches/SAK-11913/memory-impl: . impl impl/src/java/org/sakaiproject/memory/impl impl/src/java/org/sakaiproject/memory/impl/util impl/src/test/org/sakaiproject/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 10:23:52 2007 +X-DSPAM-Confidence: 0.9850 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37141 + +Author: aaronz@vt.edu +Date: 2007-10-19 10:21:05 -0400 (Fri, 19 Oct 2007) +New Revision: 37141 + +Modified: +memory/branches/SAK-11913/memory-impl/.classpath +memory/branches/SAK-11913/memory-impl/impl/pom.xml +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectDependsOnOthersCache.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectIsDependedOnByOthersCache.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/util/DependentPayload.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java +Log: +SAK-11913: Updated all keys to be strings +Added in some tests +Fixed up Ian's code to also adhere to the string keys + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 10:23:30 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 10:23:30 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 10:23:30 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by jacknife.mail.umich.edu () with ESMTP id l9JENTIN030833; + Fri, 19 Oct 2007 10:23:29 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4718BDD9.90178.8323 ; + 19 Oct 2007 10:23:24 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6FE8968E55; + Fri, 19 Oct 2007 01:20:55 +0100 (BST) +Message-ID: <200710191421.l9JEL2OE022634@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 211 + for ; + Fri, 19 Oct 2007 01:20:38 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 697A1DCCA + for ; Fri, 19 Oct 2007 15:22:59 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JEL2wn022636 + for ; Fri, 19 Oct 2007 10:21:02 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JEL2OE022634 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:21:02 -0400 +Date: Fri, 19 Oct 2007 10:21:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37140 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 10:23:30 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37140 + +Author: aaronz@vt.edu +Date: 2007-10-19 10:20:58 -0400 (Fri, 19 Oct 2007) +New Revision: 37140 + +Modified: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MultipleReferenceCache.java +Log: +SAK-11913: Updated all keys to be strings +Added in some tests +Fixed up Ian's code to also adhere to the string keys + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 19 10:16:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 10:16:11 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 10:16:11 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by fan.mail.umich.edu () with ESMTP id l9JEGAdw022955; + Fri, 19 Oct 2007 10:16:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 4718BC24.B18FE.20224 ; + 19 Oct 2007 10:16:07 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 753EB68E55; + Fri, 19 Oct 2007 01:13:40 +0100 (BST) +Message-ID: <200710191413.l9JEDtV0022622@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 888 + for ; + Fri, 19 Oct 2007 01:13:30 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A9DC9DCCA + for ; Fri, 19 Oct 2007 15:15:51 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JEDt3f022624 + for ; Fri, 19 Oct 2007 10:13:55 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JEDtV0022622 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:13:55 -0400 +Date: Fri, 19 Oct 2007 10:13:55 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37139 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 10:16:11 2007 +X-DSPAM-Confidence: 0.9859 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37139 + +Author: dlhaines@umich.edu +Date: 2007-10-19 10:13:53 -0400 (Fri, 19 Oct 2007) +New Revision: 37139 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.properties +Log: +CTools: update build revision for 2.4.xL + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 19 10:14:17 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 10:14:17 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 10:14:17 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by score.mail.umich.edu () with ESMTP id l9JEEGhm007809; + Fri, 19 Oct 2007 10:14:16 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4718BBB3.345CA.24187 ; + 19 Oct 2007 10:14:14 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 16A2265604; + Fri, 19 Oct 2007 01:11:35 +0100 (BST) +Message-ID: <200710191411.l9JEBkHc022610@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697 + for ; + Fri, 19 Oct 2007 01:11:14 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 42555DCCA + for ; Fri, 19 Oct 2007 15:13:43 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JEBlpL022612 + for ; Fri, 19 Oct 2007 10:11:47 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JEBkHc022610 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:11:46 -0400 +Date: Fri, 19 Oct 2007 10:11:46 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37138 - in ctools/branches/ctools_2-4/ctools-reference/config: ctools testctools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 10:14:17 2007 +X-DSPAM-Confidence: 0.9846 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37138 + +Author: dlhaines@umich.edu +Date: 2007-10-19 10:11:45 -0400 (Fri, 19 Oct 2007) +New Revision: 37138 + +Modified: +ctools/branches/ctools_2-4/ctools-reference/config/ctools/instance.properties +ctools/branches/ctools_2-4/ctools-reference/config/testctools/instance.properties +Log: +CTools: stealth linktool on 2.4 branch. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 19 10:08:50 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 10:08:50 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 10:08:50 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by jacknife.mail.umich.edu () with ESMTP id l9JE8m8L021039; + Fri, 19 Oct 2007 10:08:48 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 4718BA6A.F345F.26235 ; + 19 Oct 2007 10:08:45 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1EE9265604; + Fri, 19 Oct 2007 01:06:18 +0100 (BST) +Message-ID: <200710191406.l9JE6UTT022587@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 64 + for ; + Fri, 19 Oct 2007 01:05:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DBEF4DCCA + for ; Fri, 19 Oct 2007 15:08:26 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JE6Uv2022589 + for ; Fri, 19 Oct 2007 10:06:30 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JE6UTT022587 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:06:30 -0400 +Date: Fri, 19 Oct 2007 10:06:30 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37137 - in ctools/trunk/ctools-reference/config: ctools testctools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 10:08:49 2007 +X-DSPAM-Confidence: 0.9863 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37137 + +Author: dlhaines@umich.edu +Date: 2007-10-19 10:06:28 -0400 (Fri, 19 Oct 2007) +New Revision: 37137 + +Modified: +ctools/trunk/ctools-reference/config/ctools/instance.properties +ctools/trunk/ctools-reference/config/testctools/instance.properties +Log: +CTools: stealth link tool. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ajpoland@iupui.edu Fri Oct 19 09:24:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 09:24:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 09:24:52 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by awakenings.mail.umich.edu () with ESMTP id l9JDOqZA020305; + Fri, 19 Oct 2007 09:24:52 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 4718B01C.3994B.20355 ; + 19 Oct 2007 09:24:47 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2B47168EB8; + Fri, 19 Oct 2007 00:22:17 +0100 (BST) +Message-ID: <200710191322.l9JDMafD022523@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 793 + for ; + Fri, 19 Oct 2007 00:22:00 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 4A1811038B + for ; Fri, 19 Oct 2007 14:24:32 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDMadJ022525 + for ; Fri, 19 Oct 2007 09:22:36 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDMafD022523 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:22:36 -0400 +Date: Fri, 19 Oct 2007 09:22:36 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f +To: source@collab.sakaiproject.org +From: ajpoland@iupui.edu +Subject: [sakai] svn commit: r37136 - oncourse/branches/sakai_2-4-x +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 09:24:52 2007 +X-DSPAM-Confidence: 0.9803 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37136 + +Author: ajpoland@iupui.edu +Date: 2007-10-19 09:22:35 -0400 (Fri, 19 Oct 2007) +New Revision: 37136 + +Modified: +oncourse/branches/sakai_2-4-x/ +oncourse/branches/sakai_2-4-x/.externals +Log: +Updated externals + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Oct 19 09:23:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.98]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 09:23:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 09:23:36 -0400 +Received: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79]) + by casino.mail.umich.edu () with ESMTP id l9JDNZ39010078; + Fri, 19 Oct 2007 09:23:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY holes.mr.itd.umich.edu ID 4718AFD1.2424E.15461 ; + 19 Oct 2007 09:23:32 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 0DF8A68EBB; + Fri, 19 Oct 2007 00:21:04 +0100 (BST) +Message-ID: <200710191321.l9JDLKOx022492@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 460 + for ; + Fri, 19 Oct 2007 00:20:52 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B7AE71038B + for ; Fri, 19 Oct 2007 14:23:16 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDLK05022494 + for ; Fri, 19 Oct 2007 09:21:20 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDLKOx022492 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:21:20 -0400 +Date: Fri, 19 Oct 2007 09:21:20 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37135 - msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 09:23:36 2007 +X-DSPAM-Confidence: 0.9912 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37135 + +Author: rjlowe@iupui.edu +Date: 2007-10-19 09:21:19 -0400 (Fri, 19 Oct 2007) +New Revision: 37135 + +Modified: +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/pvtMsgReply.jsp +Log: +svn merge -r 37113:37114 https://source.sakaiproject.org/svn/msgcntr/trunk/ +U messageforums-app/src/webapp/jsp/pvtMsgReply.jsp +in-143-146:~/java/temp/msgcntr admin$ svn log -r 37114:37114 https://source.sakaiproject.org/svn/msgcntr/trunk/ +------------------------------------------------------------------------ +r37114 | wang58@iupui.edu | 2007-10-18 15:15:58 -0400 (Thu, 18 Oct 2007) | 2 lines + +SAK-11914 including body in replying message +--removed replying to section. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Oct 19 09:22:52 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 09:22:52 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 09:22:52 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by flawless.mail.umich.edu () with ESMTP id l9JDMpYN023610; + Fri, 19 Oct 2007 09:22:51 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4718AF9D.B8C8F.21998 ; + 19 Oct 2007 09:22:40 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B8E0E68E7E; + Fri, 19 Oct 2007 00:20:11 +0100 (BST) +Message-ID: <200710191320.l9JDKPds022480@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 515 + for ; + Fri, 19 Oct 2007 00:19:50 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 370811B96C + for ; Fri, 19 Oct 2007 14:22:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDKPq2022482 + for ; Fri, 19 Oct 2007 09:20:25 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDKPds022480 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:20:25 -0400 +Date: Fri, 19 Oct 2007 09:20:25 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37134 - msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 09:22:52 2007 +X-DSPAM-Confidence: 0.9896 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37134 + +Author: rjlowe@iupui.edu +Date: 2007-10-19 09:20:24 -0400 (Fri, 19 Oct 2007) +New Revision: 37134 + +Modified: +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/pvtMsgReply.jsp +Log: +svn merge -r 36791:36792 https://source.sakaiproject.org/svn/msgcntr/trunk +svn log -r 36792:36792 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r36792 | wang58@iupui.edu | 2007-10-12 10:28:06 -0400 (Fri, 12 Oct 2007) | 2 lines + +SAK-11914 Including body in replying message +--change the breadCrumb. +------------------------------------------------------------------------ + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From rjlowe@iupui.edu Fri Oct 19 09:19:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 09:19:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 09:19:00 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by fan.mail.umich.edu () with ESMTP id l9JDIxHm025271; + Fri, 19 Oct 2007 09:18:59 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4718AEB6.4403D.28688 ; + 19 Oct 2007 09:18:49 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2BADD68EA8; + Fri, 19 Oct 2007 00:16:22 +0100 (BST) +Message-ID: <200710191316.l9JDGcVi022463@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131 + for ; + Fri, 19 Oct 2007 00:16:11 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 76E131B963 + for ; Fri, 19 Oct 2007 14:18:34 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDGcsS022465 + for ; Fri, 19 Oct 2007 09:16:38 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDGcVi022463 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:16:38 -0400 +Date: Fri, 19 Oct 2007 09:16:38 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f +To: source@collab.sakaiproject.org +From: rjlowe@iupui.edu +Subject: [sakai] svn commit: r37133 - in msgcntr/branches/oncourse_2-4-x: messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle messageforums-app/src/java/org/sakaiproject/tool/messageforums +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 09:19:00 2007 +X-DSPAM-Confidence: 0.9907 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37133 + +Author: rjlowe@iupui.edu +Date: 2007-10-19 09:16:37 -0400 (Fri, 19 Oct 2007) +New Revision: 37133 + +Modified: +msgcntr/branches/oncourse_2-4-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +msgcntr/branches/oncourse_2-4-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +Log: +svn merge -r 36637:36638 https://source.sakaiproject.org/svn/msgcntr/trunk +U messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties +U messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java +in-143-146:~/java/temp/msgcntr admin$ svn log -r 36638:36638 https://source.sakaiproject.org/svn/msgcntr/trunk +------------------------------------------------------------------------ +r36638 | wang58@iupui.edu | 2007-10-10 11:32:30 -0400 (Wed, 10 Oct 2007) | 1 line + +Messages--including body in replying message. +------------------------------------------------------------------------ + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Fri Oct 19 09:17:36 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 09:17:36 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 09:17:36 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by godsend.mail.umich.edu () with ESMTP id l9JDHZvF002030; + Fri, 19 Oct 2007 09:17:35 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 4718AE6A.789FA.18119 ; + 19 Oct 2007 09:17:33 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A032B68E94; + Fri, 19 Oct 2007 00:15:04 +0100 (BST) +Message-ID: <200710191258.l9JCwEDY022414@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 508 + for ; + Fri, 19 Oct 2007 00:14:53 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 994C11BAEF + for ; Fri, 19 Oct 2007 14:00:10 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JCwEQ8022416 + for ; Fri, 19 Oct 2007 08:58:14 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JCwEDY022414 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 08:58:14 -0400 +Date: Fri, 19 Oct 2007 08:58:14 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37132 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 09:17:36 2007 +X-DSPAM-Confidence: 0.9860 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37132 + +Author: dlhaines@umich.edu +Date: 2007-10-19 08:58:13 -0400 (Fri, 19 Oct 2007) +New Revision: 37132 + +Modified: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.externals +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.properties +Log: +CTools: update to latest msgcntr. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:54:53 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:54:53 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:54:53 -0400 +Received: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72]) + by fan.mail.umich.edu () with ESMTP id l9JAs0co011479; + Fri, 19 Oct 2007 06:54:00 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY tadpole.mr.itd.umich.edu ID 47188CC1.D1C00.23111 ; + 19 Oct 2007 06:53:56 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 1C0D4580F3; + Thu, 18 Oct 2007 22:04:27 +0100 (BST) +Message-ID: <200710191051.l9JApjgp022273@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 307 + for ; + Thu, 18 Oct 2007 22:04:15 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B299E1BA85 + for ; Fri, 19 Oct 2007 11:53:40 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JApjDY022275 + for ; Fri, 19 Oct 2007 06:51:45 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JApjgp022273 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:51:45 -0400 +Date: Fri, 19 Oct 2007 06:51:45 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37131 - in memory/branches/SAK-11913/memory-impl: . impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:54:53 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37131 + +Author: aaronz@vt.edu +Date: 2007-10-19 06:51:39 -0400 (Fri, 19 Oct 2007) +New Revision: 37131 + +Modified: +memory/branches/SAK-11913/memory-impl/.classpath +memory/branches/SAK-11913/memory-impl/impl/pom.xml +Log: +SAK-11913: fixed up classpath and pom to support running tests in eclipse + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:52:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:52:08 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:52:08 -0400 +Received: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71]) + by panther.mail.umich.edu () with ESMTP id l9JAq7DI010066; + Fri, 19 Oct 2007 06:52:08 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY jeffrey.mr.itd.umich.edu ID 47188C4E.B7572.11301 ; + 19 Oct 2007 06:52:01 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 3C7D268D9A; + Thu, 18 Oct 2007 22:02:33 +0100 (BST) +Message-ID: <200710191049.l9JAng2f022261@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 502 + for ; + Thu, 18 Oct 2007 22:02:14 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 022C51BA85 + for ; Fri, 19 Oct 2007 11:51:37 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAngQ7022263 + for ; Fri, 19 Oct 2007 06:49:42 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAng2f022261 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:49:42 -0400 +Date: Fri, 19 Oct 2007 06:49:42 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37130 - in memory/branches/SAK-11913/memory-impl: . impl impl/src/test/org/sakaiproject/memory/impl/test pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:52:08 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37130 + +Author: aaronz@vt.edu +Date: 2007-10-19 06:49:28 -0400 (Fri, 19 Oct 2007) +New Revision: 37130 + +Added: +memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/ehcache-beans.xml +Modified: +memory/branches/SAK-11913/memory-impl/.classpath +memory/branches/SAK-11913/memory-impl/impl/pom.xml +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java +memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-11913: added in spring testing framework + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:51:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.96]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:51:45 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:51:45 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by awakenings.mail.umich.edu () with ESMTP id l9JApjPr000411; + Fri, 19 Oct 2007 06:51:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 47188C3A.71D2.28266 ; + 19 Oct 2007 06:51:40 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C9877572C8; + Thu, 18 Oct 2007 22:02:09 +0100 (BST) +Message-ID: <200710191049.l9JAnQT9022249@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 749 + for ; + Thu, 18 Oct 2007 22:01:55 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id A16221BA85 + for ; Fri, 19 Oct 2007 11:51:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAnQ4A022251 + for ; Fri, 19 Oct 2007 06:49:26 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAnQT9022249 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:49:26 -0400 +Date: Fri, 19 Oct 2007 06:49:26 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37129 - in memory/branches/SAK-11913/memory-api/api/src/java: . org/sakaiproject/memory +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:51:45 2007 +X-DSPAM-Confidence: 0.8474 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37129 + +Author: aaronz@vt.edu +Date: 2007-10-19 06:49:19 -0400 (Fri, 19 Oct 2007) +New Revision: 37129 + +Added: +memory/branches/SAK-11913/memory-api/api/src/java/ehcache.xml +Removed: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/config/ +Log: +SAK-11913: added in spring testing framework + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:18:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.34]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:18:11 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:18:11 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by chaos.mail.umich.edu () with ESMTP id l9JAIAZp028511; + Fri, 19 Oct 2007 06:18:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4718845D.FF10.11370 ; + 19 Oct 2007 06:18:07 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 417CB52099; + Thu, 18 Oct 2007 21:28:39 +0100 (BST) +Message-ID: <200710191015.l9JAFqBv022142@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909 + for ; + Thu, 18 Oct 2007 21:28:24 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D25D511B7D + for ; Fri, 19 Oct 2007 11:17:48 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAFrJn022144 + for ; Fri, 19 Oct 2007 06:15:53 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAFqBv022142 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:15:52 -0400 +Date: Fri, 19 Oct 2007 06:15:52 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37128 - memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:18:11 2007 +X-DSPAM-Confidence: 0.7599 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37128 + +Author: aaronz@vt.edu +Date: 2007-10-19 06:15:48 -0400 (Fri, 19 Oct 2007) +New Revision: 37128 + +Modified: +memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-11913: fixed up the config path location + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:16:33 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:16:33 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:16:33 -0400 +Received: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84]) + by score.mail.umich.edu () with ESMTP id l9JAGXsY014698; + Fri, 19 Oct 2007 06:16:33 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY creepshow.mr.itd.umich.edu ID 471883FC.19103.11758 ; + 19 Oct 2007 06:16:30 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 10EF468D0E; + Thu, 18 Oct 2007 21:27:02 +0100 (BST) +Message-ID: <200710191014.l9JAEHZC022130@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895 + for ; + Thu, 18 Oct 2007 21:26:49 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7EFC411B7D + for ; Fri, 19 Oct 2007 11:16:13 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAEInw022132 + for ; Fri, 19 Oct 2007 06:14:18 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAEHZC022130 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:14:17 -0400 +Date: Fri, 19 Oct 2007 06:14:17 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37127 - in memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory: . exception +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:16:33 2007 +X-DSPAM-Confidence: 0.8476 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37127 + +Author: aaronz@vt.edu +Date: 2007-10-19 06:14:10 -0400 (Fri, 19 Oct 2007) +New Revision: 37127 + +Added: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/ +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/CacheException.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/MemoryPermissionException.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/ObjectNotCachedException.java +Log: +SAK-11913: Created package for memory exceptions and fixed the SVN confusion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:16:22 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:16:22 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:16:22 -0400 +Received: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76]) + by jacknife.mail.umich.edu () with ESMTP id l9JAGLYh004058; + Fri, 19 Oct 2007 06:16:21 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY guys.mr.itd.umich.edu ID 471883F0.B23E.2259 ; + 19 Oct 2007 06:16:18 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A2F7952099; + Thu, 18 Oct 2007 21:26:48 +0100 (BST) +Message-ID: <200710191014.l9JAE7ZC022118@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 292 + for ; + Thu, 18 Oct 2007 21:26:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EA04C11B7D + for ; Fri, 19 Oct 2007 11:16:02 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAE7SQ022120 + for ; Fri, 19 Oct 2007 06:14:07 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAE7ZC022118 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:14:07 -0400 +Date: Fri, 19 Oct 2007 06:14:07 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37126 - memory/branches/SAK-11913/memory-tool/tool/src/java/org/sakaiproject/memory/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:16:22 2007 +X-DSPAM-Confidence: 0.8477 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37126 + +Author: aaronz@vt.edu +Date: 2007-10-19 06:14:02 -0400 (Fri, 19 Oct 2007) +New Revision: 37126 + +Modified: +memory/branches/SAK-11913/memory-tool/tool/src/java/org/sakaiproject/memory/tool/MemoryAction.java +Log: +SAK-11913: Created package for memory exceptions and fixed the SVN confusion + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Fri Oct 19 06:12:08 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.90]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:12:08 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:12:08 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by flawless.mail.umich.edu () with ESMTP id l9JAC71x025597; + Fri, 19 Oct 2007 06:12:07 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 471882F1.58F31.4092 ; + 19 Oct 2007 06:12:04 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B764E52099; + Thu, 18 Oct 2007 21:22:21 +0100 (BST) +Message-ID: <200710191009.l9JA9cWo022100@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650 + for ; + Thu, 18 Oct 2007 21:22:09 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id DEAB4102D2 + for ; Fri, 19 Oct 2007 11:11:33 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JA9cIN022102 + for ; Fri, 19 Oct 2007 06:09:38 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JA9cWo022100 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:09:38 -0400 +Date: Fri, 19 Oct 2007 06:09:38 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37125 - in portal/trunk/portal-render-engine-impl: impl/src/test/org/sakaiproject/portal/charon/test impl/src/testBundle pack/src/webapp/vm/defaultskin +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:12:08 2007 +X-DSPAM-Confidence: 0.7565 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37125 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-19 06:09:16 -0400 (Fri, 19 Oct 2007) +New Revision: 37125 + +Added: +portal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockHttpServletRequest.java +portal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockSession.java +portal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockToolSession.java +portal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/PortalTestFileUtils.java +Modified: +portal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockCharonPortal.java +portal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockResourceLoader.java +portal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/PortalRenderTest.java +portal/trunk/portal-render-engine-impl/impl/src/testBundle/log4j.properties +portal/trunk/portal-render-engine-impl/impl/src/testBundle/testportalvelocity.config +portal/trunk/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/error.vm +portal/trunk/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm +Log: +http://jira.sakaiproject.org/jira/browse/SAK-11924 + +Fixed error templates +and upgraded unit tests + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:01:00 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:01:00 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:01:00 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by brazil.mail.umich.edu () with ESMTP id l9JA0xYH032272; + Fri, 19 Oct 2007 06:00:59 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 47188056.2F4E3.3772 ; + 19 Oct 2007 06:00:57 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id ADBFB68CBE; + Thu, 18 Oct 2007 21:11:27 +0100 (BST) +Message-ID: <200710190958.l9J9wf9v022061@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854 + for ; + Thu, 18 Oct 2007 21:11:13 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 5E2A9102D2 + for ; Fri, 19 Oct 2007 11:00:37 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9J9wg6C022063 + for ; Fri, 19 Oct 2007 05:58:42 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9J9wf9v022061 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 05:58:41 -0400 +Date: Fri, 19 Oct 2007 05:58:41 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37124 - in memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory: . api config cover +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:01:00 2007 +X-DSPAM-Confidence: 0.8467 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37124 + +Author: aaronz@vt.edu +Date: 2007-10-19 05:58:29 -0400 (Fri, 19 Oct 2007) +New Revision: 37124 + +Added: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/config/ +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/config/ehcache.xml +Removed: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/CacheException.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MemoryPermissionException.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/ObjectNotCachedException.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/ehcache.xml +Modified: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MemoryService.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MultipleReferenceCache.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/cover/MemoryServiceLocator.java +Log: +SAK-11913: Adjusted the structure to make use of packages better + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Fri Oct 19 06:00:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 06:00:45 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 06:00:45 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by mission.mail.umich.edu () with ESMTP id l9JA0iAa003535; + Fri, 19 Oct 2007 06:00:44 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47188046.BFE3A.27887 ; + 19 Oct 2007 06:00:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id DC83362EF2; + Thu, 18 Oct 2007 21:11:09 +0100 (BST) +Message-ID: <200710190958.l9J9wQjO022049@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 685 + for ; + Thu, 18 Oct 2007 21:10:54 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 11880102D2 + for ; Fri, 19 Oct 2007 11:00:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9J9wQX8022051 + for ; Fri, 19 Oct 2007 05:58:26 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9J9wQjO022049 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 05:58:26 -0400 +Date: Fri, 19 Oct 2007 05:58:26 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37123 - in memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl: . util +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 06:00:45 2007 +X-DSPAM-Confidence: 0.9799 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37123 + +Author: aaronz@vt.edu +Date: 2007-10-19 05:58:16 -0400 (Fri, 19 Oct 2007) +New Revision: 37123 + +Added: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/util/ +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/util/DependentPayload.java +Removed: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/DependentPayload.java +Modified: +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectDependsOnOthersCache.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectIsDependedOnByOthersCache.java +Log: +SAK-11913: Adjusted the structure to make use of packages better + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ktsao@stanford.edu Fri Oct 19 02:00:02 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Fri, 19 Oct 2007 02:00:02 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Fri, 19 Oct 2007 02:00:02 -0400 +Received: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157]) + by score.mail.umich.edu () with ESMTP id l9J602nj030488; + Fri, 19 Oct 2007 02:00:02 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY cujo.mr.itd.umich.edu ID 471847DB.BE898.27569 ; + 19 Oct 2007 02:00:00 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C2E3F60F9D; + Thu, 18 Oct 2007 17:14:26 +0100 (BST) +Message-ID: <200710190557.l9J5vdHf021469@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 927 + for ; + Thu, 18 Oct 2007 17:14:03 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 0021E1BA65 + for ; Fri, 19 Oct 2007 06:59:33 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9J5vdiN021471 + for ; Fri, 19 Oct 2007 01:57:39 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9J5vdHf021469 + for source@collab.sakaiproject.org; Fri, 19 Oct 2007 01:57:39 -0400 +Date: Fri, 19 Oct 2007 01:57:39 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f +To: source@collab.sakaiproject.org +From: ktsao@stanford.edu +Subject: [sakai] svn commit: r37122 - in sam/trunk/samigo-app/src/java: com/corejsf org/sakaiproject/tool/assessment/ui/bean/delivery +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Fri Oct 19 02:00:02 2007 +X-DSPAM-Confidence: 0.9807 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37122 + +Author: ktsao@stanford.edu +Date: 2007-10-19 01:57:33 -0400 (Fri, 19 Oct 2007) +New Revision: 37122 + +Modified: +sam/trunk/samigo-app/src/java/com/corejsf/UploadRenderer.java +sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java +Log: +SAK-11955 + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From ian@caret.cam.ac.uk Thu Oct 18 18:43:47 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 18:43:47 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 18:43:47 -0400 +Received: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75]) + by panther.mail.umich.edu () with ESMTP id l9IMhkfo008589; + Thu, 18 Oct 2007 18:43:46 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY madman.mr.itd.umich.edu ID 4717E19C.6EDB8.12714 ; + 18 Oct 2007 18:43:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id C2F8A6885C; + Thu, 18 Oct 2007 10:00:47 +0100 (BST) +Message-ID: <200710182241.l9IMfCva008686@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540 + for ; + Thu, 18 Oct 2007 10:00:24 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 41F3E1B9CB + for ; Thu, 18 Oct 2007 23:43:06 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IMfCvs008688 + for ; Thu, 18 Oct 2007 18:41:12 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IMfCva008686 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 18:41:12 -0400 +Date: Thu, 18 Oct 2007 18:41:12 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f +To: source@collab.sakaiproject.org +From: ian@caret.cam.ac.uk +Subject: [sakai] svn commit: r37121 - in memory/branches/SAK-11913: memory-api/api/src/java/org/sakaiproject/memory/api memory-impl/impl/src/java memory-impl/impl/src/java/net memory-impl/impl/src/java/net/sf memory-impl/impl/src/java/net/sf/ehcache memory-impl/impl/src/java/net/sf/ehcache/distribution memory-impl/impl/src/java/org/sakaiproject/memory/impl +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 18:43:47 2007 +X-DSPAM-Confidence: 0.9837 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37121 + +Author: ian@caret.cam.ac.uk +Date: 2007-10-18 18:40:38 -0400 (Thu, 18 Oct 2007) +New Revision: 37121 + +Added: +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/CacheException.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MultipleReferenceCache.java +memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/ObjectNotCachedException.java +memory/branches/SAK-11913/memory-impl/impl/src/java/net/ +memory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ +memory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/ +memory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/ +memory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/RMISakaiAsynchronousCacheReplicator.java +memory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/RMISakaiCacheReplicatorFactory.java +memory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/ReplicationControl.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/DependentPayload.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectDependsOnOthersCache.java +memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectIsDependedOnByOthersCache.java +Log: +TreeCache and Reverse Tree cache implementations that use a local reference store and a +ehcache storage Cache. + +Hasnt been tested, but compiles and I think its all Ok. + + + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 18 16:42:05 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 16:42:05 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 16:42:05 -0400 +Received: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149]) + by panther.mail.umich.edu () with ESMTP id l9IKg4gV007639; + Thu, 18 Oct 2007 16:42:04 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY icestorm.mr.itd.umich.edu ID 4717C509.DA79C.11387 ; + 18 Oct 2007 16:42:00 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6EAC6687BF; + Thu, 18 Oct 2007 08:06:59 +0100 (BST) +Message-ID: <200710182039.l9IKdaI2008253@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1011 + for ; + Thu, 18 Oct 2007 08:06:46 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 912491B968 + for ; Thu, 18 Oct 2007 21:41:29 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IKdaFv008255 + for ; Thu, 18 Oct 2007 16:39:36 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IKdaI2008253 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:39:36 -0400 +Date: Thu, 18 Oct 2007 16:39:36 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37120 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 16:42:05 2007 +X-DSPAM-Confidence: 0.8489 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37120 + +Author: zqian@umich.edu +Date: 2007-10-18 16:39:33 -0400 (Thu, 18 Oct 2007) +New Revision: 37120 + +Modified: +assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-11944: NPE when accessing sort order + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 18 16:41:19 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 16:41:19 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 16:41:19 -0400 +Received: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141]) + by jacknife.mail.umich.edu () with ESMTP id l9IKfI2l019933; + Thu, 18 Oct 2007 16:41:18 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY anniehall.mr.itd.umich.edu ID 4717C4E7.D7234.9453 ; + 18 Oct 2007 16:41:15 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 6F529687B3; + Thu, 18 Oct 2007 08:06:26 +0100 (BST) +Message-ID: <200710182039.l9IKd26b008241@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 190 + for ; + Thu, 18 Oct 2007 08:06:13 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 511CD1B966 + for ; Thu, 18 Oct 2007 21:40:56 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IKd2Pj008243 + for ; Thu, 18 Oct 2007 16:39:03 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IKd26b008241 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:39:02 -0400 +Date: Thu, 18 Oct 2007 16:39:02 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37119 - assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 16:41:19 2007 +X-DSPAM-Confidence: 0.8481 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37119 + +Author: zqian@umich.edu +Date: 2007-10-18 16:39:00 -0400 (Thu, 18 Oct 2007) +New Revision: 37119 + +Modified: +assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +fix to SAK-11944: NPE when accessing sort order + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 18 16:29:46 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 16:29:46 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 16:29:46 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by panther.mail.umich.edu () with ESMTP id l9IKTjOo030113; + Thu, 18 Oct 2007 16:29:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4717C234.958E0.7591 ; + 18 Oct 2007 16:29:43 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 27B3E68798; + Thu, 18 Oct 2007 07:54:52 +0100 (BST) +Message-ID: <200710182027.l9IKRW3l008194@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 557 + for ; + Thu, 18 Oct 2007 07:54:32 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 32EF81B781 + for ; Thu, 18 Oct 2007 21:29:26 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IKRW8S008196 + for ; Thu, 18 Oct 2007 16:27:32 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IKRW3l008194 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:27:32 -0400 +Date: Thu, 18 Oct 2007 16:27:32 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37118 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 16:29:46 2007 +X-DSPAM-Confidence: 0.8473 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37118 + +Author: zqian@umich.edu +Date: 2007-10-18 16:27:30 -0400 (Thu, 18 Oct 2007) +New Revision: 37118 + +Modified: +assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java +Log: +Fix to SAK-11944: NPE when accessing sort order + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 18 16:10:39 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 16:10:39 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 16:10:39 -0400 +Received: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153]) + by fan.mail.umich.edu () with ESMTP id l9IKAc5s030501; + Thu, 18 Oct 2007 16:10:38 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY shining.mr.itd.umich.edu ID 4717BD6D.D3CBA.7237 ; + 18 Oct 2007 16:09:20 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 2BE81546DF; + Thu, 18 Oct 2007 07:34:23 +0100 (BST) +Message-ID: <200710182006.l9IK6xi0008112@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 286 + for ; + Thu, 18 Oct 2007 07:34:09 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id EE9051B952 + for ; Thu, 18 Oct 2007 21:08:52 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IK6x1d008114 + for ; Thu, 18 Oct 2007 16:06:59 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IK6xi0008112 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:06:59 -0400 +Date: Thu, 18 Oct 2007 16:06:59 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37117 - authz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 16:10:39 2007 +X-DSPAM-Confidence: 0.9862 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37117 + +Author: zqian@umich.edu +Date: 2007-10-18 16:06:57 -0400 (Thu, 18 Oct 2007) +New Revision: 37117 + +Modified: +authz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java +Log: +fix to SAK-9996:Cannot save realm and no warning to user if invalid provider id is entered + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zqian@umich.edu Thu Oct 18 16:02:03 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.39]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 16:02:03 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 16:02:03 -0400 +Received: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70]) + by faithful.mail.umich.edu () with ESMTP id l9IK20GN025479; + Thu, 18 Oct 2007 16:02:00 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY dave.mr.itd.umich.edu ID 4717BB7E.CE4EF.1865 ; + 18 Oct 2007 16:01:05 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 22B5568782; + Thu, 18 Oct 2007 07:26:14 +0100 (BST) +Message-ID: <200710181958.l9IJwpY0008097@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 254 + for ; + Thu, 18 Oct 2007 07:25:58 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 3B3001B66A + for ; Thu, 18 Oct 2007 21:00:45 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IJwptS008099 + for ; Thu, 18 Oct 2007 15:58:51 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IJwpY0008097 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 15:58:51 -0400 +Date: Thu, 18 Oct 2007 15:58:51 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f +To: source@collab.sakaiproject.org +From: zqian@umich.edu +Subject: [sakai] svn commit: r37116 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 16:02:03 2007 +X-DSPAM-Confidence: 0.9872 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37116 + +Author: zqian@umich.edu +Date: 2007-10-18 15:58:44 -0400 (Thu, 18 Oct 2007) +New Revision: 37116 + +Modified: +site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java +site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm +Log: +Fix to SAK-9996: Cannot save realm and no warning to user if invalid provider id is entered + +Only log the exception message when the section id is fake. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Oct 18 13:30:28 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.91]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 13:30:28 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 13:30:28 -0400 +Received: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83]) + by jacknife.mail.umich.edu () with ESMTP id l9IHURNL027112; + Thu, 18 Oct 2007 13:30:27 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY firestarter.mr.itd.umich.edu ID 4717982D.B291E.9060 ; + 18 Oct 2007 13:30:24 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id AC79055D1D; + Thu, 18 Oct 2007 05:07:33 +0100 (BST) +Message-ID: <200710181728.l9IHSCUh007603@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807 + for ; + Thu, 18 Oct 2007 05:07:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id B616D1B768 + for ; Thu, 18 Oct 2007 18:30:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IHSCJ1007605 + for ; Thu, 18 Oct 2007 13:28:12 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IHSCUh007603 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 13:28:12 -0400 +Date: Thu, 18 Oct 2007 13:28:12 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37113 - in memory/branches/SAK-11913/memory-impl: . impl/src impl/src/test impl/src/test/org impl/src/test/org/sakaiproject impl/src/test/org/sakaiproject/memory impl/src/test/org/sakaiproject/memory/impl impl/src/test/org/sakaiproject/memory/impl/test +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 13:30:28 2007 +X-DSPAM-Confidence: 0.8484 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37113 + +Author: aaronz@vt.edu +Date: 2007-10-18 13:28:02 -0400 (Thu, 18 Oct 2007) +New Revision: 37113 + +Added: +memory/branches/SAK-11913/memory-impl/impl/src/test/ +memory/branches/SAK-11913/memory-impl/impl/src/test/org/ +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/ +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/ +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/ +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/ +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java +memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java +Modified: +memory/branches/SAK-11913/memory-impl/.classpath +Log: +SAK-11913: Committed the non-working test stubs since I had to abandon the old tests + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From aaronz@vt.edu Thu Oct 18 13:14:54 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.36]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 13:14:54 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 13:14:54 -0400 +Received: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143]) + by godsend.mail.umich.edu () with ESMTP id l9IHEqan017760; + Thu, 18 Oct 2007 13:14:52 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY workinggirl.mr.itd.umich.edu ID 47179481.2EBC6.32204 ; + 18 Oct 2007 13:14:47 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 17BD9596E0; + Thu, 18 Oct 2007 04:51:53 +0100 (BST) +Message-ID: <200710181712.l9IHCSB4007532@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 157 + for ; + Thu, 18 Oct 2007 04:51:36 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 6601A1B792 + for ; Thu, 18 Oct 2007 18:14:21 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IHCSUP007534 + for ; Thu, 18 Oct 2007 13:12:28 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IHCSB4007532 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 13:12:28 -0400 +Date: Thu, 18 Oct 2007 13:12:28 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f +To: source@collab.sakaiproject.org +From: aaronz@vt.edu +Subject: [sakai] svn commit: r37112 - memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 13:14:54 2007 +X-DSPAM-Confidence: 0.9830 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37112 + +Author: aaronz@vt.edu +Date: 2007-10-18 13:12:23 -0400 (Thu, 18 Oct 2007) +New Revision: 37112 + +Modified: +memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml +Log: +SAK-11913: fixed up the circular dependency + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From jzaremba@unicon.net Thu Oct 18 12:17:38 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.92]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 12:17:38 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 12:17:38 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by score.mail.umich.edu () with ESMTP id l9IGHb1c028241; + Thu, 18 Oct 2007 12:17:37 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4717871B.19A74.7527 ; + 18 Oct 2007 12:17:34 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id A55A256012; + Thu, 18 Oct 2007 04:12:48 +0100 (BST) +Message-ID: <200710181615.l9IGFJUn007405@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1010 + for ; + Thu, 18 Oct 2007 04:12:33 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 7E7FD1B781 + for ; Thu, 18 Oct 2007 17:17:13 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IGFK2l007407 + for ; Thu, 18 Oct 2007 12:15:20 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IGFJUn007405 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 12:15:19 -0400 +Date: Thu, 18 Oct 2007 12:15:19 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f +To: source@collab.sakaiproject.org +From: jzaremba@unicon.net +Subject: [sakai] svn commit: r37111 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 12:17:38 2007 +X-DSPAM-Confidence: 0.9769 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37111 + +Author: jzaremba@unicon.net +Date: 2007-10-18 12:15:15 -0400 (Thu, 18 Oct 2007) +New Revision: 37111 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +TSQ-737 Now passing operator value from UI. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Oct 18 12:08:06 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.95]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 12:08:06 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 12:08:06 -0400 +Received: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43]) + by brazil.mail.umich.edu () with ESMTP id l9IG84OT023831; + Thu, 18 Oct 2007 12:08:04 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY serenity.mr.itd.umich.edu ID 471784DE.928DD.1090 ; + 18 Oct 2007 12:08:01 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 24D1B5347C; + Thu, 18 Oct 2007 04:03:13 +0100 (BST) +Message-ID: <200710181605.l9IG5mWZ007379@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 828 + for ; + Thu, 18 Oct 2007 04:02:57 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id 519A4D910 + for ; Thu, 18 Oct 2007 17:07:41 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IG5mvL007381 + for ; Thu, 18 Oct 2007 12:05:48 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IG5mWZ007379 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 12:05:48 -0400 +Date: Thu, 18 Oct 2007 12:05:48 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37110 - ctools/trunk/builds/ctools_2-4/configs +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 12:08:06 2007 +X-DSPAM-Confidence: 0.9826 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37110 + +Author: dlhaines@umich.edu +Date: 2007-10-18 12:05:46 -0400 (Thu, 18 Oct 2007) +New Revision: 37110 + +Removed: +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-0_RELEASE/ +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-0_daily/ +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_DAILY/ +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_LOADTEST/ +ctools/trunk/builds/ctools_2-4/configs/ctools_2-4_QA_TAG/ +Log: +CTools: remove obsolete builds. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From chmaurer@iupui.edu Thu Oct 18 11:51:45 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.46]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 11:51:45 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 11:51:45 -0400 +Received: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144]) + by fan.mail.umich.edu () with ESMTP id l9IFpjMR020636; + Thu, 18 Oct 2007 11:51:45 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY ghostbusters.mr.itd.umich.edu ID 4717810A.B71AE.5207 ; + 18 Oct 2007 11:51:41 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id B99AA66E96; + Thu, 18 Oct 2007 03:46:55 +0100 (BST) +Message-ID: <200710181549.l9IFnUJj007340@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 555 + for ; + Thu, 18 Oct 2007 03:46:43 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CAFD1179F5 + for ; Thu, 18 Oct 2007 16:51:23 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IFnVFY007342 + for ; Thu, 18 Oct 2007 11:49:31 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IFnUJj007340 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 11:49:30 -0400 +Date: Thu, 18 Oct 2007 11:49:30 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f +To: source@collab.sakaiproject.org +From: chmaurer@iupui.edu +Subject: [sakai] svn commit: r37109 - osp/trunk/matrix/tool/src/webapp/WEB-INF/jsp/evaluation +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 11:51:45 2007 +X-DSPAM-Confidence: 0.9861 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37109 + +Author: chmaurer@iupui.edu +Date: 2007-10-18 11:49:29 -0400 (Thu, 18 Oct 2007) +New Revision: 37109 + +Modified: +osp/trunk/matrix/tool/src/webapp/WEB-INF/jsp/evaluation/listEvaluationItems.jsp +Log: +http://bugs.sakaiproject.org/jira/browse/SAK-11984 +Removed the action param from the Show All/Show Site evals link as it was causing problems if it was clicked before clicking the link to eval the item. + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From zach.thomas@txstate.edu Thu Oct 18 11:34:11 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.25]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 11:34:11 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 11:34:11 -0400 +Received: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145]) + by panther.mail.umich.edu () with ESMTP id l9IFYAEH025992; + Thu, 18 Oct 2007 11:34:10 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY galaxyquest.mr.itd.umich.edu ID 47177CEC.91C46.21260 ; + 18 Oct 2007 11:34:07 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 09F1B682EC; + Thu, 18 Oct 2007 03:29:21 +0100 (BST) +Message-ID: <200710181531.l9IFVnHH007248@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738 + for ; + Thu, 18 Oct 2007 03:29:02 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id CBA611B6AA + for ; Thu, 18 Oct 2007 16:33:41 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IFVnPZ007250 + for ; Thu, 18 Oct 2007 11:31:49 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IFVnHH007248 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 11:31:49 -0400 +Date: Thu, 18 Oct 2007 11:31:49 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f +To: source@collab.sakaiproject.org +From: zach.thomas@txstate.edu +Subject: [sakai] svn commit: r37108 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 11:34:11 2007 +X-DSPAM-Confidence: 0.9810 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37108 + +Author: zach.thomas@txstate.edu +Date: 2007-10-18 11:31:46 -0400 (Thu, 18 Oct 2007) +New Revision: 37108 + +Modified: +content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java +Log: +added proper function names and query names for conditions + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + +From dlhaines@umich.edu Thu Oct 18 10:56:16 2007 +Return-Path: +Received: from murder (mail.umich.edu [141.211.14.93]) + by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA; + Thu, 18 Oct 2007 10:56:16 -0400 +X-Sieve: CMU Sieve 2.3 +Received: from murder ([unix socket]) + by mail.umich.edu (Cyrus v2.2.12) with LMTPA; + Thu, 18 Oct 2007 10:56:16 -0400 +Received: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58]) + by mission.mail.umich.edu () with ESMTP id l9IEuFrS014699; + Thu, 18 Oct 2007 10:56:15 -0400 +Received: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184]) + BY salemslot.mr.itd.umich.edu ID 47177409.BBEE4.28758 ; + 18 Oct 2007 10:56:12 -0400 +Received: from paploo.uhi.ac.uk (localhost [127.0.0.1]) + by paploo.uhi.ac.uk (Postfix) with ESMTP id 446D968515; + Thu, 18 Oct 2007 02:51:20 +0100 (BST) +Message-ID: <200710181453.l9IErsL6007196@nakamura.uits.iupui.edu> +Mime-Version: 1.0 +Content-Transfer-Encoding: 7bit +Received: from prod.collab.uhi.ac.uk ([194.35.219.182]) + by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541 + for ; + Thu, 18 Oct 2007 02:51:05 +0100 (BST) +Received: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122]) + by shmi.uhi.ac.uk (Postfix) with ESMTP id D29ACD8FB + for ; Thu, 18 Oct 2007 15:55:46 +0100 (BST) +Received: from nakamura.uits.iupui.edu (localhost [127.0.0.1]) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IErsHG007198 + for ; Thu, 18 Oct 2007 10:53:54 -0400 +Received: (from apache@localhost) + by nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IErsL6007196 + for source@collab.sakaiproject.org; Thu, 18 Oct 2007 10:53:54 -0400 +Date: Thu, 18 Oct 2007 10:53:54 -0400 +X-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f +To: source@collab.sakaiproject.org +From: dlhaines@umich.edu +Subject: [sakai] svn commit: r37107 - ctools/trunk/builds/ctools_2-4/tools +X-Content-Type-Outer-Envelope: text/plain; charset=UTF-8 +X-Content-Type-Message-Body: text/plain; charset=UTF-8 +Content-Type: text/plain; charset=UTF-8 +X-DSPAM-Result: Innocent +X-DSPAM-Processed: Thu Oct 18 10:56:16 2007 +X-DSPAM-Confidence: 0.9836 +X-DSPAM-Probability: 0.0000 + +Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37107 + +Author: dlhaines@umich.edu +Date: 2007-10-18 10:53:52 -0400 (Thu, 18 Oct 2007) +New Revision: 37107 + +Modified: +ctools/trunk/builds/ctools_2-4/tools/applyPatches.pl +Log: +CTools: clean up applyPatches.pl + +---------------------- +This automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site. +You can modify how you receive notifications at My Workspace > Preferences. + + + diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/hacker_news.csv b/30-days-of-python/19_Manipulación_de_archivos/data/hacker_news.csv new file mode 100644 index 0000000..e6ecbb7 --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/hacker_news.csv @@ -0,0 +1,20100 @@ +id,title,url,num_points,num_comments,author,created_at +12224879,Interactive Dynamic Video,http://www.interactivedynamicvideo.com/,386,52,ne0phyte,8/4/2016 11:52 +11964716,Florida DJs May Face Felony for April Fools' Water Joke,http://www.thewire.com/entertainment/2013/04/florida-djs-april-fools-water-joke/63798/,2,1,vezycash,6/23/2016 22:20 +11919867,Technology ventures: From Idea to Enterprise,https://www.amazon.com/Technology-Ventures-Enterprise-Thomas-Byers/dp/0073523429,3,1,hswarna,6/17/2016 0:01 +10301696,Note by Note: The Making of Steinway L1037 (2007),http://www.nytimes.com/2007/11/07/movies/07stein.html?_r=0,8,2,walterbell,9/30/2015 4:12 +10482257,Title II kills investment? Comcast and other ISPs are now spending more,http://arstechnica.com/business/2015/10/comcast-and-other-isps-boost-network-investment-despite-net-neutrality/,53,22,Deinos,10/31/2015 9:48 +10557283,Nuts and Bolts Business Advice,,3,4,shomberj,11/13/2015 0:45 +12296411,Ask HN: How to improve my personal website?,,2,6,ahmedbaracat,8/16/2016 9:55 +11337617,"Shims, Jigs and Other Woodworking Concepts to Conquer Technical Debt",http://firstround.com/review/shims-jigs-and-other-woodworking-concepts-to-conquer-technical-debt/,34,7,zt,3/22/2016 16:18 +10379326,That self-appendectomy,http://www.southpolestation.com/trivia/igy1/appendix.html,91,10,jimsojim,10/13/2015 9:30 +11370829,Crate raises $4M seed round for its next-gen SQL database,http://techcrunch.com/2016/03/15/crate-raises-4m-seed-round-for-its-next-gen-sql-database/,3,1,hitekker,3/27/2016 18:08 +11665197,Advertising Cannot Maintain the Internet. Heres the Secret Sauce Solution,http://evonomics.com/advertising-cannot-maintain-internet-heres-solution/,2,1,dredmorbius,5/10/2016 4:46 +11981466,Coding Is Over,https://medium.com/@loorinm/coding-is-over-6d653abe8da8,18,14,prostoalex,6/26/2016 16:36 +10627194,Show HN: Wio Link ESP8266 Based Web of Things Hardware Development Platform,https://iot.seeed.cc,26,22,kfihihc,11/25/2015 14:03 +11587596,Custom Deleters for C++ Smart Pointers,http://www.bfilipek.com/2016/04/custom-deleters-for-c-smart-pointers.html,59,18,ingve,4/28/2016 10:01 +12335860,How often to update third party libraries?,,7,5,rabid_oxen,8/22/2016 12:37 +11403750,Review my AI based marketing bot,http://beta.crowdfireapp.com/?beta=agnipath,1,2,abhishekmaddy,4/1/2016 9:45 +10610020,Ask HN: Am I the only one outraged by Twitter shutting down share counts?,,28,29,tkfx,11/22/2015 13:43 +10837634,"Ten years later, did Boston's Big Dig deliver?",https://www.bostonglobe.com/magazine/2015/12/29/years-later-did-big-dig-deliver/tSb8PIMS4QJUETsMpA7SpI/story.html,109,116,jseliger,1/4/2016 18:58 +12121216,Valid.ly Never send another OOPS message,https://www.valid.ly,1,1,validly,7/19/2016 12:05 +11079821,APOD: LIGO detects gravity waves...,http://apod.nasa.gov/apod/astropix.html,1,2,AliCollins,2/11/2016 12:57 +11007942,Typeplate: a typographic starter kit encouraging great type on the web,http://typeplate.com/,68,13,Tomte,1/31/2016 20:38 +11610310,Ask HN: Aby recent changes to CSS that broke mobile?,,1,1,polskibus,5/2/2016 10:14 +10712549,Streamroot makes video streaming cheaper thanks to peer-to-peer,http://techcrunch.com/2015/12/10/streamroot-makes-video-streaming-cheaper-thanks-to-peer-to-peer/,11,2,Rodi,12/10/2015 18:58 +10978069,VMware Confirms Layoffs as It Prepares for Dell Acquisition,http://techcrunch.com/2016/01/26/vmware-confirms-layoffs-in-earnings-statement-as-it-prepares-for-dell-acquisition/,170,112,walterclifford,1/27/2016 3:47 +12023949,Firmware exploit can defeat new Windows security features on Lenovo ThinkPads,http://www.pcworld.com/article/3091104/firmware-exploit-can-defeat-new-windows-security-features-on-lenovo-thinkpads.html#jump,15,4,walterbell,7/2/2016 22:08 +10739227,The Sad State of Personal Knowledgebases,http://marcusvorwaller.com/blog/2015/12/14/personal-knowledgebases/,115,106,zzzmarcus,12/15/2015 17:56 +11181546,US Robotics Network Taps,http://www.usr.com/en/products/networking-taps/,1,2,mkj,2/26/2016 14:35 +11161191,Fundraising Advice for YC Companies,https://blog.ycombinator.com/fundraising-advice-for-yc-companies,234,100,cryptoz,2/23/2016 18:41 +10760605,"PSA: Intel WICS broken for years with official press release, do not buy",https://communities.intel.com/thread/96038,4,1,KyleSanderson,12/18/2015 20:02 +12210105,Ask HN: Looking for Employee #3 How do I do it?,,1,3,sph130,8/2/2016 14:20 +10394168,Ask HN: Someone offered to buy my browser extension from me. What now?,,28,17,roykolak,10/15/2015 16:38 +12424203,Small Indiana county sends more people to prison than San Francisco,http://www.nytimes.com/2016/09/02/upshot/new-geography-of-prisons.html,61,63,GabrielF00,9/4/2016 13:24 +10767039,Real-time GIF images,http://github.com/ErikvdVen/php-gif,211,67,erikvdven,12/20/2015 14:01 +12356386,Charles River Ventures Puts F*CK Trump on Their Website,http://www.businessinsider.com/charles-river-ventures-puts-fck-trump-on-website-2016-8,3,2,smb06,8/25/2016 1:25 +10626668,The reverse job applicant (2010),http://www.reversejobapplication.com/,51,26,sheldor,11/25/2015 11:36 +12502122,Bitbucket: Support GitHub-style pages for repositories and teams,https://bitbucket.org/site/master/issues/3932/support-github-style-pages-for,2,1,deevus,9/14/2016 23:32 +11939260,Estonia's Tech-Savviness,https://m.mic.com/articles/146542/the-unexpected-story-of-how-this-tiny-country-became-the-most-tech-savvy-on-earth#.PaJNIRo6I,22,12,sethbannon,6/20/2016 16:53 +11783331,'The details of your involvement will be gruesome' if you continue suing us,http://www.recode.net/2016/5/26/11792922/gawker-nick-denton-peter-thiel-open-letter,2,2,openmosix,5/27/2016 1:48 +10646440,Show HN: Something pointless I made,http://dn.ht/picklecat/,747,102,dhotson,11/29/2015 22:46 +12427002,Self-Driving Ubers Appear in San Francisco,http://fortune.com/2016/09/04/self-driving-ubers-san-francisco/,5,2,sjcsjc,9/4/2016 22:22 +11037937,Maru turns Android smartphones into portable PCs,http://maruos.com/#/,171,73,dmitrygr,2/4/2016 22:54 +10512882,Text of the Trans-Pacific Partnership,http://tpp.mfat.govt.nz/text,755,346,cdubzzz,11/5/2015 12:15 +11441625,"Apply HN: CreatorsNest On-Demand, Private Workspaces for Artists and Creatives",,5,6,LYeo,4/6/2016 20:10 +12350556,Researchers have trained a machine to spot depression on Instagram,https://www.technologyreview.com/s/602208/how-an-algorithm-learned-to-identify-depressed-individuals-by-studying-their-instagram,38,6,pmcpinto,8/24/2016 8:24 +11826782,A Cars Computer Can Fingerprint You in Minutes Based on How You Drive,https://www.wired.com/2016/05/drive-car-can-id-within-minutes-study-finds/,54,67,jonbaer,6/2/2016 22:51 +11590768,"Show HN: Shanhu.io, a programming playground powered by e8vm",https://shanhu.io,1,1,h8liu,4/28/2016 18:05 +11774850,The Path to Rust,https://thesquareplanet.com/blog/the-path-to-rust/?,296,213,adamnemecek,5/26/2016 2:28 +10560014,"Bitcoin Is Back, But It Never Really Left",http://www.wired.com/2015/11/bitcoin-is-back-but-it-never-really-left/,29,15,Amorymeltzer,11/13/2015 14:36 +10284812,"Ask HN: Limiting CPU, memory, and I/O usage on a program for testing",,2,1,zatkin,9/26/2015 23:23 +10184716,How to write a great error message,https://medium.com/@thomasfuchs/how-to-write-an-error-message-883718173322,19,2,tomkwok,9/8/2015 9:23 +11548576,Ask HN: Which framework for a CRUD app in 2016?,,4,4,deafcalculus,4/22/2016 12:24 +10926050,Entrepreneurship A second attempt | Feedback welcomed,,3,1,nassirkhan,1/18/2016 18:47 +11862653,The Shocking Secret About Static Types,https://medium.com/javascript-scene/the-shocking-secret-about-static-types-514d39bf30a3#.h2mg39u32,11,5,insulanian,6/8/2016 14:59 +11308064,"Atom 1.6 Released with Pending Pane Items, Async Git and Top and Bottom Bar API",http://blog.atom.io/2016/03/17/atom-1-6-and-1-7-beta.html,244,172,ingve,3/17/2016 22:16 +12457634,Obama on Climate Change: The Trends Are Terrifying,http://www.nytimes.com/2016/09/08/us/politics/obama-climate-change.html,63,112,smacktoward,9/8/2016 21:46 +10402416,"When there are too many administrators, which ones do *you* fire?",http://jakeseliger.com/2015/10/16/when-there-are-too-many-administrators-which-ones-do-you-fire/,4,1,jseliger,10/16/2015 22:26 +10618257,US State Dept Issues Worldwide Travel Alert,http://travel.state.gov/content/passports/en/alertswarnings/worldwide-travel-alert.html,60,45,fouadmatin,11/24/2015 0:08 +10636601,DeepView: Computational Tools for Chess Spectatorship,http://playful.media.mit.edu/projects/deepview,8,1,hemapani,11/27/2015 9:25 +11203438,Deposing Tim Cook,http://www.skatingonstilts.com/skating-on-stilts/2016/02/an-open-letter-to-tim-cook.html,2,2,fny,3/1/2016 15:55 +10816018,2015 in review 1 year after I quit blogging,http://nathanbarry.com/2015-review/,36,2,porter,12/31/2015 3:50 +10873517,New Erd?s Paper Solves Egyptian Fraction Problem,https://www.simonsfoundation.org/uncategorized/new-erdos-paper-solves-egyptian-fraction-problem/#,73,20,vinchuco,1/10/2016 0:19 +10270919,Visualizing the Discrete Fourier Transform,http://blog.revolutionanalytics.com/2015/09/because-its-friday-visualizing-ffts.html#,68,18,rndn,9/24/2015 11:00 +11575139,"Capacitor, BigQuerys next-generation columnar storage format",https://cloud.google.com/blog/big-data/2016/04/inside-capacitor-bigquerys-next-generation-columnar-storage-format,133,14,fhoffa,4/26/2016 20:04 +10774204,Bitcoin's mining difficulty has increased by 41.9% over the last 30 days,https://kaiko.com/statistics/difficulty,226,253,arnauddri,12/21/2015 23:00 +10573430,Ask HN: Enter market with a well-funded competitor?,,2,1,sparkling,11/16/2015 9:22 +12120708,Aggregated reviews for iPad Pro 9.7 inch,https://feedcheck.co/blog/ipad-pro-9-7-inch-customer-reviews/,3,2,adibalcan,7/19/2016 9:13 +10581844,"Analysis of 114 propaganda sources from ISIS, Jabhat al-Nusra, al-Qaeda [pdf]",http://37.252.122.95/sites/default/files/Inside%20the%20Jihadi%20Mind.pdf,1,1,crosre,11/17/2015 15:53 +11443427,"Apply HN: Hostable, Reskinnable, Domainable, Searchable, Forum Software",,3,5,andy_ppp,4/7/2016 0:00 +10590679,I was held hostage by Isis. They fear our unity more than our airstrikes,http://www.theguardian.com/commentisfree/2015/nov/16/isis-bombs-hostage-syria-islamic-state-paris-attacks,6,2,PhasmaFelis,11/18/2015 20:55 +11168708,Ask HN: Do you use any realtime PaaS/framework and in case you so which one?,,2,1,stemuk,2/24/2016 17:57 +11342920,A malicious module on npm,https://blog.liftsecurity.io/2015/01/27/a-malicious-module-on-npm,5,1,gburnett,3/23/2016 8:46 +11985350,Ditch Google Forms: Try This Free Survey Tool,http://www.vizir.co/,2,1,getvizir,6/27/2016 10:58 +10312846,Introducing Network Containers,https://www.zerotier.com/blog/?p=490,6,2,pkcsecurity,10/1/2015 17:26 +11178082,Chrome says login.live.com is a Deceptive site,,9,2,whizzkid,2/25/2016 21:45 +10402073,Predicting the Future and Exponential Growth,http://uday.io/2015/10/15/predicting-the-future-and-exponential-growth/,1,1,urs2102,10/16/2015 21:19 +12077936,Electroflight: demo electric show aeroplane,https://www.youtube.com/watch?v=Xe1g1JrRRkY,2,2,zeristor,7/12/2016 10:25 +12014198,Sliding airline seats speed up boarding and departing planes,http://www.businessinsider.com/sliding-airline-seats-speed-up-boarding-departing-planes-2016-6,3,3,stretchwithme,7/1/2016 6:23 +10965887,Limbless master of micrographia featured at the Met,http://www.nytimes.com/2016/01/15/arts/design/astounding-feats-in-pen-ink-and-magnifying-glass.html,2,1,GuestNetwork,1/25/2016 6:25 +11305945,Venezuela to Shut Down for a Week to Cope With Electricity Crisis,http://www.bloomberg.com/news/articles/2016-03-16/venezuela-to-shut-down-for-a-week-as-electricity-crisis-mounts,162,160,prostoalex,3/17/2016 17:27 +11149961,A Go check style tool,https://github.com/qiniu/checkstyle,2,1,longbai,2/22/2016 10:58 +10899330,Apple Watch Scooped Up Over Half the Smartwatch Market in 2015,http://techcrunch.com/2016/01/13/apple-watch-scooped-up-over-half-the-smartwatch-market-in-2015/,1,1,Jerry2,1/14/2016 2:45 +11276702,Pitch your startp Valuate it automatically,https://startupeval.mybluemix.net/,3,1,jo-m,3/13/2016 8:08 +11080321,Can Wall Street solve the water crisis in the West?,https://www.propublica.org/article/can-wall-street-solve-the-water-crisis-in-the-west,3,1,elorant,2/11/2016 14:35 +12178806,Show HN: Webscope Easy way for web developers to communicate with Clients,http://webscopeapp.com,3,3,fastbrick,7/28/2016 7:11 +10870764,It's time for the US to use the metric system,http://www.vox.com/2014/5/29/5758542/time-for-the-US-to-use-the-metric-system,25,12,edward,1/9/2016 10:27 +12097173,Facebook Blames Lack of Available Talent for Diversity Problem,http://www.wsj.com/articles/facebook-blames-lack-of-available-talent-for-diversity-problem-1468526303,3,1,protomyth,7/14/2016 21:06 +11062519,Beyond the Hype: 4 Years of Go in Production,http://www.infoq.com/presentations/go-iron-production,3,3,neoasterisk,2/9/2016 1:56 +12472690,The Case for Wooden Skyscrapers,http://www.economist.com/news/science-and-technology/21706492-case-wooden-skyscrapers-not-barking-top-tree,63,56,oli5679,9/11/2016 10:00 +12112528,"Microsoft patched Windows RT, blocks dev Linux boot",http://www.theregister.co.uk/2016/07/15/windows_fix_closes_rt_unlock_loophole/,110,39,type0,7/18/2016 0:05 +11851529,New phenomenon breaks inbound TCP policing,https://forums.whirlpool.net.au/forum-replies.cfm?t=2530363,130,53,RachelF,6/7/2016 0:15 +11380779,PULPino: open-source microcontroller based on a 32-bit RISC-V core,https://github.com/pulp-platform/pulpino,4,1,winterismute,3/29/2016 11:45 +11056477,Why your Uber app is lying to you about available cars,http://bgr.com/2015/07/28/uber-app-lying-cars-visual-effect/,9,3,adamsi,2/8/2016 5:22 +10239352,Facebooks Like Buttons Will Soon Track Your Web Browsing to Target Ads,http://www.technologyreview.com/news/541351/facebooks-like-buttons-will-soon-track-your-web-browsing-to-target-ads/,2,2,EwanToo,9/18/2015 14:25 +12395737,Grateful Dead Fan Timothy Tyler Has Been Granted Clemency,http://liveforlivemusic.com/news/grateful-dead-fan-timothy-tyler-has-been-granted-clemency-by-president-barack-obama/,222,211,WhitneyLand,8/31/2016 3:10 +10248556,The Return of the Command Line Interface,http://avc.com/2015/09/the-return-of-the-command-line-interface/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+AVc+%28A+VC%29,51,36,ghosh,9/20/2015 18:52 +10996470,ASP.NET OmniSharp server is not running on Ubuntu Mono,http://stackoverflow.com/q/35068910/2404470,1,1,xameeramir,1/29/2016 17:06 +10872799,Show HN: GeoScreenshot Easily test Geo-IP based web pages,https://www.geoscreenshot.com/,1,9,kpsychwave,1/9/2016 20:45 +10742394,Bacon over Lettuce,http://www.sciencedaily.com/releases/2015/12/151214130727.htm,3,3,prtkgpt,12/16/2015 4:31 +11140277,Ayn Rand Lamp,http://www.volcanophile.com/index.php?/root/ayn-rand-lamp-video/,33,51,jimsojim,2/20/2016 15:01 +10484797,Scientists identify main component of brain repair after stroke,http://www.nih.gov/news-events/news-releases/scientists-identify-main-component-brain-repair-after-stroke,85,8,Oatseller,11/1/2015 0:04 +12153139,Munich Gunman Got Weapon from the Darknet [German],http://www.sueddeutsche.de/panorama/eil-amokschuetze-von-muenchen-besorgte-sich-waffe-im-darknet-1.3092518,3,1,p01926,7/24/2016 12:30 +11610192,Craig Wright's proof isn't valid because he uses bash background instead of &&,https://imgur.com/ZUXBkTt,5,2,neuropie,5/2/2016 9:35 +10974870,From Python to Lua: Why We Switched,https://www.distelli.com/blog/using-lua-for-our-most-critical-production-code,243,188,chase202,1/26/2016 18:17 +11244541,Ubuntu 16.04 LTS to Ship Without Python 2,http://news.softpedia.com/news/ubuntu-16-04-lts-to-ship-without-python-2-windows-printers-detection-affected-501410.shtml,2,1,_snydly,3/8/2016 10:39 +10915933,About What is happening with this world?,http://meshedsociety.com/the-globalization-of-news/,3,1,imartin2k,1/16/2016 17:30 +12196969,The Golden Age of Open Protocols,http://avc.com/2016/07/the-golden-age-of-open-protocols/,131,51,worldvoyageur,7/31/2016 13:55 +12466761,Israeli DDOS Service vDOS responsible for several decades worth of DDoS years,http://krebsonsecurity.com/2016/09/israeli-online-attack-service-vdos-earned-600000-in-two-years/,29,1,aarestad,9/9/2016 23:27 +10843957,Unaffordable cities: this criminal lack of housing is a global scandal,http://www.theguardian.com/cities/2014/feb/10/unaffordable-cities-global-scandal-housing-lack?CMP=share_btn_tw,3,1,jseliger,1/5/2016 16:12 +10858645,Good UI,https://www.goodui.org/,27,8,jgrodziski,1/7/2016 16:01 +10601056,CSS Cursor's,http://css-cursor.techstream.org,4,2,anushbmx,11/20/2015 13:37 +10626218,Booking.js Availability and Scheduling API,http://booking.timekit.io/,142,22,listentojohan,11/25/2015 9:10 +11990286,Which MacBook can code 8 hours without charging?,,2,8,freelancerdever,6/27/2016 23:20 +10686336,"After 60 Years, B-52s Still Dominate U.S. Fleet",http://www.nytimes.com/2015/12/06/us/b-52s-us-air-force-bombers.html,149,145,otoolep,12/6/2015 19:52 +11237259,Show HN: Run with Mark (Runkeeper only),http://runwithmark.github.io/#/,3,3,ecesena,3/7/2016 5:17 +11748010,Dynamic Swift,http://mjtsai.com/blog/2016/05/21/dynamic-swift-2/,42,46,mpweiher,5/22/2016 10:22 +11721050,The False Promise of DNA Testing,http://www.theatlantic.com/magazine/archive/2016/06/a-reasonable-doubt/480747/?single_page=true,64,32,sergeant3,5/18/2016 11:05 +10493476,Philip Davies MP: 'Political correctness is damaging men',http://www.telegraph.co.uk/men/thinking-man/11969823/Philip-Davies-MP-Political-correctness-is-damaging-men.html,1,1,lujim,11/2/2015 17:39 +11837056,Ask HN: Is there a home Dropbox-style solution? (better explanation inside),,3,2,coreyp_1,6/4/2016 17:17 +10607974,The Glacial Pace of Scientific Publishing,http://www.fasebj.org/content/26/9/3589.full,30,32,ingve,11/21/2015 20:49 +10603601,Show HN: Send an email from your shell to yourself without pain,https://ping.registryd.com,4,1,ybrs,11/20/2015 20:23 +11818833,"Medical researcher discovers integration, gets 75 citations",https://fliptomato.wordpress.com/2007/03/19/medical-researcher-discovers-integration-gets-75-citations/,3,3,CarolineW,6/1/2016 22:36 +11969736,Why Brexit is worse for Europe than Britain,https://www.washingtonpost.com/news/wonk/wp/2016/06/24/whats-crucial-to-know-the-morning-after-brexit/?postshare=2461466773584454&tid=ss_tw,5,1,return0,6/24/2016 13:51 +12343060,iOS Keychain Privacy Issue,,2,1,benzinschleuder,8/23/2016 12:17 +10895443,Animatic by Inkboard Animation for everyone. animatic.io,,5,1,darrenpaul,1/13/2016 16:27 +11370446,Show HN: Underline.js is like underscore.js but using modern ES7 syntax,http://ankurp.github.io/underline/?hn,8,1,agp2572,3/27/2016 16:19 +10463917,List of Hacker News-style aggregators for specific niches,https://github.com/mikeanthonywild/hacker-news-for-x,1,1,ShinyCyril,10/28/2015 12:05 +10284074,Show HN: Real-Time Stats for an iOS MMORPG Game in a Wordpress Front End,http://aftermath.io/this-is-not-a-blog-wordpress-as-a-mmo-frontend/,6,1,ZaneClaes,9/26/2015 19:02 +10521035,We're Bringing Unsexy Back to Entrepreneurship,http://www.entrepreneur.com/article/251328,2,2,bevenky,11/6/2015 18:27 +12255593,Show HN: Bild A collection of image processing functions in Go,https://github.com/anthonynsimon/bild,2,2,amzans,8/9/2016 16:11 +10205375,Show HN: Automated coach for programming interviews,https://www.interviewbit.com/?ref=showhn,18,3,plicense,9/11/2015 18:32 +10762005,Django with websockets and a bolted-on telnet server: a hendrix demo,https://www.youtube.com/watch?v=92VeMkjM1TQ,2,1,jMyles,12/19/2015 0:34 +10294855,How do I provide value to my startup as a non-technical founder?,http://www.kilometer.io/blog/how-do-i-provide-value-to-my-startup-as-a-non-technical-founder/,1,1,alex_flom,9/29/2015 6:13 +11848050,"Show HN: /frink, a Slack app for Simpsons gifs",https://slashfrink.herokuapp.com/,1,1,gesteves,6/6/2016 16:36 +12487968,De-anonymizing website visitors via FB timing attacks,https://quadhead.de/website-besucher-durch-timing-attacken-auf-facebook-deanonymisieren/,13,4,aysfrm11,9/13/2016 13:26 +10684317,How to Satisfy the Worlds Surging Appetite for Meat,http://www.wsj.com/articles/how-to-satisfy-the-worlds-surging-appetite-for-meat-1449238059?mod=trending_now_2,38,71,prostoalex,12/6/2015 3:38 +10244832,Ask HN: How would you sell open source software?,,11,7,wjh_,9/19/2015 17:04 +10259707,Parallax - open source scrolling parallax script for mobile and desktop browsers,https://github.com/GianlucaGuarini/parallax,18,20,gianlucaguarini,9/22/2015 16:36 +12025133,Facebook's News Feed,http://www.newyorker.com/business/currency/facebooks-news-feed-often-changed-never-great,72,68,jeo1234,7/3/2016 7:30 +11585576,"Dear Amazon Prime, I don't want to watch the ads for your original series",http://www.amazon.com/Storm-Warnings/dp/B00N8MCYM4/ref=sr_1_2?s=instant-video&ie=UTF8&qid=1461800859&sr=1-2&keywords=the+wire,3,1,thththth,4/27/2016 23:50 +10327933,Amazon ECHO,http://www.amazon.com/gp/product/B00X4WHP5E/ref=s9_pop_gw_g451_i2?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=desktop-7&pf_rd_r=1NA8YZ60W55V0MXKEWM7&pf_rd_t=36701&pf_rd_p=2090151022&tag=facebookoffer15-20&pf_rd_i=desktop,3,3,syshackbot,10/4/2015 16:23 +10665466,From Word to Markdown to InDesign: Fully Automated Typesetting Using Pandoc,http://rhythmus.be/md2indd/,114,41,rhythmvs,12/2/2015 20:09 +10958220,How to use MVC with React,http://github.com/ustun/react-mvc?x=1,5,1,ludwigvan,1/23/2016 12:53 +10957172,PostgreSQL: Linux VS Windows part 2,http://www.sqig.net/2016/01/postgresql-linux-vs-windows-part-2.html,16,3,based2,1/23/2016 4:21 +11296136,How an Uncritical Media Helped Trump's Rise,http://www.spiegel.de/international/world/donald-trump-and-the-failure-of-the-us-media-a-1082401.html,1,1,citizensixteen,3/16/2016 10:02 +10963528,Create a GUI Application Using Qt and Python in Minutes,http://digitalpeer.com/s/c63e,21,1,zoodle,1/24/2016 19:01 +11757367,"For the poor in the Ivy League, a full ride isnt always what they imagined",https://www.washingtonpost.com/local/education/for-the-poor-in-the-ivy-league-a-full-ride-isnt-always-what-they-imagined/2016/05/16/5f89972a-114d-11e6-81b4-581a5c4c42df_story.html,5,1,wallflower,5/23/2016 21:55 +11701277,Radio FM broadcasting,,1,3,ejanus,5/15/2016 15:34 +10790754,HN: Christmas Colors,,28,12,sdiq,12/25/2015 8:50 +11134013,Show HN: Vector Toy Visualize and manipulate vector field functions,http://dandelany.github.io/vector-toy/,43,4,dandelany,2/19/2016 15:34 +10258332,Ask HN: Chat-App based on Mail and PGP?,,1,1,Databay,9/22/2015 13:16 +10574895,Classic Nintendo Games Are NP-Hard (2012),http://arxiv.org/abs/1203.1895,115,59,iamandoni,11/16/2015 15:22 +11581144,Status of legislation on self-driving vehicles across the 50 states,http://www.ncsl.org/research/transportation/autonomous-vehicles-legislation.aspx,1,1,sdneirf,4/27/2016 15:18 +10739492,The Pebble smartwatch finally does real fitness tracking,http://www.theverge.com/2015/12/15/10138298/pebble-health-tracking-update-stanford-smartwatch-fitness,47,12,akirk,12/15/2015 18:34 +10715613,How to Pronounce Hexadecimal,http://www.bzarg.com/p/how-to-pronounce-hexadecimal/,2,1,gammarator,12/11/2015 5:34 +10619996,The Mochileros Young Backpackers Risking Their Lives in Cocaine Valley,http://www.bbc.co.uk/news/resources/idt-07eeeebb-d450-4e4b-98d4-755369be7855,8,2,desdiv,11/24/2015 10:10 +11747821,Deep biomarkers of human aging: Application of deep neural networks,http://www.impactaging.com/papers/v8/n5/full/100968.html,71,6,jonbaer,5/22/2016 8:42 +11994405,Languages Which Almost Became CSS,https://eager.io/blog/the-languages-which-almost-were-css/,586,133,zackbloom,6/28/2016 15:15 +11181244,Drupal Benchmarks,http://www.pidramble.com/wiki/benchmarks/drupal,60,54,geerlingguy,2/26/2016 13:33 +12289059,It's time for fancy apartments to offer balconies for drone landings,https://www.wired.com/2016/08/time-fancy-apartments-offer-balconies-drone-landings/#slide-1,2,2,cm2187,8/15/2016 6:45 +10213207,File indexing and searching for Plan 9 [pdf],http://lsub.org/ls/export/tags.pdf,49,11,vezzy-fnord,9/14/2015 0:19 +11579299,"German nuclear plant infected with computer viruses, operator says",http://www.reuters.com/article/us-nuclearpower-cyber-germany-idUSKCN0XN2OS,149,94,r0muald,4/27/2016 10:57 +12534592,Computer Specialist Who Deleted Clinton Emails May Have Asked Reddit for Tips,http://www.usnews.com/news/articles/2016-09-19/paul-combetta-computer-specialist-who-deleted-hillary-clinton-emails-may-have-asked-reddit-for-tips?src=usn_tw,17,1,heyrhett,9/19/2016 20:52 +10518372,"Attack on Kunduz Trauma Centre, Afghanistan Initial MSF Internal Review [pdf]",http://kunduz.msf.org/pdf/20151030_kunduz_review_EN.pdf,3,1,andreasley,11/6/2015 8:28 +11444485,Show HN: HTML5 and Canvas demo written in Go,http://tidwall.com/digitalrain,8,3,tidwall,4/7/2016 3:26 +11902922,Tactile belt leads the blind and informs wearer of true north,https://www.indiegogo.com/projects/feelspace-follow-your-gut-feeling--3#/,4,3,antiffan,6/14/2016 16:04 +11148944,Adobe Photoshop and 1700s Manuscripts: A New Approach to Digital Paleography,http://www.digitalhumanities.org/dhq/vol/8/4/000187/000187.html,33,12,benbreen,2/22/2016 6:25 +12572730,Google's self-driving car is the victim in a serious crash,https://www.engadget.com/2016/09/24/googles-self-driving-car-is-the-victim-in-a-serious-crash/,12,6,openmosix,9/24/2016 21:28 +11835843,"Hacked in a public space? Thanks, HTTPS",http://www.theregister.co.uk/2016/05/20/https_wifi_trust_in_a_public_place/,27,29,blowski,6/4/2016 10:47 +10766828,"An Old-Media Empire, Axel Springer Reboots for the Digital Age",http://www.nytimes.com/2015/12/21/business/media/an-old-media-empireaxel-springer-reboots-for-the-digital-age.html?partner=rss&emc=rss&smid=tw-nytimes&smtyp=cur&_r=1,11,1,doener,12/20/2015 12:04 +11946541,Ask HN: What you wish you knew before launching your first Wordpress Plugin?,,1,1,wp_newb,6/21/2016 15:45 +10897571,Ask HN: How can we get porn sites to support HTTPS?,,8,4,lindx,1/13/2016 21:17 +11240737,Pocket Sized Virtual Reality Device,https://www.indiegogo.com/projects/smartvr-make-your-phone-a-virtual-reality-viewer/x/7469849#/,6,2,prbuckley,3/7/2016 18:58 +10302854,Full Disclosure: WinRAR SFX v5.21 Remote Code Execution Vulnerability,http://seclists.org/fulldisclosure/2015/Sep/106,3,1,tomtoise,9/30/2015 10:16 +10441107,"$70,000 minimum wage",http://www.slate.com/blogs/moneybox/2015/10/23/remember_dan_price_of_gravity_payments_who_gave_his_employees_a_70_000_minimum.html,4,1,gricardo99,10/23/2015 20:26 +12049801,Email Apps Suck,https://schneid.io/blog/why-your-email-app-sucks.html,52,83,schneidmaster,7/7/2016 15:11 +10328891,Ask HN: Looking for hacking games.,,3,4,dutchbrit,10/4/2015 21:27 +10581276,Ubuntu Team Needs a Cat to Replicate Important Bug,http://news.softpedia.com/news/ubuntu-team-needs-a-cat-to-replicate-important-bug-496205.shtml,2,1,zxv,11/17/2015 14:39 +11266275,"Alyne RegTech Platform for Cyber Security, Risk Management and Compliance",https://www.alyne.com,2,1,nr1,3/11/2016 12:48 +11975878,How Google Is Remaking Itself as a Machine Learning First Company,https://backchannel.com/how-google-is-remaking-itself-as-a-machine-learning-first-company-ada63defcb70,1,1,elorant,6/25/2016 10:26 +10969705,Ask HN: Are GMail's new features making spam easier?,,3,2,aleem,1/25/2016 20:27 +10455956,Ask HN: $500k revenue business Shopify vs. Custom website?,,4,3,jimmygatz,10/27/2015 2:47 +11461850,The Voyeur's Motel,http://newyorker.com/magazine/2016/04/11/gay-talese-t…,1,1,cmyr,4/9/2016 16:09 +10460634,The biggest threat to Silicon Valley isn't what you think it is,http://www.businessinsider.com/sc/flood-threat-to-silicon-valley-2015-10,2,1,cryptoz,10/27/2015 19:53 +12429434,What is the best android emulator for mac os?,,4,6,fimparatta,9/5/2016 10:59 +10930122,Ask HN: What you learned in 2015?,,2,1,justplay,1/19/2016 12:01 +10945276,Coworkers: a RabbitMQ microservice framework in Node.js,https://github.com/tjmehta/coworkers,13,1,tjmehta,1/21/2016 14:19 +11876191,The FBI 'is manufacturing terrorism cases' on a greater scale than ever before,http://www.businessinsider.com/fbi-is-manufacturing-terrorism-cases-2016-6/,255,136,ccvannorman,6/10/2016 13:30 +11027556,"Yahoo lays off 1,700 and is up for sale",http://www.vox.com/2016/2/1/10862040/yahoo-marissa-mayer-fail,115,64,Shofo,2/3/2016 16:53 +10250115,The extraordinary case of the Guevedoces,http://www.bbc.com/news/magazine-34290981,6,1,BoratObama,9/21/2015 2:55 +11333915,Ask HN: Critique my biz idea local.menu the next Airbnb,,2,22,andrewfromx,3/22/2016 2:05 +11639807,Ruby on Google AppEngine Goes Beta,https://cloudplatform.googleblog.com/2016/05/Ruby-on-Google-App-Engine-goes-betaruntime.html?m=1,4,1,mark_l_watson,5/5/2016 21:31 +11559218,How one Silicon Valley engineer negotiated a starting salary from $120k to $250k,http://uk.businessinsider.com/silicon-valley-engineer-negotiated-a-starting-salary-from-120k-to-250k-in-just-a-few-weeks-2016-4,6,2,adam_klein,4/24/2016 10:37 +10418862,Tech Startups Feel an IPO Chill,http://www.wsj.com/articles/tech-startups-feel-an-ipo-chill-1445309822,55,15,pierrealexandre,10/20/2015 13:06 +11927447,A brief update,https://www.mattcutts.com/blog/heading-to-usds/,180,169,rbinv,6/18/2016 7:17 +10467361,Prevent information leaking in Rails,http://greg.molnar.io/tech/2015/10/28/prevent-rails-information-leaking.html,27,5,gregmolnar,10/28/2015 20:59 +11860564,[Beta] Speedtest.net HTML5 Speed Test,http://beta.speedtest.net/,1,1,cquanu,6/8/2016 7:12 +10716331,How I Solved GCHQ's Xmas Card with Python and Pycosat. (Explanation and Source),http://matthewearl.github.io/2015/12/10/gchq-xmas-card/,6,1,kipi,12/11/2015 10:38 +10433288,Indonesia's palm oil fires emitted more greenhouse gases in a day than the U.S.,http://qz.com/528160/indonesias-palm-oil-fires-are-emitting-more-greenhouse-gases-every-day-than-the-entire-us/,137,162,Thorondor,10/22/2015 16:54 +10185714,Ask HN: Resources for learning ASP.NET?,,2,2,Catalyst4NaN,9/8/2015 14:04 +12441091,On Nodevember,https://medium.com/@nodebotanist/on-nodevember-f28a42c4b62e#.r6gxe4pa2,1,1,Garbage,9/7/2016 5:15 +12377598,"Ask HN: Help Looking to find the x,y,z coordinates of a point in a room",,3,2,WheelsAtLarge,8/28/2016 18:06 +12538881,Who the f*ck is this Product Manager at my startup?,https://medium.com/@raghunayyar/who-the-f-ck-is-this-product-manager-at-my-startup-bd67fbdba7c4#.y6wx9xne0,2,1,raghunayyar,9/20/2016 12:16 +12388202,Show HN: Feeble A React/Redux Architecture,https://github.com/feeblejs/feeble,3,1,_yesmeck,8/30/2016 7:45 +10739918,Need to list related videos along with their published date in YouTube?,https://chrome.google.com/webstore/detail/youtube-video-list-dater/mbaflkdlneldejanggphlhcepncjfaco,1,1,divyumrastogi,12/15/2015 19:38 +12505268,Cyclists: This tiny supercomputer could save your life,http://www.thememo.com/2016/09/14/cycling-news-fusionproc-cycleeye-sensors-cycling-uk-road-safety/,4,1,morehuman,9/15/2016 11:54 +10580134,Amazon.it starts selling Toyota Aygo online (Italian),http://www.dday.it/redazione/18155/amazonit-vende-online-la-toyota-aygo-super-sconto-e-diritto-di-recesso,2,1,lucaspiller,11/17/2015 10:04 +10600906,Google Releases the Full Version of Their Search Quality Rating Guidelines,http://searchengineland.com/google-releases-the-full-version-of-their-search-quality-rating-guidelines-236572,107,21,gere,11/20/2015 12:52 +10966060,The Heart and Soul of Prototypal OO: Concatenative Inheritance,https://medium.com/javascript-scene/the-heart-soul-of-prototypal-oo-concatenative-inheritance-a3b64cb27819,21,7,ericelliott,1/25/2016 7:33 +10461333,Jony Ive Sighted Driving the Apple Car Through SOMA,https://twitter.com/bretthellman/status/659097576277315584,12,4,cheerioty,10/27/2015 21:35 +10431839,Scientists discover molecular difference between male and female brains,http://www.northwestern.edu/newscenter/stories/2015/08/scientists-uncover-a-difference-between-the-sexes.html,1,1,no1ne,10/22/2015 12:43 +12001924,A plan to rescue western democracy from the ignorant masses [satire],http://www.karlremarks.com/2016/06/a-plan-to-rescue-western-democracy-from.html,1,1,sp332,6/29/2016 14:43 +12128917,"Ask HN: Apart from HN, what other websites you frequent for interesting content?",,19,7,TooSmugToFail,7/20/2016 13:44 +11299384,Numbers Every Programmer Should Know by Year,http://www.eecs.berkeley.edu/~rcs/research/interactive_latency.html,8,2,smaili,3/16/2016 18:03 +11687167,"70,000 OkCupid Users Just Had Their Data Published",http://motherboard.vice.com/read/70000-okcupid-users-just-had-their-data-published,13,4,mhays,5/12/2016 22:05 +10317609,How can I advance in my current role?,,2,3,payamb,10/2/2015 10:06 +12182434,"Transit of the future needs smarter routes, not more gadgets",http://www.vox.com/a/new-economy-future/real-transit,3,1,jseliger,7/28/2016 19:12 +12462772,Swastika emoji,https://samgentle.com/posts/2016-09-08-swastika-emoji,2,1,sgentle,9/9/2016 14:54 +11035577,Why I killed my standing desk,https://medium.com/swlh/why-i-killed-my-standing-desk-891174f9d6e6,32,53,fluxic,2/4/2016 17:35 +11243438,Calculus Is So Last Century,http://www.wsj.com/articles/calculus-is-so-last-century-1457132991?mod=e2fb,1,1,prostoalex,3/8/2016 3:47 +12066596,Google is making better apps for the iPhone than for Android,http://www.theverge.com/2016/7/8/12109832/google-apps-iphone-android-motion-stills-gboard-search-hangouts,65,25,digital55,7/10/2016 18:31 +11588479,"Lisp, C++: Sadness in my heart",http://thread.gmane.org/gmane.lisp.lispworks.general/13808,3,1,deepaksurti,4/28/2016 13:05 +11544342,MemSQL (YC W11) Raises $36M Series C,http://blog.memsql.com/memsql-raises-series-c/,74,14,ericfrenkiel,4/21/2016 18:32 +12015355,"New Yorks Sidewalks Are So Packed, Pedestrians Are Taking to the Streets",http://www.nytimes.com/2016/07/01/nyregion/new-york-city-overcrowded-sidewalks.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=second-column-region®ion=top-news&WT.nav=top-news,3,1,baron816,7/1/2016 12:08 +10915770,The Talent War Revisited (2011),http://www.mindtangle.net/2011/07/22/the-talent-war-revisted/,41,1,luu,1/16/2016 16:51 +11871574,"On Fungibility, Bitcoin, Monero and why ZCash is a bad idea",http://weuse.cash/2016/06/09/btc-xmr-zcash/,78,42,Expez,6/9/2016 19:12 +11709301,I wrote a script that listens to meetings I'm supposed to be paying attention to,https://www.reddit.com/r/Python/comments/4jhma7/what_did_you_automate_with_python_scripts/d37clfr,27,6,breadtk,5/16/2016 20:22 +12481330,"Ask HN: How to you browse, store, sync, and backup your family photos?",,8,7,stevesearer,9/12/2016 16:52 +11196895,Ask HN: Native way to tell whether a link has been submitted and discussed before?,,3,3,exolymph,2/29/2016 17:52 +11524342,Dinosaurs Were Declining Way Before That Pesky Asteroid,http://www.theatlantic.com/science/archive/2016/04/the-long-diminuendo-of-the-dinosaurs/478668/?single_page=true,3,1,curtis,4/19/2016 1:32 +11976300,When Good Waves Go Rogue (2014),http://nautil.us/issue/37/currents/when-good-waves-go-rogue-rp,68,12,dnetesn,6/25/2016 13:49 +12047710,Roll your own video conference tool part 1,https://bengarney.com/2016/06/25/video-conference-part-1-these-things-suck/,20,2,lisper,7/7/2016 6:04 +10463402,"Bill Gates: Only Government R&D Can Save the Climate, Private Sector Is Inept",http://usuncut.com/climate/bill-gates-only-socialism-can-save-us-from-climate-change/,7,2,p4bl0,10/28/2015 9:13 +10484493,Man who created own credit card sues bank for not sticking to terms (2013),http://www.telegraph.co.uk/finance/personalfinance/borrowing/creditcards/10231556/Man-who-created-own-credit-card-sues-bank-for-not-sticking-to-terms.html,233,84,pelario,10/31/2015 22:35 +10994640,A community of and for remote workers,https://remotes.in/,18,4,luxpir,1/29/2016 11:33 +11771469,US DoD Using 1970s IBM Series/1 and Floppy Disks for Nuclear Command and Control,http://www.gao.gov/products/GAO-16-696T,2,1,roymurdock,5/25/2016 17:24 +11520674,Ask HN: Do programmers without a degree struggle in Canada (Toronto)?,,12,6,nikon,4/18/2016 15:28 +10801230,Ask HN: Is asset building as a service (ABaaS) a good idea?,,3,2,tboyd47,12/28/2015 14:38 +10344959,What is it like to have never felt an emotion?,http://www.bbc.com/future/story/20150818-what-is-it-like-to-have-never-felt-an-emotion,96,92,andyjohnson0,10/7/2015 9:15 +11690125,Pharo 5.0 Released,http://pharo.org/news/pharo-5.0-released,128,50,ch_123,5/13/2016 13:01 +10971774,How We Hacked the Media and Landed Six-Figure Contracts in Four Days,https://medium.com/life-learning/how-we-hacked-the-media-and-landed-six-figure-contracts-in-four-days-96ea4aca4eef#.vzzr3xy38,3,1,joeyespo,1/26/2016 4:05 +12415512,7-yr-old Google Closure Compiler now in JS,https://developers.googleblog.com/2016/08/closure-compiler-in-javascript.html,4,5,paulddraper,9/2/2016 19:17 +10417753,"When a dev dies, their apps should live on",http://www.stuff.tv/features/when-dev-dies-their-apps-should-live,108,57,akakievich,10/20/2015 6:37 +10459020,Kula Ring,https://en.wikipedia.org/wiki/Kula_ring,9,1,Artistry121,10/27/2015 16:19 +11301399,Protocol-Oriented MVVM with Natasha the Robot,https://realm.io/news/doios-natasha-murashev-protocol-oriented-mvvm/,16,3,astigsen,3/16/2016 23:09 +12321608,'Flash Boys' IEX stock exchange opens for business,http://www.latimes.com/business/la-fi-capital-group-iex-20160815-snap-story.html,160,147,prostoalex,8/19/2016 17:15 +11419246,Ask HN: Containers and network access?,,3,1,zaroth,4/4/2016 3:34 +12295500,Ideas for getting started in the Linux kernel,http://www.labbott.name/blog/2016/08/15/ideas-for-getting-started-in-the-linux-kernel,207,44,ashitlerferad,8/16/2016 4:15 +11033604,TensorTalk Stay up to date on the latest AI code,http://tensortalk.com/?h,95,5,tcoder,2/4/2016 12:49 +12460257,Companies would benefit from helping introverts to thrive,http://www.economist.com/news/business-and-finance/21706490-organisations-have-too-long-been-oriented-towards-extroverts-companies-should-help?cid1=cust/ednew/n/bl/n/2016098n/owned/n/n/nwl/n/n/E/n,292,194,tomaskazemekas,9/9/2016 7:35 +10879297,GNU on Smartphones (part II),http://cascardo.eti.br/blog/GNU_on_Smartphones_part_II/,7,1,g1n016399,1/11/2016 7:07 +11840985,Reasons why I moved to Switzerland,https://medium.com/@iwaninzurich/eight-reasons-why-i-moved-to-switzerland-to-work-in-it-c7ac18af4f90#.r4jjiupzk,8,1,shawndumas,6/5/2016 14:01 +12180446,On the boundaries of GPL enforcement,https://lwn.net/Articles/694890/,75,23,sciurus,7/28/2016 14:34 +10564081,Startup uses fake ridesharing job ads to trick users into applying for car loans,https://pando.com/2015/11/13/cuban-backed-breeze-uses-fake-ridesharing-job-ads-trick-users-applying-car-loans/733132b46a4b9dc21177b83e16b7e85db4197c46/,10,1,Geekette,11/14/2015 2:18 +10430862,A small British firm shows that software bugs aren't inevitable (2005),http://spectrum.ieee.org/computing/software/the-exterminators,55,58,cjg,10/22/2015 7:26 +12563308,DockerHub seems down with a 503,http://isitdownorjust.me/hub-docker-com/,3,1,hashfyre,9/23/2016 9:18 +11040992,Barcode recovery using a priori constraints,http://www.windytan.com/2016/02/barcode-recovery-using-priori.html?m=1,2,5,gvb,2/5/2016 12:39 +11128299,Code of Conduct for DigitalOcean's Engineering Team,https://github.com/digitalocean/engineering-code-of-conduct,8,3,fweespeech,2/18/2016 19:00 +11444312,Apply HN: Hire neighborhood students to do your chores while you bloviate online,http://www.runnr.ca,2,1,studentrunnr,4/7/2016 2:45 +10461525,Show HN: Natural Language Time Zone Converter,https://slashtz.com,8,3,hpoydar,10/27/2015 22:08 +12501036,Researchers achieve speech recognition milestone,http://blogs.microsoft.com/next/2016/09/13/microsoft-researchers-achieve-speech-recognition-milestone/,210,135,gzweig,9/14/2016 20:41 +10249238,The Fake Meat Revolution,http://www.nytimes.com/2015/09/20/opinion/sunday/nicholas-kristof-the-fake-meat-revolution.html,48,69,noondip,9/20/2015 21:35 +11885119,Emails Show Unqualified Clinton Foundation Donor Appointed to Intel Board,http://www.realclearpolitics.com/video/2016/06/10/abcs_brian_ross_do_newly_released_clinton_emails_show_quid_pro_quo.html,6,1,ZoeZoeBee,6/11/2016 20:13 +10974009,Disabling npm's progress bar yields a 2x npm install speed,https://twitter.com/gavinjoyce/status/691773956144119808/photo/1,6,1,wanda,1/26/2016 15:56 +10613454,Any Open-Sourced Style Guides?,,15,10,rahulgulati,11/23/2015 8:37 +10868686,"Why We Hire Great Developers, Not Great Mobile Developers",https://medium.com/runkeeper-everyone-every-run/why-we-hire-great-developers-not-great-mobile-developers-98acf14112d5#.5zn08imsu,67,73,astigsen,1/8/2016 22:06 +10705312,Show HN: Unofficial Tinder Client for Apple TV,http://thnkdev.com/Fire/,5,2,jshchnz,12/9/2015 17:51 +12341485,The Genius of James Brown,http://www.nybooks.com/articles/2016/08/18/genius-of-james-brown/,53,13,tintinnabula,8/23/2016 4:52 +12352636,Show HN: Hire JavaScript - Top JavaScript Talent,https://www.hirejs.com/,1,1,eibrahim,8/24/2016 15:16 +11006668,India may pull plug on Facebooks bid to offer free Internet service,http://america.aljazeera.com/articles/2016/1/28/india-internetorg-ruling.html,2,2,giis,1/31/2016 15:31 +10206083,What Can Happen in the Course of Vulnerability Disclosure,http://www.insinuator.net/2015/09/sending-mixed-signals-what-can-happen-in-the-course-of-vulnerability-disclosure/,38,6,edwinjm,9/11/2015 20:46 +10912392,Ask HN: What Products/Segments need an open source Alternative?,,11,3,bhanu423,1/15/2016 21:47 +11801065,What Book Has the Most Page-For-Page Wisdom?,https://www.farnamstreetblog.com/2014/10/the-most-page-for-page-wisdom/,2,1,miraj,5/30/2016 12:55 +11344166,Designing for Performance now available for free,http://designingforperformance.com/,2,1,nerdy,3/23/2016 13:26 +12325933,Sad Trombone Exoplanet Reality Check,http://www.antipope.org/charlie/blog-static/2016/08/san-trombone-exoplanet-reality.html,151,195,cstross,8/20/2016 10:12 +10390822,How is NSA breaking so much crypto?,https://freedom-to-tinker.com/blog/haldermanheninger/how-is-nsa-breaking-so-much-crypto/,1005,246,sohkamyung,10/15/2015 1:43 +10943801,Tech's frightful 5 will dominate the near future,http://mobile.nytimes.com/2016/01/21/technology/techs-frightful-5-will-dominate-digital-life-for-foreseeable-future.html,1,1,eric-hu,1/21/2016 7:04 +11420819,Lost plans for Wright brothers Flying Machine found after 36 years,https://www.washingtonpost.com/local/lost-plans-for-wright-brothers-flying-machine-found-after-36-years/2016/04/02/e526fd56-f6b2-11e5-9804-537defcc3cf6_story.html,57,6,rayascott,4/4/2016 10:58 +12414859,App Store Subscriptions,https://developer.apple.com/app-store/subscriptions/,130,99,dirtyaura,9/2/2016 17:57 +12398362,Safe Retirement Spending Using TensorFlow,http://blog.streeteye.com/blog/2016/08/safe-retirement-spending-using-certainty-equivalent-cash-flow-and-tensorflow/,180,76,RockyMcNuts,8/31/2016 14:05 +12377923,The origins of the Nazis secret horse breeding project,https://blog.longreads.com/2016/08/23/the-secret-nazi-attempt-to-breed-the-perfect-horse/,47,40,Hooke,8/28/2016 19:02 +11280720,Android AOSP Platform Linux Init.rc Startup Code Trace,http://www.srcmap.org/sd_share/7/f772faae/Android_ASOP_Startup_Code_Trace.html,1,1,srcmap,3/14/2016 2:34 +10398262,"Student disqualified for using stackoverflow, on stackoverflow",http://stackoverflow.com/questions/33156198/null-pointer-exception-when-splitting-to-string-array,6,1,charlieegan3,10/16/2015 9:23 +10842931,"Toyota to Adopt Fords Entertainment Software to Fend Off Google, Apple",http://recode.net/2016/01/04/ford-gets-toyota-to-adopt-its-in-dash-entertainment-software-others-considering/,3,1,ilamont,1/5/2016 12:46 +11400719,Newly Discovered Star Has an Almost Pure Oxygen Atmosphere,http://www.popularmechanics.com/space/deep-space/a20213/newly-discovered-star-has-an-almost-pure-oxygen-atmosphere/,7,2,renatopp,3/31/2016 21:33 +12185845,We Should Not Accept Scientific Results That Have Not Been Repeated,http://nautil.us/blog/we-should-not-accept-scientific-results-that-have-not-been-repeated,910,275,dnetesn,7/29/2016 10:08 +10693825,Is the Future of Music a Chip in Your Brain?,http://www.wsj.com/articles/is-the-future-of-music-a-chip-in-your-brain-1449505111,22,26,jonbaer,12/8/2015 0:09 +11534851,"In Japan, an artificial intelligence has been appointed creative director",http://www.springwise.com/japan-artificial-intelligence-appointed-creative-director,43,11,pmcpinto,4/20/2016 14:57 +11240464,What's New in jQuery 3,http://developer.telerik.com/featured/whats-new-in-jquery-3/,2,1,nfriedly,3/7/2016 18:23 +10405512,A 15-Year Series of Campaign Simulators,http://motherboard.vice.com/read/help-ive-been-making-hyper-real-political-campaign-simulators-for-15-years?utm_source=mbtwitter,39,1,coloneltcb,10/17/2015 18:40 +10820832,"Background on the ""why"" behind our business model switch",http://www.youneedabudget.com/blog/post/the-new-ynab-business-model,2,1,Walkman,1/1/2016 2:13 +10545626,Welsh village adopts multinational tax tactics,http://www.independent.co.uk/news/uk/crickhowell-welsh-town-moves-offshore-to-avoid-tax-on-local-business-a6728971.html,66,50,sofaofthedamned,11/11/2015 9:26 +10396107,Crushing up pain pills and spitting out lives in West Virginia coal country,http://narrative.ly/falls-from-grace/crushing-up-pain-pills-and-spitting-out-lives-in-west-virginia-coal-country/,16,14,samclemens,10/15/2015 21:24 +10560570,The DevOps Democracy,http://onc.al/UCfCx,8,1,angchappy,11/13/2015 16:14 +10438082,"If Uber works, you might be less happy with your transport options",http://marginalrevolution.com/marginalrevolution/2015/10/if-uber-works-you-might-be-especially-unhappy-with-your-transport-options.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+marginalrevolution%2Ffeed+%28Marginal+Revolution%29,16,64,yummyfajitas,10/23/2015 12:15 +12262331,Who needs an architect?,http://www.yusufaytas.com/who-needs-architect/,2,1,yusufaytas,8/10/2016 15:11 +11376947,Microsoft is Working on a New Bot Framework,https://www.petri.com/microsofts-working-new-bot-framework,1,2,nikolay,3/28/2016 20:05 +10947211,"Microservices Practitioner Summit Livestream Featuring Uber, Netflix, and Others",http://microservices.com/,42,4,rschloming,1/21/2016 18:30 +10763029,Why Pinterest just open-sourced new tools for the Elixir programming language,http://venturebeat.com/2015/12/18/pinterest-elixir/,9,1,mickael,12/19/2015 8:22 +10190059,Show HN: Enboard.co,http://enboard.co/,4,2,epagamer,9/9/2015 6:41 +10442122,Eclipse Attacks on Bitcoin's Peer-To-Peer Network,https://medium.com/mit-security-seminar/eclipse-attacks-on-bitcoin-s-peer-to-peer-network-e0da797302c2,40,5,ffwang2,10/24/2015 1:55 +11347319,What to choose web design or web development?,,2,2,Ingword,3/23/2016 19:09 +11410749,Does Stress Speed Up Evolution?,http://nautil.us/issue/34/adaptation/does-stress-speed-up-evolution,46,13,dnetesn,4/2/2016 8:33 +11253191,Google Improves Image Search with Freebase Identifiers,http://www.seobythesea.com/2016/01/image-search-trends-freebase-entity-numbers/,19,3,PaulHoule,3/9/2016 14:41 +11654961,Frasier on the Electron Microscope,https://www.youtube.com/watch?v=nS41-JeZ3EE,1,1,mouzogu,5/8/2016 18:01 +10592934,Ask HN: Is college even worth it if you're worth your salt as a programmer?,,12,29,frame_perfect,11/19/2015 5:33 +11217987,"Etsy CTO: We Need Software Engineers, Not Developers",http://thenewstack.io/etsy-cto-qa-need-software-engineers-not-developers/,196,152,joabj,3/3/2016 16:40 +10291527,The College President-To-Adjunct Pay Ratio,http://www.theatlantic.com/education/archive/2015/09/income-inequality-in-higher-education-the-college-president-to-adjunct-pay-ratio/407029/?single_page=true,64,24,luu,9/28/2015 17:08 +10811007,Your web / back end stack for 2016?,,2,3,playing_colours,12/30/2015 6:15 +10413570,Facebook Relay: An Evil And/Or Incompetent Attack on REST,https://www.pandastrike.com/posts/20151015-rest-vs-relay,188,143,mwcampbell,10/19/2015 15:39 +10245275,The Box: A Replacement for Files (1999),http://lsub.org/who/nemo/export/2kblocks/?hn,8,3,vezzy-fnord,9/19/2015 19:21 +10766005,Ask HN: Look for help order and deliver birthday cake in SF,,1,2,singularitynear,12/20/2015 3:59 +10396159,Ask HN: What's the one thing you've always wanted to learn?,,8,20,alexgpark,10/15/2015 21:34 +10188900,New in Linux 4.3: Ambient capabilities,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit?id=58319057b7847667f0c9585b9de0e8932b0fdb08,6,1,amluto,9/9/2015 0:00 +10736929,Disposable emails for safe spam free shopping,http://couponinbox.com,1,1,genesem,12/15/2015 10:20 +10792583,Perl 6.0 Released,https://perl6advent.wordpress.com/2015/12/25/christmas-is-here/,50,2,hankache,12/25/2015 22:37 +11682123,A Brain Dump of What I Worked on for Uncharted 4,http://allenchou.net/2016/05/a-brain-dump-of-what-i-worked-on-for-uncharted-4/,304,48,phodo,5/12/2016 8:33 +10468457,Asqway ask questions and get recommendations,https://itunes.apple.com/app/asqway/id1039694793?ls=1&mt=8,1,1,pratim,10/29/2015 0:33 +12168703,Why Dropping the Trans-Pacific Partnership May Be a Bad Idea,http://www.nytimes.com/2016/07/27/business/economy/why-dropping-the-trans-pacific-partnership-may-be-a-bad-idea.html?em_pos=small&emc=edit_dk_20160726&nl=dealbook&nl_art=3&nlid=65508833&ref=headline&te=1,1,2,JumpCrisscross,7/26/2016 21:02 +12525973,Apache Joshua Incubating: statistical machine translation decoder 4 phrase-based,https://cwiki.apache.org/confluence/display/JOSHUA/Apache+Joshua+%28Incubating%29+Home,1,1,based2,9/18/2016 16:47 +12259083,"Show HN: Shapefly|Must Have Free Software Online About Diagram,Flowcharts&Shapes",http://shapefly.com/,4,1,zzzhan,8/10/2016 2:14 +10645584,Atom package that makes you feel like a god,https://atom.io/packages/rumble,1,1,jonahugger,11/29/2015 18:57 +11281113,Maxed Out: A Closer Look at Coffee Consumption in Finland,http://nordiccoffeeculture.com/maxed-out-a-closer-look-at-coffee-consumption-in-finland/,2,2,pizza,3/14/2016 4:39 +10360285,Four more carmakers join diesel emissions row,http://www.theguardian.com/environment/2015/oct/09/mercedes-honda-mazda-mitsubishi-diesel-emissions-row?CMP=twt_gu,119,68,gt565k,10/9/2015 14:41 +12055042,Facebook to Add End-To-End Encrypted Secret Conversations to Messenger App,http://www.nytimes.com/2016/07/09/technology/facebook-messenger-app-encryption.html,97,180,envy2,7/8/2016 12:40 +11928286,"Imagine yourself starting, not finishing",http://shyal.com/blog/a-simple-mind-hack-that-helps-beat-procrastination,243,62,shdc,6/18/2016 12:36 +10357207,What's Lost When Most People Work from Home,http://www.theatlantic.com/business/archive/2015/10/whats-lost-in-the-office-when-most-people-work-from-home/409666/?single_page=true,28,49,bootload,10/8/2015 23:52 +12212037,"Show HN: Make Your Own Custom Map Chart of World, Europe, United States and More",http://mapchart.net/,2,1,whiplashoo,8/2/2016 18:27 +11183404,"Ask HN: How do you track FOSS releases, changelogs?",,4,3,andrewstuart2,2/26/2016 19:20 +10562152,"The Invention of Nature: Alexander von Humboldt, the Lost Hero of Science",http://www.theguardian.com/books/2015/nov/13/the-invention-of-nature-the-adventures-of-alexander-von-humboldt-andrea-wulf-review,23,1,Hooke,11/13/2015 20:19 +11876619,"Baby Bust: 2015 had lowest U.S. fertility rate ever, down 600,000 births",http://www.washingtonexaminer.com/baby-bust-2015-had-lowest-u.s.-fertility-rate-ever-down-600000-births/article/2593554,2,1,randomname2,6/10/2016 14:34 +12211782,Ask HN: Hiring first employee for my startup. What documents need to be signed?,,2,3,dimasf,8/2/2016 18:00 +12184855,Show HN: What do you think of my Mongo Logs Utility?,https://worktheme.com/,8,3,data37,7/29/2016 3:19 +12100964,Inky: Secure Email Made Easy,http://inky.com/,5,2,tilt,7/15/2016 13:59 +12047485,Minnesota woman broadcasts police stop and shooting on Facebook Live,https://www.facebook.com/100007611243538/videos/1690073837922975/?pnref=story,138,117,_pius,7/7/2016 4:29 +11570623,Uber for fashion models? $20B industry is still very old-fashioned,https://www.techinasia.com/talk/uber-fashion-models-20b-industry-oldfashioned,2,1,williswee,4/26/2016 10:06 +11140797,San Bernardino County tweets it reset attacker iCloud password at FBI's request,http://www.sbsun.com/general-news/20160219/san-bernardino-county-tweets-it-reset-terrorists-icloud-password-with-fbi,381,170,randomname2,2/20/2016 16:49 +10183386,Show HN: ReadThisThing One fantastic piece of journalism in your inbox daily,http://readthisthing.com#,3,1,awwstn,9/7/2015 22:51 +12504568,"In offices of the future, sensors may track your every move even in the toilet",https://www.theguardian.com/careers/2016/sep/15/in-offices-of-the-future-sensors-may-track-your-every-move-even-in-the-bathroom,7,2,luisramalho,9/15/2016 9:29 +10490804,"Declassified CIA documents detail how to sabotage employers, annoy bosses",http://www.independent.co.uk/news/world/americas/declassified-cia-documents-detail-how-to-sabotage-employers-annoy-bosses-a6716961.html,87,21,robinwarren,11/2/2015 9:11 +10631052,Why can't I write the word 'tv' on the iOS Messages app?,https://github.com/tomj/iphone_tv_messages,3,8,nstj,11/26/2015 3:10 +12008786,Programming in D: A Happy Accident,http://dlang.org/blog/2016/06/29/programming-in-d-a-happy-accident/,3,1,yarapavan,6/30/2016 14:31 +11119657,White students undergo 'deconstructing whiteness' program Northwestern Univ,http://www.thecollegefix.com/post/26279/,8,6,eplanit,2/17/2016 17:47 +11439097,Should Sublime Text goes open source to save itself from falling?,,2,2,alarbi,4/6/2016 14:47 +12175930,"By November, Russian hackers could target voting machines",https://www.washingtonpost.com/posteverything/wp/2016/07/27/by-november-russian-hackers-could-target-voting-machines/?postshare=3971469647898918&tid=ss_tw-bottom,1,2,DyslexicAtheist,7/27/2016 19:45 +11271917,Hunter2 a script-oriented GPG + smartcard-based multiuser password manager,https://chiselapp.com/user/rkeene/repository/hunter2/doc/trunk/README.md,18,6,networked,3/12/2016 8:35 +11189320,"Ask HN: teaching basic coding and web design offline, solely via iOS devices?",,32,33,benbreen,2/28/2016 1:24 +10909510,Cover Letters: Always Send One,http://blog.doismellburning.co.uk/cover-letters-always-send-one/,30,20,mostlystatic,1/15/2016 14:35 +11816462,"Branwell Brontë died standing up leaning against a mantelpiece, to prove a point",https://en.wikipedia.org/wiki/Branwell_Bront%C3%AB,1,1,neilellis,6/1/2016 17:39 +10893151,Ask HN: Please validate my business idea,,1,5,springboard,1/13/2016 9:12 +11376394,How to remove conflict from conversations when people doubt or challenge you,https://www.reddit.com/r/everymanshouldknow/comments/2yvlbo/emsk_how_to_remove_conflict_from_conversations/,68,25,mgdo,3/28/2016 18:50 +10688970,The Isis papers: leaked documents show how Isis is building its state,http://www.theguardian.com/world/2015/dec/07/leaked-isis-document-reveals-plan-building-state-syria,3,1,callumlocke,12/7/2015 12:25 +11862786,DNS: Basic Concepts (2013),https://www.petekeen.net/dns-the-good-parts,162,62,rhubarbcustard,6/8/2016 15:16 +10864527,Microsoft is building its own SIM card for Windows,http://www.theverge.com/2016/1/7/10734648/microsoft-sim-card-cellular-data,4,2,lelf,1/8/2016 13:02 +11589092,VW C.E.O. Personally Apologized to President Obama in Plea for Mercy,http://www.nytimes.com/2016/04/29/business/international/volkswagen-legal-costs-emissions-cheating.html,1,1,KKKKkkkk1,4/28/2016 14:30 +11212664,Optimize your content for emotion and persuasion with CopyAwesome.com,http://copyawesome.com,1,1,bickov,3/2/2016 20:15 +10350514,What is the most unlimited vacation a person has ever taken?,https://www.quora.com/What-is-the-most-unlimited-vacation-a-person-has-ever-taken-utilizing-their-unlimited-vacation-policy?share=1,9,1,justinzollars,10/8/2015 2:17 +10695045,Swift package manager,https://github.com/apple/swift-package-manager,69,26,famoreira,12/8/2015 5:57 +10864258,RebelBB: forum written in Rebol (source code),http://www.digicamsoft.com/cgi-bin/rebelBB.cgi?code=1,3,1,vmorgulis,1/8/2016 11:55 +10631169,Engineers Nine Times More Likely Than Expected to Become Terrorists,https://www.washingtonpost.com/news/monkey-cage/wp/2015/11/17/this-is-the-group-thats-surprisingly-prone-to-violent-extremism/,36,37,richardboegli,11/26/2015 3:51 +10405393,Spinning Up a Spark Cluster on Spot Instances: Step by Step,http://insightdataengineering.com/blog/sparkdevops/,37,10,ddrum001,10/17/2015 18:07 +10299633,Each Facebook User Represented $10.03 in Ad Revenue in 2014,http://www.adweek.com/socialtimes/emarketer-social-network-ad-revenue/627457,2,1,rlalwani,9/29/2015 21:06 +11659370,Beyond crisis: four ways public relations can reinvent itself,http://www.forbes.com/sites/berlinschoolofcreativeleadership/2016/04/29/beyond-crisis-four-ways-public-relations-can-reinvent-itself/#ace31fd3e714,3,2,ioanarebeca,5/9/2016 12:48 +11809618,The Gig Economy Is a Rigged Economy,http://themodernteam.com/gig-economy-rigged-economy/,10,1,cameronconaway,5/31/2016 19:52 +10454760,Is social network analysis a good product idea for a startup?,,2,4,andrew_eit,10/26/2015 21:55 +11667187,The New 10-Year Vesting Schedule,https://zachholman.com/posts/the-new-10-year-vesting-schedule?sr_share=facebook,3,1,genieyclo,5/10/2016 14:01 +12500621,The new C standards are worth it,http://lemire.me/blog/2016/09/14/the-new-c-standards-are-worth-it/,4,1,ingve,9/14/2016 19:48 +12377393,"There are no particles, there are only fields (2012)",https://arxiv.org/abs/1204.4616,294,199,monort,8/28/2016 17:25 +12512154,Some questions about Docker and rkt,http://jvns.ca/blog/2016/09/15/whats-up-with-containers-docker-and-rkt/,187,86,deafcalculus,9/16/2016 6:02 +10414044,Venture Outlook 2016,http://www.bothsidesofthetable.com/2015/10/18/venture-outlook-2016/,37,5,rcarrigan87,10/19/2015 16:46 +10944435,We Analyzed 1M Google Search Results. Heres What We Learned About SEO,http://backlinko.com/search-engine-ranking,2,1,mohitgangrade,1/21/2016 10:44 +11210177,Strokes: Let's pretend D3 was written in ClojureScript,https://github.com/dribnet/strokes,46,19,sebg,3/2/2016 14:45 +10633017,"Today's world is amd64, armv7, and soon aarch64. Everything else is dead",http://pastebin.com/W9RbUUN1,153,75,tbirdz,11/26/2015 14:10 +10382348,It's Financial Suicide to Own a House,http://www.jamesaltucher.com/2015/10/own-house/,3,4,jessaustin,10/13/2015 18:16 +10431522,Kits Make Tinkerers Home-Automation Dreams Come True,http://www.wsj.com/articles/kits-make-tinkerers-home-automation-dreams-come-true-1444870383,46,57,fawce,10/22/2015 11:10 +10561017,Civil Forfeiture and the Supreme Court (2014),http://www.economist.com/blogs/democracyinamerica/2014/02/civil-liberties-and-supreme-court?foo=bar,67,44,martincmartin,11/13/2015 17:25 +12465243,Apple Don't Blink [video],https://m.youtube.com/watch?v=GeoUELDgyM4,3,1,csl,9/9/2016 19:13 +11431128,Tor exit node operator gets raided by police,http://www.npr.org/sections/alltechconsidered/2016/04/04/472992023/when-a-dark-web-volunteer-gets-raided-by-the-police,220,201,morninj,4/5/2016 15:29 +10791695,The Marriages of Power Couples Reinforce Income Inequality,http://www.nytimes.com/2015/12/27/upshot/marriages-of-power-couples-reinforce-income-inequality.html,35,34,Futurebot,12/25/2015 17:25 +10638777,UK ISP boss points out technical flaws in Investigatory Powers Bill,http://arstechnica.com/tech-policy/2015/11/uk-isp-boss-points-out-massive-technical-flaws-in-investigatory-powers-bill/,20,4,cmsefton,11/27/2015 20:47 +11641004,Ask HN: Where do you want your tax dollars spent?,,1,4,lollinghard,5/6/2016 1:14 +12530215,How I gained access to TMobiles national network for free,https://medium.com/@jacobajit/how-i-gained-access-to-tmobiles-national-network-for-free-f9aaf9273dea#.mkcj8ga3t,62,10,cujanovic,9/19/2016 10:21 +11175593,Bad UI design features that are in common use today,https://stayintech.com/info/uidesign,4,2,userium,2/25/2016 16:40 +12573228,What are the FLOSS community's answers to Siri and AI?,,16,7,jernst,9/25/2016 0:18 +11959103,Hyperinflation in America: The End of Grades?,http://www.mansharamani.com/articles/hyperinflation-in-america-the-end-of-grades/,96,155,wallflower,6/23/2016 5:50 +10729776,Postmortem: Outage due to Elasticsearchs flexibility and our carelessness,http://lambda.grofers.com/2015/12/14/postmortem-of-our-app-downtime-elasticsearchs-flexibility-bites/,78,27,vaidik,12/14/2015 7:08 +10662982,Parents naming their babies after Instagram photo filters,http://recode.net/2015/12/01/stop-naming-your-kids-after-instagram-filters-really/,2,1,jamessun,12/2/2015 14:12 +10616743,Slack is down,https://slack.com/,94,56,napsterbr,11/23/2015 19:39 +10621410,What I Learned From Blowing An Interview,http://braythwayt.com/2015/11/23/blowing-an-interview.html,131,120,braythwayt,11/24/2015 15:54 +11812033,Time to ban coffee? How values dictate our use of precaution,https://risk-monger.com/2016/06/01/time-to-ban-coffee-how-values-dictate-our-use-of-precaution/,4,1,okket,6/1/2016 4:19 +10812096,Non-Unique SSH Host Keys Ed25519 on Hetzner,http://wiki.hetzner.de/index.php/Ed25519/en,127,58,jonaslejon,12/30/2015 14:15 +11960858,Ask HN: How to handle staging environments?,,8,7,fabianlindfors,6/23/2016 13:59 +12381585,"A federal carbon tax is imminent in the USA, and Exxon is pushing it",https://electrek.co/2016/08/29/a-federal-carbon-tax-is-imminent-in-the-usa-and-exxon-is-pushing-it/,75,84,acusticthoughts,8/29/2016 13:10 +12031831,China has built a telescope the size of 30 soccer fields to look for aliens,http://www.theverge.com/2016/7/4/12093384/china-world-largest-radio-telescope-complete,7,1,doener,7/4/2016 17:07 +11625513,"Weatherspark's incredible, intuitive, mind-blowing dashboard is gone",https://weatherspark.com/#deprecated,10,5,daltonlp,5/4/2016 1:22 +10620525,The History of SQL Injection,http://motherboard.vice.com/read/the-history-of-sql-injection-the-hack-that-will-never-go-away,38,9,kawera,11/24/2015 13:25 +10565093,Test if your site runs on HTTP/2,http://http2check.me,2,1,velmu,11/14/2015 9:35 +11602552,"Ask HN: Question from a luddite re: cookies/web tracking, particularly by Criteo",,3,11,corvallis,4/30/2016 17:21 +11622457,"Show HN: My Weekend Hack WatchDog, look over your laptop while you're away",https://www.wtchdg.com,2,1,zaytoun,5/3/2016 17:12 +11256705,[video] Google Self-Driving SUV Sideswipes Bus,http://www.nbcbayarea.com/news/local/VIDEO-Google-Self-Driving-SUV-hits-a-bus-while-being-tested-on-Valentines-Day-in-Mountain-View-California---371541711.html,2,1,philip1209,3/10/2016 0:40 +10421168,Ask HN: Tax implications of becoming a full time remote employee,,1,1,gearoidoc,10/20/2015 19:21 +10243123,Bank of England's Chief Economist suggests ditching cash for cryptocurrency,http://finextra.com/news/fullstory.aspx?newsitemid=27870,13,5,herendin,9/19/2015 2:57 +11460795,GoPro goes all-in on VR without a winning hand,http://techcrunch.com/2016/04/07/gopro-goes-vr/,6,2,findher,4/9/2016 10:57 +10584488,Show HN: Micromort Calculator,http://rorystolzenberg.github.io/micromort-calculator/,1,1,rory096,11/17/2015 22:33 +12043057,"Show HN: FlightBot, a Messenger bot designed for pilots",https://www.facebook.com/FlightBot,1,1,MironV,7/6/2016 13:56 +10447059,Ask HN: Getting Clients That Are Clients of Another Agency,,6,9,hanniabu,10/25/2015 15:09 +11207316,Scott Kelly Reflects on His Year Off the Planet,http://www.npr.org/2016/03/01/468239527/scott-kelly-reflects-on-his-year-off-the-planet,3,1,t23,3/2/2016 0:26 +11628475,Ask HN: Why did Andrej Karpathy take down the Stanford CS231n videos?,,3,2,max_,5/4/2016 14:14 +11729545,The math that shows autonomous vehicles powered by solar power are inevitable,http://electrek.co/2016/05/19/the-math-and-evidence-all-around-you-that-shows-shared-autonomous-vehicles-powered-by-solar-power-and-batteries-are-inevitable/,3,2,jeromeflipo,5/19/2016 12:13 +12115051,Httpoxy A CGI application vulnerability,https://httpoxy.org/,153,46,omribahumi,7/18/2016 14:00 +10703579,SHA-1 Deprecation: No Browser Left Behind,https://blog.cloudflare.com/sha-1-deprecation-no-browser-left-behind,16,2,jgrahamc,12/9/2015 14:00 +10332244,"Yale launches an archive of 170,000 Depression-era photos",http://photogrammar.yale.edu/,1,1,janvdberg,10/5/2015 15:05 +12095261,Did Oil Kill the Dinosaurs?,http://www.newyorker.com/tech/elements/darkness-falls-on-the-dinosaurs,38,17,anthotny,7/14/2016 16:34 +10179775,Suicide on Campus and the Pressure of Perfection,http://www.nytimes.com/2015/08/02/education/edlife/stress-social-media-and-suicide-on-campus.html,57,27,DrScump,9/7/2015 1:50 +10733963,Where U.S. Brainpower Tends to Cluster,http://www.citylab.com/work/2015/12/where-us-brainpower-tends-to-cluster/420102/,29,29,smollett,12/14/2015 21:20 +11018653,"Owner of photobomb horse demands share of £2,000 selfie prize",http://www.theguardian.com/uk-news/2016/feb/02/owner-photobomb-horse-demands-share-2000-selfie-prize,3,1,rayascott,2/2/2016 10:36 +12352835,Britains New Spy Planes Are Practically Spacecraft,https://warisboring.com/britains-new-spy-planes-are-practically-spacecraft-8f90587efbed#.p45agticl,7,2,vinnyglennon,8/24/2016 15:43 +10462004,Walgreens announces deal to buy Rite Aid for $9 a share,http://www.cnbc.com/2015/10/27/walgreens-announces-deal-to-buy-rite-aid-for-9-a-share.html,63,74,skhatri11,10/27/2015 23:45 +11003899,CIA planned rendition operation to kidnap Edward Snowden,https://www.wsws.org/en/articles/2016/01/30/snow-j30.html,492,202,kushti,1/30/2016 21:45 +10657510,Airbnb Releases Trove of New York City Home-Sharing Data,http://www.nytimes.com/2015/12/02/technology/airbnb-releases-trove-of-new-york-city-home-sharing-data.html,5,3,uptown,12/1/2015 18:13 +10301554,Pentesterlab Tutorial SQL injection to web admin console to getting a shell,https://pentesterlab.com/exercises/from_sqli_to_shell,2,1,pentestercrab,9/30/2015 3:32 +11958244,"Phoenix Focuses on Rebuilding Downtown, Wooing Silicon Valley",http://www.nytimes.com/2016/06/19/us/phoenix-focuses-on-rebuilding-downtown-wooing-silicon-valley.html?mabReward=CTM&action=click&pgtype=Homepage®ion=CColumn&module=Recommendation&src=rechp&WT.nav=RecEngine&_r=0,1,1,jseliger,6/23/2016 1:09 +10785546,Ask HN: Things you created in 2015?,,26,37,thecosas,12/23/2015 20:48 +11815678,Ask HN: Has TeamViewer has been compromised?,,3,1,joenathan,6/1/2016 16:19 +12067533,Ask HN: Imagine it's 1993 what would you put in an MVP web browser?,,3,2,hoodoof,7/10/2016 22:19 +10415744,Computer Utopias,http://chrisnovello.com/teaching/risd/computer-utopias/,59,10,jonathanedwards,10/19/2015 21:05 +11520099,Rise of the Trollbots,http://www.antipope.org/charlie/blog-static/2016/04/rise-of-the-trollbot.html,6,1,thenomad,4/18/2016 14:25 +11950382,Ask HN: What was the name of this contact app?,,1,4,l1n,6/21/2016 23:40 +10799116,No end in sight as repair work on California's sinking land costs billions,http://www.theguardian.com/us-news/2015/dec/27/california-central-valley-land-sinking-subsidence-drought,1,1,cryoshon,12/27/2015 23:27 +11561001,Ask HN: What are the components needed to make a web API?,,2,1,aryamaan,4/24/2016 19:36 +11751812,"2 Mount Everest climbers die of altitude sickness, 2 others missing",http://www.nola.com/outdoors/index.ssf/2016/05/mount_everest_deaths_missing_t.html,10,3,SCAQTony,5/23/2016 4:10 +11028120,Show HN: EnQ reduces on-hold time with the IRS from hours to minutes,https://callenq.com/,1,4,callenq,2/3/2016 17:59 +11192057,Civic Tech Needs of San Francisco,http://startupinresidence.org/about/city-challenges/san-francisco-challenges/,2,1,ajiang,2/28/2016 19:45 +11735075,Ask HN: Any coding bootcamps that you recommend?,,1,1,soneca,5/20/2016 1:26 +12075157,Comparing the Top Five Computer Vision APIs,https://goberoi.com/comparing-the-top-five-computer-vision-apis-98e3e3d7c647,29,2,goberoi,7/11/2016 22:07 +12526344,In The Zone,http://quoteinvestigator.com/2016/09/16/zone/,71,10,dang,9/18/2016 18:09 +10597648,Vo Trong Nghia Architects S-House 2,http://votrongnghia.com/projects/s-house-2/,15,3,ph0rque,11/19/2015 21:03 +11895088,"Unikernel Power Comes to Java, Node.js, Go, and Python Apps",http://www.infoworld.com/article/3082051/open-source-tools/unikernel-power-comes-to-java-nodejs-go-and-python-apps.html,3,1,syslandscape,6/13/2016 16:23 +10602666,Validate your ideas fast and free,http://pitch.munichtrading.com,2,2,l7l,11/20/2015 18:00 +11837178,GitHub Dark 2.0 Browse GitHub in nighttime mode,https://cquanu.github.io/github-dark/?ref=hackernewsv2,4,1,cquanu,6/4/2016 17:50 +10720377,Whisply by Boxcryptor Secure File Transfer,https://whisp.ly/,5,2,nikolay,12/11/2015 21:56 +11774938,Just How Accurate Are Fitbits? The Jury Is Out,http://www.nytimes.com/2016/05/26/technology/personaltech/fitbit-accuracy.html,2,1,adamsi,5/26/2016 2:45 +10954168,"Show HN: I failed for a weekend project, here is my 5 days side project",,6,5,diegoloop,1/22/2016 17:30 +12222822,Self-Driving Car Engineer Nanodegree,https://www.udacity.com/course/self-driving-car-engineer-nanodegree--nd013,14,7,olivercameron,8/4/2016 1:47 +11530304,What convolutional neural networks look at when they see nudity,http://blog.clarifai.com/what-convolutional-neural-networks-see-at-when-they-see-nudity/,428,155,rcpt,4/19/2016 20:53 +10980715,Moz raises $10m Series C from Foundry Group,https://moz.com/blog/moz-announces-10-million-financing-round,3,1,Roedou,1/27/2016 15:59 +12052321,New Directions in Cryptography by Diffie and Hellman (1976) [pdf],https://www-ee.stanford.edu/~hellman/publications/24.pdf,68,13,maverick_iceman,7/7/2016 21:56 +11421977,Show HN: Quantitative user research reveals useful UX observation on LinkedIn,http://canvasflip.com/blog/index.php/2016/04/02/ux-insights-linkedin-app-prototype-canvasflip/,2,1,vipul4vb,4/4/2016 14:12 +10640753,A look at Darktable 2.0,https://lwn.net/Articles/663805/,64,10,liotier,11/28/2015 11:11 +11052157,Show HN: Curated List of Awesome Products Made by Female Founders,https://github.com/softvar/awesome-products-by-women,5,2,softvar,2/7/2016 8:19 +11906403,The Story of Haskell at IMVU,https://chadaustin.me/2016/06/the-story-of-haskell-at-imvu/,210,165,adamnemecek,6/15/2016 0:16 +11847163,Mailtrain (the open source Mailchimp clone) is getting automation support,https://mailtrain.org/archive/SJoYB3MN/EysIv8sAx/SklBfpME?fixed=true,12,3,andris9,6/6/2016 14:49 +10657859,Developing a computational pipeline using the asyncio module in Python 3,http://www.pythonsandbarracudas.com/blog/2015/11/22/developing-a-computational-pipeline-using-the-asyncio-module-in-python-3,57,12,jaxondu,12/1/2015 19:02 +10921901,Fruit Walls: Urban Farming in the 1600s,http://www.lowtechmagazine.com/2015/12/fruit-walls-urban-farming.html,100,11,bootload,1/18/2016 0:52 +12381480,Why we switched from DynamoDB back to RDS before we even released,http://codebarrel.io/blog/2016/8/29/why-we-switched-from-dynamodb-back-to-rds-before-we-even-released,3,1,nimbus007,8/29/2016 12:49 +12497108,All New Amazon Echo Dot,https://smile.amazon.com/dp/B01DFKC2SO?ref_=pe_1840220_207574400_ods_Email_Home_DR_crm_EchoDotlaunch,121,136,johnwheeler,9/14/2016 14:23 +11527671,Why is there a screen that says It is now safe to turn off your computer?,https://blogs.msdn.microsoft.com/oldnewthing/20160419-00/?p=93315,99,44,ingve,4/19/2016 15:33 +12168746,User forked UnrealEngine on GitHub and gave write and subscribed everyone ~100K,https://github.com/teardemon/UnrealEngine/commit/e3c33a1a72a1b1edffcd4680f2b49fed19d465f2,28,13,stedaniels,7/26/2016 21:09 +10573168,The Microcomplaint: Nothing Too Small to Whine About,http://www.nytimes.com/2015/11/15/fashion/the-microcomplaint-nothing-too-small-to-whine-about.html,57,67,bootload,11/16/2015 7:57 +11398211,"With Gigs Instead of Jobs, Workers Bear New Burdens",http://www.nytimes.com/2016/03/31/upshot/contractors-and-temps-accounted-for-all-of-the-growth-in-employment-in-the-last-decade.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=second-column-region®ion=top-news&WT.nav=top-news,1,1,Futurebot,3/31/2016 16:09 +11546882,MongoDB Twitter Spam Campaign,http://imgur.com/a/iY5C7,1,1,snurk,4/22/2016 3:29 +11211381,Tailing the MongoDB Replica Set Oplog with Scala and Akka Stream,http://khamrakulov.de/tailing_the_mongodb_replica_set_oplog_with_scala_and_akka_streams/,32,7,timkham,3/2/2016 17:25 +12268516,Google isnt safe from Yahoos fate,https://techcrunch.com/2016/08/11/google-isnt-safe-from-yahoos-fate/,40,43,dineshp2,8/11/2016 14:32 +10792206,Linode is having an outage?,,8,3,ambiate,12/25/2015 20:08 +10570344,Toenail clippings stashed in Harvard basement could hold clues about cancer,http://www.statnews.com/2015/11/11/trove-of-toenails-stashed-in-freezers-could-hold-clues-for-cancer-research/,6,3,Amorymeltzer,11/15/2015 17:55 +11825880,Germany declares 1915 Armenian killings a genocide,http://edition.cnn.com/2016/06/02/europe/germany-turkey-armenian-genocide/,18,4,wslh,6/2/2016 20:43 +10662263,Facebook is not worth $33B (2010),https://signalvnoise.com/posts/2585-facebook-is-not-worth-33000000000,6,5,rl12345,12/2/2015 11:09 +11719543,Academics Make Theoretical Breakthrough in Random Number Generation,https://threatpost.com/academics-make-theoretical-breakthrough-in-random-number-generation/118150/,389,157,oolong_decaf,5/18/2016 3:36 +12397136,Wallace and Gromit The Great Train Chase (1993) [video],http://www.aardman.com/celebrating-40-years/the-great-train-chase/,67,19,sohkamyung,8/31/2016 9:42 +11589022,The MakerBot Obituary,http://hackaday.com/2016/04/28/the-makerbot-obituary/,146,34,szczys,4/28/2016 14:20 +12063660,"Show HN: A simpler, open-source, different kind of forum/message board",https://github.com/fiatjaf/stack-forum,11,2,fiatjaf,7/9/2016 22:35 +12296556,Google Cloud EU: Understand Your VAT Setting Change,,3,1,ithkuil,8/16/2016 10:43 +12383130,Hacker Shows Us How to Unlock a Laptop Using an NSA Tool [video],https://motherboard.vice.com/read/hacker-unlock-a-laptop-nsa-tool-slotscreamer,14,8,n3mes1s,8/29/2016 16:44 +11461899,How Facebook turned itself into one of the worlds most influential tech giants,http://www.economist.com/news/briefing/21696507-social-network-has-turned-itself-one-worlds-most-influential-technology-giants,2,1,akman,4/9/2016 16:19 +11223553,San Bernardino DA says seized iPhone may hold dormant cyber pathogen,http://arstechnica.com/tech-policy/2016/03/san-bernardino-da-says-seized-iphone-may-hold-dormant-cyber-pathogen/,5,3,robin_reala,3/4/2016 13:30 +12096717,Eliminating some of the pain of long-lived feature branches,http://blog.launchdarkly.com/feature-branching-using-feature-flags/,14,1,pritianka,7/14/2016 19:52 +11406513,Why It's Time to Ignore Fidelity's Startup Valuations,http://fortune.com/2016/03/31/its-time-to-ignore-fidelitys-startup-valuations/,14,4,prostoalex,4/1/2016 17:08 +12116137,Employee #1: Airbnb,http://themacro.com/articles/2016/07/nick-grandy/,119,27,craigcannon,7/18/2016 16:34 +12155207,Pangu released iOS 9.2-9.3.3 jailbreak,http://pangu.io,2,1,designorant,7/24/2016 22:27 +11441963,Apply HN: Dribblr app to organize pickup sports,,9,5,myroon5,4/6/2016 20:47 +12248653,Should people over 40 work a three-day week?,https://www.theguardian.com/lifeandstyle/2016/aug/08/should-people-over-40-work-a-three-day-week,44,38,metafunctor,8/8/2016 15:47 +11872147,Amazon Engineer Lives on a Boat and Works from Hawaii,http://www.businessinsider.com/amazon-engineer-lives-on-a-boat-and-works-from-hawaii-2013-2,2,1,antimora,6/9/2016 20:33 +12330864,Fixed gear bicycles for the road,http://www.sheldonbrown.com/fixed.html,7,3,mobiletelephone,8/21/2016 13:32 +11971491,Ask HN: What is your go-to example for a good REST API?,,401,182,goostavos,6/24/2016 17:02 +12164305,They released Tinder for Investors,https://www.producthunt.com/tech/bullboard,1,2,danielminkov,7/26/2016 9:11 +11755791,Related: Pure Ruby Relational Algebra Engine,https://github.com/seansellek/related,102,29,flipandtwist,5/23/2016 18:27 +10794933,Linode under DDoS,http://status.linode.com/,16,3,gingerlime,12/26/2015 19:24 +11233999,Transmission (BitTorrent client) v2.90 contained malware on OS X,https://www.transmissionbt.com/?v=2.91,13,1,kevinday,3/6/2016 15:09 +12081722,Ask HN: How to not be bored doing a similar project in my company?,,1,5,randy_gilette,7/12/2016 19:34 +10400446,Ask HN: What books will stay relevant for many years to come?,,12,9,shubhamjain,10/16/2015 16:36 +11916807,Free State of Jones Film with Footnotes,http://freestateofjones.info/,2,3,tyh,6/16/2016 15:34 +12082378,Show HN: Delivering Image Advertisements in Minecraft - Built with Meteor.js,https://www.adventurize.com,5,1,danielrh,7/12/2016 21:24 +10795399,Much faster incremental apt updates,https://juliank.wordpress.com/2015/12/26/much-faster-incremental-apt-updates/?utm_source=twitterfeed&utm_medium=twitter,172,57,edward,12/26/2015 21:41 +12376550,A Powerful Russian Weapon: The Spread of False Stories,http://www.nytimes.com/2016/08/29/world/europe/russia-sweden-disinformation.html,4,1,r721,8/28/2016 14:06 +10445887,SDR Reception of Digital Amateur TV from the ISS,http://www.pabr.org/radio/softdatv/softdatv.en.html,46,2,zdw,10/25/2015 3:39 +10199523,Apple TV Markup Language,https://developer.apple.com/library/prerelease/tvos/documentation/LanguagesUtilities/Conceptual/ATV_Template_Guide/TextboxTemplate.html#//apple_ref/doc/uid/TP40015064-CH2-SW8,108,68,hharnisch,9/10/2015 17:59 +12487621,Meet the 22-year-olds solving the plastic waste problem,https://www.greenbiz.com/article/meet-20-year-olds-solving-plastic-waste-problem,10,3,endswapper,9/13/2016 12:43 +11220232,Why Seattle startups have an advantage,http://www.geekwire.com/2016/234469/,2,2,androidlives,3/3/2016 21:37 +10305249,Nvidia CEO demos DirectStylus capacitive pen tech (Computex 2013),https://www.youtube.com/watch?v=NUQp4l_4a3E,2,1,throwaway000002,9/30/2015 16:47 +12110869,How to handle deployment of environment files like crontab,,2,2,BonoboIO,7/17/2016 17:21 +12383452,Get Ready for Apple Pay on the Web,https://stripe.com/blog/get-ready-for-apple-pay-on-the-web,4,1,dwaxe,8/29/2016 17:22 +10726832,What keeps modders modding?,http://www.eurogamer.net/articles/2015-12-13-what-keeps-modders-modding,46,20,jsnell,12/13/2015 16:47 +11427141,Tell HN: The truth about how startups are valued,,2,3,hoodoof,4/5/2016 1:30 +10824804,What Didnt Happen in 2015,http://avc.com/2015/12/what-didnt-happen/,1,1,bootload,1/2/2016 3:19 +11293443,"Ask HN: Welp, I seem to fail at marketing: Looking for feedback on iOS app pitch",,10,8,anon_app_guy,3/15/2016 22:15 +10789390,Darktable 2.0 released,http://www.darktable.org/2015/12/darktable-2-0-released/,248,44,jakobdabo,12/24/2015 19:51 +10236057,Wikimedia Maps Beta,https://maps.wikimedia.org,350,82,chippy,9/17/2015 21:05 +10747629,"A Mansion, a Shell Company and Resentment in Bel Air",http://www.nytimes.com/2015/12/15/us/shell-company-bel-air-mansion.html,1,1,brohee,12/16/2015 21:50 +11844214,We have always been at war with Amazon [audio],https://stratechery.com/2016/podcast-episode-081-we-have-always-been-at-war-with-amazon/,16,2,dwaxe,6/6/2016 2:08 +10376908,BDE 3.0 (Bloomberg's core C++ library): Open Source Release,https://github.com/bloomberg/bde/wiki/BDE-3.0:-Open-Source-Release,2,1,frutiger,10/12/2015 20:55 +11144233,WarGames and Cybersecuritys Debt to a Hollywood Hack,http://www.nytimes.com/2016/02/21/movies/wargames-and-cybersecuritys-debt-to-a-hollywood-hack.html,1,1,ingve,2/21/2016 12:23 +12230453,Show HN: Robots Reading the News The Podcast,,3,2,ajwinn,8/5/2016 6:38 +11771984,Office of Inspector General's Audit of the Office of the Secretary [pdf],https://cryptome.org/2016/05/state-oig-clinton-emails.pdf,4,1,nickysielicki,5/25/2016 18:29 +10618506,"Ask HN: If Evernote goes out of business, what happens to all our notes?",,20,24,alexgpark,11/24/2015 1:05 +10198159,Crab SQL for your filesystem,http://etia.co.uk,127,43,cogs,9/10/2015 14:19 +11867310,"Tesla CEO, Pentagon Chief to Meet as DODs Tech Outreach Flops",http://www.investors.com/news/musk-to-meet-with-dod-pentagons-silicon-valley-start-up-flops/?utm_campaign=trueAnthem:+Trending+Content&utm_content=57587a6e04d3011967e80b5d&utm_medium=trueAnthem&utm_source=facebook,5,1,ericcumbee,6/9/2016 3:07 +11800205,Ask HN: My Show HN post won't show. Could it be?,,6,5,keywonc,5/30/2016 8:14 +10440148,8TB in 2.5 SSD,http://akiba-pc.watch.impress.co.jp/docs/news/news/20151022_727035.html,3,3,fezz,10/23/2015 17:49 +11702025,Programming from the Ground Up [pdf],http://download-mirror.savannah.gnu.org/releases/pgubook/ProgrammingGroundUp-1-0-booksize.pdf,216,54,luu,5/15/2016 18:17 +10434390,Nine billion company names,http://www.economist.com/news/business/21676804-businesses-are-coming-up-ever-sillier-ways-identify-themselves-nine-billion-company,2,1,Turukawa,10/22/2015 19:22 +10795087,Extracting the Private Key from a TREZOR,https://jochen-hoenicke.de/trezor-power-analysis/,169,21,csomar,12/26/2015 20:07 +12260154,Best VPN for China 2016 China VPN Guide Mostsecurevpn.com,,2,1,sarah_adames,8/10/2016 7:55 +12334544,Fuchsia: Micro kernel written in C by Google,https://github.com/fuchsia-mirror/magenta,22,12,tnorgaard,8/22/2016 6:55 +12078945,Show HN: Speed: a golang client for the Performance Co-Pilot instrumentation API,https://github.com/performancecopilot/speed,3,1,suyash93,7/12/2016 13:57 +10942196,"Federal cops gets pulled over by TN cops, car illegally searched",http://www.newschannel5.com/news/newschannel-5-investigates/i-40-search-raises-new-policing-for-profit-questions,437,218,jseliger,1/20/2016 23:17 +10878886,Ask HN: Can anyone suggest a good RSS newsreader with a set of tech news feeds?,,3,3,hoodoof,1/11/2016 4:53 +10978322,"Farewell, Marvin Minsky",http://blog.stephenwolfram.com/2016/01/farewell-marvin-minsky-19272016/,182,34,lispython,1/27/2016 4:59 +12378410,Ask HN: Where Do You Live?,,4,4,rokhayakebe,8/28/2016 20:38 +11856759,"A thought experiment: Deface, a decentralized Facebook",https://stacksandfoundations.wordpress.com/2016/06/07/deface-a-decentralized-facebook/,11,11,rchodava,6/7/2016 18:49 +11907196,"Yes, Blockchain Is Going to Change the World",http://www.eshioji.co.uk/2016/06/yes-blockchain-is-going-to-change-world.html,4,1,arunc,6/15/2016 4:46 +10573967,Mark Zuckerberg's plan for the future of Facebook,http://www.fastcompany.com/3052885/mark-zuckerberg-facebook,103,112,technologizer,11/16/2015 12:17 +10364894,Why is 80 characters the 'standard' limit for code width?,http://programmers.stackexchange.com/questions/148677/why-is-80-characters-the-standard-limit-for-code-width,10,1,shagunsodhani,10/10/2015 8:25 +11359726,Ask HN: Do you flag HN posts in the absence of a downvote button?,,6,7,mangeletti,3/25/2016 12:52 +11300269,Companies Want to Replicate Your Dead Loved Ones with Robot Clones,http://motherboard.vice.com/en_uk/read/companies-want-to-replicate-your-dead-loved-ones-with-robot-clones,4,3,garbowza,3/16/2016 20:05 +12297648,"My ambivalent view on Vim superintelligence, contrasted with GNU Emacs",https://utcc.utoronto.ca/~cks/space/blog/unix/VimSmartsVsGNUEmacs,1,1,sabarasaba,8/16/2016 14:25 +12394275,How We Developed the Official Chatbot for SF's Outside Lands Music Festival,https://www.reddit.com/r/Chatbots/comments/50doo0/how_we_developed_the_official_chatbot_for_sfs/,6,1,pirosb3,8/30/2016 21:56 +12127148,Humans can see a single photon at a time,https://cosmosmagazine.com/biology/humans-can-detect-a-single-photon-at-a-time,20,2,azazqadir,7/20/2016 5:55 +12210299,"Show HN: Minimal, modern embedded V8 for Python",https://github.com/sqreen/PyMiniRacer,30,8,jbaviat,8/2/2016 14:44 +12364123,What I found wrong in Docker 1.12,http://www.linux-toys.com/?p=684,390,228,rusher81572,8/26/2016 3:44 +12323124,Climate change is water change,https://www.washingtonpost.com/news/energy-environment/wp/2016/08/19/climate-change-is-water-change-why-the-colorado-river-system-is-headed-for-trouble/?utm_campaign=buffer&utm_content=buffer66a9d&utm_medium=social&utm_source=twitter.com&utm_term=.560bb81cb01a,26,49,Mz,8/19/2016 20:13 +10632427,"Wi-Fi under threat from 100 times faster, more secure Li-Fi",https://thestack.com/iot/2015/11/26/wi-fi-under-threat-from-100-times-faster-more-secure-li-fi/?k=47477,7,8,MAshadowlocked,11/26/2015 11:06 +10204528,Scientists hope to use neutrino experiments to watch a black hole form,http://www.symmetrymagazine.org/article/september-2015/the-birth-of-a-black-hole-live,23,2,dnetesn,9/11/2015 16:14 +10824885,Modular implicits a system for ad-hoc polymorphism in OCaml [pdf],http://eptcs.web.cse.unsw.edu.au/paper.cgi?ML2014.2.pdf,63,1,bshanks,1/2/2016 3:41 +10757135,Best Buy offering iPhone 6s for $1 on contract,http://9to5mac.com/2015/12/17/best-buy-iphone-6s-1-dollar-deal/,1,1,MaysonL,12/18/2015 7:05 +11493595,Ask HN: Dealing with 'global' burnout,,1,10,throwawaynym,4/14/2016 0:58 +11355742,On the Impending Crypto Monoculture,http://www.metzdowd.com/pipermail/cryptography/2016-March/028824.html,322,124,tonyg,3/24/2016 19:35 +10861056,'This has never happened before.' Powerball jackpot swells to $700M,http://www.latimes.com/local/lanow/la-me-ln-powerball-jackpot-675-million-20160107-story.html,2,2,hugenerd,1/7/2016 21:48 +12504078,How to Send iOS 10 Notifications Using the Push Notifications API,https://blog.pusher.com/how-to-send-ios-10-notifications-using-the-push-notifications-api/?utm_source=hacker-news&utm_medium=website&utm_campaign=ios-10,1,1,j-q-j,9/15/2016 7:29 +11298524,Show HN: Search Instagram and use real life photos,https://lefty.io/search,12,3,thomasrep,3/16/2016 16:27 +11117366,The Little Book of Semaphores,http://greenteapress.com/semaphores/,3,1,pythonist,2/17/2016 12:30 +12470519,How to Become a C.E.O.? The Quickest Path Is a Winding One,http://www.nytimes.com/2016/09/11/upshot/how-to-become-a-ceo-the-quickest-path-is-a-winding-one.html?ref=business&_r=0,133,65,hvo,9/10/2016 19:18 +10888893,A new proof of Euclid's Theorem (2006),http://fermatslibrary.com/s/a-new-proof-of-euclids-theorem,56,31,bezierc,1/12/2016 17:43 +11369752,CE+T Power wins Google's $1M high density inverter challenge,http://googleresearch.blogspot.com/2016/02/and-winner-of-1-million-little-box.html,6,1,nl,3/27/2016 12:29 +12133766,"Master Plan, Part Deux",https://www.tesla.com/blog/master-plan-part-deux,1851,677,arturogarrido,7/21/2016 0:52 +11277320,Lipstick on a Pig a.k.a. the Raspberry Pi 3,http://nullr0ute.com/2016/03/lipstick-on-a-pig-aka-the-raspberry-pi-3/,74,65,dexterdog,3/13/2016 11:47 +10414299,Payment Systems in the US Are Bad,http://www.barelyusable.com/payments-systems-in-the-us-are-bad#.ViUnOa0SEVg.hackernews,26,14,wkoszek,10/19/2015 17:24 +11237485,Tracking Honeybees to Save Them,http://nautil.us/issue/3/in-transit/tracking-honeybees-to-save-them,1,1,prostoalex,3/7/2016 6:43 +12471850,Why Do Tourists Visit Ancient Ruins Everywhere Except the United States?,https://priceonomics.com/why-do-tourists-visit-ancient-ruins-everywhere/,292,274,ryan_j_naughton,9/11/2016 3:10 +11766602,The Tao of Programming,https://thinkdiffere.net/the-tao-of-programming-4dbe01178ed4,22,4,desantis,5/24/2016 23:54 +11249243,Binge-watching made easy,https://mypleasu.re,1,1,dheavy,3/8/2016 22:17 +12472501,The First VC Meeting (2009),https://bothsidesofthetable.com/the-first-vc-meeting-post-1-of-many-a74bc6823a18,53,19,gtabx,9/11/2016 8:24 +11888257,No Treason: The Constitution of No Authority (1870),https://readtext.org/misc/no-treason-constitution/,48,63,tux,6/12/2016 14:36 +11057736,New cross platform Git GUI client GitKraken,http://www.gitkraken.com/,6,3,dustinmoris,2/8/2016 12:36 +10303933,Visualizing the Shrinking Sea Ice,http://www.theatlantic.com/science/archive/2015/09/mapbox-arctic-sea-ice-minimum-over-time/407884/?single_page=true,82,33,uptown,9/30/2015 13:53 +11536010,The 12 MacBook: A Web Developers Perspective,https://optionalbits.com/the-12-macbook-a-web-developer-s-perspective-5cb6d2ffba15#.z37tc4hy0,4,6,nicoschuele,4/20/2016 17:19 +10573772,Facebook should offer solidarity flags for every country or none at all,http://www.thememo.com/2015/11/16/paris-terrorist-attack-french-flag-facebook-france-is/,25,7,alexwoodcreates,11/16/2015 11:07 +12525786,The Third Transportation Revolution,https://medium.com/@johnzimmer/the-third-transportation-revolution-27860f05fa91,6,2,myroon5,9/18/2016 15:59 +12202286,How to use your full brain when writing code,http://chrismm.com/blog/how-to-use-your-full-brain-when-writing-code/?,218,72,innerspirit,8/1/2016 13:44 +12388117,"Read some quotes, share ideas with strangers",https://fruit-fly.herokuapp.com/client/statusapp.html,3,1,zer0gravity,8/30/2016 7:18 +11492576,Is the Hum a scientific fact or a mass delusion?,https://newrepublic.com/article/132128/maddening-sound,1,1,Amorymeltzer,4/13/2016 21:53 +11963268,Containers vs. Config Management,https://blog.containership.io/containers-vs-config-management-e64cbb744a94,88,44,phildougherty,6/23/2016 18:26 +11326724,Why Epics Tim Sweeney blasted Microsoft in bid to keep Windows 10 open,http://venturebeat.com/2016/03/05/why-epics-tim-sweeney-blasted-micrsooft-in-bid-to-keep-windows-10-open/,6,1,bluesilver07,3/21/2016 7:52 +10817615,Ask HN: What charitable organizations do you donate to?,,2,3,donations-2015,12/31/2015 14:18 +10900658,Scientifically Backed Method for Drinking All Night Without Getting Drunk,http://www.popularmechanics.com/home/a18609/how-not-to-get-drunk/,2,1,chippy,1/14/2016 11:09 +11318008,Geoff Hinton on AlphaGo and the Future of AI,http://www.macleans.ca/society/science/the-meaning-of-alphago-the-ai-program-that-beat-a-go-champ/,77,16,tim_sw,3/19/2016 10:35 +10906998,"What a 45,000-year-old mammoth carcass can tell us about human history",http://www.csmonitor.com/Science/2016/0114/What-can-a-45-000-year-old-mammoth-carcass-tell-us-about-human-history,16,1,tokenadult,1/15/2016 3:36 +11986307,How landlords get kickbacks to lock tenants into big Internet providers,https://medium.com/backchannel/the-new-payola-deals-landlords-cut-with-internet-providers-cf60200aa9e9#.mps85yo24,327,152,steven,6/27/2016 14:25 +11903717,"Man finds butter estimated to be more than 2,000 years old in Irish bog",https://www.washingtonpost.com/news/morning-mix/wp/2016/06/14/man-finds-22-pound-chunk-of-butter-estimated-to-be-more-than-2000-years-old-in-irish-bog/,2,1,Mz,6/14/2016 17:35 +11721601,I went to the hospital to give birth and tested positive for meth,http://narrative.ly/i-went-to-the-hospital-to-give-birthand-tested-positive-for-meth/,162,244,pmcpinto,5/18/2016 13:07 +11231455,Could the ladybird plague of 1976 happen again?,http://www.bbc.co.uk/news/magazine-35603972,3,2,sjcsjc,3/5/2016 22:46 +10288062,For Their Eyes Only: The Commercialization of Digital Spying (2013) [pdf],https://citizenlab.org/storage/finfisher/final/fortheireyesonly.pdf,47,1,DanielRibeiro,9/27/2015 21:53 +10871330,Python integration for the Duktape Javascript interpreter,https://pypi.python.org/pypi/pyduktape,3,1,stefano,1/9/2016 14:26 +11180706,Ask HN: Someone is stealing things from my car. What security camera would help?,,3,3,hoodoof,2/26/2016 10:23 +11958050,Interactive Timeline of Twilio's Road to IPO,http://blog.datafox.com/an-interactive-timeline-of-twilios-road-to-ipo/,16,1,dorseymike,6/23/2016 0:18 +11406046,Ask HN: Is perl still relevant today?,,4,4,enitihas,4/1/2016 16:24 +12167253,"Open Your Eyes, The Talent Is Out There Edition",https://medium.com/code-like-a-girl/open-your-eyes-the-talent-is-out-there-edition-662001f850ce#.1gnarsn0y,1,2,DinahDavis,7/26/2016 17:25 +10568977,Women from Apples Early Days Recall Working with Steve Jobs,http://recode.net/2015/11/02/women-from-apples-early-days-recall-life-with-steve-jobs/,12,2,uxhacker,11/15/2015 8:54 +10872285,Paper Digital Camera,http://www.photoxels.com/paper-digital-camera/,18,2,jacquesm,1/9/2016 18:35 +11072370,How to Write Telegrams Properly (1928),http://www.telegraph-office.com/pages/telegram.html,56,19,radarsat1,2/10/2016 12:52 +10299257,Andreessen Horowitz has invested in Medium,http://www.bhorowitz.com/mediumanda16z,3,1,rezist808,9/29/2015 20:11 +11009924,The Prickly Genius of Jonathan Blow,http://www.newyorker.com/tech/elements/the-prickly-genius-of-jonathan-blow,57,19,prismatic,2/1/2016 5:18 +11550913,Edward Snowden: The Internet Is Broken,http://www.popsci.com/edward-snowden-internet-is-broken,350,168,doctorshady,4/22/2016 17:39 +12325655,ShadowBrokers Bitcoin Transactions: Now Theres Some Taint for You,https://krypt3ia.wordpress.com/2016/08/19/shadowbrokers-bitcoin-transactions-now-theres-some-taint-for-you/,42,7,sjreese,8/20/2016 7:54 +11957086,Ask HN: Server Management Software,,1,3,FlopV,6/22/2016 21:15 +10603330,Shopify for Drupal Ecommerce on Drupal doesn't have to be difficult,http://www.shopifyfordrupal.com,4,1,donutdan4114,11/20/2015 19:38 +10381833,Ask HN: Experience with Windows 10 upgrade,,4,20,codegeek,10/13/2015 17:07 +11579334,Dont Blame Silicon Valley for Theranos,http://www.nytimes.com/2016/04/27/opinion/dont-blame-silicon-valley-for-theranos.html?action=click&pgtype=Homepage&version=Moth-Visible&moduleDetail=inside-nyt-region-1&module=inside-nyt-region®ion=inside-nyt-region&WT.nav=inside-nyt-region&_r=0,106,134,hvo,4/27/2016 11:08 +11216055,Ask HN: Creative ideas to activate communities?,,3,1,sameernoorani,3/3/2016 10:40 +12083598,A groundbreaking new series about apps and their creators,https://www.planetoftheapps.com,2,2,chrisamanse,7/13/2016 2:38 +10988246,What Teens are Like in 2016,http://www.businessinsider.com/what-teens-are-like-in-2016-2016-1,1,1,replicatorblog,1/28/2016 14:18 +12195441,Learnable Programming by Bret Victor,http://worrydream.com/#!/LearnableProgramming,2,1,avindroth,7/31/2016 2:21 +10565880,"Microsoft Invented Google Earth in the 90s, Then Blew It",http://motherboard.vice.com/read/microsofts-terraserver-was-google-earth-before-there-was-google-earth,123,80,jimsojim,11/14/2015 15:03 +10541465,Why I Dropped Everything and Started Teaching Kendrick Lamar's New Album,https://bemoons.wordpress.com/2015/03/27/why-i-dropped-everything-and-started-teaching-kendrick-lamars-new-album/,3,1,enginnr,11/10/2015 18:56 +12192411,How the food lobby fights sugar regulation in the EU [pdf],http://corporateeurope.org/sites/default/files/a_spoonful_of_sugar_final.pdf,143,168,Jan_jw,7/30/2016 10:25 +10586791,Ergoemacs-mode: ergonomic keybindings in Emacs to reduce RSI,http://ergoemacs.github.io/,7,5,lelf,11/18/2015 9:32 +10678767,Amazon Buys Thousands of Its Own Truck Trailers,http://recode.net/2015/12/04/amazon-buys-thousands-of-its-own-trucks-as-its-transportation-ambitions-grow/,63,64,anigbrowl,12/4/2015 20:05 +10998032,When will self-Driving cars be on the road?,https://www.quora.com/When-will-self-driving-cars-be-on-roads/answer/Andrew-Ng?srid=cgo&share=1,3,1,salmonet,1/29/2016 19:59 +12373979,MacOS Sierra Code Confirms Thunderbolt 3 and 10Gb/s USB 3.1 in Future Macs,http://www.macrumors.com/2016/08/24/macos-sierra-code-thunderbolt-3/,1,1,lelf,8/27/2016 20:14 +10327989,Corporate Social Responsibility has become a racket,http://www.telegraph.co.uk/finance/newsbysector/industry/11896546/Corporate-Social-Responsibility-has-become-a-racket-and-a-dangerous-one.html,32,15,danielam,10/4/2015 16:42 +11416746,Ask HN: How do you review code?,,357,140,skewart,4/3/2016 16:57 +10382147,Annotated version of the paper that led to the 2015 Nobel Prize in Physics,http://fermatslibrary.com/s/oscillation-of-atmospheric-neutrinos,55,2,cronaldo,10/13/2015 17:51 +11282812,Ask HN: Engineering Degree: Mathematics and Statistics vs Software?,,4,5,noobie,3/14/2016 13:42 +11986789,The Real Product Market Fit,http://themacro.com/articles/2016/06/the-real-product-market-fit/,154,63,craigcannon,6/27/2016 15:29 +12012184,The Fining of Black America,http://priceonomics.com/the-fining-of-black-america/,234,243,ryan_j_naughton,6/30/2016 22:04 +12004743,A Deep Dive into iOS 10 Messages Extensions,http://twocentstudios.com/2016/06/24/a-deep-dive-into-ios-messages-extensions/,13,1,twocentstudios,6/29/2016 20:55 +11134986,No comic sans in httpd status pages,https://marc.info/?l=openbsd-tech&m=145590012904434&w=2,182,87,elchief,2/19/2016 17:38 +10323639,"The Zappos holacracy, Edward Tuftes sparklines, and an 11×17 printer",http://blogs.law.harvard.edu/philg/2015/10/01/the-zappos-holacracy-edward-tuftes-sparklines-and-an-11x17-printer/,31,25,jessaustin,10/3/2015 12:41 +12228082,NEED Your FEADBACK,,1,2,yaronch,8/4/2016 20:07 +11323362,"Pwn2Own 2016: Chrome, Edge, and Safari hacked, $460k awarded",http://venturebeat.com/2016/03/18/pwn2own-2016-chrome-edge-and-safari-hacked-460k-awarded-in-total/,55,47,jjuhl,3/20/2016 15:53 +11647484,80s Apple Beige Making a Comeback,http://www.wsj.com/articles/the-beige-of-apples-80s-computers-makes-a-comeback-1462383304?mod=ST1,2,1,jboydyhacker,5/6/2016 23:32 +10545998,Applying the Free Software Criteria,https://www.gnu.org/philosophy/applying-free-sw-criteria.html,35,16,chei0aiV,11/11/2015 11:08 +11523151,Google CDN Beta is already one of the fastest CDNs,http://blog.speedchecker.xyz/2016/04/18/google-cdn-beta-is-here-and-it-brings-more-than-meets-the-eye/,351,99,forcer,4/18/2016 21:04 +10346107,Show HN: VclGenie a JSON to VCL Generator Written in Scala,https://github.com/iheartradio/vclgenie/,2,1,dberg,10/7/2015 14:14 +10819071,Should we solar panel the Sahara desert?,http://www.bbc.com/news/science-environment-34987467,48,60,e15ctr0n,12/31/2015 19:04 +10243217,"Apple, Google, and Microsoft are all solving the same problems",http://www.theverge.com/2015/9/18/9351197/apple-google-microsoft-tech-innovation-uniformity,71,52,jonbaer,9/19/2015 3:48 +10622732,Here's hoping Mark Zuckerberg will start the overdue paternity-leave revolution,http://venturebeat.com/2015/11/24/heres-hoping-facebook-ceo-mark-zuckerberg-will-start-the-overdue-paternity-leave-revolution/,3,1,t23,11/24/2015 18:58 +11382797,Introducing Canvas - Notes for teams of nerds,https://blog.usecanvas.com/introducing-canvas,7,3,craigkerstiens,3/29/2016 16:48 +12280520,SuchFlex Public Beta now accepting new users,https://www.suchflex.com,1,1,ivanzone,8/13/2016 6:29 +10247688,N3uro: A marketplace for brainwaves of people thinking about things,http://www.n3uro.com,23,4,trentmc,9/20/2015 14:44 +10518201,Morocco moves to ban plastic bags,http://www.huffingtonpost.com/entry/morocco-ban-plastic-bags_563934cde4b0307f2cab21a8,13,5,pm24601,11/6/2015 7:19 +11244630,Still surprised by Trump? Then you're not reading Scott Adams,http://abovethelaw.com/2016/03/still-surprised-by-trump-then-youre-not-reading-scott-adams/,10,6,zabramow,3/8/2016 11:07 +10765143,Moving a team from Scala to Golang,http://jimplush.com/talk/2015/12/19/moving-a-team-from-scala-to-golang/,39,11,alexatkeplar,12/19/2015 22:32 +10436127,Blood biomarker predicts death from serious infection,http://www.abc.net.au/news/2015-10-23/blood-biomarker-predicts-death-from-infection/6872948,4,1,bootload,10/23/2015 0:33 +12462805,Google to buy cloud software company Apigee for $625M,http://www.reuters.com/article/uk-apigee-m-a-alphabet-idUSKCN11E1SG,2,1,jarnix,9/9/2016 14:58 +11159192,OpenWhisk cloud-first distributed event-based programming service from IBM,https://github.com/openwhisk/openwhisk,4,1,paukiatwee,2/23/2016 14:53 +11844196,"If Corporations Are People, They Should Act Like It",http://www.theatlantic.com/politics/archive/2015/02/if-corporations-are-people-they-should-act-like-it/385034/?single_page=true,5,3,devin,6/6/2016 2:02 +10847886,What If You Only Invested at Market Peaks?,http://awealthofcommonsense.com/worlds-worst-market-timer/,11,8,networked,1/6/2016 2:00 +10237345,What Americans know and don't know about science,http://www.pewinternet.org/2015/09/10/what-the-public-knows-and-does-not-know-about-science/,23,24,shawndumas,9/18/2015 3:22 +11768064,comiXology Unlimited,https://m.comixology.com/unlimited,1,1,rlalwani,5/25/2016 6:47 +12413544,What to do with your dead apps?,,2,1,andrew_wc_brown,9/2/2016 15:12 +10813328,Twitter still has a major problem with employee diversity,http://www.theverge.com/2015/12/30/10688126/twitter-diversity-jeffrey-siminoff,14,5,someear,12/30/2015 18:05 +11058078,Vote for your favorite math video created by middle school students,http://videochallenge.mathcounts.org/,1,1,jamessun,2/8/2016 13:59 +11936169,Alicia Keys is done playing nice. Your phone is getting locked up now,https://www.washingtonpost.com/entertainment/alicia-keys-is-done-playing-nice-your-phone-is-getting-locked-up-at-her-shows-now/2016/06/16/366c15aa-33af-11e6-95c0-2a6873031302_story.html,98,96,wallflower,6/20/2016 5:09 +12469941,Additional Notes on Drawing Dynamic Visualizations (2013),http://worrydream.com/DrawingDynamicVisualizationsTalkAddendum/,73,4,ryanmaclean,9/10/2016 16:44 +11924673,Christos Newest Project: Walking on Water,http://www.nytimes.com/2016/06/17/arts/design/christos-newest-project-walking-on-water.html,67,16,hampelm,6/17/2016 18:43 +11550380,Glot.io: Open Source pastebin with runnable snippets and API,https://glot.io/,245,59,phantom_oracle,4/22/2016 16:33 +11841957,The 'Unofficial' ADHD Test for Adults,https://www.youtube.com/watch?v=iozAFIr3BEw,2,2,kristiandupont,6/5/2016 17:18 +11722353,OpenAI Gym,https://openai.com/blog/openai-gym-beta/,76,13,varunagrawal,5/18/2016 14:49 +11571322,American Scientist Understands Nothing about the Traveling Salesman Problem,http://mat.tepper.cmu.edu/blog/?p=8376,128,97,merraksh,4/26/2016 12:43 +10305900,Appcamp.io,http://appcamp.io/,6,1,andrewmcgivery,9/30/2015 18:11 +11611005,Ask HN: Where's Who's Hiring for May 2016?,,2,3,martinshen,5/2/2016 13:12 +11427610,The Maddest Hacker How to Rob an Industry Venture Capitalist [song],https://soundcloud.com/marak/the-maddest-hacker-how-to-rob-an-industry-venture-capitalist,5,1,_Marak_,4/5/2016 3:40 +12118822,"Brexit could cut London house prices by more than 30%, says bank",https://www.theguardian.com/money/2016/jul/18/brexit-could-cut-london-house-prices-by-more-than-30-says-bank,15,4,ryan_j_naughton,7/19/2016 0:39 +11229037,Sci-Hub is a scholarly litmus test,http://svpow.com/2016/03/04/sci-hub-is-a-scholarly-litmus-test/,27,1,nkurz,3/5/2016 10:06 +12545014,Ask HN: Settle for less salary or change to make more in prime years,,19,30,throwaway007007,9/21/2016 2:36 +10417206,Let's Encrypt is Trusted,https://letsencrypt.org/2015/10/19/lets-encrypt-is-trusted.html,1260,311,coffeecheque,10/20/2015 3:14 +12252520,Design Better Data Tables,https://medium.com/mission-log/design-better-data-tables-430a30a00d8c#.exxlu3eah,7,2,sebg,8/9/2016 3:57 +10368057,Show HN: AppStarter Online iOS Development,https://appstarter.io/,13,2,appstarter,10/11/2015 4:29 +11098897,When the Hospital Fires the Bullet,http://www.nytimes.com/2016/02/14/us/hospital-guns-mental-health.html,2,1,baus,2/14/2016 16:38 +11337449,The First Ever Smartphone 3D Printer,https://www.kickstarter.com/projects/olo3d/olo-the-first-ever-smartphone-3d-printer,3,1,artf,3/22/2016 15:55 +10249032,"Software Is Smart Enough for SAT, but Still Far from Intelligent",http://www.nytimes.com/2015/09/21/technology/personaltech/software-is-smart-enough-for-sat-but-still-far-from-intelligent.html,17,6,aburan28,9/20/2015 20:46 +11288827,"Airbnb for physical goods, lease your items to others",https://www.daylui.com/,4,4,ValQD,3/15/2016 11:29 +10326289,Show HN: Tech2Pocket find better tech articles with Pocket,http://productchaseapp.herokuapp.com/tech2pocket,9,5,cqcn1991,10/4/2015 3:17 +11022028,Barilla pasta boss's anti-gay comments spark boycott call,http://www.independent.co.uk/news/world/europe/i-would-never-use-homosexual-couples-in-my-adverts-barilla-pasta-bosss-anti-gay-comments-spark-8841902.html,2,3,seneka,2/2/2016 19:57 +10445145,How I hacked my apartment building,http://josecasanova.com/blog/how-i-hacked-my-apartment-building/,1,3,jcsnv,10/24/2015 22:37 +11623053,Jet-Powered Hoverboard Sets New World Record,http://www.livescience.com/54622-jet-powered-hoverboard-sets-world-record.html,1,1,rhschan,5/3/2016 18:27 +11243859,"A Theorized Conversation Between AIs (from ""The Terminal Man"", Chrichton, 1972)",http://blog.brokenfunction.com/wp-content/uploads/2008/03/georgevsmartha.html,3,1,DrScump,3/8/2016 6:40 +10638184,2015 AIIDE Starcraft AI Competition Report and Results,http://webdocs.cs.ualberta.ca/~cdavid/starcraftaicomp/report2015.shtml,156,39,2Pacalypse-,11/27/2015 17:54 +10433234,Ask HN: Is it illegal to use another site mp4 link in my app?,,1,2,lesvizit,10/22/2015 16:46 +12136508,Corning's new Gorilla Glass 5 is meant to survive epic smartphone drops,http://www.theverge.com/2016/7/20/12236642/corning-announces-new-gorilla-glass-5-smartphone-drops-cracked-screen,3,1,phr4ts,7/21/2016 12:59 +11989277,Google division aims to fix public transit in US by shifting control to Google,https://www.theguardian.com/technology/2016/jun/27/google-flow-sidewalk-labs-columbus-ohio-parking-transit,9,2,Jerry2,6/27/2016 20:37 +11026431,How we've analyzed our homepage without spending a single dollar,https://medium.com/p/how-we-ve-analyzed-our-homepage-without-spending-a-single-dollar-case-study-c1defae743c6,59,1,meliberki,2/3/2016 13:57 +10258281,Printing with Love: The Art of Letterpress Printing,http://craftsmanship.net/the-art-of-letterpress-printing/,28,8,hownottowrite,9/22/2015 13:08 +11786340,Teaching robots to feel pain to protect themselves,http://techxplore.com/news/2016-05-robots-pain.html,3,1,dnetesn,5/27/2016 14:42 +11099112,What should I learn next as a programmer?,https://medium.com/@_cmdv_/what-should-i-learn-next-as-a-programmer-477728c5c3c4,46,48,ingve,2/14/2016 17:40 +11047045,Bruce Sterling on AI in 1995,http://research.microsoft.com/en-us/um/redmond/events/lcc/lcc95/sterling.htm,18,1,exolymph,2/6/2016 8:52 +11118320,Auschwitz Museum launches add-on to correct Polish death camps mistake,https://correctmistakes.auschwitz.org/,1,1,thenlater,2/17/2016 15:13 +11188141,Medium updates Terms of Service to enable advertising,https://medium.com/@yungrama/advertising-coming-soon-to-your-content-on-medium-319d24d63e1#.pm6szdpva,4,2,yungrama,2/27/2016 19:43 +12558053,The GitHub Load Balancer,http://githubengineering.com/introducing-glb/,431,121,logicalstack,9/22/2016 16:37 +11685626,How Austin Beat Uber,http://www.nytimes.com/2016/05/12/opinion/how-austin-beat-uber.html,4,3,gwintrob,5/12/2016 18:26 +11413388,The Future of Game Development on Windows [video],https://channel9.msdn.com/Events/Build/2016/B882,52,29,pjmlp,4/2/2016 20:53 +12191719,GIMP 2.9.4 and our vision for the future,http://girinstud.io/news/2016/07/gimp-2-9-4-and-our-vision-for-gimp-future/,166,93,ashitlerferad,7/30/2016 5:05 +11546896,Uber strikes class action settlement to keep drivers independent contractors,http://techcrunch.com/2016/04/21/uber-strikes-100m-class-action-settlement-to-keep-drivers-independent-contractors/,5,1,kposehn,4/22/2016 3:32 +11672414,"I know how to program, but I don't know what to program",http://www.devdungeon.com/content/i-know-how-program-i-dont-know-what-program,5,2,nanodano,5/11/2016 3:10 +11803670,SQLite: The art of keep it simple,http://www.codergears.com/Blog/?p=2392,19,1,cppdesign,5/30/2016 22:54 +10490354,Decision Fatigue (2011),http://www.nytimes.com/2011/08/21/magazine/do-you-suffer-from-decision-fatigue.html,47,4,mappu,11/2/2015 6:26 +10886505,A web service demo that uses async IO while possible,https://github.com/wb14123/web_benchmark,2,2,wb14123,1/12/2016 10:17 +11509807,Lightpack Ambilight for any TV or monitor,http://lightpack.tv/,3,1,Kovah,4/16/2016 8:19 +11704412,Ghost in the Shell and anime's troubled history with representation,http://www.theverge.com/2016/5/9/11612530/ghost-in-the-shell-anime-asian-representation-hollywood,24,12,kposehn,5/16/2016 5:28 +10582276,"Microsoft, Once Infested with Security Flaws, Does an About-Face",http://www.nytimes.com/2015/11/18/technology/microsoft-once-infested-with-security-flaws-does-an-about-face.html,158,176,hackuser,11/17/2015 16:48 +11987576,A Course in Machine Learning,http://ciml.info/,4,1,0xmohit,6/27/2016 17:08 +11453294,Top 10 Parse Migration Guides Comparison,http://parse-hosting.oursky.com/blog/2016-04-06-top-10-parse-migration-guides,13,1,bradley_long,4/8/2016 8:15 +10929908,Scary questions in Ukraine energy grid hack,http://money.cnn.com/2016/01/18/technology/ukraine-hack-russia/index.html,4,1,emartinelli,1/19/2016 11:01 +11453737,HIV overcomes CRISPR gene-editing attack,http://www.nature.com/news/hiv-overcomes-crispr-gene-editing-attack-1.19712,152,30,aroch,4/8/2016 10:37 +10572781,"Hacking Smartwatches The TomTom Runner, Part 1",http://grangeia.io/2015/11/09/hacking-tomtom-runner-pt1/,31,2,bemmu,11/16/2015 5:26 +11947032,Fedora 24 was released,https://fedoramagazine.org/fedora-24-released/,63,49,alanfranzoni,6/21/2016 16:38 +11142112,Team Building: Finding developers,https://blog.cocoon.life/startups/developer-recruitment/,2,2,chippy,2/20/2016 21:52 +11889827,Ask HN: What is a good text-based role-playing game to get into as a newbie?,,2,2,hellofunk,6/12/2016 19:28 +10819348,NASA and Future Explorers What Does It Take to Become an Astronaut? (Updated),http://stemmatch.net/blog/2015/december/14/so-you-want-to-become-an-astronaut-what-does-it-take/,3,5,Oxydepth,12/31/2015 20:00 +11779453,Twilio S-1,https://www.sec.gov/Archives/edgar/data/1447669/000104746916013448/a2227414zs-1.htm,375,211,kressaty,5/26/2016 16:51 +11565056,Storage Pod 6.0: Building a 60 Drive 480TB Storage Server,https://www.backblaze.com/blog/open-source-data-storage-server/,181,96,geerlingguy,4/25/2016 15:54 +10842201,Simple Rules for Healthy Eating,http://www.nytimes.com/2015/04/21/upshot/simple-rules-for-healthy-eating.html,8,1,Tomte,1/5/2016 9:11 +10365739,A Hacker News for Coins,http://coinspotting.com,4,2,coinspotting,10/10/2015 15:16 +10446133,40 important design lessons from the past,https://designschool.canva.com/blog/famous-graphic-designers/,3,1,workintransit,10/25/2015 6:00 +11533639,Isomorphic React Personal Website,http://alexdbuchanan.com,6,2,buchanaf,4/20/2016 11:41 +10481121,"After guilty plea, judge confused why prosecutors still want iPhone unlocked",http://arstechnica.com/tech-policy/2015/10/feds-apple-must-still-unlock-iphone-5s-even-after-defendant-pled-guilty/,149,44,Deinos,10/30/2015 23:15 +10783488,Ask HN: How to create a remote development environment?,,5,5,MuEta,12/23/2015 14:40 +12161628,Agile to Waterfall: Demystifying Programming Methodologies,https://blog.newrelic.com/2016/07/25/programming-methodology-primer/,2,1,ohjeez,7/25/2016 21:08 +10286085,What More Than 1B Followers of Islam Believes,http://www.atheoryofus.net/islam-statistics,4,1,rottyguy,9/27/2015 10:30 +10880839,"Functional Programming, Abstraction, and Naming Things",http://www.stephendiehl.com/posts/abstraction.html,92,19,tel,1/11/2016 14:17 +11850569,Overengineering risks on the path to production,http://blog.contino.io/blog/overengineering-risks-on-the-path-to-production,3,2,benjaminwootton,6/6/2016 21:30 +12374413,$6.7M Available for Tech That Turns Captured Carbon into Useful Products,https://www.environmentalleader.com/2016/08/26/6-7-million-available-for-tech-that-turns-captured-carbon-into-useful-products/,23,12,endswapper,8/27/2016 22:18 +12069579,Show HN: Texture Packer for Game Development Using MaxRects Algorithm,https://github.com/huxingyi/squeezer,3,1,huxingyi,7/11/2016 8:12 +12111691,"Show HN: MicroServices from Dev to Prod Using Docker, Docker Compose and Swarm",https://medium.com/p/microservices-from-development-to-production-using-docker-docker-compose-docker-swarm-3cf37f97706b,2,4,eon01,7/17/2016 20:33 +10615314,MyCPU Homebrew Computer from Discrete Logic Gates,http://mycpu.thtec.org/www-mycpu-eu/index1.htm,69,14,bane,11/23/2015 16:05 +10206765,Scare Headlines Exaggerated the U.S. Crime Wave,http://fivethirtyeight.com/features/scare-headlines-exaggerated-the-u-s-crime-wave/,11,2,ryan_j_naughton,9/12/2015 0:02 +10970609,CIA declassifies hundreds of UFO documents,https://www.cia.gov/news-information/blog/2016/take-a-peek-into-our-x-files.html,420,212,XzetaU8,1/25/2016 22:48 +12329000,Eye test may detect Parkinsons before symptoms appear,http://sciencebulletin.org/archives/4448.html,66,7,renafowler,8/21/2016 1:04 +10257584,Checkpoint and restore Docker containers with CRIU,http://blog.circleci.com/checkpoint-and-restore-docker-container-with-criu/,36,11,kimh,9/22/2015 9:44 +11330821,Node.js on Google App Engine Goes Beta,https://cloudplatform.googleblog.com/2016/03/Node.js-on-Google-App-Engine-goes-beta.html,371,103,boulos,3/21/2016 19:03 +12052791,Kill All Feeds,https://blog.dcpos.ch/no-feeds,10,3,feross,7/7/2016 23:47 +11136022,We Are Building Educative to Advance Interactive Learning in Computer Science,https://www.educative.io/collection/page/6630002/190001/200001,17,2,fahimulhaq,2/19/2016 19:41 +11446120,Apply HN: 128Highstreet A Trip Planning App,,2,8,Sreyanth,4/7/2016 10:11 +11782088,"YC startup Coinbase has been hacked? Unable to withdraw $25,000",,38,16,coinbaseuser,5/26/2016 22:11 +10860819,Inside Forbes: From 'Original Sin' to Ad Blockers And What the Future Holds,http://www.forbes.com/sites/lewisdvorkin/2016/01/05/inside-forbes-from-original-sin-to-ad-blockers-and-what-the-future-holds/,1,1,bpierre,1/7/2016 21:14 +10663891,Google 'stores children's data' civil liberties group,http://www.bbc.co.uk/news/technology-34983245,3,1,SimplyUseless,12/2/2015 16:30 +11913629,GitHub Security Update: Reused Password Attack,https://github.com/blog/2190-github-security-update-reused-password-attack,250,135,ejcx,6/16/2016 2:58 +11946395,I do not use a debugger,http://lemire.me/blog/2016/06/21/i-do-not-use-a-debugger/,41,25,another,6/21/2016 15:29 +11214209,Implanted RFID tracker found in sex trafficking victim,http://www.marketplace.org/2016/03/02/health-care/health-care-takes-fight-against-trafficking,6,1,zmanian,3/3/2016 0:27 +11223769,Ask HN: Recommend 3 books that had an impact on you,,1,1,have_faith,3/4/2016 14:13 +12312759,Ask HN: How do you come up with progressive project ideas?,,25,17,kanso,8/18/2016 14:33 +11218999,"Uber, Ola launch rival motorbike-hailing services in Bengaluru",http://in.reuters.com/article/uber-ola-bike-taxi-idINKCN0W50I1,1,1,dsr12,3/3/2016 18:52 +10704115,Why Go Is Not Good (2014),http://yager.io/programming/go.html,413,453,kushti,12/9/2015 15:19 +12184895,Alphabet Loses $859M on 'Moonshots' in 2Q 2016,http://www.nytimes.com/aponline/2016/07/28/business/ap-us-alphabet-moonshots.html,189,189,zeddie,7/29/2016 3:41 +11664169,How to Not Be the Engineer Running 3.5GB Docker Images,https://www.datawire.io/not-engineer-running-3-5gb-docker-images/,4,1,pkaeding,5/9/2016 23:39 +10409239,Super Resolution from a Single Image (2009),http://www.wisdom.weizmann.ac.il/~vision/SingleImageSR.html,146,42,bsilvereagle,10/18/2015 18:46 +11225917,Show HN: Find PCB Footprints and Schematic Symbols Within EAGLE,http://blog.snapeda.com/2016/03/03/announcing-the-snapeda-plugin-for-eagle-alpha/,12,4,natashabaker,3/4/2016 18:46 +11830446,Clickbait and Traffic Laundering: How Ad Tech Is Destroying the Web,https://kalkis-research.com/clickbait-and-traffic-laundering-how-ad-tech-is-destroying-the-web,174,137,johnks,6/3/2016 14:22 +12427135,The writing interest paradox,http://www.naughtycomputer.uk/writing_interest_paradox.html,64,24,xylon,9/4/2016 22:58 +10816484,"Ask HN: What became possible or practical in 2015, which wasn't in 2014?",,12,1,jodrellblank,12/31/2015 6:14 +12270366,Ask HN: Job with Travel,,2,1,aaronhoffman,8/11/2016 17:59 +12262786,Python 3 on Google App Engine flexible environment now in beta,https://cloudplatform.googleblog.com/2016/08/python-3-on-Google-App-Engine-flexible-environment-now-in-beta.html,105,47,arouzrokh,8/10/2016 16:09 +12116577,Smallest Hard Disk to Date Writes Information Atom by Atom,http://www.sciencenewsline.com/news/2016071815570027.html,3,2,scriptdude,7/18/2016 17:27 +10916846,A nanophotonic comeback for incandescent bulbs?,http://news.mit.edu/2016/nanophotonic-incandescent-light-bulbs-0111,62,42,skybrian,1/16/2016 21:10 +11004344,Ask HN: Any advice for an older engineer stuck in his career?,,6,5,whattodo123,1/30/2016 23:37 +12122512,Best PC Laptop for Development (July 2016)?,,2,2,baptou12,7/19/2016 16:03 +11042998,Confessions of a Serial Conference Attender,https://www.linkedin.com/pulse/confessions-serial-conference-attender-charu-jangid?trk=hp-feed-article-title-comment,2,1,zanewill9,2/5/2016 17:32 +10199401,Reducing workplace burnout: the benefits of exercise,http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4393815/,258,175,mmariani,9/10/2015 17:36 +11914167,"Chrome 51 Arrives on Android, Officially Kills Off Merge Tabs and Apps",http://www.droid-life.com/2016/06/08/chrome-51-arrives-officially-kills-off-merge-tabs-apps/,34,42,ikeboy,6/16/2016 5:19 +12453714,Fullstack Developer Is an Outdated Term,http://blog.honeypot.io/fullstack-developer/,1,3,jonbaer,9/8/2016 15:10 +10803554,Show HN: TechCrunch Adv Filter and News Alerts (feedback Welcome),http://crunchtech.co/,1,1,willkim,12/28/2015 21:40 +10403958,Do you have any writing advice?,https://medium.com/@visakanv/do-you-have-any-writing-advice-60b9220eb47f,1,2,visakanv,10/17/2015 10:16 +10712476,Ask HN: Feeling stuck Looking for suggestions,,4,5,throwaway5023,12/10/2015 18:49 +10879623,Kakao acquires top Korean music streaming service for $1.5B,https://www.techinasia.com/kakao-korea-melon-music-streaming-acquisition,16,1,williswee,1/11/2016 8:44 +10667994,Ask HN: Should I write a lean business plan for a social startup?,,4,2,tallerholler,12/3/2015 5:50 +10952724,Sampulator.com make and record beats with your keyboard,http://sampulator.com/,98,40,brianzelip,1/22/2016 14:05 +11134748,Ask HN: How do I evaluate different opportunities?,,5,8,abustamam,2/19/2016 17:11 +12326098,How Long Should I Make My API Key?,https://blog.learnphoenix.io/how-long-should-i-make-my-api-key-833ebf2dc26f,59,34,okket,8/20/2016 11:34 +11051973,Differential privacy for dummies,https://github.com/frankmcsherry/blog/blob/master/posts/2016-02-03.md,32,6,mrry,2/7/2016 6:52 +11894393,Four months with Haskell,https://lexi-lambda.github.io/blog/2016/06/12/four-months-with-haskell/,249,117,rwosync,6/13/2016 15:03 +11352274,macOS: Its time to take the next step,https://medium.com/@ajambrosino/macos-it-s-time-to-take-the-next-step-ee7871ccd3c7#.yx6d97u3j,3,1,epaga,3/24/2016 12:42 +12538949,Edx launches new MicroMasters programs,http://blog.edx.org/micromasters?track=blog,5,1,marketanarchist,9/20/2016 12:29 +10849739,Google Penguin Google started rolling out latest Penguin algorithm,https://www.accuranker.com/blog/possible-google-algorithm-update-today-in-the-states/,4,1,ysekand,1/6/2016 10:40 +10906253,The Happiness Code,http://www.nytimes.com/2016/01/17/magazine/the-happiness-code.html?_r=2,1,3,ceocoder,1/15/2016 0:58 +11844151,Matt Damon's Commencement Address at MIT,http://news.mit.edu/2016/matt-damon-commencement-address-0603,50,53,Gabriel-Lewis,6/6/2016 1:44 +10562377,The Exotic Taste of Rice,http://recipes.hypotheses.org/6948,50,5,benbreen,11/13/2015 21:03 +12117140,IronPython 3 (python for .net) development restarted,https://www.reddit.com/r/Python/comments/4tbhwr/ironpython_development_restarting/,3,1,tanlermin,7/18/2016 18:34 +10843048,The 12 Days of Git: Learn Git Over the Holidays,http://vanwilson.info/2015/12/the-12-days-of-git-learn-git-over-the-holidays/,8,3,vanwilson,1/5/2016 13:14 +11526150,Interesting Thing Happened on Way to Beta: My Startup Erased All My Old Debts,https://medium.com/@sarahnadav/an-interesting-thing-happened-on-the-way-to-our-beta-12ce7ed4e41f#.noy9jsog6,2,1,sarahnadav,4/19/2016 11:19 +11529810,Ask HN: Are There SEO Secrets That Work or Is It Just Common Sense?,,1,2,kiddz,4/19/2016 20:04 +12202321,Show HN: Horizon DevTools - A better dev experience for HorizonJS apps,https://github.com/rrdelaney/horizon-devtools,6,1,rrdelaney,8/1/2016 13:49 +12305776,TiVo Series 1 Lifetime Service lasted about 16 years,https://twitter.com/davezatz/status/765629650617982976/photo/1,2,3,theandrewbailey,8/17/2016 16:15 +11104928,Ask HN: Open Source project ideas?,,6,6,codegeek,2/15/2016 18:16 +12075558,Google used this woman's name on all its templates she gets messages daily,http://nordic.businessinsider.com/casey-baumer-google-docs-templates-2016-7,8,2,CPAhem,7/11/2016 23:20 +11994953,An Indispensable Guide to Early American Murder,http://www.newyorker.com/books/page-turner/the-indispensable-guide-to-early-american-murder,26,2,lermontov,6/28/2016 16:15 +10921411,Speed reading promises are too good to be true,http://www.sciencedaily.com/releases/2016/01/160114163035.htm,69,42,apsec112,1/17/2016 22:32 +11387248,Pompeiis Graffiti and the Ancient Origins of Social Media,http://www.theatlantic.com/technology/archive/2016/03/adrienne-was-here/475719/?single_page=true,17,7,jonnycombust,3/30/2016 5:59 +12474922,Blinkenlights Berlin Documentation [video],https://vimeo.com/6175054,6,2,okket,9/11/2016 18:46 +10546797,Ask HN: How do you find time to learn new things?,,23,22,vijayr,11/11/2015 14:29 +11313633,Google tries to hire our app,,7,10,phwizard,3/18/2016 18:06 +10694392,Ask HN: Your advise wanted for how to get into programming,,2,7,dbob,12/8/2015 2:30 +12505350,"Its Time to Ditch the ICBM, Americas Thermonuclear Dinosaur",https://warisboring.com/op-ed-its-time-to-ditch-the-icbm-america-s-thermonuclear-dinosaur-b2ca199a5574#.lltqfgnv4,19,1,smacktoward,9/15/2016 12:05 +11600216,How Plutocrats Cripple the IRS: You pay more because elites pay less,http://prospect.org/article/how-plutocrats-cripple-irs,109,139,nkurz,4/30/2016 3:34 +11292764,"Photos from Pyongyang, North Korea",http://www.m1key.me/photography/ostensibly_ordinary_pyongyang/,1,1,jlturner,3/15/2016 20:34 +12056158,African wildlife officials appalled as EU opposes a total ban on ivory trade,https://www.theguardian.com/environment/2016/jul/06/african-wildlife-officials-appalled-as-eu-opposes-a-total-ban-on-ivory-trade,140,132,adamnemecek,7/8/2016 15:24 +11564864,Why I'm Learning to Type All Over Again,http://www.popularmechanics.com/technology/a20524/learning-to-type-again-colemak/,7,1,gribbits,4/25/2016 15:33 +10301739,"Teslas $140,000 Model X SUV Does 0-60 in 3.2 Seconds",http://techcrunch.com/2015/09/29/teslas-140000-model-x-suv-does-0-60-in-3-2-seconds-hits-the-road-starting-tonight/,76,67,hack4supper,9/30/2015 4:25 +11019539,Citizen uses OpenCV to track speeders near his home,http://www.cvilletomorrow.org/news/article/22908-locust-avenue-speeding/,105,135,danso,2/2/2016 14:22 +11137086,Malariaspot.org A game to help diagnose malaria,http://malariaspot.org,2,1,alfonsodev,2/19/2016 22:16 +11487244,"Show HN: Practice Makes Regexp, a workbook to master regular expressions",http://practicemakesregexp.com/,2,2,reuven,4/13/2016 11:22 +10247492,U.S. And China Seek Arms Deal for Cyberspace,http://www.nytimes.com/2015/09/20/world/asia/us-and-china-seek-arms-deal-for-cyberspace.html?hp&action=click&pgtype=Homepage&module=second-column-region®ion=top-news&WT.nav=top-news&_r=0,3,1,digital55,9/20/2015 13:50 +12491101,Lawmaker who opposed universal helmet law dies in motorcycle crash,http://www.cnn.com/2016/09/13/health/lawmaker-dies-in-motorcycle-crash-trnd/index.html,4,2,woliveirajr,9/13/2016 18:43 +11291568,Source of the famous Now you have two problems quote,http://regex.info/blog/2006-09-15/247#comment-3085,2,1,shawndumas,3/15/2016 17:51 +10734523,Plumber sues Ford dealer after truck with logo was used by extremists in Syria,https://www.washingtonpost.com/news/morning-mix/wp/2015/12/14/plumber-sues-ford-dealer-after-truck-with-company-logo-was-used-by-jihadists-in-syria/,79,48,tlrobinson,12/14/2015 22:33 +10299500,"Ask HN: Scala or Elixir, What would you recommend me?",,14,12,sanosuke,9/29/2015 20:46 +12292493,The Power of Company Mottoes,https://mondaynote.com/the-power-of-company-mottoes-d57754146554,47,16,jcurbo,8/15/2016 18:41 +11540646,Cool tool to present from browser to browser,https://www.beamium.com,2,1,slideflight,4/21/2016 9:30 +10798039,Show HN: Turn websites into structured APIs,https://www.kimonolabs.com/,7,1,franzunix,12/27/2015 17:20 +11877848,Judge Alsup Denies Oracle's JMOL [pdf],http://arstechnica.com/wp-content/uploads/2016/06/order.denying.motions.pdf,11,1,ktRolster,6/10/2016 17:07 +11194063,Raspberry Pi becomes best-selling UK computer,http://www.bbc.co.uk/news/technology-35667990,3,1,roughcoder,2/29/2016 7:24 +12296021,Court: US seizure of Kim Dotcoms millions and 4 jet skis will stand,http://arstechnica.com/tech-policy/2016/08/court-us-seizure-of-kim-dotcoms-millions-and-4-jet-skis-will-stand/,6,1,compil3r,8/16/2016 7:19 +10594306,"Show HN: Introducing Moya Techblog, a blogging engine for coders and photographers",https://www.willmcgugan.com/blog/tech/post/moya-tech-blog/,7,1,billowycoat,11/19/2015 12:13 +11065067,Verifying a Sorting Algorithm,https://4z2.de/2016/02/07/verifying-sorting-algorithms,2,6,lorenzhs,2/9/2016 13:26 +10309516,Mathematics Made Difficult A Handbook for the Perplexed (1971) [pdf],http://i7-dungeon.sourceforge.net/math_hard.pdf,26,3,peterwwillis,10/1/2015 6:12 +12201066,Simit: A language for computing on sparse systems,http://simit-lang.org/index.html,37,3,panic,8/1/2016 9:20 +12150079,Bejeweled skeletons of Catholic martyrs,http://www.smithsonianmag.com/history/meet-the-fantastically-bejeweled-skeletons-of-catholicisms-forgotten-martyrs-284882/?no-ist,13,1,Phithagoras,7/23/2016 16:54 +11141668,Google Lowered Taxes by $2.4B Using European Subsidiaries,http://www.bloomberg.com/news/articles/2016-02-19/google-lowered-taxes-by-2-4-billion-using-european-subsidiaries,146,249,kungfudoi,2/20/2016 20:03 +11378590,Ask HN: What is LLVM (from the perspective of a middling Rails developer)?,,1,1,mmanfrin,3/29/2016 0:15 +11563998,Show HN: A functional language and an optimising compiler generating GPU code,http://futhark-lang.org,4,1,Athas,4/25/2016 13:27 +11531955,Would You Ride a Bus from SF to LA If You Had Your Own Bed?,http://gizmodo.com/would-you-ride-a-bus-from-sf-to-la-if-you-could-sleep-t-1771921091,45,54,curtis,4/20/2016 2:53 +11570478,I could have built that in 2 weeks,http://anishgodha.com/2016/04/26/i-could-have-built-that-in-2-weeks!,3,1,anishgodha,4/26/2016 9:31 +10768349,Zero to 140 Paying Customers in 10 Months (pivot story),https://sameroom.io/blog/from-pivot-to-140-paying-customers-in-ten-months/,2,1,rekoros,12/20/2015 21:24 +10741251,Ask HN: Are there any projects or compilers which convert JavaScript to Java?,,1,2,ggonweb,12/15/2015 23:26 +10607018,"Ask HN: If you build it, they will come doesn't work. How do we market our app?",,85,72,mstipetic,11/21/2015 15:42 +12368032,"Why cities keep growing, corporations and people die, and life gets faster",https://www.edge.org/conversation/geoffrey_west-why-cities-keep-growing-corporations-and-people-always-die-and-life-gets,120,44,triplesec,8/26/2016 18:00 +11590421,Suspect jailed indefinitely for refusing to decrypt hard drives,http://arstechnica.co.uk/tech-policy/2016/04/child-porn-suspect-jailed-for-7-months-for-refusing-to-decrypt-hard-drives/,153,126,hvo,4/28/2016 17:15 +11521952,This Warms My Heart: Netflix Has Twice as Many US Subscribers as Comcast,https://www.allflicks.net/netflix-has-twice-as-many-u-s-subscribers-as-comcast/,2,2,IamFermat,4/18/2016 18:10 +10370226,How important are human-readable slug components in a social platform's urls?,,2,2,tallerholler,10/11/2015 17:56 +10755465,Show HN: Scaling Meteor to 2 Million Concurrent Users,https://github.com/AdamBrodzinski/meteor_elixir,9,1,adambrod,12/17/2015 23:28 +10610697,Ask HN: Where do you want to work?,,2,2,soared,11/22/2015 17:27 +10250077,Ad blocking controversy just foolishness,http://creaturefeaturecode.blogspot.com/2015/09/ad-blocking-controversy-aka-foolishness.html,20,16,elialbert,9/21/2015 2:35 +11276077,We have decided to change the Perfect license [from AGPL to Apache],http://perfect.org/blog.html,4,7,Redoubts,3/13/2016 3:39 +10283132,How is your experience using parse.com in production?,,7,2,guillaumebesse,9/26/2015 14:12 +10799084,Naukratis: ancient Egypts version of Hong Kong unearthed by British team,http://www.theguardian.com/science/2015/dec/26/ancient-egypts-version-of-hong-kong-is-unearthed-by-british-team,27,3,situationista,12/27/2015 23:13 +12197474,Show HN: Trading platform for Pokemon Go,https://medium.com/@deadlocked_d/pok%C3%A9mon-yo-the-missing-social-platform-in-pok%C3%A9mon-go-9e86cffd0c91#.25ev705yx,1,1,liongate2,7/31/2016 16:02 +11872901,Ruin My Search History,http://ruinmysearchhistory.com/,333,199,jewbacca,6/9/2016 22:39 +11907960,Ask HN: What non-technical skills make a senior dev and how to develop them?,,212,130,poushkar,6/15/2016 8:52 +11277555,"Wire modern, private messaging from Skype co-founder",https://wire.com,134,68,thomanq,3/13/2016 13:10 +12055806,Virtual Reality Aimed at the Elderly Finds New Fans,http://www.npr.org/sections/health-shots/2016/06/29/483790504/virtual-reality-aimed-at-the-elderly-finds-new-fans,78,41,vwcx,7/8/2016 14:36 +10179920,Show HN: Easiest way to build html tables in React,https://github.com/legitcode/table,3,2,zackify,9/7/2015 3:20 +12061115,Bag of Tricks for Efficient Text Classification,https://arxiv.org/abs/1607.01759,169,15,T-A,7/9/2016 12:38 +11491025,Understanding Venture Capital,https://hardbound.co/read/understanding-vc/1,6,1,dshipper,4/13/2016 18:44 +10770925,Is bandwidth as issue?,,1,7,chintan39,12/21/2015 13:15 +11803032,Show HN: Sentinel my second side project,,4,2,robinhood,5/30/2016 20:35 +12185022,Kelsey Hightower questions Docker leading OCI standard,https://twitter.com/kelseyhightower/status/758832320245665792,69,10,hiphipjorge,7/29/2016 4:27 +10745483,Biggest mystery in mathematics in limbo after cryptic meeting,http://www.nature.com/news/biggest-mystery-in-mathematics-in-limbo-after-cryptic-meeting-1.19035,106,64,signa11,12/16/2015 16:52 +10787689,Show HN: Algolia (YC W14) Presents DocSearch,https://community.algolia.com/docsearch/,9,1,redox_,12/24/2015 9:51 +12023437,Running I3 Window Manager on Ubuntu for Windows,https://brianketelsen.com/i3-windows/,234,168,bketelsen,7/2/2016 18:47 +11206098,Show HN: Visual Code Execution Tool (watch code execute),http://under.patricklegros.me/,1,1,plegros,3/1/2016 21:13 +11278551,An introduction to LLVM in Go,https://blog.felixangell.com/an-introduction-to-llvm-in-go/,155,12,0xbadb002,3/13/2016 17:44 +12105428,Nancy A lightweight web framework for .NET,http://nancyfx.org,76,19,hitr,7/16/2016 6:09 +12238834,"Torrentz Gone, KAT Down, Are Torrent Giants Doomed to Fall?",https://torrentfreak.com/torrentz-gone-kat-down-are-torrent-giants-doomed-to-fall-160806/,13,3,chewymouse,8/6/2016 17:01 +12303079,Apple is currently holding $181 billion overseas,https://theintercept.com/2016/08/16/ceo-tim-cook-decides-apple-doesnt-have-to-pay-corporate-tax-rate-because-its-unfair/,36,27,LaSombra,8/17/2016 7:55 +11125326,Where polyfill came from / on coining the term,https://plus.google.com/+PaulIrish/posts/4okUyAE1qQH,1,1,antouank,2/18/2016 12:44 +10221668,Ask HN: Is your company not using React.js due to PATENT file?,,1,3,dominotw,9/15/2015 16:52 +10597372,Rapid MVP Standards Tips to accelerate your startup hacking,http://niftylettuce.com/rapid-mvp-standards/,16,8,niftylettuce,11/19/2015 20:28 +11431162,Twitter buys NFL streaming rights for 10 Thursday Night Football games,http://arstechnica.com/business/2016/04/twitter-buys-nfl-streaming-rights-for-10-thursday-night-football-games/,2,1,charlieegan3,4/5/2016 15:33 +12118465,Shortcuts for Waze 2.0 create custom navigation shortcuts [Android App],https://play.google.com/store/apps/details?id=com.uxiomatic.shortcutsforwaze&referrer=utm_source%3Dhn,2,1,UXiomatic,7/18/2016 22:48 +10894721,SoundCloud and Universal Music Agree to Licensing Deal,http://www.nytimes.com/2016/01/14/business/media/soundcloud-and-universal-music-agree-to-licensing-deal.html,30,13,hannes2000,1/13/2016 15:00 +11214762,What Made the Aeron Chair an Icon,http://www.fastcodesign.com/3057277/what-made-the-aeron-chair-an-icon,5,2,ohjeez,3/3/2016 3:03 +12370340,Decoding the Civil War,https://www.zooniverse.org/projects/zooniverse/decoding-the-civil-war,55,4,Hooke,8/27/2016 0:55 +12424856,Trying Not to Try (2014),http://m.nautil.us/issue/10/mergers--acquisitions/trying-not-to-try,2,1,sperant,9/4/2016 15:35 +10793178,Ask HN: When to not use Tor?,,1,2,dayon,12/26/2015 3:46 +12281252,ELF Binaries on Linux: Executable and Linkable Format,https://linux-audit.com/elf-binaries-on-linux-understanding-and-analysis/,56,8,giis,8/13/2016 12:45 +10284042,IRHydra: Display V8 and Dart VM Intermediate Representations,https://github.com/mraleph/irhydra/,23,5,jcr,9/26/2015 18:53 +12515396,New regs on sharing data from clinical trials,https://directorsblog.nih.gov/2016/09/16/clinical-trials-sharing-of-data-and-living-up-to-our-end-of-the-bargain/,1,1,sciadvance,9/16/2016 16:56 +10179666,Userscript to tag paywalled posts,https://github.com/voltagex/hackernews-paywalltag,1,1,voltagex_,9/7/2015 0:50 +10903490,We own you: the sad story of startups,https://medium.com/mega-maker/we-own-you-9a97819ad292#.7ng5iwqvn,15,4,ilostmykeys,1/14/2016 18:55 +12093536,Create a certificate authority for local development,https://github.com/latentflip/dev-cert-authority,6,1,jellekralt,7/14/2016 13:28 +10194682,Show HN: Weather Search find places by weather,http://weathersearch-ertmanlabs.rhcloud.com/,2,1,dtertman,9/9/2015 21:17 +11690595,VODER (1939) Early Speech Synthesizer,https://www.youtube.com/watch?v=0rAyrmm7vv0,2,1,ZeljkoS,5/13/2016 14:28 +12102606,"Show HN: Chirp for Twitter, a Chrome extension for easy screenshot+tweeting",https://chrome.google.com/webstore/detail/chirp-for-twitter/mlocpcjojbacdcajmjmlfonfibnleede,3,1,wannatouchmyfro,7/15/2016 17:39 +11872856,"BlackBerry hands over user data to help police 'kick ass,' insider says",http://www.cbc.ca/news/technology/blackberry-taps-user-messages-1.3620186,174,66,yq,6/9/2016 22:29 +11271749,"A minimalist concatenative, homoiconic, panmorphic language",https://github.com/sparist/Om,4,3,priyatam,3/12/2016 7:41 +10401542,Ask HN: How can I promote my opensource tool to hit broader audience?,,4,7,adnanh,10/16/2015 19:37 +11640291,The Productivity of Working Hours (2014) [pdf],http://ftp.iza.org/dp8129.pdf,82,16,luu,5/5/2016 22:51 +12293317,Physics: possible fifth force of nature,http://phys.org/news/2016-08-physicists-discovery-nature.html,8,1,lvecsey,8/15/2016 20:49 +11358999,Day of Week Algorithm,https://www.programmingalgorithms.com/algorithm/day-of-week,83,52,ltcode,3/25/2016 8:23 +11457135,U.S. Post Office Makes Stamps Cheaper for the First Time in 100 Years,http://fortune.com/2016/04/07/usps-post-office-stamps/,43,33,eplanit,4/8/2016 19:18 +12106377,Cyberpower Crushes Coup,https://medium.com/@thegrugq/cyberpower-crushes-coup-b247f3cca780#.xlupv444n,2,1,kushti,7/16/2016 14:11 +11990142,Iris Automation (YC S16) gives drones situational awareness to fly autonomously,http://themacro.com/articles/2016/06/iris-automation/,46,30,stvnchn,6/27/2016 22:50 +11825259,The Creative Worlds Bullshit Industrial Complex,http://99u.com/articles/53863/the-creative-worlds-bullshit-industrial-complex,29,5,3stripe,6/2/2016 19:18 +12399762,HackerSurfing II: Free Trip to Italy for Job-Seeking Engineers and Designers,https://hackersurfing.com/italy,11,2,vu0tran,8/31/2016 17:00 +10891214,How would you improve the company you work for?,,13,33,eecks,1/12/2016 23:26 +11240336,Ask HN: Do you need a degree/diploma for a TN-1 (or other work) Visa?,,12,15,jlos,3/7/2016 18:02 +10589105,Who are we Writing Code for?,http://arne-mertz.de/2015/11/whom-are-we-writing-code-for/,5,1,ingve,11/18/2015 17:17 +12226181,Sidecar: Service Discovery for All Docker Environments,http://relistan.com/sidecar-service-discovery-for-all-docker-environments/,1,2,relistan,8/4/2016 15:32 +10623592,Kindergarten Teacher Bans Legos for Boys Citing Gender Equity,http://seattle.cbslocal.com/2015/11/19/kindergarten-teacher-bans-legos-for-boys-citing-gender-equity/,11,6,fleitz,11/24/2015 20:51 +11999752,Microsoft tweaks aggressive Windows 10 upgrade prompt following complaints,http://www.theverge.com/2016/6/28/12049876/microsoft-windows-10-upgrade-notification-change,2,1,sratner,6/29/2016 5:50 +11581749,SpaceX plans to send spacecraft to Mars as early as 2018,http://www.theverge.com/2016/4/27/11514844/spacex-mars-mission-date-red-dragon-rocket-elon-musk?utm_campaign=theverge&utm_content=chorus&utm_medium=social&utm_source=twitter,2,1,shekhar101,4/27/2016 16:14 +10834382,Ask HN: How does turning off my ad blocker help?,,2,2,mproud,1/4/2016 7:06 +10813633,Ask HN: Facebook threatening to permanently delete my account. Who do I contact?,,7,6,auganov,12/30/2015 19:03 +12526500,Religion in US 'worth more than Google and Apple combined',https://www.theguardian.com/world/2016/sep/15/us-religion-worth-1-trillion-study-economy-apple-google,1,1,vinnyglennon,9/18/2016 18:36 +10413272,Pgmemcahe :A PostgreSQL memcache functions,https://github.com/ohmu/pgmemcache/,2,1,websec,10/19/2015 14:55 +11565702,Why haven't any Wall Street executives been prosecuted for fraud?,https://www.quora.com/What-are-the-real-reasons-that-no-Wall-Street-executives-have-been-prosecuted-for-fraud-as-a-result-of-the-2008-financial-crisis/answer/Elizabeth-Warren?share=1,3,1,enraged_camel,4/25/2016 17:16 +11627450,Apple is now run by a guy who is more like John Sculley than Steve Jobs,http://recode.net/2016/05/03/apple-is-now-run-by-a-guy-who-is-more-like-john-sculley-than-steve-jobs/,90,90,gvb,5/4/2016 10:54 +12524558,No Big Bang? Quantum equation predicts universe has no beginning (2015),http://phys.org/news/2015-02-big-quantum-equation-universe.html,24,1,wanderer42,9/18/2016 9:21 +10381974,Ask HN: Has any African startup ever been accepted to Y Combinator?,,1,1,chirau,10/13/2015 17:26 +10180891,Evaluation of Splittable Pseudo-Random Generators [pdf],http://www.hg.schaathun.net/research/Papers/hgs2015jfp.pdf,14,1,jcr,9/7/2015 10:38 +12424184,Cow Dung Goes High Design,http://www.nytimes.com/2016/08/29/t-magazine/cow-poop-design-museum-castelbosco-farm.html,34,3,endswapper,9/4/2016 13:20 +11019096,"Ask HN: 1 book,1 article and 1 research paper you suggest?",,2,1,jharohit,2/2/2016 12:47 +11521530,Start up job what should I ask when putting together my financial package,,2,1,armandgw,4/18/2016 17:18 +11109277,Stats of punctuation used in novels,https://medium.com/@neuroecology/punctuation-in-novels-8f316d542ec4#.sj4fc7yi0,4,1,mirap,2/16/2016 11:59 +10613215,Burma Gives a Thumbs-Up to Facebook,http://foreignpolicy.com/2015/11/13/burma-gives-a-big-thumbs-up-to-facebook/,7,2,thedogeye,11/23/2015 6:41 +10829959,"To Maximize Weight Loss, Eat Early in the Day, Not Late",http://www.npr.org/blogs/thesalt/2013/01/30/170591028/to-maximize-weight-loss-eat-early-in-the-day-not-late,1,3,tmbsundar,1/3/2016 8:44 +12405452,The kernel community confronts GPL enforcement,https://lwn.net/SubscriberLink/698452/f808dcfcaf34fddf/,125,111,corbet,9/1/2016 14:27 +11415492,People cannot buy BA tickets because of jQuery not loaded,https://twitter.com/search?q=british%20airways%20jquery&src=typd,2,1,gregdoesit,4/3/2016 9:19 +10582091,You Can't Sell a Notebook Why I Keep Secrets as a Wannabe Inventor,https://medium.com/@6StringMerc/why-i-keep-secrets-as-a-wannabe-inventor-cc06886147d3,2,1,6stringmerc,11/17/2015 16:27 +10560835,"Ask HN: Broken tests, huge (250 commit) pull requests, growing team, what to do?",,6,10,RomanPushkin,11/13/2015 16:57 +11589040,Zcomm.org seems to have gotten wiped,https://zcomm.org/,1,1,k_sze,4/28/2016 14:22 +10803136,I worked at Amazon to see if anything's changed,http://www.vice.com/en_uk/read/inside-amazon-at-christmas-929,163,160,vanilla-almond,12/28/2015 20:23 +10266389,Breeding the Nutrition Out of Our Food (2013),http://www.nytimes.com/2013/05/26/opinion/sunday/breeding-the-nutrition-out-of-our-food.html,93,53,primroot,9/23/2015 17:16 +11621959,What Kind of Sorcery Is This? Why code is so often compared to magic,http://www.theatlantic.com/technology/archive/2016/05/the-magic-of-code/478794/?single_page=true,5,1,w1ntermute,5/3/2016 16:16 +12190498,Show HN: DJ in the browser,https://lukeandersen.github.io/reactor,61,35,musicnrd,7/29/2016 22:23 +12567048,How Nuclear Power Contributes to Global Warming,http://www.commondreams.org/views/2016/09/23/how-nuclear-power-causes-global-warming,1,2,Esperaux,9/23/2016 18:52 +10418882,Httpie: A CLI http client,http://radek.io/2015/10/20/httpie/,391,49,astro-,10/20/2015 13:11 +10568176,Run containers on bare metal already [video],https://www.youtube.com/watch?v=coFIEH3vXPw,131,35,tdurden,11/15/2015 1:50 +11143811,"Kemal: Fast, simple web framework for Crystal",http://kemalcr.com/,54,16,sdogruyol,2/21/2016 8:38 +12258279,Trumps assassination joke isnt just a threat to Secretary Clinton,https://medium.com/@wilw/trumps-assassination-joke-isn-t-just-a-threat-to-secretary-clinton-77fe430131f,13,13,okket,8/9/2016 22:56 +10436756,How adblocking matures from no ads to safe ads,http://blogs.law.harvard.edu/doc/2015/10/22/how-adblocking-matures-from-noads-to-safeads/,12,7,kawera,10/23/2015 4:10 +11471630,Ask HN: What are the resources you would suggest for Machine learning?,,6,2,aryamaan,4/11/2016 14:17 +10581137,Neural Programmer: Inducing Latent Programs with Gradient Descent [pdf],http://xxx.lanl.gov/pdf/1511.04834v1.pdf,59,21,dave_sullivan,11/17/2015 14:15 +10858062,Show HN: Nigit Expose Shell Scripts as HTTP API,https://github.com/lukasmartinelli/nigit,19,6,morgenkaffee,1/7/2016 14:28 +11635516,Show HN: Automated discount hacking in your browser,https://www.couponmate.com/?=HN,2,2,michelkarma,5/5/2016 12:38 +10488517,Does an Apple Watch Discount Point to Flagging Sales Numbers?,http://www.forbes.com/sites/theopriestley/2015/11/01/does-an-apple-watch-discount-point-to-flagging-sales-numbers/,3,2,stanfordnope,11/1/2015 21:53 +10597118,21 Indian habits i lost in San Francisco,https://medium.com/@syedshuttari/21-indian-habits-i-lost-in-san-francisco-49e57dadff30#.6pro0159m,3,1,syed123,11/19/2015 19:55 +12455510,WaveNet: A Generative Model for Raw Audio,https://deepmind.com/blog/wavenet-generative-model-raw-audio/,627,145,benanne,9/8/2016 18:08 +11938386,Australian 'Bitcoin founder' quietly bidding for patent empire,http://www.reuters.com/article/us-bitcoin-wright-patents-idUSKCN0Z61GM,6,4,eric_h,6/20/2016 14:52 +10991841,Microsoft Cloud Strength Highlights Second Quarter Results,https://www.microsoft.com/investor/EarningsAndFinancials/Earnings/PressReleaseAndWebcast/FY16/Q2/default.aspx,105,37,theatraine,1/28/2016 22:15 +12487926,Tell Justin Trudeau to Fight for Web Developer Saeed Malekpour,https://www.eff.org/deeplinks/2016/09/tell-justin-trudeau-free-saeed-malekpour,95,30,iamjeff,9/13/2016 13:21 +10496842,"Show HN: My First Apple TV App, Streaks Workout",http://streaksworkout.com,9,5,qzervaas,11/3/2015 1:52 +10178048,What F. Scott Fitzgeralds tax returns reveal about his life and times (2009),https://theamericanscholar.org/living-on-500000-a-year/,69,35,danso,9/6/2015 16:19 +10475833,Ask HN: Client is bullying for refund since beginning,,5,15,codegeek,10/30/2015 2:34 +11299590,Solving the Mystery of the Tully Monster,http://www.theatlantic.com/science/archive/2016/03/solving-the-mystery-of-the-tully-monster/473823/?single_page=true,27,6,curtis,3/16/2016 18:29 +11653215,Ask HN: How do you like the trend of auto-playing videos on mainstream sites?,,6,8,hellofunk,5/8/2016 8:30 +11450419,How Meadow Is Building a Company and Community Around Cannabis,http://www.themacro.com/articles/2016/04/meadow-interview/,71,43,hua,4/7/2016 20:28 +10363316,Ben Carsons insane gun control arg. points Americans towards armed insurrection,http://qz.com/521137/what-exactly-is-ben-carson-advocating-for-america-when-it-comes-to-hitler-the-holocaust-and-gun-control-laws/,5,4,smalera,10/9/2015 21:14 +10480565,Ask HN: How do I become a Data Engineer,,7,2,josep2,10/30/2015 21:12 +10379327,The merger of Dell and EMC stems from the rise of cloud computing,http://www.economist.com/news/business/21673523-clouded-marriage-merger-dell-and-emc-more-proof-it-industry-shifting,50,14,jimsojim,10/13/2015 9:31 +10903393,A New Instapaper Parser,http://blog.instapaper.com/post/137288701461,58,18,ingve,1/14/2016 18:42 +11289495,"A different kind of tutorial, but does the idea work?",http://source.lishman.com/tutorial/marklishman/learn-angular-2/getting-started,2,1,lishy,3/15/2016 13:40 +11592494,Front-End Performance: The Dark Side,https://dev.opera.com/blog/timing-attacks/,110,13,obi1kenobi,4/28/2016 22:58 +10378219,The Case for Building Scalable Stateful Services,http://highscalability.com/blog/2015/10/12/making-the-case-for-building-scalable-stateful-services-in-t.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+HighScalability+%28High+Scalability%29,139,16,aarkay,10/13/2015 2:28 +12522399,MV(Game): Need help with game ideas for 1Millioncoins.com,,1,1,sharemywin,9/17/2016 20:52 +11733165,Show HN: ReactJS Open Source Chat,,6,2,lgse,5/19/2016 19:48 +12570947,"Ask HN: If you've successfully outsourced software dev work, how did you do it?",,3,1,Mattasher,9/24/2016 14:03 +12106069,Western-style diet linked to state-dependent memory inhibition,http://sciencebulletin.org/archives/3270.html,72,30,upen,7/16/2016 12:00 +11264126,Using Nginx to load balance microservices,https://hagbarddenstore.se/posts/2016-03-11/using-nginx-to-load-balance-microservices/,38,10,hagbarddenstore,3/11/2016 1:50 +11049149,So you still don't understand Hindley-Milner? (2013),http://akgupta.ca/blog/2013/05/14/so-you-still-dont-understand-hindley-milner/,202,9,mpgirro,2/6/2016 18:58 +12018799,"Macy's banned from detaining and fining alleged shoplifters, judge rules",https://www.theguardian.com/business/2016/jul/01/macys-shoplifting-detention-fines-lawsuit-ruling,14,6,walterbell,7/1/2016 19:00 +11999692,Paul Simon contemplating retirement,http://www.nytimes.com/2016/06/29/nyregion/paul-simon-retirement-stranger-to-stranger.html,2,1,rmason,6/29/2016 5:31 +10326053,Population.io The World Population Project,http://population.io/,99,46,tilt,10/4/2015 1:38 +12418156,More of a Disruptive Virtual Accelerator Than a Hackathon with $50k Grand Prize,http://www.ibtimes.co.uk/ethercamps-second-global-hacking-event-kicks-off-november-1579296,8,4,compil3r,9/3/2016 7:29 +10620016,How PostCSS became 1.5x faster by changing 2 lines of code,https://evilmartians.com/chronicles/postcss-1_5x-faster,55,28,iskin,11/24/2015 10:15 +11862114,Stop putting two spaces after a period (2014),http://www.cultofpedagogy.com/two-spaces-after-period/,1,1,forrestbrazeal,6/8/2016 13:29 +10525008,Why Johnny Still Can't Encrypt: Evaluating the Usability of a Modern PGP Client,http://arxiv.org/abs/1510.08555,259,160,lisper,11/7/2015 15:25 +10303197,Show HN: Beluga 0.1 Docker Deployment Tool,https://github.com/cortexmedia/Beluga,34,13,ctex,9/30/2015 11:49 +10800970,Ancient sword suggests Romans might have discovered America,http://www.bostonstandard.co.uk/news/local/startling-new-report-on-oak-island-could-rewrite-history-of-the-americas-1-7118097,10,14,kbart,12/28/2015 13:20 +12328822,Ask HN: How to optimize Nginx for static content?,,3,1,ffggvv,8/20/2016 23:49 +10812406,Ask HN: How do you find new podcasts?,,3,1,samsolomon,12/30/2015 15:30 +11381736,Google is completely redesigning AdWords,http://searchengineland.com/adwords-redesign-first-look-246074,4,2,uptown,3/29/2016 14:36 +11986442,Goods: Organizing Google's Datasets,http://dl.acm.org/citation.cfm?id=2903730,59,2,dedalus,6/27/2016 14:43 +11674394,GCHQ Boiling Frogs,https://github.com/GovernmentCommunicationsHeadquarters/BoilingFrogs,4,5,russ-b-ukg,5/11/2016 11:54 +12301019,A Magnetic Wormhole (2015),http://www.nature.com/articles/srep12488,106,72,jotux,8/16/2016 22:12 +12312088,"Morgan Stanley drops ratings,goes with Adjectives",https://grosum.com/blog.do?method=openBlogBody&id=Morgan_Stanley_drops_ratings_goes_with_adjectives,2,1,the_bong_one,8/18/2016 12:52 +12204866,Show HN: Secure Linux Apps on the Mac Desktop Through Docker,http://blog.alexellis.io/linux-desktop-on-mac/,21,5,alexellisuk,8/1/2016 18:47 +10281466,The story of a shy academic,https://www.timeshighereducation.com/features/the-story-of-a-shy-academic?nopaging=1,48,1,benbreen,9/25/2015 23:59 +10744451,8 reasons why I moved to Switzerland to work in IT,https://medium.com/@iwaninzurich/eight-reasons-why-i-moved-to-switzerland-to-work-in-it-c7ac18af4f90,5,3,zxcvbnmmnbvcxz,12/16/2015 14:34 +12157293,Lisp Flavoured Erlang,http://lfe.io/,129,44,indatawetrust,7/25/2016 8:43 +12449052,"U.S. job openings at record high, skills mismatch emerging",http://reuters.com/article/newsOne/idUSKCN11D1UX,3,1,petethomas,9/7/2016 23:55 +12058181,Pakistan's obstinately humble hero Edhi dies at 92,https://www.thenews.com.pk/latest/133442-Philanthropist-Abdul-Sattar-Edhi-passes-away,3,2,danial,7/8/2016 19:51 +12299289,Ask HN: Human-Realistic Robots?,,1,6,poppup,8/16/2016 18:05 +12251964,"Ask HN: If you found an easy way to factor large numbers, would you tell anyone?",,43,43,c0nrad,8/9/2016 1:30 +11198776,GoPro Shells Out $105M for Two Video Editing Startups,http://www.forbes.com/sites/ryanmac/2016/02/29/gopro-shells-out-105-million-for-two-video-editing-startups/#58265f511142,5,1,trueduke,2/29/2016 21:37 +11359884,Why Learning to Code Won't Save Your Job,http://www.fastcompany.com/3058251/the-future-of-work/why-learning-to-code-wont-save-your-job,15,16,nols,3/25/2016 13:28 +10920508,Fast Incident Response: a cybersecurity incident management platform,https://github.com/certsocietegenerale/FIR,33,10,based2,1/17/2016 19:04 +12542029,Safari 10.0,https://developer.apple.com/library/content/releasenotes/General/WhatsNewInSafari/Articles/Safari_10_0.html,42,51,bomanbot,9/20/2016 18:36 +12313406,Man Who Introduced Millions to Bitcoin Says Blockchain Is a Bust,http://www.bloomberg.com/news/articles/2016-08-18/man-who-introduced-millions-to-bitcoin-says-blockchain-is-a-bust,21,15,virtualwhys,8/18/2016 15:47 +10978945,Hacker News Telegram channel,https://telegram.me/hacker_news_feed,2,1,dartf,1/27/2016 8:33 +11552995,Ask HN: How do you harmonize user data?,,25,19,hackerews,4/22/2016 22:31 +10452252,"FLIF, the new lossless image format that outperforms PNG, WebP and BPG",http://cloudinary.com/blog/flif_the_new_lossless_image_format_that_outperforms_png_webp_and_bpg,8,1,nadavs,10/26/2015 16:00 +11888538,"Hyperloop One Will Be Underwater, Underground, Across the World",https://www.inverse.com/article/16873-brogan-bambrogan-hyperloop-one-will-be-underwater-underground-across-the-world,24,13,SonicSoul,6/12/2016 15:36 +10239557,The page you requested has not yet been optimized for a mobile device,http://m.ibm.com/http/www-03.ibm.com/security/services/endpoint-data-protection/,2,3,wslh,9/18/2015 14:59 +10204721,Uber Would Like to Buy Your Robotics Department,http://www.nytimes.com/2015/09/13/magazine/uber-would-like-to-buy-your-robotics-department.html?hp&action=click&pgtype=Homepage&module=second-column-region®ion=top-news&WT.nav=top-news,141,90,calcsam,9/11/2015 16:49 +10945426,Ask HN: How do you talk to customers?,,17,5,magic_man,1/21/2016 14:38 +11049993,Git-blame-someone-else Blame someone else for your bad code,https://github.com/jayphelps/git-blame-someone-else,150,14,mablae,2/6/2016 21:31 +10407865,"What Facebook, Blue Jeans, and Metal Signs Taught Us About Tornado Science",http://nautil.us/blog/what-facebook-blue-jeans-and-metal-signs-taught-us-about-tornado-science,26,7,dnetesn,10/18/2015 11:06 +11779217,Sensor21: Earn Bitcoin by collecting environmental data,https://21.co/learn/sensor21,5,1,markmassie,5/26/2016 16:25 +12101743,How yuppies hacked the original hacker ethos (2015),https://aeon.co/essays/how-yuppies-hacked-the-original-hacker-ethos,94,82,daveloyall,7/15/2016 15:38 +11606816,Mozilla Firefox market share hits another new low,http://www.drwindows.de/content/9946-nutzungsanteile-windows-10-stagniert-chrome-besteigt-thron.html,3,1,Tekmasta,5/1/2016 16:39 +10662315,Why Hackers Must Welcome Social Justice Advocates,https://medium.com/@coralineada/why-hackers-must-welcome-social-justice-advocates-1f8d7e216b00,4,1,davidgerard,12/2/2015 11:26 +11416922,Why No Dining App Is the Airbnb of Food Yet,http://www.eater.com/2016/3/31/11293260/airbnb-for-food-apps-eatwith-feastly,94,76,prostoalex,4/3/2016 17:54 +11405351,RIP Over-Engineered Blog,http://jlongster.com/RIP-Over-Engineered-Blog,8,2,snake_case,4/1/2016 15:12 +10518801,Show HN: Drbble organise pickup soccer (football) games,http://drbble.com,2,1,zoran119,11/6/2015 10:52 +11814657,"[XKCD Flowchart] How to tell the year of a map, from it's features",http://xkcd.com/1688/large/,20,2,xd1936,6/1/2016 14:39 +11216251,PULPino An open-source microcontroller system based on RISC-V,http://www.pulp-platform.org/,80,8,razer6,3/3/2016 11:47 +10798572,SHA-1: A History of Hard Choices,https://medium.com/@sleevi_/a-history-of-hard-choices-c1e1cc9bb089#.dawqa3w0p,10,1,cpeterso,12/27/2015 20:04 +11131666,Fitzo: Smart and social fitness app to help you get your workout discipline,https://www.fitzo.com,3,2,alishamiudo,2/19/2016 5:01 +11529466,Trials and Tribulations of an Anti-Bullying Kickstarter,http://degree180.com/8686-2/,1,1,angersock,4/19/2016 19:23 +12011850,Ask HN: What are your favorite personal finance books?,https://www.everwealth.io/blog/best-personal-finance-books/,2,1,alexkehr,6/30/2016 21:22 +10831940,Ask HN: What are you currently building?,,145,234,philippnagel,1/3/2016 19:37 +11829815,Incrementing the Xcode Build Number Like a Boss,https://elliot.land/incrementing-the-xcode-build-number,3,3,elliotchance,6/3/2016 12:11 +11818214,Show HN: Auto-Cluster RabbitMQ with AWS Autoscaling Groups,http://aweber.github.io/rabbitmq-autocluster/,44,5,crad,6/1/2016 21:15 +10984365,"Genetically modified mosquitoes used to fight dengue, zika in Brazil",http://latino.foxnews.com/latino/health/2016/01/27/genetically-modified-mosquitoes-used-to-fight-dengue-zika-in-brazil/,40,28,apsec112,1/27/2016 23:13 +11182750,E-Commerce: Convenience Built on a Mountain of Cardboard,http://www.nytimes.com/2016/02/16/science/recycling-cardboard-online-shopping-environment.html,2,1,xoher,2/26/2016 17:45 +10498248,Nobody is listening to the UKs anti-surveillance campaigners,http://www.ft.com/cms/s/0/a9bd2f9a-8152-11e5-8095-ed1a37d1e096.html,1,1,unfortunateface,11/3/2015 8:29 +11139937,WINE 1.9.4 Released,https://www.winehq.org/announce/1.9.4,172,118,ekianjo,2/20/2016 13:18 +10290208,Architectural patterns of resilient distributed systems,https://github.com/Randommood/Strangeloop2015,124,3,yarapavan,9/28/2015 13:02 +10789571,My Next Adventure,http://textslashplain.com/2015/12/23/my-next-adventure/,45,10,edward,12/24/2015 21:07 +10788503,Does exercise slow the aging process?,http://well.blogs.nytimes.com/2015/10/28/does-exercise-slow-the-aging-process/?_r=1,107,93,tmbsundar,12/24/2015 15:51 +11687453,California Franchise Tax Bureau,,1,1,roccogen,5/12/2016 22:59 +11162901,Why Building Apps the Wrong Way Can Be the Right Way,https://medium.com/google-developers/why-won-t-this-work-coding-angry-for-fun-and-profit-1ef38a2b7196#.3dpv4bov9,91,43,jtwebman,2/23/2016 22:32 +10593077,Messaging App Telegram Blocks ISIS Channels,http://www.businessinsider.com.au/telegram-blocks-isis-channels-2015-11?r=US&IR=T,2,1,empressplay,11/19/2015 6:22 +12270205,Go 1.7 Release Candidate 6 is released,https://groups.google.com/forum/?utm_source=golangweekly&utm_medium=email#!msg/golang-nuts/veQCER89M8c/44nryIM1EAAJ,54,7,kevindeasis,8/11/2016 17:38 +10615322,React.js A guide for Rails developers,https://www.airpair.com/reactjs/posts/reactjs-a-guide-for-rails-developers,1,1,tmlee,11/23/2015 16:06 +10724420,ZPAQ: Incremental Journaling Backup Utility and Archiver,http://mattmahoney.net/dc/zpaq.html,19,4,pmoriarty,12/12/2015 22:28 +10463563,9.5 Low Latency Decision as a Service Design Patterns,http://tech.forter.com/9-5-low-latency-decision-as-a-service-design-patterns/,54,6,itaifrenkel,10/28/2015 10:07 +10435343,From Outsourcing Your Life to Full Automation (Part One),https://medium.com/@jyz/from-outsourcing-your-life-to-full-automation-part-one-dd3c74dc5361#.1b75fe7n8,11,6,jyz,10/22/2015 21:49 +11993686,A Note on 'Non-Secret Encryption',https://www.gchq.gov.uk/note-non-secret-encryption,2,1,aburan28,6/28/2016 13:43 +10197939,Show HN: An interactive comparison of 100 laptops with matte screens,http://www.productchart.com/laptops/sets/1,87,46,no_gravity,9/10/2015 13:43 +11039495,Show HN: Sound Shelter Ready to Find Your New Favourite Record?,https://www.soundshelter.net/land.html,2,4,siquick,2/5/2016 4:40 +11006552,People are scared of Disruption,https://medium.com/@diymanik/people-are-scared-of-disruption-c85cde08c656#.tmga6dtm2,1,1,mcnabj,1/31/2016 14:51 +10363562,Why elephants rarely get cancer,http://www.csmonitor.com/Science/2015/1009/Why-elephants-rarely-get-cancer,5,2,fahimulhaq,10/9/2015 22:13 +12071904,Slow Motion Video of a Speed Solve of a Rubik's Cube,https://www.youtube.com/watch?v=AOMQxLrCI7A,42,8,CarolineW,7/11/2016 15:55 +12569238,Nokia to demonstrate a technique for terabit-speed data over optical-fiber,http://www.zdnet.com/article/think-google-fibers-fast-nokia-to-show-off-tech-thats-1000-times-faster/,99,47,wallflower,9/24/2016 3:03 +11594247,Australian Govt Productivity Commission: Draft Report on Intellectual Property,http://www.pc.gov.au/inquiries/current/intellectual-property/draft,3,2,ajdlinux,4/29/2016 7:21 +10704714,"InfluxDB is now InfluxData, a platform for time series data",https://influxdata.com/blog/influxdb-the-platform-for-time-series-data/,124,36,pauldix,12/9/2015 16:39 +10364578,Never Buy a Teacup Pig (2014),http://modernfarmer.com/2014/03/never-buy-teacup-pig/,31,15,shawndumas,10/10/2015 5:04 +10652735,"On Clean Energy, the Wind Blows from Germany",http://www.bloombergview.com/articles/2015-11-30/wind-and-solar-are-gaining-ground-in-germany,25,5,T-A,11/30/2015 23:48 +10690582,The Death of Surplus,http://hackaday.com/2015/12/07/the-death-of-surplus/,5,1,szczys,12/7/2015 16:48 +10310230,Has London succeeded at the expense of the rest of the UK?,http://www.bbc.co.uk/news/resources/idt-248d9ac7-9784-4769-936a-8d3b435857a8,87,140,porker,10/1/2015 10:25 +10366137,Ask HN: 512GB flash is cheap and small. Why does high-end phones have 64GB?,,1,5,canow,10/10/2015 17:12 +12057386,Thrussh: Portable SSH client and server library in Rust,https://pijul.org/thrussh/,135,62,0xmohit,7/8/2016 17:52 +12466092,Dropping Down: Go Functions in Assembly Language,https://github-cloud.s3.amazonaws.com/assets/repositories/23096959/447163?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAISTNZFOVBIJMK3TQ%2F20160909%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20160909T211045Z&X-Amz-Expires=300&X-Amz-Signature=3ca4d3dc70045125c8c61de0c6ae7b15b7a36bffde01d4f74b22e4d39feaa812&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3Bfilename%3DGoFunctionsInAssembly.pdf&response-content-type=application%2Fpdf,4,2,posthoctorate,9/9/2016 21:12 +11047915,Pippo Web framework in Java,http://www.pippo.ro/,93,25,networked,2/6/2016 14:46 +11754836,How to Trend on the App Store,https://medium.com/@adamturnerLA/how-to-trend-on-the-app-store-a66130950730#.24qiw1hov,2,1,dtft,5/23/2016 16:22 +10448648,Dataflow computers: Their history and future (2008) [pdf],http://csrl.unt.edu/~kavi/Research/encyclopedia-dataflow.pdf,47,15,luu,10/25/2015 22:06 +10692357,IBM getting the hairdryer treatment,http://www.bbc.co.uk/news/blogs-trending-35027902,3,2,gloves,12/7/2015 20:17 +12032251,MostPeople Newsletter For people who dont take kindly to the status-quo,http://www.mostpeople.co,1,1,EN1,7/4/2016 18:36 +11176769,"In an Improving Economy, Places in Distress",http://www.nytimes.com/interactive/2016/02/24/business/distress-cities-counties.html,23,11,wallflower,2/25/2016 18:56 +11388196,"Netdata Linux performance monitoring, done right",https://github.com/firehol/netdata,477,87,cujanovic,3/30/2016 10:12 +10704351,How Google is pushing you to vote for Bernie Sanders,https://www.washingtonpost.com/news/wonk/wp/2015/12/09/how-google-is-pushing-you-to-vote-for-bernie-sanders/,2,1,Libertatea,12/9/2015 15:56 +10752045,Web Components article feedback,,1,2,antonio-R,12/17/2015 15:35 +11230690,Rapture An idiomatic and typesafe Scala utility library,http://rapture.io/,3,1,acjohnson55,3/5/2016 19:40 +10802626,Ask HN: Copyright infringement alert from ISP,,4,6,yeukhon,12/28/2015 18:47 +10398956,The Danger of E-Books,http://www.gnu.org/philosophy/the-danger-of-ebooks.html,147,249,tomkwok,10/16/2015 13:03 +11909340,SpaceX: Eutelsat/ABS Mission Hosted Webcast,https://www.youtube.com/watch?v=gLNmtUEvI5A,56,32,pol0nium,6/15/2016 13:58 +10409483,DICE Discrete Integrated Circuit Emulator,https://sourceforge.net/projects/dice/,29,4,networked,10/18/2015 19:44 +11456660,Show HN: Writedown Is Not Twitter,https://www.writedown.co,8,6,arisAlexis,4/8/2016 18:10 +11913692,The 2nd amendment allows gun control. Scalia didn't,http://www.newyorker.com/news/news-desk/the-second-amendment-is-a-gun-control-amendment,5,8,dangjc,6/16/2016 3:21 +12241487,How millions of trees brought a broken landscape back to life,https://www.theguardian.com/environment/2016/aug/07/national-forest-woodland-midlands-regeneration,45,23,mafro,8/7/2016 8:33 +11569212,Why my friends moved to the Midwest in search of financial security,http://www.vox.com/2016/4/25/11503040/midwest-savings-atlantic,4,3,jseliger,4/26/2016 3:23 +11328906,How to Adapt to Your Face Transplant,http://nautil.us/blog/face-transplant-recipients-identify-with-their-donors,1,1,dnetesn,3/21/2016 15:52 +11437255,"Google reveals own security regime policy trusts no network, anywhere, ever",http://www.theregister.co.uk/2016/04/06/googles_beyondcorp_security_policy/,7,1,EwanToo,4/6/2016 7:37 +12504795,Downtown Mountain View has changed a lot in the last few days since I visited,https://dl.dropboxusercontent.com/u/364883/Screenshots/mountain-view-has-changed.png,1,1,cpg,9/15/2016 10:35 +11599909,Warn HN: stacks made executable on GNU by mere presence of assembly code,,149,25,kazinator,4/30/2016 1:39 +10304596,Lyft Office to Leave Bay Area for Nashville,https://nextcity.org/daily/entry/lyft-moves-customer-service-hq-to-nashville,2,1,evtothedev,9/30/2015 15:19 +11343334,"If you write JavaScript tools or libraries, bundle your code before publishing",https://medium.com/@Rich_Harris/how-to-not-break-the-internet-with-this-one-weird-trick-e3e2d57fee28,48,19,callumlocke,3/23/2016 10:54 +12414545,Portland's prosperity bypasses many,http://www.oregonlive.com/business/index.ssf/2016/09/amid_portlands_prosperity_some.html,9,2,gohrt,9/2/2016 17:11 +10213759,Exponential Economist Meets Finite Physicist,http://physics.ucsd.edu/do-the-math/2012/04/economist-meets-physicist/,49,52,govind201,9/14/2015 5:36 +10470117,China to begin two-child policy,http://www.bbc.co.uk/news/world-asia-34665539,349,432,majc2,10/29/2015 10:47 +12164969,Fetch Standard 101,https://annevankesteren.nl/2016/07/fetch-101,2,1,jacobr,7/26/2016 12:03 +10981679,Google achieves AI 'breakthrough' by beating Go champion,http://www.bbc.co.uk/news/technology-35420579,1207,381,xianshou,1/27/2016 18:04 +10968096,Deep Learning with Spark and TensorFlow,https://databricks.com/blog/2016/01/25/deep-learning-with-spark-and-tensorflow.html,228,30,mateiz,1/25/2016 16:36 +12273766,Discovery of a New Retrograde Trans-Neptunian Object,http://arxiv.org/abs/1608.01808,2,1,8draco8,8/12/2016 6:53 +11188537,Mercedes-Benz replaces robots with more capable humans,http://www.ibtimes.co.uk/mercedes-benz-replaces-robots-more-capable-humans-1546355,8,1,wx196,2/27/2016 21:14 +10652624,Refactoring a 300-line if,http://groupserver.org/vanpy-2015/slides.html,61,55,6502nerdface,11/30/2015 23:24 +10421250,Fixing the UX of hyperlinks,https://medium.com/@nashvail/fixing-the-ux-of-hyperlinks-7cb4e5a3fe17,38,37,jaxondu,10/20/2015 19:34 +11366066,Site for generating bids and invoices- User:test000@bidvoice.co PW:Test_000,https://bidvoice.co/,1,1,kbishop-now,3/26/2016 15:51 +10529824,"The 16-bit v/s 8-bit Blind Listening Test, Part 2",http://www.audiocheck.net/blindtests_16vs8bit_NeilYoung.php,65,75,nkurz,11/8/2015 20:46 +11217968,"Ask HN: Don't understand vesting/ownership offer, how do I make money off it?",,7,9,giltleaf,3/3/2016 16:38 +12010887,Codemoji A fun tool to learn about ciphers,https://learning.mozilla.org/codemoji/,75,16,etherworks,6/30/2016 19:03 +11271518,Fleet re-routing applications if a node fails,https://deis.com/blog/2016/fleet-coreos-pt-1,1,1,tiwarinitish86,3/12/2016 5:17 +11065188,"Show HN: Abbreviated Press A concise news source, organized by channels",http://abbr.press/,4,1,overcast,2/9/2016 13:48 +11287655,The cloud wars of 2016,https://medium.com/simone-brunozzi/the-cloud-wars-of-2016-3f87e0a03d18#.m9bfa52wr,6,3,simonebrunozzi,3/15/2016 5:39 +11437794,HCL: a color model that actually matches our perceptions (2011),http://vis4.net/blog/posts/avoid-equidistant-hsv-colors/,183,43,laughinghan,4/6/2016 10:10 +11767468,Why Digital Assistants Are a Privacy Nightmare,http://www.theatlantic.com/technology/archive/2016/05/the-privacy-problem-with-digital-assistants/483950/?single_page=true,7,1,jonbaer,5/25/2016 3:24 +12352629,SigOpt (YC W15) raises $6.6M A led by a16z for Bayesian optimization platform,http://blog.sigopt.com/post/149411062311/we-raised-66-million-to-amplify-your-research,1,1,Zephyr314,8/24/2016 15:16 +11092018,Honu: Syntactic Extension for Algebraic Notation Through Enforestation (2012) [pdf],http://www.cs.utah.edu/plt/publications/gpce12-rf.pdf,3,1,vmorgulis,2/13/2016 1:48 +10614837,Dell shipping laptop with rogue self-signed root CA,https://np.reddit.com/r/technology/comments/3twmfv/dell_ships_laptops_with_rogue_root_ca_exactly/,400,87,cstross,11/23/2015 14:47 +10952949,"Ask HN: Stock for cloud space, would you do it?",,3,1,sharemywin,1/22/2016 14:44 +11580217,Xamarin Open-Sourced,http://open.xamarin.com/,581,199,fekberg,4/27/2016 13:30 +12309590,Bus1: a new Linux interprocess communication proposal,https://lwn.net/SubscriberLink/697191/d5803573a8c5b84c/,106,133,broodbucket,8/18/2016 0:22 +11567965,Clinton campaign investing $1M into online trolls,http://correctrecord.org/barrier-breakers-2016-a-project-of-correct-the-record/,10,2,doener,4/25/2016 22:39 +10517694,How we built instant autocomplete search using localStorage,https://mixmax.com/blog/autocomplete-search-performance,5,1,bradavogel,11/6/2015 3:31 +10290566,Skinner-box rats trained to predict currency market movements,http://boingboing.net/2014/09/28/skinner-box-rats-trained-to-pr.html,3,1,plg,9/28/2015 14:19 +11784275,Ask HN: Feedback on betting app idea,,1,1,DanPir,5/27/2016 6:27 +12327904,"D.A. Henderson, disease detective who eradicated smallpox, dies at 87",https://www.washingtonpost.com/local/obituaries/da-henderson-disease-detective-who-eradicated-smallpox-dies-at-87/2016/08/20/b270406e-63dd-11e6-96c0-37533479f3f5_story.html,105,10,okket,8/20/2016 19:05 +11639701,The best defense against hackers: protecting the crypto keys,http://www.globalbankingandfinance.com/the-best-defense-against-hackers-protecting-the-crypto-keys/,4,1,arnaudbud,5/5/2016 21:14 +10860375,"Aptitude, apt-get, and apt Commands",https://debian-handbook.info/browse/stable/sect.apt-get.html,3,2,mkesper,1/7/2016 20:10 +10283450,Radiation's Halloween Hack,http://radiation.fobby.net/halloween/,12,1,danso,9/26/2015 16:16 +10448495,What Americas immigrants looked like when they arrived on Ellis Island,http://www.washingtonpost.com/news/wonkblog/wp/2015/10/24/what-americas-immigrants-looked-like-when-they-arrived-on-ellis-island/,5,2,goodJobWalrus,10/25/2015 21:25 +11901539,Show HN: Quire Snap your ideas and accomplish them with your team,https://quire.io/blog/p/Snap-your-ideas-Introducing-Quire-for-iOS.html,15,13,shuheng,6/14/2016 12:28 +12264129,Mapping NYC Transit. All of It,https://medium.com/@anthonydenaro/mapping-nyc-transit-all-of-it-e16e76a95a0e,9,1,uptown,8/10/2016 19:12 +11771206,"Rand Fishkin, Moz. What I'd Change What I'd Keep the Same What I Don't yet Know",https://moz.com/rand/what-id-change-keep-the-same-dont-yet-know/,1,1,marklittlewood,5/25/2016 16:54 +10883557,Atomic CSS,http://acss.io/,3,3,bennettfeely,1/11/2016 21:07 +12307436,Raybench Crystal Programming Language,http://www.eccentricdevelopments.com/raybench-crystal-plc-pt-13/,1,1,binki89,8/17/2016 19:07 +11814419,Why did ArchLinux embrace Systemd?,http://www.reddit.com/r/archlinux/comments/4lzxs3/why_did_archlinux_embrace_systemd/d3rhxlc,11,5,barsonme,6/1/2016 14:06 +10408377,Google Analytics Opt-Out Browser Add-On,https://tools.google.com/dlpage/gaoptout?hl=en,58,85,dandelion_lover,10/18/2015 14:56 +12163109,People can sense single photons,http://www.nature.com/news/people-can-sense-single-photons-1.20282,194,90,mathgenius,7/26/2016 3:12 +11208469,Wintergatan Marble Machine (music instrument using 2000 marbles),https://www.youtube.com/watch?v=IvUU8joBb1Q,17,3,curtis,3/2/2016 6:53 +11256532,Why Amazon could be about to open 400 physical bookstores,http://venturebeat.com/2016/02/03/why-amazon-could-be-about-to-open-400-physical-bookstores/,1,1,BOBSINM,3/9/2016 23:58 +11579148,Firefox 46 supports some -webkit prefixed CSS properties,https://developer.mozilla.org/en-US/Firefox/Releases/46,71,41,simon04,4/27/2016 10:22 +12376023,Subliminal side-channel attack on the brain of brain-computer-interface users,https://arxiv.org/abs/1312.6052,4,1,p4bl0,8/28/2016 10:36 +10422726,Rollup.js: A next-generation JavaScript module bundler,http://rollupjs.org,57,17,dmmalam,10/21/2015 0:02 +12118525,I built a fusion reactor in my bedroom AMA,https://www.reddit.com/r/IAmA/comments/4tgsaz/iama_i_built_a_fusion_reactor_in_my_bedroom_ama/,434,127,lsllc,7/18/2016 23:09 +10877396,Antivirus software could make your company more vulnerable,http://www.csoonline.com/article/3020459/security/antivirus-software-could-make-your-company-more-vulnerable.html,102,43,r721,1/10/2016 21:57 +12306283,"Cisco Systems to lay off about 14,000 employees: report",http://www.theglobeandmail.com/technology/cisco-systems-to-lay-off-about-14000-employees-report/article31440950/?cmpid=rss1&click=sf_globe,11,2,doener,8/17/2016 17:07 +10866454,How Crowdfunding Has Changed Real Estate Investing,http://www.forbes.com/sites/navathwal/2015/12/02/how-crowdfunding-has-changed-real-estate-investing/,2,1,hsfried,1/8/2016 17:19 +10347461,There is no such thing as a city that has run out of room,https://www.washingtonpost.com/news/wonkblog/wp/2015/10/06/there-is-no-such-thing-as-a-city-that-has-run-out-of-room/,74,99,luu,10/7/2015 17:29 +12543264,"DevOps from Scratch, Part 1: Vagrant and Ansible",https://www.kevinlondon.com/2016/09/19/devops-from-scratch-pt-1.html,57,30,Kaedon,9/20/2016 20:48 +12133549,Feds want 'Wolf of Wall Street' profits as part of $3.5B fraud allegation,http://money.cnn.com/2016/07/20/news/wolf-of-wall-street-malaysia-1mdb/index.html,8,2,sea6ear,7/21/2016 0:01 +11701768,Luxembourg's leaders have proposed a far-reaching animal rights bill,https://news.vice.com/article/luxembourg-is-set-to-become-the-most-animal-friendly-country-in-the-world,56,75,sethbannon,5/15/2016 17:22 +11097769,Should Larry Lessig Be Nominated to Replace Antonin Scalia?,https://www.youtube.com/watch?v=Kd8c6y9Cd4Q,5,1,dragonbonheur,2/14/2016 10:19 +11814315,"Show HN: Bot Finder for Messenger, Slack, Skype, Kik, Telegram",https://botfinder.io/search,12,2,richardfriedman,6/1/2016 13:52 +10458071,US ventures aimed at helping the unbanked are taking cues from developing world,http://www.theguardian.com/sustainable-business/2015/oct/23/unbanked-m-pesa-kenya-vodafone-vouch-oportun,21,22,hotgoldminer,10/27/2015 14:11 +10885372,San Francisco's Fog Over Growth,http://www.bloombergview.com/articles/2016-01-11/san-francisco-can-t-stand-how-much-it-wants-to-grow,111,96,saeranv,1/12/2016 3:23 +10570756,Emotion Detection in Games?,http://www.gamefromscratch.com/post/2015/11/15/Emotion-Detection-in-Games.aspx,17,5,ingve,11/15/2015 19:32 +11969564,Go: Transaction Oriented Collector (TOC) Algorithm,https://docs.google.com/document/d/1gCsFxXamW8RRvOe5hECz98Ftk-tcRRJcDFANj2VwCB0/edit?usp=sharing,3,1,ingve,6/24/2016 13:21 +11960077,"Ask HN: UK Entrepreneurs, how does a brexit/remain vote affect your start up?",,12,19,harel,6/23/2016 10:57 +11330057,Show HN: Teecup,http://teecup.co/?hn,13,2,JavaScriptrr,3/21/2016 17:48 +12065930,Generating Recommendations at Amazon Scale with Apache Spark and Amazon DSSTNE,http://blogs.aws.amazon.com/bigdata/post/TxGEL8IJ0CAXTK/Generating-Recommendations-at-Amazon-Scale-with-Apache-Spark-and-Amazon-DSSTNE,131,18,shanxS,7/10/2016 15:39 +11486312,Ask HN: Why do Young programmers think they know more than Old programmers,,7,3,ianpurton,4/13/2016 7:06 +12284445,Jazz in the 21st century: Playing outside the box,http://www.economist.com/news/books-and-arts/21702735-new-sound-summer-playing-outside-box,59,44,benbou09,8/14/2016 6:02 +10330069,A Single Neuron May Cary Up to 1000 Genetic Mutations,http://neurosciencenews.com/single-neuron-genetic-mutations-2813/,64,23,ghosh,10/5/2015 5:10 +10873902,Intent to implement WASM in v8,https://groups.google.com/forum/#!topic/v8-users/PInzACvS5I4,107,29,dangoor,1/10/2016 2:43 +11593004,Ns: single-command static hosting,https://zeit.co/blog/serve-it-now/?,54,15,mindrun,4/29/2016 0:39 +11770037,"Theo de Raadt Privilege Separation and Pledge [video, ~15min]",https://www.youtube.com/watch?v=a_EYdzGyNWs,10,1,nickysielicki,5/25/2016 14:36 +11040790,Error 53 fury mounts as Apple software update threatens to kill your iPhone 6,http://www.theguardian.com/money/2016/feb/05/error-53-apple-iphone-software-update-handset-worthless-third-party-repair,32,4,elfalfa,2/5/2016 11:29 +11173038,Google Fiber Is Coming to San Francisco,http://www.theverge.com/2016/2/24/11104932/google-fiber-san-francisco-launch-announced,2,1,josso,2/25/2016 8:04 +11667084,I'm a good engineer but I suck at building stuff,http://lionelbarrow.com/2016/05/08/i-suck-at-building-stuff/,238,123,lbarrow,5/10/2016 13:49 +10531617,Industrialisation in Africa: More a marathon than a sprint,http://www.economist.com/news/middle-east-and-africa/21677633-there-long-road-ahead-africa-emulate-east-asia-more-marathon,52,10,ocjo,11/9/2015 6:12 +12317360,When Refrigeration Was Controversial,http://daily.jstor.org/when-refrigeration-was-controversial/,54,61,samclemens,8/19/2016 1:05 +10542611,The impact of Docker containers on the performance of genomic pipelines,https://peerj.com/articles/1273/,58,10,michaelhoffman,11/10/2015 21:24 +11300566,NYCLU: Citys Public Wi-Fi Raises Privacy Concerns,http://www.nyclu.org/news/citys-public-wi-fi-raises-privacy-concerns,21,6,kafkaesq,3/16/2016 20:48 +10279840,Ask HN: Creating and Licensing Product For/From Employer,,2,1,tawaycreation,9/25/2015 18:32 +10783867,Quantum calculation on a quantum computer,http://arxiv.org/abs/1512.06860,1,1,apo,12/23/2015 15:58 +11047004,iPhones 'disabled' if Apple detects third-party repairs,http://www.bbc.co.uk/news/technology-35502030,12,3,lentil_soup,2/6/2016 8:26 +12566560,Using the Response Rate Limiting Feature in BIND 9.10,https://kb.isc.org/article/AA-00994/0/Using-the-Response-Rate-Limiting-Feature-in-BIND-9.10.html,12,1,x0rx0r,9/23/2016 17:50 +10198512,The Real Cost of Filling Up: Gasoline Prices by Country,http://www.bloomberg.com/visual-data/gas-prices/,13,1,adventured,9/10/2015 15:10 +12370218,The New York Times is looking for a climate change editor,http://www.nytimes.com/interactive/2016/jobs/nyt-climate-change-editor.html?_r=0,15,2,doener,8/27/2016 0:19 +12526263,"Eve-Style Clock Demo in Red, Live-Coded",http://www.red-lang.org/2016/07/eve-style-clock-demo-in-red-livecoded.html,85,17,walterbell,9/18/2016 17:50 +10648657,How to Store Light and Understand the Laser Principle,https://www.rp-photonics.com/spotlight_2015_11_28.html,32,1,m-app,11/30/2015 10:06 +12470921,Ask HN: My game is growing fast. What should I do?,,26,25,m0dE,9/10/2016 21:18 +11403037,Fake Ads as a Business Model,http://oleb.net/blog/2016/03/fake-ads-as-a-business-model/,4,1,ingve,4/1/2016 6:20 +10371011,Show HN: PJON_ASK Radio multimaster communications bus system for Arduino,https://github.com/gioblu/PJON_ASK,27,13,gioscarab,10/11/2015 21:02 +11002616,Sources: Security Firm Norse Corp. Imploding,http://krebsonsecurity.com/2016/01/sources-security-firm-norse-corp-imploding/,79,17,dsr12,1/30/2016 17:04 +11774351,Housing in the Bay Area,http://blog.samaltman.com/housing-in-the-bay-area,406,388,dwaxe,5/26/2016 0:43 +11911071,Ask HN: Is the G2 Crowd business software review website a scam?,,7,7,elbigbad,6/15/2016 18:33 +11479958,Semicolons matter,http://blog.rrowland.com/2016/04/11/semicolons-do-matter/,77,82,josep2,4/12/2016 14:41 +10971870,Reddit users now say search more than Google,https://projects.fivethirtyeight.com/reddit-ngram/?keyword=google.search&start=20071015&end=20150831&smoothing=30,7,1,mwc,1/26/2016 4:50 +11963987,Do you need that comment?,http://rile.yt/thoughts/do-you-need-that-comment/,3,1,rileyt,6/23/2016 20:18 +11441930,Apply HN: Cadwolf Intelligent Engineering,,15,10,theuttick,4/6/2016 20:43 +11725672,"In Search for Cures, Scientists Create Multispecies Embryos",http://www.npr.org/sections/health-shots/2016/05/18/478212837/in-search-for-cures-scientists-create-embryos-that-are-both-animal-and-human,77,62,taylorbuley,5/18/2016 20:33 +10804868,The Long Way Round: The Story of the California Clipper,http://lapsedhistorian.com/long-way-round-part-1/,57,4,ksherlock,12/29/2015 2:44 +10689801,Beijing smog red alert issued,http://www.independent.co.uk/news/world/asia/beijing-smog-red-alert-issued-schools-and-businesses-to-completely-shut-down-as-chinese-capital-a6763286.html,64,54,kevindeasis,12/7/2015 14:53 +11861178,EU Puts Forward Ambitious Open Access Target,http://www.united-academics.org/sex-society/eu-puts-forward-ambitious-open-access-target/,2,1,unitedacademics,6/8/2016 10:10 +11267054,"Many abnormal sexual tastes are neither rare nor unusual, study finds",http://www.theglobeandmail.com/life/health-and-fitness/health/most-abnormal-sexual-tastes-are-neither-rare-or-unusual-says-study/article29141804/,55,27,ilamont,3/11/2016 15:18 +10604763,ISIS Has a Twitter Strategy and It Is Terrifying,https://medium.com/fifth-tribe-stories/isis-has-a-twitter-strategy-and-it-is-terrifying-7cc059ccf51b#.xfd5ecrcx,4,3,mandazi,11/21/2015 0:12 +11077514,Starting Fires on Purpose When and How Leaders Need to Break the Rules,http://firstround.com/review/starting-fires-on-purpose-when-and-how-leaders-need-to-break-the-rules/?_hsenc=p2ANqtz-_vw5tIJUrtyl_0cIn1m3MX80hQrL4ZPLzh5S-NGfZNbirswHYI8OLge82DxVKkMZre5qt8jWH6ddYii1I6IcxpeB1uvA&_hsmi=26091387,8,1,prostoalex,2/11/2016 1:00 +11922404,94-year-old former guard at the Auschwitz death camp sentenced,http://www.bbc.co.uk/news/world-europe-36560416,10,11,enitihas,6/17/2016 13:10 +12244850,Destroy All Software relaunches,https://www.destroyallsoftware.com/screencasts,70,18,pg_bot,8/8/2016 1:18 +12167445,Scala Days Recap and Why the Free Monad Isnt Free,http://engineering.sharethrough.com/blog/2016/07/26/scala-days-recap/,30,8,cheezsndwch,7/26/2016 17:49 +10762387,"Show HN: Spurlo discover, collect and curate inspiring products with a purpose",http://www.spurlo.com/explore/,2,1,tinjam,12/19/2015 2:41 +10383043,19th Century Marriage Manuals: Advice for Young Husbands,http://mimimatthews.com/2015/09/28/19th-century-marriage-manuals-advice-for-young-husbands/,103,102,Avawelles,10/13/2015 19:56 +11241796,Coding Challenge,,3,2,jgarb,3/7/2016 21:22 +12351739,Sweet32: Birthday attacks on 64-bit block ciphers in TLS and OpenVPN,https://sweet32.info,140,41,pedro84,8/24/2016 13:14 +12210972,The Exceptional Server Another Erlang Battle-Story,https://medium.com/@elbrujohalcon/the-exceptional-server-abe9016ebe75#.gh267ihus,7,1,elbrujohalcon,8/2/2016 16:12 +11692232,A super-nerdy attempt to predict who will win Eurovision,https://www.buzzfeed.com/tomphillips/eurovision-prediction,2,1,jsvine,5/13/2016 18:26 +10612039,Inside an Amazon Fulfillment Center in Poland [video],http://wtkplay.pl/video-id-14147-zobacz_jak_w_srodku_wyglada_centrum_amazona_w_sadach,43,14,thedogeye,11/22/2015 23:48 +10526544,Academic Journals: The Most Profitable Obsolete Technology in History,http://sasconfidential.com/2015/11/06/obsolete/,5,1,frostmatthew,11/7/2015 22:52 +10546681,How to choose an in-memory NoSQL solution: Performance measuring,http://articles.rvncerr.org/how-to-chose-an-in-memory-nosql-solution-performance-measuring/,9,4,rvncerr,11/11/2015 14:04 +10311484,How Photoshop Helps NASA Reveal the Unseeable,https://blogs.adobe.com/conversations/2015/09/how-photoshop-helps-nasa-reveal-the-unseeable.html,7,1,bsilvereagle,10/1/2015 14:47 +12461624,V8 JavaScript Engine: V8 Release 5.4,http://v8project.blogspot.com/2016/09/v8-release-54.html,126,19,okket,9/9/2016 12:46 +12019951,Kontena: Deploy and run your apps on the most developer friendly container,https://www.kontena.io/platform,5,1,based2,7/1/2016 21:51 +11775304,Show HN: Migrate Sane database/sql migrations for Go,https://github.com/remind101/migrate,7,2,ejholmes,5/26/2016 4:03 +10870301,"Show HN: ProdPicks Curated party product website, please give feedback",http://www.prodpicks.com,2,1,prodpicks,1/9/2016 6:11 +12405903,Soylent Blog Update on Coffiest and Powder,http://blog.soylent.com/post/149763512312/update-on-coffiest-and-powder,1,1,joeyespo,9/1/2016 15:16 +12229185,Apple announces bug bounty program,https://techcrunch.com/2016/08/04/apple-announces-long-awaited-bug-bounty-program/,344,93,nos4A2,8/4/2016 23:36 +12145843,New Snowden revelation shows Skype may be privacy's biggest enemy (2013),http://www.computerworld.com/article/2474090/data-privacy/new-snowden-revelation-shows-skype-may-be-privacy-s-biggest-enemy.html,13,2,doctorshady,7/22/2016 18:56 +11159840,Spotify moves its back end to Google Cloud,https://news.spotify.com/us/2016/02/23/announcing-spotify-infrastructures-googley-future/,715,359,dmichel,2/23/2016 16:10 +12353497,Professionals are taking microdoses of LSD before work,http://www.wired.co.uk/article/lsd-microdosing-drugs-silicon-valley,14,6,JasonKriss,8/24/2016 17:07 +11180067,Apple vs FBI legal filing,http://bgr.com/2016/02/25/apple-vs-fbi-legal-filing/,1,1,TheBiv,2/26/2016 6:14 +11770838,"Scientists find cure for type 2 diabetes in rodents, dont know how it works",http://arstechnica.com/science/2016/05/scientists-find-cure-for-type-2-diabetes-in-rodents-dont-know-how-it-works/,31,8,shawndumas,5/25/2016 16:10 +11077222,Binvis.io Visual Analysis of Binary Files,http://binvis.io/,78,9,nikolay,2/11/2016 0:01 +10383132,There's No DRM in JPEG Let's Keep It That Way,https://www.eff.org/deeplinks/2015/10/theres-no-drm-jpeg-lets-keep-it-way,224,120,DiabloD3,10/13/2015 20:13 +11078862,Novelty Search Creates Robots with General Skills for Exploration [video],https://www.youtube.com/watch?v=P-EqOBqjTyU,18,1,henning,2/11/2016 8:01 +11373719,"Lwan, a high-performance web server with Lua support",https://lwan.ws/,99,55,mattbostock,3/28/2016 11:55 +10797778,The exhaust emissions scandal: a deep breath into pollution trickery [video],https://media.ccc.de/v/32c3-7331-the_exhaust_emissions_scandal_dieselgate#video,12,2,danielsiders,12/27/2015 16:03 +11602345,Tools to detect if your ISP is hijacking your DNS traffic,https://dnsdiag.org/,5,1,farrokhi,4/30/2016 16:31 +11747173,The world will only get weirder,http://stevecoast.com/2015/03/27/the-world-will-only-get-weirder/,3,1,DavidChouinard,5/22/2016 2:40 +10448835,Things to Avoid When Writing CSS,https://medium.com/@Heydon/things-to-avoid-when-writing-css-1a222c43c28f#.sgvlf0u3s,3,3,smpetrey,10/25/2015 23:04 +11008999,"John Dee painting originally had circle of human skulls, x-ray imaging reveals",http://www.theguardian.com/artanddesign/2016/jan/17/john-dee-painting-circle-of-human-skulls-exhibition,32,11,Hooke,2/1/2016 1:09 +12355977,Mozilla wants you to help decide its new logo,https://www.wired.com/2016/08/mozilla-wants-help-redesign-logo-seriously/,2,1,tomding,8/24/2016 23:22 +12274203,Kansas couple sues IP mapping firm for turning their life into a digital hell,http://arstechnica.com/tech-policy/2016/08/kansas-couple-sues-ip-mapping-firm-for-turning-their-life-into-a-digital-hell/,123,123,antr,8/12/2016 9:03 +10669247,"Q-Carbon, a substance harder than diamond",http://www.nytimes.com/2015/12/03/science/q-carbon-harder-than-diamond.html,41,18,rglovejoy,12/3/2015 12:41 +10230113,Live Analysis of CNN Republican Debate Social Data,http://debate.infegy.com/,5,1,jgraveskc,9/16/2015 21:43 +10389460,Floobits for Atom collaborative editing,https://floobits.com/,38,4,kansface,10/14/2015 20:57 +10547511,Tech Is Eating Media Now What?,https://medium.com/@jwherrman/tech-is-eating-media-now-what-807047ad4ede,19,19,look_lookatme,11/11/2015 16:42 +12447787,Ask HN: How to buy Vested stock when leaving start up?,,9,7,davidcoronado,9/7/2016 21:16 +11300656,GraphQL Deep Dive: The Cost of Flexibility,https://edgecoders.com/graphql-deep-dive-the-cost-of-flexibility-ee50f131a83d#.nr0kzgfk7,59,9,samerbuna,3/16/2016 21:04 +10935050,Homoiconicity,https://en.wikipedia.org/wiki/Homoiconicity,20,5,shawndumas,1/19/2016 23:55 +12464229,How LaunchDarkly Serves Over 4B Feature Flags Daily,http://stackshare.io/launchdarkly/how-launchdarkly-serves-over-4-billion-feature-flags-daily,71,16,aechsten,9/9/2016 17:19 +11338109,Designing simpler React components,https://medium.com/@esp/designing-simpler-react-components-13a0061afd16,4,1,pspeter3,3/22/2016 17:17 +12067723,Child-Computer Interaction (2015),http://homepage.divms.uiowa.edu/~hourcade/book/index.php,107,5,GuiA,7/10/2016 23:12 +11443475,A webpack boilerplate for a production-ready marketing website,https://github.com/geniuscarrier/webpack-boilerplate,60,29,geniuscarrier,4/7/2016 0:07 +11588540,Proposed JavaScript Standard Style,https://github.com/feross/standard,29,110,xatxat,4/28/2016 13:17 +11837501,Cloud.gov,https://cloud.gov/,434,112,gmays,6/4/2016 18:57 +11583183,Postgraphql: A GraphQL schema created by reflection over a PostgreSQL schema,https://github.com/calebmer/postgraphql,217,24,craigkerstiens,4/27/2016 18:29 +10616622,Resource Revocation in Apache Mesos (2012) [pdf],http://www.cs.berkeley.edu/~kubitron/courses/cs262a-F12/projects/reports/project9_report_ver4.pdf,14,1,ch,11/23/2015 19:23 +12383416,Amazon's plan to fight counterfeiters will cost legit sellers a ton,http://www.cnbc.com/2016/08/29/amazons-plan-to-fight-counterfeiters-will-cost-legit-sellers-a-ton.html,1,1,pavornyoh,8/29/2016 17:19 +10203256,Blog for topics relevant to someone new to free software development,http://yakking.branchable.com/,4,2,liw,9/11/2015 12:31 +11158605,Show HN: UX Guide Design Better User Experiences (Learn UX Design),https://stayintech.com/info/uxguide,4,1,lillukka,2/23/2016 13:15 +12041596,Product Requirement Documents Must Die,http://www.mindtheproduct.com/2016/03/product-requirement-documents-must-die/,13,5,cpeterso,7/6/2016 6:56 +11976114,NorwayEuropean Union relations,https://en.wikipedia.org/wiki/Norway%E2%80%93European_Union_relations,50,66,em3rgent0rdr,6/25/2016 12:31 +12007877,The warp drive will have to wait,https://translate.google.com/translate?hl=en&ie=UTF8&prev=_t&sl=de&tl=en&u=http://www.golem.de/news/em-drive-der-warp-antrieb-muss-noch-warten-1606-121641.html,117,85,dmichulke,6/30/2016 11:55 +10583849,Show HN: Real-time news ratings app (Android),https://play.google.com/store/apps/details?id=app.top.st,5,1,vadimbaryshev,11/17/2015 20:49 +11336061,Richard Feynman: Actively Irresponsible,https://lizcormack.wordpress.com/2012/04/23/richard-feynman-actively-irresponsible/,5,2,tacon,3/22/2016 12:43 +10743315,Ask HN: What is a way of making residual income with $5K a month?,,105,71,hanyoon,12/16/2015 10:01 +10625985,Would you trade Star Wars cards on the blockchain?,https://www.ascribe.io/app/editions/1H9GHJKsnyZEALAbVqWTmDhHeNPyPPqScw,1,1,tomerzei,11/25/2015 7:58 +10346280,Accelerated Mobile Pages A new approach to web performance,https://github.com/ampproject/amphtml,6,1,jaip,10/7/2015 14:41 +11301165,Can Dogs Detect Seizures? [2007?],http://www.epilepsy.com/information/professionals/hallway-conversations/can-dogs-detect-seizures,1,1,YeGoblynQueenne,3/16/2016 22:28 +10959949,Donald Rumsfeld has released a solitaire app for iOS,http://foreignpolicy.com/2016/01/22/don-rumsfeld-has-built-an-app-to-play-cards-like-churchill/,7,1,leroy_masochist,1/23/2016 20:32 +10184922,Go Concurrency Patterns: Pipelines and Cancellation (2014),http://blog.golang.org/pipelines,80,3,Spiritus,9/8/2015 10:42 +12507099,Tesla Sues Oil Industry Exec It Says Pretended to Be Elon Musk to Gain Secrets,http://www.forbes.com/sites/alanohnsman/2016/09/14/tesla-sues-oil-industry-exec-it-says-pretended-to-be-elon-musk-to-gain-secrets/#10061f1bdd37,5,3,artursapek,9/15/2016 15:45 +10826014,Mobile or web?,,3,4,elalchemist,1/2/2016 12:37 +11893637,"The problem isn't Islam, it's religion",https://medium.com/p/the-problem-isnt-islam-it-s-religion-6f2cf750f98c,6,2,thebakedgood,6/13/2016 13:27 +12073594,Ask HN: How to fake laptop connection via USB,,2,3,pizu,7/11/2016 19:22 +11116381,"In Munich, a fightening preview of the rise of killer robots",https://www.washingtonpost.com/opinions/in-munich-a-frightening-preview-of-the-rise-of-killer-robots/2016/02/16/d6282a50-d4d4-11e5-9823-02b905009f99_story.html?hpid=hp_no-name_opinion-card-c%3Ahomepage%2Fstory,1,1,citizensixteen,2/17/2016 9:03 +11947074,Ask HN: Is it practical to start a 1-person Micro ISV these days?,,13,17,augb,6/21/2016 16:44 +12286263,Microsoft Leaks UEFI Secure Boot backdoor Keys. Whoops,http://arstechnica.com/security/2016/08/microsoft-secure-boot-firmware-snafu-leaks-golden-key/,4,1,gamitop,8/14/2016 16:45 +10886243,Cocaine addiction: Scientists discover back door into the brain,http://www.cam.ac.uk/research/news/cocaine-addiction-scientists-discover-back-door-into-the-brain,68,18,Libertatea,1/12/2016 8:40 +10963916,Also Out at Twitter: Engineering Head Roetter (and More to Come),http://recode.net/2016/01/24/also-out-at-twitter-engineering-head-roetter-and-more/,144,61,argonaut,1/24/2016 20:36 +11877856,Slack Connectivity Issues,https://status.slack.com/,69,51,gk1,6/10/2016 17:08 +12478453,Chrome is intervening against document.write(),https://developers.google.com/web/updates/2016/08/removing-document-write,3,3,fagnerbrack,9/12/2016 10:20 +10387660,Maily Herald Rails open source self-hosted Mailchimp alternative,http://mailyherald.org/,4,2,tortilla,10/14/2015 16:42 +11312315,Ask HN: A bite-sized problem in your company that I could turn into a tiny SaaS?,,23,2,borplk,3/18/2016 15:16 +10842090,"Show HN: Mohsen the Doorman Half Slack, Half RaspberryPi",https://medium.com/optima-blog/the-doorman-eea38815cc4f#.hsqe51sdc,15,4,mohamedbassem,1/5/2016 8:35 +10296234,Computing Distance from a Reference Point with Script Fields and the Explain API,https://qbox.io/blog/computing-distance-from-a-reference-point-with-script-fields-and-the-explain-api,3,1,vanderzyden,9/29/2015 13:47 +11580721,We are ruthless on code reviews,https://techblog.workiva.com/tech-blog/we-are-ruthless-code-reviews,51,69,grey,4/27/2016 14:30 +11893034,Google AI project writes poetry which could make a Vogon proud,https://www.theguardian.com/technology/2016/may/17/googles-ai-write-poetry-stark-dramatic-vogons,3,1,CarolineW,6/13/2016 11:56 +11104554,OpenIO: object storage and grid for apps,http://openio.io/,53,23,lormayna,2/15/2016 17:24 +10360357,Overcast 2.0,http://www.marco.org/2015/10/09/overcast2,9,2,anmilo,10/9/2015 14:49 +10604788,"Multiple Personalities, Blindness and the Brain",http://blogs.discovermagazine.com/neuroskeptic/2015/11/20/multiple-personalities-blindness-and-the-brain/,13,1,DiabloD3,11/21/2015 0:18 +11792807,What Does It Mean to Be Poor in Germany?,http://www.spiegel.de/international/tomorrow/a-1093371.html,385,326,nkurz,5/28/2016 18:46 +11721739,The Empty Brain,https://aeon.co/essays/your-brain-does-not-process-information-and-it-is-not-a-computer,5,2,dwighttk,5/18/2016 13:30 +10572196,Japanese Government Workers Wary of My Number Cards as ID,http://the-japan-news.com/news/article/0002532635,52,33,jamesknelson,11/16/2015 1:57 +11371473,Wikipedia founder calls alt-medicine practitioners lunatic charlatans,http://arstechnica.com/science/2014/03/wikipedia-founder-calls-alt-medicine-practitioners-lunatic-charlatans/,3,2,ingve,3/27/2016 20:42 +11800789,Visualize the orbits of exoplanets,https://nbremer.github.io/exoplanets/,88,10,gkst,5/30/2016 11:34 +10915609,GPUs prefer premultiplication,http://www.realtimerendering.com/blog/gpus-prefer-premultiplication/,132,25,dahart,1/16/2016 16:04 +10999335,"Systemd mounted efivarfs read-write, allowing motherboard bricking via 'rm'",https://github.com/systemd/systemd/issues/2402,180,173,dogecoinbase,1/29/2016 23:20 +10969331,JIT Assembler Library for Multiple ISAs,https://github.com/hlide/jitasm,43,8,vmorgulis,1/25/2016 19:32 +10760398,"Low Pay, Long Commutes: The Plight of the Adjunct Professor",http://www.npr.org/sections/ed/2015/12/17/459707022/low-pay-long-commutes-the-plight-of-the-adjunct-professor,57,51,benbreen,12/18/2015 19:27 +11243691,"U.S. programmer outsources own job to China, surfs cat videos",http://www.cnn.com/2013/01/17/business/us-outsource-job-china/,7,1,mikecarlton,3/8/2016 5:24 +10247416,The Bitcoin Community Disagrees on What Happens Next,http://www.bloomberg.com/news/articles/2015-09-18/the-bitcoin-community-disagrees-on-what-happens-next,30,68,adventured,9/20/2015 13:25 +10968716,"If your web site offers live chat, be prepared for hackers",http://venturebeat.com/2016/01/23/if-your-web-site-offers-live-chat-be-prepared-for-hackers/,4,1,gwintrob,1/25/2016 18:03 +10655757,Ask HN: Starting Over,,5,5,marktangotango,12/1/2015 15:01 +11728937,Skin in the Game chapter drafts by Nassim Taleb,http://fooledbyrandomness.com/SITG.html,177,124,xvirk,5/19/2016 9:12 +11746666,"407,000 Workers Stunned as Pension Fund Proposes 60% Cuts",http://money.cnn.com/2016/05/20/retirement/central-states-pension-fund/index.html?iid=hp-stack-dom,25,22,randomname2,5/21/2016 23:24 +12451581,Solipsism Online Is this the real life? Is this just fantasy?,http://solipsism.online/,3,1,Fulck,9/8/2016 9:52 +10849320,Native Code Considered Harmful,http://developer.telerik.com/featured/native-code-is-bad-for-you/,4,1,wanda,1/6/2016 8:38 +10800717,Ask HN: Product Pricing,,2,2,vital101,12/28/2015 11:42 +10946445,The Day the Mesozoic Died: How the story of the dinosaurs demise was uncovered,http://nautil.us/issue/32/space/the-day-the-mesozoic-died,44,3,dnetesn,1/21/2016 16:51 +11906368,PGP and Nylas,https://www.nylas.com/blog/pgp/,32,5,bhaile,6/15/2016 0:05 +11502269,Encrypt/decrypt text or files online. Best tool I have found JIXXIT.com,http://jixxit.com,3,4,ericdolson,4/15/2016 4:56 +10972700,Is serotonin the happy brain chemical?,http://theneurosphere.com/2015/11/14/is-serotonin-the-happy-brain-chemical-and-do-depressed-people-just-have-too-little-of-it/,72,72,jimsojim,1/26/2016 10:21 +11686064,TensorFlow A curated list of dedicated resources,https://github.com/jtoy/awesome-tensorflow/,160,4,lahdo,5/12/2016 19:27 +10947268,AsteroidOS: A Free and Open-Source Smartwatch Platform,http://asteroidos.org/,5,1,ksashikumar,1/21/2016 18:39 +10410498,Ask HN: Low marks vs. Side projects?,,2,3,meturtle,10/19/2015 0:48 +12527922,Ask HN: Where do you go to get recruiters to find you a job?,,89,61,nicholas73,9/19/2016 0:16 +11072316,Cluster Computing with Ansible and the Raspberry Pi,https://opensource.com/life/16/2/cluster-computing-with-ansible-and-raspberry-pi,3,1,geerlingguy,2/10/2016 12:40 +11591535,UC Davis Chancellor Removed After School Paid to Scrub Negative Search Results,http://talkingpointsmemo.com/news/us-davis-chancellor-removed-negative-search-results,28,2,molecule,4/28/2016 20:03 +12494791,There's only one business worth starting,https://medium.com/hi-my-name-is-jon/theres-only-one-business-worth-starting-845b8985838a#.cnu8f65az,3,1,hccampos,9/14/2016 7:25 +11149347,When a State Balks at a Citys Minimum Wage,http://www.nytimes.com/2016/02/22/us/alabama-moves-to-halt-pay-law-in-birmingham.html,3,1,samfb,2/22/2016 8:17 +11218994,Ask HN: Thoughts on McKinsey Job?,,3,2,mcthrowaway,3/3/2016 18:51 +10579866,Night owls and early birds have different personality traits (2014),http://www.cbsnews.com/news/night-owls-and-early-birds-have-different-personality-traits/,33,24,fezz,11/17/2015 8:37 +10695500,KeePassX 2.0 final release is here,https://www.keepassx.org/news/2015/12/533,7,2,oye,12/8/2015 9:22 +10512959,Ask HN: Did your Show HN go on to become very successful?,,14,17,jjoe,11/5/2015 12:44 +12136755,Edward Snowden's New Research Aims to Keep Smartphones from Betraying Owners,https://theintercept.com/2016/07/21/edward-snowdens-new-research-aims-to-keep-smartphones-from-betraying-their-owners/,296,113,secfirstmd,7/21/2016 13:45 +10411282,Ask HN: Is there some database/shop for recipes and pictures of the results?,,1,2,wingerlang,10/19/2015 5:27 +10876409,Amazon has no idea how to run an app store,http://www.smashcompany.com/business/amazon-has-no-idea-how-to-run-an-app-store,267,169,lkrubner,1/10/2016 18:27 +12114280,"Your wife is Indian, landlord wont rent to you",https://www.99.co/blog/singapore/99co-stop-rental-racial-discrimination/,31,23,yla92,7/18/2016 10:50 +11342214,A Subtle Power Struggle for Control of Music Metadata,http://motherboard.vice.com/read/there-is-a-subtle-power-struggle-for-control-of-music-metadata,16,4,acdanger,3/23/2016 4:45 +10882762,The Sad State of Web Development,https://medium.com/@wob/the-sad-state-of-web-development-1603a861d29f,63,10,chrisdotcode,1/11/2016 19:40 +11897283,"AMD announces two more Polaris video cards: RX 470, RX 460",http://arstechnica.com/gaming/2016/06/amd-announces-two-more-polaris-video-cards-rx-470-rx-460/,3,1,jseliger,6/13/2016 20:26 +11866038,Your DNS Provider Should Not Be Your Registrar (2014),http://www.petekeen.net/your-dns-provider-should-not-be-your-registrar,17,10,hernantz,6/8/2016 21:58 +10326396,The Delinquent Borrowers Leading a Student Loans Revolt,http://www.bloomberg.com/news/articles/2015-10-01/the-delinquent-borrowers-leading-a-student-loans-revolt,38,62,petethomas,10/4/2015 4:00 +12051506,Zero-day flaw lets hackers tamper with your car through BMW portal,http://www.zdnet.com/article/hackers-can-tamper-with-car-registration-through-bmw-connected-car-portal/,10,1,driverdan,7/7/2016 19:15 +12108370,"How I Could Steal Money from Instagram, Google and Microsoft",https://www.arneswinnen.net/2016/07/how-i-could-steal-money-from-instagram-google-and-microsoft/,384,65,adamnemecek,7/17/2016 0:03 +10711831,A Middle Ground Between Contract Worker and Employee,http://www.nytimes.com/2015/12/11/business/a-middle-ground-between-contract-worker-and-employee.html,4,1,petethomas,12/10/2015 17:20 +10261325,The cell menagerie: human immune profiling,http://www.nature.com/nature/journal/v525/n7569/full/525409a.html,2,1,cryoshon,9/22/2015 20:08 +10520032,Why the founder of Rails automatically rejects 80% of Software Engr. applicants,https://medium.com/@christophelimpalair/why-the-founder-of-rails-automatically-rejects-80-of-software-engineer-applicants-4e2a4d255f58,9,1,tarique313,11/6/2015 15:48 +10444741,Zuckerbergs' New Primary School: Private but Free,http://www.csmonitor.com/USA/Education/2015/1024/Inside-Mark-Zuckerberg-s-new-school-Private-but-free,74,76,ohmyiv,10/24/2015 20:29 +10992449,A lightweight C++ signals and slots implementation,https://github.com/pbhogan/Signals,93,38,hellofunk,1/28/2016 23:43 +10417293,Lecture Me. Really,http://www.nytimes.com/2015/10/18/opinion/sunday/lecture-me-really.html,6,1,abalashov,10/20/2015 3:41 +11146156,Ask HN: Does Dart programming language need mvvm frameworks?,,3,3,basicscholar,2/21/2016 19:54 +12116344,Ask HN: Is there a relation between Software and Art?,,1,2,tamersalama,7/18/2016 16:59 +10700460,Was ?Apple the first major open-source company? Not even close,http://www.zdnet.com/article/apple-was-the-first-major-open-source-company/,4,1,CrankyBear,12/8/2015 23:03 +10668882,Labella.js placing labels on a timeline without overlap,http://twitter.github.io/labella.js/,375,77,callumlocke,12/3/2015 10:35 +11836891,10x or not: Youve got to do things right,https://devup.co/10x-or-not-youve-got-to-do-things-right-8e45311ecbcb#.enn4v8i3v,48,51,tiwarinitish86,6/4/2016 16:32 +10271708,Why I broke up with Tornado,http://methinking.tumblr.com/post/128603750685/lessons-in-tornado-and-mysql,2,1,maheshgattani,9/24/2015 14:17 +10539527,Feedback Please: Hacking the developer consciousness [video],,4,3,davemen,11/10/2015 14:41 +12379186,Ask HN: Real time one way replication on Linux?,,1,1,Manozco,8/29/2016 0:07 +11162987,Why I left SF for LA,https://medium.com/@mrcs/why-i-left-sf-for-la-c629e72dff33#.cn1dhlmf0,6,3,jgh,2/23/2016 22:47 +10391660,Torturing Databases for Fun and Profit (2014) [video],https://www.usenix.org/conference/osdi14/technical-sessions/presentation/zheng_mai,9,1,signa11,10/15/2015 6:27 +11241183,How Mechanical Computers Worked,http://www.popularmechanics.com/technology/a19668/1953-video-how-mechanical-computers-work/,21,1,Kinnard,3/7/2016 20:00 +10262719,ScyllaDB: Drop-in replacement for Cassandra that claims to be 10x faster,http://www.scylladb.com/,114,93,haint,9/23/2015 0:52 +11658273,GCHQ say workers may be safer from hackers if they keep the same login,http://www.dailymail.co.uk/news/article-3578865/Now-experts-say-don-t-change-password-Security-services-say-workers-safer-hackers-login.html,4,2,rayascott,5/9/2016 8:22 +10886516,Show HN: Cindr,http://cindr.com,1,1,mikeem,1/12/2016 10:19 +12036794,The Other Side Is Not Dumb,https://medium.com/@SeanBlanda/the-other-side-is-not-dumb-2670c1294063#.u41byj5mt,4,2,trevin,7/5/2016 14:49 +10651155,Lists,http://avc.com/2015/11/lists-2/,208,99,zbravo,11/30/2015 19:23 +10474416,What are the most stressful places in Boston? Were about to find out,http://www.betaboston.com/news/2015/10/29/citywide-study-will-map-the-effect-of-stress-on-the-brain/?p1=Main_Headline,5,2,robg,10/29/2015 21:24 +11207935,OpenBazaar Released on the Testnet,https://blog.openbazaar.org/openbazaar-released-on-the-testnet/,18,8,mathieutd,3/2/2016 3:32 +10955186,"Show HN: Wallabag, a self-hostable application for saving web pages",https://www.wallabag.org/,135,43,tcit,1/22/2016 20:00 +11889216,Bitcoin crosses $10B market cap again,http://coinmarketcap.com/,126,57,ivank,6/12/2016 17:36 +10983072,Sanctum Sanctorum for Writers,http://www.nytimes.com/1995/05/19/books/sanctum-sanctorum-for-writers.html,1,1,hammerzeit,1/27/2016 20:37 +11098304,"Akka, Haskell, Erlang, Go and .NET Core compared on 1M threads",https://github.com/atemerev/skynet,170,158,atemerev,2/14/2016 14:11 +10179496,Teachers to Become Wealthy,,1,1,Tackettpro,9/6/2015 23:29 +10221109,"Show HN: Yupp, yet another C preprocessor",https://github.com/in4lio/yupp,26,9,in4lio,9/15/2015 15:15 +11477068,Ask HN: What would you ask target audience to build a recruiting website?,,3,5,henryzhang0304,4/12/2016 3:38 +11681454,"Michael Ratner, RIP (Rest in Power)",https://www.eff.org/deeplinks/2016/05/memory-michael-ratner,2,1,DiabloD3,5/12/2016 5:12 +11754721,Please help me to not go broke,http://devblog.avdi.org/2016/05/23/please-help-me-to-not-go-broke/,6,1,doppp,5/23/2016 16:04 +11586523,The real reasons you procrastinate and how to stop,https://www.washingtonpost.com/news/wonk/wp/2016/04/27/why-you-cant-help-read-this-article-about-procrastination-instead-of-doing-your-job/,4,6,saeranv,4/28/2016 4:12 +12128758,Radical Political Decentralization Could End Nation States,https://news.bitcoin.com/radical-decentralization-end-nation/,1,1,posternut,7/20/2016 13:15 +11142125,Ask HN: Is there a benefit is working as fast as you can?,,2,1,TacoWednesdays,2/20/2016 21:53 +10652958,Show HN: Design by Contract for JavaScript,https://github.com/codemix/babel-plugin-contracts,9,1,phpnode,12/1/2015 0:42 +12094020,Surprise: Nintendos next console is the NES,http://arstechnica.com/gaming/2016/07/surprise-nintendos-next-console-is-the-nes/,8,2,shawndumas,7/14/2016 14:22 +12234631,Trying out Keybase,https://anarc.at/blog/2016-03-10-keybase/,3,1,infodroid,8/5/2016 18:19 +11522857,Psychological safety in the InfoSec industry,https://jacobian.org/writing/psychological-safety-in-infosec/,4,1,edward,4/18/2016 20:17 +11893751,CloudMounter: Ultimate cloud manager. Available for preorder with 75% OFF,http://mac.eltima.com/mount-cloud-drive.html,3,3,Dasha_Eltima,6/13/2016 13:40 +10601219,China Has a $1.2 Trillion Ponzi Finance Problem,http://www.bloomberg.com/news/articles/2015-11-19/china-has-a-1-2-trillion-ponzi-finance-problem-as-debt-piles-up,98,48,lelf,11/20/2015 14:16 +11746484,Google tracks 80 percent of all Top 1M domains,http://news.softpedia.com/news/if-you-clicked-anything-online-google-probably-knows-about-it-504262.shtml,2,1,d0mdo0ss,5/21/2016 22:32 +10893032,Show HN: Netflix for Webinars,http://www.prohuddle.com/,4,1,yalimgerger,1/13/2016 8:33 +12574544,Windows 10 has an undocumented certificate pinning feature,https://hexatomium.github.io/2016/09/24/hidden-w10-pins/,119,32,XzetaU8,9/25/2016 9:16 +11318221,"Dear young person, your writing is killing you and you don't know it yet",http://cyberomin.github.io/life/2016/03/19/dear-young-person.html,3,3,cyberomin,3/19/2016 12:08 +10597915,Inside a Hacked SEO Backlink Network,http://www.elite-strategies.com/inside-a-hacked-seo-backlink-network/,67,17,jitbit,11/19/2015 21:41 +11869317,"We won the battle for Linux, but we're losing the battle for freedom",http://www.linuxjournal.com/content/whats-our-next-fight,405,244,alxsanchez,6/9/2016 13:46 +10648831,The C standard formalized in Coq,http://robbertkrebbers.nl/thesis.html,231,109,janvdberg,11/30/2015 11:14 +10915042,Outlier Detection in SQL,https://www.periscopedata.com/blog/outlier-detection-in-sql.html,75,34,vive-la-liberte,1/16/2016 11:42 +10216851,Ten reasons not to use a statically typed functional programming language,http://fsharpforfunandprofit.com/posts/ten-reasons-not-to-use-a-functional-programming-language/,12,4,sea6ear,9/14/2015 19:09 +11346165,I switched to Android after 7 years of iOS,https://joreteg.com/blog/why-i-switched-to-android,841,502,joeyespo,3/23/2016 16:54 +11190841,Judging the Stupidity of GitHub Projects by Stars and Forks,http://ericgreer.info/github/funny/stupidity/2016/02/28/judging-the-stupidity-of-github-projects.html,6,3,temp,2/28/2016 13:17 +10898986,Yoda Is Dead but Star Wars Dubious Lessons Live On,http://nautil.us/blog/yoda-is-dead-but-star-wars-dubious-lessons-live-on,5,1,dnetesn,1/14/2016 1:20 +12257593,"Back to school bill: pencil case, pens, rubber and a £785 iPad",https://www.theguardian.com/education/2016/aug/09/back-to-school-bill-ipad-technology-parents,2,1,edward,8/9/2016 20:45 +11398278,React Native for Visual Studio Code,https://github.com/Microsoft/vscode-react-native,123,26,miguelrochefort,3/31/2016 16:17 +11354837,"Show HN: Browse Slack message history beyond 10K limit, on Free plan",https://slarck.com,4,2,vsiden,3/24/2016 17:50 +10994964,Getting Started with the Arduino Yun (2015),https://www.twilio.com/blog/2015/02/arduino-wifi-getting-started-arduino-yun.html,4,1,gregorymichael,1/29/2016 13:08 +11565114,How to Migrate from Mandrill to SendGrid,https://sendgrid.com/blog/how-to-migrate-from-mandrill-to-sendgrid/,1,1,jontro,4/25/2016 16:01 +10295809,PayPal Support Home Page,https://www.paypal-techsupport.com/,2,3,andygambles,9/29/2015 12:43 +11388560,The Trouble with Tor,https://blog.cloudflare.com/the-trouble-with-tor/,323,172,jgrahamc,3/30/2016 11:51 +12067851,What learning algorithms can predict that our physics theories might not,http://firstestprinciple.com/2016/07/10/learning.html,87,31,ad510,7/10/2016 23:47 +12185916,Go Packaging Proposal Process,https://docs.google.com/document/d/18tNd8r5DV0yluCR7tPvkMTsWD_lYcRO7NhpNSDymRr8,171,93,zalmoxes,7/29/2016 10:37 +10345620,Refactoring to a Happier Development Team,http://blog.fogcreek.com/refactoring-to-a-happier-development-team-interview-with-coraline-ada-ehmke/,66,19,GarethX,10/7/2015 12:45 +10439482,Episode 31Steli EftiClosing Software Sales and Your Mental GameChasing Product,http://www.chasingproduct.com/episodes/episode-31-closing-software-sales-and-your-mental-game-wsteli-efti,5,1,JoshDoody,10/23/2015 16:08 +10373180,IA or AI?,https://vanemden.wordpress.com/2015/10/09/ia-or-ai-2/,103,35,rudenoise,10/12/2015 8:17 +11911474,Ask HN: Migrating from Mac to Windows for development,,13,13,kuon,6/15/2016 19:27 +11534358,"Ford paid $199,950 to tear down a Tesla Model X",http://www.bloomberg.com/news/articles/2016-04-20/ford-pays-199-950-before-taxes-for-tesla-s-64th-model-x-suv,49,68,jasonwen,4/20/2016 13:53 +11225765,Best way to drive traffic to my website?,,1,1,ukideane,3/4/2016 18:27 +10314824,Pushing the Limits of Kernel Networking,http://rhelblog.redhat.com/2015/09/29/pushing-the-limits-of-kernel-networking/,50,10,jsnell,10/1/2015 21:20 +10806982,I did the math: here are the 50 best HackerNews posts of all time,https://medium.com/swlh/best-of-2015-pfffffffft-79d9b014f4de,50,6,fluxic,12/29/2015 15:12 +12088302,JPMorgan Chase raises its minimum wage by 20%,https://www.theguardian.com/business/2016/jul/12/jpmorgan-chase-raises-its-minimum-wage-by-20,2,1,jswny,7/13/2016 18:04 +11070600,Introducing Vector Networks: Generalized path editing for graphics,https://medium.com/figma-design/introducing-vector-networks-3b877d2b864f,198,30,dankohn1,2/10/2016 3:37 +11947340,"Bloody Plant Burger Smells, Tastes and Sizzles Like Meat",http://www.npr.org/sections/thesalt/2016/06/21/482322571/silicon-valley-s-bloody-plant-burger-smells-tastes-and-sizzles-like-meat,667,452,nradov,6/21/2016 17:08 +10353511,MakerBot lays off 20% of its staff for the second time this year,http://www.theverge.com/2015/10/8/9477999/makerbot-layoffs-employees-lawsuit,8,1,SSilver2k2,10/8/2015 15:49 +11705386,The Standschutze Hellriegel Submachine Gun Is a Mystery,https://warisboring.com/the-standschutze-hellriegel-submachine-gun-is-a-mystery-e98f6f66fb92,5,1,bootload,5/16/2016 10:23 +11091735,"Slack now has 2.3MM daily active users, 675K paid seats, and 280 apps",http://venturebeat.com/2016/02/12/slack-now-has-2-3-million-daily-active-users-675000-paid-seats-and-280-apps-in-its-directory/,4,2,dufalop,2/13/2016 0:33 +10609108,New Fn() vs. Object.create(P),http://mrale.ph/blog/2014/07/30/constructor-vs-objectcreate.html,67,20,tambourine_man,11/22/2015 4:40 +11635974,The MBA Guide to Software Development,https://toddschiller.com/the-mba-guide-to-software-development.html,3,5,tschiller,5/5/2016 13:44 +11859996,(2009) Sikuli: using GUI screenshots for search and automation,http://dspace.mit.edu/openaccess-disseminate/1721.1/72686,3,1,GuiA,6/8/2016 4:21 +12265470,"Kim Dotcoms Mega 3, with Bitcoin. Two bad ideas that go worse together",http://rocknerd.co.uk/2016/08/10/kim-dotcoms-mega-3-with-bitcoin-two-bad-ideas-that-go-worse-together/,4,2,davidgerard,8/10/2016 23:49 +11677893,Delivering the Next Generation of Digital Government,http://gsablogs.gsa.gov/gsablog/2016/05/03/delivering-the-next-generation-of-digital-government/,2,1,dikaiosune,5/11/2016 18:29 +10912277,Alphabet Shakes Up Its Robotics Division,http://www.nytimes.com/2016/01/16/technology/alphabet-shakes-up-its-robotics-division.html?smid=tw-nytimestech&smtyp=cur,73,70,cryptoz,1/15/2016 21:34 +11079401,Ask HN: Doing cold emails? helps us prove this concept for closing more leads,,8,12,going_to_800,2/11/2016 10:48 +12470901,What books are on Palantir's reading list,,4,1,marginalcodex,9/10/2016 21:13 +11257344,Understanding ASP.NET Performance for Reading Incoming Data Stackify,http://stackify.com/understanding-asp-net-performance-for-reading-incoming-data/,2,1,spo81rty,3/10/2016 4:10 +10210881,Ask HN: Any tips on finding relevant Shopify/Magento store owners?,,1,1,dmagriso,9/13/2015 10:21 +11157185,GNU C Library 2.23 released,http://lwn.net/Articles/676727/,1,1,OrangeTux,2/23/2016 7:22 +11568149,Anyconnect iOS IPv6 Is Tunneling Traffic to Local,http://imgur.com/a/1pX7u,2,1,hipaulshi,4/25/2016 23:13 +12366498,Ask HN: Whats the best video talk you have ever seen?,,1,1,ThomPete,8/26/2016 14:28 +11233747,More Money Really Does Make Schools Better,http://www.bloombergview.com/articles/2016-03-04/spending-more-money-really-does-make-schools-better,35,41,wslh,3/6/2016 13:50 +10262406,The value of being cavalier,http://thefutureprimaeval.net/the-value-of-being-cavalier/,2,1,jessriedel,9/22/2015 23:23 +10532855,"MI6 (SIS) Is Developing a Node.js, Angular, NoSQL, Hadoop System on Cloudera",https://recruitmentservices.applicationtrack.com/vx/lang-en-GB/mobile-0/appcentre-2/brand-2/candidate/so/pm/1/pl/5/opp/495-Software-Specialists-and-Support-Roles-Ref-495/en-GB,35,47,haser_au,11/9/2015 13:24 +10249308,Facebook Identity Is Extortion and Slander,http://zedshaw.com/2015/09/20/facebook-identity-is-extortion-and-slander/,34,6,pavel_lishin,9/20/2015 21:53 +12262529,The Million-Key Question: Investigating the Origins of RSA Public Keys,https://www.usenix.org/conference/usenixsecurity16/technical-sessions/presentation/svenda,106,33,dc352,8/10/2016 15:37 +11314300,Chatfuel (YC W16) lets publishers and anyone build bots for messaging apps,http://techcrunch.com/2016/03/18/chatfuel-lets-publishers-and-anyone-build-bots-for-messaging-apps/,37,3,never-the-bride,3/18/2016 19:36 +11875391,Raspberry Pi 2 in a Micro Data Centre for Big Data and Video Streaming [pdf],http://eprints.eemcs.utwente.nl/26954/01/20160408_capabilities-raspberry-pi-eprintsversion.pdf,4,2,KingBear,6/10/2016 10:22 +10334806,Commentit: comments on GitHub pages,http://blog.guilro.com/2015/10/01/commentit.io.html,45,7,guilro,10/5/2015 20:46 +12096596,Niantic (Pokemon Go) appears to be hosting the entire world on one server,,2,2,brokelynite,7/14/2016 19:33 +10456017,Survey: Amazon is burying the competition in search,http://bloomreach.com/2015/10/survey-amazon-is-burying-the-competiton-in-search/,11,5,Oatseller,10/27/2015 3:01 +10609919,Agility Follows an S-Curve,https://sandofsky.com/blog/the-s-curve.html,13,5,ingve,11/22/2015 12:54 +12516611,Ask HN: Is it possible for someone to not be cut out for software engineering?,,182,185,conflicted_dev,9/16/2016 19:28 +10626399,Einstein was no lone genius,http://www.nature.com/news/history-einstein-was-no-lone-genius-1.18793,118,61,etiam,11/25/2015 10:09 +12049163,Star Trek and the kiss that changed TV,http://www.bbc.com/culture/story/20160707-star-trek-turns-50-why-it-was-subversive-and-groundbreaking,10,1,benologist,7/7/2016 13:31 +12158068,64-bit ARM desktop hardware?,https://marcin.juszkiewicz.com.pl/2016/07/25/aarch64-desktop-hardware/,243,169,ashitlerferad,7/25/2016 12:11 +10999402,Ask HN: Why is the design of hackernews that terrible?,,5,7,nikobellic,1/29/2016 23:32 +11646877,A template for future news stories about scientific breakthroughs,http://andrewgelman.com/2016/05/04/a-template-for-future-news-stories-about-scientific-breakthroughs/,3,1,tokenadult,5/6/2016 21:36 +10755060,Bug Bounty Ethics,https://www.facebook.com/notes/alex-stamos/bug-bounty-ethics/10153799951452929,114,35,maximilianburke,12/17/2015 22:28 +11216678,The Symptoms Are Not the Disease,http://socrates.berkeley.edu/~kihlstrm/kraepelin.htm,2,1,nashke,3/3/2016 13:30 +10404294,Microsoft Removes the Option to Opt Out of Windows 10 Free Upgrade?,http://techfrag.com/2015/10/16/microsoft-completely-removes-option-opt-windows-10-free-upgrade/,138,106,sanqui,10/17/2015 13:21 +11406835,Show HN: HTTPalooza Ruby's greatest HTTP clients on stage together,http://httpalooza.com,9,2,100k,4/1/2016 17:43 +10458831,A collaborative step-by-step guide to build habits,https://myelin.io/build-habits,1,1,emilwallner,10/27/2015 15:57 +12136916,Snowden to present design for a device that warns if iPhone radios transmitting,https://www.wired.com/2016/07/snowden-designs-device-warn-iphones-radio-snitches/,25,40,phr4ts,7/21/2016 14:08 +10874184,What is WebAssembly? (2015),https://medium.com/javascript-scene/what-is-webassembly-the-dawn-of-a-new-era-61256ec5a8f6,140,66,VeilEm,1/10/2016 4:37 +12254641,How to make the Scala compiler to review your code,http://pedrorijo.com/blog/scala-compiler-review-code-warnings/,1,1,pedrorijo91,8/9/2016 14:21 +11652124,IBM is making a quantum computer available for anyone to play with,http://www.economist.com/news/science-and-technology/21698234-ibm-making-quantum-computer-available-anyone-play-now-try,58,10,cawel,5/8/2016 1:05 +12112764,Using Simulated Annealing to Solve Logic Puzzles,http://blog.pluszero.ca/blog/2016/07/17/using-simulated-annealing-to-solve-logic-puzzles/,171,31,djoldman,7/18/2016 1:25 +11982398,Do-It-Yourself Multiple Sclerosis Treatment,https://hackaday.io/project/11879-do-it-yourself-multiple-sclerosis-treatment,4,1,dammitcoetzee,6/26/2016 19:56 +10924059,"Davos: Robots, new working ways to cost five million jobs by 2020",http://reuters.com/article/idUSKCN0UW0NV,2,1,petethomas,1/18/2016 12:46 +10886671,Facebooks Mentions App Comes to Android,http://techcrunch.com/2016/01/11/facebook-mentions-android/,3,1,ksashikumar,1/12/2016 11:02 +10546717,"Hello, Im Mr. Null. My Name Makes Me Invisible to Computers",http://www.wired.com/2015/11/null/,7,6,devhxinc,11/11/2015 14:12 +12367754,Manhood for Amateurs: The Wilderness of Childhood (2009),http://www.nybooks.com/articles/2009/07/16/manhood-for-amateurs-the-wilderness-of-childhood/,72,52,taylorbuley,8/26/2016 17:22 +11731171,Ask HN: How do I backup logical partition table with dd command?,,1,2,giis,5/19/2016 15:59 +11637558,Goto in Scala (2009),http://blog.richdougherty.com/2009/03/goto-in-scala.html,2,1,ninjakeyboard,5/5/2016 16:34 +11182705,A New Tool Helps Tackle Tricky Salary Negotiations,http://www.fastcompany.com/3057155/the-future-of-work/a-new-tool-helps-tackle-tricky-salary-negotations,12,3,plhjr,2/26/2016 17:37 +10372044,An Introduction to Cybernetics (1957) [pdf],http://pespmc1.vub.ac.be/books/introcyb.pdf,41,16,joubert,10/12/2015 1:36 +10635098,Ask HN: Is there space for one more web chat between IRC and Slack?,,6,4,jampa-uchoa,11/26/2015 22:51 +12244475,Show HN: Publish blog post with a simple Git push,https://github.com/snehesht/blog,96,63,snehesht,8/7/2016 23:58 +11665804,The Controlled Natural Language of Randall Munroe's Thing Explainer [pdf],http://arxiv.org/abs/1605.02457,176,91,tkuhn,5/10/2016 8:05 +10532419,Ask HN: Where can I get interesting data sets online?,,2,2,J-dawg,11/9/2015 11:28 +11007459,Bill of Rights largely embodied uncontroversial traditional rights of Englishmen,https://reason.com/archives/2016/01/31/the-bill-of-rights-revisited,3,1,privong,1/31/2016 18:55 +12121794,How does Linux's perf utility understand stack traces?,http://stackoverflow.com/a/38280294/46799,37,3,shahbazac,7/19/2016 14:01 +11240988,Show HN: Revelatte.com Validate my MVP,,5,4,digitalice,3/7/2016 19:34 +12350715,Four Big Banks to Create a New Digital Currency for Inter-Bank Transactions,https://news.bitcoin.com/four-banks-create-new-digital-currency/,97,61,minamisan,8/24/2016 9:15 +11713506,"Show HN: Easiest Way to Run PHP Apps on AWS, DigitalOcean, Vultr and GCE",https://www.producthunt.com/tech/cloudways-2,7,1,Ayaz,5/17/2016 13:40 +10688522,"Hoverboards are blowing up, US and UK officials warn",http://www.nydailynews.com/news/world/hoverboards-blowing-uk-officials-article-1.2457027,4,1,buserror,12/7/2015 9:29 +11932840,Best language for image processing,,1,2,hoangvukenshin,6/19/2016 13:10 +12036455,Nextcloud 9 does their 2nd release with iOS client and theming,https://nextcloud.com/nextcloud-9-update-brings-security-open-source-enterprise-capabilities-and-support-subscription-ios-app/,20,2,jospoortvliet,7/5/2016 14:00 +11474000,Programs must be written for people to read,http://raganwald.com/2016/03/17/programs-must-be-written-for-people-to-read.html,10,3,braythwayt,4/11/2016 18:36 +11930331,"Show HN: Ergohacking, Filter for ergonomic hacking keyboards",http://www.ergohacking.com,13,7,Muted,6/18/2016 19:56 +12292574,"Whats more valuable, your idea or your secret?",https://bitsapphire.com/your-idea-or-your-secret/,23,13,bitsapphire,8/15/2016 18:53 +11030074,The Fine Brothers thought they had found the future of YouTube. They were wrong,https://www.washingtonpost.com/news/the-intersect/wp/2016/02/02/after-youtube-outrage-the-fine-bros-decide-not-to-trademark-react/?tid=pm_lifestyle_pop_b,2,1,randycupertino,2/3/2016 21:52 +11713008,Participate in the Pokémon GO Field Test,http://www.pokemon.com/us/pokemon-news/participate-in-the-pokemon-go-field-test/,1,1,puddintane,5/17/2016 12:30 +12319651,Most Extensive Reengineering of an Organisms Genetic Code Now Complete,http://www.scientificamerican.com/article/most-extensive-reengineering-of-an-organism-s-genetic-code-now-complete/,14,4,JumpCrisscross,8/19/2016 12:58 +10633165,Researchers poke hole in custom crypto built for Amazon Web Services,http://arstechnica.com/science/2015/11/researchers-poke-hole-in-custom-crypto-protecting-amazon-web-services/,52,1,fufufanatic,11/26/2015 14:58 +11698198,First Programming Language Designed Specifically for the Phone,http://www.fastcodesign.com/3059843/making-it/the-clever-ux-behind-hopscotchs-programming-iphone-app-for-kids/8,2,1,juanplusjuan,5/14/2016 21:49 +11545194,Ask HN: Are your tickets highly nested?,,1,2,virgil_disgr4ce,4/21/2016 20:41 +10861633,Feedback Needed:A task list that asks Q's what to do next for each task?,,1,2,sbartsa,1/7/2016 23:27 +12516112,"Nassim Nicholas Taleb: ""The Intellectual yet Idiot"" Class",https://medium.com/@nntaleb/the-intellectual-yet-idiot-13211e2d0577#.nn139jr77,12,5,Jerry2,9/16/2016 18:24 +11702847,Astrophysics Source Code Library,http://ascl.net/,85,4,hackuser,5/15/2016 21:26 +12038109,Illinois Man Charged with Desecrating US Flag After Posting Photos on Facebook,http://www.forbes.com/sites/fernandoalfonso/2016/07/04/illinois-man-charged-with-desecrating-american-flag-after-posting-photos-on-facebook/,1,2,jackgavigan,7/5/2016 17:36 +11071996,"Cysignals: signal handling (SIGINT, SIGSEGV, ) for calling C from Python",https://github.com/sagemath/cysignals,4,1,martinralbrecht,2/10/2016 11:28 +12452116,Why is printing B dramatically slower than printing #? (2014),http://stackoverflow.com/questions/21947452/why-is-printing-b-dramatically-slower-than-printing?noredirect=1&lq=1,324,54,retox,9/8/2016 11:46 +11140934,"Juggle monkey, juggle Apple Watch app",https://itunes.apple.com/us/app/juggle-monkey-juggle/id1071244509?mt=8,1,1,pleshis,2/20/2016 17:19 +11514106,Apple's amusingly round reuse figures,http://blog.jgc.org/2016/04/apples-amusingly-round-reuse-figures.html,205,91,jgrahamc,4/17/2016 10:44 +11139230,Show HN: Pnyxter a video app for debates and discussions,http://www.pnyxter.com,5,4,srikieonline,2/20/2016 7:04 +11323180,Apple vs. The F.B.I.: How the Case Could Play Out,http://www.nytimes.com/2016/03/21/technology/apple-vs-the-fbi-how-the-case-could-play-out.html,66,32,dankohn1,3/20/2016 15:02 +10920433,60% of working software engineers do Not have a CS degree,http://techcrunch.com/2016/01/12/unlocking-trapped-engineers/,55,60,gyosko,1/17/2016 18:49 +11106354,Graph.no Weather forecast via finger (2014),https://0p.no/2014/12/13/graph_no___weather_forecast_via_finger.html,26,6,yitchelle,2/15/2016 21:58 +10250724,Kim Dotcom US extradition hearing begins,http://www.bbc.com/news/world-asia-34311267,3,1,martin_,9/21/2015 6:40 +10828644,Nobody Wants Bitcoin,https://medium.com/@mattprd/nobody-wants-bitcoin-ae86f9677dd#.bsbfrmib0,2,2,exolymph,1/2/2016 23:49 +11457964,SpaceX Successfully Lands Rocket on Drone Ship,http://www.bloomberg.com/news/articles/2016-04-08/spacex-attempts-to-land-a-rocket-on-a-drone-ship-for-the-fifth-time,63,11,Amorymeltzer,4/8/2016 21:06 +12342679,"NASA Released Over 10,000 Photos from the Apollo Moon Mission",https://m.thevintagenews.com/2015/10/05/so-nasa-got-sick-of-all-that-conspiracy-thing-and-released-over-10000-photos-from-the-apollo-moon-mission/,22,5,CarolineW,8/23/2016 10:48 +10718256,After Capitalism?,https://nplusonemag.com/issue-24/the-intellectual-situation/after-capitalism/,55,84,kawera,12/11/2015 17:10 +11582958,One Regulation Is Painless A Million of Them Hurt,http://www.bloombergview.com/articles/2016-04-27/one-regulation-is-painless-a-million-of-them-hurt,106,137,jseliger,4/27/2016 18:09 +10343137,Math and Computer Wizards Now Billionaires Thanks to Quant Trading,http://www.forbes.com/sites/nathanvardi/2015/09/29/rich-formula-math-and-computer-wizards-now-billionaires-thanks-to-quant-trading-secrets/,42,14,6502nerdface,10/6/2015 23:24 +12572423,"If the Internet had a README.md, what would it say?",http://readme.md/,2,1,guessmyname,9/24/2016 20:10 +12336599,Ask HN: PhantomJS or Protractor?,,2,1,alistproducer2,8/22/2016 14:38 +11898664,"Computer Crash Wipes Out Records for 100,000 Air Force Investigations",http://www.defenseone.com/technology/2016/06/computer-crash-wipes-out-years-air-force-investigation-records/129049/,10,4,hackuser,6/13/2016 23:38 +12343421,"Ask HN: I don't need money, so what's the benefit to Y Combinator?",,1,2,forgottenacc56,8/23/2016 13:13 +11284972,Show HN: Turn NPM installs into a Space Invaders style game in your terminal,https://www.npmjs.com/nplaym,105,34,massivedragon,3/14/2016 19:33 +12574409,Surprising stats about child carseats,https://www.ted.com/talks/steven_levitt_on_child_carseats#t-423575,1,1,dpatru,9/25/2016 8:06 +11432092,John Carmack on Functional Programming,http://gamasutra.com/view/news/169296/Indepth_Functional_programming_in_C.php,7,2,ktRolster,4/5/2016 16:57 +12152915,Linux Game Porting and Day of the Tentacle Remastered,http://cheesetalks.net/porting_dott.php,51,4,ingve,7/24/2016 10:22 +10546439,Fighting Over Fatigue,http://mosaicscience.com/chronic-fatigue-syndrome-me,21,22,tomkwok,11/11/2015 13:03 +11609980,vdev in Devuan replaces Debian udev,https://git.devuan.org/unsystemd/vdev,3,2,chris_wot,5/2/2016 8:33 +10506944,"Show HN: The Jizz Quiz: NSFW Game 1 Porn Movie Title, 3 Thumbnails. Which One?",http://fuky.tv/jizzquiz/,6,1,rodstod,11/4/2015 14:54 +10599898,"Ask HN: Best way to make a service like Uber, but for logistics?",,1,2,itsashis4u,11/20/2015 6:14 +12363622,Babili: An ES6+ aware minifier based on the Babel toolchain,https://github.com/babel/babili,9,1,amasad,8/26/2016 0:59 +10800881,Free Springer math books,https://gist.github.com/bishboria/8326b17bbd652f34566a,322,68,DanielRibeiro,12/28/2015 12:50 +12108336,Microsoft Orleans An approach to building distributed applications in .NET,http://dotnet.github.io/orleans/,175,65,hitr,7/16/2016 23:48 +11679297,Ask HN: Android AudioRecord forcing VOICE_CALL to MIC audio source,,1,2,NLL_APPS,5/11/2016 21:08 +12080802,Squirrel Programming Language,https://developer.valvesoftware.com/wiki/Squirrel,81,50,joubert,7/12/2016 17:23 +10607477,Utah junior high school asks students to draw 'terrorism propaganda poster',http://kutv.com/news/local/utah-junior-high-school-asks-students-to-draw-terrorism-propaganda-poster,2,1,shawndumas,11/21/2015 18:08 +10390428,Yukon Moose Hunting,http://theroadchoseme.com/yukon-moose-hunting,9,2,grecy,10/15/2015 0:05 +11639570,Apple and SAP Team Up for Blockbuster Partnership,http://fortune.com/2016/05/05/apple-sap-partnership/,2,1,augb,5/5/2016 20:50 +12546542,Homebrew 1.0.0,http://brew.sh/2016/09/02/homebrew-1.0.0/,902,245,robin_reala,9/21/2016 9:01 +11925394,We said: We love what were doing and shut down our startup,https://entrepreneurs.maqtoob.com/my-cofounder-said-i-love-what-were-doing-and-we-shut-down-our-startup-80d5e710c2b2#.uypwo0jle,17,8,chlestakoff,6/17/2016 20:37 +11238667,BBVA acquires Finnish banking startup Holvi,https://info.bbva.com/en/news/general/bbva-acquires-finnish-banking-start-holvi/,63,15,Sujan,3/7/2016 13:15 +11268524,San Jose Is the Most Forgettable Major American City,http://fivethirtyeight.com/features/san-jose-is-the-most-forgettable-major-american-city/?ex_cid=538twitter,3,1,jseliger,3/11/2016 18:29 +10425844,Automatic image categorization and tagging with Imagga,http://cloudinary.com/blog/automatic_image_categorization_and_tagging_with_imagga,6,1,orlyb,10/21/2015 14:56 +11803538,PayPal halts operations in Turkey,http://en.webrazzi.com/2016/05/30/paypal-halts-operations-in-turkey/,8,3,cettox,5/30/2016 22:17 +11236612,The Demographics of Innovation in the United States,https://itif.org/publications/2016/02/24/demographics-innovation-united-states,24,7,npalli,3/7/2016 1:56 +10276836,The life and death of a laptop battery,http://people.skolelinux.org/pere/blog/The_life_and_death_of_a_laptop_battery.html,81,58,wielebny,9/25/2015 7:53 +10916911,"Ask HN: Your favorite resources to improve critical thinking, imagination?",,3,1,vijayr,1/16/2016 21:25 +11561770,How Kalman Filters Work,http://www.anuncommonlab.com/articles/how-kalman-filters-work/,377,29,slackpad,4/24/2016 23:06 +12081337,Facebook faces $1B lawsuit for providing 'material support' to Hamas,http://www.theverge.com/2016/7/12/12158292/facebook-lawsuit-israel-hamas-palestinian-attacks,3,2,jswny,7/12/2016 18:34 +10487654,People in Sweden are hiding cash in their microwaves,http://business.financialpost.com/business-insider/people-in-sweden-are-hiding-cash-in-their-microwaves-because-of-a-fascinating-and-terrifying-economic-experiment,42,48,lelf,11/1/2015 19:09 +10695831,Li-Fi ain't a Wi-Fi killer just yet,http://e27.co/otr-stop-burying-problems-li-fi-save-headline-20151204/?utm_source=hackernews&utm_medium=org&utm_campaign=seed,2,1,playmelikealyra,12/8/2015 11:43 +10379517,Ask HN: How did you find your last job?,,11,22,yarper,10/13/2015 10:42 +12550532,"Five-Second Rule for Food on Floor Is Untrue, Study Finds",http://www.nytimes.com/2016/09/20/science/five-second-rule.html,6,2,utternerd,9/21/2016 17:50 +11365068,A Conversation on Privacy,https://theintercept.com/a-conversation-about-privacy/,8,3,nomoba,3/26/2016 9:53 +10333755,Alan Kay: Computer Applications A Medium for Creative Thought (1972) [video],https://www.youtube.com/watch?v=WJzi9R_55Iw,113,15,jarmitage,10/5/2015 18:30 +10377599,"Twitter suspends Deadspin, SBNation accounts over apparent copyright violations",http://www.geekwire.com/2015/twitter-suspends-deadspin-sbnation-accounts-over-apparent-copyright-violations/,2,1,ryanwhitney,10/12/2015 23:57 +12219562,Silicon Valley's elite tribe for young entrepreneurs,http://qz.com/663493/the-price-of-admission-into-summit-series-silicon-valleys-elite-tribe-for-young-entrepreneurs-vulnerability/,1,1,etendue,8/3/2016 17:09 +12191473,"Single Minecraft universe with infinite worlds, larger than Earth",https://minecraftly.com/,1,1,viet_nguyen,7/30/2016 3:25 +10267708,More Startup Metrics,http://a16z.com/2015/09/23/16-more-metrics/,6,1,dshankar,9/23/2015 19:56 +10729437,Ask HN: Good programmable robot kit for teens?,,51,37,fenier,12/14/2015 4:35 +12487180,"Ask HN: Would you be interested in an embeddable, lightweight subset of Python?",,5,8,parnor,9/13/2016 11:47 +10393485,How to make sure nothing gets done at work,http://fortune.com/2015/09/30/workplace-bureaucracy-simple-sabotage/,13,3,jaoued,10/15/2015 14:52 +10204588,"At WeWork, an Idealistic Startup Clashes with Its Cleaners",http://www.nytimes.com/2015/09/13/business/at-wework-an-idealistic-startup-clashes-with-its-cleaners.html,3,1,kanamekun,9/11/2015 16:26 +10842381,Three Years as a One-Man Startup,https://medium.com/@SteveRidout/3-years-as-a-one-man-startup-489db6e48f2a#.5x1jua8ac,718,218,steveridout,1/5/2016 10:00 +10684892,Palm: I'm Ready to Wallow Now (2013),http://www.osnews.com/story/26838/Palm_I_m_ready_to_wallow_now,19,5,ascertain,12/6/2015 10:33 +11470087,Lektor Static Content Management System Version 2.0 Released,https://www.getlektor.com/blog/2016/4/lektor-2-released/,102,14,the_mitsuhiko,4/11/2016 7:24 +11973477,"Heroin epidemic is at 1996 levels,?but the conversation is different",https://medium.com/@meaganday/the-heroin-epidemic-is-at-1996-levels-but-the-conversation-is-radically-different-321aa1ec8c1b#.py67sno60,2,1,_acme,6/24/2016 21:06 +10802033,Show HN: Where SF public transit breaks rules,http://oddball.eskibars.com/#speed-heatmap,2,2,eskibars,12/28/2015 16:57 +10349831,MedicalBnB Shop healthcare providers around the world,http://www.medicalbnb.com,7,1,jbueza,10/7/2015 23:18 +12461489,The hard part of helping survivors recover comes months later,http://www.vox.com/2015/9/11/9301089/911-survivor-recovery,99,28,dwaxe,9/9/2016 12:30 +11600800,An end to bill shock as EU mobile roaming charges are slashed,http://www.theguardian.com/money/2016/apr/30/end-bill-shock-eu-mobile-roaming-charges-slashed-phone,71,77,YeGoblynQueenne,4/30/2016 7:34 +11608511,Feinstein-Burr: The Bill That Bans Your Browser,https://www.justsecurity.org/30740/feinstein-burr-bill-bans-browser/,281,120,throwaway2016a,5/2/2016 0:21 +12354097,Computational Complexity versus the Singularity,http://www.gwern.net/Complexity%20vs%20AI,16,1,gwern,8/24/2016 18:19 +10554359,London-based Improbable unveils SpatialOS for distributed simulation,http://www.alphr.com/technology/1001967/improbable-the-british-tech-startup-with-massive-ambition,68,25,ggambetta,11/12/2015 16:59 +11387906,Fun with Lambdas: C++14 Style,http://cpptruths.blogspot.com/2014/03/fun-with-lambdas-c14-style-part-1.html,4,1,hellofunk,3/30/2016 8:57 +11265783,The Open API Initiative,https://openapis.org/,80,21,xrorre,3/11/2016 10:32 +10555625,Neurotic Styles of Management (2010),https://gbr.pepperdine.edu/2010/08/seven-neurotic-styles-of-management/,7,2,colund,11/12/2015 19:50 +12241775,"Microsoft, Sony, and others still use illegal warranty-void-if-removed stickers",http://www.extremetech.com/gaming/233120-microsoft-sony-and-other-manufacturers-still-use-illegal-warranty-void-if-removed-stickers,175,55,doener,8/7/2016 11:29 +10600878,Use of High-Tech Brooms Divides Low-Tech Sport of Curling,http://www.nytimes.com/2015/11/20/sports/facing-control-issues-curling-draws-line-at-high-tech-brooms.html,1,1,mhb,11/20/2015 12:41 +11940476,People for the Ethical Treatment of Reinforcement Learners,http://petrl.org/,1,2,jimfleming,6/20/2016 19:08 +10227671,Why I wouldnt use rails for a new company,http://blog.jaredfriedman.com/2015/09/15/why-i-wouldnt-use-rails-for-a-new-company/,2,3,pbreit,9/16/2015 16:15 +11576190,VPN User Arrested,http://fried.com/news/vpn-user-arrested/,6,1,denzil_correa,4/26/2016 22:16 +11022664,Its not that theyre stupid; its just that they dont know anything,http://consiliumeducation.com/itm/2016/01/26/the-learning-wedge-2/,13,3,tokenadult,2/2/2016 21:14 +10997154,Robomongo 10 days left,http://robomongo.org/,4,2,yaddayadda,1/29/2016 18:15 +11589373,Benefits of 1 Minute of All-Out Effort during Exercise,http://well.blogs.nytimes.com/2016/04/27/1-minute-of-all-out-exercise-may-equal-45-minutes-of-moderate-exertion/,175,142,tosseraccount,4/28/2016 15:04 +10929491,"Windows, quo vadis?",https://medium.com/binary-passion/windows-quo-vadis-7b9ed7ba2a0a,3,2,datalist,1/19/2016 9:14 +10371787,Analyse Asia 66: How will you measure your life with James Allworth,http://analyse.asia/2015/10/12/episode-66-how-will-you-measure-your-life-with-james-allworth/,1,1,bleongcw,10/12/2015 0:18 +11459593,Terrifyingly Convenient,http://www.slate.com/articles/technology/cover_story/2016/04/alexa_cortana_and_siri_aren_t_novelties_anymore_they_re_our_terrifyingly.html,66,42,DiabloD3,4/9/2016 2:21 +10207952,OCaml's 20th Anniversary,https://sympa.inria.fr/sympa/arc/caml-list/2015-09/msg00079.html,166,34,amirmc,9/12/2015 12:53 +10921145,Coffee: A Journey,http://www.stevestreeting.com/2016/01/17/coffee-a-journey/,3,1,braithers,1/17/2016 21:24 +12152492,The Slave Who Stole the Confederate Codes and a Rebel Warship,http://www.thedailybeast.com/articles/2016/07/23/the-slave-who-stole-the-confederate-codes-and-a-rebel-warship.html,121,22,wallflower,7/24/2016 6:41 +12266349,$3.6M Bounty to Recover Stolen Bitcoin,http://www.coindesk.com/bitfinex-6000-btc-bounty-stolen-bitcoin/,3,1,mrb,8/11/2016 4:54 +10807344,"For your iOS App: Hire a Ninja, Not a Mixed Martial Artist",https://medium.com/ninjarobot-apps/hire-a-ninja-not-a-mixed-martial-artist-caed5f2c8c80#.mrnezcmrp,4,3,ajmarquez,12/29/2015 16:15 +10483719,Victor Lustig Man who sold the Eiffel tower,https://en.wikipedia.org/wiki/Victor_Lustig,7,1,prhomhyse,10/31/2015 19:07 +12203245,How They Work: WWI Firearms Animations,http://imgur.com/a/FCjOH,9,1,awqrre,8/1/2016 15:40 +10834298,Big RAM laptops are abundant as Lenovo does its Skylake refresh,http://arstechnica.com/gadgets/2016/01/big-ram-laptops-are-abundant-as-lenovo-does-its-skylake-refresh/,65,80,ingve,1/4/2016 6:23 +11304118,U.S. army developing encrypted radar waveform,https://thestack.com/world/2016/03/16/u-s-army-developing-encrypted-radar-waveform/,60,40,chewymouse,3/17/2016 13:19 +12383012,The Myth of RAM (2014),http://www.ilikebigbits.com/blog/2014/4/21/the-myth-of-ram-part-i,593,277,ddlatham,8/29/2016 16:27 +10560213,Ask HN: What is this black bar?,,3,1,shade23,11/13/2015 15:12 +11643711,Why You Cant Lose Weight on a Diet,http://www.nytimes.com/2016/05/08/opinion/sunday/why-you-cant-lose-weight-on-a-diet.html,4,2,steve_w,5/6/2016 13:16 +11219165,Comment on Estimating the reproducibility of psychological science,http://projects.iq.harvard.edu/files/psychology-replications/files/gilbert_king_pettigrew_wilson_2016_with_appendix.pdf?m=1456973260,2,1,jermaink,3/3/2016 19:09 +12575573,EliasDB A graph-based database,https://github.com/krotik/eliasdb,44,3,kawera,9/25/2016 14:51 +10644819,WebGL water scene,https://c1.goote.ch/c8a05c9a6d4a4929a3fa50e6ebdee0c3.scene/,344,112,svenfaw,11/29/2015 15:36 +12447711,Selflessness and Startups,http://dantawfik.com/selflessness?yc-hnews,3,1,rpkoven,9/7/2016 21:08 +11911869,StartSSL starts LetsEncrypt competitor product,https://www.startssl.com/StartEncrypt,36,26,jakobbuis,6/15/2016 20:19 +12149685,Nokia to make smartphone comeback with duo of Android 7.0 Nougat handsets,http://www.theinquirer.net/inquirer/news/2465691/nokia-to-make-smartphone-comeback-with-duo-of-android-70-nougat-handsets,10,2,walterbell,7/23/2016 15:07 +11848762,Cadillac Bets on Virtual Dealerships,http://www.wsj.com/article_email/cadillac-bets-on-virtual-dealerships-1465172482-lMyQjAxMTE2MzAwNjIwOTYyWj,16,11,prostoalex,6/6/2016 17:54 +10758333,Computer Scientists Are Stunned by This Chicago Professors New Proof,http://www.chicagomag.com/city-life/October-2015/Why-Computer-Scientists-and-Mathematicians-Are-Stunned-By-a-Chicago-Professors-New-Proof/,5,2,lseemann,12/18/2015 13:41 +11277172,How does perf work? (in which we read the Linux kernel source),http://jvns.ca/blog/2016/03/12/how-does-perf-work-and-some-questions/,78,7,bartbes,3/13/2016 10:40 +12413005,"Introducing Ellp, a New Device Helper",http://www.ellp.com,1,1,EllpLimited,9/2/2016 13:49 +11804737,Disruption is not a strategy,http://reactionwheel.net/2016/05/disruption-is-not-a-strategy.html,94,34,digisth,5/31/2016 5:14 +10421100,Product Design of the Stripe Dashboard for iPhone,https://medium.com/swlh/exploring-the-product-design-of-the-stripe-dashboard-for-iphone-e54e14f3d87e,84,11,benjamindc,10/20/2015 19:09 +12403854,The next version of Fedora picks up Rust,http://www.infoworld.com/article/3114475/open-source-tools/the-next-version-of-fedora-picks-up-rust.html,91,17,neverminder,9/1/2016 9:04 +10381914,Emacs maintainer steps down,https://lists.gnu.org/archive/html/emacs-devel/2015-09/msg00849.html,241,71,zeveb,10/13/2015 17:16 +10913604,Raru: Run as random user,https://github.com/teran-mckinney/raru,65,24,subbz,1/16/2016 1:06 +11297015,Ask HN: What books do you wish your manager would read?,,50,55,a3n,3/16/2016 13:20 +11310605,F# and GPUs for Life Insurance Modeling,https://devblogs.nvidia.com/parallelforall/gpus-dsls-life-insurance-modeling,78,14,jmartinpetersen,3/18/2016 8:49 +10624019,Ask HN: How to value small side projects? Can you sell them?,,9,9,vonklaus,11/24/2015 22:27 +11665351,"Show HN: An interactive, in-editor keyboard shortcuts tutorial for Sublime Text",https://sublimetutor.com,4,2,jaip,5/10/2016 5:39 +12140014,A Cute Internet Star Flirts. All He Wants Is Your Password,http://www.nytimes.com/2016/07/21/arts/music/hacked-by-jack-johnson.html,52,26,jaynos,7/21/2016 20:57 +11784811,Ripple is a Silicon Valley-based startup making milk from peas,http://techcrunch.com/2016/05/25/ripple-is-a-silicon-valley-based-startup-making-milk-from-peas/,6,2,spoofball,5/27/2016 9:17 +10409781,Beavers: A Potential Missing Link in California's Water Future,http://www.waterdeeply.org/articles/2015/10/8753/beavers-potential-missing-link-californias-water-future/,31,3,curtis,10/18/2015 21:04 +10294307,An Edo-Era Japanese World Map,http://www.atlasobscura.com/articles/the-maps-that-helped-the-citizens-of-a-locked-country-see-the-world,14,1,Petiver,9/29/2015 1:47 +12384101,Agora.io Is Poised to Dominate Real-Time Voice and Video Apps,http://www.forbes.com/sites/jlim/2016/08/26/agora-io-is-poised-to-dominate-real-time-voice-and-video-apps/#21b032776046,1,1,Mimiron,8/29/2016 18:37 +11559040,Solar Impulse lands in California after Pacific crossing,http://www.bbc.com/news/science-environment-36122618,90,45,frgewut,4/24/2016 9:00 +10711885,Mountain-climbing addresses for code lines,http://ansuz.sooke.bc.ca/entry/290,16,2,nkurz,12/10/2015 17:28 +10305925,Sean Parkers Brigade App Take Political Positions,https://www.brigade.com,1,1,luisrudge,9/30/2015 18:14 +12542239,Accenture breaks blockchain taboo with editing system,http://www.reuters.com/article/us-tech-blockchain-accenture-idUSKCN11Q1S2,3,2,adventured,9/20/2016 18:57 +11071628,The History of Joy Divisions Unknown Pleasures Album Art,http://adamcap.com/2011/05/19/history-of-joy-division-unknown-pleasures-album-art/?utm_source=feedly,5,1,ric3rcar,2/10/2016 9:43 +12080921,How to Negotiate with a Liar,https://hbr.org/2016/07/how-to-negotiate-with-a-liar,2,1,succinct_ideas,7/12/2016 17:38 +12011138,Google's My Activity reveals just how much it knows about you,https://www.theguardian.com/technology/2016/jun/29/google-reveals-information-it-knows-about-you-my-activity,4,1,betolink,6/30/2016 19:46 +12063006,How 'Pokémon GO' Can Lure More Customers to Your Local Business,http://www.forbes.com/sites/jasonevangelho/2016/07/09/how-pokemon-go-can-lure-more-customers-to-your-local-business/#234b323d7fe4,44,22,nimos,7/9/2016 19:57 +12137437,Statement on DMCA Lawsuit,http://blog.cryptographyengineering.com/2016/07/statement-on-dmca-lawsuit.html,45,3,hardmath123,7/21/2016 15:22 +11255217,CRIU 2.0 release,https://lists.openvz.org/pipermail/criu/2016-March/026045.html,19,2,conductor,3/9/2016 19:36 +10498040,Money Flooding Out of Canada at Fastest Pace in Developed World,http://www.bloomberg.com/news/articles/2015-11-02/money-flooding-out-of-canada-at-fastest-pace-in-developed-world,138,67,kspaans,11/3/2015 7:09 +10875233,Show HN: Timetrabbble the best dribbble shots on this day over time,http://www.timetrabbble.com,3,1,jeromedl,1/10/2016 13:31 +12556822,The Code Coverage Paradox,https://blog.decaresystems.ie/2016/09/22/the-code-coverage-paradox/,2,1,yawz,9/22/2016 13:56 +11690544,Americans Dont Miss Manufacturing They Miss Unions,http://fivethirtyeight.com/features/americans-dont-miss-manufacturing-they-miss-unions/,9,6,marricks,5/13/2016 14:19 +10822642,Tesla Model S Burns During Supercharging in Norway: Reports,http://jalopnik.com/tesla-model-s-burns-to-a-crisp-during-supercharging-in-1750581400,33,16,punnerud,1/1/2016 18:14 +12238024,The Guardian Release Progressive Web App to Coincide with Rio Games,https://riorun.theguardian.com/,18,10,rich_harris,8/6/2016 13:17 +12358638,How to Crawl the Web Politely with Scrapy,https://blog.scrapinghub.com/2016/08/25/how-to-crawl-the-web-politely-with-scrapy/,139,41,stummjr,8/25/2016 13:01 +10913026,Bitcoin Rich List (Just Found This),http://www.bitcoinrichlist.com/top100,3,1,LukeFitzpatrick,1/15/2016 23:17 +12412034,Website builder market research,https://docs.google.com/spreadsheets/d/1v724O2CtUTSNQQEk_-aARA_iZVwnaDjm56NOK4AAVjg/edit?usp=sharing,3,1,adibalcan,9/2/2016 10:20 +12297530,EquationGroup Tool Leak ExtraBacon Demo,https://xorcatt.wordpress.com/2016/08/16/equationgroup-tool-leak-extrabacon-demo/,147,33,ianhawes,8/16/2016 14:07 +10697787,What if? On the value of counterfactual history,https://aeon.co/essays/what-if-historians-started-taking-the-what-if-seriously,31,10,benbreen,12/8/2015 17:19 +12423976,Ask HN: Why should open source support be free? I don't think it should.,,2,3,hoodoof,9/4/2016 12:26 +10687113,Woman who has never felt pain experiences it for the first time,https://www.newscientist.com/article/dn28623-woman-who-has-never-felt-pain-experiences-it-for-the-first-time,50,16,kawera,12/6/2015 23:05 +10595338,Scams work,https://medium.com/@BMasson/scams-work-40b89febce85#.6bxf7fgzl,2,1,nichademus,11/19/2015 15:43 +11275392,Node.js Internet of Things system to control cheap 433Mhz-based devices,https://github.com/roccomuso/iot-433mhz,4,1,roccomuso,3/12/2016 23:57 +11476726,Arthur Whitney's short list comparison of J to Lisp/Scheme/Clojure,,5,3,eggy,4/12/2016 2:11 +10458788,Diet and health. What can you believe: or does bacon kill you?,https://thewinnower.com/papers/diet-and-health-what-can-you-believe-or-does-bacon-kill-you,2,1,jmnicholson,10/27/2015 15:51 +10631008,Why the focus should be mass transit instead of tolls to fix traffic congestion,http://economicjustice.ca/2015/11/23/why-the-focus-should-be-mass-transit-instead-of-tolls-to-relieve-traffic-congestion-1/,138,147,tristanj,11/26/2015 2:50 +10367750,Show HN: Simple Easy Flashcards for Students and Teachers,http://mysimpleflashcards.com,7,4,BradleyCulley,10/11/2015 2:09 +10813455,Android-x86 dev offers $50k for proof of contribution by Kickstarted ConsoleOS,https://lists.01.org/pipermail/android-ia/2015-December/001107.html,216,38,sandGorgon,12/30/2015 18:31 +10431959,Mobirise Free Website Creator Software v2.3 Is Out,http://mobirise.com,2,1,Mobirise,10/22/2015 13:12 +12000893,Show HN: Monkberry a JavaScript library for building web user interfaces,http://monkberry.js.org,115,39,medv,6/29/2016 11:30 +12061416,Study finds volume discounts dont increase profitability for video games,https://news.uchicago.edu/article/2016/07/08/economics-study-finds-volume-discounts-dont-increase-profitability-video-games,4,1,jt2190,7/9/2016 14:42 +11459779,Not an ex-parrot,http://www.economist.com/news/science-and-technology/21695858-bizarre-bird-will-have-all-its-surviving-members-genomes-sequenced-not,14,3,HandleTheJandal,4/9/2016 3:38 +11036156,Ask HN: Palantir Software Engineering,,30,20,turd_ferguson,2/4/2016 18:44 +11103873,Building an online bookshelf with Go,https://github.com/shekhargulati/52-technologies-in-2016/blob/master/07-hugo/README.md,6,1,ingve,2/15/2016 15:37 +10722607,Show HN: Backbone.bootstrap,https://github.com/TruffleMuffin/backbone.bootstrap,3,1,TruffleMuffin,12/12/2015 12:59 +11788041,Andrew Ng calls Tesla irresponsible for shipping an imperfect autopilot,https://www.facebook.com/andrew.ng.96/posts/1025649884157585,51,61,impish19,5/27/2016 18:48 +10965884,Yahoo shuts down BOSS API,https://developer.yahoo.com/boss/search/,2,1,solveforall,1/25/2016 6:22 +11851103,Tesla and Tucker Similarities Between Automakers,http://www.popularmechanics.com/cars/a21094/what-tesla-needs-to-learn-from-tucker/,33,25,jonbaer,6/6/2016 22:46 +12316734,Low-income students can soon get federal aid to attend coding schools,https://techcrunch.com/2016/08/18/low-income-students-will-soon-be-able-to-get-federal-aid-to-attend-coding-bootcamps/,28,48,michaelrkn,8/18/2016 22:21 +10798964,Comcast turns on first gigabit cable modem in Philadelphia,http://www.engadget.com/2015/12/27/comcast-intros-first-gigabit-cable-modem/,1,1,rmason,12/27/2015 22:20 +11283909,Ask HN: Ever built any integrations between a SaaS product and other products?,,5,6,carmenapostu,3/14/2016 16:57 +10779392,A Google-Ford Self-Driving Car Project Makes Perfect Sense,http://www.wired.com/2015/12/a-google-ford-self-driving-car-project-makes-perfect-sense/,1,1,ourmandave,12/22/2015 18:29 +12554300,Show HN: The 'stackoverflow' for startup marketing,https://capitalandgrowth.org/index.html,3,1,jkuria,9/22/2016 4:13 +10921060,"How El Chapo Was Finally Captured, Again",http://www.nytimes.com/2016/01/17/world/americas/mexico-el-chapo-sinaloa-sean-penn.html,5,2,howrude,1/17/2016 21:04 +11396425,Developers can run Bash Shell and user-mode Ubuntu Linux binaries on Windows 10,http://www.hanselman.com/blog/DevelopersCanRunBashShellAndUsermodeUbuntuLinuxBinariesOnWindows10.aspx,4,1,jsingleton,3/31/2016 11:47 +10814906,US military shelves Google robot plan,http://www.bbc.com/news/technology-35201183,4,2,jnord,12/30/2015 22:45 +11677044,"Show HN: Upload and share files without limits Secure, anonymous, free",https://uploadfiles.io/,10,5,rsbadger,5/11/2016 17:01 +12557943,Getting Press for Your Startup,http://www.themacro.com/articles/2016/09/getting-press-for-your-startup/,286,32,endswapper,9/22/2016 16:23 +11054647,Why do Chinese websites look so busy?,https://econsultancy.com/blog/67466-why-do-chinese-websites-look-so-busy,79,58,cstuder,2/7/2016 20:27 +11185629,"VCs leave Sand Hill Road, seek out new hot spots",http://www.mercurynews.com/business/ci_29566101/vcs-leave-sand-hill-road-seek-out-new,5,2,prostoalex,2/27/2016 1:39 +10651545,Detroit tries unconventional approach to restoring its housing market,https://www.washingtonpost.com/realestate/detroit-tries-unconventional-approach-to-restoring-its-housing-market/2015/11/26/a98db95a-7670-11e5-b9c1-f03c48c96ac2_story.html,24,5,e15ctr0n,11/30/2015 20:35 +10763349,A new way to make laser-like beams using 250x less power (2014),http://ns.umich.edu/new/releases/22218-a-new-way-to-make-laser-like-beams-using-250x-less-power,3,2,robin_reala,12/19/2015 12:01 +12240386,Apple and the Gun Emoji,http://blog.emojipedia.org/apple-and-the-gun-emoji/,59,67,firloop,8/6/2016 23:36 +12398497,Homo Deus by Yuval Noah Harari How data will destroy human freedom,https://www.theguardian.com/books/2016/aug/24/homo-deus-by-yuval-noah-harari-review,100,29,jordn,8/31/2016 14:23 +12058713,WWDC16 Video Transcripts,https://developer.apple.com/news/?id=07082016a,55,8,ingve,7/8/2016 21:17 +11828636,Emoji only social network,https://emoj3.com,1,2,darylrowland,6/3/2016 6:06 +10919641,"Why You Love That Ikea Table, Even If It's Crooked (2013)",http://www.npr.org/2013/02/06/171177695/why-you-love-that-ikea-table-even-if-its-crooked,29,27,pykello,1/17/2016 15:12 +11578907,Scientists develop transparent wood,http://pubs.acs.org/doi/abs/10.1021/acs.biomac.6b00145,2,2,Fjolsvith,4/27/2016 9:31 +12566500,August 2016 Lisp Game Jam Postmortem,http://stevelosh.com/blog/2016/08/lisp-jam-postmortem/,109,17,nodivbyzero,9/23/2016 17:44 +10976207,On Being Relentlessly Resourceful (HT Paul Graham),https://blog.trytomo.com/on-being-relentlessly-resourceful-your-company-culture-starts-day-1-17a35bc93c90,2,1,saddington,1/26/2016 21:24 +12578028,Appropriate Uses for SQLite,https://sqlite.org/whentouse.html,125,56,ftclausen,9/25/2016 23:27 +11277802,What Happens When the Surveillance State Becomes an Affordable Gadget?,http://www.bloomberg.com/news/articles/2016-03-10/what-happens-when-the-surveillance-state-becomes-an-affordable-gadget,131,32,sergeant3,3/13/2016 14:30 +10223735,New York Mayor De Blasio to Require Computer Science in Schools,http://www.nytimes.com/2015/09/16/nyregion/de-blasio-to-announce-10-year-deadline-to-offer-computer-science-to-all-students.html?emc=edit_na_20150915&nlid=21175094&ref=headline&_r=0,100,80,mcgwiz,9/15/2015 23:21 +10327827,"Ask HN: What happened to the monthly Best Laptop"" threads",,6,8,o_s_m,10/4/2015 15:50 +11991479,Why Google Stores Billions of Lines of Code in a Single Repository,http://cacm.acm.org/magazines/2016/7/204032-why-google-stores-billions-of-lines-of-code-in-a-single-repository/fulltext,391,218,signa11,6/28/2016 4:21 +11486063,Ask HN: KYC regs and SVB,,2,3,danieltillett,4/13/2016 6:01 +11327648,Ask HN: How do you find unused CSS?,,12,10,tmaly,3/21/2016 12:44 +10304987,A9ChipSource: small open-source iOS utility to identify A9 foundry,https://github.com/WDUK/A9ChipSource,37,23,throwaway000002,9/30/2015 16:14 +11036994,SDCC Small Device C Compiler,http://sdcc.sourceforge.net/,51,23,vmorgulis,2/4/2016 20:35 +11602494,Language Creation Society Files Brief Opposing Ownership of Klingon,https://torrentfreak.com/language-creation-society-joins-klingon-copyright-battle-160428/,3,1,johan_larson,4/30/2016 17:06 +11893756,Implementing Queues for Event-Driven Programs,http://ithare.com/implementing-queues-for-event-driven-programs/,80,27,ingve,6/13/2016 13:41 +12382719,GitHub Issues Do's and Don'ts,https://medium.com/@jhchen/45-github-issues-dos-and-donts-dfec9ab4b612/,71,22,martyhu,8/29/2016 15:52 +11477211,"Genetic superheroes survive despite devastating mutations, study finds",http://www.seattletimes.com/seattle-news/health/genetic-superheroes-survive-despite-devastating-mutationsseattle-led-study-finds/,2,1,zaroth,4/12/2016 4:13 +10724098,Introduction to A* algorithm,http://www.redblobgames.com/pathfinding/a-star/introduction.html,3,1,wh-uws,12/12/2015 20:52 +10402711,FreeNAS 10 alpha,http://www.freenas.org/whats-new/2015/10/announcing-freenas-10-alpha.html,9,1,phren0logy,10/16/2015 23:47 +11773568,OpenAI Team Update,https://openai.com/blog/team-update/,125,25,sama,5/25/2016 22:15 +11920030,On Snappy and Flatpak,https://www.happyassassin.net/2016/06/16/on-snappy-and-flatpak-business-as-usual-in-the-canonical-propaganda-department/,33,4,qubit23,6/17/2016 0:50 +12204676,Cracking the Adventure Time cipher,http://aaronrandall.com/blog/cracking-the-adventure-time-cipher/,241,24,aaronrandall,8/1/2016 18:22 +11793214,TeamViewer may have been hacked,https://www.teamviewer.com/en/company/press/statement-on-potential-teamviewer-hackers/,4,1,TheGuyWhoCodes,5/28/2016 20:08 +11608182,The Once and Future IBM Platform,http://www.nextplatform.com/2016/04/26/future-ibm-platform/,5,1,jonbaer,5/1/2016 22:40 +11466357,Aerospace America: A Survey of Possible Interstellar Propulsion Methods [pdf],http://www.aerospaceamerica.org/Documents/Aerospace_America_PDFs_2016/April2016/Feature1_Proxima_AA_April2016.pdf,32,6,Osiris30,4/10/2016 14:54 +10812319,"GaugeMap: Thousands of river gauges, each with a Twitter account",http://www.gaugemap.co.uk/,94,32,ColinWright,12/30/2015 15:11 +11302432,Ask HN: Did Comcast just screw me over?,,10,11,dan-silver,3/17/2016 3:39 +11804249,Ask HN: Has Dropbox been compromised recently?,,2,1,alrtd82,5/31/2016 2:41 +11147223,Petition to support Apple and other manufacturers against backdoors,https://petitions.whitehouse.gov/petition/apple-privacy-petition,5,1,woobar,2/21/2016 23:24 +11537720,What Alzheimers Feels Like from the Inside,https://news.ycombinator.com/submit,2,1,dnetesn,4/20/2016 21:00 +12274092,"Cloud Atlas 'astonishingly different' in US and UK editions, study finds",https://www.theguardian.com/books/2016/aug/10/cloud-atlas-astonishingly-different-in-us-and-uk-editions-study-finds,18,5,edward,8/12/2016 8:27 +11049137,Encrypted libraries leak lots of information in Seafile,https://github.com/haiwen/seafile/issues/350,79,11,networked,2/6/2016 18:56 +11271683,JPHP PHP on the JVM,http://j-php.net/,3,1,eatonphil,3/12/2016 7:08 +11565966,"Show HN: 400 ASCII Cows in Docker, the Hard Way",http://blog.alexellis.io/cows-on-docker/,1,1,alexellisuk,4/25/2016 17:53 +10308774,Ask HN: Declarative database migrations?,,11,8,beefsack,10/1/2015 2:02 +10910652,"100 years ago, American women competed in Venus de Milo competitions",http://www.atlasobscura.com/articles/100-years-ago-american-women-competed-in-serious-venus-de-milo-lookalike-contests,1,1,Amorymeltzer,1/15/2016 17:19 +10791763,Open Labware: 3-D Printing Your Own Lab Equipment,http://journals.plos.org/plosbiology/article?id=10.1371%2Fjournal.pbio.1002086,33,2,DiabloD3,12/25/2015 17:52 +11006915,UCOP Ordered Spyware Installed on UC Data Networks,http://utotherescue.blogspot.com/2016/01/ucop-ordered-spyware-installed-on-uc.html,329,157,firloop,1/31/2016 16:47 +10578278,Ask HN: Want to help make PGP-encrypting all chats effortless?,,5,2,55555,11/17/2015 0:07 +10918419,Making heavy elements by colliding neutron stars (2013),http://arstechnica.com/science/2013/07/making-heavy-elements-by-colliding-neutron-stars/,4,1,bootload,1/17/2016 5:29 +12452499,Ask HN: What happened to Facebook graph search?,,114,35,_kyran,9/8/2016 12:58 +10611504,The Fixed Price of Coca-Cola from 1886 to 1959,https://en.wikipedia.org/wiki/The_fixed_price_of_Coca-Cola_from_1886_to_1959,103,38,dpflan,11/22/2015 21:12 +11373435,MicroG Project: A re-implementation of Googles Android apps and libraries,https://microg.org/,123,16,ProfDreamer,3/28/2016 9:58 +11970005,Ask HN: Are there any tools to encrypt and store data on Amazon Cloud Drive?,,1,4,codezero,6/24/2016 14:29 +10940732,Why FedEx Should Be Scared of Amazon,https://www.linkedin.com/pulse/why-fedex-ups-should-scared-amazon-matthew-hertz,4,1,lumens,1/20/2016 19:38 +11081598,Ask HN: Any drawbacks to Sublime Text 3 update?,,7,10,hanniabu,2/11/2016 17:40 +10400498,How do you put a price tag on a video game when its the first of its kind?,http://qz.com/524323/how-do-you-put-a-price-on-a-video-game-when-its-the-first-of-its-kind/,2,2,imanewsman,10/16/2015 16:44 +10992243,VMware's Stumbling Cloud Adventure,http://chrisdodds.net/blog/vmwares-cloud-adventure,65,39,liquidchicken,1/28/2016 23:07 +11196589,MIT EECS Undergraduate Experience Survey,http://eecs-survey.scripts.mit.edu/report/pdf/,5,1,jimsojim,2/29/2016 17:03 +11690325,Show HN: Launched.io Discover the latest startups launched,https://launched.io,1,3,cezarfloroiu,5/13/2016 13:39 +10338121,Global nuclear facilities 'at risk' of cyber attack,http://www.bbc.com/news/technology-34423419,40,21,SimplyUseless,10/6/2015 11:33 +12353603,Tagschat will change soon,http://www.tagschat.com,1,1,tagschat,8/24/2016 17:21 +11331108,Silicon Start up Play video games for money BETA,http://LuXurn.Com,2,4,LuXurn,3/21/2016 19:31 +11061236,Ask HN: Do You Want a Fastlane-centric CI Service?,,1,3,mskierkowski,2/8/2016 22:09 +11386215,Uber recruits engineers with coding puzzles during rides,http://www.engadget.com/2016/03/28/uber-code-on-the-road-hacking-challenge/,2,1,adefa,3/30/2016 0:54 +11284370,Anonymous FasTrak account,http://goldengate.org/tolls/iwanttoremainanonymous.php,2,2,yegle,3/14/2016 18:04 +10616465,Berlin social housing winning the residential race,https://www.thesaturdaypaper.com.au/2015/11/21/berlin-social-housing-winning-the-residential-race/14480244002645,66,68,Mz,11/23/2015 19:00 +11782186,4 bit computer built from discrete transistors,https://hackaday.io/project/665-4-bit-computer-built-from-discrete-transistors,91,27,danielam,5/26/2016 22:25 +11374909,The Ars review: Oculus Rift expands PC gaming past the monitors edge,http://arstechnica.com/gaming/2016/03/the-ars-review-oculus-rift-expands-pc-gaming-past-the-monitors-edge/,54,6,davidiach,3/28/2016 15:43 +10244144,"Ask HN: Can this way we support publishers and readers, and also get rid of ads?",,1,8,techaddict009,9/19/2015 12:54 +11955612,"I have found a new way to watch TV, and it changes everything",https://www.washingtonpost.com/news/wonk/wp/2016/06/22/i-have-found-a-new-way-to-watch-tv-and-it-changes-everything/,14,12,6stringmerc,6/22/2016 17:36 +12235257,Show HN: Nosy Imgur for Tinder and texting,https://nosy.chat,4,3,Liron,8/5/2016 19:47 +11859221,HuffPo: Violence Against Trump Is Logical,http://www.huffingtonpost.com/jesse-benn/sorry-liberals-a-violent-_b_10316186.html,4,1,zo1,6/8/2016 0:45 +10873712,Language support for functions that return multiple values,http://arcanesentiment.blogspot.com/2016/01/many-happy-returns.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+ArcaneSentiment+(Arcane+Sentiment),26,4,jsnell,1/10/2016 1:30 +10959678,C++ Coroutines a negative overhead abstraction,https://www.youtube.com/watch?v=_fu0gx-xseY,1,1,petke,1/23/2016 19:33 +11749745,Tesla Powerwall: Not Just for Solar,http://www.jlconline.com/how-to/electrical/tesla-powerwall-not-just-for-solar_o,1,1,chmaynard,5/22/2016 18:52 +10313386,Crossing the river with TLA+,https://lorinhochstein.wordpress.com/2014/06/04/crossing-the-river-with-tla/,12,1,pron,10/1/2015 18:23 +12006103,Introduction to asynchronous JavaScript,http://tutorials.pluralsight.com/front-end-javascript/introduction-to-asynchronous-javascript,14,1,prtkgpt,6/30/2016 1:56 +10903667,Big Data Term or Star Wars Name?,https://christina68.typeform.com/to/Y4RlzI,5,1,RickDelgado,1/14/2016 19:18 +12029411,Rotterdam's floating dairy farm project,https://www.theguardian.com/sustainable-business/2016/jul/04/do-cows-get-seasick-rotterdam-floating-dairy-farm-netherlands,43,33,kawera,7/4/2016 8:12 +10802954,Science Fiction Stories with Good Astronomy and Physics: A Topical Index (2014),http://www.astrosociety.org/education/astronomy-resource-guides/science-fiction-stories-with-good-astronomy-physics-a-topical-index/,82,25,hownottowrite,12/28/2015 19:48 +11574947,Ask HN: What is the delay field for?,,2,1,daveloyall,4/26/2016 19:42 +12207933,Rust on BBC micro:bit,https://github.com/SimonSapin/rust-on-bbc-microbit/blob/master/README.md,206,41,robin_reala,8/2/2016 5:07 +10735702,"For the first time, less than 10% of the world is living in extreme poverty",https://www.washingtonpost.com/news/worldviews/wp/2015/10/05/for-the-first-time-less-than-10-percent-of-the-world-is-living-in-extreme-poverty-world-bank-says/,103,56,prostoalex,12/15/2015 3:22 +11017911,"Schizophrenia, Hubris and Science",http://blogs.discovermagazine.com/neuroskeptic/2016/02/01/schizophrenia-hubris-science/,27,10,DiabloD3,2/2/2016 6:26 +11967637,Bluehost Review The King of Hosting Services,,1,1,newsorator,6/24/2016 7:52 +12010559,A Natural Language User Interface Is Just a User Interface,https://medium.com/@honnibal/a-natural-language-user-interface-is-just-a-user-interface-4a6d898e9721#.2dqs24po6,2,1,snake117,6/30/2016 18:16 +11402548,"Regis McKenna's 1976 Notebook and the Invention of Apple Computer, Inc",http://www.fastcompany.com/3058227/regis-mckennas-1976-notebook-and-the-invention-of-apple-computer-inc,69,5,technologizer,4/1/2016 4:11 +10558730,Firefox shrinking customization capabilities,https://bugzilla.mozilla.org/show_bug.cgi?id=1222546,2,1,fenesiistvan,11/13/2015 9:02 +12486757,"Millennials Don't Care About Owning Cars, and Car Makers Can't Figure Out Why",https://www.fastcoexist.com/3027876/millennials-dont-care-about-owning-cars-and-car-makers-cant-figure-out-why,66,184,amelius,9/13/2016 10:10 +10822376,Ask HN: Courses like Coursera or Udemy but without the videos?,,108,55,rgovind,1/1/2016 17:05 +11978781,Spoiled Rotten (2012),http://www.newyorker.com/magazine/2012/07/02/spoiled-rotten,51,30,Rolpa,6/26/2016 0:25 +11578869,Macroscopic quantum entanglement achieved at room temperature,http://advances.sciencemag.org/content/1/10/e1501015.full,13,2,Fjolsvith,4/27/2016 9:23 +11225090,SeedRamp,http://www.seedramp.com/,200,94,endtwist,3/4/2016 17:05 +10963922,"Somebody was on Sulawesi before 118,000 years ago",http://johnhawks.net/weblog/reviews/archaeology/early/indonesia/van-den-burgh-sulawesi-talepu-2016.html,52,2,diodorus,1/24/2016 20:37 +11847824,BuzzFeed ends Republican ad deal over 'hazard' Trump,http://www.bbc.com/news/world-us-canada-36462756,8,1,rsanaie,6/6/2016 16:11 +12097280,Consumer Reports wants Tesla to disable autopilot,http://www.consumerreports.org/tesla/tesla-autopilot-too-much-autonomy-too-soon/,2,1,Animats,7/14/2016 21:24 +12309593,Alibaba Cloud Free Trial,https://intl.aliyun.com/campaign/free-trial,4,1,fitzwatermellow,8/18/2016 0:24 +11267694,Ask HN: Is Silicon Valley slowing down?,,4,8,ceallaigh49364,3/11/2016 16:48 +10357778,How to get real legitimate feedback on your resume,,2,1,max0563,10/9/2015 2:25 +11150848,Does it violate federal export law if a website publishes CAD files of firearms?,http://arstechnica.com/tech-policy/2016/02/does-it-violate-federal-export-law-if-a-website-publishes-cad-files-of-firearms/,11,1,pavornyoh,2/22/2016 14:10 +10874294,Viskell: Visual programming meets Haskell,https://github.com/wandernauta/viskell,91,21,bojo,1/10/2016 5:22 +12102287,Introducing the worlds first beer brewed by artificial intelligence,http://intelligentx.ai/,2,1,miraj,7/15/2016 16:52 +12068051,Support the FSF compliant EOMA68 modular libre computing device,https://www.crowdsupply.com/eoma68/micro-desktop,14,2,berkeleynerd,7/11/2016 0:33 +11840415,Ask HN: How to know when you're intermediate level?,,19,5,curiousgal,6/5/2016 11:08 +10752020,Ask HN: What search engine do you use?,,1,1,zingplex,12/17/2015 15:33 +11674179,MAMBO: A Low-Overhead Dynamic Binary Modification Tool for ARM,https://github.com/beehive-lab/mambo,5,1,ashitlerferad,5/11/2016 11:05 +10577175,Ancient Board Game Found in Looted China Tomb,http://www.livescience.com/52808-ancient-board-game-found-in-china-tomb.html,40,11,prismatic,11/16/2015 21:09 +11562414,Dark Patterns by the Boston Globe,https://rationalconspiracy.com/2016/04/24/dark-patterns-by-the-boston-globe/,726,317,apsec112,4/25/2016 3:32 +11595468,Google CEO: 'Devices' will be things of the past,http://www.usatoday.com/story/tech/news/2016/04/28/google-ceo-predicts-ai-fueled-future/83651232/,6,2,trekkering,4/29/2016 13:14 +12405326,Pantsuit: The Hillary Clinton UI Pattern Library,https://medium.com/git-out-the-vote/pantsuit-the-hillary-clinton-ui-pattern-library-238e9bf06b54,41,23,rimunroe,9/1/2016 14:09 +11259392,The future of computing: After Moore's law,http://www.economist.com/news/leaders/21694528-era-predictable-improvement-computer-hardware-ending-what-comes-next-future,93,64,martincmartin,3/10/2016 14:35 +12235626,Why is Apple so afraid of a little picture of a gun?,http://www.foxnews.com/opinion/2016/08/05/why-is-apple-so-afraid-little-picture-gun.html,1,1,cft,8/5/2016 20:44 +11186008,Gitolite's domain was snatched up,http://gitolite.com?oops,3,3,jamestanderson,2/27/2016 3:58 +11597692,Sockbin A service for testing your websockets,http://sockb.in/,2,1,NeonMaster,4/29/2016 18:25 +10217555,Federal Court Invalidates Gag Order on National Security Letter Recipient,https://www.calyxinstitute.org/news/federal-court-invalidates-11-year-old-fbi-gag-order-national-security-letter-recipient-nicholas,264,44,jeo1234,9/14/2015 21:23 +12255090,"Facebook Blocks Ad Blockers, but It Strives to Make Ads More Relevant",http://www.nytimes.com/2016/08/10/technology/facebook-blocks-ad-blockers-but-it-strives-to-make-pop-ups-more-relevant.html,2,2,jefflinwood,8/9/2016 15:13 +11018130,Graphene optical lens 200 nm thick breaks the diffraction limit,http://www.swinburne.edu.au/news/latest-news/2016/01/focus-on-results.php,182,53,srikar,2/2/2016 7:52 +12360662,NSO Group's iPhone Zero-Days used against a UAE Human Rights Defender,https://citizenlab.org/2016/08/million-dollar-dissident-iphone-zero-day-nso-group-uae/,1055,241,dropalltables,8/25/2016 17:10 +11326384,Brutalist Websites,http://brutalistwebsites.com/,2,1,Dramatize,3/21/2016 5:20 +11845755,Show HN: Import Balsamiq Mockups into CanvasFlip using this simple interface,http://canvasflip.com/balsamiq-and-canvasflip-utility-tool.php,1,1,vipul4vb,6/6/2016 10:45 +10463943,Shit Linus Says,https://gumroad.com/l/prQdM,3,2,signa11,10/28/2015 12:10 +11298778,CodinGame Become a Better Developer,https://www.codingame.com/ide/39565972565e53b92ba44dd3b43975a35594685,5,2,ot,3/16/2016 16:56 +11570174,Intels Contributions to the Windows Bridge for iOS: The Accelerate Framework,https://blogs.windows.com/buildingapps/2016/04/25/intels-contributions-to-the-windows-bridge-for-ios-the-accelerate-framework/,15,5,mnkypete,4/26/2016 8:07 +10567561,"Beware of ads that use inaudible sound to link your phone, TV, tablet, and PC",http://arstechnica.com/tech-policy/2015/11/beware-of-ads-that-use-inaudible-sound-to-link-your-phone-tv-tablet-and-pc/,2,1,dmmalam,11/14/2015 22:31 +11391813,"To Woo Apple, Foxconn Bets $3.5B on Sharp",http://www.nytimes.com/2016/03/31/business/dealbook/foxconn-sharp.html?_r=0,5,1,biot,3/30/2016 18:39 +11521009,GoBGP: BGP Implemented in Go,https://github.com/osrg/gobgp,168,126,ryancox,4/18/2016 16:11 +10803812,Dallas Natives Bring Parking into the 21st Century Through ParkHub,http://www.dallasinnovates.com/dallas-natives-bring-parking-into-the-21st-century-through-parkhub/,11,5,PK12,12/28/2015 22:33 +11620520,Show HN: Coir for Vimeo - free portfolio website builder,https://coir.io/,1,1,Magnasoma,5/3/2016 13:42 +12065645,The Paradox of Disclosure,http://www.nytimes.com/2016/07/10/opinion/sunday/the-paradox-of-disclosure.html,55,14,danso,7/10/2016 14:17 +10697994,Show HN: Build one file automatically,https://github.com/hbbio/build,3,3,hbbio,12/8/2015 17:47 +11096202,Printing Money,http://www.newyorker.com/magazine/2015/11/23/printing-money-books-john-cassidy,2,1,jgalt212,2/13/2016 23:20 +12298678,Show HN: New time and daylight application,https://chronozone.xyz/,150,33,dassreis,8/16/2016 16:45 +12290814,"Hyper_, the container-native cloud, is now generally available",https://blog.hyper.sh/hyper-is-generally-available.html,16,2,scprodigy,8/15/2016 14:54 +11658212,Check-trustpaths: find and check code signatures in the PGP web of trust,https://gitlab.com/jnxx/check-trustpaths,36,12,jnxx,5/9/2016 7:59 +11963899,Sheryl Sandberg on the Myth of the Catty Woman,http://www.nytimes.com/2016/06/23/opinion/sunday/sheryl-sandberg-on-the-myth-of-the-catty-woman.html,2,1,tysone,6/23/2016 20:00 +10264437,The Chemistry and Psychology of Turning Water into Wine,http://nautil.us/blog/the-chemistry-and-psychology-of-turning-water-into-wine,20,3,dnetesn,9/23/2015 11:48 +11420237,How do you like this site? Need honest feedback,http://www.bridezilla-game.com/,1,2,trufflepiggames,4/4/2016 8:28 +11102679,Mondo bank taking £1m crowdfunding investment,https://getmondo.co.uk/blog/2016/02/15/invest-in-mondo/,81,67,trstnthms,2/15/2016 11:05 +11635300,Apple has killed off support for WebObjects,http://money.cnn.com/2016/05/04/technology/steve-jobs-apple-webobjects/index.html?iid=ob_homepage_tech_pool,3,1,baldfat,5/5/2016 11:57 +11655359,Number plate recognition with Tensorflow,https://matthewearl.github.io/2016/05/06/cnn-anpr/,238,43,pizza,5/8/2016 19:26 +11759493,Do not move from Mandrill to Sparkpost,https://twitter.com/aytekintank/status/735002971466047488,2,1,aytekin,5/24/2016 7:04 +11521285,"Forget Encryption, WhatsApp Is Vulnerable to Phishing Attacks",http://www.nextbigwhat.com/whatsapp-phishing-attacks-297/,3,3,mawalu,4/18/2016 16:48 +10254624,The NES that never was. Utilizing the entire NES color palette,http://www.duelinganalogs.com/article/the-nes-that-never-was/,2,1,eflowers,9/21/2015 19:36 +11867651,Microsoft has published its own distribution of FreeBSD 10.3,http://www.theregister.co.uk/2016/06/09/microsoft_freebsd/,5,2,bootload,6/9/2016 5:00 +10992319,Transfer Image Style -Combining Markov Random Fields and CNN for Image Synthesis,http://arxiv.org/abs/1601.04589,2,1,dionys,1/28/2016 23:19 +11865895,AI based personal assistan,https://inbot.io,3,2,adulakis,6/8/2016 21:39 +11242986,React v15.0 Release Candidate,https://facebook.github.io/react/blog/2016/03/07/react-v15-rc1.html,28,4,taejavu,3/8/2016 1:20 +10221707,A Hello World Server in Python,https://camo.githubusercontent.com/e56234bd7f5ccb5768978d3f23eb94c1d15430ed/68747470733a2f2f7261772e6769746875622e636f6d2f74696d6f74687963726f736c65792f6875672f646576656c6f702f6578616d706c652e676966,4,1,timothycrosley,9/15/2015 16:59 +11918576,Stanford University Confirms Democratic Election Fraud,http://yournewswire.com/stanford-university-confirm-democratic-election-fraud/,25,5,eamann,6/16/2016 20:15 +12425720,Amazon and Wells Fargo part ways on private student loan deal,https://www.washingtonpost.com/news/grade-point/wp/2016/08/31/amazon-and-wells-fargo-part-ways-on-private-student-loan-deal/,36,7,e15ctr0n,9/4/2016 17:54 +10310628,Is Your Financial Adviser Making Money Off Your Bad Investments?,http://mobile.nytimes.com/2015/09/30/opinion/is-your-financial-adviser-making-money-off-your-bad-investments.html?referer=,37,49,colinprince,10/1/2015 12:21 +12021044,"Protect yourself from spam, bots and phishing disposable email",http://die.life?x=3,4,2,code2crud,7/2/2016 2:04 +11422012,Microsoft embraces Linux way too late,http://www.infoworld.com/article/3050845/microsoft-windows/microsoft-embraces-linux-way-too-late.html,2,1,alxsanchez,4/4/2016 14:17 +12287819,"The FCC Can't Save Community Broadband, But We Can",https://www.eff.org/deeplinks/2016/08/community-broadband-and-fcc-net-neutrality-still-begins-home,95,45,dwaxe,8/14/2016 23:36 +10935321,Execute BASIC Programs in Minecraft,http://www.gamnesia.com/news/a-fan-has-developed-a-way-to-write-and-execute-basic-programs-in-minecraft,48,12,SteBu,1/20/2016 0:58 +10390961,Entrepreneur claims to have undergone renegade anti-aging gene therapy,http://www.technologyreview.com/news/542371/a-tale-of-do-it-yourself-gene-therapy/,5,1,rfjedwards,10/15/2015 2:24 +11288113,Google Cloud shell Command injection,http://www.pranav-venkat.com/2016/03/command-injection-which-got-me-6000.html,3,1,cujanovic,3/15/2016 7:47 +11604373,Only One of Six Air Force F-35s Could Actually Take Off During Testing,http://fortune.com/2016/04/28/f-35-fails-testing-air-force/,9,1,pohl,5/1/2016 0:48 +10794951,AWS mistakes to avoid,https://cloudonaut.io/5-aws-mistakes-you-should-avoid/,538,261,hellomichibye,12/26/2015 19:28 +11490811,Ask HN: How do I learn JavaScript after using it for years,,1,4,Zyst,4/13/2016 18:20 +10183238,Why we should stop Facebook building an AI,http://www.forbes.com/sites/theopriestley/2015/09/07/musk-and-hawking-are-wrong-we-should-fear-facebook-building-an-artificial-intelligence/,2,5,judgementday,9/7/2015 21:56 +11404760,Ask HN: Do you have a personal copy of CV?,,3,4,mapcars,4/1/2016 13:56 +11334412,Looking up cache missing on Google Images shows photos of Hillary Clinton,https://www.google.com/search?site=&tbm=isch&source=hp&biw=960&bih=1101&q=cache+missing&oq=cache+missing&gs_l=img.3..0i24j0i10i24.4019.5387.0.5531.13.13.0.0.0.0.182.1252.6j6.12.0....0...1ac.1.64.img..1.12.1249.XsGH954uxD4,6,3,verandaguy,3/22/2016 4:22 +10319564,"LibreSSL, and the new libtls API",http://www.openbsd.org/papers/libtls-fsec-2015/mgp00001.html,185,67,glass-,10/2/2015 16:36 +12022855,Programmer,,2,3,matsemela,7/2/2016 15:24 +12518762,Apple sends survey over headphone jack to MacBook Pro users,https://9to5mac.com/2016/09/14/headphone-jack-removed-from-macbook-pro/,3,2,bootload,9/17/2016 2:15 +12286883,Ask HN: Ever launched a failed desktop app?,,9,3,vram22,8/14/2016 19:15 +10510512,FastMail acquires Pobox and Listbox,http://blog.fastmail.com/2015/11/03/fastmail-acquires-pobox-and-listbox/,76,21,dgurv,11/4/2015 23:17 +11649142,A list of command line tools for manipulating structured text data,https://github.com/dbohdan/structured-text-tools,177,55,networked,5/7/2016 11:09 +12002335,Books to Prepare Programming/Coding Interviews,http://javarevisited.blogspot.com/2016/06/top-5-books-for-programming-coding-interviews-best.html,7,1,javinpaul,6/29/2016 15:38 +12079160,#HugOps: A culture of empathy,https://www.pagerduty.com/blog/hugops-in-practice/,1,1,grep4master,7/12/2016 14:19 +10213103,The Next Genocide,http://www.nytimes.com/2015/09/13/opinion/sunday/the-next-genocide.html,2,1,xiler,9/13/2015 23:19 +12331378,A History of Dark Matter,https://arxiv.org/abs/1605.04909,28,1,maverick_iceman,8/21/2016 16:09 +11753959,"Why is Haskell seldom used, despite being considered a wonderful language?",https://www.quora.com/Why-is-Haskell-considered-such-a-nice-and-great-language-yet-is-not-being-used/answer/Justin-Leitgeb-1?srid=uEb5&share=1,2,5,jsl,5/23/2016 14:14 +11466373,'Data Selfie' App Shows You Exactly Who Facebook Thinks You Are,http://motherboard.vice.com/read/data-selfie-app-shows-you-exactly-who-facebook-thinks-you-are,2,1,Gys,4/10/2016 14:57 +10426934,From Email Introductions to Addressing Diversity Challenges in Tech,https://medium.com/@natalielchan/from-email-introductions-to-addressing-diversity-challenges-in-tech-23f96d19de63?source=hn-120209531b9c-1445440825370,18,1,davemorro,10/21/2015 17:26 +11138242,Why Our Intuition About Sea-Level Rise Is Wrong,http://nautil.us/issue/33/attraction/why-our-intuition-about-sea_level-rise-is-wrong,111,26,dnetesn,2/20/2016 1:47 +10203207,Can your tests survive the coming mutant apocalypse?,http://www.bobbylough.com/2015/06/can-your-tests-survive-coming-mutant.html,3,2,hibobbo,9/11/2015 12:17 +10406370,Ask HN: Freelancers outside US and EU. How do you find quality clients?,,2,1,maouida,10/17/2015 22:15 +10256419,Fukushima,http://www.podniesinski.pl/portal/fukushima/,404,211,JoshGlazebrook,9/22/2015 3:01 +12201765,13.3 inch Android e-reader,https://www.indiegogo.com/projects/13-3-inch-android-e-reader#/,2,2,chrsw,8/1/2016 12:17 +10516649,Mysterious electric car maker Faraday Future will spend $1B on a US factory,http://www.theverge.com/2015/11/5/9674314/faraday-future-electric-car-1-billion-factory,3,1,kirk21,11/5/2015 22:41 +11485876,A good idea with bad usage: /dev/urandom,http://insanecoding.blogspot.com/2014/05/a-good-idea-with-bad-usage-devurandom.html,10,1,beefhash,4/13/2016 5:04 +11769251,WikiLeaks releases Trade in Services Agreement (TiSA) documents,https://wikileaks.org/tisa/,146,18,styx31,5/25/2016 12:25 +12172438,Mercedes-Benz shows off the first fully electric heavy urban transport truck,https://techcrunch.com/2016/07/27/mercedes-benz-shows-off-the-first-fully-electric-heavy-urban-transport-truck/,268,197,felixbraun,7/27/2016 13:14 +10561740,Ask HN: Are unicode symbols allowed in domain names?,,1,2,shade23,11/13/2015 19:07 +12277688,Ask HN: Why no regex AND?,,3,11,_acme,8/12/2016 18:23 +10427606,Ubuntus path to convergence,http://insights.ubuntu.com/2015/10/20/ubuntus-path-to-convergence,1,1,smacktoward,10/21/2015 18:45 +11054334,"Show HN: Tracing You, a website that tries to see where its visitors are",http://tracingyou.bengrosser.com,65,16,forgetcolor,2/7/2016 19:26 +12475590,This software startup can tell your boss if youre looking for a job,https://www.washingtonpost.com/news/on-leadership/wp/2016/09/06/this-software-startup-can-tell-your-boss-if-youre-looking-for-a-job-2/,22,9,protomyth,9/11/2016 20:41 +11185298,"San Francisco Wants Homeless to Leave Tent Camp, but Some Vow to Fight",http://www.nytimes.com/2016/02/27/us/san-francisco-wants-homeless-to-leave-tent-camp-but-some-vow-to-fight.html,5,1,NearAP,2/27/2016 0:08 +11114986,Show HN: Show HN Chat,https://discord.gg/0piovD3zkjwdotzl,9,3,olalonde,2/17/2016 3:14 +10487290,Show HN: My failed-wannabe-saas-startup project Beyondpad going open source,https://github.com/artursgirons/beyondpad,51,15,dzjosjusuns,11/1/2015 17:52 +10713027,The Best Time of the Year to Trick Your Psychology into Success,https://www.linkedin.com/pulse/best-time-year-trick-your-psychology-success-sidar-ok,2,3,sidarok,12/10/2015 20:03 +10581768,Kit.com Products Recommended by People Who Know,http://blog.kit.com/introducing-kit/,16,3,EGF,11/17/2015 15:45 +11748918,[systemd-devel] [ANNOUNCE] systemd v230,https://lists.freedesktop.org/archives/systemd-devel/2016-May/036583.html,2,1,protomyth,5/22/2016 15:27 +10975741,Stop listening to music while you work,http://finance.yahoo.com/news/neuroscientist-shares-10-minute-trick-182900218.html,5,4,indus,1/26/2016 20:24 +11845770,Safe VSP 30 year old Commodore 64 bug demystified (2013),http://www.linusakesson.net/scene/safevsp/index.php,265,22,qmr,6/6/2016 10:49 +10339854,Preview of BlackBerry's Android-powered Priv,http://www.cnet.com/products/blackberry-priv/,2,1,HarnishS,10/6/2015 16:04 +12132902,Turkish government revokes ham radio licenses,http://yaesuft817.com/wp/turkey-gouvernement-revokes-19201-ham-radio-licenses/,216,130,lightlyused,7/20/2016 22:08 +12369365,Show HN: How to annoy a Web Developer,,3,2,omidfi,8/26/2016 21:16 +12545974,The Invisible American,http://www.gallup.com/opinion/chairman/195680/invisible-american.aspx,90,103,randomname2,9/21/2016 6:57 +11421352,The Panama Papers: how the worlds rich and famous hide their money offshore,http://www.theguardian.com/news/2016/apr/03/the-panama-papers-how-the-worlds-rich-and-famous-hide-their-money-offshore,385,141,petethomas,4/4/2016 12:34 +11733555,Plus Uno (hard puzzle),http://marioqwe.github.io/,6,1,nebuler,5/19/2016 20:31 +12541574,Firefox 49 released,http://venturebeat.com/2016/09/20/firefox-49-arrives-with-reader-mode-improvements-offline-viewing-on-android-and-removes-firefox-hello/,16,6,bhaile,9/20/2016 17:53 +10800942,Becoming fully reactive: an explanation of Mobservable,https://medium.com/@mweststrate/becoming-fully-reactive-an-in-depth-explanation-of-mobservable-55995262a254#.h1ihbtorr,27,2,mweststrate,12/28/2015 13:05 +11404324,The Superiority of Alternative Operators,https://medium.com/@JonathanBeard/the-superiority-of-over-2eeae6c122a1#.v25re1i1x,5,1,jcbeard,4/1/2016 12:38 +10974803,Feynmans Derivation of the Schrödinger Equation,http://fermatslibrary.com/s/feynmans-derivation-of-the-schrodinger-equation,153,40,luisb,1/26/2016 18:07 +12044749,Snapchat is moving further and further away from disappearing messages,http://www.recode.net/2016/7/6/12107502/snapchat-memories-new-product-launch,2,1,taylorbuley,7/6/2016 17:55 +12052024,Running Is Always Blind,http://m.nautil.us/issue/38/noise/running-is-always-blind,49,13,brahmwg,7/7/2016 20:57 +12111463,Two big sunspots are staring directly at Earth,http://spaceweathergallery.com/indiv_upload.php?upload_id=127438,5,4,ohjeez,7/17/2016 19:44 +10429777,Tesla: Why do car buffs dislike it but nerds love it?,http://www.slate.com/blogs/quora/2015/10/11/tesla_why_do_car_buffs_dislike_it_but_nerds_love_it.html?wpisrc=obinsite,4,2,jseliger,10/22/2015 0:29 +11825452,Google censoring search autocomplete results for crooked hillary,https://www.reddit.com/r/The_Donald/comments/4m7x18/looks_like_someone_had_a_chat_with_google_recently/,13,3,ddorian43,6/2/2016 19:41 +10714505,First language influences brain for later language-learning,http://www.mcgill.ca/newsroom/channels/news/first-language-wires-brain-later-language-learning-257068,64,23,DrScump,12/10/2015 23:46 +11649068,Ask HN: Any free/open source simple employee time tracking software?,,2,1,techaddict009,5/7/2016 10:30 +11635089,Cupertino's mayor: Apple 'abuses us' by not paying taxes,https://www.theguardian.com/technology/2016/may/05/apple-taxes-cupertino-mayor-infrastructure-plan,169,154,Libertatea,5/5/2016 11:03 +11104124,NASA Space Tourism Posters,http://www.jpl.nasa.gov/news/news.php?feature=5052,92,25,dpeck,2/15/2016 16:18 +10627787,The Yale Problem Begins in High School,http://heterodoxacademy.org/2015/11/24/the-yale-problem-begins-in-high-school/,525,491,frostmatthew,11/25/2015 16:01 +10962893,Can golang beat perl on regex performance?,http://crypticjags.com/golang/can-golang-beat-perl-on-regex-performance.html,8,2,jagadishg,1/24/2016 16:13 +10736611,Ask HN: Where did you learn about stock market/startup economics?,,4,3,zuck9,12/15/2015 8:30 +11300406,Google shares software network load balancer design powering GCP networking,https://cloudplatform.googleblog.com/2016/03/Google-shares-software-network-load-balancer-design-powering-GCP-networking.html?m=1,286,57,rey12rey,3/16/2016 20:26 +11999009,Ask HN: Examples of unreliable software you are forced to use,,5,3,vdfs,6/29/2016 1:54 +10670956,SyncPhone: 5.4 Windows 10 pro phone run proper windows programs,https://www.indiegogo.com/projects/syncphone-uniting-the-pc-and-smartphone#/,2,1,richardboegli,12/3/2015 17:29 +11842120,[dns-operations] Quick DNS Report from Behind the Great Firewall of China,https://lists.dns-oarc.net/pipermail/dns-operations/2016-June/014962.html,3,2,r4um,6/5/2016 17:51 +11371976,"Liberty, an npm alternative. Written in Go",https://github.com/liberty-org/cli/,2,1,springmissile,3/27/2016 23:31 +10718895,Startup Acadine picks up the torch for troubled Firefox OS,http://www.cnet.com/news/startup-acadine-picks-up-the-torch-for-mozillas-troubled-firefox-os/,30,6,cpeterso,12/11/2015 18:31 +10485675,Darpa's ElectRx Project: neuromodulation of organs to help body heal (2014),http://www.darpa.mil/news-events/2014-08-26,20,2,raspasov,11/1/2015 6:55 +10522631,GNU Artanis: A web framework for Guile Scheme,https://groups.google.com/forum/#!topic/szdiy/YCagR9OSgI8,127,24,nalaginrut,11/6/2015 23:01 +12100796,Ask HN: Military to tech jobs,,10,20,boniface316,7/15/2016 13:34 +10464955,Why Single-Tasking Is Your Greatest Competitive Advantage,https://blog.todoist.com/2015/09/01/why-single-tasking-is-your-greatest-competitive-advantage-plus-19-ways-to-actually-do-it/,1,1,alanwill,10/28/2015 15:27 +11560526,Show HN: A HN desktop app for reading links and comments next to each other,https://florian.github.io/HNClient/,54,15,t3nary,4/24/2016 17:30 +11340911,WeChat is building a Slack killer,https://www.techinasia.com/wechat-slack-work-office-chat,5,2,ALee,3/22/2016 23:51 +11608587,Barbie challenges the 'white saviour complex',http://www.bbc.com/news/world-africa-36132482,2,1,sea6ear,5/2/2016 0:49 +12040686,Thieves Go High-Tech to Steal Cars,http://www.wsj.com/articles/thieves-go-high-tech-to-steal-cars-1467744606,8,3,terryauerbach,7/6/2016 1:32 +10660980,Go for the Holy Grail,http://statspotting.com/go-for-the-holy-grail/,1,1,npguy,12/2/2015 4:34 +11082942,A New Way to Conduct Real-Time User Research,http://blog.launchdarkly.com/the-new-way-to-conduct-real-time-user-research/,13,2,mrmch,2/11/2016 20:27 +10365455,The assault on the pie chart,http://priceonomics.com/should-you-ever-use-a-pie-chart/,55,25,sonabinu,10/10/2015 13:35 +10203953,Destroying Apples Legacy,http://cheerfulsw.com/2015/destroying-apples-legacy/,190,133,milen,9/11/2015 14:49 +11824668,Many users are claiming TeamViewer has been hacked,https://www.reddit.com/r/technology/comments/4m7ay6/teamviewer_has_been_hacked_they_are_denying/,56,7,zxcvcxz,6/2/2016 18:03 +11129385,Brave Entertainments: On Samuel Pepys,http://jhiblog.org/2016/02/17/brave-entertainments/,9,3,pepys,2/18/2016 21:15 +10509918,Data Mining Reveals the Extent of Chinas Ghost Cities,http://www.technologyreview.com/view/543121/data-mining-reveals-the-extent-of-chinas-ghost-cities/,2,1,mgalka,11/4/2015 21:29 +11348277,Adopting RxJava on the Airbnb App,https://realm.io/news/kau-felipe-lima-adopting-rxjava-airbnb-android/,47,11,astigsen,3/23/2016 21:10 +11202264,Zer0: addictive Web number-game like 2048 between two news from HN ^^,http://zer0.io/,12,5,ChaosVision,3/1/2016 12:58 +12264739,How to bring science publishing into the 21st century,http://blogs.scientificamerican.com/guest-blog/how-to-bring-science-publishing-into-the-21st-century/?WT.mc_id=SA_TW_ARTC_BLOG,50,26,dban,8/10/2016 21:03 +10844857,Is Pre-K All Its Cracked Up to Be?,https://fivethirtyeight.com/features/is-pre-k-all-its-cracked-up-to-be/,2,1,tokenadult,1/5/2016 18:11 +10687808,"Show HN: Hacker News, by the numbers",http://arnauddri.github.io/hn/,9,1,arnauddri,12/7/2015 3:03 +11306646,ProtonMail is Open Source (2015),https://protonmail.com/blog/protonmail-open-source/,2,1,nikolay,3/17/2016 18:55 +10927830,AppleTV fitness app Using Siri remote to Track your Reps,https://medium.com/@ethanyfan/trackmyfitness-the-only-apple-tv-fitness-app-that-track-your-reps-a0cbb341ac7e#.1saxap93o,1,1,coolioxlr,1/18/2016 23:38 +11636684,Three and a Tree: A book about educational marketing cliches,http://threeandatree.com/,2,1,avs733,5/5/2016 15:01 +10336269,Using Encryption and Authentication Correctly,https://paragonie.com/blog/2015/05/using-encryption-and-authentication-correctly,1,1,paragon_init,10/6/2015 1:37 +11724540,Firebase expands to become a unified app platform,https://firebase.googleblog.com/2016/05/firebase-expands-to-become-unified-app-platform.html,530,204,Nemant,5/18/2016 18:38 +10186513,Show HN: WhatsHelp.io Zendesk and Intercom for WhatsApp Messenger,http://whatshelp.io/,3,2,RazTerr,9/8/2015 16:06 +12326486,Troll Targets Say Twitters New Filters Don't Go Far Enough,http://www.wired.com/2016/08/troll-targets-say-twitters-new-filters-dont-go-far-enough/,1,1,r721,8/20/2016 13:28 +11885334,"Yachts, jets and stacks of cash: super-rich discover risks of Instagram snaps",https://www.theguardian.com/technology/2016/apr/03/super-rich-discover-hidden-risks-instagram-yachts-jets,1,1,edward,6/11/2016 21:07 +12281972,The cosmological constant problem (1989) [pdf],https://www.itp.kit.edu/~schreck/general_relativity_seminar/The_cosmological_constant_problem.pdf,27,1,maverick_iceman,8/13/2016 16:14 +10768390,"Why Is So Much Reported Science Wrong, and What Can Fix That?",http://alumni.berkeley.edu/california-magazine/winter-2015-breaking-news/giving-credence-why-so-much-reported-science-wrong-and,109,52,tokenadult,12/20/2015 21:38 +11384318,Snapchat for your tweets,https://yuvaj.typeform.com/to/DEDKoS,1,2,yuvrajp,3/29/2016 19:47 +11998269,Microsoft backs off click-the-X trick in Windows 10 upgrade pitch,http://www.computerworld.com/article/3089438/microsoft-windows/microsoft-backs-off-click-the-x-trick-in-windows-10-upgrade-pitch.html,3,1,ourmandave,6/28/2016 23:01 +12013795,Truck driver invents new tires that let you drive sideways,http://www.cnbc.com/2016/06/30/truck-driver-invents-new-tires-that-let-you-drive-sideways.html,6,3,Fjolsvith,7/1/2016 4:01 +10653405,2.5M men 'have no close friends',http://www.telegraph.co.uk/men/active/mens-health/11996473/2.5-million-men-have-no-close-friends.html,33,10,McKittrick,12/1/2015 2:52 +10791191,"A Silicon Valley for Drones, in North Dakota",http://www.nytimes.com/2015/12/26/technology/a-silicon-valley-for-drones-in-north-dakota.html,64,30,kloncks,12/25/2015 13:40 +10195124,Dear 4bby: What to Do with My Technology,,4,8,ConfusedInPalo,9/9/2015 22:38 +10361485,When Amazon Dies,http://www.theatlantic.com/technology/archive/2015/10/when-amazon-dies/409387?single_page=true,3,1,pmcpinto,10/9/2015 16:57 +12488789,Soaring Student Debt Prompts Calls for Relief,http://www.wsj.com/articles/soaring-student-debt-prompts-calls-for-relief-1473759003?mod=pls_whats_news_us_business_f,106,516,jstreebin,9/13/2016 14:55 +11637885,STEM: Still No Shortage,https://medium.com/i-m-h-o/stem-still-no-shortage-c6f6eed505c1#.gyz2wb2g3,14,3,Futurebot,5/5/2016 17:06 +11457376,Ask HN: Setting to ignore /node_modules with find and grep,,2,1,ereckers,4/8/2016 19:49 +11286059,Lexis a programming exam invigilation system for Linux (2001) [pdf],http://pubs.doc.ic.ac.uk/Lexis/Lexis.pdf,1,1,khushia,3/14/2016 22:35 +11280267,Voters deliver a message for Germanys Angela Merkel: No more migrants,https://www.washingtonpost.com/world/europe/voters-deliver-a-message-for-germanys-angela-merkel-no-more-migrants/2016/03/13/e0215ce0-e954-11e5-a9ce-681055c7a05f_story.html,24,10,ZoeZoeBee,3/14/2016 0:49 +10997621,Jailbreak firmware turns cheap digital walkie-talkie into DMR scanning receiver,http://phasenoise.livejournal.com/1142.html,155,32,wolframio,1/29/2016 19:06 +11533323,Show HN: GitHub Reviews Reviews for Popular GitHub Repositories,https://githubreviews.com/?ref=hn,7,8,plurch,4/20/2016 10:14 +12358889,New camera uses just 1 photon per pixel,http://sciencebulletin.org/archives/4615.html,1,1,upen,8/25/2016 13:42 +11463434,Congratulations Youve Been Fired,http://mobile.nytimes.com/2016/04/10/opinion/sunday/congratulations-youve-been-fired.html?smid=tw-share&referer=https://t.co/GST3iLv3Zn,679,429,dcschelt,4/9/2016 21:28 +10362182,Climate scientists write tentatively; their opponents are certain theyre wrong,http://arstechnica.com/science/2015/10/climate-scientists-are-tentative-their-opponents-are-certain-theyre-wrong/,4,1,sprucely,10/9/2015 18:12 +10986660,"Ask HN: SSL is free now, why domain names are not",,5,9,tuyguntn,1/28/2016 6:20 +12282293,Venture Deals: Be Smarter Than Your Lawyer and Venture Capitalist,http://www.aioptify.com/top-startups-and-entrepreneurship-books.php?utm_source=hn&utm_medium=cpm&utm_campaign=topbooks,2,1,jahan,8/13/2016 17:40 +10787515,Hotelling's law,https://en.wikipedia.org/wiki/Hotelling%27s_law,57,35,xoher,12/24/2015 8:07 +10340737,Flux Challenge,https://github.com/staltz/flux-challenge,285,52,staltz,10/6/2015 17:38 +11550568,Hillary PAC Spends $1M to Correct Commenters on Reddit and Facebook,http://www.thedailybeast.com/articles/2016/04/21/hillary-pac-spends-1-million-to-correct-commenters-on-reddit-and-facebook.html,101,59,kushti,4/22/2016 16:55 +12131035,Why SoftBank is paying $32B for ARM Holdings,http://www.cringely.com/2016/07/18/softbank-paying-32-billion-arm-holdings/,4,1,evo_9,7/20/2016 17:55 +11587546,Rainy with a chance of upgrade,https://www.theguardian.com/technology/2016/apr/28/windows-10-is-now-ruining-weather-forecasts,4,2,YeGoblynQueenne,4/28/2016 9:49 +12345855,"Ask HN: Outside of SV, is age discrimination in IT common?",,10,5,04rob,8/23/2016 17:58 +10657362,How to create a calculator application with Ionic framework,http://tutorials.pluralsight.com/review/how-to-create-a-calculator-application-with-ionic-framework-by-using-ionic-creator-for-ui/article.md,15,2,ionicabizau,12/1/2015 17:55 +11245632,December 2015 the warmest month since 1880 (NOAA report),https://www.ncdc.noaa.gov/sotc/global/201513,2,1,jrslv,3/8/2016 15:08 +10690177,Whats in a web browser,https://medium.com/@camaelon/what-s-in-a-web-browser-83793b51df6c,76,3,ismavis,12/7/2015 15:59 +10869028,Qubes OS: Towards Secure and Trustworthy Personal Computing [pdf],https://hyperelliptic.org/PSC/slides/psc2015_qubesos.pdf,3,1,transpute,1/8/2016 23:16 +11814830,Ask HN: Who wants to be hired? (June 2016),,137,250,whoishiring,6/1/2016 15:01 +10369271,Inequality will kill us before the robots do,https://medium.com/@hajak/inequality-will-kill-us-before-the-robots-do-1f969646e348,1,1,hajak,10/11/2015 14:06 +11919012,E-Go Personal Plane Fits in Your Garage,http://www.seeker.com/personal-plane-folds-up-fits-in-your-garage-1860685909.html,19,5,prostoalex,6/16/2016 21:27 +12234468,Qrawd is Snapchat for events,,4,2,nurohj,8/5/2016 18:01 +10289780,Show HN: Resume Reviewers - Get Your Resume Reviewed by Real People for Free,http://resumereviewers.com,2,4,max0563,9/28/2015 11:02 +11015950,Scammers and Spammers: Inside Online Dating's Sex Bot Con Job,http://www.rollingstone.com/culture/features/scammers-and-spammers-inside-online-datings-sex-bot-con-job-20160201,5,1,nols,2/1/2016 22:09 +10538960,Nanocubes: Fast visualization of large spatiotemporal datasets,http://www.nanocubes.net,31,10,orbifold,11/10/2015 12:46 +11856030,How to ace a hackathon application,https://medium.com/@hackthenorth/how-to-ace-a-hackathon-application-88bd76730967#.4ic3ca6by,5,1,srcreigh,6/7/2016 17:30 +10312208,The real reason everyone hates Chinese rich kids,http://www.bloomberg.com/news/features/2015-10-01/children-of-the-yuan-percent-everyone-hates-china-s-rich-kids,3,1,AndriusWSR,10/1/2015 16:14 +10314708,What advice would you give?,http://jthoyer.wordpress.com,1,1,jthoyer,10/1/2015 21:04 +10573222,PEZY announces new MIPS64-based green supercomputers using 4096 nodes,http://blog.imgtec.com/mips-processors/pezy-licenses-mips-for-green-supercomputing,15,4,alexvoica,11/16/2015 8:17 +10545752,TensorFlow Benchmarks,https://github.com/soumith/convnet-benchmarks/issues/66,98,55,sherjilozair,11/11/2015 9:52 +11380296,McCann Japan hires first artificially intelligent creative director,http://www.thedrum.com/news/2016/03/29/mccann-japan-hires-first-artificially-intelligent-creative-director,2,1,ghosh,3/29/2016 8:58 +10579370,How Early Exit Disease Stunts the Growth of Midwest Startup Communities,http://techcrunch.com/2015/11/16/how-early-exit-disease-stunts-the-growth-of-midwest-startup-communities/,58,51,mtviewdave,11/17/2015 5:43 +11279592,Ask HN: Is meteor.js still a thing?,,6,11,adius,3/13/2016 22:09 +11073980,The Alpha has no GUI,https://medium.com/@dsterry/the-alpha-has-no-gui-4ede9de21312#.i9q9srhbu,1,1,dsterry,2/10/2016 16:46 +10521042,Police Emails About Ahmed Mohamed: 'This Is What Happens When We Screw Up',http://motherboard.vice.com/read/police-emails-about-ahmed-mohamed-this-is-what-happens-when-we-screw-up,8,2,us0r,11/6/2015 18:29 +10620457,Young 'to be poorer than parents at every stage of life',http://www.bbc.com/news/business-34858997,129,229,kevindeasis,11/24/2015 13:12 +10342737,"Chrome reportedly bypassing Adblock, forces users to watch full-length video ads",http://www.neowin.net/news/google-chrome-reportedly-bypassing-adblock-forces-users-to-watch-full-length-video-ads,3,1,SimplyUseless,10/6/2015 22:05 +11513708,Game Oldies: Play Retro Games Online,http://game-oldies.com/,5,1,doppp,4/17/2016 6:22 +11527869,Data Scientists Automated and Unemployed by 2025,http://www.datasciencecentral.com/profiles/blogs/data-scientists-automated-and-unemployed-by-2025,17,1,vincentg64,4/19/2016 16:01 +11477823,Apply HN: Wantobuy Post items you want so sellers can sell them to you,,41,30,ryderj,4/12/2016 7:37 +11102502,The 10 Day Metric Week,http://zapatopi.net/metrictime/week.html,2,1,noja,2/15/2016 10:03 +10789259,Show HN: Paralyze a go package that simplifies parallelization,https://github.com/i/paralyze,16,4,ilozinski,12/24/2015 19:10 +10691528,The era of distrust and disloyalty,http://www.gerrymcgovern.com/new-thinking/era-distrust-and-disloyalty,72,46,joeyespo,12/7/2015 18:38 +11563714,Chart.js 2.0 Released,http://www.chartjs.org/,332,75,etimberg,4/25/2016 12:16 +11810403,AMD Prices 3-D Tech to Spur Virtual Reality Market - $199,http://www.wsj.com/articles/amd-prices-3-d-cards-to-spur-virtual-reality-market-1464725394,6,5,dbcooper,5/31/2016 21:26 +10994676,NayuOS Chromebooks without Google,http://www.nexedi.com/blog/NXD-Document.Blog.Nayu.Os.Introduction,120,49,frequent,1/29/2016 11:45 +10458290,Apple TV is a rethinking of users relationship with hardware and games,http://www.polygon.com/features/2015/10/26/9604068/apple-tv-app-size-limit-technology-slicing-tags-200-mb,38,53,aaronbrethorst,10/27/2015 14:48 +11513980,InKin Social Fitness Is Now In You Pocket,https://www.inkin.com/blog/en/inKin-Has-Gone-Mobile--Download-Our-iOS-And-Android-Apps-Today,2,1,zaruiamvi,4/17/2016 9:30 +10844506,How I learned to stop worrying and love the cubicle,http://forrestbrazeal.com/2015/07/13/how-i-learned-to-stop-worrying-and-love-the-cubicle/,79,74,forrestbrazeal,1/5/2016 17:23 +10675653,World air pollution map,https://air.plumelabs.com/,82,29,gnocchi,12/4/2015 11:06 +10374022,Embed Linkedin profile page to see who visited your website,http://audiencestack.com/static/blog-hack-linkedin-to-view-website-visitors.html,137,74,alanorourke,10/12/2015 12:23 +10655741,Ask HN: Freelancer? Seeking freelancer? (December 2015),,41,93,whoishiring,12/1/2015 15:00 +11680561,Apple R&D Reveals a Pivot Is Coming,http://www.aboveavalon.com/notes/2016/5/11/apple-rd-reveals-a-pivot-is-coming,280,262,rstocker99,5/12/2016 0:49 +10540875,What Valve got right and wrong with the Steam Machine,http://www.polygon.com/2015/10/15/9536047/steam-machine-alienware-hands-on-video,63,68,bpierre,11/10/2015 17:43 +10458863,More Ways to Wi-Fi with the New ASUS OnHub,https://googleblog.blogspot.com/2015/10/more-ways-to-wi-fi-with-new-asus-onhub.html,48,39,zacharytamas,10/27/2015 16:01 +11592487,Are Historys Greatest Philosophers All That Great?,http://dailynous.com/2016/04/26/were-historys-so-called-greatest-philosophers-all-that-great/,78,66,diodorus,4/28/2016 22:57 +10488065,Building RSpec with Fix,https://medium.com/@cyri_/building-rspec-with-fix-bb2feb240bd3,2,1,cyr__,11/1/2015 20:28 +11975538,My Four Months as a Private Prison Guard,http://motherjones.com/politics/2016/06/cca-private-prisons-corrections-corporation-inmates-investigation-bauer,28,1,benjaminfox,6/25/2016 7:09 +12063566,Performance Comparison of JavaScript Frameworks,http://www.stefankrause.net/js-frameworks-benchmark2/webdriver-java/table.html,112,54,etimberg,7/9/2016 22:11 +10276512,"Unlimited vacation, it seems, encouraged employees Not to go on vacation",http://www.fastcompany.com/3051537/fast-feed/kickstarter-nixes-unlimited-vacation-time-for-employees,10,6,alvinktai,9/25/2015 5:29 +10413254,Parkinson's patients 'walk and talk again' after receiving cancer drug in trial,http://www.independent.co.uk/life-style/health-and-families/health-news/parkinsons-patients-given-new-lease-of-life-after-receiving-cancer-drug-in-trial-a6699031.html,112,37,AndrewDucker,10/19/2015 14:53 +11562922,A Private Air Force Would Require More Than Two Planes,http://exolymph.com/2016/04/25/a-private-air-force-would-require-more-than-two-planes/,1,1,exolymph,4/25/2016 7:30 +10515189,Telidon: Early 1980s Net Artists,http://motherboard.vice.com/read/the-original-net-artists,29,4,dang,11/5/2015 18:30 +11474570,React Router is dead. Long live rrtr,https://medium.com/@taion/react-router-is-dead-long-live-rrtr-d229ca30e318#.djr4dzu0z,2,1,DanitaBaires,4/11/2016 19:51 +10275235,Evernote stumbles into Markdown,https://discussion.evernote.com/topic/88677-evernote-for-mac-62-beta-1-released/page-2#entry379209,2,1,dustinfarris,9/24/2015 22:33 +10850410,Two Brothers Making Millions Off the Refugee Crisis in Scandinavia,http://www.bloomberg.com/features/2016-norway-refugee-crisis-profiteers/,117,102,rmxt,1/6/2016 13:43 +10213501,Evidence for Person-To-Person Transmission of Alzheimer's Pathology,http://www.scientificamerican.com/article/evidence-for-person-to-person-transmission-of-alzheimer-s-pathology/,69,16,primroot,9/14/2015 3:03 +12538100,We need your feedback for a new mobile app to review restaurants,http://pikniko.co,1,1,blogmylunch,9/20/2016 9:02 +12227420,Rio's disaster is an extreme version of what happens to Olympic host cities,https://www.thenation.com/article/budget-failures-displacement-zika-welcome-to-rios-11-9b-summer-olympics/,4,1,ereyes01,8/4/2016 18:17 +11182648,A hunt for the government's oldest computer,https://www.muckrock.com/news/archives/2016/feb/24/hunt-governments-oldest-computer/,117,51,mrweasel,2/26/2016 17:29 +11614935,Successfully Onboarding Remote Developers,https://andela.com/blog/3-steps-onboard-remote-developers/,57,3,crufo,5/2/2016 19:51 +12032582,Ask HN: Alternatives to Evernote,,8,5,Kevin_S,7/4/2016 19:40 +10719849,"Minecraft on Docker, one click SSL deployments, and Fallout 4's database",https://getcarina.com/blog/weekly-news-early-christmas/,37,11,jnoller,12/11/2015 20:43 +10247305,Ask HN: Which PEPs are must reads for a beginner?,,2,2,taurus,9/20/2015 12:41 +12344156,Android screen sizes/resolutions why screen size doesnt matter?,http://www.allinmobile.co/android-screen-sizes-resolutions-why-screen-size-doesnt-matter/,1,2,lukassso,8/23/2016 14:50 +10950989,What are some open source projects on GitHub for beginners in Golang,,2,1,sitaram,1/22/2016 5:42 +11650879,Three ideas about text messages,http://antirez.com/news/105,33,30,samber,5/7/2016 19:01 +12396514,"North Korea shows off Manbang, its own Netflix service",https://www.youtube.com/watch?v=NlJ5gkJujYk,1,1,azinman2,8/31/2016 7:19 +12540842,Teenagers will eat veggiesif you tell them theyre sticking it to the man,http://arstechnica.com/science/2016/09/teenagers-will-eat-veggies-if-you-tell-them-theyre-sticking-it-to-the-man/,4,1,shawndumas,9/20/2016 16:36 +11559781,Apple's organizational crossroads,https://stratechery.com/2016/apples-organizational-crossroads/,3,1,wslh,4/24/2016 14:27 +10486700,Annie Dookhan and the Massachusetts Drug Lab Crisis,http://badchemistry.wbur.org/2013/05/19/annie-dookhan-and-the-massachusetts-drug-lab-crisis,3,1,1337biz,11/1/2015 15:38 +11281564,Deep-Q Learning Pong with Tensorflow and PyGame,http://www.danielslater.net/2016/03/deep-q-learning-pong-with-tensorflow.html,48,3,albertzeyer,3/14/2016 8:00 +10733981,Milwaukee Protocol,https://en.wikipedia.org/wiki/Milwaukee_protocol,31,2,philangist,12/14/2015 21:22 +10323292,Rewriting a Ruby C Extension in Rust: How a Naive One-Liner Beats C,https://www.youtube.com/watch?v=2BdJeSC4FFI,5,2,brobinson,10/3/2015 9:57 +10920408,"Vimmers, you don't need NerdTree",https://blog.mozhu.info/vimmers-you-dont-need-nerdtree-18f627b561c3#.55in2kiq3,5,3,bluedino,1/17/2016 18:42 +12188643,Optimal DNS Ad Blocker,http://optimal.com/network-ad-blocking-beta/,115,94,uptown,7/29/2016 18:04 +11687974,Ask HN: Where do you find technical interns?,,1,1,aml183,5/13/2016 1:14 +11131241,Baby dolphin dies while snapchat users pass it around for selfies,https://www.yahoo.com/tech/endangered-baby-dolphin-dies-beachgoers-162841974.html,8,1,goldenkey,2/19/2016 2:57 +11155824,Who Goes Nazi? (1941),https://harpers.org/archive/1941/08/who-goes-nazi/?single=1,70,36,nkurz,2/23/2016 1:39 +10217199,F* reworked and released as v0.9.0,http://lambda-the-ultimate.org/node/5241,76,7,platz,9/14/2015 20:14 +11168872,Email newsletters are the new zines,http://www.simonowens.net/email-newsletters-are-the-new-zines,32,9,exolymph,2/24/2016 18:17 +12036320,The New Ruling Class,http://www.iasc-culture.org/THR/THR_article_2016_Summer_Andrews.php,4,2,jacques_chester,7/5/2016 13:39 +10687666,Hetzner Online presents 6 new dedicated root servers,https://www.hetzner.de/en/hosting/news/hetzner-online-praesentiert-6-neue-dedicated-root-server,4,2,pella,12/7/2015 2:00 +10572099,"Parallel Random Numbers: As Easy as 1, 2, 3 (2011) [pdf]",http://www.thesalmons.org/john/random123/papers/random123sc11.pdf,18,7,nkurz,11/16/2015 1:22 +12298510,Microsoft SQL Server Images Available on Google Compute Engine,https://cloudplatform.googleblog.com/2016/08/why-Google-Cloud-Platform-is-ready-for-your-enterprise-database-workloads.html,7,1,velmu,8/16/2016 16:26 +11395566,Recent Discussion on Unfairness in FLOSS Economics,https://www.harihareswara.net/sumana/2016/01/26/0,16,3,ashitlerferad,3/31/2016 7:33 +12182329,How NLP helps Mattermark find business opps A conversation with Samiur Rahman,http://techemergence.com/how-natural-language-processing-helps-mattermark-find-business-opps-a-conversation-with-samiur-rahman/,3,1,samiur1204,7/28/2016 18:57 +11173411,"What are Bloom filters, and why are they useful?",https://sc5.io/posts/what-are-bloom-filters-and-why-are-they-useful/,13,2,nikcorg,2/25/2016 9:57 +10983015,Ask HN: What is the vi/m equivalent of the Emacs Org Mode,,1,4,CarolineW,1/27/2016 20:31 +11032625,Ask HN: How would you monetize a webcomics publishing platform?,,5,4,rayalez,2/4/2016 8:03 +11955334,Ask HN: Dedicated servers and/or VPS for SaaS?,,1,2,startupdude69,6/22/2016 16:55 +11929290,Ask HN: Can you help me learn about climate change?,,1,2,dsacco,6/18/2016 16:35 +11304255,Ask HN: Who else uses adblockers for safety?,,128,92,julie1,3/17/2016 13:43 +11172356,PadMapper is now on Android,http://blog.padmapper.com/2015/08/07/padmapper-is-now-on-android/,3,1,rcrowell,2/25/2016 4:18 +10374593,Node.js: Some quick optimization advice,https://medium.com/@c2c/nodejs-a-quick-optimization-advice-7353b820c92e,203,72,SanderMak,10/12/2015 14:14 +10528132,Teachers and students can benefit from knowing techniques of memory champions,http://www.theguardian.com/education/2015/nov/07/grandmaster-memory-teach-something-never-forget,29,6,bootload,11/8/2015 10:26 +10634438,Node.js vs. Java: Which Is Faster for APIs?,https://www.linkedin.com/pulse/nodejs-vs-java-which-faster-apis-owen-rubel,2,1,wslh,11/26/2015 19:53 +12371937,Ask HN: What non-technical skills do you wish you were better at?,,5,4,AdamSC1,8/27/2016 11:44 +10474174,Château Sucker Wine Fraud (2012),http://nymag.com/news/features/rudy-kurniawan-wine-fraud-2012-5/,37,8,Mz,10/29/2015 20:49 +10768126,Birthday problem,https://en.wikipedia.org/wiki/Birthday_problem,2,1,Amanjeev,12/20/2015 20:13 +11701440,Ask HN: How do you use Amazon Echo?,,80,112,trapped,5/15/2016 16:13 +11437368,NoScript and other popular Firefox add-ons open millions to new attack,http://arstechnica.com/security/2016/04/noscript-and-other-popular-firefox-add-ons-open-millions-to-new-attack/,6,1,aorth,4/6/2016 8:04 +11087443,Why native English speakers fail in global business,https://theconversation.com/why-native-english-speakers-fail-to-be-understood-in-english-and-lose-out-in-global-business-54436,5,2,teaman2000,2/12/2016 14:40 +12539068,'Completely secure' voting machines,http://wtop.com/fairfax-county/2016/09/fairfax-co-rolls-out-completely-secure-new-voting-machines/,9,4,jamessun,9/20/2016 12:47 +11634068,"Ask HN: Math from square one, after ~11 years of programming",,6,4,vldx,5/5/2016 4:51 +11517988,Tech Companies Face Greater Scrutiny for Paying Workers with Stock,http://www.nytimes.com/2016/04/18/technology/tech-companies-face-greater-scrutiny-for-paying-workers-with-stock.html,58,64,nikcub,4/18/2016 6:13 +11836018,Hiring a programmer? Ditch the coding interview and get back to basics,https://m.signalvnoise.com/hiring-a-programmer-ditch-the-coding-interview-and-get-back-to-basics-f5c43e369eaf,17,4,ingve,6/4/2016 11:59 +11909578,"Deep learning AI autoencodes Blade Runner, and gets a takedown notice",http://boingboing.net/2016/06/02/deep-learning-ai-autoencodes.html,12,1,phodo,6/15/2016 14:36 +11747626,Achieving a Perfect SSL Labs Score with Go,https://blog.bracelab.com/achieving-perfect-ssl-labs-score-with-go,98,50,0xmohit,5/22/2016 7:07 +11222401,YourLanguageSucks,https://wiki.theory.org/YourLanguageSucks,5,2,MrBra,3/4/2016 6:46 +11550765,The Looting of ShapeShift,https://news.bitcoin.com/looting-fox-sabotage-shapeshift/,198,90,danielvf,4/22/2016 17:22 +11078317,United wants to know if you work as a plumbing insulator?,http://jalopnik.com/united-airlines-new-survey-is-full-of-the-most-batshit-1757416268,3,1,jbclements,2/11/2016 4:55 +11635751,Ask HN: Best encrypted messaging app with mobile and native clients?,,13,16,mellamoyo,5/5/2016 13:13 +11048068,FOSDEM 2016 Systemd and Where We Want to Take the Basic Linux Userspace in 2016,https://fosdem.org/2016/schedule/event/systemd/,4,1,protomyth,2/6/2016 15:25 +11865623,Lessons Learned Scaling Hotjar's Tech Architecture,https://www.hotjar.com/blog/9-lessons-we-learned-while-scaling-hotjars-tech-architecture,32,1,vinnyglennon,6/8/2016 21:00 +10845086,Twitter Considers Higher Character Limit for Tweets Business,http://www.bloomberg.com/news/articles/2016-01-05/twitter-said-to-consider-higher-character-limit-for-tweets,25,106,pbhowmic,1/5/2016 18:44 +12381103,The Necessity of Musical Hallucinations (2015),http://nautil.us/issue/20/creativity/the-necessity-of-musical-hallucinations,34,6,dnetesn,8/29/2016 10:53 +10770645,BBC Radio iPlayer The Audio Factory,http://www.audiomisc.co.uk/BBC/AudioFactory/AudioFactory.html,16,2,edward,12/21/2015 11:47 +12090884,Ask HN Staff: Could you build emoji support?,,3,4,maxsavin,7/14/2016 0:31 +12204646,Voisi: Robot-made human-readable,https://play.google.com/store/apps/details?id=com.voisi.recorder,1,1,KseniaWeiss,8/1/2016 18:17 +10377037,Oxford University admissions interview questions and answers revealed,http://www.theguardian.com/education/2015/oct/12/oxford-university-admissions-interview-questions-and-answers-revealed,20,10,bootload,10/12/2015 21:25 +12349391,Gene name errors are widespread in the scientific literature,http://genomebiology.biomedcentral.com/articles/10.1186/s13059-016-1044-7,64,59,campuscodi,8/24/2016 3:02 +10263935,"Wherever You Go, Your Personal Cloud of Microbes Follows",http://www.npr.org/sections/health-shots/2015/09/22/441841735/wherever-you-go-your-personal-cloud-of-microbes-follows,39,11,pmcpinto,9/23/2015 8:44 +11147843,Ask HN: Facebook Account Disabled,,2,3,OafTobark,2/22/2016 1:52 +12253839,KolibriOS: tiny but mighty x86 operating system written in assembly,http://kolibrios.org/,4,1,type0,8/9/2016 11:36 +11664636,Show HN: Strategy maps for software development now free for solo users,http://www.systemmeasure.com,4,1,rocksoug,5/10/2016 1:31 +11916053,Why Central Banks Will Issue Digital Currency,https://medium.com/chain-inc/why-central-banks-will-issue-digital-currency-5fd9c1d3d8a2,1,1,mathiasrw,6/16/2016 13:50 +11748656,We indexed some top mobile apps and the SDKs they use,https://medium.com/@kevinleong789/here-are-the-sdks-top-mobile-apps-use-faf8e6e5cfee#.vssem43ud,57,42,IamFermat,5/22/2016 14:22 +12238860,Tabby's star is dimming at an incredible rate,http://www.sciencealert.com/we-just-got-even-weirder-results-about-the-alien-megastructure-star,375,171,ChuckMcM,8/6/2016 17:07 +12396856,Tasmanian Devils Developing Resistance to Transmissible Cancer,http://www.the-scientist.com/?articles.view/articleNo/46907/title/Tasmanian-Devils-Developing-Resistance-to-Transmissible-Cancer/,67,18,smb06,8/31/2016 8:40 +12175396,"The Shopify for local delivery businesses, spread the word?",,1,1,orderingpages,7/27/2016 18:34 +12524747,There Is No Island of Trash in the Pacific,http://www.slate.com/articles/health_and_science/the_next_20/2016/09/the_great_pacific_garbage_patch_was_the_myth_we_needed_to_save_our_oceans.html,48,17,r0muald,9/18/2016 10:30 +10801430,MirrorMirror: A Raspberry Pi-Powered Magic Mirror,http://blog.dylanjpierce.com/raspberrypi/magicmirror/tutorial/2015/12/27/build-a-magic-mirror.html,131,27,bdz,12/28/2015 15:13 +11529358,Does anyone freelance/travel,,2,1,bjw181,4/19/2016 19:09 +10275005,Why Nonstop Travel in Personal Pods Has yet to Take Off,http://www.npr.org/2015/09/24/440859459/why-nonstop-travel-in-personal-pods-has-yet-to-take-off,4,1,larubbio,9/24/2015 21:52 +11724214,Women in tech are taking shorter lunch breaks than men,https://www.comparably.com/blog/how-long-do-you-take-for-lunch-breaks/,16,2,rissyrussell,5/18/2016 18:07 +11831069,Simonne Jones on the Intersection of Science and Pop Music,http://www.engadget.com/2016/05/27/simonne-jones-gravity-interview/,1,1,arbitraryy,6/3/2016 15:58 +10270914,Foundations of Physical Law,http://www.liv.ac.uk/physical-sciences/events/fpl/,2,1,amelius,9/24/2015 10:58 +12366180,Announcing the GitLab Issue Board,https://about.gitlab.com/2016/08/22/announcing-the-gitlab-issue-board/,10,5,michaelmior,8/26/2016 13:49 +10243011,DEC64: Decimal Floating Point,http://dec64.com/,45,56,dmmalam,9/19/2015 1:59 +10500598,Israel Is Already Selling Kamikaze Micro-Drones That Will Change Modern Warfare,http://www.popularmechanics.com/flight/drones/a18032/hero-30-uvision-israeli-drone/,15,6,jonbaer,11/3/2015 16:28 +11838017,Anypixel.js,http://googlecreativelab.github.io/anypixel/,287,35,afshinmeh,6/4/2016 21:02 +12065471,Emails from a CEO Who Just Has a Few Changes to the Website,https://medium.com/slackjaw/emails-from-a-ceo-who-just-has-a-few-changes-to-the-website-43ccb7b31709#.f7o2z6ils,1,1,snake117,7/10/2016 13:10 +12329101,NIST's new password rules summary,https://nakedsecurity.sophos.com/2016/08/18/nists-new-password-rules-what-you-need-to-know/,4,2,ratsbane,8/21/2016 1:52 +10496416,Stages in Pricing Computer Games (2014),http://jeff-vogel.blogspot.com/2014/12/how-youre-going-to-price-your-computer.html,83,27,phenylene,11/3/2015 0:09 +11733760,Nonce-Disrespecting Adversaries: Practical Forgery Attacks on GCM in TLS,https://github.com/nonce-disrespect/nonce-disrespect,3,1,hannob,5/19/2016 20:55 +10287964,Show HN: CrashBreak Reproduce exceptions as failing tests in Ruby,http://www.crashbreak.com/,37,9,mjaneczek,9/27/2015 21:17 +12121267,Video Tip: Antonopoulos Demystifies Bitcoin Mining,http://www.bitcoinwednesday.com/video-andreas-m-antonopoulos-demystifies-bitcoin-mining/,2,1,generalseven,7/19/2016 12:18 +11953712,"Cars, Batteries and Dual-Class Stock",http://www.bloomberg.com/view/articles/2016-06-22/cars-batteries-and-dual-class-stock,2,1,ikeboy,6/22/2016 13:30 +12067921,Hedge Fund Wants to Use Atomic Clocks to Beat High-Speed Traders,http://www.bloomberg.com/news/articles/2016-07-07/jim-simons-has-a-killer-flash-boy-app-and-you-can-t-have-it,290,220,lmg643,7/11/2016 0:08 +11083279,Drive Motors (YC W16) Lets You Actually Buy a Car Online,http://techcrunch.com/2016/02/11/software-eats-dealerships/,39,24,never-the-bride,2/11/2016 21:09 +10857463,Ask HN: Anyone interested in starting an IT consultancy?,,5,4,tixocloud,1/7/2016 12:06 +11648097,Ask HN: How can you work at a desk all day?,,3,4,reedlaw,5/7/2016 2:33 +11108169,The colour BLUE is trending worldwide. Heres why,http://formforthought.com/rise-of-blue-in-web-graphic-design/,1,1,prawn,2/16/2016 6:01 +12066041,Felix: A compiled (to C++) scripting language,http://felix-lang.org/,97,32,vmorgulis,7/10/2016 16:08 +11098871,Astrophysicists do a 3-day long AMA about the discovery of gravitational waves,https://np.reddit.com/r/IAmA/comments/45g8qu/we_are_the_ligo_scientific_collaboration_and_we/,240,41,yread,2/14/2016 16:30 +10609042,Western philosophers in ten minutes [Videos],https://www.youtube.com/playlist?list=PLwxNMb28XmpeypJMHfNbJ4RAFkRtmAN3P,6,3,lindbergh,11/22/2015 4:06 +10752158,Myers-Briggs Type Indicator,,1,1,baccheion,12/17/2015 15:53 +12216754,Can people get their hacked (bitfinex) Bitcoins back (1:4 rate 45 min delivery)?,http://fuckethereum.com/,4,1,compil3r,8/3/2016 9:34 +11807592,Crowdfund: Technology for DNA Testing of Rape Kits,http://www.zoluslogix.com,1,1,bnjemian,5/31/2016 16:38 +10702301,How I Store My 1's and 0s (2012),https://mocko.org.uk/b/2012/06/17/how-i-store-my-1s-and-0s-zfs-bargain-hp-microserver-joy/,12,2,Tomte,12/9/2015 6:50 +12114287,Did Microsoft steal its fonts from the Turkish army? (2012),http://rodrik.typepad.com/dani_rodriks_weblog/2012/10/did-microsoft-steal-its-fonts-from-the-turkish-army.html,65,18,antman,7/18/2016 10:52 +10792782,Show HN: Ghit.me hit counter badges for GitHub,https://ghit.me/,7,5,benwilber0,12/26/2015 0:11 +10231905,The effective altruists,http://www.lrb.co.uk/v37/n18/amia-srinivasan/stop-the-robot-apocalypse,51,86,akbarnama,9/17/2015 6:43 +10441710,The what and why of product experimentation at Twitter,https://blog.twitter.com/2015/the-what-and-why-of-product-experimentation-at-twitter-0,13,7,squarecog,10/23/2015 23:07 +11485365,Ask HN: How to work fewer hours?,,4,4,ChimChimminy,4/13/2016 2:53 +10861128,Finishing a Year of College in 10 Weeks,https://medium.com/@MarkEstefanos/finishing-a-year-of-college-in-10-weeks-210f1536cdb3,8,3,markism,1/7/2016 21:57 +10370803,A Student Loan System Stacked Against the Borrower,http://www.nytimes.com/2015/10/11/business/a-student-loan-system-stacked-against-the-borrower.html,74,82,guiseroom,10/11/2015 20:24 +11948889,Ethereum foundation is doing a white hat attack on the DAO,https://www.reddit.com/r/ethereum/comments/4p5zk9/we_are_doing_a_white_hat_attack_on_the_dao/,4,1,Vozze,6/21/2016 19:48 +12139327,AmigaOne X5000: customers can register interest with A-EON,http://www.amiga-news.de/en/news/AN-2016-07-00032-EN.html,1,1,doener,7/21/2016 19:21 +10245459,Fedux.org – Serving local directories via HTTP,https://www.fedux.org/articles/2015/09/19/serving-local-directories-via-http.html,1,1,paul_programmer,9/19/2015 20:30 +11516864,Norway's $860B Fund Drops 52 Companies Linked to Coal,http://www.bloomberg.com/news/articles/2016-04-14/norway-s-860-billion-fund-drops-52-companies-linked-to-coal,229,121,bootload,4/17/2016 23:33 +10815779,The desert dollar industry (2021),http://jpkoning.blogspot.com/2015/12/the-desert-dollar-industry.html,49,35,ivank,12/31/2015 2:29 +11949765,Ask HN: What's a small problem that bugs you in your every day life?,,5,9,jameshk,6/21/2016 21:59 +11781134,ARKYD Kickstarter Backers Offered FULL Refund,https://www.kickstarter.com/projects/arkydforeveryone/arkyd-a-space-telescope-for-everyone-0/posts/1584844,4,1,boznz,5/26/2016 20:14 +11324885,"NYT, July 1997. Computer needs another century or two to defeat Go champion",http://www.nytimes.com/1997/07/29/science/to-test-a-powerful-computer-play-an-ancient-game.html?pagewanted=all,35,6,scorchio,3/20/2016 22:00 +10846093,Common Lisp Recipes,http://weitz.de/cl-recipes/,4,2,jlg23,1/5/2016 21:13 +12481958,Redux for Realtime Gaming,https://www.youtube.com/watch?v=zo39p-30arg,1,1,imcnally,9/12/2016 17:52 +11427379,"In the Future, We Will Photograph Everything and Look at Nothing",http://www.newyorker.com/business/currency/in-the-future-we-will-photograph-everything-and-look-at-nothing,107,116,bootload,4/5/2016 2:26 +10245096,"Ask HN: Start date is set, but I got another offer. What to do?",,3,11,tonym9428,9/19/2015 18:22 +11625114,Rise of the Robots: Review and Reflection,http://www.pl-enthusiast.net/?p=1272,15,4,munin,5/3/2016 23:41 +11774349,Whither Plan 9? History and motivation,http://pub.gajendra.net/2016/05/plan9part1,109,17,wtbob,5/26/2016 0:42 +12020506,I was fired from my internship for proposing a more flexible dress code,http://www.askamanager.org/2016/06/i-was-fired-from-my-internship-for-writing-a-proposal-for-a-more-flexible-dress-code.html,65,110,wdr1,7/1/2016 23:43 +11900782,Bootstrap 4: A Visual Guide to What's New,https://medium.com/wdstack/bootstrap-4-whats-new-visual-guide-c84dd81d8387,4,1,toni,6/14/2016 9:27 +10528710,This Is What Happens When You Repost an Instagram Photo 90 Times,http://art-pete.com/art/i-am-sitting-in-stagram/,4,1,m1,11/8/2015 15:28 +11506258,How to ace a YC interview,https://medium.com/@jmilinovich/how-to-ace-your-yc-interview-5c078aea7908#.5ov602x8h,111,23,jmilinovich,4/15/2016 17:48 +10414838,Design and Punish: A Review of Prison Architect,http://killscreendaily.com/articles/design-punish-review-prison-architect/,35,16,prismatic,10/19/2015 18:57 +11774179,Ask HN: What did you pay for firstnamelastname.com,,14,43,the_cat_kittles,5/26/2016 0:05 +12230161,Loving shell integration on Iterm,https://iterm2.com/documentation-shell-integration.html,2,1,mangatmodi,8/5/2016 5:03 +10955921,Google Chrome Incognito Mode Leaks Google Search Queries [video],https://www.youtube.com/watch?v=wQWLo24a7L8,5,1,niutech,1/22/2016 22:12 +11272958,How one woman's name caused massive issues at a large telecom operator,http://irhadbabic.com/its-all-her-parents-fault/,2,1,gregorymichael,3/12/2016 14:18 +10700544,What happened to Apple design?,http://www.theverge.com/2015/12/8/9872746/apple-bad-hardware-design-iphone-case-pencil-magic-mouse,14,4,axg,12/8/2015 23:17 +11477708,Falcon 9 first stage sails into Port Canaveral atop ASDS,https://www.nasaspaceflight.com/2016/04/falcon-9-first-stage-port-canaveral-asds-big-plans/,3,1,Cogito,4/12/2016 7:02 +11024526,"IBM to cut more than 111,000 jobs in largest corporate lay-off ever",http://www.ibtimes.co.uk/ibm-cut-more-111000-jobs-this-week-largest-corporate-lay-off-ever-1485128?platform=hootsuite,6,1,aburan28,2/3/2016 3:18 +11660796,Noam Chomsky: American Power Under Challenge,http://www.tomdispatch.com/blog/176137/,119,82,chishaku,5/9/2016 15:58 +10452570,Biot: Network-aware information pipe for the Internet of Things,https://bitbucket.org/enbygg3/biot,2,2,blacksqr,10/26/2015 16:45 +11468372,David Chang: The Restaurant Business Is About to Implode,http://www.gq.com/story/david-chang-resturant-business-challenges,13,6,mrfusion,4/10/2016 21:57 +10879913,The Many Faces of David Bowie in This Beautifully Illustrated Gif,http://nerdist.com/see-the-many-faces-of-david-bowie-in-this-beautifully-illustrated-gif/,9,1,ChrisCinelli,1/11/2016 10:07 +12130108,Show HN: Tiny module to replace optimizely,https://www.npmjs.com/package/tiny-experiment,2,1,genejaelee,7/20/2016 16:06 +10648895,Parents Ready for Some Love from Silicon Valley Companies,http://www.nytimes.com/2015/11/27/us/parents-ready-for-some-love-from-silicon-valley-companies.html,14,14,vkb,11/30/2015 11:40 +10567455,Ask HN: iOS MVVM tutorial using Swift,,3,3,drew22huthut,11/14/2015 22:02 +11284302,Key-based device unlocking,http://continuations.com/post/139510663785/key-based-device-unlocking-questionidea-re-apple,1,1,samstokes,3/14/2016 17:55 +10628719,The Anonymous 'war on ISIS' is already falling apart,http://www.theverge.com/2015/11/23/9782330/anonymous-war-on-isis-hacktivism-terrorism,1,1,eplanit,11/25/2015 18:36 +10379125,All the UML you need to know,http://www.cs.bsu.edu/homepages/pvg/misc/uml/,176,102,CaRDiaK,10/13/2015 8:17 +11901984,Microsoft issues debt to finance LinkedIn purchase,http://www.bloomberg.com/news/articles/2016-06-13/why-microsoft-with-100-billion-is-borrowing-to-buy-linkedin,5,2,hobaak,6/14/2016 13:49 +12282689,Coding Boot Camps Attract Tech Companies,http://www.wsj.com/article_email/coding-boot-camps-attract-tech-companies-1470945503-lMyQjAxMTE2ODE2MTUxMzE4Wj,35,49,tarheeljason,8/13/2016 19:18 +10458721,"20,000 Israelis sue Facebook for ignoring Palestinian incitement",http://www.timesofisrael.com/20000-israelis-sue-facebook-for-ignoring-palestinian-incitement/,3,1,davidf18,10/27/2015 15:43 +12067704,Electrostatic Loudspeaker,https://en.wikipedia.org/wiki/Electrostatic_loudspeaker,1,1,jaytaylor,7/10/2016 23:07 +10392892,The World's Highest-Paid YouTube Stars,http://www.forbes.com/sites/maddieberg/2015/10/14/the-worlds-highest-paid-youtube-stars-2015/,2,1,janvdberg,10/15/2015 13:12 +10366326,Infrastructure Pioneer Predicts Datacenter Days Are Numbered,http://www.theplatform.net/2015/10/08/infrastructure-pioneer-predicts-datacenter-days-are-numbered/,24,18,Katydid,10/10/2015 18:06 +11745275,Monstache: realtime MongoDB to ElasticSearch replication,https://github.com/rwynn/monstache,6,2,dcu,5/21/2016 16:45 +10204255,The Most Misread Poem in America,http://www.theparisreview.org/blog/2015/09/11/the-most-misread-poem-in-america/,278,281,dnetesn,9/11/2015 15:35 +12171168,Ask HN: Any visualizations of electrons running thru circuits as code?,,1,1,vtempest,7/27/2016 7:38 +11403966,Sonified Higgs data show a surprising result,http://home.cern/about/updates/2016/03/sonified-higgs-data-show-surprising-result,10,2,hownottowrite,4/1/2016 10:59 +12103526,"Turkish coup bridges, social media blocked",http://www.bbc.com/news/world-europe-36809083,30,3,AdamN,7/15/2016 20:16 +11913323,WWDC 2016 Platforms State of the Union,https://developer.apple.com/videos/play/wwdc2016/102/,1,2,locusm,6/16/2016 1:09 +11367164,Ask HN: What's happening at Google to justify the mismanagement of Chrome?,,4,3,soroso,3/26/2016 19:54 +11118115,Java EE and Microservices in 2016,http://www.infoq.com/news/2016/02/javaee-microservices,1,1,chhum,2/17/2016 14:43 +10816782,Police were called to reports of Murdock banging on the door of a neighbor,http://www.theregister.co.uk/2015/12/30/ian_murdock_debian_founder/,10,1,BinaryIdiot,12/31/2015 8:15 +11690212,SyntaxNet in Context: Understanding Google's New TensorFlow NLP Model,https://spacy.io/blog/syntaxnet-in-context,183,32,syllogism,5/13/2016 13:18 +12453028,Google to acquire Apigee,https://cloudplatform.googleblog.com/2016/09/Google-to-acquire-apigee.html,210,80,ctdean,9/8/2016 13:56 +10741015,A Chinese JavaScript framework that aims to challenge JQuery,https://github.com/drduan/minggeJS/blob/pr/95/README_en.md,2,2,frostnovazzz,12/15/2015 22:37 +11053797,FOQ Frequently Obnoxious Questions When Doing an Open Source Project,http://taskwarrior.org/docs/foq.html,63,37,oddell,2/7/2016 17:46 +11320471,Show HN: Changeforge $150 handcrafted sites for nonprofits,http://changeforge.org,9,11,grimmfang,3/19/2016 21:12 +11038018,Facebook Code Details,,2,5,AngelinaAmore,2/4/2016 23:09 +10589854,"Congress Says Yes to Space Mining, No to Rocket Regulations",http://www.wired.com/2015/11/congress-says-yes-to-space-mining-no-to-rocket-regulations/,66,23,walterbell,11/18/2015 18:50 +10795375,Holography Without Lasers: Hand-Drawn Holograms (1995),http://www.eskimo.com/~billb/amateur/holo1.html,83,5,networked,12/26/2015 21:30 +11164884,Phalcon 2.0.10 released,https://blog.phalconphp.com/,1,2,zhaoyi,2/24/2016 6:12 +11345949,MIT researchers plan death of the traffic light with smart intersections,https://www.youtube.com/watch?v=kh7X-UKm9kw,3,1,njaremko,3/23/2016 16:33 +12077016,Why Your Open Office Isnt Working (and How to Fix It),http://blog.scribblepost.com/open-office-isnt-working-fix/?utm_content=buffera00d7&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,3,1,alexdaskSP,7/12/2016 6:00 +10498271,Corporations and OSS Do Not Mix,http://www.coglib.com/~icordasc/blog/2015/11/corporations-and-oss-do-not-mix.html,8,1,MitjaBezensek,11/3/2015 8:40 +11711887,Should we be afraid of AI?,https://aeon.co/essays/true-ai-is-both-logically-possible-and-utterly-implausible,2,1,tonybeltramelli,5/17/2016 7:36 +12531537,Delta Motorsport Launches Gas Turbine Range Extender,https://www.theengineer.co.uk/delta-motorsport-launches-gas-turbine-range-extender/,3,1,M_Grey,9/19/2016 14:07 +10552218,Power Failure Testing with SSDs,http://blog.nordeus.com/dev-ops/power-failure-testing-with-ssds.htm,86,42,kustodian,11/12/2015 10:03 +11321404,Chinese City Publicly Shames Migrant Workers Who Protested Unpaid Wages,http://blogs.wsj.com/chinarealtime/2016/03/18/chinese-city-publicly-shames-migrant-workers-who-protested-unpaid-wages/,63,19,sharetea,3/20/2016 1:49 +12166912,Steam on Windows 10 will get progressively worse in 5 years,http://gadgets.ndtv.com/games/news/steam-on-windows-10-will-get-progressively-worse-gears-of-war-developer-865457,8,1,dschuetz,7/26/2016 16:44 +11331310,Safari 9.1,https://developer.apple.com/library/mac/releasenotes/General/WhatsNewInSafari/Articles/Safari_9_1.html,56,55,bpierre,3/21/2016 19:54 +10551301,New life for pig-to-human transplants,http://www.nature.com/news/new-life-for-pig-to-human-transplants-1.18768,12,2,DrScump,11/12/2015 4:26 +12411220,Show HN: Learning keyboard touch typing with instant feedbacks,http://hotcoldtyping.com,3,2,palerdot,9/2/2016 6:19 +11602646,A Path to Programming Language Theory,https://github.com/steshaw/plt,174,35,rspivak,4/30/2016 17:45 +11244262,A school in Berlin is teaching refugees how to code,http://techrung.blogspot.com/2016/03/a-school-in-berlin-is-teaching-refugees.html,5,1,abidriaz,3/8/2016 9:16 +10768720,Juniper screenOS authentication backdoor - master ssh password posted,https://community.rapid7.com/community/infosec/blog/2015/12/20/cve-2015-7755-juniper-screenos-authentication-backdoor,407,170,ghshephard,12/20/2015 23:15 +11245496,Show HN: The Top Fives (now with Focus Mode),http://thetopfives.net/focus,5,2,sonaal,3/8/2016 14:46 +10827421,Show HN: SwipeyTunes Tinder style iTunes cleaner,,5,1,karam,1/2/2016 19:13 +11257431,"Scala is not dead, but",http://movingfulcrum.com/scala-is-not-dead-but/,7,1,pdeva1,3/10/2016 4:49 +10728212,The quantum computing era is coming fast,http://www.theguardian.com/commentisfree/2015/dec/13/the-quantum-computing-era-is-coming-qubits-processors-d-wave-google,125,71,jonbaer,12/13/2015 22:15 +10933520,When will we be able to vote online?,http://www.scientificamerican.com/article/when-will-we-be-able-to-vote-online/,1,1,forrestbrazeal,1/19/2016 20:02 +11353129,Fermat's Last Theorem Solved after 300 years,http://www.cnn.com/2016/03/16/europe/fermats-last-theorem-solved-math-abel-prize/?iid=ob_article_footer_expansion&iref=obnetwork,3,1,Trisell,3/24/2016 14:39 +11188570,Functional Programming Is Not Popular Because It Is Weird,http://probablydance.com/2016/02/27/functional-programming-is-not-popular-because-it-is-weird/,73,75,brakmic,2/27/2016 21:21 +11849560,The Myth of Sentient Machines,https://www.psychologytoday.com/blog/mind-in-the-machine/201606/the-myth-sentient-machines,2,1,gnocchi,6/6/2016 19:27 +11209389,Why Im Launching 6 New Startups in the Next 6 Weeks (Even If I Cant Code),https://medium.com/life-tips/why-i-m-launching-6-new-startups-in-the-next-6-weeks-and-how-i-ll-do-it-even-if-i-can-t-code-d0c6ef5a7a5b#.jsamg6qsu,3,2,karimboubker,3/2/2016 11:54 +10215444,Was Tom Hayes Running the Biggest Financial Conspiracy in History?,http://www.bloomberg.com/news/articles/2015-09-14/was-tom-hayes-running-the-biggest-financial-conspiracy-in-history-,105,58,chollida1,9/14/2015 15:13 +10843323,Gallup Poll: Americans' Biggest Problem in 2015? Government,http://www.govexec.com/federal-news/fedblog/2016/01/americans-biggest-problem-2015-government/124849/?oref=govexec_today_nl,3,1,skram,1/5/2016 14:18 +10686564,List of Active IO Domains,http://mypost.io/post/list-of-active-io-domains,1,1,mattbgates,12/6/2015 20:56 +10232376,AMS-IX Breaks 4 Terabits per Second Barrier,https://ams-ix.net/newsitems/218,66,52,usethis,9/17/2015 9:30 +10589398,Understanding Machine Learning: From Theory to Algorithms (2014),http://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning/copy.html,202,57,subnaught,11/18/2015 17:52 +11925784,"Cassini, Rømer, and the velocity of light (2008)",http://fermatslibrary.com/s/cassini-romer-and-the-velocity-of-light,39,6,mgdo,6/17/2016 21:51 +10541480,Federal judge puts limits on FBI use of stingray cell site simulators,https://plus.google.com/+DeclanMcCullagh/posts/3gc6o6B3Pex,114,22,declan,11/10/2015 18:57 +11389585,Show HN: Learning to Launch Free Book,https://learningtolaunch.co/read,6,1,fredrivett,3/30/2016 14:40 +10574105,"Stalking apps are perfectly legal in US, but banning them won't be easy",https://nakedsecurity.sophos.com/2015/11/16/stalking-apps-are-perfectly-legal-in-us-but-banning-them-wont-be-easy/,3,1,bontoJR,11/16/2015 12:53 +11972590,High-speed rail between Houston and Dallas has an eminent domain problem,http://www.slate.com/blogs/moneybox/2016/06/24/high_speed_rail_between_houston_and_dallas_has_an_eminent_domain_problem.html,1,2,state_machine,6/24/2016 19:15 +11676942,Ask HN: How do you read Hacker News on mobile in 2016?,,1,5,kokonotu,5/11/2016 16:50 +12192509,Remove Firefox Hello from FF49,https://bugzilla.mozilla.org/show_bug.cgi?id=1287827,74,83,onli,7/30/2016 11:14 +11629881,Mysterious Nvidia marketing trick,http://orderof10.com,1,1,slizard,5/4/2016 17:19 +11962239,GitHub is Joining the White House in committing to tech inclusion,https://github.com/blog/2196-joining-the-white-house-in-committing-to-tech-inclusion,2,1,wpBenny,6/23/2016 16:25 +11220626,Taming the Mammoth: Why You Should Stop Caring What Other People Think (2014),http://waitbutwhy.com/2014/06/taming-mammoth-let-peoples-opinions-run-life.html,1,1,Smaug123,3/3/2016 22:38 +10599527,How to hijack a journal,http://news.sciencemag.org/scientific-community/2015/11/feature-how-hijack-journal,5,2,freshyill,11/20/2015 4:16 +11279243,"Apple, its time to move on from OS X",https://medium.com/@pauli/apple-it-s-time-to-move-on-from-os-x-cb94d167c77d#.p7ekxrssi,24,10,pavlov,3/13/2016 20:40 +10224373,Now you can find out if GCHQ illegally spied on you,https://www.privacyinternational.org/?q=illegalspying,2,1,burningman1949,9/16/2015 2:43 +10597896,Google Picks Diane Greene to Expand Its Cloud Business,http://www.nytimes.com/2015/11/20/technology/google-picks-diane-greene-to-expand-its-cloud-business.html,175,90,scommab,11/19/2015 21:38 +11650372,"The Origins of 'Horn OK Please,' India's Most Ubiquitous Phrase",http://www.atlasobscura.com/articles/the-origins-of-horn-ok-please-indias-most-ubiquitous-phrase?utm_source=facebook.com&utm_medium=atlas-page,2,1,stevewilhelm,5/7/2016 17:09 +10834521,Ask HN: Device for child internet monitoring?,,1,2,evolve2k,1/4/2016 8:21 +12203020,Theranos' Hail Mary pass: A tabletop laboratory,http://www.cnn.com/2016/08/01/health/theranos-table-top-laboratory/,2,1,jerryhuang100,8/1/2016 15:18 +10960177,GeekTyper hacking simulator ;-),http://geektyper.com/scp/,4,2,SpaceInvader,1/23/2016 21:26 +11074537,Show HN: LogDNA Easy logging in the cloud,https://logdna.com/?ref=showhn,196,65,leeab,2/10/2016 17:59 +11898424,New EV Company Claims to Have $2.3B in Pre-Orders for a Truck Nobody's Seen,http://truckyeah.jalopnik.com/new-ev-company-claims-to-have-2-3-billion-in-pre-order-1781909567,3,1,ourmandave,6/13/2016 22:54 +11680956,Project.json is dead. ASP.NET Core goes back to MSBuild,https://twitter.com/davidfowl/status/730219570783363073,6,3,baroa,5/12/2016 2:31 +10530110,The world beyond batch: Streaming 101,https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101,71,7,dpmehta02,11/8/2015 21:48 +10859915,Economists take aim at wealth inequality,http://www.nytimes.com/2016/01/04/business/economy/economists-take-aim-at-wealth-inequality.html,1,1,sonabinu,1/7/2016 18:59 +11007144,My path to emacs,http://hashnuke.com/2016/01/31/my-path-to-emacs.html,2,1,ingve,1/31/2016 17:47 +11151398,Unlocking San Bernardino shooter's iPhone would open 'Pandora's box',http://www.latimes.com/local/lanow/la-me-ln-apple-attorney-fbi-order-could-destroy-the-iphone-as-it-exists-20160221-story.html,1,1,panarky,2/22/2016 15:26 +12242454,ATLAS-I (EMP generator),https://en.wikipedia.org/wiki/ATLAS-I,2,1,trimbo,8/7/2016 16:11 +12090337,Ask HN: How do you differently interview Bootcampers from Collegiate candidates?,,1,1,probinso,7/13/2016 22:50 +10446836,"A curated list of Chinese websites about ethical hacking, infosec and pentesting",http://www.pentest.guru/index.php/2015/10/23/cracking-the-chinese-code-infosec-websites/,1,1,fabiothebest,10/25/2015 13:38 +10396064,Open Source Photography Workflow,http://www.rileybrandt.com/2015/10/15/foss-photo-flow-2015/,162,34,macco,10/15/2015 21:18 +10378409,Bionic Lens implanted in your eyes give perfect vision for the rest of your life,http://www.businessinsider.com/ocumetics-bionic-lens-perfect-vision-at-every-age-2015-5,10,3,billconan,10/13/2015 3:25 +10954957,British parliament to consider motion on universal basic income,http://www.independent.co.uk/news/uk/politics/universal-basic-income-british-parliament-to-consider-motion-uk-a6823211.html,2,1,joeyespo,1/22/2016 19:22 +11177804,Ruby 2.3 Is Only 4% Faster than 2.2,http://ruby-performance-book.com/blog/2016/02/is-ruby-2-3-faster-no-significant-improvement-for-production-rails-applications.html,3,3,adymo,2/25/2016 21:08 +11840450,Industry Leaders to Advance Standardization of Netscape's JavaScript (1996),http://web.archive.org/web/19981203070212/http://cgi.netscape.com/newsref/pr/newsrelease289.html,3,1,jasim,6/5/2016 11:28 +12256299,Summer reading suggestions from scientist Harold Varmus,https://directorsblog.nih.gov/2016/08/09/summer-reading-suggestions-from-scientists-harold-varmus/,1,2,sciadvance,8/9/2016 17:37 +11534008,Why your brain loves procrastination,http://www.vox.com/2014/12/8/7352833/procrastination-psychology-help-stop,6,2,rfreytag,4/20/2016 13:00 +10901069,Adsvise The ultimate social and digital ad size guide,http://www.adsvise.com/index.html,19,5,megahz,1/14/2016 13:00 +10561041,Show HN: Dvol version control for your volumes in docker,https://clusterhq.com/2015/11/12/introducing-dvol/,15,2,lewq,11/13/2015 17:30 +12505753,Russia declares Pornhub and Youporn illegal content; blocks access,https://www.privateinternetaccess.com/blog/2016/09/russia-declares-pornhub-youporn-illegal-content-blocks-access/,24,5,bitxbitxbitcoin,9/15/2016 13:08 +12209884,Theranos' Highly-Anticipated Defense of Its Tech Is Called a 'Bait-And-Switch',http://fortune.com/2016/08/01/theranos-presentation-panned/,79,42,marcusgarvey,8/2/2016 13:48 +10738532,"AMD GPUOpen Initiative, New Compiler, Drivers and OS SDK's for Linux and HPC",http://hothardware.com/news/amd-goes-open-source-announces-gpuopen-initiative-new-compiler-and-drivers-for-lunix-and-hpc,7,1,jhartmann,12/15/2015 16:07 +12219924,DragonFly BSD 4.6 Released,https://www.dragonflybsd.org/release46/,129,25,cgag,8/3/2016 17:45 +12545466,iPhone 7. Apple Just Showed Us the Future,https://medium.com/@titanas/iphone-7-apple-just-showed-us-the-future-a93e1c969d5f,1,1,titanas,9/21/2016 4:43 +11981415,Maths discovered or invented?,http://jackpstephens.com/is-math-real/,4,1,b01t,6/26/2016 16:23 +12143121,KickassTorrents resurfaces online,http://www.theverge.com/2016/7/22/12255426/kickasstorrents-alternate-sites-spring-up,174,79,noxin,7/22/2016 12:29 +10539060,Bandwidth Distributed Denial of Service: Attacks and Defenses (2013) [pdf],http://mallikarjunainfosys.com/IEEE-PAPERS-2013-14/Bandwidth%20Distributed%20Denial%20of%20Service/Bandwidth%20Distributed%20Denial%20of%20Service.pdf,24,1,wslh,11/10/2015 13:16 +11698414,Whoever does not understand Lisp is doomed to reinvent it (2007),http://lambda-the-ultimate.org/node/2352,175,229,rlander,5/14/2016 22:49 +11244512,Show HN: Android Commons,https://github.com/delight-im/Android-Commons,7,6,marco1,3/8/2016 10:34 +11989710,Those Hilarious Times When Emulations Stop Working,http://blog.archive.org/2016/06/27/those-hilarious-times-when-emulations-stop-working/,3,1,edward,6/27/2016 21:36 +10261035,Features and use cases of Consul,http://specify.io/common/systems/consul,1,1,WolfOliver,9/22/2015 19:32 +10723096,Using Drones to Train Falcons,http://www.slate.com/articles/technology/future_tense/2015/12/hobbyists_are_using_drones_to_train_falcons.html,27,4,mhb,12/12/2015 15:54 +11658909,Game of Thrones torrents: ALL results removed in compliance with EUCD / DMCA,http://torrentz.com/search?q=game+of+thrones,1,1,wslh,5/9/2016 11:17 +11180681,"Why You Should Upgrade Your Router, Even If You Have Older Gadgets",http://www.howtogeek.com/243039/why-you-should-upgrade-your-router-even-if-you-have-older-gadgets/,11,3,nkurz,2/26/2016 10:10 +12345313,Facebook Guesses Your Political Views and Serves Ads Accordingly,http://www.nytimes.com/2016/08/24/us/politics/facebook-ads-politics.html,4,1,gnicholas,8/23/2016 17:09 +10691804,Schwarzenegger: I dont give a damn if we agree about climate change,https://www.facebook.com/notes/arnold-schwarzenegger/i-dont-give-a-if-we-agree-about-climate-change/10153855713574658,367,232,herbertlui,12/7/2015 19:07 +10424856,Western Digital agrees to buy SanDisk for about $19B,http://www.bloomberg.com/news/articles/2015-10-21/western-digital-agrees-to-buy-sandisk-for-about-19-billion,167,47,jsnathan,10/21/2015 12:01 +12044637,Rio Police Officers to Visitors: 'Welcome to Hell',http://deadspin.com/rio-police-officers-to-visitors-welcome-to-hell-1783132474,16,7,mdu96,7/6/2016 17:36 +10457240,Running the Let's Encrypt Beta,https://lolware.net/2015/10/27/letsencrypt_go_live.html,242,100,technion,10/27/2015 10:47 +12343251,Will TypeScript replace JavaScript in development?,,3,2,anupshinde,8/23/2016 12:48 +10839231,React Roadmap (for learning react),https://github.com/petehunt/react-roadmap,4,1,phaedryx,1/4/2016 22:30 +11641697,Every top 5 song from 1958 to 2016,http://polygraph.cool/history/,340,106,pzaich,5/6/2016 4:30 +11519851,Free Dynamic DNS Using Vultr.com,https://github.com/se1exin/Vultr-Dynamic-DNS,3,1,selexin,4/18/2016 13:53 +10417417,Weird star - strange dips in brightness are a bit baffling,http://www.slate.com/blogs/bad_astronomy/2015/10/14/weird_star_strange_dips_in_brightness_are_a_bit_baffling.html,2,1,TeMPOraL,10/20/2015 4:22 +11389822,Microsoft Build 2016 live keynote,https://channel9.msdn.com/LiveEmbedPlayer/Build2016?rnd=1459350446233,166,91,AlexeyBrin,3/30/2016 15:10 +11270963,MyHTML HTML Parser on Pure C with POSIX Threads Support,http://lexborisov.github.io/myhtml/,123,18,yxlx,3/12/2016 2:09 +11489060,"Spring Boot 1.4.0M2 Revamps Unit Testing, Improves JSON, Couchbase, Neo4j",http://spring.io/blog/2016/04/13/spring-boot-1-4-0-m2-available-now,6,1,pieterh_pvtl,4/13/2016 15:34 +11473696,Judge Who Authorized Police Search of Privacy Activists Wasn't Told About Tor,http://www.thestranger.com/slog/2016/04/08/23914735/judge-who-authorized-police-search-of-seattle-privacy-activists-wasnt-told-they-operate-tor-network,404,222,nkurz,4/11/2016 18:01 +10239496,Show HN: redigest.it Digest for Hacker News and reddit,http://www.redigest.it/,3,5,redigestit,9/18/2015 14:51 +10983214,Antioxidants May Make Cancer Worse,http://www.scientificamerican.com/article/antioxidants-may-make-cancer-worse/,99,40,jrs235,1/27/2016 20:52 +11072508,Show HN: Gains Supply Discover the best new bodybuilding articles and products,http://gains.supply/,4,6,GFuller,2/10/2016 13:20 +11704219,Ask HN: Statistical Comparison of Startup Survival in Recession,,1,1,lsiebert,5/16/2016 4:18 +10618331,Ahmed Mohameds Family Demands $15M After Clock Incident,http://time.com/4124649/ahmed-mohamed-clock-sues-irving-texas/,13,3,jacquesm,11/24/2015 0:25 +11003289,How to fight inequality with stocks,http://www.politico.com/agenda/story/2016/1/employee-ownership-bernstein-000030,2,1,entee,1/30/2016 19:19 +11469315,Qpm: A package manager for Qt,http://www.qpm.io/,141,102,plumeria,4/11/2016 2:37 +11669945,Quantlib: Library for valuation and risk algorithms,https://github.com/MikaelUmaN/quantlib,1,1,based2,5/10/2016 19:35 +10676888,What I learned from four years working at McDonalds,http://www.huffingtonpost.com/kate-norquay/what-i-learned-four-years-working-at-mcdonalds_b_8682928.html?ir=Parents&ncid=fcbklnkushpmg00000037,13,1,greggyb,12/4/2015 15:43 +10450204,Stalin's Man in London,http://www.standpointmag.co.uk/node/6227/full,1,1,ableal,10/26/2015 9:08 +11926557,Hypegram news curation and story detection,http://hypegram.com,2,1,aymanc,6/18/2016 1:29 +10467745,Reverse-engineering how the Oculus Rift DK2s tracking system works (2014),http://doc-ok.org/?p=1095,44,3,aaronsnoswell,10/28/2015 22:02 +11298609,LivingSocial Is Laying Off More Than 50 Percent of Its Staff,http://recode.net/2016/03/16/livingsocial-is-laying-off-more-than-50-percent-of-its-staff/,230,162,danso,3/16/2016 16:36 +10469737,Changeset 191644: Implement viewport-width-based fast-click heuristic,http://trac.webkit.org/changeset/191644,7,3,kostarelo,10/29/2015 7:58 +10923479,"Once upon a time, memory allocators made sense",https://github.com/Tarsnap/libcperciva/commit/cabe5fca76f6c38f872ea4a5967458e6f3bfe054,142,117,dchest,1/18/2016 9:39 +12575498,Swiss endorse new surveillance powers,http://www.bbc.com/news/world-europe-37465853,124,54,benevol,9/25/2016 14:36 +11439939,MIT to Begin Offering a CS Minor,http://eecs.mit.edu/csminor,11,3,kennethfriedman,4/6/2016 16:46 +10808626,"In the 1960s, Adult Coloring Books Were Radical Texts",http://www.atlasobscura.com/articles/in-the-1960s-adult-coloring-books-were-radical-texts,60,12,prismatic,12/29/2015 19:46 +12372644,Does Bill Nye's comments about philosophy show his ignorance on the subject?,http://qz.com/627989/why-are-so-many-smart-people-such-idiots-about-philosophy/,3,3,cpard,8/27/2016 15:07 +12212151,Hyperparameter Optimization 101 [slides],http://www.slideshare.net/SigOpt/hyperparameter-optimization-101,1,1,alexcmu,8/2/2016 18:37 +11010003,Global Venture Capital Distribution,http://avc.com/2016/01/global-venture-capital-distribution/,3,1,mschrage,2/1/2016 5:42 +11334452,Can You Use YouTube and Vimeo for Internal Videos?,https://medium.com/@circlehd/can-you-use-youtube-vimeo-for-internal-videos-3e6a12cb0855#.1vtvwabxh,2,2,sudheshk,3/22/2016 4:39 +10787812,Typing with pleasure,https://pavelfatin.com/typing-with-pleasure/,106,34,hhariri,12/24/2015 11:09 +11176275,Super Engine may fundamentally change the way internal combustion engines work,http://www.anl.gov/articles/argonne-achates-power-and-delphi-automotive-investigate-new-approach-engines,166,138,Oatseller,2/25/2016 18:02 +10558651,How coding helped a founder make alterations and pivot the business quickly,http://realbusiness.co.uk/article/32061-how-coding-helped-cityfalcon-founder-make-alterations-and-pivot-the-business-quickly-and-easily,2,1,ishikaalani,11/13/2015 8:37 +11800436,Npm isntall,https://github.com/npm/npm/issues/2933,3,1,dacm,5/30/2016 9:25 +10850395,Computers in Music (1988),http://articles.ircam.fr/textes/Boulez88c/,34,1,edword,1/6/2016 13:39 +10345345,"If Apple didnt hold $181B overseas, it would owe $59B in US taxes",http://arstechnica.com/business/2015/10/apple-google-microsoft-hold-more-than-336b-overseas-via-legal-tax-loopholes/,7,3,Phoenix26,10/7/2015 11:26 +11008644,Tech Companies Are Hiring Economists,http://www.forbes.com/sites/georgeanders/2016/01/28/from-hoodies-to-heuristics-techs-rebels-are-hiring-economists,12,5,bootload,1/31/2016 23:19 +12307346,Smalltalk ruined my life,https://medium.com/p/smalltalk-ruined-my-life-aaf2190f6f16,2,6,horrido,8/17/2016 18:57 +10849275,What I learnt working on my startup this New Years Eve,https://www.techinasia.com/talk/learnt-working-startup-years-eve,1,2,williswee,1/6/2016 8:19 +11483306,Facebook F8 Reveals New Developer Tools and Services,https://developers.facebook.com/blog/post/2016/04/12/f8-2016-developer-roundup/,3,2,dfabulich,4/12/2016 20:31 +10988970,Docker Universal Control Plane,https://www.docker.com/products/docker-universal-control-plane,2,1,chris-at,1/28/2016 16:09 +10349058,Harvard's prestigious debate team loses to New York prison inmates,http://www.theguardian.com/education/2015/oct/07/harvards-prestigious-debate-team-loses-to-new-york-prison-inmates?CMP=share_btn_fb,4,2,jimsojim,10/7/2015 21:00 +10690487,Warning from Prince Charles that artisanal cheese could disappear,http://www.telegraph.co.uk/news/worldnews/europe/france/12036040/French-traditionalists-praise-warning-from-Prince-Charles-that-artisanal-cheese-could-disappear.html,2,1,rbcgerard,12/7/2015 16:35 +10445633,My Dark California Dream,http://www.nytimes.com/2015/10/25/opinion/sunday/my-dark-california-dream.html,77,63,samclemens,10/25/2015 1:52 +12139625,Microsoft shipped Python code in 1996,http://python-history.blogspot.com/2009/01/microsoft-ships-python-code-in-1996.html,3,1,znpy,7/21/2016 20:03 +10641701,California lawmaker proposes using the Third Amendment to fight surveillance,http://arstechnica.com/tech-policy/2015/11/could-the-third-amendment-be-used-to-fight-the-surveillance-state/,8,1,pavornyoh,11/28/2015 17:38 +11111506,Vulkan API demonstrated on mobile GPUs,http://blog.imgtec.com/powervr/experience-vulkan-graphics-and-compute-at-launch-on-powervr-gpus,2,1,alexvoica,2/16/2016 17:28 +11264421,Secretary Problem,https://en.wikipedia.org/wiki/Secretary_problem,3,1,akman,3/11/2016 3:11 +10505683,Ask HN: encrypted cloud file storage for iOS/Android?,,6,3,msh,11/4/2015 10:45 +12428593,Show HN: Frontexpress manages routes in browser like Express does on Node,https://github.com/camelaissani/frontexpress,5,2,camelaissani,9/5/2016 6:55 +10780401,How Sugar and Fat Trick the Brain into Wanting More Food,http://www.scientificamerican.com/article/how-sugar-and-fat-trick-the-brain-into-wanting-more-food/,10,1,daegloe,12/22/2015 21:07 +10684565,Mathematics of PCA,http://efavdb.com/principal-component-analysis/,8,3,efavdb,12/6/2015 6:26 +11612673,Judge Grants Search Warrant Forcing Woman to Unlock iPhone with Touch ID,http://www.macrumors.com/2016/05/02/judge-unlock-iphone-touch-id,218,206,outworlder,5/2/2016 16:11 +12527604,The disruption of Silicon Valleys restaurant scene,http://www.nytimes.com/2016/09/19/technology/how-tech-companies-disrupted-silicon-valleys-restaurant-scene.html,67,68,kanamekun,9/18/2016 22:50 +12372200,Show HN: SaveMyTime get insights how you spend your time,http://savemytime.co/en,3,1,crisen,8/27/2016 13:13 +12303958,Yet Another Government-Sponsored Malware,https://www.schneier.com/blog/archives/2016/08/yet_another_gov.html,45,22,r0h1n,8/17/2016 11:55 +11306097,"Libretto Vagrant as a Go Library, Supports AWS, Openstack, VSphere, etc",https://github.com/apcera/libretto,16,3,zquestz,3/17/2016 17:43 +11842877,Endemic fraud threatens digital advertising budgets,http://www.ft.com/intl/cms/s/0/8e2f59c0-2b01-11e6-a18d-a96ab29e3c95.html,2,1,mikkokotila,6/5/2016 20:12 +10919770,Ask HN: Why is it that more experienced candidates get paid more?,,5,3,pinkunicorn,1/17/2016 15:48 +11006513,Introduction to the Quorum Programming Language and Evidence-Oriented Programming,http://blog.csta.acm.org/2015/10/01/accesscs10k-quorum-programming-language-and-evidence-oriented-programming/,60,29,edtechdev,1/31/2016 14:41 +10486980,Are there any cons of serving audio-less videos as video instead of GIF?,,1,1,as1ndu,11/1/2015 16:47 +11728542,Uber's Chief Systems Architect on Their Architecture and Rapid Growth,https://www.infoq.com/articles/podcast-matt-ranney,3,1,olalonde,5/19/2016 6:59 +11895431,Comparing the LinkedIn VS WhatsApp purchase,http://www.kidsil.net/2016/06/microsoft-buys-linkedin/,2,2,kidsil,6/13/2016 17:06 +12094568,Moore Foundation provides grant for Contiuum's Python Numba and Dask Compilers,https://www.continuum.io/blog/developer-blog/gordon-and-betty-moore-foundation-grant-numba-and-dask,3,2,tanlermin,7/14/2016 15:18 +12159152,"Google Trends: Pokemon More Relevant Than Trump, Clinton",http://blog.plot.ly/post/147939406977/google-trends-pokemon-more-relevant-than-trump,1,1,gk1,7/25/2016 15:05 +12031674,StartEncrypt moves to ACME,https://www.startssl.com/NewsDetails?date=20160606#20160704,9,2,okket,7/4/2016 16:37 +10640268,MIT Engineers Make Water Boil With the 'Flip of a Switch',http://motherboard.vice.com/read/mit-engineers-make-water-boil-with-the-flip-of-a-switch?trk_source=recommended,2,1,jiangmeng,11/28/2015 6:35 +12342913,Double Arm Transplant Surgery,https://www.statnews.com/2016/08/23/double-arm-transplant/,60,9,aabaker99,8/23/2016 11:52 +12339469,Should You Charge Your Phone Overnight?,http://www.nytimes.com/2016/08/22/technology/personaltech/charge-phone-overnight.html,3,2,hugenerd,8/22/2016 21:09 +11431599,Roku debuts a new Streaming Stick with a quad-core processor,http://techcrunch.com/2016/04/05/roku-debuts-a-new-streaming-stick-with-a-quad-core-processor-support-for-private-listening/,2,1,prostoalex,4/5/2016 16:12 +12137777,Mark Zuckerberg on the next 10 years of Facebook,http://www.theverge.com/a/mark-zuckerberg-future-of-facebook,79,120,jrbedard,7/21/2016 16:08 +10832439,Is the Drive for Success Making Our Children Sick?,http://www.nytimes.com/2016/01/03/opinion/sunday/is-the-drive-for-success-making-our-children-sick.html,163,124,kornish,1/3/2016 21:17 +12396595,EmDrive: Nasa paper has finally passed peer review,http://www.ibtimes.co.uk/emdrive-nasa-eagleworks-paper-has-finally-passed-peer-review-says-scientist-know-1578716,87,57,xbmcuser,8/31/2016 7:36 +12251625,N26 e-bank promises free account creation and id verification over internet,https://support.n26.com/read/000001250?locale=en,3,1,pingec,8/8/2016 23:55 +10871119,DANE support lands in OpenSSL (git master),https://github.com/openssl/openssl/commit/59fd40d4e5030a7257edd11d758eab1dcebb3787,4,2,Zash,1/9/2016 13:12 +10773847,Qz's Chart of the Year for 2015 announced,http://qz.com/577146/quartzs-chart-of-the-year-for-2015/,1,1,jjb123,12/21/2015 21:59 +11920594,Salesforce Said to Have Been Rival Suitor for LinkedIn,http://www.bloomberg.com/news/articles/2016-06-16/salesforce-said-to-be-goldman-s-failed-rival-suitor-for-linkedin,1,1,petethomas,6/17/2016 3:51 +12097566,Top Software Engineering Books,http://aioptify.com/top-software-books.php?utm_source=hackernews&utm_medium=cpm&utm_campaign=topsoftwarebooks,11,2,jahan,7/14/2016 22:09 +11231526,"Setback for Keyboardio, the heirloom-grade keyboard for serious typists",https://www.kickstarter.com/projects/keyboardio/the-model-01-an-heirloom-grade-keyboard-for-seriou/posts/1501167,4,1,jseliger,3/5/2016 23:03 +10824096,"Celebrating James Maxwell, the Father of Light",https://cosmosmagazine.com/physical-sciences/celebrating-james-maxwell-father-light,51,7,Hooke,1/1/2016 23:34 +11186418,Popcorntime in Your Browser,http://popcorntime-browser.com/,2,1,ShashawatSingh,2/27/2016 7:35 +11410805,Ask HN: What are the podcasts you guys listen to?,,27,29,kyloren,4/2/2016 8:56 +11167711,Show HN: Coati The Source Explorer,https://coati.io/,15,2,egraether,2/24/2016 16:02 +11125074,"Tim Cook, privacy martyr?",http://www.economist.com/news/business-and-finance/21693189-apples-boss-may-have-choose-between-his-principles-and-his-liberty-tim-cook-privacy?fsrc=permar|image2,1,2,citizensixteen,2/18/2016 11:36 +10482069,Ask HN: What happened to Express.js?,,14,11,MehdiHK,10/31/2015 7:10 +10251587,Latex to HTML5 Conversion for Scientific Papers,https://github.com/smarr/latex-to-html5,96,40,smarr,9/21/2015 11:46 +10440540,Sexual Economics: The Price of Sex at USC,http://www.neontommy.com/news/2015/02/price-sex-usc,2,1,ChasePatterson,10/23/2015 18:48 +11289629,Ask HN: Sorry I'm new but how do I,,2,3,andrewfromx,3/15/2016 14:00 +10949354,CA assembly member introduces encryption ban disguised as human trafficking bill,http://asmdc.org/members/a09/news-room/video-gallery/cooper-introduces-human-trafficking-investigation-legislation,272,91,asimpletune,1/21/2016 23:22 +11207084,Windows 10 growth hits the brakes,http://www.itworld.com/article/3039922/microsoft-windows/windows-10-growth-hits-the-brakes.html,4,1,cm2187,3/1/2016 23:42 +10566254,The Culling of the Herd,http://techcrunch.com/2015/11/14/aileen-lee-has-much-to-answer-for-although-you-have-to-admire-her-neological-powers/,45,20,pavornyoh,11/14/2015 16:49 +11473482,Twinkie diet helps nutrition professor lose 27 pounds,http://www.cnn.com/2010/HEALTH/11/08/twinkie.diet.professor/,2,1,samfisher83,4/11/2016 17:34 +11564211,Show HN: Donald Trump V/s Hillary Clinton Better On-Site UX?,https://www.designernews.co/stories/68000-ask-dn-donald-trump-vs-hillary-clinton--which-has-got-better-onsite-user-experience,1,1,vipul4vb,4/25/2016 14:00 +10350284,Organic GMOs Could Be the Future of Food??If We Let Them,https://medium.com/backchannel/organic-gmos-could-be-the-future-of-food-if-we-let-them-fe304aa89554?curator=MediaREDEF,5,5,dtawfik1,10/8/2015 1:18 +10557081,"Tech Leading the Way on Paid Family Leave, Rest of the Country Should Catch Up",http://apps.tcf.org/tech-companies-paid-leave,1,1,aschearer,11/12/2015 23:55 +10355030,Show HN: Download any song without knowing its name,http://iyask.me/Instant-Music-Downloader/,321,134,yask123,10/8/2015 18:41 +12035887,Nuclear Plant Accidents: Sodium Reactor Experiment,http://allthingsnuclear.org/dlochbaum/nuclear-plant-accidents-sodium-reactor-experiment,87,50,tehabe,7/5/2016 12:26 +10512183,Micro-libraries: the future of front-end development?,http://blog.wolksoftware.com/microlibraries-the-future-of-web-development,3,1,ower89,11/5/2015 8:01 +11365966,Ask HN: What's the best formal language?,,9,6,miguelrochefort,3/26/2016 15:23 +10530917,IBM is trying to solve computing scaling issues with electronic blood,http://arstechnica.com/gadgets/2015/11/5d-electronic-blood-ibms-secret-sauce-for-computers-with-biological-brain-like-efficiency/,71,13,saidajigumi,11/9/2015 1:22 +10753811,Swift: Lazy Properties in Structs,http://oleb.net/blog/2015/12/lazy-properties-in-structs-swift/,22,2,ingve,12/17/2015 19:30 +10596753,Vellvm: Verified LLVM,http://www.cis.upenn.edu/~stevez/vellvm/,95,10,lelf,11/19/2015 18:59 +11668157,Why I Quit Facebook Relay,https://medium.com/@OverclockedTim/why-i-quit-facebook-relay-eeab0177f92f#.a9d7yuve8,1,1,lkrubner,5/10/2016 15:59 +10204052,Ask HN: How do I clear my mind and regain focus?,,4,3,zieseil,9/11/2015 15:03 +11297932,Show HN: A Simple JavaScript Speech Recognizer,https://dreamdom.github.io/speechrec.html,8,1,neverstopcoding,3/16/2016 15:12 +12313908,Facebook is building its own Steam-style desktop gaming platform with Unity,https://techcrunch.com/2016/08/18/facebook-desktop-game-platform/,164,195,prostoalex,8/18/2016 16:28 +12388984,Can You Hear Me Now? Spotty Reception in the Heart of Silicon Valley,http://www.nytimes.com/2016/08/30/us/spotty-cell-reception-in-the-heart-of-silicon-valley.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=mini-moth®ion=top-stories-below&WT.nav=top-stories-below&_r=0,1,1,hvo,8/30/2016 11:13 +11882265,Canadian doctors reverse severe MS using stem cells,http://www.vox.com/2016/6/9/11898512/multiple-sclerosis-stem-cell-chemo,371,77,yurisagalov,6/11/2016 5:45 +11871753,Show HN: 1AppMode MacOS X Single Application Mode Revisited,https://github.com/Cha-cho/1AppMode,3,2,cha-cho,6/9/2016 19:38 +11553883,Whaling emerges as cybersecurity threat,http://www.cio.com/article/3059621/security/whaling-emerges-as-major-cybersecurity-threat.html,30,17,Oatseller,4/23/2016 2:47 +12442263,Goldman Sachs Has Started Giving Away Its Most Valuable Software,http://www.wsj.com/articles/goldman-sachs-has-started-giving-away-its-most-valuable-software-1473242401,14,3,cookscar,9/7/2016 11:05 +12389453,Great Developers Don't Need to Be Passionate,http://blog.qualified.io/great-developers-dont-need-to-be-passionate,3,1,sidcool,8/30/2016 12:42 +10793831,OpenBSD Jumpstart: Learn to Tame OpenBSD Quickly,http://www.openbsdjumpstart.org,131,50,fcambus,12/26/2015 10:35 +11841657,NSObject (1994),http://www.nextop.de/NeXTstep_3.3_Developer_Documentation/Foundation/Classes/NSObject.htmld/index.html,62,6,hellofunk,6/5/2016 16:20 +10449735,The Cold Logic of Drunk People (2014),http://www.theatlantic.com/health/archive/2014/10/the-cold-logic-of-drunk-people/381908/?single_page=true,73,64,bkraz,10/26/2015 5:26 +10851428,The Lawyer Who Became DuPonts Worst Nightmare,http://www.nytimes.com/2016/01/10/magazine/the-lawyer-who-became-duponts-worst-nightmare.html,4,1,iMark,1/6/2016 16:34 +12420561,"Websocket Shootout: Clojure, C++, Elixir, Go, Node.js, and Ruby",https://hashrocket.com/blog/posts/websocket-shootout,83,37,blahedo,9/3/2016 19:04 +11720545,Visualising random variables,https://terrytao.wordpress.com/2016/05/13/visualising-random-variables/,40,12,baoyu,5/18/2016 8:33 +11131429,"Homelessness Solved, Youre Welcome",https://medium.com/@citycyclops/homelessness-solved-you-re-welcome-efd11fc64960#.wddlt1r4a,3,1,pldpld,2/19/2016 3:56 +11319947,The Mattering Instinct,https://www.edge.org/conversation/rebecca_newberger_goldstein-the-mattering-instinct,15,2,lermontov,3/19/2016 19:07 +12146464,How Humble Bundle stops online fraud,http://developer.humblebundle.com/post/147806409802/humble-fraud,214,113,walterbell,7/22/2016 20:17 +10353521,Researchers urge: industry standard SHA-1 should be retracted sooner,http://www.cwi.nl/news/2015/researchers-urge-industry-standard-sha-1-should-be-retracted-sooner,2,1,lisper,10/8/2015 15:50 +11099809,What the diamond industry is really selling,http://qz.com/614214/what-the-diamond-industry-is-really-selling/,78,83,elorant,2/14/2016 20:22 +11874110,Unraveling Möbius strips of edge-case data,https://www.oreilly.com/ideas/unraveling-mobius-strips-of-edge-case-data,12,1,wallflower,6/10/2016 3:32 +10273235,John Carmack on Developing the Netflix App for Oculus,http://techblog.netflix.com/2015/09/john-carmack-on-developing-netflix-app.html,345,157,vquemener,9/24/2015 17:48 +11797636,Bhyve now with graphics support,https://wiki.freebsd.org/bhyve/UEFI,69,22,moogle19,5/29/2016 18:44 +12032892,CounterStrike:GO and a recent gambling scandal,https://www.youtube.com/watch?v=_8fU2QG-lV0&feature=share,1,1,muse900,7/4/2016 20:42 +10608335,Why has Italian cinema lost its appeal abroad?,http://www.theparisreview.org/blog/2014/11/21/lost-in-translation/,58,37,prismatic,11/21/2015 22:41 +11711393,Ask HN: Are there only 2 reverse-CDN (CRN) in the entire world?,,2,3,diegorbaquero,5/17/2016 4:47 +11111592,"New Jersey School Eases Pressure on Students, Baring an Ethnic Divide (2015)",http://www.nytimes.com/2015/12/26/nyregion/reforms-to-ease-students-stress-divide-a-new-jersey-school-district.html,1,1,stefap2,2/16/2016 17:37 +11676885,"Germany hit a new high in renewable energy, briefly making prices negative",http://qz.com/680661/germany-had-so-much-renewable-energy-on-sunday-that-it-had-to-pay-people-to-use-electricity/,36,25,Osiris30,5/11/2016 16:44 +11705893,The Bank Job breaking a mobile banking application,https://boris.in/blog/2016/the-bank-job/,135,39,deproders,5/16/2016 12:44 +10223490,Show HN: Growth is shit? is it worth to spend time on growth hack early?,https://medium.com/its-an-app-world/growth-hack-is-shit-bdb82ec12aeb,1,1,introvertmac,9/15/2015 22:12 +10546118,Security v usability: cracking the workplace password problem,http://www.theguardian.com/media-network/2015/oct/27/password-security-usability-workplace-problem,2,1,willyt,11/11/2015 11:41 +12431926,Hexameter (hexagonal grid library) 3.0.0 released,https://github.com/Hexworks/hexameter/releases/tag/v3.0.0,19,3,edem,9/5/2016 19:50 +12140270,Introducing Framer for iOS,http://blog.framerjs.com/posts/framer-preview-for-ios.html,4,2,sboak,7/21/2016 21:36 +10600687,NEW ANONIMOUS APP NOIZ,https://play.google.com/store/apps/details?id=jaydee.noiz,1,1,joxynyc,11/20/2015 11:17 +10919198,Teenage inventor calls on young people to ditch their smartphones,http://www.independent.co.uk/life-style/ann-makosinski-teenage-inventor-uses-tedx-teen-talk-to-call-on-young-people-to-ditch-their-a6816626.html,3,1,gnocchi,1/17/2016 11:52 +11519670,Ask HN: After working for myself what job positions am I suitable for?,,10,15,FlyingSquirrel,4/18/2016 13:22 +11743239,Simple Genetic Algorithm Can Rival Stochastic Gradient Descent in Neural Nets,http://eplex.cs.ucf.edu/publications/2016/morse-gecco16,5,1,hardmaru,5/21/2016 4:44 +11380710,Art and Technology: Experiencing Artwork in Virtual Reality,http://www.artdiversions.com/art-and-technology-experiencing-artwork-in-virtual-reality/,2,1,artdiversions,3/29/2016 11:27 +10628020,So What Exactly Is a Light Field Volume?,http://uploadvr.com/so-what-exactly-is-a-light-field-volume/,1,1,taylorwc,11/25/2015 16:44 +11124854,"One-Third of Clinical Trial Results Never Disclosed, Study Finds",http://www.bloomberg.com/news/articles/2016-02-17/one-third-of-clinical-trial-results-never-disclosed-study-finds,97,26,adamlvs,2/18/2016 10:34 +10992287,Ask HN: How do you transition your projects to use newer technology?,,2,1,antjanus,1/28/2016 23:14 +11836931,"Show HN: Which-cloud, what cloud does an ip address belong to?",https://github.com/bcoe/which-cloud,38,9,BenjaminCoe,6/4/2016 16:43 +11581681,Introducing MIR,http://blog.rust-lang.org/2016/04/19/MIR.html,736,164,steveklabnik,4/27/2016 16:07 +12561495,Watching Evolution Happen in Two Lifetimes,https://www.quantamagazine.org/20160922-evolution-peter-rosemary-grant-interview/,52,40,M_Grey,9/23/2016 0:33 +11955920,Backups added to Linode API alpha,https://engineering.linode.com/2016/06/22/Backups-Added-6-22-2016.html,2,3,eatonphil,6/22/2016 18:23 +10460280,SXSW cancels panels on harrassment in gaming following harrassment,http://www.billboard.com/articles/events/sxsw/6745021/sxsw-cancels-two-panels-gamer-harassment,4,2,anigbrowl,10/27/2015 18:58 +11265833,A Possible API for Siri,https://notes.nevan.net/an-api-for-siri-831abf62dc73,21,4,nevanking,3/11/2016 10:48 +12122749,Could you store energey in ice cubes?,,1,2,Pica_soO,7/19/2016 16:38 +11942000,Show HN: Gone is your mobile sidekick for handling all your daily tasks,https://itunes.apple.com/us/app/gone-tasks-free-to-do-list/id1113824065?mt=8,1,1,mediasans,6/20/2016 22:11 +10459047,Design of a digital republic,https://medium.com/@urbit/design-of-a-digital-republic-f2b6b3109902,42,17,state,10/27/2015 16:21 +10244883,Love Affair with Mozambiques Once-Ravaged Gorongosa National Park,http://nautil.us/issue/28/2050/ingenious-greg-carr,11,3,dnetesn,9/19/2015 17:18 +11360910,Reasons why I will not be replying to your argument,http://katsudon.net/?p=4746,4,4,ohjeez,3/25/2016 16:21 +10940136,Show HN: A job board for quality contract gigs (on-site and remote),https://trespy.com,5,1,the_wheel,1/20/2016 18:20 +10227643,The Intel SYSRET privilege escalation (2012),https://blog.xenproject.org/2012/06/13/the-intel-sysret-privilege-escalation/,44,10,dangrossman,9/16/2015 16:11 +12342311,How Tux the Penguin Ruined It for Linux,https://piss.io/how-tux-the-penguin-ruined-it-for-linux-8b221fe63387#.l31vt0ct2,9,11,smcl,8/23/2016 9:02 +10645302,Zero Knowledge Proofs: The Secret Santa Protocol,https://boompig.herokuapp.com/blog/secret-santa-protocol,15,1,pjing,11/29/2015 17:35 +11007792,The Turbo-Encabulator in Industry (1944),http://ieeexplore.ieee.org/xpl/articleDetails.jsp?reload=true&arnumber=5328648,57,20,PascLeRasc,1/31/2016 20:02 +10322164,ElixirScript Elixir to JavaScript,https://github.com/bryanjos/elixirscript,6,1,clessg,10/3/2015 0:58 +12210509,Hard Drive Stats for Q2 2016,https://www.backblaze.com/blog/hard-drive-failure-rates-q2-2016/,181,57,ehPReth,8/2/2016 15:12 +10695343,BrickInstructions.com: Lego booklet site,http://lego.brickinstructions.com,73,22,fritz_vd,12/8/2015 8:17 +11101699,States consider allowing kids to learn coding instead of foreign languages,http://www.csmonitor.com/Technology/2016/0205/States-consider-allowing-kids-to-learn-coding-instead-of-foreign-languages,5,6,chewymouse,2/15/2016 5:41 +11752755,The Search for Our Missing Colors,http://www.newyorker.com/tech/elements/the-search-for-our-missing-colors,64,21,bananaoomarang,5/23/2016 9:30 +10680925,Mozilla Admits to Revenue Sharing Arrangement with Pocket,http://www.wired.com/2015/12/mozilla-is-flailing-when-the-web-needs-it-the-most/,10,5,e15ctr0n,12/5/2015 4:49 +11727185,Salesforce lost 3.5 hours of customer data in instance NA14,https://help.salesforce.com/apex/HTViewSolution?urlname=Root-Cause-Message-for-Disruption-of-Service-on-NA14-May-2016&language=en_US,3,1,jpatokal,5/19/2016 0:53 +10537993,Goldilocks Analogue Kickstarter 90% Funded Arduino and Audio I/O,https://www.kickstarter.com/projects/feilipu/goldilocks-analogue-classic-arduino-audio-superpow/,1,3,feilipu,11/10/2015 7:10 +10270242,Cubic SDR Cross-Platform Software-Defined Radio Application,http://www.cubicsdr.com,13,2,MrBra,9/24/2015 6:55 +12063062,YC-backed Cymmetria published a report about an APT caught with cyber-deception,https://threatpost.com/apt-group-patchwork-cuts-and-pastes-a-potent-attack/119081/,6,3,lorg,7/9/2016 20:07 +10816971,Show HN: Create your own 2015 Year in Review,https://myyear.co/,6,4,fredrivett,12/31/2015 9:41 +10557652,Show HN: Mechanical Turk cost calculator,https://morninj.github.io/Mechanical-Turk-Cost-Calculator/,14,2,morninj,11/13/2015 2:21 +11927048,Go: Subtests and Sub-benchmarks,http://elliot.land/go-subtests-and-sub-benchmarks,42,2,elliotchance,6/18/2016 4:04 +10964450,The China GPS shift problem,https://en.wikipedia.org/wiki/Restrictions_on_geographic_data_in_China#The_China_GPS_shift_problem,205,49,ivank,1/24/2016 22:59 +10809942,Npm v3 Dependency Resolution,https://docs.npmjs.com/how-npm-works/npm3,8,1,bpierre,12/30/2015 0:05 +12444336,15 years later: on the physics of high-rise building collapses (Twin Towers) [pdf],http://www.europhysicsnews.org/articles/epn/pdf/2016/04/epn2016474p21.pdf,3,1,afandian,9/7/2016 15:47 +12158615,Researchers Who Exposed VW Gain Little Reward from Success,http://www.nytimes.com/2016/07/25/business/vw-wvu-diesel-volkswagen-west-virginia.html,2,1,danso,7/25/2016 13:46 +12402850,"Code that is valid in both PHP and Java, and produces the same output in both",https://gist.github.com/forairan/b1143f42883b3b0ee1237bc9bd0b7b2c,405,88,adamnemecek,9/1/2016 2:55 +11827586,Jane Street Puzzles,https://www.janestreet.com/puzzles/,2,1,astdb,6/3/2016 1:02 +10306744,A Quiet Port is Logistics Nightmare,http://thedisorderofthings.com/2015/01/19/the-quiet-port-is-logistics-nightmare/,1,1,Avshalom,9/30/2015 20:07 +12002715,Worldwide Delivery of Amazon SNS Messages via SMS,https://aws.amazon.com/blogs/aws/new-worldwide-delivery-of-amazon-sns-messages-via-sms/,17,4,runesoerensen,6/29/2016 16:26 +10475746,The Narrative Frays for Theranos and Elizabeth Holmes,http://www.nytimes.com/2015/10/30/business/the-narrative-frays-for-theranos-and-elizabeth-holmes.html,6,1,drsilberman,10/30/2015 2:04 +11245961,"Will making more money make you happier, and if so, how much?",https://80000hours.org/articles/everything-you-need-to-know-about-whether-money-makes-you-happy/,11,5,robertwiblin,3/8/2016 15:51 +11416860,Rust via its Core Values,http://designisrefactoring.com/2016/04/01/rust-via-its-core-values/,135,119,pcwalton,4/3/2016 17:33 +12006917,Microsoft: Language Server Protocol,https://github.com/Microsoft/language-server-protocol,3,1,systemfreund,6/30/2016 6:19 +10255789,The Importance of Donald Trump,http://nymag.com/daily/intelligencer/2015/09/frank-rich-in-praise-of-donald-trump.html,111,132,aerocapture,9/21/2015 23:29 +10944156,Introducing the Facebook Sports Stadium,http://newsroom.fb.com/news/2016/01/facebook-sports-stadium,71,34,pmcpinto,1/21/2016 9:12 +10552064,"Firefox OS 2.5 Developer Preview, an Experimental Android App",https://hacks.mozilla.org/2015/11/firefox-os-2-5-developer-preview-an-experimental-android-app/,154,44,thallian,11/12/2015 9:05 +10652812,Google hires Teslas Autopilot Engineering Manager,http://9to5google.com/2015/11/30/google-hires-teslas-autopilot-engineering-manager-and-former-spacex-director-of-flight-software/,25,3,ljk,12/1/2015 0:04 +11915862,How to use EC2 on-demand with Jenkins?,https://www.atlantbh.com/using-ec2-on-demand-with-jenkins/,2,1,bosanche,6/16/2016 13:22 +11484449,"Yes, there really is scientific consensus on climate change",http://thebulletin.org/yes-there-really-scientific-consensus-climate-change9332#.Vw2ChZG0_eM.hackernews,12,4,ricklas,4/12/2016 23:19 +11385129,Google can't search anymore,https://binarypassion.net/google-can-t-search-anymore-d8588d9c7d87#.k5uxoakub,21,4,datalist,3/29/2016 21:41 +10921075,About the LIGO Gravitational-Wave Rumor,http://www.skyandtelescope.com/astronomy-news/about-this-weeks-gravitational-wave-rumor/?utm_source=newsletter&utm_campaign=sky-mya-nl-160115&utm_content=813396_SKY_HP_eNL_160115&utm_medium=email,24,9,subnaught,1/17/2016 21:07 +12198854,We adjust for population with murder rates. Why not for mass shootings?,http://www.latimes.com/opinion/op-ed/la-oe-lott-mass-shootings-adjust-for-population-20160731-snap-story.html,7,18,necessity,7/31/2016 21:05 +10366777,Why Video Games Have Launch Problems,https://playfab.com/blog/why-video-games-have-launch-problems/,51,35,seattlematt,10/10/2015 19:59 +11182421,React.js Conf 2016 [videos],https://www.youtube.com/playlist?list=PLb0IAmt7-GS0M8Q95RIc2lOM6nc77q1IY,52,8,firasd,2/26/2016 16:57 +11976554,Khinchin's Constant,http://mathworld.wolfram.com/KhinchinsConstant.html,68,39,goldenkey,6/25/2016 15:09 +11858718,Dear Apple: Please use these ideas to modernize the Mac,http://arstechnica.com/apple/2016/06/back-to-the-mac-modernizing-apples-aging-computer-lineup/,7,3,jseliger,6/7/2016 23:02 +11883223,Stem cell treatment reverses MS in 70% of patients in small study,http://arstechnica.com/science/2016/06/risky-stem-cell-treatment-reverses-ms-in-70-of-patients-in-small-study/,3,1,shawndumas,6/11/2016 12:31 +10900121,Golang and why it matters,https://medium.com/@jamesotoole/golang-and-why-it-matters-1710b3af96f7,2,2,pythonist,1/14/2016 7:54 +10222825,Sharked: we have globally blocked Wireshark,http://thedailywtf.com/articles/sharked,31,2,stargrave,9/15/2015 20:03 +11767924,Is Facebook eavesdropping on phone conversations?,http://news10.com/2016/05/24/is-facebook-eavesdropping-on-your-phone-conversations/,287,239,how-about-this,5/25/2016 6:00 +12360357,New capabilities and entrepreneurialism are making space exciting again,http://www.economist.com/technology-quarterly/2016-25-08/space-2016,49,5,martincmartin,8/25/2016 16:31 +10847842,"Why privacy is important, and having nothing to hide is irrelevant",http://robindoherty.com/2016/01/06/nothing-to-hide.html,697,316,synesso,1/6/2016 1:48 +10223054,'Dislike' button coming to Facebook,http://www.bbc.co.uk/news/technology-34264624,5,13,SimplyUseless,9/15/2015 20:44 +10635769,Please petition GitHub to support HTTPS on GitHub pages,https://gist.github.com/coolaj86/e07d42f5961c68fc1fc8,141,68,cayblood,11/27/2015 3:54 +12493494,UnrealCV,https://unrealcv.github.io/,242,43,sytelus,9/14/2016 0:51 +12391267,Former Sequoia partners: The Midwest is the future of startups,http://venturebeat.com/2016/08/28/in-5-years-the-midwest-will-have-more-startups-than-silicon-valley/,175,260,vollmarj,8/30/2016 15:59 +11015617,Ask HN: Share your terminal customization,,2,1,yeukhon,2/1/2016 21:29 +10941488,2015 smashed 2014s global temperature record,https://www.washingtonpost.com/news/energy-environment/wp/2016/01/20/its-official-2015-smashed-2014s-global-temperature-record-it-wasnt-even-close/,177,237,gregcrv,1/20/2016 21:26 +12265858,Tech sector blasts IBM and ABS over [Australian] Census failure,http://www.afr.com/technology/web/security/tech-sector-blasts-ibm-and-abs-over-census-failure-and-demand-compensation-20160810-gqpbih,4,1,pedrogrande,8/11/2016 1:42 +11397284,Everyone quotes command line arguments the wrong way,https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/,4,1,ingve,3/31/2016 14:13 +10826191,AI100: One Hundred Year Study on Artificial Intelligence,https://ai100.stanford.edu/,45,13,fitzwatermellow,1/2/2016 13:59 +10770054,Ask HN: How did the YC Fellowships worked for anyone involved?,,15,2,imrehg,12/21/2015 7:36 +10490588,Did Africas Apes Come from Europe?,http://www.smithsonianmag.com/science-nature/did-africas-apes-come-from-europe-113890377/?no-ist,20,1,monort,11/2/2015 7:52 +11639357,A short response to the Rebol vs Lisp macros article,https://gist.github.com/ejbs/813fa9db68dae598064037313323f3a3,4,3,ejbs2,5/5/2016 20:18 +11461676,Does Creativity Decline with Age?,http://www.scientificamerican.com/article/does-creativity-decline-with-age/,4,1,brahmwg,4/9/2016 15:30 +11039348,Laura Poitras Reveals Her Own Life Under Surveillance,http://www.wired.com/2016/02/snowdens-chronicler-reveals-her-own-life-under-surveillance/,325,82,eplanit,2/5/2016 4:12 +10801769,Tech-Hub Housing Costs,http://www.trulia.com/blog/trends/price-and-rent-monitors-jan-2014/,19,13,jseliger,12/28/2015 16:10 +11319223,"Interested in a powerful, free software friendly workstation?",https://www.fsf.org/blogs/licensing/interested-in-a-powerful-free-software-friendly-workstation,6,2,bahjoite,3/19/2016 16:49 +11813717,Drop jQuery as a dependency from Rails,https://github.com/rails/rails/issues/25208,292,111,robermiranda,6/1/2016 12:12 +12342659,"July was the hottest month ever recorded, according to Nasa",http://www.nytimes.com/interactive/2016/08/20/sunday-review/climate-change-hot-future.html?_r=1,381,502,MarkEthan,8/23/2016 10:44 +10782352,A new-look ball-by-ball Cricket Scorecard,https://gramener.com/playground/wcscorecards/scorecard.html?match=FNew%20ZealandAustralia,1,1,wearypilgrim,12/23/2015 7:16 +10787531,HTML 101 Limited Time Free 2+ hour course,http://classes.coursebirdie.com/courses/getting-started-with-html,10,3,rheaverma,12/24/2015 8:16 +11671357,Icelands Ghost Planes,https://warisboring.com/icelands-ghost-planes-63147a860163,202,27,bootload,5/10/2016 22:58 +10834727,Microsoft Warns Windows 7 Has Serious Problems,http://www.forbes.com/sites/gordonkelly/2016/01/02/microsoft-windows-7-problems/,11,11,nikbackm,1/4/2016 9:51 +11190942,After the Gold Rush,http://techcrunch.com/2016/02/28/even-peter-thiel-has-got-soul/,236,127,miolini,2/28/2016 14:09 +11563257,Integrate Python and .NET,https://github.com/pythonnet/pythonnet,4,1,bjoerns,4/25/2016 9:36 +11849127,Inkdrop Notebook app for Hackers,https://inkdrop.info/,51,57,noradaiko,6/6/2016 18:38 +11047744,Replicating the Huffduffer service in Workflow for iOS,https://www.jordanmerrick.com/posts/workflow-personal-podcast-feed,3,1,jads,2/6/2016 13:54 +10338800,Show HN: Distraction Dimmer for Mac increase your focus with a twist of a knob,https://hazeover.com,2,1,pointum,10/6/2015 13:45 +10934913,Ashley Madison hack treating email,http://pastebin.com/V5tmcFXq,7,4,hippich,1/19/2016 23:24 +10530994,Recursive Restartability: Turning the Reboot Sledgehammer into a Scalpel (2001) [pdf],http://roc.cs.berkeley.edu/papers/recursive_restartability.pdf,20,2,vezzy-fnord,11/9/2015 1:58 +11093037,Douglas Rushkoff: Im thinking it may be good to be off social media altogether,http://www.theguardian.com/technology/2016/feb/12/digital-capitalism-douglas-rushkoff,301,152,jedwhite,2/13/2016 7:15 +11887653,Xamarin,https://github.com/xamarin,41,23,cia48621793,6/12/2016 11:41 +12180179,Ask HN: Bootstrapping with 2 founders,,7,5,MuEta,7/28/2016 13:54 +11382322,GitLab Runner 1.1 with Autoscaling,https://about.gitlab.com/2016/03/29/gitlab-runner-1-1-released/?,56,12,sytse,3/29/2016 15:48 +10976299,"Apple Reports Record First Quarter Results, Slowing Growth in iPhone Sales",http://www.apple.com/pr/library/2016/01/26Apple-Reports-Record-First-Quarter-Results.html,132,206,davidbarker,1/26/2016 21:37 +10681399,Why Did Seventeenth-Century Europeans Eat Mummies?,http://resobscura.blogspot.com/2015/12/why-did-seventeenth-century-europeans.html,25,7,magda_wang,12/5/2015 9:37 +10711752,Ask HN: Looking for beta testers for receiving cooking help via text,,5,9,palidanx,12/10/2015 17:10 +12300670,Tracker: Ingesting MySQL data at scale Part 2,https://engineering.pinterest.com/blog/tracker-ingesting-mysql-data-scale-part-2,3,1,rwultsch,8/16/2016 21:08 +12083711,Ask HN: What's up with retro sound chip programming?,,2,1,jzelinskie,7/13/2016 3:25 +10361294,SQL for NoSQL: Couchbase N1QL Tutorial,http://query.pub.couchbase.com/tutorial/#1,9,1,porker,10/9/2015 16:38 +10781633,The Ups and Downs of a Chef Shop,http://technology.quid.com/2015/12/the-ups-and-downs-of-a-chef-shop/,2,1,seekely,12/23/2015 2:15 +10768960,"Disney is safeguarding its future by buying childhood, piece by piece",http://www.economist.com/news/briefing/21684138-disney-making-fortune-and-safeguarding-its-future-buying-childhood-piece-piece,148,166,e15ctr0n,12/21/2015 0:41 +12437165,Yelp invites hackers to expose vulnerabilities through bug bounty program,https://techcrunch.com/2016/09/06/yelp-bug-bounty-program/,64,15,pavornyoh,9/6/2016 16:26 +11127534,Google Cloud Vision API enters Beta,http://googlecloudplatform.blogspot.com/2016/02/Google-Cloud-Vision-API-enters-beta-open-to-all-to-try.html,350,105,axelfontaine,2/18/2016 17:31 +11469363,Google Cant Duck Mississippi Probe of Dangerous Web Content,http://www.bloomberg.com/news/articles/2016-04-09/google-can-t-dodge-mississippi-probe-of-dangerous-web-content,7,1,laurex,4/11/2016 2:58 +11915534,"I made this, it's a collection of network testing tools",https://iptools.co/,2,2,jarmoszkuj,6/16/2016 12:05 +11355960,Google Nik collection now available for free,https://www.google.com/nikcollection/,217,50,Numberwang,3/24/2016 20:02 +12296481,Why isn't ssdb more popular?,,1,3,yehosef,8/16/2016 10:18 +11084017,What makes it to the front page of Reddit,https://blog.datastories.com/blog/reddit-front-page,2,1,ergest,2/11/2016 23:01 +11504718,Basic Income,https://www.givedirectly.org/basic-income,1,1,6502nerdface,4/15/2016 14:46 +11892766,Should we block forever waiting for high-quality random bits?,https://www.mail-archive.com/python-dev@python.org/msg92676.html,1,1,Tomte,6/13/2016 10:27 +11905951,Why dont we have universal basic income?,http://www.newyorker.com/magazine/2016/06/20/why-dont-we-have-universal-basic-income,3,3,jonbaer,6/14/2016 22:45 +10550589,Deep Learning in a Single File for Smart Devices,http://dmlc.ml/mxnet/2015/11/10/deep-learning-in-a-single-file-for-smart-device.html,40,7,sungeuns,11/12/2015 0:59 +11983716,Caltech glassblower's retirement has scientists sighing,http://www.latimes.com/local/education/la-me-caltech-glassblower-20160613-snap-story.html,301,165,wallflower,6/27/2016 1:27 +10538082,What happened to passenger hovercraft?,http://www.bbc.com/news/magazine-34658386,26,9,yitchelle,11/10/2015 7:58 +11741663,Introducing Mycroft Core,https://mycroft.ai/introducing-mycroft-core/,2,1,ldlework,5/20/2016 21:27 +10886484,SCP parameters you should know about,http://www.tecmint.com/scp-commands-examples/,8,1,babuskov,1/12/2016 10:10 +12490816,My Code Does Not Work Because I Am a Victim of Complex Societal Factors,https://vimeo.com/180568023,9,1,nanis,9/13/2016 18:12 +11029224,Ask HN: Help me design a personal project,,1,2,_em_,2/3/2016 19:55 +10401876,"Intel has 1,000 people working on chips for the iPhone",http://venturebeat.com/2015/10/16/intel-has-1000-people-working-on-chips-for-the-iphone/,50,19,happyscrappy,10/16/2015 20:40 +11943129,Track your flight with GPS discover the world below with offline maps and POI,http://fc.umn.edu/,2,1,sohkamyung,6/21/2016 2:40 +11863126,Dutch architect unveils 3D printer to make 'endless' house,http://phys.org/news/2016-06-dutch-architect-unveils-3d-printer.html,2,1,dnetesn,6/8/2016 15:59 +12411747,Contemplating the possible retirement of Apache OpenOffice,https://lwn.net/Articles/699047/,344,318,sohkamyung,9/2/2016 8:38 +11417730,Losing the War,http://www.leesandlin.com/articles/LosingTheWar.htm,4,1,pmcpinto,4/3/2016 21:06 +11446260,Being tired isnt a badge of honor Signal v. Noise,https://m.signalvnoise.com/being-tired-isn-t-a-badge-of-honor-fa6d4c8cff4e#.vxglxiv8y,187,59,tilt,4/7/2016 10:53 +10799601,"Show HN: 30 Days, 30 Demos",http://mattdesl.svbtle.com/codevember,5,2,mattdesl,12/28/2015 2:49 +10786300,Japanese Bookshop Stocks Only One Book at a Time,http://www.theguardian.com/books/2015/dec/23/japanese-bookshop-stocks-only-one-book-at-a-time,173,69,rfreytag,12/23/2015 23:37 +11897822,Ask HN: How do I keep learning while I am having a job?,,12,7,aryamaan,6/13/2016 21:27 +11721289,The Good Judgement Project,http://goodjudgment.com/gjp/,11,1,rfreytag,5/18/2016 12:04 +11539390,The radical future of media beyond the Web (1997),http://www.wired.com/1997/03/ff-push/,1,1,salgernon,4/21/2016 3:10 +10750930,Google Launchpad Accelerator: Equity-Free Accelerator Program for Startups,https://developers.google.com/startups/accelerator/,94,12,enigami,12/17/2015 11:52 +11248294,"The Phoenix Is Not Burnt Out, It Is Just Rebooting",http://michaeldehaan.net/post/140649196217/the-phoenix-is-not-burnt-out-it-is-just-rebooting,77,27,kragniz,3/8/2016 20:24 +12124546,Thoughts on Instagram Marketing and Customer Service,http://blog.reamaze.com/2016/07/19/thoughts-on-instagram-marketing-and-customer-service/,2,1,lunaru,7/19/2016 20:17 +10522974,The Cop at the End of the World,http://www.buzzfeed.com/andrewmcmillen/the-constable-of-birdsville#.iexMRlj2Kj,27,2,Thevet,11/7/2015 0:27 +11106638,Integer underflow reportedly the root cause of iPhone bricking,https://www.youtube.com/watch?v=MVI87HzfskQ,2,1,yuvalkarmi,2/15/2016 22:46 +10642279,Show HN: Phoenix a lightweight OS X window manager scriptable with JavaScript,,10,6,khirviko,11/28/2015 20:24 +11200967,The Squirrel Wars (2007),http://www.nytimes.com/2007/10/07/magazine/07squirrels-t.html,21,5,jimsojim,3/1/2016 5:37 +10363482,Arduino team presents genuino starter kit,https://blog.arduino.cc/2015/10/07/arduino-team-presents-genuino-starter-kit/,13,3,kevinaloys,10/9/2015 21:52 +12392295,Deep yet simple explanation of NaN and typeof,https://medium.com/javascript-refined/nan-and-typeof-36cd6e2a4e43,1,1,fagnerbrack,8/30/2016 17:55 +10671897,Geneticists Are Concerned Transhumanists Will Use CRISPR on Themselves,http://motherboard.vice.com/read/geneticists-are-concerned-transhumanists-will-use-crispr-on-themselves,53,69,sageabilly,12/3/2015 19:27 +11223557,Great Principles of Computing,http://denninginstitute.com/pjd/GP/GP-site/welcome.html,38,1,kercker,3/4/2016 13:32 +10697177,Apples new $99 iPhone battery case doesnt measure up,http://www.theverge.com/2015/12/8/9867996/apple-smart-battery-case-iphone-6-6s-hands-on,4,2,dsr12,12/8/2015 16:05 +12545289,Ask HN: How to solve chicken and egg problem?,,3,1,baj84,9/21/2016 4:02 +11750409,Its No Accident: Advocates Want to Speak of Car Crashes Instead,http://www.nytimes.com/2016/05/23/science/its-no-accident-advocates-want-to-speak-of-car-crashes-instead.html,2,1,aaronbrethorst,5/22/2016 21:43 +11662686,Self-host analytics for better privacy and accuracy,https://blog.filippo.io/self-host-analytics/,193,90,FiloSottile,5/9/2016 20:04 +10457309,Built an app that can replace Zite. But how do I reach out their users?,,3,2,SiddharthG16,10/27/2015 11:11 +11769315,Socioeconomic Effects of TCP/IP vs. IsoGrid,http://isogrid.org/blog/2016/05/25/socioeconomic-effects-of-tcpip-vs-isogrid/,2,1,PhaseMage,5/25/2016 12:38 +12199277,How Two Facebook Engineers Could Decide the Presidential Election,https://medium.com/join-scout/how-two-facebook-engineers-could-decide-the-presidential-election-6e038d34a2b4#.a5b2bpexz,2,1,miraj,7/31/2016 22:45 +10890647,Ask HN: How do I evaluate a recruitment agency?,,3,1,tyurok,1/12/2016 21:45 +11910246,Serverless Architectures,http://martinfowler.com/articles/serverless.html,17,3,mhausenblas,6/15/2016 16:22 +10530495,The best cities to get ahead are often the most expensive places to live (2014),http://www.theatlantic.com/business/archive/2014/11/why-its-so-hard-for-millennials-to-figure-out-where-to-live/382929/?utm_source=SFFB&single_page=true,109,99,Futurebot,11/8/2015 23:25 +11049113,The Chipophone A homemade 8-bit synthesizer (2010),http://www.linusakesson.net/chipophone/index.php,89,12,jamescgrant,2/6/2016 18:50 +11554894,Aphantasia: How It Feels to Be Blind in Your Mind,https://www.facebook.com/notes/blake-ross/aphantasia-how-it-feels-to-be-blind-in-your-mind/10156834777480504,194,176,ingve,4/23/2016 9:52 +10505557,Entire editorial staff of Elsevier journal Lingua resigns,http://arstechnica.co.uk/science/2015/11/entire-editorial-staff-of-elsevier-journal-lingua-resigns-over-high-price-lack-of-open-access/,191,14,adrianhoward,11/4/2015 10:10 +10865988,X Marks a Curious Corner on Plutos Icy Plains,http://www.nasa.gov/feature/x-marks-a-curious-corner-on-pluto-s-icy-plains,79,43,japaget,1/8/2016 16:25 +10419829,IRC client in 135 lines of code,https://github.com/huytd/nodirc,2,2,huydotnet,10/20/2015 15:38 +11050837,DNA could help solve mystery of the Indus Valley civilization,http://www.businessinsider.com/dna-could-solve-mystery-of-indus-valley-civilization-2016-2,50,6,diodorus,2/7/2016 0:27 +10451323,Enter sugar snake: MEL Sciences next-gen chemistry kit,http://thenextweb.com/gadgets/2015/10/24/enter-sugar-snake-hands-mel-sciences-chemistry-kit/,29,4,pavornyoh,10/26/2015 13:43 +10914885,[Osmf-talk] exit,https://lists.openstreetmap.org/pipermail/osmf-talk/2016-January/003655.html,2,1,edward,1/16/2016 9:53 +11214272,"We didnt do anything wrong, but somehow, we lost",https://www.linkedin.com/pulse/nokia-ceo-ended-his-speech-saying-we-didnt-do-anything-ziyad-jawabra?trk=hp-feed-article-title-like,2,2,jimsojim,3/3/2016 0:43 +12096559,"Ask HN: I've been a java dev for a couple of years, should I move langauge?",,3,5,eecks,7/14/2016 19:28 +12384617,How to trick your Facebook friends into reading your political opinions,http://fusion.net/story/340971/how-to-trick-your-facebook-friends-into-reading-your-political-opinions/,1,1,hollaur,8/29/2016 19:38 +12037053,Raiden Network High Speed Asset Transfers for Ethereum,http://raiden.network/,83,27,bpierre,7/5/2016 15:26 +11928690,Ask HN: Is there a good book on IT/Silicon Valley history?,,10,11,sebst,6/18/2016 14:13 +10986590,Whats Apples competitive edge going forward?,http://blogs.harvard.edu/philg/2016/01/26/whats-apples-competitive-edge-going-forward/,32,56,wslh,1/28/2016 6:00 +10984716,Paul Krugman Reviews The Rise and Fall of American Growth by Robert J. Gordon,http://www.nytimes.com/2016/01/31/books/review/the-powers-that-were.html,53,89,dismal2,1/28/2016 0:13 +11657539,Who Is Ready for Baseballs Robot Umpires?,http://www.wsj.com/articles/who-is-ready-for-baseballs-robot-umpires-1462749974,1,1,thevibesman,5/9/2016 4:03 +11230237,"What Happened, Miss Simone?",http://www.nybooks.com/articles/2016/03/10/fierce-courage-nina-simone,88,15,whocansay,3/5/2016 18:07 +10300419,Stop Spotify from waking computer up,https://community.spotify.com/t5/Help-Desktop-Linux-Windows-Web/Stop-spotify-from-waking-computer-up/td-p/803571/page/2,39,16,rplnt,9/29/2015 22:58 +11352705,Starboard to Start Proxy Fight to Remove Yahoos Board,http://www.wsj.com/articles/starboard-to-start-proxy-fight-to-remove-yahoos-board-1458789958,64,42,jackgavigan,3/24/2016 13:48 +11080122,Microsoft TLS 1.2 downgrade bug and how it was fixed,https://blog.cloudflare.com/microsoft-tls-downgrade-schannel-bug/,76,10,jgrahamc,2/11/2016 14:02 +10598188,Popular Google Chrome extensions are constantly tracking you by default,http://labs.detectify.com/post/133528218381/chrome-extensions-aka-total-absence-of-privacy,169,74,kevindeasis,11/19/2015 22:34 +11408061,Show HN: Material Management,http://material.bitmatica.com/,7,1,stucat,4/1/2016 20:00 +10433615,Show HN: Hibou Use spaced repetition to remember what you read,http://gethibou.com,69,30,willlma,10/22/2015 17:43 +12235797,"Research Says Single People Live Rich, Meaningful Lives",http://www.huffingtonpost.com/entry/research-says-single-peoplewait-for-itlive-rich-meaningful-lives_us_57a38912e4b0104052a1b182,1,1,neverminder,8/5/2016 21:16 +10956430,Show HN: Twofu: A Two-Factor Authenticator Command-Line App,https://github.com/ukazap/twofu/blob/master/README.md,11,2,ukz,1/23/2016 0:07 +12187550,What is a Proof?,https://samidavies.wordpress.com/2016/07/29/what-is-a-proof/,68,22,CarolineW,7/29/2016 15:41 +12325843,The War on Cash,http://thelongandshort.org/society/war-on-cash,151,152,Gigamouse,8/20/2016 9:32 +11735639,Chrome DevTools in 2016,https://www.youtube.com/watch?v=x8u0n4dT-WI,12,1,aslushnikov,5/20/2016 5:02 +12577283,Software Development at 1 Hz,https://medium.com/@MartinCracauer/software-development-at-1-hz-5530bb58fc0e,100,61,akkartik,9/25/2016 20:34 +11691342,Ask HN: Using AngularJS 1.x in production?,,4,13,64bitbrain,5/13/2016 16:30 +10978772,On the Viability of Conspiratorial Beliefs,http://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0147905,1,1,sohkamyung,1/27/2016 7:32 +11867932,"This House Costs Just $20,000But Its Nicer Than Yours",http://www.fastcoexist.com/3056129/this-house-costs-just-20000-but-its-nicer-than-yours/3,4,1,JackPoach,6/9/2016 6:44 +12422501,Google Finds That Successful Teams Are About Norms Not Just Smarts,https://hunterwalk.com/2016/09/03/google-finds-that-successful-teams-are-about-norms-not-just-smarts/,4,1,jaredsohn,9/4/2016 3:20 +10979165,Heap on Embedded Devices: Analysis and Improvement,https://blog.cesanta.com/embedded-heap-behaviour-analysis-and-improvement,37,20,dimonomid,1/27/2016 9:47 +10480390,Developing in Stockfighter with No Trading Experience,http://www.kalzumeus.com/2015/10/30/developing-in-stockfighter-with-no-trading-experience/,302,186,srpeck,10/30/2015 20:36 +11194625,Steel Password Manager GUI Project on GitHub,https://github.com/nrosvall/steel-gui,1,1,anttiviljami,2/29/2016 10:24 +10478254,There's a reason Google founders never called their users dumb f*cks,,5,1,meeper16,10/30/2015 15:08 +10191021,"Why some European countries reject refugees, and others love them",https://www.washingtonpost.com/news/worldviews/wp/2015/09/08/this-map-helps-explain-why-some-european-countries-reject-refugees-and-others-love-them/?postshare=1821441801185179,2,1,hunglee2,9/9/2015 12:35 +12428667,Privacy and control need to be put back into the hands of the individual,https://decentralize.today/privacy-and-control-need-to-be-put-back-into-the-hands-of-the-individual-301c4c318ef8#.u3sba968w,118,93,merkleme,9/5/2016 7:22 +11348349,Sirum (YC W15 Nonprofit) helps start first free pharmacy in California,http://link.sirum.org/emerson,17,2,akircher,3/23/2016 21:19 +12373024,4WD vs. AWD. What's the Difference?,http://www.outsideonline.com/2096381/4wd-vs-awd-whats-difference,404,200,hackuser,8/27/2016 16:32 +10794189,Newly discovered earliest draft of a Unix manual (1971),http://www.tuhs.org/Archive/PDP-11/Distributions/research/McIlroy_v0/UnixEditionZero.txt,158,40,jritorto,12/26/2015 14:33 +11771697,Deco IDE for React Native: Now Free and Open Source,https://github.com/decosoftware/deco-ide,138,27,daverecycles,5/25/2016 17:53 +11031060,A Rebuttle of the C++ FQA,https://gist.github.com/klmr/5423873,3,2,autoreleasepool,2/4/2016 0:23 +12192158,DRAM Errors in the Wild: A Large-Scale Field Study [pdf],http://www.cs.toronto.edu/~bianca/papers/sigmetrics09.pdf,8,1,aburan28,7/30/2016 8:28 +11817011,Now It Is Official: The 'Internet' Is Over,http://www.nytimes.com/2016/06/02/insider/now-it-is-official-the-internet-is-over.html,3,1,finnh,6/1/2016 18:39 +11659323,Achieving PHP interop with .NET,http://blog.peachpie.io/2016/05/working-towards-php-interoperability.html,23,1,pchp,5/9/2016 12:41 +11310461,The 451 status code is now supported,https://developer.github.com/changes/2016-03-17-the-451-status-code-is-now-supported/,421,77,cujanovic,3/18/2016 7:53 +10842035,'fuck' command which corrects your previous console command,https://www.github.com/nvbn/thefuck,1,1,quantisan,1/5/2016 8:22 +12532176,Ask HN: Does the film industry use stock options for compensation?,,1,2,spoonie,9/19/2016 15:31 +11009153,McCabe's Cyclomatic Complexity and Why We Don't Use It (2014),https://www.cqse.eu/en/blog/mccabe-cyclomatic-complexity/,12,6,jcr,2/1/2016 1:53 +11136740,Do not teach best practices,http://anyonecanlearntocode.com/blog_posts/do-not-teach-best-practices,3,2,peterxjang,2/19/2016 21:25 +10892831,Cruncher: An Implementation of Bret Victor's Scrubbing Calculator,https://www.cruncher.io/,112,32,luu,1/13/2016 7:28 +10649345,Whatsapp is censoring telegram links [SPA],http://www.elandroidelibre.com/2015/11/la-censura-de-whatsapp-bloquea-todos-los-mensajes-con-links-de-telegram.html,6,1,xabi,11/30/2015 13:57 +11691179,Gain CPU Performance Without Overclocking Raspberry Pi 3,http://haydenjames.io/raspberry-pi-3-overclock/,6,2,ozy23378,5/13/2016 16:06 +10863025,ZypMedia Is Hiring Lead Engineer for Low Latency C++ Role,,1,2,ramandeepahuja,1/8/2016 4:55 +11663939,Ask HN: Dropcam without the camera,,3,2,thrwawy20160421,5/9/2016 23:02 +10547734,? How a Chairman at McKinsey Made Millions of Dollars Off His Maid,http://www.thenation.com/article/the-strange-true-story-of-how-a-chairman-at-mckinsey-made-millions-of-dollars-off-his-maid/,4,1,akbarnama,11/11/2015 17:19 +12485214,Jeff Bezos just unveiled his new rocket. And its a monster,https://www.washingtonpost.com/news/the-switch/wp/2016/09/12/jeff-bezos-just-unveiled-his-new-rocket-and-its-a-monster/,13,4,Jerry2,9/13/2016 2:21 +11640259,PacketQ: SQL queries for pcap files,https://github.com/dotse/packetq/wiki,76,5,chrissnell,5/5/2016 22:46 +12308695,Ask HN: HN for China?,,3,3,questionsforhn,8/17/2016 21:38 +10652553,Will your company ever run 100% of its IT in the cloud?,https://blog.bettercloud.com/cloud-office-systems-adoption/,1,1,booksnearme,11/30/2015 23:08 +10398998,Criticue Widget: Find out what visitors hate about your website,http://www.criticuewidget.com,27,20,bilus,10/16/2015 13:13 +11987190,Hands on with the 2D to 3D convertor emulator,http://arstechnica.com/gaming/2016/06/hands-on-with-the-emulator-that-adds-depth-to-old-2d-nes-games/,2,1,Maven911,6/27/2016 16:21 +10519048,Hidden in plain sight: Brute-forcing Slack private files,https://www.ibuildings.nl/blog/2015/11/hidden-plain-sight-brute-forcing-slack-private-files,146,51,relaxnow,11/6/2015 12:13 +11537025,Was I a Torturer in Iraq?,http://lithub.com/was-i-a-torturer-in-iraq/,3,1,ShaneBonich,4/20/2016 19:24 +11527971,Sex Comes to the Micros (2012),http://www.filfre.net/2012/02/sex-comes-to-the-micros/,62,20,danso,4/19/2016 16:15 +12211868,There isnt anything magical about it: Why more millennials are avoiding sex,https://www.washingtonpost.com/local/social-issues/there-isnt-really-anything-magical-about-it-why-more-millennials-are-putting-off-sex/2016/08/02/e7b73d6e-37f4-11e6-8f7c-d4c723a2becb_story.html,33,48,nkurz,8/2/2016 18:10 +12198674,A poor imitation of Alan Turing,http://www.nybooks.com/daily/2014/12/19/poor-imitation-alan-turing/,3,1,sajid,7/31/2016 20:30 +11352701,CSVJSON Self Rise of an Online Tool,https://medium.com/@martindrapeau/csvjson-self-rise-of-an-online-tool-3a91fef3a201,75,35,martin_drapeau,3/24/2016 13:48 +11454904,"Face Swap (C++ / Python): Meet Ted Trump, Donald Clinton and Hillary Cruz",http://www.learnopencv.com/face-swap-using-opencv-c-python/,5,2,spmallick,4/8/2016 14:37 +11081203,"I cant buy from amazon, but I dont want to anymore",https://medium.com/@notbingo/i-want-to-mention-from-the-start-that-this-was-my-first-purchase-on-amazon-that-actually-had-a-de5fd3a48af#.iwsemvet9,2,1,notbingo,2/11/2016 16:40 +10481783,ATtiny Controlled LED Tail Lights for a 1976 Mazda Cosmo,https://www.youtube.com/watch?v=CZJTKXX_4JA,2,1,loser777,10/31/2015 4:15 +11930158,20 cognitive biases that screw up your decisions,http://uk.businessinsider.com/cognitive-biases-that-affect-decisions-2015-8?utm_source=feedly?r=US&IR=T,3,1,based2,6/18/2016 19:23 +11542783,Wikipedia to the Moon,https://meta.wikimedia.org/wiki/Wikipedia_to_the_Moon,146,81,chris_wot,4/21/2016 15:18 +12249370,What If Addiction Is Not a Disease?,http://chronicle.com/article/What-if-Addiction-Is-Not-a/237383,77,93,Hooke,8/8/2016 17:24 +10975266,Bitcoin has computed 2^83.9 hashes,https://plus.google.com/+MarcBevand/posts/1HN6Nnf7LBD/,52,67,mrb,1/26/2016 19:17 +10650402,Letter from Leader of Iran to North American and European Youth,http://www.letterfortruth.com/the-second-letter/,2,1,ZainRiz,11/30/2015 17:06 +10813454,How Wearable Technology Will Change with the Internet of Things (2016 Upcomers),http://stemmatch.net/blog/2015/december/29/tech-wear-the-iot/,4,3,Oxydepth,12/30/2015 18:31 +11169684,"New product Cell phone, tablet, laptop labels tell me what you think",http://www.getmydeviceback.com,1,1,gmdb,2/24/2016 19:53 +12117099,Performance Metrics for Recommender Systems,https://gab41.lab41.org/tps-report-for-recommender-systems-yeah-that-would-be-great-3beb26ab9fe0#.ys7a3cpll,1,2,amplifier_khan,7/18/2016 18:28 +10296044,Surprises in GopherJS Performance,http://www.gopherjs.org/blog/2015/09/28/surprises-in-gopherjs-performance/,168,28,eatonphil,9/29/2015 13:24 +10508207,25ft Tsunami of Foam Invades Streets of India,http://www.express.co.uk/news/weird/614905/India-flaming-lake-tsunami-of-foam-foam-flames,1,2,hellofunk,11/4/2015 17:43 +10416261,Old 1983 VT220 Serial Console Running Mac OS X,http://jstn.cc/post/8692501831,3,1,senorgusto,10/19/2015 22:31 +11807529,Fandom Is Broken,http://birthmoviesdeath.com/2016/05/30/fandom-is-broken,18,30,smacktoward,5/31/2016 16:31 +10909909,Optimization story: Switching from GMP to gcc's __int128 reduced run time by 95%,https://www.nu42.com/2016/01/excellent-optimization-story.html,129,31,nanis,1/15/2016 15:42 +11365297,Crypt·o·phobe,https://www.cryptophobia.com/,4,1,r0muald,3/26/2016 11:41 +11262079,Monitoring You,https://medium.com/@myusuf3/monitoring-you-a1b5f029ae77#.ampxfoag4,6,1,robbiet480,3/10/2016 20:35 +10295386,Dutch prosecutors: raids on Uber offices in Amsterdam in taxi probe,https://au.news.yahoo.com/technology/a/29671872/dutch-prosecutors-raids-on-uber-offices-in-amsterdam-in-taxi-probe/,2,1,the-dude,9/29/2015 10:18 +12098775,How Houses Were Cooled Before Air Conditioning,http://www.curbed.com/2016/7/14/12182254/old-houses-air-conditioning-summer,2,2,Overtonwindow,7/15/2016 3:25 +12306354,Show HN: A Beginner's Guide to Colorimetry,http://hipsterdatascience.com/blog/a-beginners-guide-to-colorimetry/,2,1,cbabraham,8/17/2016 17:15 +10308731,PornViewer 0.0.1,https://github.com/shenanigans/PornViewer,5,1,hoveringGoats,10/1/2015 1:48 +10495765,Why Static Website Generators Are the Next Big Thing,http://www.smashingmagazine.com/,4,2,bobfunk,11/2/2015 22:20 +11636973,Show HN: Organize your bookmarks and collaborate with others,https://yourbuttons.com/,7,3,owenfar,5/5/2016 15:32 +11995996,New Social Media Platform,,1,1,auxopro,6/28/2016 18:03 +11841604,"Be warned, there's a nasty Google 2 factor auth attack going around",https://twitter.com/maccaw/status/739232334541524992,142,56,maccman,6/5/2016 16:11 +11838349,Electrovibration in Ungrounded MacBook Pros,https://blog.somaticlabs.io/electrovibration-in-ungrounded-macbook-pros/,5,4,jakerockland,6/4/2016 22:08 +11539189,"CommonMark a rationalized version of Markdown syntax, with a spec",http://spec.commonmark.org/dingus/,3,1,neya,4/21/2016 2:16 +12215522,The Quest to Make Code Work Like Biology Just Took a Big Step,http://www.wired.com/2016/06/chef-just-took-big-step-quest-make-code-work-like-biology/,1,1,signa11,8/3/2016 4:08 +10771153,The Year We Started Buying Phones Like We Buy Cars,http://www.wired.com/2015/12/the-year-we-started-buying-phones-like-cars/,21,15,moviuro,12/21/2015 14:26 +12016606,Ask HN: Best way to book an international flights?,,2,2,hartator,7/1/2016 15:03 +12048840,Probing quantum phenomena in tiny transistors,http://phys.org/news/2016-07-probing-quantum-phenomena-tiny-transistors.html,15,3,dnetesn,7/7/2016 12:22 +11098112,Introducing Espresso LinkedIn's hot new distributed document store,https://engineering.linkedin.com/espresso/introducing-espresso-linkedins-hot-new-distributed-document-store,4,1,johlo,2/14/2016 13:07 +11486183,Why Steve Jobs Killed the Newton,http://eggfreckles.scripts.mit.edu/notes/killed-newton/,5,1,ingve,4/13/2016 6:33 +11942424,"Stealth Electric Car Company Hunting Tesla, Faraday",http://electrek.co/2016/06/15/tesla-model-s-chief-engineer-atieva-all-electric-luxury-sedan/,2,1,UshZilla,6/20/2016 23:27 +11396022,Phalcon PHP framework delivered as a C extension,https://phalconphp.com/en/,16,5,w0rldart,3/31/2016 9:57 +11567509,Lightroom $4K iMac VS $4K PC performance test,https://www.slrlounge.com/lightroom-mac-vs-pc-speed-test-4k-imac-vs-4k-custom-pc-performance-test/,66,69,rayshan,4/25/2016 21:26 +12330285,Almost 80% of Private Day Traders Lose Money,http://www.curiousgnu.com/day-trading,17,6,elmar,8/21/2016 10:27 +11750209,Ask HN: How does Elon Musk innovate in disparate fields?,,2,1,LeicesterCity,5/22/2016 20:44 +12308877,San Francisco's housing bubble is collapsing under its own weight,http://www.businessinsider.com/san-franciscos-housing-bubble-collapsing-under-its-own-lopsidedness-2016-8,9,5,rajathagasthya,8/17/2016 22:10 +12003241,Amazon Inspire,https://www.amazoninspire.com/access,2,1,coreyp_1,6/29/2016 17:43 +11234510,Geographical profiling study claims to have unmasked Banksy,http://www.bbc.com/news/science-environment-35645371,12,8,evo_9,3/6/2016 17:13 +10291415,Ask HN: How to handle being sick?,,2,3,maratd,9/28/2015 16:51 +12236436,Do Oil Companies Really Need $4B per Year of Taxpayers Money?,http://mobile.nytimes.com/2016/08/06/upshot/do-oil-companies-really-need-4-billion-per-year-of-taxpayers-money.html?em_pos=small&emc=edit_dk_20160805&nl=dealbook&nl_art=5&nlid=65508833&ref=headline&te=1&_r=1&referer=,66,37,JumpCrisscross,8/5/2016 23:58 +12488132,In case you're tired of expensive complicated graphic editors,http://www.vectr.com,66,10,twiceuponatime,9/13/2016 13:44 +11343111,NPM user nj48 steals liberated module names,https://www.npmjs.com/~nj48,6,1,drinchev,3/23/2016 9:48 +10267569,Ask HN: Laptop bag for 15 Macbook Pro for inclement weather,,3,5,tmaly,9/23/2015 19:38 +11222034,"Oceans deepest spot a noisy place, Oregon scientists find",http://www.seattletimes.com/seattle-news/science/oceans-deepest-spot-a-noisy-place-oregon-scientists-find/,4,1,tangentspace,3/4/2016 4:24 +11874474,?The Computational Engine of Economic Development,https://medium.com/@cesifoti/under-the-hood-the-computational-engine-of-economic-development-49bce1a7b151,39,14,avyfain,6/10/2016 5:27 +10581332,Better than meditation: free writing,https://medium.com/better-humans/better-than-meditation-12532d29f6cd,21,5,jodyribton,11/17/2015 14:47 +10226317,The WhatsApp Architecture Facebook Bought for $19B (2014),http://highscalability.com/blog/2014/2/26/the-whatsapp-architecture-facebook-bought-for-19-billion.html,8,1,oskarth,9/16/2015 13:22 +12148833,Ask HN: Managing Twitter lists,,5,1,mvdwoord,7/23/2016 8:37 +11230183,Ask HN: Things New Developers Struggle with Most?,,2,2,jjensen90,3/5/2016 17:53 +10408078,Pragmatic problems with disagreements,https://medium.com/@arisAlexis/pragmatic-problems-with-disagreements-8dcf89c4b925,1,1,arisAlexis,10/18/2015 12:46 +11538811,Ask HN: Our lead architect says 4GB is enough for a developer machine,,14,32,insamniac,4/21/2016 0:33 +11367972,A text editor that only allows the top 1000 most common words in English,https://github.com/mortenjust/cleartext-mac,33,9,kawera,3/26/2016 23:22 +10791469,What is Android doing when it says optimizing apps after a system upgrade?,http://alvinalexander.com/android/what-android-doing-optimizing-apps-after-system-upgrade-restart,4,2,superasn,12/25/2015 15:48 +10626577,Ways to Design the Letter 'M',http://www.citylab.com/design/2015/06/77-ways-to-design-the-letter-m-in-your-metro-logo/395045/,71,65,qzervaas,11/25/2015 11:05 +11417058,Understanding Hardware Transactional Memory [pdf],https://www.azul.com/files/Understanding-HW-Transactional-Memory-QCon-London-3.16-Gil-Tene.pdf,34,5,dmit,4/3/2016 18:31 +12237984,Edward L. Bernayse: The Engineering of Consent (1947) [pdf],http://classes.dma.ucla.edu/Fall07/28/Engineering_of_consent.pdf,2,1,DyslexicAtheist,8/6/2016 13:04 +10738370,Does AMP Counter an Existential Threat to Google?,http://highscalability.com/blog/2015/12/14/does-amp-counter-an-existential-threat-to-google.html,28,12,moehm,12/15/2015 15:43 +10544789,The Wild West of Finance: Should It Be Tamed or Outlawed? [pdf],http://www.hofstra.edu/pdf/ORSP_Susan_MartinFall05.pdf,38,1,jimsojim,11/11/2015 4:07 +10420779,Ask HN: Best Linux/dev laptop as of October 2015?,,15,28,sashazykov,10/20/2015 18:13 +10730634,How to complain about Go,https://medium.com/@divan/how-to-complain-about-go-349013e06d24#.q6x2uef97,3,2,eatonphil,12/14/2015 12:33 +12398823,Amazon Launchpad for Startups,https://www.amazon.com/gp/launchpad,275,82,ankit84,8/31/2016 15:03 +12003186,"Ask HN: Should I learn how to program, or come up with an idea first?",,3,5,LeicesterCity,6/29/2016 17:36 +11578346,Why Startups Use Ruby on Rails?,http://mlsdev.com/en/blog/61-why-startups-use-ruby-on-rails,1,1,MLSDev,4/27/2016 6:58 +10874310,How the Cartels Work (2011),http://www.rollingstone.com/politics/news/how-the-cartels-work-20110418,36,3,dsr12,1/10/2016 5:28 +12398175,Show HN: Connecting travelers with local hosts over coffee,https://zojuba.com/,2,1,Zojuba,8/31/2016 13:37 +10310090,The kernel connection multiplexer,http://lwn.net/Articles/657999/,21,3,signa11,10/1/2015 9:29 +10528252,WordPress now runs a quarter of the web,http://w3techs.com/technologies/details/cm-wordpress/all/all,139,109,mustafauysal,11/8/2015 11:46 +11539716,Media BS Index. (Willingness to Issue Corrections and Updates) [Google Sheets],https://docs.google.com/spreadsheets/d/1MQ6IiQcorsN_pnY6oX1h1K52N66mMw4crpOqVYQJiNg/edit?usp=sharing,3,1,I_HALF_CATS,4/21/2016 4:34 +10845056,How did people sleep in the Middle Ages?,http://www.medievalists.net/2016/01/03/how-did-people-sleep-in-the-middle-ages/,110,42,pepys,1/5/2016 18:40 +11964544,"Interview, Land a Job, and Get a Raise: An Unconventional Method for Programmers",https://medium.com/@andreineagoie/how-to-interview-land-a-job-and-get-a-raise-an-unconventional-method-for-programmers-5a5566b20f13#.pa766xhgu,15,8,evantai,6/23/2016 21:48 +12196043,"Hitler Uses Docker, Annotated",https://zwischenzugs.wordpress.com/2016/04/12/hitler-uses-docker-annotated/,177,49,slyall,7/31/2016 7:09 +10412584,Brawny Bones Reveal Medieval Hungarian Warriors Were Accomplished Archers,http://www.forbes.com/sites/kristinakillgrove/2015/09/30/brawny-bones-reveal-10th-century-hungarian-warriors-were-accomplished-archers/,22,7,benbreen,10/19/2015 13:04 +10242799,Analyse Asia 60: Air Travel in Asia with Paul Papadimitriou,http://analyse.asia/2015/09/19/episode-60-air-travel-in-asia-with-paul-papadimitriou/,2,1,bleongcw,9/19/2015 0:21 +11421268,"Coolest Cooler, $13M-funded Kickstarter project, needs another $15M",http://www.oregonlive.com/window-shop/index.ssf/2016/03/coolest_cooler_15_million.html,91,68,danso,4/4/2016 12:21 +11130565,Where Did China Get This F-22 Raptor?,http://www.popularmechanics.com/military/weapons/a19485/china-f-22-raptor-model/,2,1,smaili,2/19/2016 0:26 +10884571,Ask HN: Where to ask for outside advice as a young startup member?,,5,2,Spectral,1/11/2016 23:52 +11392446,"Signal on the outside, Signal on the inside",https://www.whispersystems.org/blog/signal-inside-and-out/,3,1,etiam,3/30/2016 19:58 +10729816,"Well Crafted Code, Quality, Speed and Budget",http://devteams.at/well_crafted_code_quality_speed_budget,20,13,struppi,12/14/2015 7:27 +10960145,Simple Contracts for C++ [pdf],http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2015/n4415.pdf,14,1,vmorgulis,1/23/2016 21:21 +10367465,Ask HN: Switching from Applied Math to CS (Machine Learning),,2,1,moka_crazy15,10/10/2015 23:53 +10516240,The Buddhist Priest Who Became a Billionaire Snubbing Investors,http://www.bloomberg.com/news/articles/2015-11-04/the-no-1-business-rule-of-this-billionaire-and-buddhist-priest,169,108,PhasmaFelis,11/5/2015 21:30 +11023093,Gender Bias in Hiring: Interviewing as a Trans Woman in Tech,https://modelviewculture.com/pieces/gender-bias-in-hiring-interviewing-as-a-trans-woman-in-tech,10,1,zorpner,2/2/2016 22:12 +10351349,Are Bosses Necessary? A radical experiment at Zappos,http://www.theatlantic.com/magazine/archive/2015/10/are-bosses-necessary/403216/?single_page=true,52,56,gpresot,10/8/2015 7:31 +12462318,More People Taking Blockchain Classes as New Economy Grows,https://news.bitcoin.com/blockchain-classes-growing-economy/,6,1,posternut,9/9/2016 14:08 +10497109,Amazon to Open Retail Location in Seattle. Books (Mostly) to Start,http://www.theverge.com/2015/11/2/9661556/amazon-books-first-physical-bookstore-opening-seattle,15,3,cpymchn,11/3/2015 2:51 +12345647,Pokemon Go Is Already in Decline,http://www.bloomberg.com/news/articles/2016-08-22/these-charts-show-that-pokemon-go-is-already-in-decline,6,3,hokkos,8/23/2016 17:39 +10973861,Senators insist that 25Mbps is more bandwidth than anyone could need,https://www.techdirt.com/articles/20160122/05203433402/senators-whine-about-fccs-25-mbps-broadband-standard-insist-nobody-needs-that-much-bandwidth.shtml,1,2,flurpitude,1/26/2016 15:32 +11056341,Ask HN: Should I continue working a Ruby gem for Visa API?,,2,2,nambante,2/8/2016 4:33 +10484117,Bronze Age Skeletons Were Earliest Plague Victims,http://www.scientificamerican.com/article/bronze-age-skeletons-were-earliest-plague-victims/,12,1,curtis,10/31/2015 20:41 +12261864,What plane crashes have in common with Product Development,https://medium.com/1-minute-startup-advice/what-plane-crashes-have-in-common-with-product-development-a02e36404297#.4rwan69xu,10,2,chomponthis,8/10/2016 14:13 +11046530,Hacking Microsoft SQL Server Without a Password,https://blog.anitian.com/hacking-microsoft-sql-server-without-a-password/,4,1,dsr12,2/6/2016 4:19 +10903794,"MarsDB plain js database with Promise API, MongoDB syntax and live queries",https://github.com/c58/marsdb,2,1,c58,1/14/2016 19:32 +10989558,Why Its Critical for the Next Gen to Be Tech Creators Not Consumers,http://www.wired.com/brandlab/2015/12/why-its-critical-for-the-next-gen-to-be-tech-creators-not-consumers?mbid=fb_ppc_23stories_msft_consumers,3,1,mdariani,1/28/2016 17:21 +12375046,The Price of Solar Is Declining to Unprecedented Lows,http://blogs.scientificamerican.com/plugged-in/the-price-of-solar-is-declining-to-unprecedented-lows/,276,164,tedsanders,8/28/2016 2:27 +12402774,Show HN: Got IoT but not sure what do? Find stuff,https://www.geeky.rocks/ioplease,3,1,pili,9/1/2016 2:26 +10654681,Linux Performance Analysis,http://techblog.netflix.com/2015/11/linux-performance-analysis-in-60s.html,451,82,anand-s,12/1/2015 11:49 +10322883,"Ask HN: What is your favorite data structure, what have you done with it?",,16,6,semicolondev,10/3/2015 6:44 +12242149,"Ask HN: OkCupid, Online Dating, Machine Learning, the Future, Etc.",,8,10,baccheion,8/7/2016 14:20 +11071571,Google is banning Flash from its display ads,http://www.theverge.com/2016/2/10/10957570/google-bans-flash-display-ads-january-2017,5,1,jackgavigan,2/10/2016 9:22 +10849666,"Whats Hot, Whats Not, in Pots and Pans (2008)",http://www.nytimes.com/2008/10/08/dining/08curi.html?mtrref=topics.nytimes.com&mtrref=www.nytimes.com&_r=0,25,7,Tomte,1/6/2016 10:20 +11118274,Apache Arrow: A new open source in-memory columnar data format,https://blogs.apache.org/foundation/entry/the_apache_software_foundation_announces87,170,44,jkestelyn,2/17/2016 15:07 +11971917,"Doom, Gloom and Unease: London's Tech Scene Reacts to Brexit",http://www.bloomberg.com/news/articles/2016-06-24/doom-gloom-and-unease-london-s-tech-scene-reacts-to-brexit,155,384,mjohn,6/24/2016 17:51 +10981855,The Useless Agony of Going Offline,http://www.newyorker.com/books/page-turner/the-useless-agony-of-going-offline,23,9,af16090,1/27/2016 18:27 +11936159,"Worlds First 1,000-Processor Chip",https://www.ucdavis.edu/news/worlds-first-1000-processor-chip,61,17,Jerry2,6/20/2016 5:07 +12091724,Show HN: Calc a simple cli calculator/recursive descent parser,https://github.com/ntumlin/calc,4,2,ntumlin,7/14/2016 5:00 +11423070,Show HN: WrapAPI: a tool to build APIs and bots on top of any website,https://wrapapi.com/,111,20,arciini,4/4/2016 16:18 +10198648,Did Thomas Pynchon Publish a Novel Under the Pseudonym Adrian Jones Pearson?,http://harpers.org/blog/2015/09/the-fiction-atop-the-fiction/,37,27,samclemens,9/10/2015 15:33 +10817549,The Missing 11th of the Month,http://drhagen.com/blog/the-missing-11th-of-the-month/,6,1,Amorymeltzer,12/31/2015 13:56 +10509187,Ask HN: What determines lifespan of a post on HN homepage?,,7,3,zeeshanm,11/4/2015 19:59 +10253930,The CIA Campaign to Steal Apple's Secrets,https://theintercept.com/2015/03/10/ispy-cia-campaign-steal-apples-secrets/,6,1,philfreo,9/21/2015 17:51 +11039168,Lessons of Demopolis,https://aeon.co/essays/the-marriage-of-democracy-and-liberalism-is-not-inevitable,23,4,diodorus,2/5/2016 3:15 +12196447,What Babies Know About Physics and Foreign Languages,http://nytimes.com/2016/07/31/opinion/sunday/what-babies-know-about-physics-and-foreign-languages.html,96,24,ontouchstart,7/31/2016 11:06 +10962040,Some of the most popular games get the least respect from game enthusiasts,http://www.wsj.com/articles/the-virtues-of-simple-tic-tac-toe-1453484862,37,58,mudil,1/24/2016 9:28 +12046763,Silicon Valley doesnt care about black people,https://medium.com/@jedmund/silicon-valley-doesnt-care-about-black-people-a91f9fcce8fc#.s0ookltkz,15,2,joeyyang,7/7/2016 0:22 +11875204,"Show HN: Snake, the Twitterbot an experiment in game design",http://yro.ch/snake-the-twitterbot/,23,7,yrochat,6/10/2016 9:27 +11457203,"Google, Don't make me hate you",https://medium.com/@dsracoon/google-don-t-make-me-hate-you-f599de12dbf7,32,39,raverbashing,4/8/2016 19:27 +11996031,GitHub's 2015 Transparency Report,https://github.com/blog/2202-github-s-2015-transparency-report,194,68,Chris911,6/28/2016 18:06 +11088468,Metrics Saas recurring payments business model,http://blog.octobat.com/metrics-for-recurring-payment-business-models-saas/,2,1,Octobat,2/12/2016 16:44 +12042960,75+ Awesome Tools for Designers,https://medium.com/@ConnectBasket/75-awesome-tools-for-designers-d136d11de436,42,1,obi1kenobi,7/6/2016 13:38 +10306956,The State of LTE in September 2015,http://opensignal.com/reports/2015/09/state-of-lte-q3-2015/,56,26,sinak,9/30/2015 20:35 +10283539,"Show HN: Funk a toolkit for using PHPSGI stack (middleware, http servers)",https://github.com/phpsgi/Funk,3,1,pedro93,9/26/2015 16:40 +11178846,Twitter Can Only Lose When It Polices Abuse,http://www.bloombergview.com/articles/2016-02-24/twitter-can-only-lose-when-it-polices-abuse,22,12,yummyfajitas,2/25/2016 23:54 +11912675,The Most Old School Website My Search Engine Has Crawled,http://www.robyndonald.com/,2,4,crispytx,6/15/2016 22:38 +10637127,Slack community for European remote developers. 100+ users,http://europeremotely.com/community.html,23,1,dabrorius,11/27/2015 13:14 +11522153,11 Reasons Why the Panama Papers Matter,http://rogerhuang.co/11-reasons-why-the-panama-papers-matter/,2,1,Rogerh91,4/18/2016 18:38 +12336006,Free nonprofit fundraising is getting real,https://www.helpfreely.org/,1,1,filischi,8/22/2016 13:04 +10686676,Survey of popular Node.js packages reveals credential leaks,https://github.com/ChALkeR/notes/blob/master/Do-not-underestimate-credentials-leaks.md,355,76,fapjacks,12/6/2015 21:20 +10976311,Ask HN: Weather forecast in your email daily,,3,3,kayman,1/26/2016 21:39 +11745631,The Culture Bot,http://www.culturebot.tech/index2.html,2,1,zyad,5/21/2016 18:29 +11194164,Ask HN: Leap year bugs?,,1,2,backslash_16,2/29/2016 7:55 +12299154,Show HN: Procedural content generation as a service,https://aorioli.github.io/procedural/,7,1,aorioli,8/16/2016 17:49 +12049675,Star Citizen This War of Mine,http://www.dereksmart.org/2016/07/star-citizen-this-war-of-mine/,4,5,protomyth,7/7/2016 14:54 +10257621,"UK gov wants to mine the deep web, so they created a hackathon to get help",https://www.gov.uk/government/news/mod-hackathon-to-mine-the-deep-web,3,6,reustle,9/22/2015 9:57 +11406777,An unusual interactive machine learning challenge,http://blackboxchallenge.com/eng/,3,1,blackbox_,4/1/2016 17:38 +12364316,Show HN: Style Basically Prisma for OS X. Runs locally on video&large images,http://macdaddy.io/Style/,1,3,feelix,8/26/2016 5:00 +12023632,The Internet of Things Needs a Fix,http://www.scientificamerican.com/article/the-internet-of-things-needs-a-fix/,85,86,okket,7/2/2016 20:04 +12538050,Is your JavaScript function actually pure?,http://staltz.com/is-your-javascript-function-actually-pure.html,107,89,kiyanwang,9/20/2016 8:48 +11047734,This Video Game Will Break Your Heart,http://www.nytimes.com/2016/02/06/arts/that-dragon-cancer-video-game-will-break-your-heart.html,1,1,dankohn1,2/6/2016 13:49 +10218510,How new data-collection technology might change office culture,http://www.cbc.ca/news/technology/how-new-data-collection-technology-might-change-office-culture-1.3196065,8,2,dgudkov,9/15/2015 1:28 +11306782,Not Another Box,http://notanotherbox.com/#1,3,1,fuzzythinker,3/17/2016 19:13 +11521375,Show HN: Cupper A specialty coffee guide curated by experts,https://itunes.apple.com/us/app/cupper-find-specialty-coffee/id1014894569?ls=1&mt=8,4,2,sunnynagra,4/18/2016 17:00 +10989081,Shocking upset power of strategic voting,https://www.expii.com/solve/8/1,11,4,poshenloh,1/28/2016 16:25 +10247520,Perspectives on a Universal Basic Income,http://www.ritholtz.com/blog/2015/09/perspectives-on-a-universal-basic-income/,25,1,emkemp,9/20/2015 14:00 +10196909,Do CDNs always cache all your content?,,1,1,maartendb,9/10/2015 9:05 +12443801,Donald Knuth speaks about his life [video],http://www.webofstories.com/playAll/donald.knuth,184,16,thedayisntgray,9/7/2016 14:45 +12461008,9/11 conspiracy gets support from physicists study,http://www.wnd.com/2016/08/911-conspiracy-gets-support-from-physicists-study/,2,1,givan,9/9/2016 11:01 +11670272,Ask HN: Research papers sources,,2,1,selmat,5/10/2016 20:12 +10802564,The Ford Foundation's Quest to Fix the World,http://www.newyorker.com/magazine/2016/01/04/what-money-can-buy-profiles-larissa-macfarquhar,15,1,tokenadult,12/28/2015 18:36 +10774432,Educated Germans avoid social media,http://www.dw.com/en/educated-germans-avoid-social-media/a-18875970,124,74,phreeza,12/21/2015 23:37 +11583852,How Erlang does scheduling (2013),http://jlouisramblings.blogspot.com/2013/01/how-erlang-does-scheduling.html,126,22,weatherlight,4/27/2016 19:43 +10380795,Mktmpio: Temporary databases that start instantly,https://mktmp.io/,7,3,jakerella86,10/13/2015 14:49 +12408493,Monad.ai: Consciousness Centric AI Framework (AGI),http://www.monad.ai,5,2,monadai,9/1/2016 20:11 +10779197,Math Bite: Irrationality of ?m (1999),http://fermatslibrary.com/s/irrationality-of-square-root-of-m,88,23,luisb,12/22/2015 17:58 +12178766,FreeBSD Q2 2016 Status Report,https://www.freebsd.org/news/status/report-2016-04-2016-06.html,139,67,danieldk,7/28/2016 6:56 +10424294,API Tooling Companies: We Are Watching You,https://medium.com/@APIdays/api-tooling-companies-we-are-watching-you-46f18e87989a,2,1,bpedro,10/21/2015 8:37 +10323573,Windows 10 and .NET Native,http://www.anandtech.com/show/9661/windows-10-feature-focus-net-native,158,107,WhitneyLand,10/3/2015 12:12 +11396338,Running Bash on Ubuntu on Windows[video],https://channel9.msdn.com/Events/Build/2016/P488,3,1,dineshp2,3/31/2016 11:25 +11785126,The Holy Grail of Crackpot Filtering: How the arXiv decides whats science,http://backreaction.blogspot.com/2016/05/the-holy-grail-of-crackpot-filtering.html,3,3,yetanotheracc,5/27/2016 10:55 +10460332,The Seven Qualities of World-Class SaaS Companies,https://blog.percolate.com/2015/10/the-seven-qualities-of-world-class-saas-companies/?utm_source=hackernews&utm_medium=distribution&utm_campaign=10153_hackernews_4q2015,3,1,mihiks,10/27/2015 19:07 +10327716,Mapping Greater Boston's Neighborhoods,http://bostonography.com/hoods/,41,3,probdist,10/4/2015 15:05 +11206079,Zynga Appoints New CEO,http://blog.zynga.com/2016/03/01/ceo-update-7/,39,10,coloneltcb,3/1/2016 21:11 +10858973,"Show HN: GhostJS, UI integration testing with mocha and async functions",https://github.com/KevinGrandon/ghostjs,2,1,kevining,1/7/2016 16:48 +10778153,IRS Power to Revoke Passports Signed into Law,http://www.forbes.com/sites/robertwood/2015/12/04/irs-power-over-passports-signed-into-law/,3,1,us0r,12/22/2015 15:13 +10450525,Reform Tax Credits with a Negative Income Tax (UK),http://www.adamsmith.org/news/press-release-reform-tax-credits-with-a-negative-income-tax-says-new-report/,3,1,ed_blackburn,10/26/2015 10:44 +11186902,Apples Privacy Fight Tests Relationship with White House,http://www.nytimes.com/2016/02/27/technology/apples-privacy-fight-tests-relationship-with-white-house.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=first-column-region®ion=top-news&WT.nav=top-news&_r=0,104,71,hvo,2/27/2016 12:21 +11776490,JavaScript Cancelable Promises Proposal,https://docs.google.com/presentation/d/1V4vmC54gJkwAss1nfEt9ywc-QOVOfleRxD5qtpMpc8U/edit#slide=id.gc6f9e470d_0_0,25,15,bpierre,5/26/2016 8:33 +12366165,EU copyright reform proposes search engines pay for snippets,https://thestack.com/world/2016/08/26/eu-copyright-reform-proposes-search-engines-pay-for-snippets/,3,1,MaurizioP,8/26/2016 13:47 +11480224,Charlie Munger warns about American finance,http://uk.businessinsider.com/charlie-munger-warns-about-american-finance-2016-4?r=US&IR=T,21,2,Amorymeltzer,4/12/2016 15:12 +10833230,An open letter to Paul Graham,https://medium.com/@RickWebb/an-open-letter-to-paul-graham-3d4f3369fe76,38,10,jm3,1/3/2016 23:59 +10209586,Why healthcare price transparency initiatives are failing?,http://www.quora.com/Why-healthcare-price-transparency-initiatives-are-failing?share=1,8,5,kikouyou,9/12/2015 22:18 +10209190,"FBI, intel chiefs decry deep cynicism over cyber spying programs",http://arstechnica.com/tech-policy/2015/09/fbi-intel-chiefs-decry-deep-cynicism-over-cyber-spying-programs/,5,1,Benvie,9/12/2015 20:13 +11539679,Scientists Unveil the 'Most Clever' CRISPR Gadget So Far,https://www.statnews.com/2016/04/20/clever-crispr-advance-unveiled/,88,23,signa11,4/21/2016 4:23 +10377467,The secretive life of a Michelin inspector,http://www.vanityfair.com/culture/2015/09/top-chefs-michelin-stars,56,27,bootload,10/12/2015 23:26 +12333560,"Antoines, the oldest US restaurant owned by a single family",http://www.wondersandmarvels.com/2016/08/the-most-famous-restaurant-in-us-history.html,54,22,Thevet,8/22/2016 1:20 +12309336,Request HN: Show notification for replies,,18,9,neeleshs,8/17/2016 23:30 +11336041,French news sites block the adblockers: uninstall or lose access,http://www.theguardian.com/media/2016/mar/22/french-news-sites-block-the-adblockers-telling-readers-to-uninstall-or-lose-access,3,1,danmaz74,3/22/2016 12:40 +12016944,Relative Likelihood for Life as a Function of Cosmic Time,http://arxiv.org/abs/1606.08448,24,12,privong,7/1/2016 15:35 +11309636,GoButler is pivoting to automated travel booking,http://techcrunch.com/2016/03/17/a-pivot-please/,1,1,davecraige,3/18/2016 3:19 +10619661,Cuisine and empire,http://www.eugenewei.com/blog/2015/8/18/cuisine-and-empire,18,1,anigbrowl,11/24/2015 8:02 +10297335,@Snowden,https://twitter.com/snowden,60,5,uptown,9/29/2015 16:14 +11768609,Google wants to get rid of password logins for Android apps by 2017,http://www.androidauthority.com/google-kills-passwords-trust-api-694394/,3,1,doener,5/25/2016 9:25 +11636692,Emacs haskell-mode considers built-in analytics,https://github.com/haskell/haskell-mode/issues/1220,1,1,cm3,5/5/2016 15:02 +11517835,"AI It's Real, It's Here and It's Helping Mankind",https://aicial.com/blog/ai-helping-mankind,9,3,troykelly,4/18/2016 5:13 +11196274,Ask HNs: Why do people expect so much from a free apps?,,3,2,samfisher83,2/29/2016 16:14 +11951628,Emacs Live (2013),http://overtone.github.io/emacs-live/,114,43,sndean,6/22/2016 4:51 +11237776,Ask HN: Any Site that teaches JavaScript the way RailsCasts.com teaches Rails?,,5,1,jamesxx,3/7/2016 8:32 +12465658,Study shows alternative therapies improve metabolomic profile,http://www.nature.com/articles/srep32609,2,1,kevbam,9/9/2016 20:08 +12498297,New programming language delivers fourfold speedups on Big Data problems,http://www.nextbigfuture.com/2016/09/new-programming-language-delivers.html,2,1,nootopian,9/14/2016 16:02 +11438065,London's Housing Crisis and the Inequality Chasm,http://www.citylab.com/housing/2016/04/london-housing-crisis-inequality/476694/,3,1,davidiach,4/6/2016 11:39 +11605586,Automatic Image Colorization with Simultaneous Classification,http://hi.cs.waseda.ac.jp/~iizuka/projects/colorization/en/,138,26,timlod,5/1/2016 9:53 +11934955,Curry: A Tutorial Introduction [pdf],http://www-ps.informatik.uni-kiel.de/currywiki/_media/documentation/tutorial.pdf,77,8,vmorgulis,6/19/2016 22:12 +11994248,Elie Wiesel Visits Disneyland,http://www.tabletmag.com/jewish-arts-and-culture/books/206125/elie-wiesel-visits-disneyland,89,11,Thevet,6/28/2016 14:55 +11977584,Designing for Accessibility: UK Home Office Posters,https://github.com/UKHomeOffice/posters/tree/master/accessibility,7,1,mdlincoln,6/25/2016 19:20 +12101323,Eventsourcing for Java 0.4.0 released,https://es4j.eventsourcing.com/docs/0.4.0/,4,2,yrashk,7/15/2016 14:45 +10870470,Long range forecast,http://www.antipope.org/charlie/blog-static/2016/01/long-range-forecast.html,74,53,stakent,1/9/2016 7:45 +11177071,Goldman Sachs Switching to Kubernetes and Docker,http://blogs.wsj.com/cio/2016/02/24/big-changes-in-goldmans-software-emerge-from-small-containers/,1,1,brendandburns,2/25/2016 19:28 +10181929,Writing an Operating System with Modula-3 (1995) [pdf],http://cseweb.ucsd.edu/~savage/papers/Wcsss96m3os.pdf,52,6,vezzy-fnord,9/7/2015 16:06 +10620394,Show HN: Gitnonymous Contribute anonymously to Git repositories over Tor,https://github.com/chr15m/gitnonymous,46,5,chr15m,11/24/2015 12:53 +10666471,"Zoltan Istvan, presidential candidate of the Transhumanist Party",http://www.theverge.com/a/transhumanism-2015?mod=e2this,33,14,fezz,12/2/2015 22:50 +11646955,"Open-sourcing Knox, a secret key management service",https://engineering.pinterest.com/blog/open-sourcing-knox-secret-key-management-service,21,4,jeremy_carroll,5/6/2016 21:51 +11594005,MailChimp Kill Mandrill Links,,6,2,Benjamin_Dobell,4/29/2016 6:03 +10437963,Israel Calls a Man a Terrorist Until They Realized He Was an Israeli Jew,https://theintercept.com/2015/10/22/israel-calls-a-man-its-soldiers-killed-a-terrorist-until-they-realized-he-was-an-israeli-jew/,13,1,3eto,10/23/2015 11:46 +10501421,The Illustrated Guide to Product Development (Part 3: Engineering),https://blog.bolt.io/the-illustrated-guide-to-product-development-part-3-engineering-440b94de997a,2,1,tigrella,11/3/2015 18:21 +10704572,Cortana available on iOS and Android,https://blogs.windows.com/windowsexperience/2015/12/09/cortana-now-available-here-and-when-you-need-her-no-matter-what-smartphone-you-choose/,256,127,dalanmiller,12/9/2015 16:23 +10465202,"Sunrise Shutting Down - ""This is just the beginning"". Part 2",http://blog.sunrise.am/post/132088346354/this-is-just-the-beginning-part-2,6,1,uptown,10/28/2015 16:07 +10715564,Ask HN: Should I Take CTO/Co-Founder Role?,,4,10,ctomaybe,12/11/2015 5:09 +10789593,Ask HN: Predictions for 2016,,3,2,diminish,12/24/2015 21:13 +11253535,SCMP's online presence in mainland China completely wiped out,http://shanghaiist.com/2016/03/09/south-china-morning-post.php,56,44,sharetea,3/9/2016 15:38 +10612933,A Gut Wound That Changed the History of Medicine,http://www.atlasobscura.com/articles/keeping-an-eye-on-your-gut,7,2,sohkamyung,11/23/2015 4:58 +12168470,Show HN: NCL New Configuration Language,https://github.com/PayWithMyBank/ncl,4,2,ezioamf,7/26/2016 20:18 +10793827,A Psychological Exploration of Engagement in Geek Culture,http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0142200,33,22,kushti,12/26/2015 10:32 +12385682,Decoupled Neural Interfaces Using Synthetic Gradients,https://deepmind.com/blog#decoupled-neural-interfaces-using-synthetic-gradients,130,26,yigitdemirag,8/29/2016 21:51 +12097876,Lots of https websites not working in Egypt,https://www.facebook.com/linuxawy/posts/10154141393415239,3,2,ahmgeek,7/14/2016 23:10 +10613164,Hack a Hotel,http://hackahotel.com/,1,1,lkrubner,11/23/2015 6:18 +12476278,The Real Heroes Are Dead (2002),http://www.newyorker.com/magazine/2002/02/11/the-real-heroes-are-dead,113,44,jseliger,9/11/2016 23:40 +12463945,We know theres a gender pay gap in technology what can we do about it?,https://medium.com/code-like-a-girl/we-know-theres-a-gender-pay-gap-in-technology-the-question-is-what-can-we-do-about-it-4dadfafc396#.r6locat0z,2,1,DinahDavis,9/9/2016 16:50 +10512417,TinyOwls hostage crisis,http://www.medianama.com/2015/11/223-tinyowl-hostage-crisis/,21,5,r0h1n,11/5/2015 9:26 +11653982,Gremgo a fast and easy-to-use client for the TinkerPop graph DB stack,https://github.com/qasaur/gremgo,3,1,Qasaur,5/8/2016 13:33 +10897370,The Real Cause of Secular Stagnation Is Underconsumption,https://medium.com/@philipkd/the-real-cause-of-secular-stagnation-is-underconsumption-8f6138eccd8f,3,1,philipkd,1/13/2016 20:48 +10626192,Difficult Times at Our Credit Union,https://blog.archive.org/2015/11/24/difficult-times-at-our-credit-union/,174,33,monort,11/25/2015 9:03 +12294279,Ask HN: Is there a technological solution to the Kashmir problem?,,11,5,ahussain,8/15/2016 23:19 +10909906,Show HN: SVGnest irregular bin packing in the browser,https://github.com/Jack000/SVGnest,8,2,Jack000,1/15/2016 15:41 +10958834,How to prolong your phone's life in a power outage,http://www.usatoday.com/story/tech/columnist/2016/01/23/how-prolong-your-phones-life-power-outage/79222208/,2,4,CrankyBear,1/23/2016 16:26 +10540566,"GCHQ director blasts free market, says UK must be sovereign cryptographic nation",http://www.theregister.co.uk/2015/11/10/gchq_director_speech/,4,1,stevetrewick,11/10/2015 17:07 +11155588,Dear Bernie. Im Sorry I Am the Problem with America,https://medium.com/@robmay/dear-bernie-i-m-sorry-i-am-the-problem-with-america-40d03eee071f#.xuize5col,27,9,NN88,2/23/2016 0:48 +12377899,Ask HN: How do you learn a new concept/programming language/ framework?,,2,3,Kaladin,8/28/2016 18:58 +11346250,TensorFlow as a Service,https://cloud.google.com/ml/,12,1,hurrycane,3/23/2016 17:03 +12478094,Why there is no Facebook killer: the death of the P2P dream (2014),http://www.disconnectionist.com/blog/why-no-fb-killer.html,123,136,wheresvic1,9/12/2016 8:43 +12152770,Show HN: Anonymous 5 mile radius chat for Pokemon Go using Firebase,https://radargo.wordpress.com/radar-go/,15,4,rezashirazian,7/24/2016 8:58 +10428851,The PNP game,https://pnpgame.com/,6,4,dannote,10/21/2015 21:31 +11013584,A tutorial for making Twitch-like video chat app on iOS,http://blog.sendbird.com/tutorial-how-to-build-a-twitch-like-video-chat-app-in-10-minutes/,7,1,dosh,2/1/2016 17:54 +11057594,Show HN: React-Designer Editable Vector Graphics in React Components,http://fatiherikli.github.io/react-designer,38,7,fatiherikli,2/8/2016 11:49 +12062878,EMI-based Compiler Testing,http://web.cs.ucdavis.edu/~su/emi-project/,36,5,mehrdada,7/9/2016 19:26 +12133095,Nokia McLaren: The Windows Phone That Never Was [video],https://www.youtube.com/watch?v=200bl3A6sAw,6,2,anonymfus,7/20/2016 22:43 +10546197,Show HN: Elbi bringing philanthropy to everyone,https://itunes.apple.com/app/apple-store/id958215274?mt=8&ref=daniellove.net,3,3,4eleven7,11/11/2015 12:03 +10886428,Salary and perks at 37 signals(basecamp),https://m.signalvnoise.com/employee-benefits-at-basecamp-d2d46fd06c58#.kbez9z913,5,2,throwa,1/12/2016 9:51 +10277434,The Life of a Professional Guinea Pig,http://www.theatlantic.com/science/archive/2015/09/life-of-a-professional-guinea-pig/406018/?single_page=true,38,14,Jtsummers,9/25/2015 11:09 +10861508,Power and Paranoia in Silicon Valley,http://www.buzzfeed.com/williamalden/power-and-paranoia-in-silicon-valley,3,1,bootload,1/7/2016 23:04 +11436961,"The Internet Archive, ALA, and SAA Brief Filed in TV News Fair Use Case",https://blog.archive.org/2016/04/05/the-internet-archive-ala-and-saa-brief-filed-in-tv-news-fair-use-case/,47,5,edward,4/6/2016 6:13 +10587156,Barren islands that countries never stop fighting over,http://www.bbc.com/future/story/20151117-the-islands-that-countries-never-stop-fighting-over,65,55,carlosgg,11/18/2015 11:47 +10737102,"Sex toy startup seeking investment, where do we look?",,5,15,dr_swe,12/15/2015 11:09 +10902938,Why clean energy is now expanding even when fossil fuels are cheap,https://www.washingtonpost.com/news/energy-environment/wp/2016/01/14/why-clean-energy-is-now-expanding-even-when-fossil-fuels-are-cheap/,67,75,prostoalex,1/14/2016 17:46 +11197592,Ethereum Homestead release,https://blog.ethereum.org/2016/02/29/homestead-release/,106,36,ConsenSys,2/29/2016 19:24 +10722477,"San Quentin high-tech incubator forges coders, entrepreneurs",http://www.usatoday.com/story/tech/2015/12/10/san-quentin-high-tech-incubator-silicon-valley-the-last-mile-code7370-chris-redlitz-beverly-parenti/77093164,42,15,kawera,12/12/2015 11:58 +10238075,Show HN: News Chit News in Short Hindi and English Videos,https://play.google.com/store/apps/details?id=com.newschit,6,1,bakli,9/18/2015 8:27 +12363206,Fight between cofounders,,1,5,debarshri,8/25/2016 23:13 +10428572,Ask HN: Need Startup Growth Advice/Help,,2,1,jamesdharper3,10/21/2015 20:48 +10188367,GEOS For the Commodore 64,http://toastytech.com/guis/c64g.html,98,41,franze,9/8/2015 21:40 +10771100,Problems with Systemd and Why I Like BSD Init,http://bsdmag.org/randy_w_3/,76,69,mariuz,12/21/2015 14:11 +12207222,OCaml inside: a drop-in replacement for libtls [pdf],https://www.cl.cam.ac.uk/~jdy22/papers/ocaml-inside-a-drop-in-replacement-for-libtls.pdf,10,1,cm3,8/2/2016 1:08 +11895153,The biggest obstacle to Martian colonization isn't technical,http://blog.rongarret.info/2016/06/the-biggest-obstacle-to-martian.html,4,1,lisper,6/13/2016 16:28 +11445140,How I got a game on Steam without anyone from Valve ever looking at it,https://medium.com/swlh/watch-paint-dry-how-i-got-a-game-on-the-steam-store-without-anyone-from-valve-ever-looking-at-it-2e476858c753,101,19,pierre-renaux,4/7/2016 6:23 +11868169,Wall Street Has Hit Peak Human and an Algorithm Wants Your Job,http://www.bloomberg.com/news/articles/2016-06-08/wall-street-has-hit-peak-human-and-an-algorithm-wants-your-job,43,100,bootload,6/9/2016 8:14 +12050936,The Society of Mind,http://aurellem.org/society-of-mind/,4,2,bshanks,7/7/2016 17:47 +10315482,Apple CEO Tim Cook: 'Privacy Is a Fundamental Human Right',http://www.npr.org/sections/alltechconsidered/2015/10/01/445026470/apple-ceo-tim-cook-privacy-is-a-fundamental-human-right,227,178,davidbarker,10/1/2015 23:15 +10901588,OpenSSH: client bug CVE-2016-0777,http://undeadly.org/cgi?action=article&sid=20160114142733,617,214,moviuro,1/14/2016 14:36 +12544770,The Building Blocks of Japanese Cuisine,http://luckypeach.com/guides/building-blocks-japanese-cuisine/,110,111,Vigier,9/21/2016 1:24 +11753089,Tyranny of the Algorithm? Predictive Analytics and Human Rights,http://www.law.nyu.edu/bernstein-institute/conference-2016,2,1,Dowwie,5/23/2016 11:16 +11916628,Ask HN: What is that website that compared language vs. language?,,1,1,usermac,6/16/2016 15:06 +12417938,How Spy Tech Firms Let Governments See Everything on a Smartphone,http://www.nytimes.com/2016/09/03/technology/nso-group-how-spy-tech-firms-let-governments-see-everything-on-a-smartphone.html,165,59,xacaxulu,9/3/2016 5:44 +11207755,"'Child-friendly' search engine Kiddle is promoting ignorance, not safety",http://thenextweb.com/opinion/2016/03/01/child-friendly-search-engine-kiddle-is-promoting-ignorance-not-safety/,4,4,tomkwok,3/2/2016 2:29 +12338978,A homeless womans battle to prove Social Security owes her more than $100K,https://www.washingtonpost.com/local/i-wasnt-crazy-a-homeless-womans-long-war-to-prove-the-feds-owe-her-100000/2016/08/22/3913e4c2-6541-11e6-8b27-bb8ba39497a2_story.html,26,2,sudoscript,8/22/2016 19:59 +11586757,The Guardians new image management system,https://github.com/guardian/grid,2,1,shade23,4/28/2016 5:49 +11787038,Web benchmark: Dlang (601.74 req/sec) vs. Node.js (300.80 req/sec),https://github.com/llaine/benchmarks,2,2,darksioul,5/27/2016 16:24 +10892925,The CIA-backed startup that's taking over Palo Alto,http://www.cnbc.com/2016/01/12/the-cia-backed-start-up-thats-taking-over-palo-alto.html,85,110,adventured,1/13/2016 8:03 +12264187,Can chatbots help build your next website?,https://techcrunch.com/2016/08/09/can-chatbots-help-build-your-next-website/,1,1,mik_bry,8/10/2016 19:22 +10443564,Why Tech Driven Mortgage Lending Will Eliminate the Traditional Mortgage Process,http://www.forbes.com/sites/markgreene/2015/10/23/why-tech-driven-mortgage-lending-will-eliminate-the-traditional-mortgage-getting-process/,1,1,PretzelFisch,10/24/2015 13:43 +11666017,"Doom on GLium, in Rust",https://docs.google.com/presentation/d/1TjWba0CR9RHFm47rvW1nFUlmouaR55Xt235aHyLPf9U/edit#slide=id.p,149,35,hansjorg,5/10/2016 9:27 +11329769,Why my kids will learn to code as a second language,http://venturebeat.com/2016/03/19/why-my-kids-will-learn-to-code-as-a-second-language/,2,2,kafkaesq,3/21/2016 17:20 +11922485,ReStructuredText vs. Markdown for documentation,http://zverovich.net/2016/06/16/rst-vs-markdown.html,194,117,ingve,6/17/2016 13:25 +12469765,Ask HN: Resources on how to build internal/enterprise tools?,,10,5,internal_tools,9/10/2016 16:01 +11025571,Ask HN: Which industry sector should I target?,,77,60,leksak,2/3/2016 9:30 +11926019,"If you ask for my permission, you wont have my permission",http://m.signalvnoise.com/if-you-ask-for-my-permission-you-wont-have-my-permission-9d8bb4f9c940,19,1,Dangeranger,6/17/2016 22:49 +11244386,Let's Encrypt has issued its first million certificates,https://www.eff.org/deeplinks/2016/03/lets-encrypt-has-issued-million-certificates,443,152,thejosh,3/8/2016 9:57 +10901056,Classp: a reverse approach to parsing from AST to grammar,https://github.com/google/classp,3,1,vmorgulis,1/14/2016 12:58 +10932244,Submitting a Pull Request to Node.js with ChakraCore,https://blogs.windows.com/msedgedev/2016/01/19/nodejs-chakracore-mainline/,7,1,bpierre,1/19/2016 17:32 +12380897,Designing a fast hash table,http://www.ilikebigbits.com/blog/2016/8/28/designing-a-fast-hash-table,67,34,vasili111,8/29/2016 9:38 +11958515,Big Data in Little China: Why the Future of Big Data Is Made in China,http://blog.traintracks.io/big-data-in-little-china/?hn=true,20,3,sirjeffhsu,6/23/2016 2:36 +10928046,Ask HN: Where do I go to learn Modern PHP?,,6,2,mikeschmatz,1/19/2016 0:20 +11394993,Agility Requires Safety,http://themacro.com/articles/2016/03/agility-requires-safety/,128,54,runesoerensen,3/31/2016 4:27 +12297046,The traits of a proficient programmer,https://www.oreilly.com/ideas/the-traits-of-a-proficient-programmer,305,136,kiyanwang,8/16/2016 12:41 +10264937,"Human Shape and Pose, by Number",http://blog.bodylabs.com/2015/09/09/tech-intro/,18,2,paulmelnikow,9/23/2015 13:49 +12137324,Questions for our first 1:1,http://larahogan.me/blog/first-one-on-one-questions/,88,12,wallflower,7/21/2016 15:05 +12508302,VRs Big Surprise: 3-D Worlds Have Little Appeal,https://www.technologyreview.com/s/602353/vrs-big-surprise-3-d-worlds-have-little-appeal/,10,4,dsr12,9/15/2016 17:58 +11576263,Facial recognition service becomes a weapon against Russian porn actresses,http://arstechnica.com/tech-policy/2016/04/facial-recognition-service-becomes-a-weapon-against-russian-porn-actresses/,6,3,Jerry2,4/26/2016 22:26 +10519908,Facebook Bans Links to Competing Social Network,http://www.ksat.com/news/national/facebook-wont-let-you-type-this_,19,12,Kinnard,11/6/2015 15:29 +11912269,Show HN: Pennyearned is pinboard for expense tracking,https://pennyearned.in,2,2,ejcx,6/15/2016 21:26 +10977931,Show HN: TrafficCop.html A Mobile Friendly HTML5 Micro-Framework,,2,2,crispytx,1/27/2016 3:04 +11025845,The Scooter Computer,http://blog.codinghorror.com/the-scooter-computer/,28,2,ingve,2/3/2016 11:09 +11919107,Cars are getting weird,http://kottke.org/16/06/cars-are-getting-weird,95,133,jordigh,6/16/2016 21:44 +11230532,Why I Left Oracle A Confession,http://blog.rahmannet.net/2016/03/why-i-left-oracle.html,140,152,cronjobber,3/5/2016 19:03 +11934336,Has anyone tried the Fossil SCM? What's your opinion?,https://www.fossil-scm.org/index.html/doc/trunk/www/index.wiki,2,3,znpy,6/19/2016 19:37 +12043588,Going for the Gold: The Economics of the Olympics,http://pubs.aeaweb.org/doi/pdfplus/10.1257/jep.30.2.201,12,7,gwern,7/6/2016 15:13 +10648418,A Battery Revolution in Motion,https://news.cnrs.fr/articles/a-battery-revolution-in-motion,147,85,vmarsy,11/30/2015 8:40 +10983331,Apache Traffic Server,https://trafficserver.apache.org/,180,71,nikolay,1/27/2016 21:03 +12108202,Play Pokémon Go from your mac,https://github.com/iam4x/pokemongo-webspoof,2,2,iam4xzor,7/16/2016 23:00 +10562173,Biohackers Creating Open Source Insulin to Disrupt Big Pharma,https://experiment.com/projects/open-insulin,11,2,januswandering,11/13/2015 20:22 +12086223,Skype for Linux Alpha and Calling on Chrome and Chromebooks,https://community.skype.com/t5/Linux/Skype-for-Linux-Alpha-and-calling-on-Chrome-amp-Chromebooks/td-p/4434299,56,34,hackernews2000,7/13/2016 14:07 +12204672,NY State Wants to Ban Sex Offenders from Playing Pokemon Go,http://reason.com/blog/2016/08/01/new-york-wants-to-ban-sex-offenders-from,12,1,AWildDHHAppears,8/1/2016 18:21 +10591268,"FBI Stymied by Islamic States Use of Encryption, Director Says",http://www.wsj.com/articles/fbi-stymied-by-islamic-states-use-of-encryption-director-says-1447866592,1,1,mudil,11/18/2015 22:35 +10569587,Walter Murch: The legendary film editor on underlying patterns in the cosmos,http://nautil.us/issue/30/identity/ingenious-walter-murch,32,3,dnetesn,11/15/2015 13:47 +10650500,Ask HN: What's the solution to internet connectivity problems in Windows 10?,,1,1,chirau,11/30/2015 17:19 +11201152,ARSocial 1,http://www.reputedemo.com/wordpress35/arsocial-1,1,1,repute,3/1/2016 6:47 +11914812,Ask HN: Are bots just a hype?,,3,6,kyloren,6/16/2016 8:42 +11462057,Effeckt.css Performant CSS transitions and animations,http://h5bp.github.io/Effeckt.css/,64,16,Ideabile,4/9/2016 16:58 +12477211,Learning systems programming with Rust,http://jvns.ca/blog/2016/09/11/rustconf-keynote/,184,44,zdw,9/12/2016 4:33 +10936037,Next-generation network time-servers are FPGA-based,http://www.embedded.com/electronics-blogs/max-unleashed-and-unfettered/4441235/Next-generation-network-time-servers-are-FPGA-based,13,5,kungfudoi,1/20/2016 4:10 +10663203,The age of pre-crime has arrived,https://www.washingtonpost.com/news/the-watch/wp/2015/12/01/the-age-of-pre-crime-has-arrived/,3,1,001sky,12/2/2015 14:48 +11604098,Silhouettes of the bomb: what can we learn from the shapes of atomic weapons?,http://blog.nuclearsecrecy.com/2016/04/22/bomb-silhouettes/,86,34,rdl,4/30/2016 23:19 +11705905,Motherboard Dumps Slack,https://medium.com/@did_78238/motherboard-dumps-slack-490b3b6e722c#.u7vhf21we,2,1,JackPoach,5/16/2016 12:46 +10689499,Its time for doctors to apologise to their ME patients,http://www.telegraph.co.uk/news/health/12033810/Its-time-for-doctors-to-apologise-to-their-ME-patients.html,44,32,bloke_zero,12/7/2015 14:12 +12562577,Physical Web Experiments Without a BLE Beacon,,2,3,Mstreib,9/23/2016 5:45 +12270219,Ask HN: How many professional developers contribute to open source?,,22,12,morinted,8/11/2016 17:40 +11454763,Apply HN: Bleepmic 30s audio notes,,3,6,khalloud,4/8/2016 14:15 +12195896,Wid: companion for tracking your time,https://wid.chorem.com/site/home,1,1,based2,7/31/2016 5:50 +12102099,Researchers blur the line between classical and quantum physics,http://phys.org/news/2016-07-blur-line-classical-quantum-physics.html,82,24,evo_9,7/15/2016 16:24 +10464290,How to detect lies with a storytelling technique,http://www.anecdote.com/2015/05/how-to-detect-lies/,291,113,jessaustin,10/28/2015 13:31 +11069305,EASTL: Electronic Arts Standard Template Library,https://github.com/electronicarts/EASTL,16,1,ingve,2/9/2016 22:24 +10351721,Freestart collisions for SHA-1,https://sites.google.com/site/itstheshappening/,124,35,dchest,10/8/2015 9:53 +10534220,McDonalds to Rebrand Itself as a Progressive Burger Company,http://www.npr.org/2015/05/04/404236476/mcdonalds-plans-to-rebrand-itself-as-a-progressive-burger-company,2,3,williamle8300,11/9/2015 17:09 +11254531,EmacsGolf (2013),http://jcarroll.com.au/2013/08/25/emacsgolf/,49,15,lelf,3/9/2016 18:03 +12072089,My Time with Richard Feynman (2005),https://backchannel.com/my-time-with-richard-feynman-8e15ef968e75#.4xv7d04of,95,19,jonbaer,7/11/2016 16:16 +11523962,Travel Through Space Using AR with Solar Simulator (Project Tango),https://developers.googleblog.com/2016/04/travel-through-space-with-project-tango.html,3,1,omarshaikh,4/18/2016 23:57 +11356461,Privacy Forget Your Credit Card,https://privacy.com/,661,359,doomrobo,3/24/2016 21:09 +11800897,Apple's forgotten virtual-reality project QuickTime VR,http://www.businessinsider.com/inside-story-of-apples-forgotten-virtual-reality-project-quicktime-vr-2016-5,84,43,jonbaer,5/30/2016 12:15 +12416256,Airbnb Law Enforcement Transparency Report,http://transparency.airbnb.com/,75,36,rezist808,9/2/2016 21:00 +12059231,Theranos Statement on CMS Findings,https://theranos.com/news/posts/theranos-statement-on-cms-findings,4,1,kqr2,7/8/2016 23:15 +12305065,Attracting Early Stage Investors: Evidence from a Randomized Experiment (2015),http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2432044,89,38,gghyslain,8/17/2016 14:43 +11770566,Ask HN: Do you (developers) manage your own servers?,,17,22,cdnsteve,5/25/2016 15:46 +12296393,Are Rotisserie Chickens a Bargain?,https://priceonomics.com/are-rotisserie-chickens-a-bargain/,147,123,andyraskin,8/16/2016 9:47 +10886202,Fundraising values Skyscanner at $1.6B,http://www.ft.com/cms/s/0/1e31490a-b7a5-11e5-b151-8e15c9a029fb.html,52,36,edward,1/12/2016 8:26 +11395845,90 percent of everything is crap,https://en.wikipedia.org/wiki/Sturgeon%27s_law,112,62,vincent_s,3/31/2016 8:55 +10571208,The ins and outs of research grant funding committees,https://theconversation.com/the-ins-and-outs-of-research-grant-funding-committees-49900,21,6,danieltillett,11/15/2015 21:06 +10324755,"Ask HN: Looking to purchase a software-defined radio, any advice?",,85,32,grantham,10/3/2015 18:03 +10227245,Gamers use speedrunning events to raise millions for charity,http://www.psmag.com/books-and-culture/need-for-speedrunning,7,1,nbj914,9/16/2015 15:19 +11974461,Basic PHP Tutorials,,1,1,ryan21030,6/25/2016 0:08 +12256811,Power of Machine Learning in Excel: Predict Olympics Results,https://invrea.com/blog/olympics_predictions.php,3,3,yura_invrea,8/9/2016 18:38 +11037985,LinkedIn Tumbles 30% on Earnings Guidance,http://techcrunch.com/2016/02/04/linkedin-tumbles-24-on-earnings-guidance/,72,35,confiscate,2/4/2016 23:03 +12043644,Comcast says its not feasible to comply with FCC cable box rules,http://arstechnica.com/information-technology/2016/07/why-comcast-claims-the-fccs-set-top-box-plan-is-a-technical-nightmare/,48,52,sciurus,7/6/2016 15:20 +10248273,Ask HN: How do you manage and structure a team?,,136,62,losingcontrol,9/20/2015 17:27 +11204488,Productivity Automation Tools I Use,http://captaintime.com/automation-tools/,4,1,TimeCoach,3/1/2016 17:47 +11005143,Theranos Stops Drawing Blood from Patients at Capital BlueCross Store,http://www.wsj.com/articles/theranos-stops-drawing-blood-from-patients-at-capital-bluecross-pennsylvania-store-1454093470,68,16,apsec112,1/31/2016 3:49 +10732762,Loop: Pool on an Ellipse,http://www.loop-the-game.com/,32,6,mightybyte,12/14/2015 18:25 +10755503,Advantages of working in the US as a foreign developer,http://www.getajob.io/advantages-of-working-in-the-us/,2,2,getajob,12/17/2015 23:33 +11948324,iOS Playgrounds Part 5: Editing real code,http://ericasadun.com/2016/06/21/ios-playgrounds-part-5-editing-real-code/,4,2,melling,6/21/2016 18:50 +11080080,Im a web developer and can't make anymore the simplest web app,https://medium.com/@pistacchio/i-m-a-web-developer-and-i-ve-been-stuck-with-the-simplest-app-for-the-last-10-days-fb5c50917df#.jqqrn0k9a,79,42,pistacchioso,2/11/2016 13:54 +11344357,Ask HN: What should I ask before joining a new startup?,,3,2,cupofjoakim,3/23/2016 13:49 +11130688,Graphing when your Facebook friends are awake,https://defaultnamehere.tumblr.com/post/139351766005/graphing-when-your-facebook-friends-are-awake,1302,189,adamch,2/19/2016 0:50 +12536050,MoMA Will Make Thousands of Exhibition Images Available Online,http://www.nytimes.com/2016/09/15/arts/design/moma-will-make-thousands-of-exhibition-images-available-online.html,76,20,prismatic,9/20/2016 0:44 +11830596,A dying America is raging against the capitalist machine,http://www.salon.com/2016/06/03/neoliberalism_gave_us_trump_a_dying_white_america_is_raging_against_the_capitalist_machine_partner/,14,8,MollyR,6/3/2016 14:45 +10713818,Why software engineers should start their careers in San Francisco,http://qz.com/570389/one-major-reason-why-software-engineers-should-start-their-careers-in-san-francisco/,8,2,RachelF,12/10/2015 21:59 +10454334,"Ask HN: Developers vs. machines, how long will it last?",,1,2,montbonnot,10/26/2015 20:44 +12566258,2016 JavaOne Intel Keynote 32mn Talk,https://www.youtube.com/watch?v=MAi1eHpLY5M,1,1,BenoitP,9/23/2016 17:16 +10882261,iOS 9.3 Preview,https://www.apple.com/ios/preview/,323,301,jmduke,1/11/2016 18:46 +12545228,Show HN: RocketAmp Google AMP for Shopify,http://www.getrocketamp.com/,6,3,rocketamp,9/21/2016 3:44 +11857674,MongoDB queries dont always return all matching documents,https://engineering.meteor.com/mongodb-queries-dont-always-return-all-matching-documents-654b6594a827#.s3ko3vfnx,444,397,dan_ahmadi,6/7/2016 20:48 +12160123,Recursive Functions of Symbolic Expressions and Their Computation (1960),http://www-formal.stanford.edu/jmc/recursive/recursive.html,61,6,DennisCooper,7/25/2016 17:26 +12263743,More Than 1M US Corporate Salaries Exposed,http://www.salarymonitor.com,3,1,chrisnewton,8/10/2016 18:15 +11696141,How I fell in love with a programming language,https://m.signalvnoise.com/how-i-fell-in-love-with-a-programming-language-8933d5e749ed,58,45,braythwayt,5/14/2016 13:58 +10250188,Next airline hijacking will be by a hacker from halfway around the world,http://www.digitaltrends.com/opinion/john-mcafee-airline-hijacking-hacker-cyber-security/,1,2,gexos,9/21/2015 3:28 +10207681,Legendary Productivity and the Fear of Modern Programming,http://techcrunch.com/2015/09/11/legendary-productivity-and-the-fear-of-modern-programming/,87,51,wyclif,9/12/2015 9:35 +12113052,"Ask HN: How many of you actually identify yourself as hackers? If so, why?",,9,18,type0,7/18/2016 3:09 +10180818,The 21-year-old building India's largest hotel network,http://www.bbc.co.uk/news/business-34078529,142,41,retube,9/7/2015 10:06 +10438330,List of books to master JavaScript Development,https://github.com/javascript-society/javascript-path,10,2,javinpaul,10/23/2015 13:13 +10863384,Tell HN: How to make the front page less boring in one easy step,,11,3,some_furry,1/8/2016 6:57 +10831138,Should My Kid Learn Mandarin Chinese?,http://blogs.wsj.com/speakeasy/2011/08/17/should-my-kid-learn-mandarin-chinese/?mod=wsj_share_twitter,3,1,jimsojim,1/3/2016 16:36 +10795165,Twitter is giving its users new powers to block internet trolls,http://www.telegraph.co.uk/technology/internet-security/12069560/Twitter-vows-to-wage-war-on-internet-trolls.html,17,10,Jerry2,12/26/2015 20:28 +12455664,Ask HN: What is the most frustrating part about working as a contractor?,,1,2,raykanani99,9/8/2016 18:20 +11597545,Google rolls out If This Then That support for its $200 OnHub router,http://arstechnica.com/gadgets/2016/04/googles-onhub-router-finally-gets-some-smart-home-features-via-ifttt/,193,189,shawndumas,4/29/2016 18:07 +10559387,How Apple Is Giving Design a Bad Name,http://www.fastcodesign.com/3053406/how-apple-is-giving-design-a-bad-name,188,137,andyjohnson0,11/13/2015 12:13 +10646224,The strange economics behind a diamonds worth,http://business.financialpost.com/news/mining/a-diamond-is-forever-demand-not-so-much-the-strange-economics-behind-what-well-pay-for-a-rock,7,1,ilamont,11/29/2015 21:48 +10651618,You pick YC Research's first three groups,,1,2,adamboulanger,11/30/2015 20:48 +11551432,Secret Court Takes Another Bite Out of the Fourth Amendment,https://www.eff.org/deeplinks/2016/04/secret-court-takes-another-bite-out-fourth-amendment,253,58,DiabloD3,4/22/2016 18:31 +10759315,EFF Launches Panopticlick 2.0,https://panopticlick.eff.org/#2,38,21,clumsysmurf,12/18/2015 16:39 +10382678,FourQ: Four-dimensional decompositions on a Q-curve over the Mersenne prime [pdf],http://eprint.iacr.org/2015/565.pdf,1,1,runesoerensen,10/13/2015 19:01 +11460079,Dropbox handler on Amiga [video],https://www.youtube.com/watch?v=Qy6lFjQFg-I&feature=youtu.be,41,6,erickhill,4/9/2016 5:29 +10823400,How T-Mobile wanted to change itself but ended up changing the wireless industry,http://www.bizjournals.com/seattle/blog/techflash/2015/12/how-bellevues-t-mobile-changed-the-industry.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+bizj_seattle+%28Seattle+-+Puget+Sound+Business+Journal%29,63,61,jseliger,1/1/2016 20:59 +10907749,Usenet Archives,http://yarchive.net/,57,19,Tomte,1/15/2016 7:15 +12250499,AWS Lambda Coding Session,https://cloudacademy.com/webinars/getting-started-aws-lambda-coding-session-16/,12,1,alexcasalboni,8/8/2016 20:02 +10332474,Beginning Clojure: Cursive,http://clojurescriptmadeeasy.com/blog/beginning-clojure-cursive.html,12,4,bostonOU,10/5/2015 15:34 +10185435,Why I'm walking away from one of the best jobs in academia,http://www.vox.com/2015/9/8/9261531/professor-quitting-job,101,78,jhonovich,9/8/2015 13:12 +11802666,Why You Will Marry the Wrong Person,http://www.nytimes.com/2016/05/29/opinion/sunday/why-you-will-marry-the-wrong-person.html?&version=Full&module=ArrowsNav&contentCollection=Opinion&action=keypress®ion=FixedLeft&pgtype=article,8,2,danielam,5/30/2016 19:27 +11522208,React Native Hyperlink,https://github.com/obipawan/hyperlink,1,1,obipawan,4/18/2016 18:46 +11907356,Glossary of Terms Used in Employee Performance Review and Appraisal,http://www.grosum.com/blogs-Glossary_of_terms_used_in_Employee_Performance_Management_process,2,1,the_bong_one,6/15/2016 5:40 +11891720,"PG on Twitter: JeromeOnwunalu I would suggest Clojure now, not CL.",https://twitter.com/paulg/status/728831131534024704,5,1,kristianp,6/13/2016 4:20 +10635864,Employee Equity (2014),http://blog.samaltman.com/employee-equity,88,74,williswee,11/27/2015 4:35 +12128951,"Skype finalizes its move to the cloud, ignores the elephant in the room",http://arstechnica.com/information-technology/2016/07/skype-finalizes-its-move-to-the-cloud-ignores-the-elephant-in-the-room/,155,125,runesoerensen,7/20/2016 13:49 +11477135,Apple pulls third-party Reddit clients for NSFW content,https://www.macstories.net/news/apple-pulls-third-party-reddit-clients-for-nsfw-content/,21,4,OberstKrueger,4/12/2016 3:53 +10185287,In Search of Chinese Science (2009),http://www.thenewatlantis.com/publications/in-search-of-chinese-science,27,8,fitzwatermellow,9/8/2015 12:35 +12486525,Sugar industry secretly paid for favorable Harvard research,https://www.statnews.com/2016/09/12/sugar-industry-harvard-research/?,222,100,pmcpinto,9/13/2016 8:58 +10444667,Ten Borders: One Refugee's Epic Escape from Syria,http://www.newyorker.com/magazine/2015/10/26/ten-borders,14,22,Thevet,10/24/2015 20:00 +10428086,The physiology of the freediver,http://m.nautil.us/issue/22/slow/the-impossible-physiology-of-the-free-diver,28,2,agarttha,10/21/2015 19:43 +11404695,Unwinding Ubers Most Efficient Service,https://medium.com/@buckhx/unwinding-uber-s-most-efficient-service-406413c5871d,11,1,robfig,4/1/2016 13:45 +11637774,Finding Similar Music Using Matrix Factorization,http://www.benfrederickson.com/matrix-factorization/,7,1,max_,5/5/2016 16:56 +12203854,Inline HTML editors vs. Page Builders: the growing void,https://www.rgeeditor.ninja/the+growing+void+between+inline+editors+and+page+builders,1,1,peterblay,8/1/2016 16:45 +10929171,Did European Court Just Outlaw Massive Monitoring of Communications in Europe?,https://cdt.org/blog/did-the-european-court-of-human-rights-just-outlaw-massive-monitoring-of-communications-in-europe/,262,40,ghosh,1/19/2016 6:38 +11748343,The Long Rescue: A mans search for his kidnapped children,http://harpers.org/archive/2016/06/the-long-rescue/,47,1,fitzwatermellow,5/22/2016 12:31 +11146258,State of the Haskell Ecosystem February 2016,http://www.haskellforall.com/2016/02/state-of-haskell-ecosystem-february.html?m=1,118,62,stefans,2/21/2016 20:15 +10622903,Ask HN: Why does Uber need ID to DELETE account?,,6,1,benten10,11/24/2015 19:21 +10706839,Firefox OS Pivot to Connected Devices,https://blog.mozilla.org/blog/2015/12/09/firefox-os-pivot-to-connected-devices/,14,1,philbo,12/9/2015 21:20 +10672660,Craig Federighi talks open source Swift and whats coming in version 3.0,http://arstechnica.com/apple/2015/12/craig-federighi-talks-open-source-swift-and-whats-coming-in-version-3-0/,3,2,davidbarker,12/3/2015 21:10 +11494799,ASCII Art Weather,http://wttr.in/london,336,103,hjc89,4/14/2016 7:03 +11020977,The Evolution of Docker,https://www.kentik.com/the-evolution-of-docker/,11,7,rdl,2/2/2016 17:45 +10615066,New Dell computer comes with a eDellRoot trusted root certificate,http://joenord.blogspot.com/2015/11/new-dell-computer-comes-with-edellroot.html,94,21,diafygi,11/23/2015 15:26 +11125100,Zenefits Scandal Highlights Perils of Hypergrowth at Startups,http://www.nytimes.com/2016/02/18/technology/zenefits-scandal-highlights-perils-of-hypergrowth-at-start-ups.html,211,211,tpatke,2/18/2016 11:42 +10721728,The Guinness Brewer Who Revolutionized Statistics,http://priceonomics.com/the-guinness-brewer-who-revolutionized-statistics/,3,1,ryan_j_naughton,12/12/2015 3:55 +10477359,"Extracts passwords from a KeePass 2.x database, directly from memory",https://github.com/denandz/KeeFarce,32,20,dsr12,10/30/2015 12:21 +10306070,Is anybody here using flow,,2,1,kparjaszewski,9/30/2015 18:32 +12376356,Microservices Dashboard,http://ordina-jworks.github.io/microservices-dashboard/0.2.0-SNAPSHOT/,2,1,BerislavLopac,8/28/2016 13:11 +10901912,A big-shot vc says we need inequality. What do economists say?,https://www.washingtonpost.com/news/wonk/wp/2016/01/14/what-silicon-valley-doesnt-understand-about-inequality/,6,2,jrowley,1/14/2016 15:26 +10265683,Functioning 'mechanical gears' seen in nature for the first time (2013),http://phys.org/news/2013-09-functioning-mechanical-gears-nature.html,31,10,zachrose,9/23/2015 15:40 +11979425,The Bears Who Came to Town and Would Not Go Away,http://www.outsideonline.com/2090866/bears-who-came-town-and-would-not-go-away,95,38,Thevet,6/26/2016 4:50 +12507751,Don't Let the Bastards Get You Down,https://medium.com/code-like-a-girl/dont-let-the-bastards-grind-you-down-42df24b347fa#.mtgoj66l2,2,2,DinahDavis,9/15/2016 16:56 +10942385,Why we sold to GM,http://www.side.cr/why-we-sold-to-gm/,4,1,ValG,1/20/2016 23:56 +11353170,To self-publish or not to self-publish,https://micaelwidell.com/to-self-publish-or-not-to-self-publish/,2,1,mwidell,3/24/2016 14:44 +12495222,Show HN: Bootstrap.io,https://www.producthunt.com/tech/bootstrap-io#comment-357503,11,5,sebastiank123,9/14/2016 9:29 +10272783,Introducing Brotli: a new compression algorithm for the internet,http://google-opensource.blogspot.com/2015/09/introducing-brotli-new-compression.html,1,1,rikelmens,9/24/2015 16:53 +12145545,"Reaction captures carbon, generates electricity, makes a cleaning product",http://arstechnica.com/science/2016/07/reaction-captures-carbon-generates-electricity-makes-a-cleaning-product/,2,2,tambourine_man,7/22/2016 18:18 +11592738,SpaceX undercut ULA rocket launch pricing by 40 percent: U.S. Air Force,http://www.reuters.com/article/us-space-spacex-launch-ula-idUSKCN0XP2T2,318,151,not_that_noob,4/28/2016 23:44 +10219203,New API for directory picking and drag-and-drop,https://jwatt.org/blog/2015/09/14/directory-picking-and-drag-and-drop,31,10,cpeterso,9/15/2015 6:09 +11234975,Autodesk CEO on Investing in the Future,http://techcrunch.com/2016/03/06/autodesk-ceo-carl-bass-on-investing-in-the-future,40,23,termostaatti,3/6/2016 18:57 +10377323,USB/IP Project,http://usbip.sourceforge.net/,152,59,mef,10/12/2015 22:42 +11943285,The Best Startups Resist Snacks (& Im Not Talking About Food),https://hunterwalk.com/2016/06/18/the-best-startups-resists-snacks-im-not-talking-about-food/,2,1,wslh,6/21/2016 3:31 +11683379,The Expression Problem and its solutions,http://eli.thegreenplace.net/2016/the-expression-problem-and-its-solutions/,73,49,ingve,5/12/2016 13:59 +11812997,Without Internet Technology http over sms,http://www.witapp.me/,28,22,alexintosh,6/1/2016 9:00 +10633965,Show HN: A command-line Battle.net authenticator,https://github.com/jleclanche/python-bna,2,1,scrollaway,11/26/2015 17:47 +12562331,Using Node.js and Raspberry Pi Zero to track download speeds and latency,https://github.com/ecaron/node-bandwidth-tester,3,4,ecaron,9/23/2016 4:33 +10404452,A Twisted Path to Equation-Free Prediction,https://www.quantamagazine.org/20151013-chaos-theory-and-ecology/,34,20,bpolania,10/17/2015 14:27 +11053226,Flint Officials Could Have Prevented Lead Crisis for $80 a Day,http://www.mintpressnews.com/flint-officials-could-have-prevented-lead-crisis-for-80-a-day/213462/,11,4,jayess,2/7/2016 15:47 +10770507,Ask HN: How do you manage your bookmarks?,,4,3,gghyslain,12/21/2015 10:43 +12152751,Britain just got its first concrete sign that Brexit will destroy the economy,http://www.independent.co.uk/news/uk/britain-just-got-its-first-concrete-sign-that-brexit-will-destroy-the-economy-a7152306.html,7,3,bootload,7/24/2016 8:47 +11779514,Gigster Fund Freelancers Benefit When the Company and Clients Do Well,https://gigster.com/fund,81,39,quackware,5/26/2016 16:57 +10762327,"Ask HN: Electrical Eng. PhD, Thinking of Moving to Programming Jobs. Worth It?",,6,11,ee_throwaway,12/19/2015 2:17 +11448671,"Apply HN: DAYS, One exceptional product a day",,3,3,oliv__,4/7/2016 16:43 +11461648,Aetna's CEO pays workers up to $500 to sleep,http://www.cnbc.com/2016/04/05/why-aetnas-ceo-pays-workers-up-to-500-to-sleep.html,80,69,davidf18,4/9/2016 15:24 +10583680,The Coke bottle was designed by a small team in a competition,http://qz.com/551682/the-coke-bottles-iconic-design-happened-by-sheer-chance/,46,18,jimsojim,11/17/2015 20:20 +11724778,Ask HN: Autism?,,13,4,mkra,5/18/2016 19:03 +12294192,Roomba creator responds to reports of poopocalypse: We see this a lot,https://www.theguardian.com/technology/2016/aug/15/roomba-robot-vacuum-poopocalypse-facebook-post,34,6,r721,8/15/2016 23:05 +10827768,End-of-buffer checks in decompressors,https://fgiesen.wordpress.com/2016/01/02/end-of-buffer-checks-in-decompressors/,51,3,jsnell,1/2/2016 20:32 +10625010,Ask HN: Should I build an airline booking system?,,6,11,espitia,11/25/2015 2:21 +10702289,I launched an app finally on Product Hunt,https://www.producthunt.com/tech/some-messenger,2,2,andrewatsome,12/9/2015 6:46 +10897704,DNA seen through the eyes of a coder (2002),http://ds9a.nl/amazing-dna/,2,1,netgusto,1/13/2016 21:34 +10669182,ReactNative vs. NativeScript A user's perspective,https://prezi.com/9yuu310wcyyx/reactnative-vs-nativescript/?utm_campaign=share&utm_medium=copy,3,1,sfeather,12/3/2015 12:16 +12139151,Wave Computing rolls out plans for fast deep-learning computers,http://siliconangle.com/blog/2016/07/21/wave-computing-rolls-out-plans-for-fast-deep-learning-computers/,2,1,robh56,7/21/2016 18:57 +11269285,"Amazon Echo, home alone with NPR on, got confused and hijacked a thermostat",http://qz.com/637326/amazon-echo-home-alone-with-npr-on-got-confused-and-hijacked-a-thermostat,399,144,potshot,3/11/2016 20:33 +11598120,Microsoft has created its own IFTTT tool called Flow,http://www.theverge.com/2016/4/29/11535232/microsoft-flow-ifttt-competitor,6,2,alexkavon,4/29/2016 19:23 +12243464,Infinity Skirt,https://www.youtube.com/watch?v=Zo3SG2iNSXg,4,1,aw3c2,8/7/2016 20:16 +11998832,"Hacking suspect could kill himself if extradited to US, court told",https://www.theguardian.com/uk-news/2016/jun/28/lauri-love-hacking-trial-extradition-united-states-nasa,2,1,aestetix,6/29/2016 1:07 +11114387,Judge: Apple Must Help Us Hack San Bernardino Killer's Phone,http://hosted.ap.org/dynamic/stories/U/US_CALIFORNIA_SHOOTINGS?SITE=AP,10,2,tshtf,2/17/2016 1:01 +11086642,Arresting development?: no arrests or charges for cybercrime events in the UK,https://www.lightbluetouchpaper.org/2016/02/12/arresting-development/,3,1,etiam,2/12/2016 12:02 +10211331,Ask HN: Great nontech book that you read recently?,,11,34,thunga,9/13/2015 13:31 +11137140,Tell the White House to stop asking for encryption workarounds,https://petitions.whitehouse.gov/petition/apple-privacy-petition,18,1,ryewonk,2/19/2016 22:23 +10416711,"LinkedIn jumps into freelancing in SF, but is it too late?",http://thenextweb.com/insider/2015/10/19/linkedin-goes-gig/,2,1,pavornyoh,10/20/2015 0:21 +11573890,"Show HN: Daily condensed MLB games, delivered direct to your inbox",http://www.dailybaseballupdate.com,4,3,theodorewiles,4/26/2016 17:33 +10711111,Perl 6 Pod,https://perl6advent.wordpress.com/2015/12/10/day-10-perl-6-pod/,2,1,kamaal,12/10/2015 15:37 +11646225,Going to TechCrunch Disrupt NY This Weekend? Find Your APIs with API Harmony,http://www.apiful.io/intro/2016/05/06/api-harmony-hackathon.html,4,1,allthingsapi,5/6/2016 19:35 +12375402,Ask HN: Is there space for a technology matchmaker?,,2,5,meticulouschris,8/28/2016 5:19 +11721486,Show HN: Shelfjoy tinder to find your book love,http://www.shelfjoy.com/,2,1,chinchang,5/18/2016 12:49 +12251546,Todays Smooth-Running Horses May Owe Their Genetics to the Vikings,http://www.smithsonianmag.com/science-nature/todays-smooth-running-horses-may-owe-their-genetics-vikings-180960055/?no-ist,51,5,Mz,8/8/2016 23:35 +12048267,Brexit has put the UK in an impossible position. This Venn diagram explains why,http://www.vox.com/2016/7/5/12098156/brexit-eu-britain-venn-diagram,3,6,neverminder,7/7/2016 9:07 +10628740,Ask HN: Which antivirus are you using on Windows hosts?,,6,10,vive-la-liberte,11/25/2015 18:40 +11081656,"Subuser turns Docker containers into normal Linux programs, limiting privileges",http://subuser.org/,224,72,bpierre,2/11/2016 17:48 +11134019,Set Up a Secure Node.js Web Application,https://nodeswat.com/blog/setting-up-a-secure-node-js-web-application/,1,1,scorchio,2/19/2016 15:35 +12332184,"Color postcards of Istanbul, circa 1890",http://mashable.com/2016/08/20/istanbul-photochrom/#CinpjVvM78qK,3,2,enraged_camel,8/21/2016 18:56 +10484103,Electronically signable contract that lives in a single PHP file,http://vileworks.com/contract/generator/,1,1,Artemis2,10/31/2015 20:36 +12207756,Siri plays dumb about documentary Hillary's America,https://twitter.com/bakedalaska/status/760270309702246400,1,1,cpr,8/2/2016 3:55 +11125106,Pilot posts detailed MS Flight Sim video of how to land Boeing 737,http://www.theregister.co.uk/2016/02/18/boeing_737_instructional_video/,75,28,J-dawg,2/18/2016 11:44 +11957906,The Beauty of Laplace's Equation,http://www.wired.com/2016/06/laplaces-equation-everywhere/,1,1,sonabinu,6/22/2016 23:38 +12145603,Apple Watch sales are down 55%,http://money.cnn.com/2016/07/22/news/companies/apple-watch-smartwatch-sales-report/index.html,4,1,amaks,7/22/2016 18:25 +10287922,The Newly Discovered Tablet V of the Epic of Gilgamesh,http://etc.ancient.eu/2015/09/24/giglamesh-enkidu-humbaba-cedar-forest-newest-discovered-tablet-v-epic/,174,28,diodorus,9/27/2015 20:59 +10917365,Ask HN: JavaScript code explainer?,,1,2,codininj,1/16/2016 23:24 +11003670,Help make up a better domain for the app,,3,7,alexander-g,1/30/2016 20:49 +12047847,The Problem with Nice-To-Have Startups,http://www.markevans.ca/2016/07/05/nice-to-have/,2,1,buckpost,7/7/2016 6:47 +10924240,Show HN: Lyp a package manager for lilypond,https://github.com/noteflakes/lyp,2,1,ciconia,1/18/2016 13:29 +11483172,The Gravitational Lens and Communications,http://www.centauri-dreams.org/?p=10123,2,1,curtis,4/12/2016 20:15 +10360480,Ask HN: Which password manager do you recommend?,,1,6,lorenzhs,10/9/2015 15:03 +11086823,The Bin Laden Tapes (audio),http://www.bbc.co.uk/programmes/b065sx7b,1,1,DanBC,2/12/2016 12:50 +10375213,Software by category:Market share and predictions,http://blog.elioplus.com/?p=232,1,1,christosm,10/12/2015 15:42 +10446967,Is your website doing his job?: Get your Sections Examine report,https://sections.io/examine/,2,2,oumdadzn,10/25/2015 14:40 +11525874,How I turned my resume into a bot. (And how you can too),https://medium.com/life-learning/how-i-turned-my-resume-into-a-bot-and-how-you-can-too-f03847352baa#.j21bvo7ai,3,1,nitin_flanker,4/19/2016 9:54 +10796320,Robert Nozick: Why Do Intellectuals Oppose Capitalism? (1998) [pdf],http://ksf.amu.edu.pl/wdioc.pdf,3,2,vezzy-fnord,12/27/2015 3:43 +11040995,Denmark confirms US sent rendition flight for Snowden,http://www.thelocal.dk/20160205/denmark-confirms-us-sent-rendition-flight-for-snowden,342,303,flexie,2/5/2016 12:40 +12520674,Google HTML/CSS Style Guide Omit Optional Tags,https://google.github.io/styleguide/htmlcssguide.xml?showone=Optional_Tags#Optional_Tags,473,282,franze,9/17/2016 14:42 +11722573,The TSA is a waste of money that doesn't save lives and might actually cost them,http://www.vox.com/2016/5/17/11687014/tsa-against-airport-security,258,254,paulpauper,5/18/2016 15:21 +11282997,The Build a SAAS App with Flask Course Is Getting a Complete Makeover,http://nickjanetakis.com/blog/build-a-saas-app-with-flask-is-getting-a-complete-make-over-soon,47,8,nickjj,3/14/2016 14:16 +10977262,Drone Racing League Racing Through an Empty Miami Dolphins Stadium,http://qz.com/602230/theres-now-a-drone-racing-league-that-feels-like-pod-racing-from-star-wars/,11,1,dpflan,1/27/2016 0:06 +11296961,LastPass lunaches two-factor authenticator app,https://lastpass.com/auth/,5,2,whocanfly,3/16/2016 13:11 +10644743,Cutting the Lights: Vulnerabilities in a Billboard Lighting System,http://randywestergren.com/cutting-the-lights-vulnerabilities-in-a-billboard-lighting-system/,45,5,rwestergren,11/29/2015 15:06 +11654774,The Relativity of Wrong by Isaac Asimov (1989),http://chem.tufts.edu/AnswersInScience/RelativityofWrong.htm,99,60,maverick_iceman,5/8/2016 17:18 +12245932,Video of Valley Mogul Kicking His Girlfriend 117 Times Could Send Him to Jail,http://www.thedailybeast.com/articles/2016/08/08/video-of-silicon-valley-mogul-kicking-his-girlfriend-117-times-could-send-him-to-jail.html,94,73,nreece,8/8/2016 7:08 +11020733,Building a Cognitive App with IBM Watson Concept Insights,http://www.primaryobjects.com/2016/02/01/ibm-watson-building-a-cognitive-app/,15,1,liviosoares,2/2/2016 17:13 +11458628,How a Cashless Society Could Embolden Big Brother,http://www.theatlantic.com/technology/archive/2016/04/cashless-society/477411/?single_page=true,286,130,kafkaesq,4/8/2016 22:35 +10376517,Everything is broken (2014),https://medium.com/message/everything-is-broken-81e5f33a24e1,10,3,grey-area,10/12/2015 19:28 +11343895,"Show HN: Duplicacy, cross-platform cloud backup based on Lock-Free Deduplication",https://github.com/gilbertchen/duplicacy-beta/blob/master/README.md,2,5,acrosync,3/23/2016 12:45 +10866136,"The New York Public Librarys release of 180,000 copyright-free images",http://qz.com/587894/the-most-fascinating-images-from-the-new-york-public-librarys-release-of-180000-copyright-free-materials/,72,3,callumlocke,1/8/2016 16:41 +10446744,"Ask HN: Those who develop desktop apps, what is your toolset?",,8,12,vijayr,10/25/2015 12:42 +12533344,A German grocery chain that crippled its UK rivals is about to invade the U,http://www.businessinsider.com/lidls-expansion-plans-in-the-us-2016-9,2,1,Mz,9/19/2016 18:03 +10709730,Untangling the Tale of Ada Lovelace,http://blog.stephenwolfram.com/2015/12/untangling-the-tale-of-ada-lovelace/,157,35,lispython,12/10/2015 9:27 +10488841,Twitter Spam on Behalf of Bleacher Report (Time Warner),,1,1,tod222,11/1/2015 22:59 +10909357,R coming to Visual Studio,http://blog.revolutionanalytics.com/2016/01/r-coming-to-visual-studio.html,24,1,Hansi,1/15/2016 14:11 +11436284,Macminicolo merging with MacStadium,https://macminicolo.net/blog/files/Some-changes-here-at-Macminicolo.html,5,1,micahgoulart,4/6/2016 2:55 +12063627,Silicon Valley-Driven Hype for Self-Driving Cars,http://www.nytimes.com/2016/07/10/opinion/sunday/silicon-valley-driven-hype-for-self-driving-cars.html,73,52,dbcooper,7/9/2016 22:24 +12280028,The Ethereum Classic Declaration of Independence,https://ethereumclassic.github.io/assets/ETC_Declaration_of_Independence.pdf,72,71,ETH_Classic,8/13/2016 2:56 +11923042,Making Software with Casual Intelligence why is software still so dumb?,https://medium.com/@evanpro/making-software-with-casual-intelligence-867fd842134#.o4yvjqpt9,4,1,mattfogel,6/17/2016 15:06 +10292240,Carly Fiorina endorses waterboarding 'to get information that was necessary',http://www.theguardian.com/us-news/2015/sep/28/carly-fiorina-endorses-waterboarding,4,1,cryoshon,9/28/2015 18:54 +10849608,Learnings from building reread.io,https://medium.com/jolly-good-notes/learnings-from-building-reread-io-46f57871e124#.p95p10kgd,48,19,winstonyw,1/6/2016 10:04 +10230937,Lower Cost S3 Storage Option and Glacier Price Reduction,https://aws.amazon.com/blogs/aws/aws-storage-update-new-lower-cost-s3-storage-option-glacier-price-reduction/,170,70,jeffbarr,9/17/2015 0:49 +10627884,A Car Dealers Wont Sell: Its Electric,http://www.nytimes.com/2015/12/01/science/electric-car-auto-dealers.html?smprod=nytcore-iphone&smid=nytcore-iphone-share,2,1,jasonjei,11/25/2015 16:18 +10233533,A former Microsoft employee is suing over sex discrimination,http://www.businessinsider.com/microsoft-sued-over-sex-discrimination-2015-9,32,14,CurtHagenlocher,9/17/2015 14:29 +11903356,Order-Revealing Encryption,https://crypto.stanford.edu/ore/,74,17,henrycg,6/14/2016 16:56 +11089908,"Do you really need 10,000 steps a day?",https://blog.cardiogr.am/2016/02/12/do-you-really-need-10000-steps-a-day-2/,403,171,brandonb,2/12/2016 19:42 +11525430,A new way to get electricity from magnetism,https://www.sciencedaily.com/releases/2016/04/160418120049.htm,3,4,jharohit,4/19/2016 7:37 +11346995,What I Learned Selling a Software Business,https://training.kalzumeus.com/newsletters/archive/selling_software_business?__s=tignezjjbfsnfxsuspg3,2,1,theunixbeard,3/23/2016 18:28 +10672551,USA Today Web Guide: Hotsites (2002),http://usatoday30.usatoday.com/tech/webguide/hotsites/2002-07-22-hotsites.htm,2,2,lips,12/3/2015 20:53 +11939080,Efficient way to search a stream for a string,http://stackoverflow.com/questions/846175/efficient-way-to-search-a-stream-for-a-string,7,2,wslh,6/20/2016 16:28 +12462391,Show HN: Bottr Bot Framework for Node.js,http://bottr.co,5,4,jscampbell05,9/9/2016 14:16 +10268354,"Hackers Took Fingerprints of 5.6M U.S. Workers, Government Says",http://www.nytimes.com/2015/09/24/world/asia/hackers-took-fingerprints-of-5-6-million-us-workers-government-says.html?_r=0,10,1,linkydinkandyou,9/23/2015 21:26 +10486850,Removal of Stripe.com (April),http://www.twitchalerts.com/blog/removal-of-stripe,1,3,kmfrk,11/1/2015 16:20 +11216210,Why passive income doesnt work,http://yanngirard.typepad.com/yanns_blog/2016/02/the-problem-with-passive-income.html,3,2,yannpg,3/3/2016 11:35 +10963252,What a ball pen tells us about Chinas manufacturing weakness,http://www.ejinsight.com/20160121-what-ball-pen-tells-us-about-china-s-manufacturing-weakness/,29,24,jseliger,1/24/2016 17:57 +12122711,Complaint Against the Administrator of the 401 (k) Plan and Group Health Plan,https://dl.dropboxusercontent.com/u/162863718/SMAComplaint/Complaint.html,1,2,jsprogrammer,7/19/2016 16:34 +10212582,How to Write a Git Commit Message,http://chris.beams.io/posts/git-commit/,202,89,pwg,9/13/2015 19:52 +10941320,Assembly Is Too High Level: SIB Doubles,http://xlogicx.net/?p=456,62,16,ingve,1/20/2016 21:02 +11044230,Fix your hunchback posture,https://www.youtube.com/watch?v=FTV6UCh-yhs,11,1,fantastick,2/5/2016 20:07 +10986321,Overpass Web Front from Red Hat,http://overpassfont.org/,11,2,whalesalad,1/28/2016 4:39 +12417779,"Tesla (TSLA) CEO Musk 'Most Deceptive CEO I've Ever Seen,'",,4,1,seesomesense,9/3/2016 4:45 +10595730,Forth Day 2015,https://svfig.github.io/,39,2,wkoszek,11/19/2015 16:39 +12193413,The law depends on compute power,https://medium.com/@jeremyjkun/the-law-depends-on-compute-power-29095fd58354,91,98,Labo333,7/30/2016 15:39 +11652051,JavaScript Promises: Plain and Simple,https://coligo.io/javascript-promises-plain-simple/,4,1,dacm,5/8/2016 0:33 +10369608,Show HN: Micro web framework for low-resource systems live example on ESP8266,http://www.ureq.solusipse.net,11,3,solusipse,10/11/2015 15:23 +11542932,Scala native (comming soon),http://www.scala-native.org/,4,5,BafS,4/21/2016 15:37 +10408354,Sequoia's Michael Moritz just eviscerated the 'subprime unicorn' boom in tech,http://uk.businessinsider.com/sequoia-capitals-michael-moritz-on-subprime-unicorns-2015-10,10,1,mdariani,10/18/2015 14:46 +11183836,"Oden: experimental, statically-typed functional language, built for Go ecosystem",http://oden-lang.org/,127,80,jaytaylor,2/26/2016 20:06 +11473327,Saving 13M Computational Minutes per Day with Flame Graphs,http://techblog.netflix.com/2016/04/saving-13-million-computational-minutes.html,88,21,mspier,4/11/2016 17:22 +12152649,OpenBSD Ports - Integrating Third Party Applications [pdf],http://jggimi.homeip.net/semibug.pdf,43,4,fcambus,7/24/2016 7:51 +11756315,Ask HN: What does your SaaS do and how many paying customers do you have?,,1,2,uptown,5/23/2016 19:41 +10220220,"PHP 5.4 reaches End-of-Life, no further security updates",http://php.net/supported-versions.php#layout-content,1,1,ck2,9/15/2015 12:32 +10338213,The discovery of artemisinin (qinghaosu) and gifts from Chinese medicine (2011),http://www.nature.com/nm/journal/v17/n10/full/nm.2471.html,24,5,sohkamyung,10/6/2015 11:59 +12546438,Confessions of a Necromancer,http://hintjens.com/blog:125,6,3,jen20,9/21/2016 8:40 +10454449,A Superconductor That Works at -70 °C,http://www.technologyreview.com/view/542856/the-superconductor-that-works-at-earth-temperature/,122,37,jonbaer,10/26/2015 21:01 +11664732,UserVoice Security Incident Notification,https://community.uservoice.com/blog/uservoice-security-incident-notification/,8,13,RossP,5/10/2016 2:03 +12546363,Ask HN: is there a cross-device calendar with tasks outside of Outlook and iOS?,,2,1,ybalkind,9/21/2016 8:26 +12035568,Building a BitTorrent client from scratch in C#,https://cheatdeath.github.io/research-bittorrent-doc/,509,86,nxzero,7/5/2016 11:00 +11286412,Halolife (YC W16) Brings Transparency and Ease to the Process of Planning a Funeral,https://blog.ycombinator.com/halolife-yc-w16-brings-transparency-and-ease-to-the-process-of-planning-a-funeral,11,1,justin,3/14/2016 23:38 +11855946,Silicon Valley Has a Problem Problem,https://medium.com/life-learning/silicon-valley-has-a-problem-problem-b34437a57e99#.kxehhns7q,11,3,yusufp,6/7/2016 17:18 +12245697,Ask HN: Going to SF next week. Any good conferences there?,,1,3,richerlariviere,8/8/2016 5:41 +10856108,?fs: Stores your data in ?,https://github.com/philipl/pifs,2,1,chenzhekl,1/7/2016 5:07 +10489687,Introduction to Ada and SPARK (2009) [pdf],https://www.cse.msu.edu/~cse814/Lectures/09_spark_intro.pdf,47,37,vezzy-fnord,11/2/2015 2:48 +11134069,Skinny People Rarely Diet,http://www.theatlantic.com/health/archive/2016/02/why-skinny-people-dont-diet/463419/?single_page=true,12,10,goodJobWalrus,2/19/2016 15:40 +10500814,Have You Seen This Cache?,https://push.cx/2015/have-you-seen-this-cache,4,1,vezzy-fnord,11/3/2015 17:01 +12556160,Ask HN: What are the must-read books about economics/finance?,,442,266,curiousgal,9/22/2016 11:52 +10628963,"'Meet Peter, your AI-based lawyer'",https://hirepeter.com/,2,2,anigbrowl,11/25/2015 19:15 +10424975,Platform and tools best for a social networking website,,1,3,sinapurapu,10/21/2015 12:34 +10647318,The Irony of Writing Online About Digital Preservation,http://www.theatlantic.com/technology/archive/2015/11/the-irony-of-writing-about-digital-preservation/416184/?single_page=true,6,1,diodorus,11/30/2015 2:46 +10254521,From Syria to Sudan: How do you count the dead?,http://www.theguardian.com/global-development-professionals-network/2015/sep/08/from-syria-to-sudan-how-do-you-count-the-dead?repost=hn,10,1,DanBC,9/21/2015 19:20 +11085078,Barcode attack technique,http://en.wooyun.io/2016/01/28/Barcode-attack-technique.html,125,28,voltagex_,2/12/2016 3:20 +12082078,Ask HN: What's your favorite way to save money?,,164,183,jmaccabee,7/12/2016 20:30 +10720069,Mysterious Detour While Driving? It Could Be Due to the Curvature of the Earth,http://www.travelandleisure.com/articles/gerco-de-ruijter-grid-corrections-highways-driving-wichita,40,12,jackgavigan,12/11/2015 21:10 +11112473,Japanese firm to open worlds first robot-run farm,http://www.theguardian.com/environment/2016/feb/01/japanese-firm-to-open-worlds-first-robot-run-farm,171,97,evo_9,2/16/2016 19:29 +11556213,ELF Shared Library Injection Forensics,http://backtrace.io/blog/blog/2016/04/22/elf-shared-library-injection-forensics/,46,2,luu,4/23/2016 16:35 +10999531,"Beautiful, user-friendly analytics for your YouTube channel",https://rocketgraph.com/reports/30-youtube-channelytics,1,1,dnoparavandis,1/29/2016 23:55 +12398239,Why do UDP packets get dropped?,http://jvns.ca/blog/2016/08/24/find-out-where-youre-dropping-packets/,94,74,sebg,8/31/2016 13:47 +11006208,"Switzerland will vote on having a national wage of £1,700 a month",http://www.independent.co.uk/news/world/europe/switzerland-will-be-the-first-country-in-the-world-to-vote-on-having-a-national-wage-of-1700-a-month-a6843666.html,163,170,gipkot,1/31/2016 12:35 +11333822,Facebook explains that it is totally not doing racial profiling,http://arstechnica.com/information-technology/2016/03/facebook-explains-that-it-is-totally-not-doing-racial-profiling/,4,1,msabalau,3/22/2016 1:45 +12556432,Ask HN: When to ask for my first raise?,,7,3,raiseta,9/22/2016 12:50 +11230918,Why You Should Never Sleep with a VC on the First Date,https://medium.com/@lilibalfour/why-you-should-never-sleep-with-a-vc-on-the-first-date-8ab91cab4234#.b8dkatigg,4,1,victorbojica,3/5/2016 20:26 +11404035,Dines AI System Had a Major Freak Out. All Pictures Were Changed to Animals,https://medium.com/@dinewithco/sorry-dine-s-ai-system-had-a-major-freak-out-all-pictures-were-changed-to-cute-animals-8df2fa0b0570#.2ttfjaoup,1,1,kamijovi,4/1/2016 11:19 +10733388,Stephen Wolfram Aims to Democratize His Software,http://bits.blogs.nytimes.com/2015/12/14/stephen-wolfram-seeks-to-democratize-his-software/,4,1,prostoalex,12/14/2015 20:00 +11861251,Show HN: Memleax detects memory leak of a running process,https://github.com/WuBingzheng/memleax,42,9,hellowub,6/8/2016 10:29 +12004903,Convert your VIM text editor into powerful IDE,https://github.com/xmementoit/vim-ide,3,1,lahdo,6/29/2016 21:18 +11483266,Show HN: Wit.ai Bot Engine,https://wit.ai/blog/2016/04/12/bot-engine,5,1,ar7hur,4/12/2016 20:26 +11981580,Brexit: Wave of racial abuse follows,http://www.independent.co.uk/news/uk/home-news/brexit-eu-referendum-racial-racism-abuse-hate-crime-reported-latest-leave-immigration-a7104191.html,18,2,alphydan,6/26/2016 17:08 +12289772,Stubs a cross-platform dynamic linking mechanism used by Tcl,https://tcl.wiki/285,2,3,networked,8/15/2016 11:41 +11121446,Ask HN: Too many ideas. How do you decide what to work on next?,,13,10,sharemywin,2/17/2016 21:12 +12235129,Companies headed by introverts performed better in a study of thousands of CEOs,http://qz.com/748741/companies-headed-by-introverts-performed-better-in-a-study-of-thousands-of-ceos/,15,4,lnguyen,8/5/2016 19:28 +10332160,A Guide to Website Security for Non-Experts,https://paragonie.com/blog/2015/06/guide-securing-your-business-s-online-presence-for-non-experts,2,1,paragon_init,10/5/2015 14:52 +10553534,Virtual Reality Journalism,https://towcenter.gitbooks.io/virtual-reality-journalism/content/,8,5,johncoogan,11/12/2015 15:07 +10287084,You Are Not Alone Across Time: Using Sophocles to Treat PTSD (2014),http://harpers.org/archive/2014/10/you-are-not-alone-across-time/?single=1,1,1,diodorus,9/27/2015 16:50 +11026412,[CSS] Yellow Fade Technique,http://kamranahmed.info/blog/2016/01/30/yellow-fade-technique-in-css/,3,1,kamranahmed_se,2/3/2016 13:52 +10546465,Visualising Networks Part 1: A Critique,http://yro.ch/visualising-networks-part-1-a-critique/,15,2,yrochat,11/11/2015 13:09 +12242419,Sound project management practice to make developers fix bugs off the clock?,http://pm.stackexchange.com/questions/18771/is-it-sound-project-management-practice-to-make-software-engineers-fix-bugs-off,2,2,chrisbennet,8/7/2016 15:58 +12181168,Ask HN: Rails 4 or Rails 5,,2,2,webbrahmin,7/28/2016 16:16 +10203816,Informative YouTube channels,https://medium.com/@bibblio_org/60-youtube-channels-that-will-make-you-smarter-44d8315c2548,184,69,sandersaar,9/11/2015 14:24 +10524717,The European Commission is preparing an attack on the hyperlink,https://juliareda.eu/2015/11/ancillary-copyright-2-0-the-european-commission-is-preparing-a-frontal-attack-on-the-hyperlink/,421,192,jsnathan,11/7/2015 13:26 +10709917,"LinkedChat Live Chat for Facebook, Telegram and Slack",https://linked.chat,3,1,stasfeldman,12/10/2015 10:31 +11538799,Forget MillennialsWhy You Should Hire Someone Over 55,http://www.fastcompany.com/3058869/forget-millennials-why-you-should-hire-someone-over-55,18,11,mwielbut,4/21/2016 0:30 +10546444,Things Not to Do in PHP 7,https://kinsta.com/blog/10-things-not-to-do-in-php-7/,1,1,tomzur,11/11/2015 13:04 +11640231,Facebook bends the rules of audience engagement to its advantage,http://www.nytimes.com/2016/05/06/business/facebook-bends-the-rules-of-audience-engagement-to-its-advantage.html?src=busln&_r=0,114,114,hvo,5/5/2016 22:41 +11574825,Ask HNs: Who would you hire?,,3,4,samfisher83,4/26/2016 19:29 +11293871,A Pamphlet against R,https://panicz.github.io/pamphlet/,12,14,ycmbntrthrwaway,3/15/2016 23:36 +10208779,"Developing with Docker at 500px, Part One",http://developers.500px.com/2015/09/10/developing-with-docker-at-500px-pt1.html,10,1,pliu,9/12/2015 18:10 +10968972,Ask HN: Why aren't there partial static generators?,,1,1,hanniabu,1/25/2016 18:41 +11994185,"How I Sold My Company to Twitter, Went to Facebook, and Screwed My Co-Founders",https://backchannel.com/tuesday-april-5-2011-6c783a5dce42#.ahw8xoran,10,9,tim_sw,6/28/2016 14:47 +12215002,Bitcoin Sinks After Hackers Steal $65M from Exchange,http://www.bloomberg.com/news/articles/2016-08-03/bitcoin-plunges-after-hackers-breach-h-k-exchange-steal-coins,77,53,ucha,8/3/2016 1:52 +12069662,The Spanish cooking oil scandal (2001),https://www.theguardian.com/education/2001/aug/25/research.highereducation,111,65,mafro,7/11/2016 8:33 +11712464,HTML5 by Default Draft Proposal,https://docs.google.com/presentation/d/106_KLNJfwb9L-1hVVa4i29aw1YXUy9qFX-Ye4kvJj-4/edit#slide=id.p,66,69,synthmeat,5/17/2016 10:38 +12247998,Quadrooter: New Vulnerabilities Affecting Over 900M Android Devices [pdf],https://www.checkpoint.com/downloads/resources/quadRooter-vulnerability-research-report.pdf,175,124,ge0rg,8/8/2016 14:25 +11596255,Devuan 1.0 (systemd-less Debian fork) hits beta,https://beta.devuan.org/,5,1,jff,4/29/2016 15:20 +11743203,Ask HN: Any advice or resources for socially responsible investing?,,11,5,khyur,5/21/2016 4:26 +12091455,The future of car ownership that no one is talking about,https://techcrunch.com/2016/07/13/the-future-of-car-ownership-that-no-one-is-talking-about/,1,1,intrasight,7/14/2016 3:26 +10338316,How Two Guys Lost God and Found $40M,http://www.bloomberg.com/news/features/2015-10-06/how-two-guys-lost-god-and-found-40-million,64,75,finid,10/6/2015 12:22 +10529732,Ask HN: What do you think of open office floor plans?,,3,8,att159,11/8/2015 20:26 +12499358,A TensorFlow Implementation of DeepMind's WaveNet Paper,https://github.com/ibab/tensorflow-wavenet,184,30,ot,9/14/2016 17:37 +11243569,Learning Physical Intuition of Block Towers by Example,http://arxiv.org/abs/1603.01312,39,3,mrdrozdov,3/8/2016 4:39 +10832352,Tech Startups Face Fresh Pressure on Valuations,http://www.wsj.com/articles/tech-startups-face-fresh-pressure-on-valuations-1451817991?=e2fb,108,83,prostoalex,1/3/2016 20:59 +11020910,The #1 Dietary Risk Factor Is Not Eating Enough Fruit,http://nutritionfacts.org/2016/02/02/the-number-one-global-diet-risk/,1,1,jdnier,2/2/2016 17:36 +12097489,Multiple Bugs in OpenBSD Kernel,http://marc.info/?l=oss-security&m=146853062403622&w=2,199,63,hassel,7/14/2016 21:54 +12460956,Recreating Our Galaxy in a Supercomputer,http://www.caltech.edu/news/recreating-our-galaxy-supercomputer-51995,173,66,chmaynard,9/9/2016 10:48 +11488679,Lawmakers Say Redacted Pages of 9/11 Report Show Saudi Official Met Hijackers,http://losangeles.cbslocal.com/2016/04/11/60-minutes-lawmakers-say-redacted-pages-of-911-report-shows-saudi-official-met-hijackers-in-la/,18,15,rfreytag,4/13/2016 14:56 +11931566,"Basic Income Is Already Here, It's Just Called Digital Nomadism",http://us1.campaign-archive1.com/?u=78cbbb7f2882629a5157fa593&id=32aba95c65,6,3,nyodeneD,6/19/2016 2:27 +10889406,Reddit censorship: 5000+ comments deleted in one post,,12,4,olegkikin,1/12/2016 18:45 +11732205,Introducing Startup FDA: Demistifying FDA submissions through Open Source,http://themacro.com/articles/2016/05/fda-advice-for-startups/,59,23,kirillzubovsky,5/19/2016 18:01 +12081607,How to Grow as a New Software Developer,http://appendto.com/2016/07/how-to-grow-as-a-new-software-developer/,4,1,kpennell,7/12/2016 19:15 +10482585,The Dotty experimental compiler for Scala now bootstraps,http://www.infoq.com/news/2015/10/dotty-scala-bootstraps,75,21,_sunshine_,10/31/2015 13:35 +11745837,Security flaw in Hotmail permits anybody to login with the password 'eh' (1999),https://en.wikipedia.org/wiki/Outlook.com#Security_issues,4,1,ghgr,5/21/2016 19:29 +12031089,Galileo RCS Installing the entire espionage platform by Hacker Team,http://hyperionbristol.co.uk/galileo-rcs-installing-the-entire-espionage-platform/,1,1,ameesdotme,7/4/2016 14:49 +12154397,CVE-2016-6213 was reported three years ago by OpenVZ developer,https://bugzilla.redhat.com/show_bug.cgi?id=1356471#c6,43,14,ligurio,7/24/2016 19:16 +10294156,"Alex King, an original Wordpress developer, has died",https://poststatus.com/alex-king/,339,37,a5seo,9/29/2015 0:49 +12242011,Wire Wire: A West African Cyber Threat,https://www.secureworks.com/research/wire-wire-a-west-african-cyber-threat,28,4,chewymouse,8/7/2016 13:24 +10798985,The Bonsai Kid,http://craftsmanship.net/the-bonsai-kid/,159,29,hownottowrite,12/27/2015 22:27 +10246063,Flexbox Cheatsheet Cheatsheet,http://jonibologna.com/flexbox-cheatsheet/,4,1,_aarti,9/20/2015 0:24 +12331225,Mobile eCommerce: Product Details,https://uxplanet.org/mobile-ecommerce-product-details-28feba377a55#.9exz2hdq3,99,28,babich,8/21/2016 15:28 +12298202,"Jack of all trades, master of none. Why Bootstrap Admin Templates suck?",https://medium.com/@lukaszholeczek/jack-of-all-trades-master-of-none-5ea53ef8a1f#.79erdmt3v,20,10,mrholek,8/16/2016 15:47 +12258263,Validating Email Addresses with a Regex? Do Yourself a Favor and Dont,http://blog.onyxbits.de/validating-email-addresses-with-a-regex-do-yourself-a-favor-and-dont-391/,2,1,olalonde,8/9/2016 22:52 +11150164,Why FreeBSD?,http://www.aikchar.me/blog/why-freebsd.html,4,1,tachion,2/22/2016 11:47 +11108592,Which countries are mentioned the most on Hacker News?,http://www.bemmu.com/which-countries-are-mentioned-the-most-on-hacker-news,171,115,bemmu,2/16/2016 8:40 +11566231,Ask HN: Which tools are used for remote pair programming?,,2,1,prateekbhatt,4/25/2016 18:30 +12311530,The Public Suffix List,https://publicsuffix.org,79,40,dan1234,8/18/2016 10:52 +11307809,"Twitter kills TweetDeck for Windows, automates log-ins for TweetDeck users",http://techcrunch.com/2016/03/17/twitter-kills-tweetdeck-for-windows-automates-logins-for-tweetdeck-users/,80,47,protomyth,3/17/2016 21:35 +10329599,ImGui: Immediate Mode GUI for C++ with minimal dependencies,https://github.com/ocornut/imgui,3,1,geronimogarcia,10/5/2015 1:51 +10909520,Use nullptr instead of NULL from now on,http://cpphints.com/hints/44,3,1,DmitryNovikov,1/15/2016 14:38 +10484527,Pharmacist at center of Valeant scandal accuses drugmaker of 'massive fraud',http://www.latimes.com/business/la-fi-1101-valeant-pharmacy-20151101-story.html,45,54,001sky,10/31/2015 22:46 +10374088,Show HN: GGIF audio sync GIF,http://ggif.co/cl8,3,1,th-ai,10/12/2015 12:38 +10817097,Tell HN: Happy New Year,,6,2,tuyguntn,12/31/2015 10:38 +11496429,Ask HN: Where is the best place to sell my website?,,1,5,adzeds,4/14/2016 13:24 +10596237,Police Find Paris Attackers Used Unencrypted SMS,https://www.techdirt.com/articles/20151118/08474732854/after-endless-demonization-encryption-police-find-paris-attackers-coordinated-via-unencrypted-sms.shtml,6,1,cryptoz,11/19/2015 17:53 +11061129,Ask HN: What skills do self-taught Web Developers commonly lack?,,13,10,sabbasb,2/8/2016 21:50 +11091812,Management by laziness,https://medium.com/@maxh/management-by-laziness-b4a7e00dc808#.qj0gxqfud,24,6,frisco,2/13/2016 0:50 +12417400,Paris climate deal: US and China announce ratification,http://www.bbc.com/news/world-asia-china-37265541,250,120,smb06,9/3/2016 2:16 +10613366,First Angular 2 App in Production by Google,https://fiber.google.com/cities/kansascity/fiberhoods/,4,2,alphonse23,11/23/2015 7:59 +11192662,Life in Techicolor,http://arstechnica.com/science/2016/02/seeing-in-techicolor-one-month-wearing-enchromas-color-blindness-correcting-glasses/,1,1,gk1,2/28/2016 22:22 +11909798,Ask HN: How to approach writing a web crawler that can handle JavaScript?,,4,3,awclives,6/15/2016 15:15 +11233016,There are no acceptable ads,https://github.com/fivefilters/block-ads/wiki/There-are-no-acceptable-ads#wrapper,226,278,k1m,3/6/2016 9:10 +10529059,Topological Transformation Approaches to Database Query Processing (2015) [pdf],http://www.cse.msu.edu/~pramanik/research/papers/papers/journalPaper.pdf,36,1,espeed,11/8/2015 17:20 +11294987,GitHub ubuntu/ubuntu-make: Ubuntu Make,https://github.com/ubuntu/ubuntu-make,4,2,Immortalin,3/16/2016 4:22 +11626242,"Ask HN: If Craig Wright is Satoshi, how much tax does he owe?",,5,1,macarthy12,5/4/2016 4:42 +10889433,Saudi Arabia's Aramco considering share sale,http://www.bbc.com/news/business-35259190,25,11,snake117,1/12/2016 18:47 +11345584,Ask HN: What to do to protect against NPM malicious activities?,,2,1,d0m,3/23/2016 15:58 +12073651,GYP-based package manager,http://gypkg.io/,3,3,indutny,7/11/2016 19:31 +12198554,North Carolina Voting Law Targeted African-Americans With Surgical Precision,http://www.motherjones.com/kevin-drum/2016/07/circuit-court-north-carolina-law-targeted-african-americans-surgical-precision,51,24,curtis,7/31/2016 19:58 +12046444,Misfortune,https://www.teslamotors.com/blog/misfortune,46,28,runesoerensen,7/6/2016 23:05 +10283748,Extrovert or Introvert? (thoughts),https://medium.com/@JDcarlu/extrovert-or-introvert-bb4a67fae2f8,1,1,jdcarluccio,9/26/2015 17:40 +10738891,"How the Universal Symbols for Escalators, Restrooms, and Transport Were Designed",http://www.atlasobscura.com/articles/how-the-universal-symbols-for-escalators-restrooms-and-transport-were-designed,68,43,dnetesn,12/15/2015 17:08 +12498396,Introducing the Firefox debugger.html,https://hacks.mozilla.org/2016/09/introducing-debugger-html/,500,82,clarkbw,9/14/2016 16:11 +12185058,Stop Saying Hardware Is Hard,https://blog.bolt.io/stop-saying-hardware-is-hard-62fdd3052a2#.w0ivtnwyt,6,2,mi3law,7/29/2016 4:42 +10612201,Facebook Is the Internet and Other Things Media People Debate at Dinner,https://redef.com/original/facebook-is-the-internet-and-13-other-things-media-people-debate-at-dinner,62,39,zbravo,11/23/2015 0:39 +11102629,ImportPython,http://importpython.com/newsletter/,2,2,mangoorange,2/15/2016 10:45 +10711976,Linux Mint 17.3 Rosa Cinnamon,http://blog.linuxmint.com/?p=2947,10,3,dudul,12/10/2015 17:41 +12323504,Interactive Dynamic Video [video],http://jnack.com/blog/2016/08/13/mit-shows-off-amazing-manipulation-of-objects-in-video/,50,1,edward,8/19/2016 21:14 +10603415,Princeton Agrees to Consider Removing a Presidents Name,http://www.nytimes.com/2015/11/20/nyregion/princeton-agrees-to-consider-removing-a-presidents-name.html?_r=0,2,1,Alupis,11/20/2015 19:52 +10409044,MIT's free online classes can now lead to MicroMaster's degree,http://www.sfgate.com/business/technology/article/For-1st-time-MIT-s-free-online-classes-can-carry-6556128.php,215,72,prostoalex,10/18/2015 17:56 +11365252,"A history of the Amiga, part 9: The Video Toaster",http://arstechnica.co.uk/gadgets/2016/03/history-of-the-amiga-video-toaster/,130,56,robin_reala,3/26/2016 11:16 +11318156,Somali Law,http://www.daviddfriedman.com/Academic/Legal_Systems_Draft/Systems/SomaliLawChapter.html,105,28,Tomte,3/19/2016 11:44 +12135032,Southwest Airlines is having major software issues,http://www.azcentral.com/story/travel/airlines/2016/07/20/southwest-airlines-computer-woes-delaying-flights/87354164/,2,1,nerdy,7/21/2016 5:55 +10396406,How Spotifys Discover Weekly cracked human curation at internet scale,http://www.theverge.com/2015/9/30/9416579/spotify-discover-weekly-online-music-curation-interview,7,2,kareemm,10/15/2015 22:25 +10653845,How to Build a Device That Cannot Be Built [pdf],http://www.csee.umbc.edu/~lomonaco/pubs/Unbuildable.pdf,8,1,Katydid,12/1/2015 5:47 +11012149,Microsoft wants to put data centers at the bottom of the sea,http://www.engadget.com/2016/02/01/project-natick-underwater-datacenter/,1,1,dnqthao,2/1/2016 15:16 +12520460,"""This is Tayo. He's 11 and showed me a game he built called Spike Rush""",https://www.facebook.com/zuck/posts/10103109919772641,51,33,abula,9/17/2016 13:47 +11018039,Introducing LastPass 4.0,https://blog.lastpass.com/en/2016/01/introducing-lastpass-4-0.html/,1,1,mvdwoord,2/2/2016 7:21 +10211339,Radiogram The Radio App for information junkies,https://itunes.apple.com/us/app/radiogram-hear-what-matters!/id987242964?ls=1&mt=8,1,3,kannant,9/13/2015 13:35 +11192952,Comparing Rust and Java,https://llogiq.github.io/2016/02/28/java-rust.html,268,114,Manishearth,2/28/2016 23:45 +11218427,"Amazon removes encryption from the software for Kindles, phones, and tablets",http://www.dailydot.com/politics/amazon-encryption-kindle-fire-operating-system/,208,55,tshtf,3/3/2016 17:40 +10653425,Blowing the whistle on Leviathan (2012),https://www.washingtonpost.com/opinions/george-will-blowing-the-whistle-on-leviathan/2012/07/27/gJQAAsRnEX_story.html,4,3,wtbob,12/1/2015 3:00 +10587013,Science Hidden in Your Town Name: How place names encode ecological change,http://nautil.us/issue/30/identity/the-science-hidden-in-your-town-name,21,3,dnetesn,11/18/2015 10:57 +11301395,Kubernetes 1.2 release is out,https://github.com/kubernetes/kubernetes/releases/tag/v1.2.0,12,1,jtblin,3/16/2016 23:08 +12204156,Ask HN: What are the best open source apps written with React/Redux?,,23,2,yadongwen,8/1/2016 17:16 +10509013,'Solar storm' grounds Swedish air traffic,http://www.thelocal.se/20151104/solar-storm-grounds-swedish-air-traffic,3,1,filleokus,11/4/2015 19:36 +12311808,Who owns the IP you create in your spare time?,http://www.brightjourney.com/q/working-company-intellectual-property-rights-stuff-spare-time,1,1,bsilvereagle,8/18/2016 12:06 +10619550,Harir Reducing Noise in Arabic Script,https://www.typotheque.com/articles/harir,129,46,flannery,11/24/2015 7:16 +12506079,"Ask HN: First time managing an internal team, how can I be a successful boss?",,2,1,wlfsbrg,9/15/2016 13:50 +10717634,Possessed by a mask: Is being online the ultimate masquerade?,https://aeon.co/essays/how-masks-explain-the-psychology-behind-online-harassment,21,2,kawera,12/11/2015 15:33 +10302805,My 90's TV,http://www.my90stv.com/,3,1,anatoly,9/30/2015 9:57 +11797095,"C++ for Games: Performance, Allocations and Data Locality",http://ithare.com/c-for-games-performance-allocations-and-data-locality/,171,64,ingve,5/29/2016 17:04 +11399823,The Government Did Cause the Housing Crisis (2011),http://www.theatlantic.com/business/archive/2011/12/hey-barney-frank-the-government-did-cause-the-housing-crisis/249903/?single_page=true,4,7,nickles,3/31/2016 19:20 +11988610,Lobster programming language is gaining VR functionality,https://plus.google.com/+WoutervanOortmerssen/posts/ULuU7uoNjQH,2,1,stesch,6/27/2016 19:07 +11210765,Corporate Culture in Internet Time (2000),http://www.strategy-business.com/article/10374?gko=48515,14,2,el_benhameen,3/2/2016 16:05 +10432584,Thank HN: We're about to be the biggest crowdfunding campaign ever,,6,1,webwright,10/22/2015 14:58 +11703940,"Court Backs Snowden, Strikes Secret Laws (2015)",https://www.bloomberg.com/view/articles/2015-05-07/court-backs-snowden-strikes-secret-laws,36,3,puppetmaster3,5/16/2016 2:51 +12009253,Employee 1: Yahoo,http://themacro.com/articles/2016/06/tim-brady-interview/,7,1,craigcannon,6/30/2016 15:34 +11539872,A tool for building command line app with golang,https://github.com/mkideal/cli,3,1,mkideal,4/21/2016 5:27 +12078145,How Square Watermelons Get Their Shape and Other G.M.O. Misconceptions,http://www.nytimes.com/interactive/2016/07/12/science/gmo-misconceptions.html,12,9,mhb,7/12/2016 11:22 +11533567,Nearly half of Americans would have trouble finding $400 to pay for an emergency,http://www.theatlantic.com/magazine/archive/2016/05/my-secret-shame/476415/?single_page=true,113,146,sergeant3,4/20/2016 11:20 +10983385,Transactional Memory Support for C [pdf],http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1961.pdf,39,11,vmorgulis,1/27/2016 21:08 +10481203,A telescope will generate 10x more data than todays global Internet traffic,https://www.skatelescope.org/frequently-asked-questions/,3,1,edpichler,10/30/2015 23:41 +10941638,"How Sandstorm Works: Containerize data, not services",https://sandstorm.io/how-it-works,112,21,paulproteus,1/20/2016 21:49 +12552507,Who the Hell Is This Joyce (1928),http://www.theparisreview.org/blog/2016/09/21/who-the-hell-is-this-joyce/,161,80,samclemens,9/21/2016 21:39 +11098709,Ask HN: What Linux distros avoid systemd?,,6,6,pmoriarty,2/14/2016 15:57 +11682015,Things that Subversion can't do,https://thingsthatsvncantdo.wordpress.com/,1,1,jammycakes,5/12/2016 8:03 +11788445,Harvey OS A Fresh Take on Plan 9,http://harvey-os.org/,226,79,antonkozlov,5/27/2016 19:49 +11477837,Voltron: A hacky debugger UI for hackers,https://github.com/snare/voltron,260,73,okanesen,4/12/2016 7:41 +10390019,Bill Gates's First Job,http://www.theatlantic.com/notes/2015/10/bill-gates-first-real-job/409084/?utm_source=SFTwitter&single_page=true,4,2,hvo,10/14/2015 22:38 +10239142,Ask HK: How to reverse engineer a letter or postage?,,3,1,mw67,9/18/2015 13:48 +10922527,Richest 1% will own more than all the rest by 2016,https://www.oxfam.org/en/pressroom/pressreleases/2015-01-19/richest-1-will-own-more-all-rest-2016,141,131,Excluse,1/18/2016 4:28 +10986026,Scientists open the black box of schizophrenia with dramatic genetic discovery,https://www.washingtonpost.com/news/speaking-of-science/wp/2016/01/27/scientists-open-the-black-box-of-schizophrenia-with-dramatic-genetic-finding/?postshare=3091453948817165&tid=ss_tw-bottom,296,107,salmonet,1/28/2016 3:33 +12256270,Building fast.com,http://techblog.netflix.com/2016/08/building-fastcom.html,432,175,samber,8/9/2016 17:34 +11181901,Async/await: Its Good and Bad,https://medium.com/@benlesh/async-await-it-s-good-and-bad-15cf121ade40#.t59d6u4ws,21,5,shawndumas,2/26/2016 15:40 +10212913,Logic and Infinity: The Errors of Calculus,http://steve-patterson.com/logic-and-infinity/,9,3,misesed,9/13/2015 21:50 +10356213,Which jobs could a 100-year-old do?,http://www.bbc.co.uk/news/magazine-34465190,1,1,SimplyUseless,10/8/2015 21:02 +11762169,"Show HN: I couldn't figure out what an Emoji meant, so I made WhatMoji.com",http://whatmoji.com/,143,76,nk-,5/24/2016 15:05 +10341656,Code42 Snares $85M Round B,http://techcrunch.com/2015/10/06/code42-snares-huge-85m-series-b-investment/,3,3,mml,10/6/2015 19:29 +12466135,Milky Way mapper: ways the Gaia spacecraft will change astronomy,http://www.nature.com/news/milky-way-mapper-6-ways-the-gaia-spacecraft-will-change-astronomy-1.20569,79,5,philbo,9/9/2016 21:20 +10743242,GPUCC: An Open-Source GPGPU Compiler [video],http://images.nvidia.com/events/sc15/SC5105-open-source-cuda-compiler.html,33,15,singularity2001,12/16/2015 9:35 +11982561,How the insecurity of things creates the next wave of security opportunities,https://techcrunch.com/2016/06/26/how-the-insecurity-of-things-creates-the-next-wave-of-security-opportunities/,1,1,tdrnd,6/26/2016 20:34 +11977829,Petition map on 2nd UK referendum on EU membership,http://petitionmap.unboxedconsulting.com/?petition=131215&area=uk,3,1,merraksh,6/25/2016 20:21 +10635189,Japanese Company Makes Low-Calorie Noodles Out of Wood,http://www.bloomberg.com/news/articles/2015-11-17/tree-noodles-a-low-cal-fat-free-way-to-beat-chinese-competition,47,53,trextrex,11/26/2015 23:29 +10873499,InstaThreat.com: Demand letters as a service,,4,16,gtbcb,1/10/2016 0:14 +11808908,"Etcher Burn Images to SD Cards and USB Drives, Safe and Easy",http://www.etcher.io/,2,1,nikolay,5/31/2016 18:37 +11859816,Julian Assange: Google Working Closely with Hillary Clintons Campaign,http://www.belfasttelegraph.co.uk/news/world-news/google-working-closely-with-hillary-clinton-presidential-campaign-julian-assange-34780998.html,29,13,Jerry2,6/8/2016 3:34 +11768734,Programming the Blockchain in C#,https://github.com/ProgrammingBlockchain/ProgrammingBlockchain,3,1,kiyanwang,5/25/2016 10:13 +10176923,Why we aren't tempted to use ACLs on our Unix machines,https://utcc.utoronto.ca/~cks/space/blog/sysadmin/NoACLTemptation,34,23,mjn,9/6/2015 6:03 +10350894,China Rolls Out the 'World's First Driverless Bus',http://www.citylab.com/tech/2015/10/china-rolls-out-the-worlds-first-driverless-bus/408826/,2,1,Futurebot,10/8/2015 4:26 +11988244,Benchmarking with YCSB for MongoDB vs. Couchbase Server,http://blog.couchbase.com/2016/july/digging-deeper-into-ycsb-benchmark-with-couchbase-server-4.5,2,1,cihangirb,6/27/2016 18:23 +11905869,Ask HN: Which service to use for livecoding?,,1,1,musicaldope,6/14/2016 22:32 +10806148,The Art of Saving in Games (2014),http://www.theoryofgaming.com/art-saving/,29,6,marinintim,12/29/2015 11:00 +10440550,Tell dang/HN: <> Title tags shouldn't be escaped twice,,5,3,gburt,10/23/2015 18:51 +10596241,Show HN: Bot that mentions potential reviewers on pull requests,https://github.com/facebook/mention-bot,72,13,vjeux,11/19/2015 17:53 +11586614,An AI First World,http://avc.com/2016/04/an-ai-first-world/,95,62,ghosh,4/28/2016 4:52 +10660880,The 'Save the American Inventor' Campaign,https://www.youtube.com/watch?v=s9YpIHkZF1s,2,1,bgilroy26,12/2/2015 4:08 +11656821,"Scam Alert: Nootropic Pill Supported by Hawking, Gates, Anderson Cooper?",,6,4,ada1981,5/9/2016 0:40 +10539048,The Microsoft Surface Book Review,http://www.anandtech.com/show/9767/microsoft-surface-book-2015-review,109,108,vinhnx,11/10/2015 13:13 +12439713,Two possible cases of leprosy reported at Riverside elementary school,http://www.latimes.com/local/lanow/la-me-ln-leprosy-kids-20160906-snap-story.html,3,1,HillaryBriss,9/6/2016 22:24 +10468675,"Investing or Gambling, Whats the Difference?",http://blog.instavest.com/investing-or-gambling-whats-the-difference,3,1,skhatri11,10/29/2015 1:37 +12153065,Ruby on Rails and the importance of being stupid (2009),https://blogs.harvard.edu/philg/2009/05/18/ruby-on-rails-and-the-importance-of-being-stupid/,5,2,wtbob,7/24/2016 11:48 +12146576,Silent Weapons for Quiet Wars,http://www.lawfulpath.com/ref/sw4qw/index.shtml,2,1,i04n,7/22/2016 20:36 +10889613,TIS-100P on the App Store,https://itunes.apple.com/us/app/tis-100p/id1070879899?mt=8&ign-mpt=uo%3D4,110,22,shawndumas,1/12/2016 19:13 +10231714,Australian scientist admits fabricating research data,http://www.bbc.com/news/world-australia-34275648,1,1,ghosh,9/17/2015 5:30 +11470606,#commswithoutcode,http://www.upwire.com/?hn-002,2,1,kieranhackshall,4/11/2016 10:31 +11519097,Draftly: A Beautiful Dribbble Client for Apple TV,http://getdraftly.com,2,2,bgilham,4/18/2016 11:39 +10431456,StableLib is shutting down,https://stablelib.com/blog/shutting-down/,2,2,dchest,10/22/2015 10:39 +12036579,Cloudron self hosting on EC2 now available,https://cloudron.io/blog/2016-07-05-selfhost-ec2.html,7,2,nebulon,7/5/2016 14:19 +11482990,Dabrowskis Theory and Existential Depression in Gifted Children and Adults,http://www.davidsongifted.org/db/Articles_id_10554.aspx,3,2,_kyran,4/12/2016 19:53 +12389284,What Time Is It?,https://shkspr.mobi/blog/2016/08/what-time-is-it/,31,20,edent,8/30/2016 12:13 +10748307,The Insults of Age,https://www.themonthly.com.au/issue/2015/may/1430402400/helen-garner/insults-age,130,46,diodorus,12/16/2015 23:43 +12089157,The Most Diverse Neighborhood in the U.S. May Surprise You,http://www.smithsonianmag.com/travel/mountain-view-alaska-diversity-immigration-smithsonian-journeys-travel-quarterly-180959441/?no-ist,5,1,ALee,7/13/2016 19:58 +10958277,JOHN MCAFEE: The Obama administration doesn't understand what 'privacy' means,http://www.businessinsider.com/john-mcafee-obama-administration-privacy-2016-1,4,1,samjltaylor,1/23/2016 13:16 +12504675,WaveNet implementation in Keras,https://github.com/basveeling/wavenet/,106,15,basve,9/15/2016 9:59 +12541966,Search Results are officially AMPd,https://search.googleblog.com/2016/09/search-results-are-officially-ampd.html,219,243,cramforce,9/20/2016 18:28 +11362713,[PHP-DEV] Add spaceship assignment operator,"http://www.serverphorums.com/read.php?7,1448393",9,2,aleyan,3/25/2016 21:10 +12047527,NYC's MTA loses six billion dollars a year and nobody cares,https://medium.com/@johnnyknocke/the-mta-loses-six-billion-dollars-a-year-and-nobody-cares-d0d23093b2d8#.qm8dzxshz,1,1,jseliger,7/7/2016 4:51 +11032118,"Out of a Rare Super Bowl I Recording, a Clash with the N.F.L. Unspools",http://www.nytimes.com/2016/02/03/sports/football/super-bowl-i-recording-broadcast-nfl-troy-haupt.html?_r=2,1,6,8ig8,2/4/2016 5:06 +11614810,A smart plug that resets router and modem when WiFI fails,http://resetplug.com,1,1,bitsweet,5/2/2016 19:39 +12257947,Drone Video Shows How Giant Containerships Enter Panama Canal's New Locks,https://gcaptain.com/watch-drone-video-shows-how-giant-containerships-enter-panama-canals-new-locks/,12,4,protomyth,8/9/2016 21:48 +12557645,Ask HN: Who is going to the office hours and/or fireside chat in Buenos Aires?,,3,1,wslh,9/22/2016 15:44 +10621289,Wordpress Admin Fully JavaScript,http://dustindavis.me/wordpress-admin-fully-javascript/,5,3,jessaustin,11/24/2015 15:35 +10222431,"Most Smart Home Developers Are Hobbyists, Not Professionals",http://arc.applause.com/2015/09/15/smart-homes-apps-developers/,2,1,werencole,9/15/2015 18:42 +10453113,Tech titans should value military service,http://www.usatoday.com/story/tech/2015/10/25/voices-tech-titans-should-value-military-service/71635480/,2,1,seansmccullough,10/26/2015 18:02 +10728153,Competitive e-sports with a 25-year-old Amiga game,http://arstechnica.com/gaming/2015/12/kick-off-2-world-cup-competitive-esports-25-year-old-amiga-game/,55,15,altern8,12/13/2015 21:57 +10361371,Show HN: Instagram on the Google Maps,https://instmap.com,37,27,Instmap,10/9/2015 16:46 +12221332,What Cost Is Each State Obsessed With,http://www.fixr.com/blog/2015/02/27/cost-obsessions-us-map/,40,23,bennettfeely,8/3/2016 20:40 +10942506,"An Ancient, Brutal Massacre May Be the Earliest Evidence of War",http://www.smithsonianmag.com/science-nature/ancient-brutal-massacre-may-be-earliest-evidence-war-180957884/?no-ist,66,15,behoove,1/21/2016 0:25 +10864370,"The big data of bad driving, and how insurers plan to track every turn",https://www.washingtonpost.com/news/the-switch/wp/2016/01/04/the-big-data-of-bad-driving-and-how-insurers-plan-to-track-your-every-turn/,111,186,mgav,1/8/2016 12:25 +10773750,Accounting for the Rise in College Tuition [pdf],http://www.nber.org/chapters/c13711.pdf,33,29,mhb,12/21/2015 21:45 +10277222,"Profiled: From Radio to Porn, British Spies Track Web Users Online Identities",https://theintercept.com/2015/09/25/gchq-radio-porn-spies-track-web-users-online-identities/,15,28,etiam,9/25/2015 10:11 +10389912,Show HN: MarkupKit Declarative UI for iOS Applications,https://gkbrown.wordpress.com/2015/07/14/introducing-markupkit/,23,5,gk_brown,10/14/2015 22:14 +10753268,"Humans Caused a Major Shift in Earth's Ecosystems 6,000 Years Ago",http://www.smithsonianmag.com/science-nature/humans-caused-major-shift-earths-ecosystems-6000-years-ago-180957566/?no-ist,51,31,Mz,12/17/2015 18:26 +11809448,Simply Hired is shutting down June 26,http://techcrunch.com/2016/05/31/simply-hired-is-shutting-down-june-26-reportedly-as-part-of-an-acquisition/,168,103,us0r,5/31/2016 19:32 +12435939,Single Image Super-Resolution from Transformed Self-Exemplars [pdf],http://www.cv-foundation.org/openaccess/content_cvpr_2015/papers/Huang_Single_Image_Super-Resolution_2015_CVPR_paper.pdf,9,1,mkeeter,9/6/2016 13:46 +11923086,Free Trade Is Dead,http://washingtonmonthly.com/magazine/junejulyaug-2016/free-trade-is-dead/,7,4,mtviewdave,6/17/2016 15:12 +10753873,"Online Codes: unencumbered, locally-encodable Fountain Codes alternative",http://catid.mechafetus.com/news/commentsedit.php?sqc=3833b184cbf68b83&new=281,11,3,pointfree,12/17/2015 19:37 +10245183,US Forest Service Prevents Its Own Scientists from Talking About Study,http://kvpr.org/post/us-forest-service-prevents-its-own-scientists-talking-about-study,98,28,throwaway_yy2Di,9/19/2015 18:52 +12412203,Chat-service project announcement and overview,https://medium.com/@an_sh_1/chat-service-project-announcement-and-overview-92283fe80d93,3,1,an-sh,9/2/2016 11:12 +12211079,"Show HN: CloudRail API Abstraction Layer for Cloud Storage, Social and More",https://cloudrail.com,6,2,licobo,8/2/2016 16:27 +11796574,Challenging the myth that the rich are specially-talented wealth creators,http://blogs.lse.ac.uk/politicsandpolicy/we-need-to-challenge-the-myth-that-the-rich-are-specially-talented-wealth-creators,141,213,sjclemmy,5/29/2016 15:00 +11238241,"Firefox OS pivots to IoT, wants to build an AI smart home assistant",http://techcrunch.com/2016/03/02/mozilla-tests-the-waters-for-firefox-os-iot-apps-including-a-samantha-style-virtual-assistant/,20,14,ilyaeck,3/7/2016 11:10 +11953156,Pitfalls of Random Number Generation,http://ithare.com/random-number-generation/,1,1,yarapavan,6/22/2016 11:59 +11406021,War Stories: Why I Lit Up Lytro,https://backchannel.com/war-stories-why-i-lit-up-lytro-b46124da32a6#.yrorcr8jw,62,8,tim_sw,4/1/2016 16:22 +10294982,Substring search algorithm,http://volnitsky.com/project/str_search/index.html,18,1,luu,9/29/2015 7:16 +10944531,Timestamps done right,https://getkerf.wordpress.com/2016/01/19/timestamps-done-right/,64,71,mollmerx,1/21/2016 11:16 +10528335,How C# beats Scala in async programming,https://medium.com/@anicolaspp/how-c-beats-scala-in-async-programming-27d824da02ba,2,1,rottyguy,11/8/2015 12:43 +11470412,Presumi on ProductHunt: Changing the way you apply for jobs,https://www.producthunt.com/tech/presumi-2-0#comment-271492,1,1,presumi,4/11/2016 9:14 +10859860,Why I love Snapchat,http://justinkan.com/why-i-love-snapchat,212,166,cocoflunchy,1/7/2016 18:51 +11956764,Gary Vaynerchuk Apologizes: Cannes Party Invite Seeking'Attractive Females Only',http://www.adweek.com/news/advertising-branding/gary-vaynerchuk-apologizes-cannes-party-invite-seeking-attractive-females-only-172163,5,1,guylepage3,6/22/2016 20:31 +10843558,Pixel Quipu (Inca knots),http://www.pawfal.org/dave/blog/2015/11/pixel-quipu/,33,3,vmorgulis,1/5/2016 15:10 +10472966,Announcing Rust 1.4,http://blog.rust-lang.org/2015/10/29/Rust-1.4.html,97,5,steveklabnik,10/29/2015 17:58 +10845591,The Google Technology Stack [2008],http://michaelnielsen.org/blog/lecture-course-the-google-technology-stack/,2,1,as1ndu,1/5/2016 20:00 +10841658,Microsoft Solitaire was developed by a summer intern,https://www.reddit.com/r/todayilearned/comments/3zfadv/til_that_microsoft_solitaire_was_developed_by_a/,666,145,yurisagalov,1/5/2016 6:35 +11756804,Why Education Does Not Fix Poverty (2015),http://www.demos.org/blog/12/2/15/why-education-does-not-fix-poverty,221,187,apsec112,5/23/2016 20:45 +10592105,Coinbase and Shift Payments Release First US-Issued Bitcoin Visa Card,https://www.zapchain.com/a/l/i-just-ordered-the-first-us-issued-bitcoin-debit-card-with-my-coinbase-account/16NNqud1fO,1,1,dcawrey,11/19/2015 1:24 +11970225,"The British are googling what the E.U. is, hours after voting to leave it",https://www.washingtonpost.com/news/the-switch/wp/2016/06/24/the-british-are-frantically-googling-what-the-eu-is-hours-after-voting-to-leave-it,2,1,josemrb,6/24/2016 14:54 +10447913,The Manchester prototype dataflow computer (1985) [pdf],https://courses.cs.washington.edu/courses/csep548/05sp/gurd-cacm85-prototype.pdf,37,4,luu,10/25/2015 19:03 +12209076,Show HN: Embed a Search-box that converts plain English to SQL in your app,http://kueri.me/download,12,8,davidsQL,8/2/2016 11:18 +12210318,"Fentanyl, a stealth killer",https://www.statnews.com/feature/opioid-crisis/dope-sick/,112,148,etendue,8/2/2016 14:46 +11311076,"So Much Streaming Music, Just Not in One Place",http://www.nytimes.com/interactive/2016/03/16/business/media/so-much-music-streaming-just-not-one-place.html?hpw&rref=technology&action=click&pgtype=Homepage&module=well-region®ion=bottom-well&WT.nav=bottom-well&_r=0,54,55,hvo,3/18/2016 11:37 +12229741,Material Design Components for Elm,https://debois.github.io/elm-mdl/,3,1,greenail,8/5/2016 2:38 +11473708,Equifacks.com,http://www.equifacks.com/,5,1,Kinnard,4/11/2016 18:02 +10208606,Show HN: How Do I Look-Random response generator to the question women always ask,http://architv.me/howdoilook/,1,1,architv07,9/12/2015 17:13 +12545188,Brains and Sex = Controversy,http://blogs.discovermagazine.com/neuroskeptic/2016/09/20/brains-sex-controversy/,1,1,DiabloD3,9/21/2016 3:31 +10478412,How we improved our product development process with Trello (Gantt chart free),https://medium.com/@_andymac/how-we-started-building-the-right-stuff-faster-at-teachboost-36b35d07dc29,6,2,mikegioia,10/30/2015 15:32 +10636930,Get Lamp,http://www.getlamp.com/introduction.html,75,7,jacquesm,11/27/2015 12:09 +10905091,The Zappos Exodus Continues After a Radical Management Experiment,http://bits.blogs.nytimes.com/2016/01/13/after-a-radical-management-experiment-the-zappos-exodus-continues/?_r=0,122,129,socalnate1,1/14/2016 22:14 +11097496,"8tracks is going US and Canada only, blocking other countries",,5,2,showsover,2/14/2016 7:32 +10857912,Ask HN: How to accept payments globally as a business in Sub Saharan Africa?,,2,1,reg29,1/7/2016 14:00 +10494610,Show HN: GrooveJar Conversion Rate Optimization Software,https://groovejar.com/?ref=QJY8,13,3,simonk,11/2/2015 19:49 +10216187,No More Custom Browser Views in iOS Apps,http://blog.mobtest.com/2015/09/no-more-custom-browser-views-in-ios-apps/,2,1,dirkdk,9/14/2015 17:24 +11841591,Eve Dev Diary (Oct-Nov),http://incidentalcomplexity.com/2016/06/03/oct-nov/,3,1,beefman,6/5/2016 16:07 +11250524,The Death of the Statistical Tests of Hypotheses,http://www.datasciencecentral.com/profiles/blogs/the-death-of-the-statistical-test-of-hypothesis,1,1,vincentg64,3/9/2016 2:44 +10833227,"Compose, a community-written story",http://wecompose.org,6,1,dsdowni,1/3/2016 23:59 +12292608,Battlefield 1 Open Access Beta 31st of August,http://www.ittechpages.com/battlefield-1-beta-officially-opens-31st-august/,1,1,verdande,8/15/2016 18:59 +10518900,ChucK: Strongly-Timed Music Programming Language,http://chuck.cs.princeton.edu/,93,20,FrankyHollywood,11/6/2015 11:22 +10480413,"Yes, Your Dating Preferences Are Probably Racist",http://www.theestablishment.co/2015/10/30/online-dating-racism-matchmaking/,2,3,weisser,10/30/2015 20:41 +11979720,Apple MacBook vs. HP Spectre: How Thin Does Your Laptop Really Need to Be?,http://www.wsj.com/article_email/apple-macbook-vs-hp-spectre-how-thin-does-your-laptop-really-need-to-be-1466531445-lMyQjAxMTA2NTIxMTkyMzE2Wj,4,2,prostoalex,6/26/2016 7:01 +10400612,Malaria protein could be an effective weapon against cancer,http://www.independent.co.uk/news/science/cure-for-cancer-might-accidentally-have-been-found-and-it-could-be-malaria-a6693601.html,26,3,nav,10/16/2015 17:02 +10452017,Introducing Shadow DOM API,https://www.webkit.org/blog/4096/introducing-shadow-dom-api/,315,149,twsted,10/26/2015 15:23 +11416824,Xscreensaver Author: Please Remove XScreenSaver from Debian Linux,https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819703#158,31,9,djvdorp,4/3/2016 17:23 +11691594,The big business of witch hunts (2012),http://www.laphamsquarterly.org/roundtable/gold-and-silver-coined-human-blood,42,1,kawera,5/13/2016 17:03 +11471997,Learn languages by reading,http://paralleltext.io/,2,2,jorgecastillo,4/11/2016 15:09 +10915206,"Major Bitcoin supporter quits, says it's a failure",http://www.forbes.com/sites/theopriestley/2016/01/15/bitcoin-declared-an-inescapable-failure/#2715e4857a0b73180b9b9bf8,53,44,judgementday,1/16/2016 13:21 +11329170,How real businesses are using machine learning,http://techcrunch.com/2016/03/19/how-real-businesses-are-using-machine-learning/,3,1,lukas,3/21/2016 16:22 +12103870,Refugees arriving in Italian town given notes to be used as local currency,http://www.bbc.com/news/world-europe-36769145,78,49,phantom_oracle,7/15/2016 21:11 +10916280,Are ants capable of self recognition? [pdf],http://www.journalofscience.net/File_Folder/521-532%28jos%29.pdf,34,9,randomwalker,1/16/2016 18:50 +12105876,"Snabbdom A Simple, Modular, Powerful, and Fast Virtual DOM Library",https://github.com/paldepind/snabbdom,59,24,nikolay,7/16/2016 10:26 +10347778,Ask HN: How do we solve the email problem?,,2,6,cmacole,10/7/2015 18:09 +10874824,An exoskeleton to make you feel older,http://www.theverge.com/2016/1/8/10736840/genworth-aging-suit-exoskeleton-feeling-old-ces-2016,17,2,jamesDGreg,1/10/2016 9:48 +11477246,Ask HN: What's it like working at a cannabis tech startup company?,,9,2,hoodoof,4/12/2016 4:22 +11743665,HN: Review My Lead Magnet App,http://primethem.com/60secondsleadmagnet,2,6,wollercoaster,5/21/2016 7:40 +11782285,Introducing Blue Ocean: a new user experience for Jenkins,https://jenkins.io/blog/2016/05/26/introducing-blue-ocean/,16,1,i386,5/26/2016 22:44 +10396853,Show HN: YouTube video content extractor,,4,4,fouadallaoui,10/16/2015 0:33 +11990269,Non-beneficial treatments at the end of life: a review on extent of the problem,http://intqhc.oxfordjournals.org/content/early/2016/06/16/intqhc.mzw060,54,11,Someone,6/27/2016 23:17 +11866858,PuDB: the IDE debugger without an IDE (2015) [video],https://www.youtube.com/watch?v=IEXx-AQLOBk,39,7,pmoriarty,6/9/2016 0:52 +11196718,Tech workers are increasingly looking to leave Silicon Valley,http://qz.com/627414/tech-workers-are-increasingly-looking-to-leave-silicon-valley/,444,569,prostoalex,2/29/2016 17:21 +10553746,Ask HN: Minimum legal setup to do software consulting,,20,12,buzzdenver,11/12/2015 15:38 +12042252,The Iraq Inquiry: Statement by Sir John Chilcot [pdf],http://www.iraqinquiry.org.uk/media/247010/2016-09-06-sir-john-chilcots-public-statement.pdf,145,82,merraksh,7/6/2016 10:45 +11041374,Why lost phones keep pointing at Atlanta couples home,http://fusion.net/story/261629/find-my-phone-apps-mistakenly-lead-to-atlanta-home/,44,11,nonprofiteer,2/5/2016 13:58 +10923860,"Gigjam by Microsoft, a way for people to involve others in their business tasks",http://blogs.technet.com/b/gigjam/archive/2015/07/13/gigjam-unleashing-the-human-process.aspx,30,2,technofide,1/18/2016 11:51 +11256691,Tell HN: My project is turning into a death march,,9,6,hoodoof,3/10/2016 0:37 +10479904,How We Moved 34k Wired Pages to One Site,http://www.wired.com/2015/10/cyphon-wired-archive-migration/,56,22,nols,10/30/2015 19:16 +11344522,SXSW music hack launched in 4 days,https://medium.com/@SecretSet/from-0-to-launch-in-4-days-58198f9419b8#.9hw1jyx86,10,1,bpeters,3/23/2016 14:05 +10534219,A View of the Entire Netflix Stack,http://highscalability.com/blog/2015/11/9/a-360-degree-view-of-the-entire-netflix-stack.html,407,152,hepha1979,11/9/2015 17:09 +10749776,Ask HN: What's wrong with big pharma?,,1,1,personjerry,12/17/2015 5:37 +12035341,The employees shut inside coffins,http://www.bbc.com/news/magazine-34797017,186,116,amelius,7/5/2016 9:41 +11955402,Europe wants robots to count as people,http://www.telegraph.co.uk/technology/2016/06/22/europe-wants-robots-to-count-as-people/,2,1,protomyth,6/22/2016 17:05 +11186604,Apple Shareholders Show Their Support for Tim Cook,http://www.nytimes.com/2016/02/27/technology/apple-shareholders-show-their-support-for-tim-cook.html,28,1,jackgavigan,2/27/2016 9:15 +10885755,On Digital Mathematics and Drive-By Contributors,https://golem.ph.utexas.edu/category/2016/01/on_digital_mathematics_and_dri.html,8,1,mathgenius,1/12/2016 5:40 +12106430,Micro-targeted digital porn is changing human sexuality,https://aeon.co/essays/micro-targeted-digital-porn-is-changing-human-sexuality,72,13,jseliger,7/16/2016 14:30 +11062061,How to win at Monopoly and piss off your friends,http://kottke.org/16/02/how-to-win-at-monopoly-and-piss-off-your-friends,33,8,iamchmod,2/9/2016 0:23 +10669272,Uruguay makes dramatic shift to nearly 95% clean energy,http://www.theguardian.com/environment/2015/dec/03/uruguay-makes-dramatic-shift-to-nearly-95-clean-energy,20,1,nokicky,12/3/2015 12:49 +10740363,Drupal 8+ only hurts middle-class developer job growth.,,2,2,georgeteller,12/15/2015 20:48 +11619765,Show HN: Lingorank.com Test/Improve Your English Listening Skills with TED Talks,http://lingorank.com,5,3,miriadis,5/3/2016 12:04 +11469345,"Show HN: 1,013 Ideas",https://raw.githubusercontent.com/jakegarelick/ideas/master/Ideas.txt,5,2,jakegarelick,4/11/2016 2:49 +11689883,Would you propose with a diamond grown in a lab?,http://qz.com/630512/would-you-propose-with-a-diamond-grown-in-a-lab/,2,1,gpresot,5/13/2016 12:05 +10478679,The Dotty compiler for Scala bootstraps,http://www.scala-lang.org/blog/2015/10/23/dotty-compiler-bootstraps.html,3,1,jedharris,10/30/2015 16:12 +11930311,Why Kotlin is my next programming language (2015),https://medium.com/@octskyward/why-kotlin-is-my-next-programming-language-c25c001e26e3,133,180,insulanian,6/18/2016 19:51 +11469502,Howard Marks obituary: 'Britain's most charming drug smuggler',http://www.theguardian.com/books/2016/apr/11/howard-marks-obituary,52,47,wallflower,4/11/2016 3:45 +10531790,The Medieval Fourier Transform,https://www.quora.com/What-does-Fourier-Transform-physically-mean/answer/Job-Bouwman?srid=2iD&share=1,76,15,espeed,11/9/2015 7:42 +10837964,Capture and report JavaScript errors with window.onerror,http://blog.getsentry.com/2016/01/04/client-javascript-reporting-window-onerror.html,16,1,bentlegen,1/4/2016 19:43 +10614557,Start-Up Leaders Embrace Lobbying as Part of the Job,http://www.nytimes.com/2015/11/23/technology/start-up-leaders-embrace-lobbying-as-part-of-the-job.html,11,3,zabramow,11/23/2015 13:54 +12159684,ShiftSpace GPU VMs Cheaper and Faster Than AWS,https://shiftspace.io/,19,1,crosson,7/25/2016 16:20 +10383885,How Tasteless Suburbs Become Beloved Urban Neighborhoods,http://www.theatlantic.com/business/archive/2015/09/suburbs-immaculate-conception/408025/?single_page=true,67,58,brudgers,10/13/2015 22:22 +10999158,An at-home battery to make outdated energy grids more efficient,https://www.kickstarter.com/projects/ericclifton/orison-rethink-the-power-of-energy?ref=HappeningNewsletterJan2916,1,1,jseliger,1/29/2016 22:47 +10200188,"Data is not an asset, its a liability",https://www.richie.fi/blog/data-is-a-liability.html,217,111,markonen,9/10/2015 19:52 +11548784,"Bangladesh Bank exposed to hackers by cheap switches, no firewall",http://www.reuters.com/article/us-usa-fed-bangladesh-idUSKCN0XI1UO,78,26,r0h1n,4/22/2016 13:06 +11433178,FBI Says a Mysterious Hacking Group Has Had Access to US Govt Files for Years,https://motherboard.vice.com/read/fbi-flash-alert-hacking-group-has-had-access-to-us-govt-files-for-years?utm_source=mbtwitter,251,77,ebrenes,4/5/2016 18:44 +11169877,"After 15 years of downtime, Metafilter's Gopher server is back online",http://gopher.floodgap.com/gopher/gw?gopher://gopher.metafilter.com/,2,1,bootload,2/24/2016 20:15 +10667379,What is Color Banding? And what is it not?,http://simonschreibt.de/gat/colorbanding/,97,26,deverton,12/3/2015 2:37 +10796567,JavaScript Fatigue,https://medium.com/@ericclemmons/javascript-fatigue-48d4011b6fc4#.m0c2f9fe5,94,41,bluejellybean,12/27/2015 5:44 +12209446,How to Read a Book [pdf],http://pne.people.si.umich.edu/PDF/howtoread.pdf,444,140,robschia,8/2/2016 12:38 +11281026,From fleeing Vietnam in a refugee boat to becoming Ubers CTO,https://www.techinasia.com/refugee-from-vietnam-to-uber-cto-thuan-pham,109,39,williswee,3/14/2016 4:13 +12013072,Man killed in Tesla crash had previously recorded Autopilot preventing crash,http://jalopnik.com/man-killed-in-self-driving-tesla-recorded-video-of-auto-1782918905,5,1,Evolved,7/1/2016 0:48 +11780168,Dumb-jump: an Emacs jump to definition package,https://github.com/jacktasia/dumb-jump,131,50,jacktasia,5/26/2016 18:06 +12213275,Indian Court Rules Whole Site Blocking Justifiable in Piracy Fight,https://torrentfreak.com/court-rules-whole-site-blocking-justifiable-in-piracy-fight-160802/,1,2,doctorshady,8/2/2016 20:49 +11942618,"Broken Hardware, Fixes and Hacks Over 8 Years",https://hookrace.net/blog/broken-hardware-fixes-hacks-8-years/,63,23,def-,6/21/2016 0:08 +12224196,Driving dataset for car autopilot AI training,https://github.com/commaai/research,100,44,EvgeniyZh,8/4/2016 8:20 +10554122,Ask HN: WordPress Custom Page Hourly Rate?,,3,2,hanniabu,11/12/2015 16:28 +10528091,The story behind blue boxes [video],http://fivethirtyeight.com/features/before-they-created-apple-jobs-and-wozniak-hacked-the-phone-system/,30,1,oliv__,11/8/2015 9:55 +12495083,Some context for that NYT sugar article,http://slatestarcodex.com/2016/09/13/some-context-for-that-nyt-sugar-article/,4,1,osteele,9/14/2016 8:58 +11346591,Google Cloud Speech API,https://cloud.google.com/speech/,20,1,hurrycane,3/23/2016 17:44 +10752000,The Inside Story of How a Food Startup Cracked,http://www.buzzfeed.com/stephaniemlee/why-good-eggs-cracked#.airRWDA7K,7,1,cwal37,12/17/2015 15:30 +11051954,Introducing Playing A simple command for displaying song info in terminal,https://github.com/primis/playing,2,1,primis,2/7/2016 6:41 +10334194,"The 3REE Stack: React, Redux, RethinkDB and Express.js",http://blog.workshape.io/the-3ree-stack-react-redux-rethinkdb-express-js/,81,18,kohlikohl,10/5/2015 19:28 +12100267,Solving All the Wrong Problems,http://www.nytimes.com/2016/07/10/opinion/sunday/solving-all-the-wrong-problems.html?_r=1&,3,1,samsolomon,7/15/2016 11:40 +10943445,Nobody cares about your code (2015),http://mortoray.com/2015/04/20/nobody-cares-about-your-code/,2,1,scapbi,1/21/2016 4:56 +10373077,Show HN: Ohmu View space usage in your terminal,https://github.com/paul-nechifor/ohmu,58,23,paulnechifor,10/12/2015 7:48 +12331190,Counterintuitive Behavior of Social Systems (1995) [pdf],http://web.mit.edu/sysdyn/road-maps/D-4468-1.pdf,61,12,evilsimon,8/21/2016 15:17 +10326454,SQuery medical semantic search,,1,1,guoyangrui,10/4/2015 4:29 +11398257,Welcome to the Virtual Age,https://www.oculus.com/en-us/blog/welcome-to-the-virtual-age/,7,2,cocoflunchy,3/31/2016 16:15 +10732431,Cruz campaign credits psychological data and analytics for its rising success,https://www.washingtonpost.com/politics/cruz-campaign-credits-psychological-data-and-analytics-for-its-rising-success/2015/12/13/4cb0baf8-9dc5-11e5-bce4-708fe33e3288_story.html?hpid=hp_rhp-top-table-main_cruzdata715p:homepage/story,1,1,JumpCrisscross,12/14/2015 17:32 +12274336,Problematic business relationships part 2: the cult of the one big client,https://medium.com/p/problematic-business-relationships-part-2-the-cult-of-the-one-big-client-aff671cc14ea,2,1,dmistrio,8/12/2016 9:49 +10483339,"A curated list of awesome Dropbox SDKs, tools, and services",https://github.com/swapagarwal/awesome-dropbox,2,2,swapagarwal,10/31/2015 17:25 +11705677,OkCupid Study Reveals the Perils of Big-Data Science,https://www.wired.com/2016/05/okcupid-study-reveals-perils-big-data-science/,88,78,sonabinu,5/16/2016 11:47 +10655987,Selfiexploratory,http://selfiecity.net/selfiexploratory/,49,5,pablobaz,12/1/2015 15:26 +12231832,No Free Inference Lunch Cog. Sci,http://www.ncbi.nlm.nih.gov/pubmed/27489199?dopt=Abstract,2,3,nickledave,8/5/2016 12:48 +10783457,Try Our New Landing Page Builder,,1,2,CRMRoy,12/23/2015 14:36 +10610417,Does anybody offer Practice Negotiation services?,,7,10,mud_dauber,11/22/2015 15:59 +11223993,Tips for Developers Stepping into the Agile Process,http://www.smartfile.com/blog/tips-for-developers-stepping-into-the-agile-process/,13,3,Ryanb58,3/4/2016 14:44 +11370963,What are the Differences Between Java Platforms from Desktops to Wearables?,http://electronicdesign.com/embedded/what-are-differences-between-java-platforms-desktops-wearables,17,15,pjmlp,3/27/2016 18:40 +10758867,The depressed programmer,https://medium.com/@santiagobasulto/the-depressed-programmer-49076d8b33f0#.bgo5n1q6h,3,1,rograndom,12/18/2015 15:20 +10744279,Show HN: The new Windria 2-5km precision wind forecasts,https://windria.net/map#new,63,35,timedivers,12/16/2015 14:04 +10922788,Paul Graham doesn't like to be wrong,http://webiphany.com/2016/01/17/paul-graham-doesn-t-like-to-be-wrong-about-himself.html,5,1,xrd,1/18/2016 6:07 +10293614,How Hacker News and FreshDesk led me to quit my job and launch my own startup,http://www.maaxmarket.com/marketing-automation/story-of-maaxmarket/,1,1,lenin1234,9/28/2015 22:26 +10531109,Show HN: Tinder for amazon products (updated),http://www.appshopie.com,2,1,ldom22,11/9/2015 2:41 +11008991,Effects of a Year in Ketosis [video],http://quantifiedself.com/2015/12/effects-year-ketosis-jim-mccarter/,44,80,Kinnard,2/1/2016 1:05 +11701246,The Best Encoding Settings for Your 4k 360 3D VR Videos,http://www.purplepillvr.com/best-encoding-settings-resolution-for-4k-360-3d-vr-videos/,1,1,opticalflow,5/15/2016 15:27 +10246131,"Clover Health, a Data-Driven Health Insurance Startup, Raises $100M",http://techcrunch.com/2015/09/17/clover-health-a-data-driven-health-insurance-startup-raises-100m/,26,5,Chris911,9/20/2015 0:51 +12099019,Systematic Program Design: From Clarity to Efficiency,https://www.amazon.com/dp/1107610796/,1,1,bordercases,7/15/2016 4:59 +12490050,Amazon accidentally announces a cheaper Echo Dot,http://www.recode.net/2016/9/12/12896804/new-amazon-echo-dot--50-twitter-deleted-tweet,1,1,brad0,9/13/2016 16:51 +10285755,NASA to reveal 'Mars mystery solved',http://www.cnn.com/2015/09/26/us/mars-discovery-nasa-irpt/,1,1,dheera,9/27/2015 7:24 +10900871,Netflix Secret Categories Revealed by Chrome Extension,https://chrome.google.com/webstore/detail/simkl-for-netflix-hulu-cr/dbpjfmehfpcgmlpfnfilcnhbckmecmca,8,5,skala,1/14/2016 12:10 +12533747,Ask HN: Do you worry that your product will be killed by one of the tech giants?,,8,14,shanwang,9/19/2016 18:51 +11514175,Ban on UK state-funded academics using their work to question government policy,http://www.theguardian.com/commentisfree/2016/apr/17/britains-scientists-must-not-be-gagged,7,1,Doctor_Fegg,4/17/2016 11:27 +12431488,One K-9 sniffed out hidden SD cards in a sealed gun safe,http://www.cnn.com/2016/09/05/us/police-dog-sniffs-out-flash-drives-in-porn-cases/index.html,2,1,sjreese,9/5/2016 18:03 +10448981,Why the Controversial Airbnb Ads Might Be a Work of Marketing Genius,https://medium.com/@jhreha/why-the-tone-deaf-airbnb-ads-might-be-a-work-of-marketing-genius-84d6693dfbee?source=tw-444597d4f7be-1445817852403,11,1,acrylickinger,10/26/2015 0:04 +10204849,Fruit Salad Trees,https://www.fruitsaladtrees.com/,3,2,lelf,9/11/2015 17:11 +11382488,Microsoft to show Bash running on Windows 10,http://www.zdnet.com/article/microsoft-to-show-bash-on-linux-running-on-windows-10/,7,3,madspindel,3/29/2016 16:08 +10479383,Tim Ferriss: Why Im Taking a Long Startup Vacation',http://fourhourworkweek.com/2015/10/29/startup-vacation-2/,10,1,randomname2,10/30/2015 17:58 +10897052,Adsvise The ultimate social and digital ad size guide,http://adsvise.com/index.html,1,1,megahz,1/13/2016 20:04 +11955648,You Wont Be Able to Sue the Next Gawker,https://medium.com/@CodyBrown/you-wont-be-able-to-sue-the-next-gawker-e6c8a3900969#.d88ld4f7w,2,2,_audakel,6/22/2016 17:42 +11927414,No-tipping experiment at Costa Mesa restaurants axed,http://www.ocregister.com/articles/bl246m-719532-marin-prices.html,26,85,prostoalex,6/18/2016 6:57 +10340151,Improving My CLI's Autocomplete with Markov Chains,http://nicolewhite.github.io/2015/10/05/improving-cycli-autocomplete-markov-chains.html,19,1,nicolewhite,10/6/2015 16:40 +12420683,Nano to remain in GNU,https://lists.gnu.org/archive/html/nano-devel/2016-08/msg00045.html,145,65,Ianvdl,9/3/2016 19:27 +10524502,Websites can keep ignoring Do Not Track requests after FCC ruling,http://arstechnica.com/business/2015/11/fcc-wont-force-websites-to-honor-do-not-track-requests/,2,1,LeoNatan25,11/7/2015 11:34 +10463866,Phonotactic Reconstruction of Encrypted VoIP Conversations: Hookt on Fon-Iks [pdf],http://wwwx.cs.unc.edu/~kzsnow/uploads/8/8/6/2/8862319/foniks-oak11.pdf,33,1,e12e,10/28/2015 11:52 +11870320,The Prescient Joel on Software,https://medium.com/@firasd/things-i-read-on-joel-on-software-that-came-true-cd201c03cf58,5,1,firasd,6/9/2016 16:12 +11944975,LZFSE compression library and command line tool,https://github.com/lzfse/lzfse,48,19,ingve,6/21/2016 11:40 +12114916,"Chinese $1.24 bln takeover of Norway's Opera fails, but alternative deal set",http://www.reuters.com/article/opera-software-ma-china-idUSFWN1A10HT,1,1,kawera,7/18/2016 13:31 +11456532,"Ask HN: What is the most money a bootstrapped, one-person company has sold for?",,2,2,hoodoof,4/8/2016 17:54 +11615329,Craig Wright Is Not Satoshi Nakamoto,https://www.nikcub.com/posts/craig-wright-is-not-satoshi-nakamoto/,584,248,rdl,5/2/2016 20:32 +12195800,"Many using recent Pangu jailbreak report hacked credit, debit, PayPal accounts",http://9to5mac.com/2016/07/30/pangu-jailbreak-potential-hack/,3,2,MaysonL,7/31/2016 4:57 +11576801,Can an Introvert Ever Change?,https://www.psychologytoday.com/blog/fulfillment-any-age/201604/can-introvert-ever-change,1,1,jakegarelick,4/27/2016 0:00 +12153156,The Incalculable Value of Finding a Job You Love,http://www.nytimes.com/2016/07/24/upshot/first-rule-of-the-job-hunt-find-something-you-love-to-do.html,54,20,sonabinu,7/24/2016 12:38 +11482700,Introducing DataStax Enterprise Graph,http://www.datastax.com/products/datastax-enterprise-graph,2,1,espeed,4/12/2016 19:21 +12114334,Windows 10 a failure by Microsoft's own metric,http://www.theregister.co.uk/2016/07/15/microsoft_wont_hit_billion_win10_devices/,71,105,aceperry,7/18/2016 11:03 +12053768,PNDA: Cisco's big data analytics platform now open source,http://pndaproject.io,6,3,91pavan,7/8/2016 5:52 +11517299,Facebook accused of gagging debate,http://www.theaustralian.com.au/business/technology/facebook-accused-of-gagging-samesex-debate/news-story/d6278508f67d8cfc5ee5efe5147ff378,2,1,chris_wot,4/18/2016 2:04 +10601258,"Show HN: An automated company naming platform, released a free naming tool",https://www.appellita.com/company-name-generator,2,1,daisyegeolu,11/20/2015 14:25 +12328430,Useless Use of Cat Award (2000),http://porkmail.org/era/unix/award.html,10,2,nishs,8/20/2016 21:53 +10652285,"Ask HN: Would quitting my job, to work on a passion project, be a bad idea?",,2,6,Skywing,11/30/2015 22:15 +11580259,Ask HN: Got my first enterprise customer...now what?,,14,10,throwthisawaypl,4/27/2016 13:34 +10708318,Ask HN: What's so special about HN? Why do you hang out here?,,6,19,nonotmeplease,12/10/2015 1:52 +12371608,Vijay Kedia's 10 rules to make ?500crores in the Indian Stock Market,https://2600hertz.wordpress.com/2016/08/27/vijay-kedia-10-inspiring-rules-every-investor-must-know/,1,3,cvs268,8/27/2016 8:50 +11575155,Have Software Developers Given Up?,http://blog.dantup.com/2016/04/have-software-developers-given-up/,460,309,d2p,4/26/2016 20:07 +12519847,Eric Brewer on Why Banks Are BASE Not ACID Availability Is Revenue (2013),http://highscalability.com/blog/2013/5/1/myth-eric-brewer-on-why-banks-are-base-not-acid-availability.html,102,41,mpweiher,9/17/2016 9:39 +11957247,Consumers love for streamed TV keeps growing,http://www.networkworld.com/article/3087496/internet/consumers-love-for-streamed-tv-keeps-growing.html#tk.twt_nww,1,2,stevep2007,6/22/2016 21:41 +11057493,Indian man could be first recorded human fatality due to a meteorite,http://arstechnica.co.uk/science/2016/02/indian-man-could-be-first-recorded-human-fatality-due-to-a-meteorite/,11,1,JacobAldridge,2/8/2016 11:17 +10799255,Where Unwanted Christmas Gifts Get a Second Life,http://www.wsj.com/articles/where-your-unwanted-christmas-gifts-get-a-second-life-1451212201,4,1,prostoalex,12/28/2015 0:29 +11337148,Computing Pi with Peachpie (PHP Compiler to .NET),http://blog.peachpie.io/2016/03/leibniz-pi.html,10,5,pchp,3/22/2016 15:11 +10799328,What is the Birch and Swinnerton-Dyer conjecture?,http://www.math.harvard.edu/~chaoli/doc/BSD.html,33,10,subnaught,12/28/2015 1:04 +12523872,Mass-analyzing a chunk of the Internet: the FTP protocol,http://255.wf/2016-09-18-mass-analyzing-a-chunk-of-the-internet/,4,2,ashitlerferad,9/18/2016 4:00 +11678427,Subversion vs. Git: Myths and Facts,https://svnvsgit.com,29,36,sunraa,5/11/2016 19:24 +11337399,Cross-platform Rust rewrite of the GNU coreutils,https://github.com/uutils/coreutils,548,486,yincrash,3/22/2016 15:47 +10583942,Goo.js WebGL Engine goes open-source,https://github.com/GooTechnologies/goojs,60,7,marcusstenbeck,11/17/2015 21:05 +11944545,Is Faster-Than-Light Travel or Communication Possible? (1997),http://math.ucr.edu/home/baez/physics/Relativity/SpeedOfLight/FTL.html,74,84,neverminder,6/21/2016 9:27 +10565282,"Remote Buddy Display: screen-share Mac from Apple TV, use Siri Remote to control",https://www.iospirit.com/products/remotebuddy/display/,23,5,felix_schwarz,11/14/2015 11:09 +10978838,My Reaction to React,https://pseudoconcurrentthought.wordpress.com/2016/01/26/my-reaction-to-react/,183,139,ingve,1/27/2016 7:54 +12448181,I am a fast webpage,https://varvy.com/pagespeed/wicked-fast.html,621,281,capocannoniere,9/7/2016 21:55 +10722553,Mistakes business students make when founding a startup,https://medium.com/@Mondable/top-10-mistakes-business-students-make-when-founding-a-startup-7f4845315035#.h5f640h5o,73,25,louisswiss,12/12/2015 12:36 +12115409,Learn Vim by watching gifs,http://twitter.com/vimgifs,30,6,mrmrs,7/18/2016 14:59 +10881598,The dying technologies of 2016,http://www.computerworld.com/article/3020339/computer-hardware/the-dying-technologies-of-2016.html,1,2,CrankyBear,1/11/2016 17:01 +10288216,The Twelve-Factor App,http://12factor.net/,21,3,cosmosgenius,9/27/2015 22:56 +11064731,Soylent Dick (SFW),http://nicole.pizza/soylent-dick/?,6,1,revorad,2/9/2016 12:08 +12202346,Multiple OSRAM SYLVANIA Osram Lightify Vulnerabilities (CVE-2016-{5051..5059}),https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059,6,1,djvdorp,8/1/2016 13:53 +10582413,Can Video Games Help Stroke Victims?,http://www.newyorker.com/magazine/2015/11/23/helping-hand-annals-of-medicine-karen-russell,13,1,valhalla,11/17/2015 17:04 +11235976,Iran billionaire Babak Zanjani sentenced to death,http://www.bbc.com/news/world-middle-east-35739377,38,28,sosuke,3/6/2016 22:51 +10377011,Click Analytics- Ready-to-use analytics platform on cloud,http://www.clickanalytics.co.in,1,1,vipulmehta13,10/12/2015 21:19 +12001132,Three Ways to Build an Artificial Kidney,http://spectrum.ieee.org/the-human-os/biomedical/devices/3-ways-to-build-an-artificial-kidney,37,3,mhb,6/29/2016 12:16 +11072239,A Turn in the Capital Cycle,https://medium.com/@alexanderbcampbell/a-turn-in-thecapitalcycle-4fd0b6193579#.4b2w98ev9,4,1,abcampbell,2/10/2016 12:21 +12449297,Explainable Artificial Intelligence (XAI) Darpa Funding,https://www.fbo.gov/index?s=opportunity&mode=form&id=1606a253407e8773bdd1a9e884cc5293,134,40,Dim25,9/8/2016 0:38 +10853866,"Smartflix Access the entire Netflix catalogue, region-free",http://smartflix.io,56,55,calbearia,1/6/2016 21:20 +10517803,I rewrote Firefox's BMP decoder,https://blog.mozilla.org/nnethercote/2015/11/06/i-rewrote-firefoxs-bmp-decoder/,148,49,nnethercote,11/6/2015 4:14 +11654833,Uber is leaving Austin letter,https://medium.com/@hartator/uber-leaving-austin-letter-ed1f14abdd0c#.998u6abxa,21,7,hartator,5/8/2016 17:32 +10502975,"No Pascal, not a SNOBOL's chance. Go Forth!",http://hackaday.com/2015/11/03/no-pascal-not-a-snobols-chance-go-forth/,6,4,szczys,11/3/2015 21:51 +10628664,The Lego Story [video],https://www.youtube.com/watch?v=NdDU_BBJW9Y,2,1,iamwil,11/25/2015 18:26 +12250190,SmartPath (YC S16) Helps Companies Educate Employees on Budgeting and Saving,http://themacro.com/articles/2016/08/smartpath/,3,1,stvnchn,8/8/2016 19:16 +10275319,"Show HN: Safari Blocker: a free, fully customizable content blocker on iOS 9",https://itunes.apple.com/us/app/safari-blocker/id1011678834?ls=1&mt=8,7,4,lukezli,9/24/2015 22:49 +12027432,Ask HN: Why doesn't Facebook let you disable comments like YouTube?,,6,1,millzlane,7/3/2016 20:14 +10443643,"A 1982 double murder and two men accused, convicted, and exonerated of the crime",https://read.atavist.com/whatsoever-things-are-true,27,13,benbreen,10/24/2015 14:09 +10784741,Register for hack.summit() 2016,https://hacksummit.org/2016event,55,10,ionicabizau,12/23/2015 18:24 +11640210,Ask HN: Best way to learn 'modern' C++?,,14,7,zensavona,5/5/2016 22:38 +10377075,Branding and distributing swag like a BOSS,http://startupshirts.org,3,2,DAYz,10/12/2015 21:33 +11001257,Why Bernie Sanders should have kept talking about the Nordics,http://www.thenation.com/article/after-i-lived-in-norway-america-felt-backward-heres-why/,4,4,akafred,1/30/2016 9:37 +12218426,Making Django CMS as easy to install as WordPress,https://www.django-cms.org/en/blog/2016/06/09/making-django-cms-as-easy-to-install-as-wordpress/,212,193,DanieleProcida,8/3/2016 15:03 +12322292,You Wont Believe What Facebook Is Giving Away for Free Now,http://www.wired.com/2016/08/wont-believe-facebook-giving-away-free-now/,5,6,sytelus,8/19/2016 18:32 +10318291,Google's Secret Hiring Tool,http://google.com/foobar,5,2,krat0sprakhar,10/2/2015 13:19 +11576981,This Dumb Industry: In Defense of Crunch,http://www.shamusyoung.com/twentysidedtale/?p=31667,62,59,suraj,4/27/2016 0:33 +11665603,What If Everybody Didn't Have to Work to Get Paid?,http://www.theatlantic.com/business/archive/2015/05/what-if-everybody-didnt-have-to-work-to-get-paid/393428/?utm_source=QuartzFB&single_page=true,5,2,denzil_correa,5/10/2016 7:05 +11462440,Reverse engineering the popular 555 timer chip: CMOS version,http://www.righto.com/2016/04/teardown-of-cmos-555-timer-chip-how.html,63,4,dcschelt,4/9/2016 18:02 +11427020,"TSA actually spent only $47,000 on the random assignment app",http://arstechnica.com/tech-policy/2016/04/tsa-spent-47000-on-an-app-that-just-randomly-picks-lanes-for-passengers/,18,11,capote,4/5/2016 0:57 +10209677,Introduction to Monte Carlo Tree Search,http://jeffbradberry.com/posts/2015/09/intro-to-monte-carlo-tree-search/,173,19,wlkr,9/12/2015 22:57 +12104965,Ask HN: Cheap databases for new projects?,,2,8,kevinsimper,7/16/2016 2:23 +10722674,Microsoft Research wins image recognition competition,http://venturebeat.com/2015/12/10/microsoft-beats-google-intel-tencent-and-qualcomm-in-image-recognition-competition/,166,41,espeed,12/12/2015 13:26 +10365517,Ask HN: Dell pricing of XPS 13 developer notebooks,,4,4,infocollector,10/10/2015 13:53 +11033255,Ask HN: Worth working on a project that you have no direct relationship with?,,3,5,alexcason,2/4/2016 11:18 +10662634,"Compile OCaml to JavaScript, Run on Node","http://hyegar.com/blog/2015/11/05/write-ocaml,-run-on-nodejs/",77,23,antouank,12/2/2015 12:57 +12472838,China Will Resurrect the World's Largest Plane,http://www.popsci.com/china-will-resurrect-worlds-largest-plane?src=SOC&dom=fb&con=Quartz,171,112,prostoalex,9/11/2016 11:03 +11531016,"Dark Web Market Disappears, Users Migrate in Panic, Circle of Life Continues",https://motherboard.vice.com/read/dark-web-market-disappears-users-migrate-in-panic-circle-of-life-continues,4,1,ryan_j_naughton,4/19/2016 22:33 +11338903,Shit VCs Say,http://www.buzzfeed.com/westleyargentum/stuff-vcs-say#.acwV66Zjw,6,1,Argentum01,3/22/2016 18:47 +11518680,The Black Death: The Greatest Catastrophe (2005),http://www.historytoday.com/ole-j-benedictow/black-death-greatest-catastrophe-ever,160,159,dmlhllnd,4/18/2016 9:36 +11791103,"How Can We Make You Happy Today, Peter Thiel?",http://www.wired.com/2016/05/three-cheers-for-peter-thiel/,12,2,dauna,5/28/2016 9:52 +11707548,Winding down the Swift 3 release,http://thread.gmane.org/gmane.comp.lang.swift.evolution/17276,70,63,milen,5/16/2016 16:42 +11396345,Show HN: Expounder A small JavaScript library for more engaging tutorials,https://skorokithakis.github.io/expounder/,134,48,StavrosK,3/31/2016 11:28 +12473132,A prototype of a decentralized political party,https://hack.ether.camp/idea/a-prototype-of-a-decentralized-political-party,69,35,lamito,9/11/2016 12:58 +10482242,FBIs Advice on Ransomware? Just Pay the Ransom,https://securityledger.com/2015/10/fbis-advice-on-cryptolocker-just-pay-the-ransom/,72,73,rubikscube,10/31/2015 9:39 +11749580,One must imagine Sisyphus LOL-ing,https://medium.com/@visakanv/one-must-imagine-sisyphus-lol-ing-565f2bad0340#.4tmg83pz6,1,1,visakanv,5/22/2016 18:07 +12509830,Career Guide: How to get into tech after college without a CS Degree,https://medium.com/startup-grind/undergrad-trying-to-break-into-tech-with-no-technical-background-1c9ff458f38a,6,2,capaxinfinity,9/15/2016 21:05 +10525794,Yale Students Demand Resignations from Faculty Members Over Halloween Email,https://www.thefire.org/yale-students-demand-resignations-from-faculty-members-over-halloween-email/,13,3,randomname2,11/7/2015 18:56 +10266184,The Apple bias is real,http://www.theverge.com/2015/9/23/9381325/apple-bias-iphone-reviews-day,4,3,dilly_li,9/23/2015 16:50 +10680901,Ask HN: What are the best books on creating a programming language?,,20,18,sdegutis,12/5/2015 4:41 +12048223,EU regulations on algorithmic decision-making and a right to explanation,http://arxiv.org/abs/1606.08813,104,119,pmlnr,7/7/2016 8:52 +10557620,Rescuing Our Audio History from Melting,http://nautil.us/blog/how-chemistry-is-rescuing-our-audio-history-from-melting,15,5,dnetesn,11/13/2015 2:13 +12483028,Solving All the Wrong Problems,http://www.nytimes.com/2016/07/10/opinion/sunday/solving-all-the-wrong-problems.html,121,113,joeyespo,9/12/2016 19:46 +10322500,Hey guys - What do you think of our startup?,http://www.onoise.com,1,2,jakeallston,10/3/2015 3:41 +11460027,Bing just became the best search engine for developers,http://thenextweb.com/dd/2016/04/08/bing-just-became-best-search-engine-developers/,3,1,preetish,4/9/2016 5:08 +12063588,Genetic evidence for natural selection in humans in the contemporary USA,http://biorxiv.org/content/early/2016/05/05/037929,80,72,gwern,7/9/2016 22:15 +11355954,Y Combinator gets friendlier by naming Justin Kan as new spokesperson,http://techcrunch.com/2016/03/24/y-kanbinator/,2,1,rezist808,3/24/2016 20:01 +12239280,Ask HN: My infosec auditor rejects open source. What now?,,33,17,_ix,8/6/2016 18:34 +10205046,Every software engineer should have a blog,http://www.bobbylough.com/2015/06/start-your-own-blog-today.html,5,8,hibobbo,9/11/2015 17:38 +11531507,"Show HN: Manygolf, massively multiplayer Desert Golfing in a browser",http://manygolf.disco.zone/,7,3,avolcano,4/20/2016 0:19 +10285612,The 10 year journey of a solo game developer,http://gamasutra.com/blogs/CarletonDiLeo/20150925/254610/Wordsum_Postmortem__The_10_year_journey_of_a_solo_game_developer.php,47,8,cbdileo,9/27/2015 5:47 +10720145,Serverless image resizing,https://cloudonaut.io/serverless-image-resizing-at-any-scale/,6,2,hellomichibye,12/11/2015 21:24 +12231095,"Ask HN: Life coach idea, need your input",,2,7,ranaway,8/5/2016 10:05 +11038969,Homejoy back as Homeaglow,http://Www.homeaglow.com,55,50,dawhizkid,2/5/2016 2:20 +11060159,Startup Trading Cards,https://www.kickstarter.com/projects/1727967384/842327343,6,2,chukmoran,2/8/2016 19:05 +10987004,On the reception and detection of pseudo-profound bullshit,http://journal.sjdm.org/15/15923a/jdm15923a.html,5,1,nyodeneD,1/28/2016 8:07 +12077621,How to stay anonymous online,https://news.mit.edu/2016/stay-anonymous-online-0711,37,5,secfirstmd,7/12/2016 8:46 +10653735,Why CardDAV took so long,https://blog.fastmail.com/2015/12/01/a-tangled-path-of-workarounds/,176,67,masnick,12/1/2015 5:06 +11829049,10x more selective,http://yosefk.com/blog/10x-more-selective.html,3,1,pw,6/3/2016 8:32 +11926235,"Startups and immigration: Myths, lies and half-truths",https://techcrunch.com/2016/06/17/startups-and-immigration-myths-lies-and-half-truths/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29,1,2,prostoalex,6/17/2016 23:48 +11239632,"Show HN: Go, Docker, and AWS ECS hosted publisher tool",http://blockbust.io/,5,1,volker48,3/7/2016 16:12 +11911775,How Yahoo derailed Tumblr,http://mashable.com/2016/06/15/how-yahoo-derailed-tumblr/,12,1,gchucky,6/15/2016 20:06 +10289755,Highway Will Recharge Your Batteries as You Drive,http://spectrum.ieee.org/cars-that-think/transportation/advanced-cars/british-highway-will-recharge-your-batteries-as-you-drive,33,26,SQL2219,9/28/2015 10:52 +12491019,The Chevrolet Bolt Has Totally Trumped Teslas Model 3,https://www.technologyreview.com/s/602365/the-chevrolet-bolt-has-totally-trumped-teslas-model-3/,5,4,smacktoward,9/13/2016 18:33 +10908995,Netflix: Dynomite with Redis on AWS Benchmarks,http://techblog.netflix.com/2016/01/dynomite-with-redis-on-aws-benchmarks_14.html,2,1,bytesandbots,1/15/2016 12:59 +11480205,Just Delete Me,http://justdelete.me/,15,5,dudul,4/12/2016 15:10 +11369860,You Have Ruined Build Systems,http://you-have-ruined-build-systems.surge.sh/,2,1,josep2,3/27/2016 13:15 +10623086,The Culture of NYC Is Being Destroyed,https://medium.com/@julia.geist/the-culture-of-nyc-is-being-destroyed-bded96124e82#.kqio4rb02,8,10,juliascript,11/24/2015 19:44 +10683521,GCC 5.3 Released,https://gcc.gnu.org/ml/gcc/2015-12/msg00056.html,5,2,Tsiolkovsky,12/5/2015 22:34 +10552187,Facebook is now scanning your photos to make sure you send them to your friends,https://finance.yahoo.com/news/facebook-now-scanning-cameras-photos-222321479.html,148,112,Sami_Lehtinen,11/12/2015 9:50 +11923813,"A Map of Europe, Reconstructed Entirely from the Genomes of Europeans",http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2735096/figure/F1/,2,2,moultano,6/17/2016 17:04 +11074886,Wickr is a messaging platform designed to give control over security to users,https://www.wickr.com/how-wickr-works/,6,6,mapleoin,2/10/2016 18:41 +10255071,Ask HN: How big effort do you think building a top quality OS would be?,,2,3,Numberwang,9/21/2015 20:55 +10641408,"Super Glue Built Planes, Nukes and Saved Soldiers Lives",http://warisboring.com/articles/super-glue-built-planes-nukes-and-saved-soldiers-lives/,17,2,vinnyglennon,11/28/2015 16:10 +11085550,"Without affordable housing, Vancouver risks becoming an economic ghost town",http://business.financialpost.com/entrepreneur/fp-startups/without-affordable-housing-vancouver-risks-becoming-an-economic-ghost-town,279,316,eigenvector,2/12/2016 5:46 +10198178,Ask HN: How to stop procrastination?,,4,1,botw,9/10/2015 14:22 +12553858,How to build a business around an open source project?,,16,6,hooverlunch,9/22/2016 2:18 +10360852,Getting to Antarctica,http://www.projectmidas.org/blog/getting-to-antarctica/,40,5,mewo2,10/9/2015 15:50 +12224752,Show HN: Simple Responsive HTML Email Template v1.0,http://github.com/leemunroe/responsive-html-email-template,3,2,fonziguy,8/4/2016 11:16 +10621944,SPACEWAR: Fanatic Life and Symbolic Death Among the Computer Bums (1972),http://www.wheels.org/spacewar/stone/rolling_stone.html,34,1,edward,11/24/2015 17:01 +10881270,Warning over drones use by terrorists,http://www.bbc.co.uk/news/technology-35280402,2,2,rlpb,1/11/2016 16:15 +11032257,Ask HN: Making the switch from physics to industry?,,10,10,phystoind,2/4/2016 5:46 +10595181,Telegram bans public ISIS channels,https://www.washingtonpost.com/news/morning-mix/wp/2015/11/19/founder-of-app-used-by-isis-once-said-we-shouldnt-feel-guilty-on-wednesday-he-banned-their-accounts/?hpid=hp_no-name_morning-mix-story-e%3Ahomepage%2Fstory,148,90,dak1,11/19/2015 15:15 +11012222,I bought my mom a Chromebook Pixel and everything is so much better now,http://www.theverge.com/2016/2/1/10884918/i-bought-my-mom-a-chromebook-pixel-the-divergence,14,1,webwanderings,2/1/2016 15:26 +10578845,"Introducing EdgeHTML 13, our first platform update for Microsoft Edge",http://blogs.windows.com/msedgedev/2015/11/16/introducing-edgehtml-13-our-first-platform-update-for-microsoft-edge/,2,1,dcw303,11/17/2015 2:37 +10534349,Ask HN: How do I start an analytics consulting company?,,6,4,tixocloud,11/9/2015 17:24 +10806268,Ask HN: Why WordPress is still using SVN?,,3,3,ziodave,12/29/2015 11:51 +10983192,EA Drops Out of E3,http://fortune.com/2016/01/27/ea-drops-out-of-e3/?xid=yahoo_fortune,2,1,shawndumas,1/27/2016 20:50 +10619686,Understanding CPU caching and performance,http://arstechnica.com/gadgets/2002/07/caching/,18,1,jimsojim,11/24/2015 8:10 +10556964,"America's poorest white town: abandoned by coal, swallowed by drugs",http://www.theguardian.com/us-news/2015/nov/12/beattyville-kentucky-and-americas-poorest-towns,139,44,dthal,11/12/2015 23:33 +10757441,Blackberry CEO says Apple has gone to a dark place with pro-privacy stance,http://arstechnica.com/tech-policy/2015/12/blackberry-ceo-says-apple-has-gone-to-dark-place-with-pro-privacy-stance/,8,2,sbuk,12/18/2015 8:54 +11139022,Spotify vs. OllyDbg (2009),http://www.steike.com/code/spotify-vs-ollydbg/,3,1,option_greek,2/20/2016 5:28 +10322572,22 tips on how to operate a trade show booth,http://calacanis.com/2009/09/08/22-tips-on-how-to-operate-a-trade-show-booth/,2,1,sagivo,10/3/2015 4:15 +10806658,"Posture Affects Standing, and Not Just the Physical Kind",http://mobile.nytimes.com/blogs/well/2015/12/28/posture-affects-standing-and-not-just-the-physical-kind/,89,31,petethomas,12/29/2015 13:59 +11563191,The FBI is working hard to keep you unsafe,http://techcrunch.com/2016/04/23/the-fbi-is-working-hard-to-keep-you-unsafe/,93,73,colincarter41,4/25/2016 9:14 +10877616,Yahoos Brain Drain Shows a Loss of Faith Inside the Company,http://www.nytimes.com/2016/01/11/technology/yahoos-brain-drain-shows-a-loss-of-faith-inside-the-company.html?,151,142,scottfr,1/10/2016 22:48 +11464098,Reverse engineering a router part 1 Hunting for hardware debug ports,http://jcjc-dev.com/2016/04/08/reversing-huawei-router-1-find-uart/,8,1,ernesto-jimenez,4/10/2016 0:14 +10617016,Work from a virtual office...in space!,https://www.sococo.com/,2,1,INTPnerd,11/23/2015 20:17 +11778309,Swift Hack Probe Expands to Up to a Dozen Banks Beyond Bangladesh,http://www.bloomberg.com/news/articles/2016-05-26/swift-hack-probe-expands-to-up-to-dozen-banks-beyond-bangladesh,24,4,petethomas,5/26/2016 14:43 +12038896,Theranos faces congressional inquiry over faulty blood tests,https://techcrunch.com/2016/07/05/theranos-faces-congressional-inquiry-over-faulty-blood-tests/,6,1,jackgavigan,7/5/2016 19:30 +10593371,What Is Cuneiform?,http://www.smithsonianmag.com/history/what-heck-cuneiform-anyway-180956999/?no-ist,10,1,CrocodileStreet,11/19/2015 7:56 +11063394,What's holding back the world economy?,http://www.theguardian.com/business/2016/feb/08/whats-holding-back-world-economy-joseph-e-stiglitz?CMP=oth_b-aplnews_d-1,67,56,akg_67,2/9/2016 5:50 +11231988,"Learning how to write a 3D engine from scratch in C#, TypeScript or JavaScript (2013)",https://blogs.msdn.microsoft.com/davrous/2013/06/13/tutorial-series-learning-how-to-write-a-3d-soft-engine-from-scratch-in-c-typescript-or-javascript/,251,36,adamnemecek,3/6/2016 1:14 +11999589,Friends don't let friends do Java,http://www.teale.de/blog/friends-dont-let-friends-do-java.html,73,33,0xmohit,6/29/2016 4:59 +10885361,"An Old-Media Empire, Axel Springer Reboots for the Digital Age",http://www.nytimes.com/2015/12/21/business/media/an-old-media-empireaxel-springer-reboots-for-the-digital-age.html?_r=3,10,6,walterbell,1/12/2016 3:18 +10804503,Legal tech is worth billions. This startup is diving in,https://www.techinasia.com/fiscalnote-legal-tech-asia-expansion,2,1,williswee,12/29/2015 1:07 +12038173,Distinguishing Cause From Effect Using Observational Data,https://medium.com/the-physics-arxiv-blog/cause-and-effect-the-revolutionary-new-statistical-test-that-can-tease-them-apart-ed84a988e#.80rcx6pq8,41,9,cyang08,7/5/2016 17:46 +12162291,A dynamic window manager for X11 written with Node.js,http://mixu.net/nwm/,53,52,g4k,7/25/2016 23:17 +10542662,Ask HN: Are there any auctioning algorithms?,,2,1,gradinaru_alex,11/10/2015 21:30 +11510191,White House Source Code Policy a Big Win for Open Government,https://www.eff.org/deeplinks/2016/04/white-house-source-code-policy-big-win-open-government,133,14,DiabloD3,4/16/2016 11:27 +11532129,Ask HN: Can/should we resubmit links?,,2,2,haack,4/20/2016 3:46 +11094207,Top contributors to React (JS),https://medium.com/@briskat/react-js-contributor-stats-deaf26993ec2,2,2,briskat,2/13/2016 15:13 +10765568,Apple crashes into bear market: $160B gone,http://www.usatoday.com/story/money/markets/2015/12/18/apple-bear-market-aapl/77560080/,4,1,grubles,12/20/2015 0:51 +11690053,Apples iPhone 7 Plus will reportedly have two rear cameras and 3GB RAM,http://www.theverge.com/2016/5/11/11658846/iphone-7-plus-rumor-dual-camera-3gb-of-ram,2,1,abhi3,5/13/2016 12:46 +12409512,How Political Correctness Chills Speech on Campus,http://www.theatlantic.com/politics/archive/2016/09/what-it-looks-like-when-political-correctness-chills-speech-on-campus/497387/?single_page=true,6,1,paulpauper,9/1/2016 23:07 +12526349,What Can Hitters Actually See Out of a Pitchers Hand?,http://www.fangraphs.com/blogs/what-can-hitters-actually-see-out-of-a-pitchers-hand/,121,74,how-about-this,9/18/2016 18:10 +11283272,Show HN: Watch UX experts help startups [video series],http://ExposeUX.com,3,1,richardbrevig,3/14/2016 15:14 +12542662,Five Types of Virality,https://news.greylock.com/the-five-types-of-virality-8ba42051928d#.tuzmxnyz7,55,18,ismdubey,9/20/2016 19:43 +10678377,Automata Memory Processor Points to Future Systems,http://www.nextplatform.com/2015/12/03/2304/,40,11,Katydid,12/4/2015 19:12 +12040255,Show HN: Fabulous: Print images in terminal with Python,https://jart.github.io/fabulous/,19,13,jart,7/5/2016 23:34 +11675025,Show HN: Clyp the easiest way to upload and share audio (no account required),https://clyp.it,16,2,jpatapoff,5/11/2016 13:27 +10554219,Ask HN: Why does Reddit hate my startup while loving HN favs like StartupLister?,,2,9,booruguru,11/12/2015 16:43 +10636312,Listening to satellites for $30,http://blog.nobugware.com/post/2015/listening_to_satellites_for_30_dollars/,191,36,moises_silva,11/27/2015 7:44 +11946453,JPEG to WebP Comparing Compression Sizes,https://optimus.keycdn.com/support/jpg-to-webp/,5,2,brianjackson,6/21/2016 15:35 +10698537,Reflections on Trusting Trust annotated,http://fermatslibrary.com/s/reflections-on-trusting-trust,41,16,joaobatalha,12/8/2015 19:02 +11114673,Wanted by the U.S.: The Stolen Millions of Despots and Crooked Elites,http://www.nytimes.com/2016/02/17/business/wanted-by-the-us-the-stolen-millions-of-despots-and-crooked-elites.html,1,1,nols,2/17/2016 2:07 +10542880,Generator that outputs Countries data in various formats (written in React.js),https://echobehind.wordpress.com/2015/11/10/using-react-for-an-open-source-generator-of-custom-countries-data/,1,1,pericd,11/10/2015 21:59 +10709601,Domain loccal.com: does somebody want to use it?,,5,3,blaincate,12/10/2015 8:37 +12352214,Zeading The best place to read the stories you love,http://www.zeading.com,2,1,shival,8/24/2016 14:23 +10804419,Conceptual Debt Is Worse Than Technical Debt,https://medium.com/@nicolaerusan/conceptual-debt-is-worse-than-technical-debt-5b65a910fd46,191,104,nicoslepicos,12/29/2015 0:44 +10714353,Why doesnt findstr use the standard regular expression library?,https://blogs.msdn.microsoft.com/oldnewthing/20151209-00/?p=92361,1,1,AndrewDucker,12/10/2015 23:18 +10573487,Strict Haskell Extension Landed,https://github.com/ghc/ghc/commit/46a03fbec6a02761db079d1746532565f34c340f,2,1,tene,11/16/2015 9:43 +10885763,Why success is really more luck than hard work,https://www.techinasia.com/talk/success-luck-hard-work,12,7,williswee,1/12/2016 5:42 +11751914,"Just a Puzzle Game A new mobile game, definitely Not a sinister conspiracy",https://play.google.com/store/apps/details?id=com.justapuzzlegame,1,1,psloth,5/23/2016 4:40 +10234784,Announcing Rust 1.3,http://blog.rust-lang.org/2015/09/17/Rust-1.3.html,205,38,steveklabnik,9/17/2015 17:27 +11141125,Cheap BlueTooth Buttons and Linux,https://shkspr.mobi/blog/2016/02/cheap-bluetooth-buttons-and-linux/,113,29,edent,2/20/2016 18:07 +10919371,"Sarah Parcak, Space Archaeologist",http://www.wsj.com/articles/sarah-parcak-space-archaeologist-1452887899,19,5,petethomas,1/17/2016 13:19 +12017479,"Mislabeled as a Memoirist, Author Asks: Whose Work Gets to Be Journalism?",http://www.npr.org/sections/codeswitch/2016/07/01/484166871/mislabeled-as-a-memoirist-author-asks-whose-work-gets-to-be-journalism,77,25,samclemens,7/1/2016 16:25 +10754181,Microsoft Preps Alternate JavaScript Engine for Node.js,http://thenewstack.io/microsoft-chakra-javascript-engine-node/,1,1,nfriedly,12/17/2015 20:14 +11148876,She Created Netflix's Culture and It Ultimately Got Her Fired,http://www.fastcompany.com/3056662/the-future-of-work/she-created-netflixs-culture-and-it-ultimately-got-her-fired,2,1,_nh_,2/22/2016 6:06 +10269676,"The Vegetable Detective, Take Two",http://craftsmanship.net/the-vegetable-detective-take-two/,7,1,jdnier,9/24/2015 3:31 +11451189,Doom Creator John Carmack Honoured with Bafta,http://www.bbc.co.uk/news/technology-35992991,90,30,Audiophilip,4/7/2016 22:26 +11674241,Carl Icahn is Betting on a Stock Market Crash,http://fortune.com/2016/05/10/carl-icahn-crash-stock/,125,139,yonibot,5/11/2016 11:22 +11246800,Would you use an app that splits your restaurant bill by privilege?,http://qz.com/632803/would-you-use-an-app-that-splits-your-restaurant-bill-by-privilege/,1,1,Kinnard,3/8/2016 17:29 +11064061,"A California ghost town can have fiber to the doorstep, but its not easy",http://arstechnica.com/information-technology/2016/01/today-a-california-ghost-town-can-have-fiber-to-the-doorstep-but-its-not-easy/,59,55,nkurz,2/9/2016 9:01 +10214246,Tool-Up Time: The Very Best Front-End Developer Tools in 2015,http://blog.debugme.eu/front-end-developer-tools/,2,1,SLaszlo,9/14/2015 9:28 +11001818,It's Coming: The Great Swift API Transformation,https://swift.org/blog/swift-api-transformation/,163,25,ceeK,1/30/2016 14:02 +11492227,Astronomers in South Africa discover mysterious alignment of black holes,https://www.ras.org.uk/news-and-press/2816-astronomers-in-south-africa-discover-mysterious-alignment-of-black-holes,10,2,r721,4/13/2016 21:07 +10232909,Were Bad at Interviewing Developers Interview with Kerri Miller,http://blog.fogcreek.com/were-bad-at-interviewing-developers-and-how-to-fix-it-interview-with-kerri-miller/,87,96,GarethX,9/17/2015 12:24 +11840510,"Ask HN: Advices, Literrature, hacks for prepping to be a parent",,2,2,m4nu,6/5/2016 11:55 +11492318,Number of Driven Miles to Demonstrate Autonomous Car Safety,http://www.rand.org/pubs/research_reports/RR1478.html,2,1,aetherson,4/13/2016 21:21 +12337150,Higher-kinded types: the difference between giving up and moving forward,http://typelevel.org/blog/2016/08/21/hkts-moving-forward.html,139,56,dmit,8/22/2016 15:47 +10246040,Show HN: Redux-undo-boilerplate with hot reloading and error handling,https://github.com/omnidan/redux-undo-boilerplate#redux-undo-boilerplate,20,6,omnidan,9/20/2015 0:14 +11115497,The New Adobe ColdFusion,http://blogs.adobe.com/conversations/2016/02/the-all-new-adobe-coldfusion-is-here.html,19,8,deathtrader666,2/17/2016 5:15 +10593791,Twitter.com is down: 503 OK,https://twitter.com/?down,12,1,gadr90,11/19/2015 9:52 +10682971,Show HN: Lego A Let's Encrypt Library and CLI in Go,https://github.com/xenolf/lego,93,26,xenolf,12/5/2015 19:30 +11743217,Show HN: Leavethe.us search jobs by keyword in 50+ countries,http://leavethe.us,21,2,fibbery,5/21/2016 4:33 +12298032,Pennsylvania Is the Latest State to Tax Streaming Services,http://www.billboard.com/biz/articles/7469636/pennsylvania-is-the-latest-state-to-tax-streaming-services,35,22,6stringmerc,8/16/2016 15:22 +11703372,Linux 4.6 is out,https://lwn.net/Articles/687511/,228,83,tshtf,5/15/2016 23:56 +11010964,Show HN: Everything about your movies from the command line,https://github.com/iCHAIT/moviemon,9,1,iCHAIT,2/1/2016 10:38 +10320399,All iPhone 6s reviews miss this crucial point about hidden tricks in 3D iMessage,http://www.alexcornell.com/apple-iphone-6s-review/,2,3,alexcornell,10/2/2015 18:38 +11486005,City of San Francisco says it's illegal to live in a box,http://www.sfgate.com/realestate/article/Box-living-Peter-Berkowitz-pod-San-Francisco-7243988.php,25,18,outside1234,4/13/2016 5:38 +12539867,Ask HN: Your experience with a dedicated test team?,,5,4,maramono,9/20/2016 14:42 +10407081,Modern-day hunter-gatherers dispel notion that were wired to need 8hrs,https://www.washingtonpost.com/news/to-your-health/wp/2015/10/16/sleep-study-on-modern-day-hunter-gatherers-dispels-notion-that-were-wired-to-need-8-hours-a-day/?wpmm=1&wpisrc=nl_evening,2,1,shawndumas,10/18/2015 3:12 +10771230,Most people wont. Which means those that do change everything,https://medium.com/@bryce/most-people-won-t-ff0959cdefc6#.541igq258,14,2,yarapavan,12/21/2015 14:41 +10794759,SerialUSB a cheap USB proxy for input devices,http://blog.gimx.fr/serialusb/,101,17,DanBC,12/26/2015 18:26 +11294078,DeepGram (YC W16) Is Building a Google for Audio,http://blog.ycombinator.com/deepgram-yc-w16-is-building-a-google-for-audio,41,28,ascertain,3/16/2016 0:20 +10339772,The Quietest Place in the Universe: Digging for dark matter in an abandoned mine,http://harpers.org/archive/2015/05/the-quietest-place-in-the-universe/,16,1,Hooke,10/6/2015 15:56 +12280780,Learn to code: This is the future. My thoughts,http://cyberomin.github.io/tech/2016/08/13/learn-to-code.html.,1,1,cyberomin,8/13/2016 8:42 +11962357,Brillo Common Kernel,https://android.googlesource.com/device/generic/brillo/+/master/docs/KernelDevelopmentGuide.md,15,1,drv,6/23/2016 16:40 +10444844,Ask HN: Do you listen music while programming??,,22,26,christopherDam,10/24/2015 20:58 +11046546,"Edgar D. Mitchell, Sixth Moonwalking Astronaut, Dies at 85",http://www.nytimes.com/2016/02/06/science/space/edgar-d-mitchell-sixth-moonwalking-astronaut-dies-at-85.html,94,33,NaOH,2/6/2016 4:24 +11490051,The Theory of Concatenative Combinators,http://tunes.org/~iepos/joy.html,3,5,vmorgulis,4/13/2016 17:04 +11749338,Interactive Algorithm Visualizer,http://jasonpark.me/AlgorithmVisualizer,144,9,nimitkalra,5/22/2016 17:07 +12263181,Realtime Data Processing at Facebook,https://research.facebook.com/publications/realtime-data-processing-at-facebook/,5,1,codepie,8/10/2016 16:54 +11590262,Let the nature sing you a lullaby while coding hard (or relaxing after work),http://defonic.ovh/?tunes,1,1,connecticum,4/28/2016 16:57 +10873877,Magical Realism on Drugs: Colombian History in Netflixs Narcos (2015),https://notevenpast.org/magical-realism-on-drugs-colombia-in-netflixs-narcos/,25,10,Thevet,1/10/2016 2:32 +12284926,React is mostly hype,http://en.arguman.org/react-is-mostly-hype,130,127,TruthyOne,8/14/2016 9:12 +11579710,"The invisible language of trains, boats, and planes",http://www.bbc.com/future/story/20160426-the-invisible-language-of-trains-boats-and-planes,64,8,williamhpark,4/27/2016 12:22 +10950485,ACH File Parser,,2,2,mortizbey,1/22/2016 3:02 +10524856,Ask HN: Is the Atom good enough to use?,,2,11,mrnoname,11/7/2015 14:27 +12385051,Browser Bloat (1996),http://www.miken.com/winpost/jun96/bbloat.htm,118,82,laktak,8/29/2016 20:30 +12043736,Math and Recursion = Art,http://koaning.io/fluctuating-repetition.html,4,1,javinpaul,7/6/2016 15:33 +10914079,Ask HN: What book changed your life in 2015?,,28,15,anildigital,1/16/2016 3:26 +10619830,Pilot's eye damaged by 'military' laser shone into cockpit at Heathrow,http://www.theguardian.com/world/2015/nov/23/ba-pilots-eye-damaged-by-military-laser-shone-into-cockpit-at-heathrow,3,3,jahnu,11/24/2015 9:07 +11388069,Modular CSS for Web Components ? the VCL Is Here,http://vcl.github.io/,59,27,vanthome,3/30/2016 9:34 +11979652,Ask HN: Immutable data structures for the back end?,,3,7,uptownhr,6/26/2016 6:37 +11921928,Animate Pixel Art and get CSS,https://github.com/jvalen/pixel-art-react,3,1,jvalen,6/17/2016 11:12 +11220675,"Samsung ships the world's highest capacity SSD, with 15TB of storage",http://www.computerworld.com/article/3040208/data-storage/samsung-ships-the-worlds-highest-capacity-ssd-with-15tb-of-storage.html?nsdr=true,266,140,elorant,3/3/2016 22:48 +10780662,"RethinkDB and JVM: Querying with Scala, Clojure, Groovy, and Kotlin",http://rethinkdb.com/blog/alt-jvm-driver/,3,1,coffeemug,12/22/2015 22:01 +10873670,"This scary, dangerous part of self-driving cars is completely unknown to most",http://www.morningticker.com/2016/01/this-scary-dangerous-part-of-self-driving-cars-is-completely-unknown-to-most/,1,1,ourmandave,1/10/2016 1:15 +10771103,The Surprising Startup Hub That's Second Only to Silicon Valley,http://www.inc.com/paul-grossinger/the-surprising-startup-hub-thats-second-only-to-silicon-valley.html,11,6,henrik_w,12/21/2015 14:11 +10715598,GDL GNU Data Language,http://gnudatalanguage.sourceforge.net/,13,3,mindcrime,12/11/2015 5:28 +10806318,"To Fall in Love with Anyone, Do This",http://www.nytimes.com/2015/01/11/fashion/modern-love-to-fall-in-love-with-anyone-do-this.html?action=click&contentCollection=Business%20Day&module=MostPopularFB&version=Full®ion=Marginalia&src=me&pgtype=article,172,49,speaker5,12/29/2015 12:05 +11630267,"May the fourth, telnet towel.blinkenlights.nl",,1,1,Sharma,5/4/2016 18:00 +10812223,Using AWS Lambda Functions to Create Print Ready Files,http://highscalability.com/blog/2015/12/28/using-aws-lambda-functions-to-create-print-ready-files.html,3,1,neogenix,12/30/2015 14:48 +12287910,"Python 3.5 Async IO, Matmul and Unpack Features for PyPy: Only Bug Fixes Left",http://pypy35syntax.blogspot.com/2016/08/only-bug-fixes-left.html,33,1,sheng,8/15/2016 0:10 +12076685,Fortune and Failure in Silicon Valley,http://www.nytimes.com/2016/07/10/books/review/chaos-monkeys-by-antonio-garcia-martinez.html?ref=technology&_r=0,2,1,ljw1001,7/12/2016 4:12 +10979907,Around the World in 33 Keyboards,http://thebrainfever.com/apple/around-the-world-in-33-keyboards,41,68,lelf,1/27/2016 13:32 +10921459,The Tennis Racket,http://www.buzzfeed.com/heidiblake/the-tennis-racket,140,72,jsvine,1/17/2016 22:45 +12283595,Climbing the infinite ladder of abstraction,https://lexi-lambda.github.io/blog/2016/08/11/climbing-the-infinite-ladder-of-abstraction/,77,24,dkarapetyan,8/13/2016 23:34 +10613725,Scala.js has a new website,http://www.scala-js.org/,71,30,lihaoyi,11/23/2015 10:04 +10980967,"A faster, more stable Chrome on iOS",http://blog.chromium.org/2016/01/a-faster-more-stable-chrome-on-ios.html,5,1,robin_reala,1/27/2016 16:33 +11971011,Brexit polling: What went wrong?,http://andrewgelman.com/2016/06/24/brexit-polling-what-went-wrong/,3,3,sndean,6/24/2016 16:19 +11239305,World Trade Center Elevator Video,https://www.youtube.com/watch?v=cKTPaqbXrAY&feature=youtu.be,2,1,uptown,3/7/2016 15:15 +11827005,A Conversation About Fantasy User Interfaces,https://www.subtraction.com/2016/06/02/a-conversation-about-fantasy-user-interfaces/,89,19,bootload,6/2/2016 23:22 +10376171,A General Feedback Theory of Human Behavior (1960),http://www.amsciepub.com/doi/pdf/10.2466/pms.1960.11.1.71,11,1,amatic,10/12/2015 18:21 +10875183,HipCat Pipe command output to HipChat from your terminal,https://github.com/judy2k/hipcat,5,3,judy2k,1/10/2016 13:11 +10294833,"Let a thousand flowers bloom, then rip 999 of them out",http://www.gigamonkeys.com/flowers/,231,122,logic,9/29/2015 6:01 +10311480,Could a Bank Deny Your Loan Based on Your Facebook Friends?,http://www.theatlantic.com/technology/archive/2015/09/facebooks-new-patent-and-digital-redlining/407287/?single_page=true,2,1,tjr,10/1/2015 14:46 +10388639,How Steady Can Wind Power Blow?,http://rameznaam.com/2015/08/30/how-steady-can-the-wind-blow/,16,15,ph0rque,10/14/2015 19:02 +11363084,Show HN: Steve Jobs Tribute Page,http://jorgesanz.xyz/2016/03/25/website-steve-jobs-tribute-page/,5,7,jorgesanzpe,3/25/2016 22:12 +11044030,"VeryNginx OpenResty-Based Nginx with WAF, Control Panel, and Dashboards",https://github.com/alexazhou/VeryNginx,38,7,nikolay,2/5/2016 19:40 +12501573,How does HN deal with programmer's block?,,2,4,retbull,9/14/2016 22:01 +12465298,Tiny Lisp Computer,http://www.technoblogy.com/show?1GX1,153,25,jabits,9/9/2016 19:20 +11934826,Were pretty happy with SQLite and not urgently interested in a fancier DBMS,http://beets.io/blog/sqlite-performance.html,397,146,samps,6/19/2016 21:42 +12179339,"Scipy Lecture Notes Learn numerics, science, and data with Python",http://www.scipy-lectures.org/,473,17,kercker,7/28/2016 10:00 +10373876,Prize in Economic Sciences 2015 Angus Deaton,http://www.nobelprize.org/nobel_prizes/economic-sciences/laureates/2015/press.html,14,1,KC8ZKF,10/12/2015 11:44 +11384800,What Every Developer Should Know About CouchDB,http://www.dimagi.com/blog/what-every-developer-should-know-about-couchdb/,2,1,colaughlin,3/29/2016 20:55 +11128159,Show HN: Production-ready Django on Docker,https://github.com/morninj/django-docker,6,3,morninj,2/18/2016 18:44 +10232025,PeachPy: Assembly Code Generation in High-Level Python,https://github.com/Maratyszcza/PeachPy,116,29,shagunsodhani,9/17/2015 7:20 +12372116,"The EpiPen, a Case Study in Health System Dysfunction",http://www.nytimes.com/2016/08/24/upshot/the-epipen-a-case-study-in-health-care-system-dysfunction.html,44,66,ChazDazzle,8/27/2016 12:47 +10826505,Happy 1.5B Unix Seconds,http://motherboard.vice.com/read/happy-15-billion-unix-seconds,2,1,daegloe,1/2/2016 15:52 +11164239,Life after Parse 3 awesome alternatives,https://www.codementor.io/development-process/tutorial/what-to-do-after-parse-shuts-down,5,2,weitingliu,2/24/2016 3:03 +12260937,Show HN: Famous brands reviews stats,https://feedcheck.co/widgets?ref=hn,4,3,adibalcan,8/10/2016 11:50 +10648800,"Telegram.org Bot Platform Webhooks Server, for Rubyists",https://github.com/solyaris/BOTServer,3,1,pmontra,11/30/2015 11:03 +11625205,Any funny *nix one-liners,https://unix.stackexchange.com/questions/1716/any-funny-nix-one-liners,2,1,tesla23,5/3/2016 23:59 +11433903,Apple and WebRTC need each other,http://techcrunch.com/2016/04/05/will-an-apple-a-day-keep-webrtc-away/,54,17,cpncrunch,4/5/2016 20:07 +10496744,Show HN: A new general-purpose API solving common and complex problems,https://www.neutrinoapi.com/,60,35,NeutrinoAPI,11/3/2015 1:28 +12225036,Running a D game in the browser,http://code.alaiwan.org/wp/?p=103,74,15,Halienja,8/4/2016 12:28 +10825540,May the App Store Be with You,https://medium.com/@benricem/may-the-app-store-be-with-you-83edf39299d2,11,1,agronaut,1/2/2016 8:33 +10686212,Ask HN: Do you find reading increasingly challenging?,,56,46,readchallenged,12/6/2015 19:19 +10313941,Apple patents the Smartring,http://www.productchart.com/blog/2015-10-01-the_smartring,2,3,3dfan,10/1/2015 19:23 +11806735,Being German is no laughing matter,https://www.1843magazine.com/ideas/the-daily/being-german-is-no-laughing-matter,3,1,imartin2k,5/31/2016 14:36 +12304751,Privacy lawsuit over Gmail will move forward,http://arstechnica.com/tech-policy/2016/08/privacy-lawsuit-over-gmail-will-move-forward/,8,3,em3rgent0rdr,8/17/2016 14:05 +11246054,Washington Post Ran 16 Negative Stories on Bernie Sanders in 16 Hours,http://www.commondreams.org/views/2016/03/08/washington-post-ran-16-negative-stories-bernie-sanders-16-hours,6,2,dragonbonheur,3/8/2016 16:03 +12046890,I visited 4 Bay Area tech companies in 4 days to steal their best ideas,https://medium.com/adventures-in-consumer-technology/i-visited-4-bay-area-tech-companies-in-4-days-to-steal-their-best-ideas-e42c95795b84#.6f2vpzgkp,1,3,downtowndana,7/7/2016 1:01 +10418241,Google has rolled out a new algorithm update?,https://www.accuranker.com/grump/,2,4,ysekand,10/20/2015 9:35 +12127060,Effect of bay area flights on Palo Alto,http://www.skypossepaloalto.org/faq/,2,1,RestlessMind,7/20/2016 5:22 +10740874,I'll Register My Drone When You Have to Register Your Gun,http://motherboard.vice.com/read/ill-register-my-drone-when-you-have-to-register-your-gun,7,3,lkurtz,12/15/2015 22:15 +11755901,Google plans to bring password-free logins to Android apps by year-end,http://techcrunch.com/2016/05/23/google-plans-to-bring-password-free-logins-to-android-apps-by-year-end/,1,1,kjhughes,5/23/2016 18:45 +10250302,The Soviet Bone Records (2014),http://www.fastcodesign.com/3032206/how-soviet-hipsters-saved-rock-n-roll-with-x-ray-records,21,1,ramgorur,9/21/2015 4:01 +12398295,Show HN: Jongler-Juggle the Ball Game,http://www.harenalabs.com/jongler,1,1,rahulmfg,8/31/2016 13:56 +11514944,DC faces Silicon Valley's riches and ever-growing power,https://www.theguardian.com/technology/2016/apr/17/zuckerberg-trump-silicon-valley-power-gilded-age,42,46,electic,4/17/2016 15:50 +11135828,Wizard of the Coast asking fans to scan old books,http://support.dmsguild.com/hc/en-us/articles/216504408,116,62,thenipper,2/19/2016 19:17 +12257853,Meet the People Who Believe the Earth Is Flat,https://mic.com/articles/150833/flat-earth-theories-truthers-youtube?utm_source=nextdraft&utm_medium=email#.sCU43hJuR,3,1,ca98am79,8/9/2016 21:32 +11073518,Web Scraping Finds Price Fluctuation,https://blog.scrapinghub.com/2016/02/10/which-stores-are-guilty-of-price-inflation/,104,81,unsettledtck,2/10/2016 15:54 +11128568,Mathematics Animations,http://www.3blue1brown.com/,317,37,vinchuco,2/18/2016 19:29 +11289952,The Chilling Math of Inequality,http://www.bloombergview.com/articles/2016-03-15/the-chilling-math-of-inequality,3,1,petethomas,3/15/2016 14:44 +10676993,This new web browser made me give up Chrome,http://www.fastcompany.com/3054029/this-new-web-browser-made-me-give-up-google-chrome,2,1,technologizer,12/4/2015 15:56 +11245409,Please Don't Learn to Code,https://medium.com/@iancackett/please-don-t-learn-to-code-5525c46d4403#.4ws6rfl0t,3,4,iancackett,3/8/2016 14:32 +11509445,Does Facebook have a moral responsibility to shut down Trump?,http://thehill.com/policy/technology/276503-facebook-employee-said-to-pose-question-about-stopping-trump-to-ceo,3,2,SocksCanClose,4/16/2016 5:26 +11453127,A simple batch file for Windows which will launch your workspace,https://github.com/sylver-john/BuildMySpace,2,2,lokarda,4/8/2016 7:26 +11215896,Use a static analyzer or two,http://arne-mertz.de/2016/03/use-a-static-analyzer/,4,1,DmitryNovikov,3/3/2016 9:50 +12543581,Chinese factories are lying and they dont even know it,http://assembly.com/blog/why-factories-lie/,43,20,kg4lod,9/20/2016 21:26 +12010206,The European Union is updating its electronic signature laws,http://www.theverge.com/2016/6/30/12066886/eu-european-union-electronic-signature-laws-eidas,92,43,Tomte,6/30/2016 17:31 +10645986,"Norman C. Pickering, Who Refined the Record Player, Dies at 99",http://www.nytimes.com/2015/11/29/business/norman-c-pickering-refined-the-record-player-dies-at-99.html,34,3,rglovejoy,11/29/2015 20:41 +11403210,Chat database for millions of messages per day,,10,5,antcar,4/1/2016 7:09 +10549713,How bad a boss is Linus Torvalds?,http://www.computerworld.com/article/3004387/it-management/how-bad-a-boss-is-linus-torvalds.html,23,7,CrankyBear,11/11/2015 22:10 +11795220,Ask HN: Is secure messaging mainly a usability problem?,,3,5,brhsiao,5/29/2016 6:50 +10507214,Woman who posted selfie with barcode on Melbourne Cup ticket had winnings stolen,http://www.theage.com.au/digital-life/consumer-security/woman-who-posted-selfie-with-barcode-on-900-melbourne-cup-ticket-had-winnings-stolen-20151104-gkqsxp.html,17,2,kschua,11/4/2015 15:31 +10245061,"Test driving the three-wheeled Elio 84 MPG and Only $6,800",http://www.fool.com/investing/general/2015/09/19/84-mpg-and-only-6800-heres-my-test-drive.aspx,44,30,protomyth,9/19/2015 18:15 +11043048,Ask HN: What's the best minimal CSS framework?,,5,5,jnardiello,2/5/2016 17:38 +10459311,"Linux Cousins Part 1: Reviewing AROS, the Amiga-Like OS",http://www.networkworld.com/article/2995585/opensource-subnet/linux-review-aros-os-amiga.html,37,4,bane,10/27/2015 16:55 +11126693,Russian Purge: The Horror Story of Publishing Children's Books in Moscow,https://theintercept.com/2016/02/17/the-horror-story-of-publishing-childrens-books-in-moscow/,17,1,prismatic,2/18/2016 16:05 +11776019,Researchers Teaching Robots to Feel and React to Pain,http://spectrum.ieee.org/automaton/robotics/robotics-software/researchers-teaching-robots-to-feel-and-react-to-pain,15,12,kiyanwang,5/26/2016 6:32 +12377600,MAKER ECONOMY Worker shortage plagues NH manufacturing,http://www.seacoastonline.com/article/20160828/NEWS/160829408,1,1,endswapper,8/28/2016 18:06 +11290997,Self-Driving Cars Wont Work Until We Change Our Roads And Attitudes,http://www.wired.com/2016/03/self-driving-cars-wont-work-change-roads-attitudes/,13,6,sherjilozair,3/15/2016 16:47 +12523948,"Sorry, Apple: The iPhone 7 camera is not better than Samsung's Galaxy S7",http://www.businessinsider.com/apple-iphone-7-plus-galaxy-s7-camera-comparison-2016-9,39,13,FireBeyond,9/18/2016 4:33 +12366553,Show HN: Mondly the Siri for learning languages,https://www.mondlylanguages.com?upvotes=thankyou,7,1,salomelunarojas,8/26/2016 14:35 +11117850,Quotes from Jean-Paul Sartres Programming in ANSI C,http://tra38.github.io/blog/c22-sartre.html,3,1,tariqali34,2/17/2016 13:59 +12511139,Being gay is no longer a crime in Australia,http://www.brisbanetimes.com.au/queensland/sexual-age-of-consent-standardised-to-age-16-by-queensland-government-20160915-grhiby.html,1,1,thisrod,9/16/2016 0:44 +10794502,"React-boilerplate: setup for performance orientated, offline-first React.js apps",https://github.com/mxstbr/react-boilerplate,154,61,tilt,12/26/2015 16:52 +11751611,AWS Lambda Is Not Ready for Prime Time,https://www.datawire.io/3-reasons-aws-lambda-not-ready-prime-time/?utm_content=buffer5d2eb&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,315,137,sebg,5/23/2016 3:17 +12270676,Adblock Plus has already defeated Facebook's new ad blocking restrictions,http://www.theverge.com/2016/8/11/12439990/facebook-unblockable-ads-defeated-by-adblock-plus,31,3,blowski,8/11/2016 18:44 +12026415,Android (Marshmallow) phone with FDE connects to network prior to password input,,2,5,g1dv5ek8ctfymm0,7/3/2016 15:55 +11045139,Nearly 200 images released by US military depict Bush-era detainee abuse,http://www.theguardian.com/us-news/2016/feb/05/us-military-bush-era-detainee-abuse-photos-released-pentagon-iraq-afghanistan-guantanamo-bay,3,4,kafkaesq,2/5/2016 22:28 +11500072,U.S. Universities Failing in Cybersecurity Education,https://www.cloudpassage.com/company/press-releases/cloudpassage-study-finds-u-s-universities-failing-cybersecurity-education/,2,1,brentley,4/14/2016 20:28 +11126188,2016 Spark Summit East Keynote,http://www.slideshare.net/databricks/2016-spark-summit-east-keynote-matei-zaharia,52,28,mydpy,2/18/2016 15:03 +10689612,Math Counterexamples Mathematical exceptions to the rules or intuition,http://www.mathcounterexamples.net/,3,1,Amorymeltzer,12/7/2015 14:30 +12106908,"Hablog High-availability, distributed, lightweight, static site with comments",http://blog.zorinaq.com/release-of-hablog-and-new-design/?,102,37,mrb,7/16/2016 16:39 +12296111,"Nvidia stuffs desktop GTX 1080, 1070, 1060 into laptops, drops the M",http://arstechnica.co.uk/gadgets/2016/08/nvidia-pascal-laptop-specs-gtx-1080/,138,75,antouank,8/16/2016 8:00 +11892769,Going Anti-Postal (2012),http://thehumanist.com/magazine/march-april-2012/up-front/going-anti-postal,2,1,Tomte,6/13/2016 10:28 +12455104,500 Lines or Less A Python Interpreter Written in Python,http://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html,183,45,gkst,9/8/2016 17:30 +12537990,Apple apply to patent a paper bag (March 2016),http://appft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&d=PG01&p=1&u=%2Fnetahtml%2FPTO%2Fsrchnum.html&r=1&f=G&l=50&s1=%2220160264304%22.PGNR.&OS=DN/20160264304&RS=DN/20160264304,5,1,agjmills,9/20/2016 8:27 +10618087,Americans: Pay Your Taxes--Or Lose Your Passport,http://www.wsj.com/articles/americans-pay-your-taxes-or-lose-your-passport-1447971424,3,3,DanielBMarkham,11/23/2015 23:25 +11449027,Twitters Fabric now serves 2B active devices,https://fabric.io/blog/fabric-serves-2-billion-active-devices,31,4,growthhack,4/7/2016 17:34 +10863974,Why don't black and white Americans live together?,http://www.bbc.co.uk/news/world-us-canada-35255835,29,16,gadders,1/8/2016 10:20 +10244533,Ask HN: Do you feel guilty when you quit a job?,,7,3,throwaway_ldn,9/19/2015 15:38 +12022280,Interns Get Fired En Masse After Protesting Dress Code at Work,https://www.yahoo.com/style/interns-get-fired-en-masse-after-protesting-dress-201632030.html,42,94,ytNumbers,7/2/2016 12:47 +10216461,HN vs. Reddit Website Speed Test,https://www.dareboost.com/en/comparison/55f6f1430cf2b0b29ed31df7/55f6f1430cf2b0b29ed31df8,4,1,damienj,9/14/2015 18:05 +10859030,Cargo Cult Scrum (and how to avoid it),http://medium.com/@mandrigin/cargo-cult-scrum-b34b91677347,1,1,mandrigin,1/7/2016 16:56 +12135343,Oxford Dictionaries API program is now live,https://developer.oxforddictionaries.com/,2,2,DC_Copeland,7/21/2016 7:35 +12309302,Significant MOZ Layoffs,https://moz.com/blog/moz-is-doubling-down-on-search,8,2,jsinkwitz,8/17/2016 23:24 +10979304,If you're one of millions using Magento stop what you're doing and patch now,http://www.theregister.co.uk/2016/01/26/urgent_magento_update/,12,1,munkiepus,1/27/2016 10:28 +10418992,Turning a climbing wall into a video game,http://joinrandori.com/blog,98,27,spacewaffle,10/20/2015 13:35 +12549874,"Show HN: Weebly 4 Websites, eCommerce and Email Marketing",http://www.weebly.com/4,171,75,drusenko,9/21/2016 16:43 +12143399,FastMail adding new features to keep your account even more secure,https://blog.fastmail.com/2016/07/18/new-features-to-keep-your-fastmail-account-even-more-secure/,2,1,whamlastxmas,7/22/2016 13:38 +11665703,Camille Paglia: The Modern Campus Has Declared War on Free Speech,http://heatst.com/culture-wars/camille-paglia-free-speech-modern-campus-protest/,50,18,nkurz,5/10/2016 7:37 +11232996,"Keshif, a web-based tool that lets you browse and understand datasets easily",http://keshif.me/,93,10,StreamBright,3/6/2016 8:56 +11815324,It's time for Slack to get physical,http://code.viget.com/slackalert/,4,1,ahmadss,6/1/2016 15:45 +11195787,HTC Vive (Steam VR) is now available for pre-order,http://www.htcvive.com,199,114,Timucin,2/29/2016 15:00 +11488542,Cake.af free rides to great eats,http://cake.af/,2,2,danielsinger,4/13/2016 14:39 +10771399,Show HN: Bug distributed issue tracking tool using plaintext files and git,https://github.com/driusan/bug,2,5,driusan,12/21/2015 15:13 +11165259,Erlang is dead. Long live E?,https://medium.com/@dmitriid/erlang-is-dead-long-live-e-885ccbcbc01f,3,1,aleksi,2/24/2016 8:08 +10177847,The Seeds That Sowed a Revolution,http://nautil.us/issue/21/information/the-seeds-that-sowed-a-revolution-rp,15,1,dnetesn,9/6/2015 15:11 +11487611,40 year old data on mental patients undermines view on dietary fat,https://www.washingtonpost.com/news/wonk/wp/2016/04/12/this-study-40-years-ago-could-have-reshaped-the-american-diet-but-it-was-never-fully-published/?hpid=hp_rhp-more-top-stories_wonkblog-1015am%3Ahomepage%2Fstory,4,1,tosseraccount,4/13/2016 12:40 +11624055,Ellen Pao Has a New Site to Push Greater Diversity in Tech,http://www.wired.com/2016/05/ellen-pao-new-site-push-greater-diversity-tech/,1,1,sdneirf,5/3/2016 20:41 +12094045,"Understanding Line, the chat app behind 2016s largest tech IPO",https://techcrunch.com/2016/07/14/understanding-line-the-chat-app-behind-2016s-largest-tech-ipo/,63,60,upen,7/14/2016 14:25 +10246678,AVG new privacy policy: they can/will sell your browsing history to 3rd parties,https://www.reddit.com/r/privacy/comments/3l4apg/avg_anti_virus_just_updated_there_privacy_policy/,5,1,djug,9/20/2015 5:42 +11930080,New York passes bill making it illegal to advertise entire apartments on Airbnb,http://gothamist.com/2016/06/18/its_about_to_be_illegal_to_advertis.php,76,108,pyrophane,6/18/2016 19:03 +11475474,The linux-stable security tree project,https://lwn.net/Articles/683335/,47,13,tshtf,4/11/2016 21:58 +10659904,Django 1.9 Released,https://www.djangoproject.com/weblog/2015/dec/01/django-19-released/,269,88,jsmeaton,12/2/2015 0:07 +11398669,A new way for psychology to address its replication crisis,http://www.theatlantic.com/science/archive/2016/03/save-psychology-by-replicating-studies-before-theyre-published/475983/?single_page=true,9,3,Hooke,3/31/2016 17:01 +10255885,BlaBlaCar raises $200M at $1.4B valuation,http://www.forbes.com/sites/liyanchen/2015/09/16/meet-europes-newest-unicorn-blablacar-raises-200-million-at-1-4-billion-valuation/,64,46,mraison,9/21/2015 23:53 +10319413,API Security for Modern Web Apps,https://medium.com/aws-activate-startup-blog/api-security-for-modern-web-apps-a6a7f226a6d,1,1,rbbarich,10/2/2015 16:12 +10527070,Another Crowdfunded Gadget Company Collapses,http://techcrunch.com/2015/11/07/another-1-million-crowdfunded-gadget-company-collapses/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29,57,22,prostoalex,11/8/2015 2:00 +11052449,Stop working (so hard),https://medium.com/i-m-h-o/stop-working-so-hard-ef4772e3c628#.n9ndn66lo,2,1,pmcpinto,2/7/2016 10:43 +12504024,Ask HN: How to become a Unix/Linux power user?,,2,3,bangda,9/15/2016 7:11 +10699967,"The Ultimate Hacking Keyboard got funded, goes Open Source",https://ultimatehackingkeyboard.com/blog/2015/12/08/the-uhk-got-funded-goes-open-source,37,3,mondalaci,12/8/2015 22:05 +11905686,AES-256 Encryption Possibly Now Broken,http://yournewswire.com/encryption-security-may-not-be-secure-anymore/,9,3,technolo-g,6/14/2016 22:02 +10664024,Cover-Up in Chicago,http://www.nytimes.com/2015/11/30/opinion/cover-up-in-chicago.html,1,1,willow9886,12/2/2015 16:48 +11666041,Nasa Releases Dozens of Patents into the Public Domain,http://technology.nasa.gov/publicdomain,127,38,denzil_correa,5/10/2016 9:40 +11029908,Pjuu A social network with a focus on running it yourself,https://pjuu.com,6,2,pjuu,2/3/2016 21:29 +10444380,Don't install npm packages globally,http://chowes.ghost.io/dont-install-npm-packages-globally/,3,2,chowes,10/24/2015 18:10 +10222531,Why I wouldn't use Rails for a new company,http://blog.jaredfriedman.com/2015/09/15/why-i-wouldnt-use-rails-for-a-new-company/,11,7,snowmaker,9/15/2015 19:04 +11307956,The Soul Crushing Reality of the Stay at Home Dad,http://narrative.ly/the-soul-crushing-reality-of-the-stay-at-home-dad/,2,1,breitling,3/17/2016 21:56 +10405082,Screencat webrtc screensharing atom-shell app for OS X,http://maxogden.github.io/screencat/,2,1,tylermauthe,10/17/2015 17:01 +10574243,"NNSA, Nvidia to create an open-source Fortran compiler front-end for LLVM",https://www.llnl.gov/news/nnsa-national-labs-team-nvidia-develop-open-source-fortran-compiler-technology,134,75,ingve,11/16/2015 13:21 +11391700,Zen Magnets Wins CPSC Case,http://zenmagnets.com/march-2016-update-whoa-we-won/,103,44,nathannecro,3/30/2016 18:26 +10721180,"Massive bulk cash purchases of cellphones, thefts of propane tanks in Missouri",http://www.abc17news.com/news/fbi-investigating-suspicious-purchase-at-columbia-walmart/36877514,5,2,DrScump,12/12/2015 0:40 +10993284,Ask HN: What problems do international people face when they come to the U.S.?,,12,16,rm2904,1/29/2016 3:26 +11663570,Nodal. Next Generation Node.js Server and Framework. Release v0.10.0,http://www.nodaljs.com/devlogs/nodal-0-10-landed--async-validations--file-uploads,6,4,gabooo,5/9/2016 22:01 +10472994,European Parliament votes to grant Snowden protection from US,http://www.theregister.co.uk/2015/10/29/snowden_amnesty_europe_parliament/?mt=1446141664945,5,1,virtuabhi,10/29/2015 18:02 +11924306,Winning on Wall Street: Tuning Trading Models with Bayesian Optimization,http://blog.sigopt.com/post/146068404603/winning-on-wall-street-tuning-trading-models-with,2,1,Zephyr314,6/17/2016 17:57 +10430112,Open multiple links at once just with a single click,http://www.linksopen.com,1,1,marvinwaters,10/22/2015 2:34 +11090151,Study: Criminals just switch to encryption developed outside US,http://www.wired.com/2016/02/encryption-is-worldwide-yet-another-reason-why-a-us-ban-makes-no-sense/,2,1,corbinpage,2/12/2016 20:12 +11224366,The Watney Rule for Startups?and the Return to the Old Normal,https://medium.com/@firstround/the-watney-rule-for-startups-and-the-return-to-the-old-normal-cba75583365e#.p3b8um9m4,21,6,btrautsc,3/4/2016 15:32 +11613845,Google XRay: A Function Call Tracing System [pdf],https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/45287.pdf,124,56,mnem,5/2/2016 18:04 +12099646,Run code inline in Atom using Jupyter kernels,https://github.com/nteract/hydrogen,229,54,dkharrat,7/15/2016 8:52 +12267471,"Show HN: Free Django Hosting with SSL, managed database and custom domains",https://www.divio.com/en/,18,1,jmelett,8/11/2016 12:00 +12107688,What Mailchimp does to make sure emails get delivered,http://www.wired.com/2016/07/mailchimp-sends-billion-emails-day-thats-easy-part/,136,77,connie219,7/16/2016 20:08 +12292843,"Stories and Tips: Interviews with Facebook, Twitter, Amazon and Others",http://blog.robertelder.org/50-interviews-with-facebook-twitter-amazon-others/,219,85,robertelder,8/15/2016 19:37 +11057373,Leasing Begins for New Yorks First Micro-Apartments,http://www.nytimes.com/2015/11/22/realestate/leasing-begins-for-new-yorks-first-micro-apartments.html,45,90,evandijk70,2/8/2016 10:38 +10532433,Geekey Ultimate Keyboard for Geeks,http://geekey.io,1,1,spifd,11/9/2015 11:32 +11555292,Ask HN: What would you do if you could live for a 1000 years?,,2,3,prattbhatt,4/23/2016 12:37 +10288427,ASK HN: Why are so many IP's text based?,,2,8,vjoshi,9/28/2015 0:35 +12052562,How Wall Street Bro Talk Keeps Women Down,http://www.nytimes.com/2016/07/10/opinion/sunday/how-wall-street-bro-talk-keeps-women-down.html,1,1,eevilspock,7/7/2016 22:43 +10880532,"Ask HN: Review my starup, vulners.com (vulnerability database)",https://vulners.com,1,4,vulnersTeam,1/11/2016 13:05 +10855759,HealthSpots Demise Could Spell the End of Telemedicine Kiosks,http://mhealthintelligence.com/news/healthspots-demise-could-spell-the-end-of-telemedicine-kiosks,2,1,randycupertino,1/7/2016 3:21 +11242340,Warp Directory (wd) unix command line tool for any shell written in ruby,https://github.com/kigster/warp-dir,1,1,kigster,3/7/2016 22:42 +10280247,Gitcolony The next generation of pull requests,http://gitcolony.com,36,23,mfocaraccio,9/25/2015 19:44 +10833235,Lessons Learned Custom ERP in Smalltalk,http://smalltalk-bob.blogspot.com/2016/01/lessons-learned.html,29,17,mpweiher,1/4/2016 0:01 +12130380,"Introducing Google Cloud Natural Language API, Speech API and New Data Center",https://cloudplatform.googleblog.com/2016/07/the-latest-for-Cloud-customers-machine-learning-and-west-coast-expansion.html,224,49,ppoutonnet,7/20/2016 16:38 +10834273,Economists Take Aim at Wealth Inequality,http://www.nytimes.com/2016/01/04/business/economy/economists-take-aim-at-wealth-inequality.html,7,1,legutierr,1/4/2016 6:13 +11109967,Glibc getaddrinfo stack-based buffer overflow,https://googleonlinesecurity.blogspot.com/2016/02/cve-2015-7547-glibc-getaddrinfo-stack.html,502,439,0x0,2/16/2016 14:26 +11970765,GODLESS Mobile Malware Uses Multiple Exploits to Root Devices,http://blog.trendmicro.com/trendlabs-security-intelligence/godless-mobile-malware-uses-multiple-exploits-root-devices/,3,1,cpncrunch,6/24/2016 15:53 +12303751,How to Set Up and Deploy to a 1000-Node Docker Swarm,http://blog.nimbleci.com/2016/08/17/how-to-set-up-and-deploy-to-a-1000-node-docker-swarm/,117,41,emmetogrady,8/17/2016 11:07 +11782501,Why Roller Coaster Loops Are Never Circular (2014),http://gizmodo.com/why-roller-coaster-loops-are-never-circular-1549063718,1,1,Amorymeltzer,5/26/2016 23:19 +12271651,Why So Many People Hate the Marissa Mayer 130-Hour Workweek,http://www.inc.com/john-brandon/why-so-many-people-hate-the-marissa-mayer-130-hour-workweek.html,7,3,jrs235,8/11/2016 21:24 +12543731,Yet another csv command line tool,https://github.com/komkom/csv,2,1,komkahh,9/20/2016 21:53 +10307963,Moderate Alcohol Use and Reduced Mortality: Systematic Error in Studies (2007),http://www.annalsofepidemiology.org/article/S1047-2797(07)00007-5/pdf,9,3,monort,9/30/2015 22:46 +12107799,"To push, to pull- to fetch, perchance to commit. Aye, there's the rub",https://github.com/ipfs/js-ipfs-examples/issues/1#issuecomment-229005498,33,1,datamonsteryum,7/16/2016 20:39 +12311112,The condom of the future is coming with support from Charlie Sheen,http://www.thememo.com/2016/08/18/lelo-hex-condom-lelo-charlie-sheen-condom-hexagon-condoms-lelo-safe-sex/,4,1,morehuman,8/18/2016 8:36 +10257075,Martin Shkreli (Turing Pharmaceuticals CEO) interviewed on Bloomberg Markets,http://www.bloomberg.com/news/videos/2015-09-21/why-turing-increased-price-of-daraprim-over-500-,3,1,jmedwards,9/22/2015 7:13 +12040279,Show HN: Do you know what emails your competitors are sending? Beetle does,https://beetle.email?utm_source=hackernews,1,1,chrift,7/5/2016 23:40 +10521412,Mysterious billion-dollar car company is taking on Tesla,http://nypost.com/2015/11/06/mysterious-billion-dollar-car-company-is-taking-on-tesla/,108,85,Jerry2,11/6/2015 19:25 +10546948,Man Solves Teslas Secret to Amplifying Power by Nearly 5000%,http://thefreethoughtproject.com/man-discovers-teslas-secret-amplifying-power-5000/,7,1,khoury,11/11/2015 15:01 +11921062,"Meet Andela, the African startup receiving the Zuckerberg's first investment",http://venturebeat.com/2016/06/16/meet-andela-the-remarkable-african-startup-receiving-the-zuckerberg-foundations-first-investment/,3,1,crufo,6/17/2016 6:54 +10976648,Maths study shows conspiracies 'prone to unravelling',http://www.bbc.com/news/science-environment-35411684,3,1,rogeryu,1/26/2016 22:19 +12571095,"Forget virtual assistants, Asteria wants to be your AI friend",http://www.wareable.com/meet-the-boss/forget-virtual-assistants-asteria-wants-to-be-your-ai-friend,64,59,nathantross,9/24/2016 14:43 +11436820,How to manage users?,,1,2,tulga,4/6/2016 5:36 +11718819,10 thousand times faster Swift,https://medium.com/@icex33/10-thousand-times-faster-swift-737b1accd973#.guqhgg2b6,1,1,Jerry2,5/18/2016 0:35 +11803716,HTTPS Results in 7% Google AdX Revenue Drop,http://blog.rome2rio.com/2016/04/18/https-results-in-7-google-adx-revenue-drop/,187,65,thomasfromcdnjs,5/30/2016 23:06 +10290626,"How to Invent a Language, from the Guy Who Made Dothraki",http://www.wired.com/2015/09/conlang-book/,1,1,gliese1337,9/28/2015 14:32 +11363927,How to Mixed Reality,http://northwaygames.com/how-to-mixed-reality/,1,1,Impossible,3/26/2016 1:16 +11429831,"Taxi, Uber, and Lyft Usage in New York City",http://toddwschneider.com/posts/taxi-uber-lyft-usage-new-york-city/,117,101,lil_tee,4/5/2016 12:33 +12364995,Ask HN: What's your preferred VPS service for personal projects?,,20,24,oliverjudge,8/26/2016 8:39 +12209536,"Show HN: CRM for Facebook Messenger chatting, broadcasting and bots [beta]",https://whatshelp.io,2,1,dc17,8/2/2016 12:51 +10612226,Native OpenBSD hypervisor hits -current,http://undeadly.org/cgi?action=article&sid=20151122214050&mode=expanded,170,98,eatonphil,11/23/2015 0:49 +10350706,I asked a flight expert to find me cheaper flights and saved over $1000,http://alexeymk.com/2015/10/05/flystein-saved-me-over-1000-dollars-on-flight-costs-and-all-they-got-was-this-blog-post.html,24,9,AlexeyMK,10/8/2015 3:03 +10634579,W A simple programming language,https://www.vttoth.com/CMS/projects/49-w-a-simple-programming-language,56,20,networked,11/26/2015 20:33 +10870588,Be your own video hoster with Docker and Nginx,https://datarhei.github.io/restreamer/,118,30,betablocker,1/9/2016 9:05 +11854688,Dr Michael Jurgen Garbade CEO Livecoding.tv Harrassment of Users and Staff,https://www.livecoding.tv/pastebin/xfzo,8,16,xmetrix,6/7/2016 14:23 +11484280,Show HN: It's back! Hipster Domain Finder is now Hipster Domains,http://hipster.domains/,3,3,drizzzler,4/12/2016 22:52 +11444655,"The Panama Papers May Have Come from a Hack, Not a Leak",http://mic.com/articles/140022/was-panama-papers-a-hack-not-a-leak,1,1,l3robot,4/7/2016 4:12 +10287476,U.S. Energy Mapping System,http://www.eia.gov/state/maps.cfm,37,15,teh_klev,9/27/2015 18:51 +11193767,"Smasher Turn your directories to JSON and back (XML, YML support on it's way)",https://github.com/kamranahmedse/smasher,3,1,kamranahmed_se,2/29/2016 5:36 +11331147,The Future of Twitter: Q&A with Jack Dorsey,http://www.bloomberg.com/features/2016-jack-dorsey-twitter-interview/,49,19,bko,3/21/2016 19:34 +11039347,StressNinja,http://www.stressninja.com,2,4,stressninja,2/5/2016 4:12 +11404337,"Flask, Werkzeug, Jinja2 Have a New Home in the Pallets Project",https://www.palletsproject.com/blog/hello/,15,6,the_mitsuhiko,4/1/2016 12:41 +10830185,Turning the Raspberry Pi into a dedicated retro-gaming console,http://blog.petrockblock.com/retropie/,123,22,doener,1/3/2016 10:42 +11001085,Show HN: PySceneDetect Video Scene Cut/Break Detection and Analysis,http://pyscenedetect.readthedocs.org,2,1,Breakthrough,1/30/2016 8:19 +11972011,Scientific Integrity Incident at USGS Energy Geochemistry Laboratory [pdf],https://www.doioig.gov/sites/doioig.gov/files/2016EAU010Public.pdf,3,1,augb,6/24/2016 18:03 +11544561,Working with a virtual team: 7 best practices,https://www.ckl.io/blog/working-virtual-team-7-best-practices/,13,4,accordeiro,4/21/2016 19:05 +10846416,Randall Munroe: Comics that ask what if? [video],https://www.youtube.com/watch?v=I64CQp6z0Pk,3,1,davidbarker,1/5/2016 22:03 +11973516,Be Careful What You Code For,https://points.datasociety.net/be-careful-what-you-code-for-c8e9f3f6f55e#.mow3f6y8l,53,55,miraj,6/24/2016 21:11 +11887562,Im killing most of my email capture. Here's why.,http://www.nateliason.com/email-capture/,13,2,3stripe,6/12/2016 11:03 +11449953,Some common problems in function approximation,http://blog.sigopt.com/post/142418345678/sigopt-fundamentals-dealing-with-troublesome,2,1,mccourt,4/7/2016 19:30 +12204038,Why Developers Never Use State Machines (2011),http://www.skorks.com/2011/09/why-developers-never-use-state-machines/,3,1,ripitrust,8/1/2016 17:02 +11142690,"Apple plays hardball with FBI, but not China",http://www.france24.com/en/20160219-usa-apple-plays-digital-privacy-hardball-with-fbi-but-not-china,18,1,tosseraccount,2/21/2016 0:31 +12468681,From Zero to a Million: There Are Two Usual Paths for Startups; I Took the Third,https://blog.markgrowth.com/from-zero-to-a-million-there-are-two-usual-paths-for-startups-and-i-took-the-third-one-e82ecf96591e,19,11,brault,9/10/2016 11:13 +11301146,Silex website builder launches a crowd funding campaign,http://www.templamatic.com/blog/silex-launches-a-crowdfunding-campaign,3,1,lexoyo,3/16/2016 22:23 +10940726,"Yahoo Mail flaw gets fixed, and a researcher nets $10K",http://www.cnet.com/news/yahoo-mail-flaw-gets-fixed-and-a-researcher-nets-10k/,3,1,_jomo,1/20/2016 19:37 +11849010,Show HN: React Native RevMob advertising package,https://www.npmjs.com/package/react-native-revmob,13,10,raphastraat,6/6/2016 18:24 +10359710,"YouPronounceIt: Search for a word, get videos of YouTube speakers pronouncing it",http://youpronounce.it/,141,50,caio1982,10/9/2015 13:06 +12470703,Videos of Evolution in Action,http://www.theatlantic.com/science/archive/2016/09/stunning-videos-of-evolution-in-action/499136/?single_page=true,128,13,tim_sw,9/10/2016 20:14 +10238959,GBD Compare Data on worlds health levels and trends,http://www.healthdata.org/data-visualization/gbd-compare,16,1,Amorymeltzer,9/18/2015 13:13 +12342908,Ask HN: Fault-tolerant database for small datasets?,,3,8,ffggvv,8/23/2016 11:50 +11484853,Apply HN and Feedback: Kaleidoscope Corp (Centralizing Health Database),,3,11,rampage24life,4/13/2016 0:47 +11950509,Angkor Wat's newfound suburbs hold a dark lesson,http://www.businessinsider.com/angkor-wat-cambodia-archaeologists-lidar-2016-6?ref=yfp,1,1,evo_9,6/22/2016 0:02 +11430123,Zelda 30 Year Tribute,https://www.zelda30tribute.com,2,1,d99kris,4/5/2016 13:23 +10257904,Ask HN: Which web app do you use to plan/organise your thoughts and projects?,,1,4,eecks,9/22/2015 11:37 +10201243,Launching the worlds most affordable solar-powered light,https://medium.com/@baumgardt/launching-the-world-s-most-affordable-solar-powered-light-9a2398c6c6fa,38,13,sethbannon,9/10/2015 23:48 +11037088,The Lives and Lies of a Professional Impostor,http://www.nytimes.com/2016/02/07/nyregion/jeremy-wilson-a-compulsive-con-man.html,75,18,rmcpherson,2/4/2016 20:47 +11521054,"Yellow Water, Dirty Air, Power Outages: Venezuela Hits a New Low",http://www.bloomberg.com/news/articles/2016-04-18/yellow-water-dirty-air-power-outages-venezuela-hits-a-new-low,40,40,randomname2,4/18/2016 16:18 +10631516,Sublime Text Editor License Giveaway 3,http://www.webcodegeeks.com/giveaways/sublime-text-editor-license-giveaway-3/?lucky=9560,1,1,dkucinskas,11/26/2015 6:00 +11286284,Grocery-Delivery Startup Instacart(YC) Cuts Pay for Couriers,http://www.wsj.com/articles/grocery-delivery-startup-instacartcuts-pay-for-couriers-1457715105,5,2,lladnar,3/14/2016 23:13 +10710272,KeePassX is alive and 2.0 is here,https://www.keepassx.org/news/2015/12/533,13,4,david_,12/10/2015 12:25 +10519736,Peak detection on signals in Python,http://blog.ytotech.com/2015/11/01/findpeaks-in-python/,76,5,monsieurv,11/6/2015 14:55 +11325082,Tesla Model S sales surpass BMW and Audi in Europe,http://www.bmwblog.com/2015/10/19/tesla-model-s-passes-bmw-audi-getting-close-to-mercedes-in-europe/,9,1,doener,3/20/2016 22:51 +11686874,Google Just Fixed One of the Biggest Pain Points in Mobile UX,http://www.fastcodesign.com/3059845/google-just-fixed-one-of-the-biggest-pain-points-in-mobile-ux,1,1,marinabercea,5/12/2016 21:21 +10683059,Why Japanese leaders attacked Pearl Harbor,https://www.timeline.com/stories/pearl-harbor-was-attacked-because-it-would-have-been-rude-not-to,205,129,log-fire,12/5/2015 19:54 +11798764,The Sharkoon FireGlider Mouse software queries and connects to some porn website,,5,5,chrisper,5/29/2016 23:40 +12540791,Use Bank Account in Port Rico for Transfers in Stripe,,2,2,markorod4u,9/20/2016 16:31 +12575687,Why I stopped reading biographies,http://tefomohapi.com/post/150912193488/why-i-stopped-reading-biographies,37,31,tefo-mohapi,9/25/2016 15:17 +11977087,FBIs Secret Surveillance Tech Budget Is Hundreds of Millions,https://theintercept.com/2016/06/25/fbis-secret-surveillance-tech-budget-is-hundreds-of-millions/,49,10,adventured,6/25/2016 17:20 +12102459,The Impact of Pokemon Go on Wikipedia,https://blog.wikimedia.org/2016/07/14/pokemon-go-wikipedia/,8,1,The_ed17,7/15/2016 17:18 +12359478,Google is using AI to compress photos,http://qz.com/763649/google-is-working-on-a-way-for-ai-to-compress-your-photos-just-like-on-hbos-silicon-valley/,29,9,rakibtg,8/25/2016 14:57 +11058036,Do you qualify clients?,https://pjrvs.com/a/qualify/,6,1,pauljarvis,2/8/2016 13:50 +11650816,My Tough Love for C++,https://medium.com/@hazemu/my-tough-love-for-c-e2c703684e28#.k064h2int,5,2,etrevino,5/7/2016 18:49 +10372983,20+ web development newsletters you should follow,https://medium.com/web-development-resources/20-newsletters-designers-developers-should-follow-12c6a36a2f95,1,1,teomoo,10/12/2015 7:13 +10564958,FB's Ephemeral Messages (Pavel Durovthe Mark Zuckerberg of Russiapredicted It),http://techcrunch.com/2015/11/12/facebook-messenger-ephemeral/,1,3,s10_vc,11/14/2015 8:31 +11254083,The New Mind Control,http://www.mauldineconomics.com/outsidethebox/the-new-mind-control,1,1,kushti,3/9/2016 17:02 +11105198,Too many tools not enough carpenters,https://ckmadvisors.com/b/160212.html,152,50,Earlbus,2/15/2016 19:03 +12269221,YC Startups' Tech Stacks,http://themacro.com/articles/2016/08/yc-tech-stacks/,9,4,craigcannon,8/11/2016 15:50 +11786255,Color of My IP,http://colorofmyip.com,2,2,RambOe,5/27/2016 14:28 +10179822,Personal Site,,2,10,CaiGengYang,9/7/2015 2:18 +11813597,Forbes Revises Estimated Net Worth of Theranos Founder from $4.5bn to $0,http://www.forbes.com/sites/matthewherper/2016/06/01/from-4-5-billion-to-nothing-forbes-revises-estimated-net-worth-of-theranos-founder-elizabeth-holmes/,15,4,jackgavigan,6/1/2016 11:43 +11540483,Ask HN: How do you keep informed?,,5,1,atduarte,4/21/2016 8:43 +12356334,Meter and app to tell if a gas station has pumped less than you paid for,http://mexiconewsdaily.com/news/device-smartphone-app-detect-short-liters/,8,2,emilyfm,8/25/2016 1:10 +12156523,9th Circuit: Its a crime to visit a website after being told not to visit it,https://www.washingtonpost.com/news/volokh-conspiracy/wp/2016/07/12/9th-circuit-its-a-federal-crime-to-visit-a-website-after-being-told-not-to-visit-it/,264,242,walterbell,7/25/2016 4:48 +10996205,Mitsubishi's SeaAerial is an antenna made out of seawater,http://www.dailydot.com/technology/mitsubishi-seawater-antenna-seaaerial/,1,1,snehesht,1/29/2016 16:34 +11908182,Russia Is Reportedly Set to Release Clinton's Intercepted Emails,http://finance.yahoo.com/news/russia-reportedly-set-release-clintons-193700629.html,59,48,aburan28,6/15/2016 9:51 +11308042,What game should artificial intelligence take on next?,https://www.newscientist.com/article/2081021-what-game-should-artificial-intelligence-take-on-next/,4,1,fraqed,3/17/2016 22:13 +12320765,"The NSA Leak Is Real, Snowden Documents Confirm",https://theintercept.com/2016/08/19/the-nsa-was-hacked-snowden-documents-confirm/#comment-270077,41,4,Jerry2,8/19/2016 15:35 +11002843,Jadeworld.org Welcome to Jade Software Zombocom,http://jadeworld.org/,28,4,niftylettuce,1/30/2016 17:49 +10328768,Edward R. Murrow Interviews Robert Oppenheimer (1955) [video],https://www.youtube.com/watch?v=lVCL3Rnr8xE,91,14,mr_tyzic,10/4/2015 20:52 +10711912,The first arbitration institution develops Arbitration Rules on GitHub,https://github.com/Cryptonomica/arbitration-rules,1,1,ageyev,12/10/2015 17:32 +11586490,Child porn suspect jailed indefinitely for refusing to decrypt hard drives,http://arstechnica.com/tech-policy/2016/04/child-porn-suspect-jailed-for-7-months-for-refusing-to-decrypt-hard-drives/,6,1,praneshp,4/28/2016 3:57 +12353736,FiveThirtyEight: Hurricane Ensemble Forecasting,http://fivethirtyeight.com/features/hurricane-hermine-doesnt-exist-yet-but-experts-are-starting-to-worry/,2,1,julienchastang,8/24/2016 17:37 +11296356,Spacecraft Fire Experiment I,http://www.nasa.gov/mission_pages/station/research/experiments/1761.html,69,9,ourmandave,3/16/2016 11:03 +10246576,How Healthcare.gov Botched $600M Worth of Contracts,http://www.bloomberg.com/news/articles/2015-09-15/how-healthcare-gov-botched-600-million-worth-of-contracts,75,72,petethomas,9/20/2015 4:35 +12445370,Ryver: Why we run negative ads against Slack,http://www.ryver.com/ryver-runs-negative-ads-slack/,47,64,pat_sullivan,9/7/2016 17:33 +12208784,Dropbox ends XP support with only a month's notice,https://www.dropbox.com/help/9227,4,6,Mithaldu,8/2/2016 9:48 +11282786,Most Americans Say Government Doesnt Do Enough to Help Middle Class,http://www.pewsocialtrends.org/2016/02/04/most-americans-say-government-doesnt-do-enough-to-help-middle-class/,25,11,wslh,3/14/2016 13:38 +11142334,"Now I am become DOI, destroyer of gatekeeping worlds",https://thewinnower.com/papers/now-i-am-become-doi-destroyer-of-gatekeeping-worlds,73,17,jmnicholson,2/20/2016 22:46 +11377358,"Ash HN: Mobile Mesh Networking Framework, what Would You Use It For?",,8,3,CLei,3/28/2016 20:59 +10519296,Financial news without the bullshit. Thoughts?,http://www.finimize.com/?ref=hn,38,8,maxro,11/6/2015 13:23 +10579528,Microsoft Distributed Machine Learning Tookit,https://github.com/Microsoft/DMTK,2,1,Radim,11/17/2015 6:43 +11090248,Court says Facebook nude painting case can be tried in France,http://www.reuters.com/article/us-facebook-france-court-idUSKCN0VL1XS,2,1,anigbrowl,2/12/2016 20:25 +11828738,Reinventing Fast Inverse Sqrt Using 8th Grade Math,http://www.bullshitmath.lol/FastRoot.slides.html,2,2,leegao,6/3/2016 6:41 +10744449,Show HN: Art Genius Photo to Art (iOS),https://itunes.apple.com/us/app/art-genius-photo-to-art/id1053591857,1,1,nsigma,12/16/2015 14:33 +11682653,FTC Investigating Android Patching Practices,https://www.schneier.com/blog/archives/2016/05/ftc_investigati.html,2,1,kevincox,5/12/2016 11:32 +11643884,My Experience Using .NET Core in the Real World,http://savorylane.com/blog/post/my_experience_on_clrcore,4,1,swalsh,5/6/2016 13:44 +12237875,Ask HN: Looking for mentor,,2,7,ejanus,8/6/2016 12:25 +11954788,Ask HN: Operational complexity of micro services?,,1,2,tmaly,6/22/2016 15:44 +11184534,EFF to Apple Shareholders: Your Company Is Fighting for All of Us,https://www.eff.org/deeplinks/2016/02/eff-apples-shareholders-meeting-statement-support,73,20,sinak,2/26/2016 21:47 +11836447,Show HN: CloudRail SI Cloud Storage and Social APIs Unified in a Single API,https://cloudrail.github.io/,4,1,licobo,6/4/2016 14:28 +10349639,This is what happens to your brain and body when you check your phone before bed,http://www.businessinsider.com/impact-smartphones-brain-and-body-sleep-dan-siegel-2015-8,4,4,gexos,10/7/2015 22:41 +10664272,"What Is Spacetime, Really?",http://blog.stephenwolfram.com/2015/12/what-is-spacetime-really/,207,120,champillini,12/2/2015 17:20 +11151841,Mega-Magnet Reveals Superconductor Secret,https://www.quantamagazine.org/20160222-mega-magnet-reveals-superconductor-secret/,20,2,digital55,2/22/2016 16:16 +11594752,Physics is on the verge of an Earth-shattering discovery?,https://aeon.co/opinions/physics-is-on-the-verge-of-an-earth-shattering-discovery,58,20,Oletros,4/29/2016 10:24 +11256892,An Incredibly Dorky Look at Each Presidential Candidates Technology Stack,https://contently.com/strategist/2016/03/01/an-incredibly-dorky-look-at-each-presidential-candidates-technology-stack/?utm_content=bufferd6444&utm_medium=social&utm_source=facebook&utm_campaign=buffer,20,2,leesalminen,3/10/2016 1:28 +10522447,No radio signals detected from anomalous star KIC 8462852,http://www.space.com/31054-no-alien-megastructure-signal-strange-star.html,1,1,anigbrowl,11/6/2015 22:19 +10398644,Why Startups Are Not Interested in Sustainability,http://www.triplepundit.com/2015/10/startups-not-interested-sustainability/,3,1,cjbenedikt,10/16/2015 11:40 +12291787,Hardware Review: PocketCHIP,http://www.nintendolife.com/news/2016/08/hardware_review_pocketchip,2,1,Mister_Snuggles,8/15/2016 17:14 +10897760,Embracing Conway's law,https://wingolog.org/archives/2015/11/09/embracing-conways-law,45,4,AndrewDucker,1/13/2016 21:41 +10644560,Google's Balloon-Powered Internet for Everyone,http://www.albanydailystar.com/technology/google-s-balloon-powered-internet-for-everyone-12008.html,11,2,SimplyUseless,11/29/2015 13:53 +10339481,Apply for the Microsoft Hololens Development Edition,http://www.microsoft.com/microsoft-hololens/en-us/development-edition,122,42,pmelendez,10/6/2015 15:24 +10800221,NSA knew about Juniper backdoors and kept quiet about them,http://thenextweb.com/us/2015/12/24/nsa-knew-about-juniper-backdoors-and-kept-quiet-about-them/,81,20,us0r,12/28/2015 6:56 +11030585,Is This the End of Yahoo and Employee Stack Ranking?,https://www.linkedin.com/pulse/end-yahoo-employee-stack-ranking-steffen-maier?trk=pulse_spock-articles,5,1,steffenmaier,2/3/2016 22:59 +11645607,Kanye West's TIDAL Flop,http://priceonomics.com/kanye-wests-tidal-flop/,4,1,shenanigoat,5/6/2016 18:05 +11874575,A Grain of Salt,https://www.teslamotors.com/blog/grain-of-salt,803,283,dwaxe,6/10/2016 6:07 +10792091,Self-Perceived Expertise Predicts Claims of Impossible Knowledge [pdf],http://emilkirkegaard.dk/en/wp-content/uploads/When-knowledge-knows-no-bounds.pdf,7,3,espeed,12/25/2015 19:33 +12005043,Virtual Reality Venture Capital Alliance,http://www.vrvca.com/,1,1,cocoflunchy,6/29/2016 21:41 +11961222,Thoughts on privilege,https://blog.jonskeet.uk/2016/06/22/thoughts-on-privilege/,2,1,Tomte,6/23/2016 14:42 +12383098,SETI is investigating an extraterrestrial signal from Deep Space,http://observer.com/2016/08/not-a-drill-seti-is-investigating-a-possible-extraterrestrial-signal-from-deep-space/,46,2,TheIronYuppie,8/29/2016 16:39 +10898305,Oristand: a $25 standing desk,http://www.oristand.co,4,2,davidbarker,1/13/2016 22:53 +10374521,Vim and Composability,http://ferd.ca/vim-and-composability.html,11,2,jimsojim,10/12/2015 14:03 +11634578,London may elect it's first Muslim mayor,http://www.npr.org/2016/05/04/476783550/londoners-could-elect-citys-first-muslim-mayor,11,19,mgalka,5/5/2016 7:58 +10713133,Holovect Volumetric Display (real 3D projections),https://www.kickstarter.com/projects/2029950924/holovect-volumetric-display-real-3d-projections,1,1,falcolas,12/10/2015 20:17 +12287398,"Provider of Personal Finance Tools Tracks Cards, Sells Data to Investors (2015)",http://www.wsj.com/articles/provider-of-personal-finance-tools-tracks-bank-cards-sells-data-to-investors-1438914620,40,12,nstj,8/14/2016 21:19 +11595200,Show HN: Optimizing Higher Order Functions with Hypothetical Inverses,https://medium.com/@pschanely/optimizing-higher-order-functions-with-hypothetical-inverses-e5153ab69753,55,35,pschanely,4/29/2016 12:22 +11244150,"Twitter Hiding my Tweets, Ignoring Support Requests.",,1,3,zerobudgetdev,3/8/2016 8:45 +11007953,Electronic Doomsday for the US?,http://www.gatestoneinstitute.org/7214/electro-magnetic-pulse-emp,4,3,bumbledraven,1/31/2016 20:39 +11136988,Locky: New Ransomware Mimics Dridex-Style Distribution,http://researchcenter.paloaltonetworks.com/2016/02/locky-new-ransomware-mimics-dridex-style-distribution/,2,1,doener,2/19/2016 22:03 +11254517,HolmBonferroni method,https://en.wikipedia.org/wiki/Holm%E2%80%93Bonferroni_method,1,1,mojoe,3/9/2016 18:01 +11959489,UX trends: 6 expert-based predictions for 2016,http://whallalabs.com/ux-trends-2016/,3,1,pawel_ha,6/23/2016 8:08 +10711201,WP Engine Security Breach: Customer Credentials Exposed,https://wpengine.com/support/infosec/,62,27,DavidPP,12/10/2015 15:51 +12024949,"Building my $1,200 Hackintosh",https://medium.com/@flyosity/building-my-1-200-hackintosh-49a1a186241e#.nkj8h04zt,117,85,flyosity,7/3/2016 5:41 +10444898,SOLVED VirtualBox Is Not Installing in Ubuntu 15.10 Missing Dependency Libvpx1,http://www.linuxandubuntu.com/home/solved-virtualbox-is-not-installing-in-ubuntu-1510-due-to-missing-dependency-libvpx1,1,1,MohdSohail,10/24/2015 21:19 +11587450,OS X 10.11 Ruby / Rails users can install therubyracer again,https://github.com/cowboyd/libv8/blob/210feb9177ef2f12685629e4fb5a39acc1d3951a/CHANGELOG.md,1,1,jbaviat,4/28/2016 9:26 +12094750,Mechanic invents 'water fuelled' car that runs for less than 2p a litre,http://www.mirror.co.uk/news/world-news/mechanic-invents-water-fuelled-car-7110769,4,1,giis,7/14/2016 15:39 +11689456,It takes 3170 hours to hide condoms in a porn movie,https://ripple.co/watch/san-francisco/it-takes-3170-hours-to-hide-condoms-in-a-porno-15412bcn,8,9,pmcpinto,5/13/2016 9:40 +11264765,Frameworks Don't Make Much Sense,http://www.catonmat.net/blog/frameworks-dont-make-sense/,136,138,th0ma5,3/11/2016 5:08 +12284178,Its time to publicly shame United Airlines so-called online security,https://techcrunch.com/2016/08/13/its-time-to-publicly-shame-united-airlines-so-called-online-security/?ncid=rss,3,1,sashk,8/14/2016 3:40 +11687953,Larry Ellison's $200M cancer research gift,http://www.latimes.com/local/lanow/la-me-ln-larry-ellison-usc-cancer-20160512-story.html,54,40,thaw13579,5/13/2016 1:08 +12355882,Takeaways from YCs Demo Day pitches from an alumni turned investor,https://medium.com/@stefanobernardi/takeaways-from-ycs-demo-day-pitches-from-an-alumni-turned-investor-292af1c03540#.8ekh6fz5k,6,1,sethbannon,8/24/2016 22:57 +10867293,Sharing a Hotel Room with a Stranger Just Got Strangely Easy,http://www.citylab.com/navigator/2016/01/winston-club-hotel-room-sharing-service/423027/?utm_source=SFFB,2,1,davidiach,1/8/2016 19:03 +11590225,"Why you shouldn't exercise to lose weight, explained with 60+ studies",http://www.vox.com/2016/4/28/11518804/weight-loss-exercise-myth-burn-calories,2,1,ShaneBonich,4/28/2016 16:53 +11178172,How much money successful entrepreneurs started with,https://www.lendingtree.com/how-much-money-successful-entrepreneurs-started-with-article,2,1,InfinityX0,2/25/2016 21:59 +10213553,The HTTP TTY,http://htty.github.io/htty/,168,48,senorgusto,9/14/2015 3:35 +11989438,"The worlds losers are revolting, and Brexit is only the beginning",https://www.washingtonpost.com/news/wonk/wp/2016/06/27/the-losers-have-revolted-and-brexit-is-only-the-beginning/,4,1,walterbell,6/27/2016 21:00 +10354726,Hitler's Drug Addiction,https://www.guernicamag.com/daily/andrea-maurer-high-hitler/,99,70,hecubus,10/8/2015 18:08 +12128866,Ethereum hard fork successful with mining majority,http://fork.ethstats.net/,149,131,onestone,7/20/2016 13:35 +10427572,YouTube Will Remove Videos of Creators Who Dont Sign Its Red Subscription Deal,http://techcrunch.com/2015/10/21/an-offer-creators-cant-refuse/,286,191,amlgsmsn,10/21/2015 18:41 +11595076,"Ask HN: This app, that app, which app, what app?",,2,1,ivineet,4/29/2016 11:54 +12096320,Five Years of Drought,https://adventuresinmapping.wordpress.com/2016/07/12/five-years-of-drought/,79,19,uptown,7/14/2016 18:48 +11404848,CIA Accidently Leaves Explosive Material on School Bus,http://abcnews.go.com/US/cia-accidentally-left-explosive-training-material-school-bus/story?id=38079658,2,1,jahangir45,4/1/2016 14:09 +10850567,CEmu TI-84 Plus/TI-83 Premium Calculator Emulator,https://github.com/MateoConLechuga/CEmu,76,35,zdw,1/6/2016 14:17 +11506603,"Kitten: compile to C, stack-based functional programming language",http://kittenlang.org/,5,3,vmorgulis,4/15/2016 18:38 +11366867,The curious link between Francophone countries and extremism,https://www.foreignaffairs.com/articles/2016-03-24/french-connection,3,2,Jasamba,3/26/2016 18:52 +11492842,NASA Is Trying to Grow Potatoes on Mars,http://www.wsj.com/articles/nasa-really-is-trying-to-grow-potatoes-on-mars-1460560325,132,65,T-A,4/13/2016 22:25 +12009882,The Ultimate Guide to Cold Calling Part II,https://persistiq.com/blog/the-ultimate-guide-to-cold-calling-part-ii/,4,1,brandonlee,6/30/2016 16:54 +10602421,Show HN: What are you focused on right now?,http://nownownow.com,1,1,gregalbritton,11/20/2015 17:26 +10849460,Show HN: Nodal. Next-Generation Node.js Server and Framework,http://www.nodaljs.com/,288,168,keithwhor,1/6/2016 9:20 +11627955,A Child Thinking About Infinity (2001) [pdf],http://homepages.warwick.ac.uk/staff/David.Tall/pdfs/dot2001l-childs-infinity.pdf,102,40,Phithagoras,5/4/2016 12:55 +12430676,Show HN: Android Studio plugin for effortless app development,http://exynap.com,6,3,andreas-schrade,9/5/2016 15:05 +10759815,Company gives every employee $100K bonus,http://www.11alive.com/story/life/2015/12/11/company-gives-every-employee-100k-bonus/77166540/,1,1,MarlonPro,12/18/2015 18:02 +10929043,Why Violins Have F-Holes,http://www.openculture.com/2016/01/why-violins-have-f-holes-the-science-history-of-a-remarkable-renaissance-design.html,164,59,signa11,1/19/2016 5:35 +12019925,"Don't tug on that, you never know what it might be attached to",http://blog.plover.com/tech/tmpdir.html,288,96,JoshTriplett,7/1/2016 21:46 +10211011,Ask HN: How to monetise helmetrex.com?,,4,4,ipselon,9/13/2015 11:25 +11990129,SpiderOak's zero-knowledge chat and collaboration platform released for iOS,https://spideroak.com/solutions/semaphor/tour-mobile,3,3,mrmondo,6/27/2016 22:48 +10497868,Income Inequality: Empirical View,http://ourworldindata.org/data/growth-and-distribution-of-prosperity/income-inequality/,29,63,hecubus,11/3/2015 6:03 +10945168,My GF and I finally completed our first ever game,,17,14,suavisapps,1/21/2016 14:03 +12434290,Growing One's Consulting Business,https://training.kalzumeus.com/newsletters/archive/consulting_1,3,1,charlieirish,9/6/2016 7:55 +11552626,How we found that the Linux nios2 memset() implementation had a bug,http://free-electrons.com/blog/how-we-found-that-the-linux-nios2-memset-implementation-had-a-bug/,97,16,ingve,4/22/2016 21:19 +12508956,"Milo Yiannopoulos Is the Pretty, Monstrous Face of the Alt-Right",https://www.bloomberg.com/features/2016-america-divided/milo-yiannopoulos/,4,1,jeo1234,9/15/2016 19:16 +11501862,Trees Have Their Own Internet,http://www.theatlantic.com/science/archive/2016/04/the-wood-wide-web/478224/?utm_source=SFFB&single_page=true,3,1,jdnier,4/15/2016 3:21 +11466006,The Bad Cop Database,http://www.slate.com/articles/news_and_politics/crime/2015/02/bad_cops_a_new_database_collects_information_about_cop_misconduct_and_provides.html,14,3,dankohn1,4/10/2016 13:25 +12177770,Climate models are accurately predicting ocean and global warming,http://www.theguardian.com/environment/climate-consensus-97-per-cent/2016/jul/27/climate-models-are-accurately-predicting-ocean-and-global-warming,8,3,ramonvillasante,7/28/2016 1:29 +10336897,Is the Theory of Disruption Wrong?,http://www.bloomberg.com/news/articles/2015-10-05/did-clay-christensen-get-disruption-wrong-,51,12,jweir,10/6/2015 5:29 +11885755,Ask HN: How do you identify potential in a software developer?,,5,2,msurekci,6/11/2016 22:51 +12035081,Pretty Curved Privacy,https://github.com/TLINDEN/pcp,90,45,e12e,7/5/2016 8:26 +12005748,ProducePay raises $2.5M to bring cashflow to farmers,https://techcrunch.com/2016/06/29/producepay-seed-funding/,2,1,billhendricksjr,6/30/2016 0:01 +12485166,... it's my fault that Google shut down Google Reader,https://twitter.com/nickbaum/status/775176446318776325,70,36,rtpg,9/13/2016 2:09 +11870580,Introducing Nearby: A new way to discover the things around you,https://android.googleblog.com/2016/06/introducing-nearby-new-way-to-discover.html,3,1,theak,6/9/2016 16:49 +10870488,Why I Write Games in C,http://jonathanwhiting.com/writing/blog/games_in_c/,279,298,ingve,1/9/2016 7:54 +10591318,Number of Tor users recently halved,https://metrics.torproject.org/userstats-relay-country.html,42,16,frabcus,11/18/2015 22:46 +11457445,ReachNow BMW car sharing service in Seattle,http://www.bmwcarsharing.com/,50,58,chirau,4/8/2016 20:00 +11939136,Envisioning a Hack That Could Take Down NYC,http://nymag.com/daily/intelligencer/2016/06/the-hack-that-could-take-down-nyc.html,109,28,ChrisArchitect,6/20/2016 16:36 +11753833,Book review: Disrupted: Dan Lyons v the startup bubble (at Hubspot),https://theoverspill.wordpress.com/2016/05/23/book-review-disrupted-dan-lyonss-misadventure-in-the-startup-bubble-at-hubspot/,4,1,jkestner,5/23/2016 13:54 +11483713,"An Ex-Apple CEO on MIT, Marketing and Why We Can't Stop Talking About Steve Jobs",http://bostinno.streetwise.co/2016/04/08/apples-steve-jobs-and-john-sculley-fight-over-ceo/,2,1,madars,4/12/2016 21:26 +10517951,Ask HN: Does anyone really love their job?,,22,22,tech_crawl_,11/6/2015 5:13 +11309476,BART Talks Back: Agency's Twitter Account Responds to User Complaints,http://www.nytimes.com/2016/03/18/us/bart-talks-back-agencys-twitter-account-responds-to-user-complaints.html,15,3,gwintrob,3/18/2016 2:35 +11069496,"University of Phoenix owner sells as 50,500 students flee",http://money.cnn.com/2016/02/08/pf/college/university-of-phoenix-online-sold/index.html?iid=ob_homepage_money_pool&iid=obnetwork,2,2,bdcravens,2/9/2016 22:55 +10322657,Show HN: Trop command line utility for transmission-remote,http://github.com/bkazemi/trop,2,4,bkazemi,10/3/2015 4:50 +11972070,Rio Olympics Drug-Testing Lab Is Suspended by WADA,http://www.nytimes.com/2016/06/25/sports/olympics/rio-drug-testing-lab-is-suspended-by-wada.html,5,1,uptown,6/24/2016 18:10 +12343601,Scientist believes the summer ice cover at the north pole is about to disappear,https://www.theguardian.com/environment/2016/aug/21/arctic-will-be-ice-free-in-summer-next-year,26,25,vmateixeira,8/23/2016 13:40 +11821245,"Ask HN: Numerical PDE's, Programming Language and Book Recommendations",,2,1,dcownden,6/2/2016 9:25 +10952329,"New social network, where you dont need followers to start use",http://letfeed.com/,4,1,Maged_Attia,1/22/2016 12:37 +10497990,Amazon Adds New Perks for Workers and Opens a Bookstore,http://www.nytimes.com/2015/11/03/technology/amazon-adds-new-perks-for-workers-and-opens-a-bookstore.html,16,5,aaronbrethorst,11/3/2015 6:50 +11919030,Crowdfunding site dedicated to Anti-Aging research projects,https://www.lifespan.io/,3,1,notevenodd,6/16/2016 21:29 +12330187,Tor General Strike,https://ghostbin.com/paste/kmnzz,28,25,setra,8/21/2016 9:46 +10973601,Implementation of Conductive Concrete for Deicing (2008) [pdf],http://nlcs1.nlc.state.ne.us/epubs/R6000/B016.0132-2008.pdf,2,1,phrogdriver,1/26/2016 14:51 +12522652,Golang landmines,https://gist.github.com/lavalamp/4bd23295a9f32706a48f,141,108,kornish,9/17/2016 21:47 +10722339,Timbre.js: JavaScript Library for Objective Sound Programming,http://mohayonao.github.io/timbre.js/,2,1,bemmu,12/12/2015 10:35 +11096543,Android EAS NOAA Weather Radio Alert Decoder,http://phasenoise.livejournal.com/2601.html,16,1,wolframio,2/14/2016 0:53 +10806647,Advertising Standards Authority Ruling on LiveDrive Internet Ltd,https://www.asa.org.uk/Rulings/Adjudications/2015/12/Livedrive-Internet-Ltd/SHP_ADJ_311623.aspx#.VoKQaraLS00,2,2,DanBC,12/29/2015 13:57 +11586290,Apply HN: Completely Customisable Suggestions For Videos,,4,3,chienomi,4/28/2016 2:49 +12209595,Show HN: Sharingbuttons.io Fast and easy social media sharing buttons,http://sharingbuttons.io,350,95,mxstbr,8/2/2016 13:03 +10545689,On Being Smart (2009) [pdf],http://sma.epfl.ch/~moustafa/General/onbeingsmart.pdf,236,130,jonnybgood,11/11/2015 9:41 +11385515,The incestuous relations among containers orchestration tools,http://it20.info/2016/03/the-incestuous-relations-among-containers-orchestration-tools/,20,2,walterclifford,3/29/2016 22:36 +10695662,Pokemon Go for iOS and Android,http://www.pokemon.com/us/pokemon-video-games/pokemon-go/,80,64,wgx,12/8/2015 10:25 +11889800,Structureshrink: Structured shrinking of unknown file formats,https://github.com/DRMacIver/structureshrink,37,6,ingve,6/12/2016 19:21 +10823783,Things I learned clearing disk space,http://www.shubhro.com/2016/01/01/learned-clearing-disk-space/,5,7,shbhrsaha,1/1/2016 22:26 +11980128,"Some thoughts on Brexit, democracy and fairness",https://www.facebook.com/mkarliner/posts/10154336314208023,1,1,mkarliner,6/26/2016 10:10 +10888467,Sexism Valley: 60% of women in Silicon Valley experience harassment,http://www.theguardian.com/technology/2016/jan/12/silicon-valley-women-harassment-gender-discrimination,4,1,rett12,1/12/2016 16:50 +12323339,BuyCott,http://buycott.com,1,1,ffggvv,8/19/2016 20:46 +11344001,Show HN: HiCred Building a platform of trust between buyers and sellers,https://hicred.com,2,2,acmeyer9,3/23/2016 13:03 +11154617,HN Replies,http://hnreplies.com/,5,1,ca98am79,2/22/2016 22:00 +11069818,When Addiction Has a White Face,http://www.nytimes.com/2016/02/09/opinion/when-addiction-has-a-white-face.html,19,3,NN88,2/9/2016 23:58 +11900128,Printing Cliches,http://www.printing-machine.org/notes/2016/6/4/printing-cliches,35,6,benbreen,6/14/2016 6:15 +12108343,Why age in software is bullshit,https://medium.com/@davewiner/why-age-in-software-is-bullshit-2b28b2f4b101#.wbp7h3cts,31,18,moonlighter,7/16/2016 23:50 +12209828,Real Estate Agents Are Weaponizing Snapchat,https://backchannel.com/snapchat-grows-up-and-moves-into-a-tasteful-2-5-million-manse-14845b6d2a21?source=rss----d16afa0ae7c---4,19,18,dwaxe,8/2/2016 13:40 +11268655,Grocery-Delivery Startup Instacart Cuts Pay for Couriers,http://www.wsj.com/news/article_email/grocery-delivery-startup-instacartcuts-pay-for-couriers-1457715105-lMyQjAxMTI2MjE0MTIxNzE3Wj,4,2,nikunjk,3/11/2016 18:51 +12014424,"After Brexit, Finding a New London for the Financial World to Call Home",http://www.nytimes.com/2016/07/01/business/after-brexit-finding-a-new-london-for-the-financial-world-to-call-home.html,55,134,edward,7/1/2016 7:28 +10667960,House Restores Local Education Control in Revising No Child Left Behind,http://www.nytimes.com/2015/12/03/us/house-restores-local-education-control-in-revising-no-child-left-behind.html,14,5,walterbell,12/3/2015 5:38 +10891493,Tim Ferriss Major Depression Research,https://www.crowdrise.com/timferriss,81,28,gwintrob,1/13/2016 0:34 +10231417,Ask HN: What am I doing wrong or where is the Fail?,,3,9,chad_strategic,9/17/2015 3:28 +11558977,New protein injection reverses Alzheimers symptoms in mice in one week,http://www.sciencealert.com/new-protein-injection-reverses-alzheimer-s-symptoms-in-mice-in-just-one-week,23,1,chirau,4/24/2016 8:21 +12528280,Mass-analyzing a chunk of the Internet,http://255.wf/2016-09-18-mass-analyzing-a-chunk-of-the-internet/,3,1,iamjeff,9/19/2016 1:53 +10733164,Kinto open-source alternative to Firebase and Parse,http://kinto.readthedocs.org/en/latest/overview.html,350,92,vladikoff,12/14/2015 19:26 +12509817,"Show HN: I built an auto aggregating bot, collecting trending funny pictures",http://www.pixpit.com,11,10,rezashirazian,9/15/2016 21:04 +10192203,Chef Software Raises $40M in Series E Funding,https://www.chef.io/blog/2015/09/09/chef-raises-40-million-in-series-e/,73,33,GrinningFool,9/9/2015 15:58 +12278522,How do I report a scam/phising page?,,1,1,vezycash,8/12/2016 20:23 +12171163,The 2016 Top Programming Languages,http://spectrum.ieee.org/computing/software/the-2016-top-programming-languages,16,5,Tatyanazaxarova,7/27/2016 7:37 +12504027,All quiet in the IPv4 Internet?,http://blog.apnic.net/2016/09/15/quiet-ipv4-internet/,1,1,okket,9/15/2016 7:12 +11684370,Titan-X GPUs in the cloud $0.49 / hour for deep learning and other GPU apps,http://www.bitfusion.io/2016/05/03/deep-learning-cloud-nvidia-digits-titan-x-gpus-starting-0-49-per-hour-nimbix/,5,2,profen,5/12/2016 16:01 +11340729,"To Stay Relevant in a Career, Workers Train Nonstop (2012)",http://www.nytimes.com/2012/09/22/business/to-stay-relevant-in-a-career-workers-train-nonstop.html,3,1,Futurebot,3/22/2016 23:17 +10941966,Show HN: Detect upsampling in images,https://github.com/0x09/resdet,113,15,0x09,1/20/2016 22:45 +12524378,The Age of Unjustifiable Consumerism,https://newark1.com/iphone-7-wireless-consumerism-marketing,31,47,design7,9/18/2016 8:01 +10537350,DIY CRISPR Genome Engineering Kits on Indiegogo,https://www.indiegogo.com/projects/diy-crispr-genome-engineering-kits-from-the-odin/x/4544718#/,3,1,InDubiousBattle,11/10/2015 2:58 +11858399,ConnectorDB an open-source platform for Quantified Self,https://connectordb.github.io/,4,1,connectordb,6/7/2016 22:12 +11445867,Apply HN: Enterprise and messaging bots,,3,1,wittytom,4/7/2016 9:12 +11473864,The History of Chocolate as a Health Food,http://www.canadapharmacyonline.com/blog/index.php/The-History-of-Chocolate-as-A-Health-Food/,12,4,ohjeez,4/11/2016 18:18 +11312353,The Tragic Tale of Saddam Hussein's Supergun,http://www.bbc.com/future/story/20160317-the-man-who-tried-to-make-a-supergun-for-saddam-hussein,133,54,rm_-rf_slash,3/18/2016 15:22 +11636523,Ask HN: Are web developers on the chopping block?,,12,16,acconrad,5/5/2016 14:45 +10868051,Netanel Rubin The Perl Jam 2. Perl Is Dead (simple to Exploit) [pdf],https://lab.dsst.io/32c3-slides/slides/7130.pdf,2,2,SchizoDuckie,1/8/2016 20:41 +10744905,PLY (Python Lex-Yacc) To Write a Parser in Python,https://github.com/dabeaz/ply,4,2,jonjlee,12/16/2015 15:39 +11018625,Implementing the Elm Architecture in Swift,https://medium.com/design-x-code/elmification-of-swift-af14b7f92b30,93,20,rheeseyb,2/2/2016 10:26 +12084829,Designing Sane Scoping Rules,http://tratt.net/laurie/blog/entries/designing_sane_scoping_rules.html,2,1,bakery2k,7/13/2016 8:49 +11410519,A revised Lisp interpreter in Go,http://www.oki-osk.jp/esc/golang/lisp4-en.html,54,9,suzuki,4/2/2016 6:39 +11994410,D3 v4.0.0 Released,https://github.com/d3/d3/releases/v4.0.0,94,19,uptown,6/28/2016 15:16 +12470787,Alleged VDOS Proprietors Arrested in Israel,http://krebsonsecurity.com/2016/09/alleged-vdos-proprietors-arrested-in-israel/,3,1,okket,9/10/2016 20:43 +10542198,The United States API and How We Use It,https://medium.com/@dget/the-united-states-api-and-how-remix-uses-it-5c4b21f5b332,63,7,dget,11/10/2015 20:27 +11483770,Googles self-driving car vs. Tesla Autopilot,http://electrek.co/2016/04/11/google-self-driving-car-tesla-autopilot/,3,2,electriclove,4/12/2016 21:35 +10638798,"Storing solar, wind, and water energy underground could replace burning fuel",http://www.kurzweilai.net/storing-solar-wind-and-water-energy-underground-could-replace-burning-fuel,59,10,tdurden,11/27/2015 20:56 +10698133,How platform coops can beat death stars like Uber to create a sharing economy,http://commonstransition.org/how-platform-coops-can-beat-death-stars-like-uber-to-create-a-real-sharing-economy/,1,1,thomasfl,12/8/2015 18:05 +11581960,Apply HN: The Mirror AI,,3,11,akosenkov,4/27/2016 16:31 +11049598,How good is your website?,https://www.talentcupboard.com/website-grader/,2,1,imprace,2/6/2016 20:16 +11070315,"Show HN: Mariana, the Cutest Deep Learning Framework",https://github.com/tariqdaouda/Mariana,9,1,daoudat,2/10/2016 2:09 +11610474,Ask HN: Control units for automotive,,2,1,selmat,5/2/2016 11:06 +11260934,WATERLOOP The University of Waterloo Hyperloop Pod Competition Team,https://www.teamwaterloop.com/#welcome-to-waterloop,2,1,rocky1138,3/10/2016 18:22 +11893057,"Ask HN: Financial resources for IT certification course, exam, or otherwise?",,2,2,jdironman,6/13/2016 12:03 +11002878,Why You Should Learn JavaScript in 2016,http://knpw.rs/blog/learn-javascript-2016/,7,3,kpthunder,1/30/2016 17:58 +11266855,MIT Media Labs Journal of Design and Science Is a New Kind of Publication,http://www.wired.com/2016/03/mit-media-labs-journal-design-science-radical-new-kind-publication/,81,20,espeed,3/11/2016 14:44 +10783249,How to hire the best people you've ever worked with (2007),http://pmarchive.com/how_to_hire_the_best_people.html,137,48,wyclif,12/23/2015 13:58 +11050557,Diamonds Are Bullshit (2013),http://priceonomics.com/post/45768546804/diamonds-are-bullshit,16,4,jseliger,2/6/2016 23:27 +10246967,Gary Becker's biggest mistake,http://marginalrevolution.com/marginalrevolution/2015/09/what-was-gary-beckers-biggest-mistake.html,64,13,smollett,9/20/2015 9:00 +12083139,Englands Last Gasp of Empire,http://mobile.nytimes.com/2016/07/13/opinion/englands-last-gasp-of-empire.html,20,21,ezequiel-garzon,7/13/2016 0:11 +10320675,Show HN: Travocado Simplify camping trip logistics,https://www.travocado.co/,2,2,travocado,10/2/2015 19:26 +11233583,Need Help to Recall CSS in JavaScript Dec***,,2,1,proyb,3/6/2016 12:52 +12361897,A Pottery Barn rule for scientific journals,https://hardsci.wordpress.com/2012/09/27/a-pottery-barn-rule-for-scientific-journals/,10,5,taylorbuley,8/25/2016 19:45 +11785160,Delta built the more efficient TSA checkpoints that the TSA couldn't,http://www.theverge.com/2016/5/26/11793238/delta-tsa-checkpoint-innovation-lane-atlanta,7,1,bruce_one,5/27/2016 11:04 +10304910,Show HN: Build Node.js Packages for AWS Lambda Using AWS Lambda,https://github.com/node-hocus-pocus/thaumaturgy,6,1,impostervt,9/30/2015 16:04 +10976903,"Ask HN: Am I ridiculous for finding 8 hours of work as a coder, ridiculous?",,54,43,EC1,1/26/2016 22:57 +11731689,How the Gut Affects Mood,http://fivethirtyeight.com/features/gut-week-gut-brain-axis-can-fixing-my-stomach-fix-me/,198,33,sndean,5/19/2016 17:05 +10937020,Charles Nutter of JRuby Banned by Rubinius for Harassment,http://rubinius.com/2016/01/15/banning-mr-nutter-for-repeated-harassment/,13,8,sandGorgon,1/20/2016 10:04 +10457338,Is it weather to get up? Or should you stay in bed?,http://www.ishetweeromoptestaan.nl/,1,2,sjefw,10/27/2015 11:20 +12251799,College Bottlenecks,http://micheleincalifornia.blogspot.com/2016/08/college-bottlenecks.html,3,1,Mz,8/9/2016 0:41 +11761437,How one announcement damaged the .NET ecosystem on Windows,https://medium.com/@ailon/how-one-announcement-destroyed-the-net-ecosystem-on-windows-19fb2ad1aa39#.p15acactc,157,95,ailon,5/24/2016 13:47 +10346745,The End of History? (1989),http://www.wesjones.com/eoh.htm#2,18,13,gwern,10/7/2015 15:56 +10528845,"SupermealX, Indias Soylent",http://www.nytimes.com/2015/10/29/world/asia/india-soylent-supermealx.html,24,46,jagath,11/8/2015 16:10 +12336430,Bounds Check Elimination (BCE) in Golang 1.7,http://www.tapirgames.com/blog/golang-1.7-bce,93,25,tapirl,8/22/2016 14:12 +10568529,"Words matter in ISIS war, so use Daesh",http://www.bostonglobe.com/opinion/2014/10/09/words-matter-isis-war-use-daesh/V85GYEuasEEJgrUun0dMUP/story.html,122,64,keitmo,11/15/2015 4:43 +11346987,Why Were Removing Kik Messenger from Startup Timelines,https://medium.com/@bakztfuture/why-we-re-removing-kik-messenger-from-startup-timelines-ee18b9ede099#.gsxjs9bvk,29,4,bakztfuture,3/23/2016 18:27 +10260535,Ask HN: How to make quick help GIFs?,,1,3,codewithcheese,9/22/2015 18:23 +11449995,Even a genius has to sell himself the remarkable resume of Leonardo da Vinci,https://medium.com/life-learning/even-a-genius-has-to-sell-himself-the-remarkable-resume-of-leonardo-da-vinci-453fb6d53efd#.bc348grro,1,1,mcenedella,4/7/2016 19:37 +12303100,A Conflict-Free Replicated JSON Datatype,http://arxiv.org/abs/1608.03960,132,59,DanielRibeiro,8/17/2016 8:02 +12539248,Show HN: Minimalist (Brutalist?) Real Estate Web Design,https://danearthur.com,13,22,cabinguy,9/20/2016 13:16 +10677693,The Curious Case of Linux Containers,https://medium.com/@sumbry/the-curious-case-of-linux-containers-328e2adc12a2#.ehqvuvenq,101,26,coloneltcb,12/4/2015 17:37 +11413992,Latency numbers every programmer should know,http://www.eecs.berkeley.edu/~rcs/research/interactive_latency.html,48,8,sajid,4/2/2016 23:02 +11972167,A Rest API's specification for the 21th century,https://github.com/lambda2/rapis,4,3,holowmareen,6/24/2016 18:22 +12294009,Further simplifying servicing models for Windows 7 and Windows 8.1,https://blogs.technet.microsoft.com/windowsitpro/2016/08/15/further-simplifying-servicing-model-for-windows-7-and-windows-8-1/,2,1,walterbell,8/15/2016 22:34 +10178362,"As police move to adopt body cams, storage costs set to skyrocket",http://www.computerworld.com/article/2979627/cloud-storage/as-police-move-to-adopt-body-cams-storage-costs-set-to-skyrocket.html,8,2,fezz,9/6/2015 17:43 +10734937,Show HN: Bodybuilder an elasticsearch query body builder for JavaScript,https://github.com/danpaz/bodybuilder,7,2,danpaz,12/15/2015 0:00 +11649745,Swift for Windows,https://swiftforwindows.codeplex.com,43,21,chrisamanse,5/7/2016 14:38 +11452997,Mossack Fonseca Exposes Unmaintained Open Source CMS Risks,http://react-etc.net/entry/mossack-fonseca-exposes-unmaintained-open-source-cms-risks,37,12,velmu,4/8/2016 6:51 +10669509,"A biologist, a mathematician, and a computer scientist walk into a foobar",http://www.broadinstitute.org/blog/biologist-mathematician-and-computer-scientist-walk-foobar,37,12,fitzwatermellow,12/3/2015 13:51 +11917889,"The Difference Between Very, Very Good Founders. and Truly Great Founders",https://www.saastr.com/very-good-vs-great-founders/,4,1,diegonarvaez,6/16/2016 18:19 +10987030,"When Edison, Ford and Friends Went Road-Tripping in Model Ts",http://www.smithsonianmag.com/history/when-americas-titans-industry-and-innovation-went-road-tripping-together-180957924/?no-ist,47,6,dangerman,1/28/2016 8:14 +12067123,Visualizing relationships between Python packages,https://kozikow.com/2016/07/10/visualizing-relationships-between-python-packages-2/,63,24,kozikow,7/10/2016 20:26 +10981047,Building AI,https://www.facebook.com/zuck/posts/10102620559534481,175,147,klunger,1/27/2016 16:45 +11233580,"Its Discounted, but Is It a Deal? How List Prices Lost Their Meaning",http://www.nytimes.com/2016/03/06/technology/its-discounted-but-is-it-a-deal-how-list-prices-lost-their-meaning.html,67,50,sciurus,3/6/2016 12:50 +11708226,The blockchain is a threat to the distributed future of the Internet,https://lasindias.com/blockchain-is-a-threat-to-the-distributed-future-of-the-internet,124,77,xrorre,5/16/2016 18:05 +11352295,Advanced Linux Programming book with free PDF (2001),http://advancedlinuxprogramming.com/,229,36,nonrecursive,3/24/2016 12:46 +12144608,Microsoft given 3 months to fix Windows 10 security and privacy,https://nakedsecurity.sophos.com/2016/07/21/microsoft-given-3-months-to-fix-windows-10-security-and-privacy/,2,1,satysin,7/22/2016 16:31 +11048551,The React on Rails Doctrine,https://medium.com/@railsonmaui/the-react-on-rails-doctrine-3c59a778c724#.gs653wcfk,1,1,justin808,2/6/2016 17:10 +12240159,Frequent Password Changes Is a Bad Security Idea,https://www.schneier.com/blog/archives/2016/08/frequent_passwo.html,130,58,alanfranzoni,8/6/2016 22:23 +11618912,Hacker News and Community Saved Our Company,http://arcticstartup.com/article/how-to-rise-from-ashes-relaunching-arcticstartup-website/,12,3,dsarle,5/3/2016 8:42 +12549224,Weex the Vue-Native,http://alibaba.github.io/weex/,1,1,ausjke,9/21/2016 15:42 +11012676,Remote freelance jobs,https://github.com/kaizensoze/remote-freelance-jobs,8,1,kaizensoze,2/1/2016 16:23 +11393885,Show HN: Paralign A Smart Journal That Finds Patterns Within Your Thoughts,http://paralign.me/,5,3,gyoungberg,3/30/2016 23:41 +12033814,First mobile(iOS) app submitted to the app store for review,http://captaindanko.blogspot.com/2015/08/first-mobileios-app-submitted-to-app.html,1,1,bsoni,7/5/2016 0:54 +12050439,Why not drones or bluetooth devices to make the traffic stop interactions safe?,https://www.reddit.com/r/news/comments/4rmo35/graphic_video_shows_black_man_bleeding_after/d52yzfy,1,2,AmIFirstToThink,7/7/2016 16:40 +11009914,OpenHAB: open-source home automation software,http://www.openhab.org/,29,4,dmmalam,2/1/2016 5:14 +12051054,Jim Comey's Statement on the Clinton Emails: A Quick and Dirty Analysis,https://www.lawfareblog.com/jim-comeys-statement-clinton-emails-quick-and-dirty-analysis,5,2,curtis,7/7/2016 18:05 +11172171,Coraline Ada Ehmke Joins GitHub to Fight Epidemic of Harassment,https://twitter.com/CoralineAda/status/702594868984459264,17,5,generic_user,2/25/2016 3:26 +10699935,Eric Schmidt suggests system to disrupt/decelerate viral hate messages online,http://www.wired.co.uk/news/archive/2015-12/08/eric-schmidt-alphabet-harassment,2,1,pen2l,12/8/2015 22:03 +12333177,Software Exploits Aren't Needed to Hack Most Organizations,http://www.darkreading.com/operations/attackers-playbook-top-5-is-high-on-passwords-low-on-malware/d/d-id/1326667,4,1,empressplay,8/21/2016 23:15 +10315345,"The Most Important Thing, and Its Almost a Secret",http://www.nytimes.com/2015/10/01/opinion/nicholas-kristof-the-most-important-thing-and-its-almost-a-secret.html,4,3,apsec112,10/1/2015 22:46 +10596827,Handheld Torch Accelerates Hot Breaching,http://defense-update.com/20150703_tectorch.html,22,8,jackgavigan,11/19/2015 19:10 +12195420,Why did early human societies practice violent human sacrifice?,https://theconversation.com/why-did-early-human-societies-practice-violent-human-sacrifice-55380,5,1,curtis,7/31/2016 2:10 +11464366,"Show HN: ads: Tool to start, stop, and manage microservices in a codebase",https://github.com/adamcath/ads,5,4,adamcath,4/10/2016 1:27 +12335689,Commentary: Evidence Points to Another Snowden at the NSA,http://www.reuters.com/article/us-intelligence-nsa-commentary-idUSKCN10X01P,1,1,aburan28,8/22/2016 12:09 +10768205,Show HN: A Werewolf bot for Slack,https://github.com/chrisgillis/slackwolf,96,42,bass_case,12/20/2015 20:35 +10541519,Ask HN: Hacking or management?,,11,18,vcald64,11/10/2015 19:04 +12559558,Airbnb Raises $555M in New Funding,http://fortune.com/2016/09/22/exclusive-airbnb-raises-555-million-in-new-funding/,22,5,gatsby,9/22/2016 19:29 +11739126,The Hack at ShapeShift,http://moneyandstate.com/looting-of-the-fox/,17,4,swalberg,5/20/2016 16:22 +11615773,Unison,http://unisonweb.org/,2,1,bandris,5/2/2016 21:22 +11342575,Strong Link Found Between Dementia and Common Anticholinergic Drugs (2015),http://www.dddmag.com/articles/2015/04/strong-link-found-between-dementia-common-anticholinergic-drugs,199,106,objections,3/23/2016 6:45 +12436087,Don't let sharedWorkers die,https://github.com/whatwg/html/issues/315#issuecomment-244903762,1,1,malko,9/6/2016 14:07 +11723570,Collection Pipeline (2015),http://martinfowler.com/articles/collection-pipeline/,40,4,oskarth,5/18/2016 17:13 +11169159,"Ask HN: One email, multiple team members",,2,3,codegeek,2/24/2016 18:55 +11822429,How Storj is increasing object storage security exponentially,http://blog.storj.io/post/145305561698/how-storj-is-increasing-security-exponentially,6,1,super3,6/2/2016 13:53 +12304359,Git Workflow Basics,https://blog.codeminer42.com/git-workflow-basics-d405746f6205#.g648r8nuy,187,75,igor_marques,8/17/2016 13:09 +11559673,Fast incremental sort,http://larshagencpp.github.io/blog/2016/04/23/fast-incremental-sort,57,10,ingve,4/24/2016 13:49 +10935542,Why an Ex-Google Coder Makes Twice as Much Freelancing,http://www.bloomberg.com/news/articles/2016-01-19/why-an-ex-google-coder-makes-twice-as-much-freelancing?cmpid=BBD011916_BIZ,10,1,ca98am79,1/20/2016 1:55 +10546588,The iPad Pro,http://daringfireball.net/2015/11/the_ipad_pro,90,109,tambourine_man,11/11/2015 13:43 +11976364,Britain's Brexit: How Baby Boomers Defeated Millennials in Historic Vote,http://www.nbcnews.com/storyline/brexit-referendum/britain-s-brexit-how-baby-boomers-defeated-millennials-historic-vote-n598481,2,4,koolba,6/25/2016 14:13 +10807547,"How I built ghit.me, hit count badges for GitHub",https://benwilber.github.io/nginx/syslog-ng/redis/github/hit/counter/2015/12/25/how-i-built-ghit-me.html,55,18,benwilber0,12/29/2015 16:54 +10521626,Show HN: DateCheckup.com Schedule fake rescue calls and texts via SMS,http://datecheckup.com,8,8,mbosch,11/6/2015 19:58 +10413237,Antarctica: McMurdo research station is looking for a Systemadministrator,http://www.theregister.co.uk/2015/10/16/looking_for_sysadmin_work_like_travel_dont_mind_cold_have_we_got_the_job_for_you/,9,4,v4n4d1s,10/19/2015 14:50 +12555644,The best method to kill procrastination and finally build a side project,http://www.nextbigme.com/the-best-method-to-kill-your-procrastination,5,1,madbyte,9/22/2016 9:35 +11322115,Coliving Revolution Is Beginning with the Success of OpenDoor.io,http://www.latimes.com/business/technology/la-fi-tech-coliving-20160224-story.html,2,1,typeformer,3/20/2016 7:15 +10345884,"The Vigilantes Who Created 'Malware' to Secure 10,000 Routers",http://www.forbes.com/sites/thomasbrewster/2015/10/06/mystery-white-team-vigilante-hackers-speak-out/,102,33,cdubzzz,10/7/2015 13:36 +12358784,Its time EU laws caught up with technology,https://changecopyright.org/,109,47,doener,8/25/2016 13:26 +12368172,2016 H1B Visa Reports: Top 100 H1B Visa Sponsors,http://www.myvisajobs.com/Reports/2016-H1B-Visa-Sponsor.aspx,74,49,bing_dai,8/26/2016 18:17 +12098574,Show HN: Setting up an app status page for $5 per month,http://devan.blaze.com.au/blog/2016/7/15/building-a-status-page-for-5-per-month,11,6,cyberferret,7/15/2016 2:13 +11829076,How to Destroy Your Startup in 15 Easy Steps,http://observer.com/2016/06/how-to-destroy-your-startup-in-15-easy-steps/,3,1,sambalbadjak,6/3/2016 8:41 +11406647,Egypt blocked Facebook Internet service over surveillance,http://www.reuters.com/article/us-facebook-egypt-idUSKCN0WY3JZ,30,5,prostoalex,4/1/2016 17:22 +11610185,Makefile Assignments are Turing-Complete,http://nullprogram.com/blog/2016/04/30/,60,16,bidouilliste,5/2/2016 9:34 +10985137,Ask HN: Why is hosting in Australia (and New Zealand) so crazy expensive?,,11,22,mingabunga,1/28/2016 1:03 +11681820,Fully automated dockerized Let's Encrypt reverse proxy,https://advancedweb.hu/2016/05/10/lets-encrypt/,69,15,kiyanwang,5/12/2016 6:53 +10909926,Show HN: Peer-to-peer online volunteer community WorkForWorld,http://www.workforworld.com,2,1,iuliia_shevchuk,1/15/2016 15:44 +10921991,TorrentTunes BitTorrent-Based Music Streaming,https://github.com/tchoulihan/torrenttunes-client,5,2,mikemoka,1/18/2016 1:21 +10870892,Forbes asked readers to turn off adblockers then immediately served them malware,http://www.engadget.com/2016/01/08/you-say-advertising-i-say-block-that-malware/,365,151,temp,1/9/2016 11:34 +11325598,Scaling DOT to Scala Soundness,http://scala-lang.org/blog/2016/02/17/scaling-dot-soundness.html,2,1,acjohnson55,3/21/2016 1:19 +11631525,I made 3 CEOs rich So why am I broke?,http://www.forbes.com/sites/lizryan/2016/05/03/i-made-three-ceos-rich-so-why-am-i-broke/#6408bd8b2ec7,19,40,rmcfeeley,5/4/2016 20:34 +12118255,1x Forth (1999),http://www.ultratechnology.com/1xforth.htm,67,30,pointfree,7/18/2016 21:49 +12234937,Minds Turned to Ash: Burnout is more than working too hard,https://www.1843magazine.com/features/minds-turned-to-ash,349,95,xhrpost,8/5/2016 19:00 +12291253,Electric cars can replace 90% of vehicles now on the road,http://phys.org/news/2016-08-electric-vehicles-drivers-percent-road.html,3,2,dnetesn,8/15/2016 15:56 +12104696,A Method for Password-Less Authentication,http://www.h4ck.guru/passwordless.html,53,30,hackguru,7/16/2016 0:51 +11585879,Apply HN: Notisha Microlearning for Faith-Based Communities,,2,2,davidbwire,4/28/2016 0:55 +10622910,Leadwerks Game Engine Reaches 10k Paid Users,http://www.marketwired.com/press-release/leadwerks-game-engine-reaches-10000-paid-users-2076080.htm,27,8,PillowPants,11/24/2015 19:22 +10438471,Magic Leap Demo Video A Technical Analysis,http://www.zappar.com/blog/magic-leap-demo-video-a-technical-analysis/,5,5,tb100,10/23/2015 13:46 +10882563,TrendMicro Node.js HTTP server listening on localhost can execute commands,https://code.google.com/p/google-security-research/issues/detail?id=693,1030,229,tptacek,1/11/2016 19:22 +10975649,Quality is too important to be left to QA engineers,https://medium.com/@ketacode/quality-is-too-important-to-be-left-to-qa-engineers-188a6a978983#.ot87wpw38,3,1,tal_berzniz,1/26/2016 20:11 +11979841,Freeciv: BREXIT scenario UK borders closed,https://play.freeciv.org/?brexit=true,6,2,roschdal,6/26/2016 7:57 +11394227,Today Nintendo Fired a Woman After Months of Vicious Harassment,http://www.playboy.com/articles/today-nintendo-fired-a-woman-for-being-viciously-harassed,8,3,rmason,3/31/2016 0:51 +10552069,Sound Waves Could Power the Hard Drives of the Future,https://theconversation.com/sound-waves-could-power-hard-disk-drives-of-the-future-50474,8,3,elfalfa,11/12/2015 9:06 +10524823,"Hansard Corpus: British Parliament, 1803-2005",http://www.hansard-corpus.org/,21,1,vijayr,11/7/2015 14:12 +11700086,Ask HN: What are the optimal layout and Desired CV Characteristics?,,6,4,dimitrieh,5/15/2016 8:53 +11674621,How would you use an API that gave the cost of travelling from a to B?,,1,3,JamesBrill,5/11/2016 12:29 +11305018,Will We Glue Skyscrapers Together in the Future?,http://www.citylab.com/tech/2016/03/will-we-glue-skyscrapers-together-in-the-future/474036/,26,31,jseliger,3/17/2016 15:38 +10651060,Using Mac OS X native productivity enhancements,https://medium.com/productivity-freak/using-mac-os-x-productivity-enhancements-b7ca30ad38ee#.yyqbkxrud,13,1,altryne1,11/30/2015 19:07 +10261299,Distelli Rest API - An API for your Builds and Deployments,https://www.distelli.com/blog/product-update-introducing-the-distelli-api,2,1,kt9,9/22/2015 20:04 +10826028,Im gonna use my formula sheets and thats the only way Im gonna do stuff.,http://blog.mrmeyer.com/2016/im-gonna-use-my-formula-sheets-and-thats-the-only-way-im-gonna-do-stuff/,69,69,ColinWright,1/2/2016 12:45 +12228957,Things I Wont Work With: Peroxide Peroxides (2014),http://blogs.sciencemag.org/pipeline/archives/2014/10/10/things_i_wont_work_with_peroxide_peroxides,215,102,rishabhd,8/4/2016 22:39 +10183732,Bing Pushes Microsoft's Edge Browser When People Search for Chrome or Firefox,http://marketingland.com/microsoft-pushes-edge-on-bing-over-chrome-firefox-141614,2,1,srathi,9/8/2015 1:02 +11519090,Amazon Echo Is Magical. Its Also Turning My Kid into an Asshole,https://www.linkedin.com/pulse/amazon-echo-magical-its-also-turning-my-kid-asshole-hunter-walk?trk=hp-feed-article-title-like,60,49,SQL2219,4/18/2016 11:37 +11800902,Ask HN: Advice needed regarding TDD from programmers,,6,5,supersan,5/30/2016 12:16 +11150645,Delphi Chief Scientist Allen Bauer Has Left Embarcadero/Idera,http://blog.therealoracleatdelphi.com/2016/02/a-new-adventure.html,68,27,omnibrain,2/22/2016 13:33 +11920881,The 100:10:1 method the heart of my game design process,https://nickbentleygames.wordpress.com/2014/05/12/the-100-10-1-method-for-game-design/,246,39,momo-reina,6/17/2016 5:43 +10937129,Scrapy Tips from the Pros,http://blog.scrapinghub.com/2016/01/19/scrapy-tips-from-the-pros-part-1/,269,73,ddebernardy,1/20/2016 10:25 +12381291,The Anthropocene epoch: scientists declare dawn of human-influenced age,https://www.theguardian.com/environment/2016/aug/29/declare-anthropocene-epoch-experts-urge-geological-congress-human-impact-earth,93,18,okket,8/29/2016 12:02 +11399277,Combine Multiple AWS Instances into a 16-GPU Monster Machine,http://www.bitfusion.io/2016/03/31/introducing-monster-machines-worlds-largest-cloud-gpu-instances-aws/,140,45,Noughmad,3/31/2016 18:14 +11884023,Ask HN: Is Bloch's Effective Java Still Current?,,11,2,somethingsimple,6/11/2016 16:24 +12536923,A History of Haskell: Being Lazy with Class (2007) [pdf],http://research.microsoft.com/en-us/um/people/simonpj/papers/history-of-haskell/history.pdf,6,1,milesf,9/20/2016 3:53 +12453167,A collection of links that cover what happened during ElixirConf 2016,https://github.com/poteto/elixirconf-2016,117,15,brightball,9/8/2016 14:13 +10658351,Ask HN: Open Source License Which Prevents Competing SAAS,,1,4,whistlerbrk,12/1/2015 20:07 +10299458,Clipboard.js: Modern Copy to Clipboard,https://github.com/zenorocha/clipboard.js,4,1,jellekralt,9/29/2015 20:39 +10429940,Show HN: 3D Touch Canvas,https://github.com/cheeaun/3d-touch-canvas,16,2,cheeaun,10/22/2015 1:31 +10745944,Customer Support That Doesnt Scale: The Magic of the Handwritten Thank You Note,http://blog.statuspage.io/handwritten-thank-you-note,1,1,blakethorne,12/16/2015 17:57 +12500243,Apps built using the Desktop Bridge now available in the Windows Store,https://blogs.windows.com/buildingapps/2016/09/14/apps-built-using-the-desktop-bridge-now-available-in-the-windows-store/,4,1,oridecon,9/14/2016 19:08 +10569922,Interviewing for a Tech Position at Stitch Fix,http://multithreaded.stitchfix.com/blog/2015/11/15/interviewing-at-stitch-fix/,3,2,davetron5000,11/15/2015 15:56 +10292788,A9 Is TSMC 16nm FinFET and Samsung Fabbed,http://www.chipworks.com/about-chipworks/overview/blog/a9-is-tsmc-16nm-finfet-and-samsung-fabbed,38,15,glasshead969,9/28/2015 20:02 +11409079,Notes on distributed systems from Kyle Kingsbury (aphyr),https://github.com/aphyr/distsys-class,34,1,jxf,4/1/2016 22:36 +12502032,Show HN: Fundhub.xyz Make better fund investment decisions,https://fundhub.xyz/,2,1,kikowi,9/14/2016 23:17 +10842196,Cambridge CRISPR/CAS9 startup Editas plans to test IPO market,https://www.bostonglobe.com/business/2016/01/04/cambridge-startup-editas-plans-test-ipo-market-for-biotechs/uqK7XseLzbLNTtH5ENJ7bM/story.html,6,1,dbcooper,1/5/2016 9:09 +10407084,Maximizing Throughput on Multicore Systems,http://www.infoq.com/presentations/erlang-multicore,24,1,byaruhaf,10/18/2015 3:13 +10483184,Manned Orbital Laboratory: the Pentagon's cold war plan to put spies in orbit,http://www.thedailybeast.com/articles/2015/10/31/real-story-of-the-secret-space-station.html,7,2,EwanG,10/31/2015 16:42 +10496739,Ask HN: Considering a job offer at a unicorn. What should I know about equity?,,7,13,trying222,11/3/2015 1:26 +10412751,What The New York Times Didnt Say About Amazon,https://medium.com/@jaycarney/what-the-new-york-times-didn-t-tell-you-a1128aa78931,343,260,samhoggnz,10/19/2015 13:29 +10750157,Recursion and Tail Calls in Go,http://www.goinggo.net/2013/09/recursion-and-tail-calls-in-go_26.html,17,6,signa11,12/17/2015 7:45 +12134396,Ask: Has Microsoft spent your trust,,20,38,davidgrenier,7/21/2016 3:17 +11047109,Google DeepMind AI finds its way through a 3D maze by 'sight',http://www.engadget.com/2016/02/05/google-deepmind-ai-finds-its-way-through-a-3d-maze-by-sight/,2,1,wickedgain,2/6/2016 9:25 +10595366,Coding Math,http://www.codingmath.com/,51,5,spitcode,11/19/2015 15:48 +11437425,'New Rembrandt' to be unveiled in Amsterdam,http://www.theguardian.com/artanddesign/2016/apr/05/new-rembrandt-to-be-unveiled-in-amsterdam,4,1,adrianhoward,4/6/2016 8:18 +10866416,C strings with implicit length field,https://rwmj.wordpress.com/2016/01/08/half-baked-ideas-c-strings-with-implicit-length-field/#content,5,3,rwmj,1/8/2016 17:12 +11056986,Baltimore psychologist pioneers team using psychedelics as sacred medicine,http://www.theguardian.com/us-news/2016/jan/10/baltimore-psychologist-pioneers-team-using-psychedelics-as-sacred-medicine,48,44,daddy_drank,2/8/2016 8:34 +11568413,From Megaflops to Total Solutions: Cray and Supercomputing History [pdf],"http://ethw.org/images/7/76/Elzen_%26_MacKenzie,_From_Megaflops_to_Total_Solutions.pdf",40,10,poindontcare,4/26/2016 0:11 +10836906,Shareware Amateurs vs. Shareware Professionals (2003),http://www.sodaware.net/dev/articles/shareware-amateurs-vs-shareware-professionals.htm,38,14,Tomte,1/4/2016 17:27 +12260604,Open vStorage: Storage Without Compromises,https://github.com/openvstorage,1,1,guifortaine,8/10/2016 10:16 +12092661,Hacking a Car with an Ex-NSA Hacker,https://www.youtube.com/watch?v=MeXfCNwMG64,3,1,us0r,7/14/2016 10:06 +10769041,Wind Power Spreads Through Turbines for Lease,http://www.nytimes.com/2015/12/19/business/energy-environment/wind-power-spreads-through-turbines-for-lease.html,24,1,e15ctr0n,12/21/2015 1:15 +10865797,How Would You Respond If Asked: What Time Is the 3 Oclock Parade?,https://disneyinstitute.com/blog/2015/06/how-would-you-respond-if-asked-what-time-is-the-3-oclock-parade/355/,7,1,thejteam,1/8/2016 16:03 +10644493,Show HN: Billboard.py a library for downloading Billboard music ranking charts,https://github.com/guoguo12/billboard-charts,4,1,allenguo,11/29/2015 13:04 +11506188,"At Tampa Bay farm-to-table restaurants, youre being fed fiction",http://www.tampabay.com/projects/2016/food/farm-to-fable/restaurants/,100,103,neurobuddha,4/15/2016 17:38 +12232110,JQuery++,http://jquerypp.com/,79,72,ausjke,8/5/2016 13:25 +11566605,Ask HN: What AWS cloud management service do you recommend for small companies?,,2,1,eblanshey,4/25/2016 19:20 +11358557,Y Combinator gets friendlier by naming Justin Kan as new spokesperson,http://techcrunch.com/2016/03/24/y-kanbinator/,3,1,dineshp2,3/25/2016 4:58 +10837328,Facebook made its Android app crash to test user loyalty?,http://www.theverge.com/2016/1/4/10708590/facebook-google-android-app-crash-tests,66,44,k-mcgrady,1/4/2016 18:21 +12185868,50 Things I Pretend to Know Now That I Am Nearing 50,https://medium.com/the-mission/50-things-i-pretend-to-know-now-that-i-am-nearing-50-447ecf884ef0#.fsto0991n,22,25,ric3rcar,7/29/2016 10:19 +10332693,IBM is still making ThinkPad keyboards,http://mthompson.org/keyboard.html,233,154,cblop,10/5/2015 16:03 +10360029,The Comic Strip That Accidentally Created a Branch of Feminist Critical Theory,http://priceonomics.com/the-most-important-comic-strip-in-feminist/,2,1,bpolania,10/9/2015 13:59 +12318502,VeraCrypt 1.18a released,https://twitter.com/VeraCrypt_IDRIX/status/766539149646016512,56,17,v4n4d1s,8/19/2016 7:40 +12205454,Spark 2.0.0 Released,https://spark.apache.org/news/spark-2-0-0-released.html,91,22,Gimpei,8/1/2016 20:04 +12060876,CMLinux DIY fully customizable Linux from scratch,https://github.com/CherryMill/CMLinux,44,3,cmwong,7/9/2016 10:29 +12116792,Ask HN: Free VPN with good privacy,,1,1,GTP,7/18/2016 17:51 +11415537,Free Download: Red Hat Enterprise Linux Developer Suite for Development Use,http://developers.redhat.com/products/rhel/download/,8,1,doener,4/3/2016 9:42 +11954988,How Google Is Remaking Itself for Machine Learning First,https://backchannel.com/how-google-is-remaking-itself-as-a-machine-learning-first-company-ada63defcb70#.nljh17nb5,274,116,steven,6/22/2016 16:12 +11643409,How to get your email newsletter out of promotions tab to primary in Gmail,http://www.7loops.com/get-email-out-of-promotions-tab-gmail-land-primary-tab/,2,2,alesmaticic,5/6/2016 12:20 +11398707,Ask HN: Are you buying a Tesla model 3?,,9,29,billconan,3/31/2016 17:07 +11939005,Still not the end of food: Results of the 2016 soylent eaters survey,https://www.ketosoy.com/blogs/news/results-of-the-2016-soylent-eaters-survey,6,2,ketosoy,6/20/2016 16:18 +10525957,"Africans are mainly rich or poor, but not middle class",http://www.economist.com/news/middle-east-and-africa/21676774-africans-are-mainly-rich-or-poor-not-middle-class-should-worry,62,76,luu,11/7/2015 19:47 +11025548,SecureMyEmail email client that automatically gpg encrypts your emails,https://www.indiegogo.com/projects/securemyemail#/,2,1,noyesno,2/3/2016 9:22 +11313113,"Lloyd S. Shapely, 92, Nobel Laureate and a Father of Game Theory, Has Died",http://www.nytimes.com/2016/03/15/business/economy/lloyd-s-shapley-92-nobel-laureate-and-a-father-of-game-theory-is-dead.html,73,6,_murphys_law_,3/18/2016 16:59 +10798265,Postgres 9.5 feature rundown,http://www.craigkerstiens.com/2015/12/27/postgres-9-5-feature-rundown/,191,18,craigkerstiens,12/27/2015 18:34 +10453383,California Lawn Watering Economics,http://priceonomics.com/california-lawn-watering-economics/,34,53,ryan_j_naughton,10/26/2015 18:32 +12016802,He Was a Hacker for the NSA and He Was Willing to Talk. I Was Willing to Listen,https://theintercept.com/2016/06/28/he-was-a-hacker-for-the-nsa-and-he-was-willing-to-talk-i-was-willing-to-listen/,4,1,forgottenpass,7/1/2016 15:21 +12048709,Why we use the Linux kernel's TCP stack,https://blog.cloudflare.com/why-we-use-the-linux-kernels-tcp-stack/,19,2,jgrahamc,7/7/2016 11:51 +10941569,OpenSSH and the dangers of unused code,https://lwn.net/Articles/672465/,6,1,1ace,1/20/2016 21:38 +12045191,Why I Had a Magnet Implanted in My Finger,http://www.wbur.org/cognoscenti/2016/07/06/biohacking-grinders-alex-pearlman,45,43,weisser,7/6/2016 19:12 +12321615,Evernotes new CEO and the elephant in the room,https://www.techinasia.com/evernote-new-ceo-chris-oneill-one-year,8,1,williswee,8/19/2016 17:15 +10618754,SLAC Theorist Lance Dixon Explains Quantum Gravity,https://www6.slac.stanford.edu/news/2015-11-18-qa-slac-theorist-lance-dixon-explains-quantum-gravity.aspx,40,4,subnaught,11/24/2015 2:14 +11470462,Debugging of CPython processes with gdb,http://podoliaka.org/2016/04/10/debugging-cpython-gdb/,28,1,ikalnitsky,4/11/2016 9:35 +10575402,New social network for gadget lovers now in beta,http://gadgetinity.com,1,1,timpchelintsev,11/16/2015 16:42 +11384394,OpenBSD 5.9 released (early),http://undeadly.org/cgi?action=article&sid=20160329181346&mode=expanded,4,1,zdw,3/29/2016 19:58 +10620275,Test-Driven Development is Stupid,http://geometrian.com/programming/tutorials/testing/test-first.php,112,149,henrik_w,11/24/2015 12:07 +11479880,Planet TinkerPop: Community-driven site aimed at advancing graph technology,http://www.planettinkerpop.org/,5,1,espeed,4/12/2016 14:32 +12093243,Show HN: How to create an RSS feed with restdb.io Pages,https://restdb.io/blog/#!posts/578765f545fef34300009d92,3,3,knutmartin,7/14/2016 12:46 +11802353,A Thousand Pounds of Dynamite,https://read.atavist.com/a-thousand-pounds-of-dynamite,23,6,elorant,5/30/2016 18:01 +12342370,Advice to create a succesful future version of ourselves?,,15,5,Lordarminius,8/23/2016 9:17 +10681704,Summit rules out ban on gene editing embryos destined to become people,http://www.theguardian.com/science/2015/dec/03/gene-editing-summit-rules-out-ban-on-embryos-destined-to-become-people-dna-human,22,17,walterbell,12/5/2015 12:31 +10573272,A Brutal New Germany,http://m.spiegel.de/international/germany/a-1062442.html,3,2,JumpCrisscross,11/16/2015 8:31 +12456136,Visual Studio Code 1.5,https://code.visualstudio.com/updates?,379,259,out_of_protocol,9/8/2016 18:57 +10458858,Cybrary's Free Android App,https://play.google.com/store/apps/details?id=com.cybrary.app,1,1,cybraryIT,10/27/2015 16:00 +11048825,Systemd and Where We Want to Take the Basic Linux Userspace in 2016,https://fosdem.org/2016/interviews/2016-lennart-poettering/,10,6,nextos,2/6/2016 18:01 +10722975,Chris Lattner compares Swift dynamic/static features to other languages,https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20151207/001948.html,6,2,janvdberg,12/12/2015 15:16 +10441914,"Ideaome Mind-maps meet flow-charts, but social",http://www.ideaome.com/en/index.php,23,10,tdaltonc,10/24/2015 0:18 +10612613,Is there a Belgium? (1999),http://www.nybooks.com/articles/archives/1999/dec/02/is-there-a-belgium/,73,36,lobster_johnson,11/23/2015 2:54 +10599165,FSCQ: A formally verified crash-proof filesystem [pdf],http://adam.chlipala.net/papers/FscqSOSP15/FscqSOSP15.pdf,39,18,anishathalye,11/20/2015 2:12 +12009097,It's Time for the Elites to Rise Up Against the Ignorant Masses,https://foreignpolicy.com/2016/06/28/its-time-for-the-elites-to-rise-up-against-ignorant-masses-trump-2016-brexit/,4,1,chishaku,6/30/2016 15:15 +11661349,Biomarkers and ageing: The clock-watcher,http://www.nature.com/news/biomarkers-and-ageing-the-clock-watcher-1.15014,3,1,fasteo,5/9/2016 17:06 +12235789,I Peeked into My Node_Modules Directory and You Wont Believe What Happened Next,https://medium.com/friendship-dot-js/i-peeked-into-my-node-modules-directory-and-you-wont-believe-what-happened-next-b89f63d21558#.xgxv9jlvj,31,8,bryanmikaelian,8/5/2016 21:13 +11306216,Revl (YC W16): stabilized action camera,https://www.indiegogo.com/projects/revl-arc-the-first-stabilized-4k-action-camera--3/,8,3,liseman,3/17/2016 17:59 +10788814,Marshmallow: Simplified object serialization for Python,https://github.com/marshmallow-code/marshmallow,91,15,sloria,12/24/2015 17:16 +11171643,Twitter's missing manual,https://eev.ee/blog/2016/02/20/twitters-missing-manual/,244,72,prawn,2/25/2016 1:03 +12087809,Clojure spec Screencast: Leverage,http://blog.cognitect.com/blog/2016/7/13/screencast-spec-leverage,7,1,thenonameguy,7/13/2016 17:06 +10189134,Koa Next Generation Web Framework for Node.js,http://koajs.com/,3,3,striking,9/9/2015 1:15 +12425091,"Marvel, Jack Kirby, and the Comic-Book Artists Plight",http://www.theatlantic.com/entertainment/archive/2016/09/marvel-jack-kirby-and-the-plight-of-the-comic-book-artist/498299/?single_page=true,3,1,kpozin,9/4/2016 16:12 +10995972,Update on 1/28 service outage,https://github.com/blog/2101-update-on-1-28-service-outage,179,186,traviskuhl,1/29/2016 16:07 +11632990,Siri's creators say they've made something better,https://www.washingtonpost.com/news/the-switch/wp/2016/05/04/siris-creators-say-theyve-made-something-better-that-will-take-care-of-everything-for-you/,129,77,jboydyhacker,5/5/2016 0:08 +11140152,Global wind power capacity tops nuclear energy for first time,http://www.japantimes.co.jp/news/2016/02/20/national/global-wind-power-capacity-tops-nuclear-energy-for-first-time/,2,2,matt2000,2/20/2016 14:35 +12105933,Show HN: A remote team visualization tool,,6,6,Bogdanp,7/16/2016 10:53 +10552694,Ask HN: What's the best way to find a product co-founder?,,2,2,maxro,11/12/2015 12:26 +11500833,Shuddle Uber for kids service reaches end of road,http://www.sfchronicle.com/business/article/Shuddle-Uber-for-kids-service-reaches-end-7249450.php?t=f4327bfb984832b814&cmpid=twitter-premium,2,1,coloneltcb,4/14/2016 22:35 +11559895,Solar Impulse 2 completes 62 hour gas-free Hawaii to SF flight,http://www.cnn.com/2016/04/24/travel/solar-impulse-2-plane-california/,19,1,ilyaeck,4/24/2016 15:09 +10282852,Linux creator explains why a truly secure computing platform will never exist,http://bgr.com/2015/09/25/linus-torvalds-quotes-interview-linux-security/,26,12,rottyguy,9/26/2015 12:01 +12212965,I am still single: How one man swiped right 200K women on Tinder with 0 success,http://news.nationalpost.com/life/i-am-still-single-how-one-man-swiped-right-on-200000-women-on-tinder-with-zero-success,3,2,drpgq,8/2/2016 20:11 +10801680,The Best and Worst Ads of 2015,http://www.wsj.com/articles/year-in-review-the-best-and-worst-ads-of-2015-1451262576?mod=e2fb,2,3,jimsojim,12/28/2015 15:58 +10177144,How JavaScript closures work under the hood,http://dmitryfrank.com/articles/js_closures,83,16,dimonomid,9/6/2015 8:57 +11168537,"A better inliner for OCaml, and why it matters",https://blogs.janestreet.com/flambda/,135,44,ch,2/24/2016 17:37 +10255984,Micropay.Rocks a new micropayment platform,https://medium.com/@datashovel/micropay-rocks-dd311f1e6bfa,14,4,datashovel,9/22/2015 0:27 +11926854,Pieter Hintjens GitHub contribution history (pacman art),https://github.com/hintjens,28,4,datashovel,6/18/2016 3:09 +11416022,Obstacles to 'coding while black',http://www.bbc.co.uk/news/blogs-trending-35938633,13,1,ewood,4/3/2016 13:27 +10397496,Red Hat is buying Ansible,http://venturebeat.com/2015/10/15/source-red-hat-is-buying-ansible-for-more-than-100m/,336,182,dlapiduz,10/16/2015 4:37 +10417071,Ask HN: The best app to keep a work diary,,28,41,funkyy,10/20/2015 2:24 +10839479,"Its 2016 already, how are websites still screwing up these user experiences?",http://www.troyhunt.com/2016/01/its-2016-already-how-are-websites-still.html?m=1,4,2,profinger,1/4/2016 23:08 +11859121,Takatas Air Bag Crisis,http://www.bloomberg.com/news/features/2016-06-02/sixty-million-car-bombs-inside-takata-s-air-bag-crisis,81,69,usaphp,6/8/2016 0:17 +11083290,"When it comes to Windows 10 privacy, don't trust amateur analysts",http://www.zdnet.com/article/when-it-comes-to-windows-10-privacy-dont-trust-amateur-analysts/,9,2,flurpitude,2/11/2016 21:10 +10709284,New clues to Ceres' bright spots and origins,https://www.nasa.gov/feature/jpl/dawn/new-clues-to-ceres-bright-spots-and-origins,1,1,anigbrowl,12/10/2015 7:01 +12562920,How an Imaginary Island Stayed on Maps for Five Centuries,http://hyperallergic.com/316836/how-an-imaginary-island-stayed-on-maps-for-five-centuries/,58,8,Vigier,9/23/2016 7:28 +11613868,What Is Apache Beam and How Is It Used?,http://www.talend.com/blog/2016/05/02/introduction-to-apache-beam,16,1,johnson_mark1,5/2/2016 18:06 +12083261,SENS Project|21 Human Clinical Trials for Rejuvenation Biotechnologies by 2021,http://sensproject21.org/,1,1,JoshTriplett,7/13/2016 0:33 +12120527,Good Overview of Display Advertising Technology Landscape,http://www.displayadtech.com/the_display_advertising_technology_landscape/the-display-landscape,2,1,AnbeSivam,7/19/2016 8:18 +10392992,Why you should stop looking for your passion,http://finotto.org/entrepeneurship/why-you-should-stop-looking-for-your-passion/,7,2,michele,10/15/2015 13:33 +11404115,Google 'mic drop' Gmail joke for April Fools' day backfires,http://www.independent.co.uk/life-style/gadgets-and-tech/news/gmail-google-mic-drop-april-fool-prank-undo-send-see-email-backfired-a6962916.html,378,379,itg,4/1/2016 11:38 +11829745,EFF Joins Coalition Opposing Dangerous CFAA Bill,https://www.eff.org/deeplinks/2016/06/eff-joins-coalition-opposing-dangerous-cfaa-bill,120,15,DiabloD3,6/3/2016 11:52 +10971763,Design Docs for the London Stock Exchange [pdf],http://www.londonstockexchange.com/products-and-services/trading-services/guide-to-new-trading-system.pdf,36,5,cgoodmac,1/26/2016 4:01 +11534986,Udacity Connect Face-to-face learning,https://www.udacity.com/uconnect,26,2,olivercameron,4/20/2016 15:12 +10881552,Intel admits Skylakes can ... ... ... freeze in the middle of work,http://www.theregister.co.uk/2016/01/11/math_bug_splatters_skylake_intel_working_on_fix/,15,4,56k,1/11/2016 16:54 +10626712,The Admiral of the String Theory Wars,http://nautil.us/issue/24/error/the-admiral-of-the-string-theory-wars,14,2,dnetesn,11/25/2015 11:46 +11449274,Exploding offers are bullshit,http://erikbern.com/2016/03/16/exploding-offers-are-bullshit.html,100,77,aleyan,4/7/2016 18:06 +11654178,Gmail disabled access when JavaScript is turned off,,7,5,id122015,5/8/2016 14:29 +12046575,PocketC.H.I.P. has arrived! A collection of tweaks for the geekiest gadget,https://nmaggioni.xyz/2016/07/06/PocketC-H-I-P-has-arrived/,4,2,nmaggioni,7/6/2016 23:31 +11045822,Control the LED Lights Outside of Iceland Opera Hall Through Socket.io App,http://paint.is,3,1,halldorel,2/6/2016 0:29 +12082408,Google denied dotless one word domains,http://www.theregister.co.uk/2016/07/12/google_one_word_domains/,16,2,teh_klev,7/12/2016 21:28 +10696385,Mesosphere Is Proud to Support the Open Container Initiative,https://mesosphere.com/blog/2015/12/08/mesosphere-open-container-initiative/,4,1,manojlds,12/8/2015 14:12 +10419039,Still Think White Privilege Isnt Real? These 6 Lessons Will Erase All Doubt,http://everydayfeminism.com/2015/10/life-lessons-white-privilege/,1,1,div0,10/20/2015 13:44 +12034784,The final Windows 10 free upgrade nag will be full-screen,http://arstechnica.co.uk/information-technology/2016/07/the-final-windows-10-free-upgrade-nag-will-be-full-screen/?comments=1,45,58,rosstex,7/5/2016 6:49 +11941359,V8 Optimisations,https://twitter.com/2j2e/status/744969172124237825,2,1,fmstephe,6/20/2016 20:38 +11839144,The Gauss-Jordan-Floyd-Warshall-McNaughton-Yamada Algorithm,http://r6.ca/blog/20110808T035622Z.html,1,1,harveywi,6/5/2016 1:13 +10738640,We can solve the terrorist encryption problem with this one simple solution,http://everythingsysadmin.com/2015/12/five-reallys.html,22,2,YesThatTom2,12/15/2015 16:24 +12396879,Australia to regulate Bitcoin under counter-terrorism finance laws,http://www.smh.com.au/world/australia-to-regulate-bitcoin-under-counterterrorism-finance-laws-20160808-gqnne2.html,5,1,aaron695,8/31/2016 8:46 +11396666,Ubuntu on Windows The Ubuntu Userspace for Windows Developers,https://insights.ubuntu.com/2016/03/30/ubuntu-on-windows-the-ubuntu-userspace-for-windows-developers/,1,1,sajal83,3/31/2016 12:35 +10177801,Ask HN: How to keep young developers,,3,6,orangeplus,9/6/2015 14:53 +10473739,Too many classic films remain buried in studios' vaults,http://www.latimes.com/business/hiltzik/la-fi-hiltzik-20151025-column.html,130,64,howsilly,10/29/2015 19:43 +11524385,Pycraft: Minecraft engine in Python,https://github.com/traverseda/pycraft,147,47,danso,4/19/2016 1:45 +12365532,Roses and Thorns,http://meagher.co/blog/2016/08/25/roses-and-thorns/,10,2,meagher,8/26/2016 11:50 +10550727,Discovery of classic pi formula a cunning piece of magic,http://www.rochester.edu/newscenter/discovery-of-classic-pi-formula-a-cunning-piece-of-magic-128002/,2,1,milhous,11/12/2015 1:34 +11644409,Ask HN: Who is using AWS Aurora in production?,,6,4,netshade,5/6/2016 14:58 +11711626,Debunking Porn Addiction,http://www.complex.com/life/2016/05/debunking-porn-addiction/,1,1,JackPoach,5/17/2016 6:10 +12220100,Adopting Feature Flag-Driven Releases,http://blog.launchdarkly.com/feature-flag-driven-releases/,71,39,ZachNelsonSF,8/3/2016 18:06 +10583343,What happens when you eject at 780mph (2010),http://www.f-15e.info/joomla/stories/181-back-in-the-saddle,157,39,arnold_palmur,11/17/2015 19:20 +11215871,Offline Ad Network ECommerce,https://medium.com/@chaitotaler/the-offline-ad-network-ecommerce-f8cf4eefa899#.ox0vw2drp,2,1,chaitotaler,3/3/2016 9:39 +11630285,The Mindtribe Approach to Rock,http://www.mindtribe.com/2016/05/the-mindtribe-approach-to-rock/,2,1,jerryr,5/4/2016 18:03 +11922444,Building a BitTorrent client from scratch in C#,http://www.seanjoflynn.com/research/bittorrent.html,4,1,cheatdeath,6/17/2016 13:18 +12193964,Should this even be released? Deep learning tool that may be used for doxxing,https://github.com/mlpoll/machinematch/issues/1,99,61,Zuider,7/30/2016 18:02 +11803162,The Curse of the Ramones,http://www.rollingstone.com/music/features/the-curse-of-the-ramones-20160519,73,28,the-enemy,5/30/2016 20:59 +10656671,Show HN: Video calls and web browsing in Minecraft.,http://verizoncraft.github.io/,53,10,realgrantthomas,12/1/2015 16:35 +10712246,Ask HN: How to get a moderators attention?,,2,1,jason_slack,12/10/2015 18:16 +10432490,Financial Products Markup Language,http://www.fpml.org/,3,1,Kinnard,10/22/2015 14:40 +11008340,The Wreck of Amtrak 188,http://www.nytimes.com/2016/01/31/magazine/the-wreck-of-amtrak-188.html,126,99,danso,1/31/2016 22:09 +10993312,What will cheap gas do to electric cars?,http://www.theverge.com/2016/1/27/10828534/cheap-gas-electric-cars,3,2,shawndumas,1/29/2016 3:36 +11693455,History of the browser user-agent string (2008),http://webaim.org/blog/user-agent-string-history/,38,12,jtchang,5/13/2016 21:54 +12294719,2016 BMW i3: the best electric car this side of a Tesla and half the price,http://www.telegraph.co.uk/cars/bmw/bmw-i3-review-together-in-electric-dreams/,3,4,jseliger,8/16/2016 0:46 +10423088,Building Spam-Free Contact Forms Without Captchas,http://nfriedly.com/techblog/2009/11/how-to-build-a-spam-free-contact-forms-without-captchas/,1,1,rebekah-aimee,10/21/2015 1:48 +10776367,Family outraged as 12-year-old Sikh boy arrested over alleged bomb threat,https://www.washingtonpost.com/news/morning-mix/wp/2015/12/18/another-clock-kid-family-outraged-as-12-year-old-sikh-boy-arrested-over-alleged-bomb-threat-at-tex-school/,7,1,BinaryIdiot,12/22/2015 7:26 +11863132,"Axl Rose Talks Guns N Roses Reunion Album, Criticizes Slashs Book",http://www.alternativenation.net/axl-rose-talks-guns-n-roses-reunion-album-criticizes-slash-book/,1,1,6stringmerc,6/8/2016 15:59 +10881031,Debian mobile,https://wiki.debian.org/Mobile,5,1,chei0aiV,1/11/2016 14:54 +10594696,A Minimal TTL Processor for Architecture Exploration (2008),http://www.bradrodriguez.com/papers/piscedu2.htm,10,1,ch,11/19/2015 13:47 +11287306,Cash: an intro,http://www.makeuseof.com/tag/forget-cygwin-cash-brings-best-linux-windows/,2,1,dc2,3/15/2016 3:48 +12129082,Ask HN: Anyone ever bought a business off a site like BizBuySell.com?,,1,2,sharemywin,7/20/2016 14:06 +11934516,Show HN: GPS tracking and location sharing via anonymous link,https://www.izhforum.info/forum/izhevsk/tracker_live_map.php?demo=1,6,3,kidstrack,6/19/2016 20:26 +12432954,Show HN: Velo A wireless bluetooth splitter for 2 traditional headphones,http://velo.audio,45,43,dawidpacha,9/6/2016 0:21 +10645717,How to get out it's not gonna worth it attitude?,,2,3,christopherDam,11/29/2015 19:29 +11637711,A Taste of JavaScript's New Parallel Primitives,https://hacks.mozilla.org/2016/05/a-taste-of-javascripts-new-parallel-primitives/,237,103,faide,5/5/2016 16:50 +10402103,Watson A CLI to track your time,https://github.com/TailorDev/Watson,4,2,Walkman,10/16/2015 21:26 +12528038,Religion without belief,https://aeon.co/essays/can-religion-be-based-on-ritual-practice-without-belief,33,70,kawera,9/19/2016 0:42 +10439767,The Case for Startups to Make Transparency the Top Priority,http://firstround.com/review/the-case-for-startups-to-make-radical-transparency-the-top-priority/,27,6,cryptoz,10/23/2015 16:51 +11180030,Interfaces The Most Important Software Engineering Concept,http://blog.robertelder.org/interfaces-most-important-software-engineering-concept/,157,42,nkurz,2/26/2016 5:59 +12386644,DIY BROADCAST: How to Build Your Own Internet TV Channel with Open-Source,http://blog.eltrovemo.com/364/diy-broadcast-how-to-build-your-own-tv-channel-with-open-source-other-goodies/,2,1,iamjeff,8/30/2016 1:01 +11053790,15 must-have WordPress plugins for your website,https://survicate.com/blog/15-must-have-wordpress-plugins/,4,1,lucekk,2/7/2016 17:44 +12434791,Construction worker shortage weighs on hot U.S. housing market,http://www.reuters.com/article/us-usa-housing-labor-idUSKCN11C0F7,5,1,altstar,9/6/2016 10:10 +11761477,The 21st Amendment continues to choke the drinks trade,http://www.rstreet.org/2016/05/20/the-21st-amendment-continues-to-choke-the-drinks-trade/,2,1,Amorymeltzer,5/24/2016 13:53 +10894061,Ask HN: How does your company manage passwords,,4,6,bebopsbraunbaer,1/13/2016 13:26 +10908523,Release of Apache SINGA v0.2 (incubating) distributed deep learning platform,http://singa.apache.org/downloads.html,3,4,forrestcs,1/15/2016 11:15 +11911105,Deep Learning Isnt a Dangerous Magic Genie. Its Just Math,http://www.wired.com/2016/06/deep-learning-isnt-dangerous-magic-genie-just-math/,9,1,sonabinu,6/15/2016 18:38 +11044467,Who Needs Advanced Math? Not Everybody,http://www.nytimes.com/2016/02/07/education/edlife/who-needs-advanced-math-not-everybody.html,7,1,bootload,2/5/2016 20:44 +11058557,Ask HN: How do 100+ person startups efficiently manage employee expenses?,,6,3,vinnyglennon,2/8/2016 15:22 +11888927,Humans Who See Time (2010),http://blogs.discovermagazine.com/discoblog/2010/04/02/the-rare-humans-who-see-time-have-amazing-memories/#.V1uC7-bpFav.facebook,101,53,georgecmu,6/12/2016 16:40 +10244353,Ad Blocking Irony,http://www.subtraction.com/2015/09/19/ad-blocking-irony/,236,162,driverdan,9/19/2015 14:26 +10321556,Toynbee tiles,https://en.wikipedia.org/wiki/Toynbee_tiles,1,1,aaronbrethorst,10/2/2015 21:49 +11346537,"How to Bullshit Everybody with an Inspirational Success Story, Sans Facts",https://medium.com/@visakanv/how-to-bullshit-everybody-with-an-inspirational-success-story-sans-facts-e205ad0aa323#.3knabjvdm,2,2,visakanv,3/23/2016 17:37 +10632426,Shrinking to Zero: The Raspberry Pi Gets Smaller,http://www.bbc.co.uk/news/technology-34922561,480,183,bpierre,11/26/2015 11:06 +10722633,Translation of the Warning from Twitter to the French Crypto Activist,,1,2,ColinWright,12/12/2015 13:12 +12407357,How the JVM compares strings on x86,http://jcdav.is/2016/09/01/How-the-JVM-compares-your-strings/,142,60,jcdavis,9/1/2016 17:46 +11257707,China is building a big data platform for precrime,http://arstechnica.com/information-technology/2016/03/china-is-building-a-big-data-plaform-for-precrime/,4,1,e12e,3/10/2016 6:55 +10198306,Microsoft Design,http://www.microsoft.com/en-us/design/,2,1,sharms,9/10/2015 14:42 +12404546,It is now legal for US firms to start using drones in a limited manner,https://www.washingtonpost.com/news/the-switch/wp/2016/08/29/as-of-today-its-finally-legal-to-fly-drones-commercially/,72,29,LukeHack,9/1/2016 11:59 +10395632,Bitbucket is down,http://status.bitbucket.org/?,29,13,dutchbrit,10/15/2015 20:07 +11586061,Weeding the Worst Library Books,http://www.newyorker.com/books/page-turner/weeding-the-worst-library-books,54,45,benbreen,4/28/2016 1:45 +12099876,Show HN: Material Kit Free Bootstrap UI Kit Based on Material Design,http://demos.creative-tim.com/material-kit/index.html,180,69,axelut,7/15/2016 10:06 +10375448,Teaching is Selling,http://lizthedeveloper.com/teaching-is-selling,114,16,narpaldhillon,10/12/2015 16:13 +11524881,Why US corporations are hoarding cash and not investing (Paul Krugman),http://www.nytimes.com/2016/04/18/opinion/robber-baron-recessions.html,2,2,ScottBurson,4/19/2016 4:29 +12175215,Do any startups have dress codes?,https://medium.com/@johndavidback/kill-dress-codes-3dbeec685dbd#.83927bpkv,1,1,johndavidback,7/27/2016 18:11 +11080978,Top London iOS Developer Available for Day to Day Hire,http://www.darendavidtaylor.com/cv/,2,2,mcbontempi,2/11/2016 16:11 +12359817,Ask HN: Paid alternatives to WhatsApp,,8,10,reacharavindh,8/25/2016 15:31 +10973991,GPUOpen,http://gpuopen.com/,1,1,ingve,1/26/2016 15:53 +11380650,Publicly Funded Research Should Be Publicly Available,https://www.eff.org/deeplinks/2016/03/tell-congress-its-time-move-fastr,1106,131,SoMuchToGrok,3/29/2016 11:04 +11415747,US government commits to publish publicly financed software under FOSS licenses,https://k7r.eu/us-government-commits-to-publish-publicly-financed-software-under-free-software-licenses/,773,104,dandelion_lover,4/3/2016 11:29 +11083439,Ask HN: How many hours do you spend coding per day?,,3,1,sabbasb,2/11/2016 21:32 +10204947,What Americans know and don't know about science,http://www.pewinternet.org/2015/09/10/what-the-public-knows-and-does-not-know-about-science/,3,1,protomyth,9/11/2015 17:24 +12018733,Ask HN: Where's the best place or best way to learn JavaScript syntax?,,1,2,krmmalik,7/1/2016 18:53 +12279866,An Open Letter to Warner Bros CEO About Layoffs and Donuts-,http://www.pajiba.com/think_pieces/an-open-letter-to-warner-bros-ceo-kevin-tsujihara-about-layoffs-zack-snyder-and-donuts.php,130,82,legodt,8/13/2016 1:58 +12423742,Mitochondrial evolution in snails gives hints on the adaptation from sea to land,http://blogs.biomedcentral.com/bmcseriesblog/2016/08/25/mitochondrial-evolution-snails-gives-hints-adaptations-sea-land-beyond/,39,6,kurono,9/4/2016 11:02 +11885903,Why AI will break capitalism,https://medium.com/@HenryInnis/why-ai-will-break-capitalism-14a6ad2f76da,3,1,DrPsyker,6/11/2016 23:33 +10750126,Weibo Purchases Majority Share in Twitter and Becomes Tweibo,https://medium.com/@chinesefood/weibo-purchases-majority-share-in-twitter-and-becomes-tweibo-7d7e24fe97d4#.vmb5koyip,1,1,bjshepard,12/17/2015 7:33 +11933364,Kids can't use computers (2013),http://coding2learn.org/blog/2013/07/29/kids-cant-use-computers/,10,7,d2p,6/19/2016 15:52 +10397026,Show HN: `diff arc0 arc3.1`,https://cdn.rawgit.com/laarc/notebook/757f7eff5cb26d2ae98dc732252d66fd0e6507c6/arc0-3.1.html,49,34,laarc,10/16/2015 1:39 +10716637,Show HN: Parle Supercharge your browser and discover relevant information,https://chrome.google.com/webstore/detail/parle/bbigpojahnmkdbdnbcmadnhbjlemibom,5,1,mengjiang,12/11/2015 12:14 +12319209,Warning: this website will log you out of the most visited website,http://superlogout.com/,6,2,dolfje,8/19/2016 11:07 +10280740,"The United Nations has a radical, dangerous vision for the future of the Web",https://www.washingtonpost.com/news/the-intersect/wp/2015/09/24/the-united-nations-has-a-radical-dangerous-vision-for-the-future-of-the-web/,6,2,gruez,9/25/2015 21:16 +11613896,WhatsApp Blocked in Brazil for 72 Hours,http://time.com/4314561/whatsapp-block-brazil-72/,18,1,emartinelli,5/2/2016 18:10 +10780730,Announcing Handmade Quake,http://philipbuuck.com/announcing-handmade-quake,129,42,jhack,12/22/2015 22:12 +12046280,"HTC Vive Headset Nearing 100,000 Sales",http://www.roadtovr.com/htc-vive-sales-figures-data-100000-steamspy-data/,383,250,prostoalex,7/6/2016 22:23 +10694992,Ablockplus-Annoying popup ad blocker,https://adblockplus.org/,1,1,alvathomas,12/8/2015 5:32 +11559555,Designing Ryanairs Boarding Pass,https://medium.com/@aonghusdavoren/priority-queue-designing-ryanair-s-boarding-pass-a15895092211#.nce2w1cbg,93,52,plurby,4/24/2016 13:06 +11382242,The Dropcam Team,https://medium.com/@gduffy/the-dropcam-team-b9e81f44f259,232,53,robbiemitchell,3/29/2016 15:39 +10293707,VeraCrypt Patches Two Newly-Discovered TrueCrypt Vulnerabilities,https://veracrypt.codeplex.com/wikipage?title=Release%20Notes,16,2,david_shaw,9/28/2015 22:47 +10778888,Missteps in Europes Online Privacy Bill,http://www.nytimes.com/2015/12/21/opinion/missteps-in-europes-online-privacy-bill.html,3,1,jim-greer,12/22/2015 17:12 +11805977,"Behind the Scenes, Billionaires Growing Control of News",http://www.nytimes.com/2016/05/28/business/media/behind-the-scenes-billionaires-growing-control-of-news.html?ref=dealbook&_r=0,2,1,mathattack,5/31/2016 11:48 +12095488,"Airbnb boots 2,233 city listings from the platform to make nice with New York",http://www.crainsnewyork.com/article/20160708/TECHNOLOGY/160709930/airbnb-boots-2233-city-listings-from-the-platform-to-make-nice-with,11,7,uptown,7/14/2016 17:02 +12264189,Only 30% Use Traditional Boarding Passes. Is It Worth Keeping?,https://icons8.com/articles/redesigning-boarding-pass-again/,11,4,rustoffee,8/10/2016 19:22 +11322776,The social contract is broken,https://www.tradingfloor.com/posts/steens-chronicle-the-social-contract-is-broken-7294085,16,10,pappyo,3/20/2016 13:14 +12397423,SASM Simple Crossplatform IDE for Assembly Languages,https://dman95.github.io/SASM/english.html,120,35,Halienja,8/31/2016 11:15 +12566725,Logical Uncertainty and Logical Induction,https://golem.ph.utexas.edu/category/2016/09/logical_uncertainty_and_logica.html,7,1,mathgenius,9/23/2016 18:11 +10237651,Grooveshark UI revamped?,http://grooveshark.im/,3,2,shade23,9/18/2015 5:41 +10393930,Page Weight Matters (2012),http://blog.chriszacharias.com/page-weight-matters,556,165,shubhamjain,10/15/2015 16:04 +12307011,Introducing OOM reporting: a new dimension to app quality,https://crashlytics.com/blog/introducing-oom-reporting,27,2,annummunir,8/17/2016 18:23 +11452814,Ask HN: What's your preferred toolset for developing desktop GUI applications?,,5,3,xzion,4/8/2016 5:57 +10744044,How does your website preview look in chat apps?,http://richpreview.com/,1,1,hardcoder,12/16/2015 13:21 +10872612,Unions may no longer be able to forcibly raid their members' pockets,http://www.theatlantic.com/business/archive/2016/01/friedrichs-labor/423129/?single_page=true,3,2,jseliger,1/9/2016 19:58 +11139904,EU referendum: Cameron sets June date for UK vote,http://www.bbc.co.uk/news/uk-politics-35621079,28,68,tristanguigue,2/20/2016 13:04 +11330290,Show HN: Stripe SaaS-analytics bot for Slack,https://revealytics.com/slack,23,5,Trof,3/21/2016 18:12 +11798802,"An Experiment with GitHub Pages, Jekyll and Travis CI",http://darek.dk/2016/05/29/an-experiment-with-github-pages-jekyll-and-travis-ci.html,1,1,darekdk,5/29/2016 23:48 +11725167,The fine art of literary hate mail endures,https://newrepublic.com/article/133043/youve-got-hate-mail,26,2,magda_wang,5/18/2016 19:41 +11561493,Ask HN: Why is codemill not gaining momentum?,,5,9,onecooldev24,4/24/2016 21:43 +11983154,Berlin is now in a position to usurp London as the startup capital of Europe,http://www.geektime.com/2016/06/27/berlin-is-now-in-a-position-to-usurp-london-as-the-startup-capital-of-europe/,8,1,tekheletknight,6/26/2016 22:42 +11670146,New Evidence for the Necessity of Loneliness,https://www.quantamagazine.org/20160510-loneliness-center-in-the-brain/,5,1,algirau,5/10/2016 19:58 +10653011,The Biggest Buyers of Software Companies,http://tomtunguz.com/biggest-buyers-software-in-2016/?utm_content=buffer8616e&utm_medium=social&utm_source=linkedin.com&utm_campaign=buffer,28,2,t23,12/1/2015 0:57 +11605379,Design of the RISC-V Instruction Set Architecture [pdf],http://www.eecs.berkeley.edu/~waterman/papers/phd-thesis.pdf,138,48,ingve,5/1/2016 8:19 +11752389,Functional Program Design in Scala (new Course),https://www.coursera.org/learn/progfun2,1,1,timothyklim,5/23/2016 7:13 +10435097,"Urbit user guide, hosted on Urbit",http://urbit.org/docs/user,150,69,urbit,10/22/2015 21:10 +10794475,OpenBSD Jumpstart: Learn to Tame OpenBSD Quickly,http://openbsdjumpstart.org/,15,1,vezzy-fnord,12/26/2015 16:41 +10734815,-2000 Lines of Code,http://www.folklore.org/StoryView.py?story=Negative_2000_Lines_Of_Code.txt,229,131,craigc,12/14/2015 23:37 +10922761,MIT Poker Course: Can a little calculus make a total novice into a gambling pro?,https://mentalfloss.atavist.com/secrets-of-the-mit-poker-course,75,13,randycupertino,1/18/2016 5:52 +12051849,Elixir and Elm the perfect couple (Lambda Days 2016),https://www.youtube.com/watch?v=mIwD27qqr5U,6,3,jaxondu,7/7/2016 20:22 +11708740,Root Cause Message for NA14 Disruptions of Service May 2016,https://help.salesforce.com/apex/HTViewSolution?urlname=Root-Cause-Message-for-Disruption-of-Service-on-NA14-May-2016&language=en_US,12,1,snewk,5/16/2016 19:04 +11987114,Introducing .NET Core Docs,https://docs.microsoft.com/teamblog/introducing-net-core-docs/,120,19,dend,6/27/2016 16:10 +10656556,Reducing Single Point of Failure using Service Workers,http://calendar.perfplanet.com/2015/reducing-single-point-of-failure-using-service-workers/,11,1,joebeetee,12/1/2015 16:24 +11172774,Code reviews: WTF's/m (2008),http://www.osnews.com/story/19266/WTFs_m,1,1,FrankyHollywood,2/25/2016 6:44 +10305188,Mistake AirFare Alert Service Beta Access,http://theflyerculture.com,1,2,jamasper,9/30/2015 16:40 +12034780,Why do we keep building rotten foundations?,https://davmac.wordpress.com/2016/07/05/why-do-we-keep-building-rotten-foundations/,4,2,ingve,7/5/2016 6:48 +11764369,"Obnam: easy, secure backup program",http://obnam.org/,4,2,0xmohit,5/24/2016 18:42 +11948690,"Numerai, a hedge fund built by a community of anonymous data scientists",https://medium.com/@Numerai/7b208deec5f0,178,81,joeykrug,6/21/2016 19:27 +12503226,Autopilot supplier disowns Tesla for 'pushing the envelope on safety',https://www.theguardian.com/technology/2016/sep/15/autopilot-supplier-disowns-tesla-for-pushing-the-envelope-on-safety,15,2,tangled,9/15/2016 3:38 +10902882,The Controlled Deflation of the Bubble Is Almost Complete,http://calacanis.com/2016/01/13/the-controlled-deflation-of-the-bubble-is-almost-complete/,15,2,gabbo,1/14/2016 17:37 +10254374,TechCrunch Disrupt censors hackathon project reference to Anne Frank,http://elaineou.com/2015/09/20/anne-frank-too-hot-for-techcrunch-disrupt/,13,2,ghall,9/21/2015 18:58 +12153079,A glimpse inside the atom,http://sciencebulletin.org/archives/3326.html,4,1,renafowler,7/24/2016 11:54 +10292914,Full recovery of 2048-bit RSA key stored in Amazon's EC2 service,http://arstechnica.com/security/2015/09/storing-secret-crypto-keys-in-the-amazon-cloud-new-attack-can-steal-them/,9,1,Ph4nt0m,9/28/2015 20:19 +11169431,Judge Orders Defendant to Decrypt Laptop,http://www.wired.com/2012/01/judge-orders-laptop-decryption/,2,1,archiebunker,2/24/2016 19:23 +12426867,"Europe, Apple, and the money burning a hole in Silicon Valleys wallet",https://www.theguardian.com/business/2016/sep/03/ireland-apple-silicon-valley-money-burning-hole-wallet,3,1,kawera,9/4/2016 21:42 +11009860,U.T. El Paso is built in the distinctive style of Bhutan's architecture,http://blog.lisanapoli.com/2014/11/11/bhutan-tex-mex-style-himalayas-cast-a-wide-net-in-el-paso/,17,2,curtis,2/1/2016 4:55 +12541209,Show HN: We make a opensource hardware that brings low cost machine to arduino,,1,2,JosephWang,9/20/2016 17:22 +10386455,Side Project Launch Checklist,http://keepwomen.com/static_pages/checklist_tool,120,48,userium,10/14/2015 13:26 +10930320,Jimmy Cauty Model Village: the Aftermath Dislocation Principle,http://www.we-heart.com/2016/01/08/jimmy-cauty-model-village-aftermath-dislocation-principle/,56,12,bloke_zero,1/19/2016 12:47 +11829598,An Infantry Squad for the 21st Century,http://warontherocks.com/2016/05/an-infantry-squad-for-the-21st-century/,3,1,jonbaer,6/3/2016 11:16 +10469041,Ask HN: Where can I find high quality writing services?,,12,14,atrust,10/29/2015 3:20 +12436674,Ask HN: Working as contractor in UAE,,3,1,ingmarheinrich,9/6/2016 15:26 +11572256,Free e-courseMarketing for designers,https://www.invisionapp.com/ecourses/marketing-for-designers,1,1,Crafty_Gurl,4/26/2016 14:41 +11605548,Ask HN: Looking for open-source project,,5,2,ejanus,5/1/2016 9:39 +10875211,Theremins,http://theremins.club,30,11,runarberg,1/10/2016 13:23 +10951338,DANE RFC 6698 alternative to CA,http://wiki.halon.se/DANE,4,3,DNShacker,1/22/2016 7:42 +12441265,14-year-old startup founder turned down a $30M buyout offer,http://money.cnn.com/2016/05/10/technology/recmed-taylor-rosenthal-techcrunch-disrupt/index.html,55,83,prostoalex,9/7/2016 6:20 +10874136,Don't be an architecture hipster,http://blog.alexrohde.com/archives/382,28,43,alexandercrohde,1/10/2016 4:22 +10803838,Windows Update breaks multipart/form-data in ASP,https://forums.iis.net/p/1229356/2114163.aspx?Re+Windows+Update+breaks+multipart+form+data,1,1,yuhong,12/28/2015 22:41 +10414281,Comparing Hosted Database Performance,https://www.compose.io/articles/write-stuff-measuring-database-performance/,21,3,garysieling,10/19/2015 17:21 +11437660,"Finally, multiple synchronous replication for PostgreSQL has been committed",http://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=989be0810dffd08b54e1caecec0677608211c339,8,1,snaky,4/6/2016 9:28 +11045874,A Renowned Japanese Architect Reimagines the Lego,http://www.slate.com/blogs/the_eye/2016/02/05/tsumiki_from_kengo_kuma_are_an_angular_wooden_japanese_answer_to_legos.html,2,1,curtis,2/6/2016 0:44 +10810178,Bank of America trying to load up on patents for the technology behind Bitcoin,http://qz.com/578974/bank-of-america-is-trying-to-load-up-on-patents-for-the-technology-behind-bitcoin/,367,194,hackuser,12/30/2015 1:12 +10960630,A new way of rendering particles,http://www.simppa.fi/blog/the-new-particle/,100,9,plurby,1/23/2016 23:30 +11563002,What Happens When Baseball-Stats Nerds Run a Pro Team?,http://www.nytimes.com/2016/04/24/opinion/sunday/what-happens-when-baseball-stats-nerds-run-a-pro-team.html?referer=,4,1,octonion,4/25/2016 7:57 +10778869,Death to LDAP and SAML Round 2,https://www.inversoft.com/blog/2015/12/17/death-ldap-saml-passport-lives/,10,2,Inversoft,12/22/2015 17:09 +11753211,Website Meta Language (2006),http://thewml.org/,12,2,Tomte,5/23/2016 11:46 +12509615,My Motherland: Findingand writingthe worlds where only I had been,http://www.theparisreview.org/blog/2016/09/15/my-motherland/,9,1,benbreen,9/15/2016 20:37 +11244977,Deep Neural Networks for Acoustic Modelling and Speech Recognition [pdf] (2012),http://research.microsoft.com/pubs/171498/HintonDengYuEtAl-SPM2012.pdf,73,9,Jasamba,3/8/2016 13:14 +12425176,"I need money to validate my product, and a validated product to raise money",,3,1,PM4Hire,9/4/2016 16:24 +11548609,"China suspends Apple's online book, movie services",http://www.marketwatch.com/story/china-suspends-apples-online-book-movie-services-2016-04-22,46,5,cyanbane,4/22/2016 12:30 +10220487,Why Is Europe Failing to Create More $1B Startups?,http://000fff.org/why-europe-is-failing-to-create-more-unicorns/,154,330,ThomPete,9/15/2015 13:33 +10827419,Imagining a First-Party Swift KVO Replacement,http://blog.jaredsinclair.com/post/136419814560,1,1,Stevo11,1/2/2016 19:13 +10979491,A Website Where You Can Upload Pictures and Show Your Creativity in Photography,http://www.Pinhat.com,3,3,vishalnegal,1/27/2016 11:28 +12022369,"Co-Dfns: High-Performance, Reliable, and Parallel APL",https://github.com/arcfide/Co-dfns,80,3,setra,7/2/2016 13:17 +11875829,"Sunspring, a short science fiction film written by algorithm",http://arstechnica.com/the-multiverse/2016/06/an-ai-wrote-this-movie-and-its-strangely-moving/,135,49,brokenbeatnik,6/10/2016 12:21 +11982461,The Anti-Business President Who's Been Good for Business,http://www.bloomberg.com/features/2016-obama-anti-business-president/,5,1,kawera,6/26/2016 20:12 +11791413,Reverse Engineering for Beginners free book,https://github.com/dennis714/RE-for-beginners,155,6,0xmohit,5/28/2016 12:36 +12075802,The Call of the Billboard,http://www.theatlantic.com/technology/archive/2016/07/the-call-of-the-billboard/490316/?single_page=true,20,3,prismatic,7/12/2016 0:15 +11654198,"The connected car may be the dumbest idea ever, but its not going away",http://arstechnica.com/cars/2016/05/its-time-for-a-candid-talk-about-connected-cars/,24,37,shawndumas,5/8/2016 14:36 +10263632,Tech companies lobbying for CISA are abandoning their users' privacy,https://www.youbetrayedus.org/,470,91,ingve,9/23/2015 6:41 +10483118,Drone horror stories involve new pilots; how can the community fix that?,http://arstechnica.com/information-technology/2015/10/the-future-of-drones-may-be-n00b-dependent/,7,2,Deinos,10/31/2015 16:20 +10725042,Getting started with NoSQL databases and MongoDB,http://www.danielgynn.com/getting-started-mongodb/,1,1,danielgynn,12/13/2015 1:39 +10780305,Ask HN: Middleman-free sites like hnhiring.me/craigslist to find freelance work?,,5,2,notetoself,12/22/2015 20:48 +11947756,Image Hosting on Reddit,https://www.reddit.com/r/announcements/comments/4p5dm9/image_hosting_on_reddit/,191,158,no_gravity,6/21/2016 17:49 +10180053,Scaling Clearbit to 2M API requests per day,http://stackshare.io/clearbit/scaling-clearbit-to-2m-api-requests-per-day/?utm_medium=social&utm_campaign=stackshare_weekly_962015,22,10,sergiotapia,9/7/2015 4:22 +11289533,Babies know when they dont know something,http://arstechnica.com/science/2016/03/babies-know-when-they-dont-know-something/,2,1,callumlocke,3/15/2016 13:46 +11077105,A Better Varargs,http://codeacumen.info/post/a-better-varargs,75,26,Anilm3,2/10/2016 23:35 +11658615,Warden my open source and cross-platform tool for simplified monitoring,http://piotrgankiewicz.com/2016/05/09/warden-screencast-1-introduction-and-app-example/,3,5,spetz,5/9/2016 10:00 +11435260,"Stop Teaching Programming, Start Teaching Computational Thought",http://makezine.com/2016/04/05/stop-teaching-programming-start-teaching-computational-thought/,17,1,miraj,4/5/2016 22:56 +12261283,Ask HN: Which linux/unix C++/C IDE are you using?,,2,1,soulbadguy,8/10/2016 12:57 +10380426,Show HN: Gaggle Mail Simple group email,http://gaggle.email,33,22,shutton,10/13/2015 13:51 +10519113,Binding of Isaac: Afterbirth 109 controversy,http://kotaku.com/the-binding-of-isaacs-new-secrets-sound-completely-nuts-1740324627,5,1,Iuz,11/6/2015 12:34 +11853466,Show HN: English Wikipedia Clickstream Visualization,http://alpha.nimishg.com/wikiviz/wiki_viz.htm,3,1,i_dont_know_,6/7/2016 10:10 +11208219,Breaking Symmetric Cryptosystems Using Quantum Period Finding,http://arxiv.org/abs/1602.05973v1,3,1,colinprince,3/2/2016 5:17 +11126241,Ask HN: Likelihood the FBI also submitted to Google a court ordered mandate?,,1,1,Dowwie,2/18/2016 15:09 +10969843,Multiple security vulnerabilities in Rails,https://groups.google.com/forum/#!forum/rubyonrails-security,229,62,alinajaf,1/25/2016 20:51 +12044872,End of Cycle?,http://blog.eladgil.com/2016/07/end-of-cycle.html,163,99,akharris,7/6/2016 18:16 +10557782,Learning Human Identity from Motion Patterns,http://arxiv.org/abs/1511.03908,2,1,Oatseller,11/13/2015 3:02 +10327485,Google Cloud Shell,https://cloud.google.com/cloud-shell/,325,159,mikecb,10/4/2015 13:45 +11745706,Ask HN: What to factors keep in mind while choosing domain registrar?,,10,11,hargup,5/21/2016 18:52 +10910994,Ask HN: Cofounder?,,1,1,a_lifters_life,1/15/2016 18:13 +11691092,Nate Silver Unloads on The New York Times,http://www.cjr.org/analysis/fivethirtyeight.php,5,4,danso,5/13/2016 15:52 +11349991,Ask HN: Would you move your company blog to Medium?,,7,9,traviagio,3/24/2016 1:50 +10804414,Chinese medicinal herbs provide niche market for US farmers,http://bigstory.ap.org/article/9808ca6d89274f739476830f79e33214/chinese-medicinal-herbs-provide-niche-market-us-farmers,7,1,walterbell,12/29/2015 0:43 +12524513,Police drop bomb on radicals' home in Philadelphia (1985),http://www.nytimes.com/1985/05/14/us/police-drop-bomb-on-radicals-home-in-philadelphia.html?pagewanted=all,3,1,xyzzy4,9/18/2016 9:07 +12371975,IM2CAD Reconstruct a scene that is as similar as possible to a photograph,https://arxiv.org/abs/1608.05137,86,6,EvgeniyZh,8/27/2016 11:58 +10358905,Drool: automated memory leak detection in JavaScript,https://github.com/samccone/drool,2,1,fdb,10/9/2015 9:08 +11398076,Microsoft shows fruits of Xamarin acquisition with Visual Studio integration,http://www.pcworld.com/article/3050363/microsoft-shows-fruits-of-xamarin-acquisition-with-visual-studio-integration-and-more.html,3,1,insulanian,3/31/2016 15:54 +11399911,Show HN: Open-Source Sitebuilder CMS Project,https://github.com/Yeti-CMS/yeti-frontend,3,1,futhey,3/31/2016 19:32 +10764200,Running Windows under FreeBSD's bhyve,http://pr1ntf.xyz/windowsunderbhyve.html,100,12,vezzy-fnord,12/19/2015 17:40 +11974881,Brexit Shows a Global Desire to Throw the Bums Out,http://time.com/4381539/brexit-global-populism/,12,5,smaili,6/25/2016 2:18 +10456631,Docker and Node Hello World Example,https://github.com/danawoodman/docker-node-hello-world,1,2,danaw,10/27/2015 6:42 +11727116,Show HN: Lerna: A tool for managing large JavaScript projects,https://lernajs.io/,10,1,amasad,5/19/2016 0:30 +10714728,"11,000 pound flywheel comes loose from its moorings",http://www.10news.com/news/11k-pound-flywheel-caused-poway-explosion?google_editors_picks=true,7,2,hwstar,12/11/2015 0:35 +12041448,This KickStarter campaign might change the way how you learn to code,https://www.kickstarter.com/projects/2102567670/learn-python-and-swift-3-from-zero-to-hero,1,3,leotrieu9,7/6/2016 6:00 +12034483,Quiz: Ruby or Rails? Matz and DHH were not able to get 10/10,https://twitter.com/yukihiro_matz/status/750005783090196480,2,1,inem,7/5/2016 5:00 +10390089,How Instagram Became #1 on the App Store,http://pitchenvy.com/business/how-instagram-became-1-on-the-app-store,1,1,craze3,10/14/2015 22:55 +10449759,Fuzzing with american fuzzy lop,http://lwn.net/Articles/657959/,67,15,bootload,10/26/2015 5:37 +11658312,Software security suffers as startups lose access to Googles virus data,http://venturebeat.com/2016/05/08/software-security-suffers-as-upstarts-lose-access-to-virus-data/,104,25,spotirca,5/9/2016 8:37 +11227176,Data Is a Toxic Asset,https://www.schneier.com/blog/archives/2016/03/data_is_a_toxic.html,13,1,_delirium,3/4/2016 22:02 +11070273,"Hire the Best People, and Let Them Work from Wherever They Are",https://hbr.org/2016/02/hire-the-best-people-and-let-them-work-from-wherever-they-are,2,2,MarlonPro,2/10/2016 1:53 +10887975,The half strap: self-hosting and Guile,https://wingolog.org/archives/2016/01/11/the-half-strap-self-hosting-and-guile,82,10,epsylon,1/12/2016 15:36 +12020773,Independent Repair Technician and Educator Under Threat by Apple,https://www.youtube.com/watch?v=F7N254MTA4Q,8,2,fsociety,7/2/2016 0:29 +10740895,Watsi 2015 Year in Review,https://watsi.org/2015,11,3,whbk,12/15/2015 22:18 +11753439,Why do we have allergies?,http://mosaicscience.com/story/why-do-we-have-allergies,272,171,ph0rque,5/23/2016 12:38 +10921773,WebTorrent BitTorrent over WebRTC,https://webtorrent.io/,380,94,Doolwind,1/18/2016 0:13 +11293428,Ask HN: Recommendation for a command-line only OS?,,4,4,CoreSet,3/15/2016 22:13 +10544446,"Safeway, Theranos Split After $350M Deal Fizzles",http://www.wsj.com/articles/safeway-theranos-split-after-350-million-deal-fizzles-1447205796,105,66,bedhead,11/11/2015 2:33 +10598872,"Hi, I'm Collis, CEO/Cofounder of Envato, Ask Me Anything",https://managewp.org/articles/11176/hi-i-m-collis-ceo-cofounder-of-envato-ask-me-anything,21,9,gmays,11/20/2015 1:00 +10674187,When are we going to contribute BDR to PostgreSQL,http://blog.2ndquadrant.com/when-are-we-going-to-contribute-bdr-to-postgresql/,2,1,rachbelaid,12/4/2015 2:25 +12242335,The Secrets of the Wood Wide Web,http://www.newyorker.com/tech/elements/the-secrets-of-the-wood-wide-web,74,11,drainge,8/7/2016 15:33 +11527523,The Secret Shame of Middle-Class Americans,http://www.theatlantic.com/magazine/archive/2016/05/my-secret-shame/476415/?single_page=true,11,2,infinite8s,4/19/2016 15:11 +11491658,This site will make you nostalgic for Flash,https://www.producthunt.com/r/6222e4462c5169/51274,1,1,optikals,4/13/2016 19:57 +12488133,ArduPilot and DroneCode,http://discuss.ardupilot.org/t/ardupilot-and-dronecode/11295,47,7,Rondom,9/13/2016 13:44 +12294635,Shadow Brokers: NSA Exploits of the Week,https://medium.com/@msuiche/shadow-brokers-nsa-exploits-of-the-week-3f7e17bdc216,3,1,bootload,8/16/2016 0:27 +10187286,An Introduction to Startups in Synthetic Biology,https://synbiofieldreports.plos.org/an-introduction-to-start-ups-in-synthetic-biology-7417888e8c1b,23,4,probdist,9/8/2015 18:05 +10458756,Amazon adds UI for building CloudFormation templates,https://aws.amazon.com/blogs/aws/new-aws-cloudformation-designer-support-for-more-services/,1,1,jdc0589,10/27/2015 15:47 +11352079,"Oracle Discloses Critical Java Vulnerability in 7u97, 8u73, and 8u74",http://www.oracle.com/technetwork/topics/security/alert-cve-2016-0636-2949497.html,7,2,veenified,3/24/2016 11:55 +11945882,Ask HN: How do you take notes other than using paper?,,42,85,simon_acca,6/21/2016 14:35 +11378776,All Those New Dinosaurs May Not Be New Or Dinosaurs,http://fivethirtyeight.com/features/all-those-new-dinosaurs-may-not-be-new-or-dinosaurs/,14,14,Petiver,3/29/2016 0:55 +11001907,"Adam Liaw: five simple dishes, and the mistakes youre making with them (2015)",,3,1,Tomte,1/30/2016 14:33 +12129101,Inside the Obama Tech Surge as It Hacks the Pentagon and VA,https://backchannel.com/inside-the-obama-tech-surge-as-it-hacks-the-pentagon-and-va-8b439bc33ed1,162,142,brensudol,7/20/2016 14:09 +10685661,"If the internet is addictive, why dont we regulate",https://aeon.co/essays/if-the-internet-is-addictive-why-don-t-we-regulate-it,2,2,hollerith,12/6/2015 16:43 +12516244,The Thrill of Losing Money by Investing in a Manhattan Restaurant,http://www.newyorker.com/business/currency/the-thrill-of-losing-money-by-investing-in-a-manhattan-restaurant,3,2,impostervt,9/16/2016 18:37 +10240223,Dont Worry About Selling Your Privacy to Facebook. I Already Sold It for You,http://jasonlefkowitz.net/2011/10/dont-worry-about-selling-your-privacy-to-facebook-i-already-sold-it-for-you/,15,2,smacktoward,9/18/2015 16:45 +10580066,Pacemaker explosions in crematoria,http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1279940/,33,30,cant_kant,11/17/2015 9:44 +10760752,APT tilting train: The laughing stock that changed the world,http://www.bbc.co.uk/news/magazine-35061511,2,1,ColinWright,12/18/2015 20:32 +11893178,Microsoft to acquire LinkedIn for $26.2B,http://www.theverge.com/2016/6/13/11920072/microsoft-linkedin-acquisition-2016?utm_campaign=theverge&utm_content=chorus&utm_medium=social&utm_source=twitter,8,2,antr,6/13/2016 12:39 +11004949,Rigged Justice: Weak Federal Enforcement Against US Corporate Offenders (2015) [pdf],http://www.warren.senate.gov/files/documents/Rigged_Justice_2016.pdf,2,1,DrScump,1/31/2016 2:21 +11981831,State to Detroit man: Pay for child that isn't yours or go to jail,http://www.wxyz.com/news/state-tells-detroit-man-pay-for-child-that-isnt-yours-or-go-to-jail,3,2,jseliger,6/26/2016 18:06 +11064305,Scientists have found a way to help learn skills faster,http://www.sciencealert.com/scientists-have-found-a-technique-that-helps-you-learn-new-skills-twice-as-fast,143,55,davidiach,2/9/2016 9:55 +11062525,"Not Just a Death, a System Failure",http://opinionator.blogs.nytimes.com/2016/02/06/system-failure/,7,1,andrewl,2/9/2016 1:58 +12030257,Windows 10: Microsoft launches intrusive full-screen upgrade reminder,https://www.theguardian.com/technology/2016/jul/04/microsoft-windows-10-full-screen-upgrade-notification-pop-up-reminder,64,87,cm2187,7/4/2016 12:18 +10842908,BASIC-256: An easy to use BASIC language and IDE for education,http://basic256.org/index_en,26,14,vmorgulis,1/5/2016 12:37 +10697883,The Smell Network: Perceptual Network Visualisation,http://odornetwork.com/network/index.html,25,1,riteshcanfly,12/8/2015 17:31 +11946243,Ask HN: How do you plan your life?,,1,4,0x54MUR41,6/21/2016 15:14 +12124294,Verified accounts for everyone: Twitter announces new application process,http://thenextweb.com/insider/2016/07/19/verified-accounts-everyone-twitter-announces-new-application-process/,3,1,jaxondu,7/19/2016 19:45 +11205594,GitKraken: git GUI Client for Windows Mac and Linux,http://www.gitkraken.com/,193,175,bpierre,3/1/2016 19:59 +12054690,New haskell-lang.org,https://haskell-lang.org/announcements,124,188,Rabble_Of_One,7/8/2016 11:12 +11612923,First Job Chat Bot for the Facebook Messenger Platform,https://www.jobmehappy.de/blog/facebook-messenger-job-bot,3,1,jobmehappy,5/2/2016 16:33 +12211651,Massachusetts Bans Employers from Asking Applicants About Previous Pay,http://www.nytimes.com/2016/08/03/business/dealbook/wage-gap-massachusetts-law-salary-history.html,1195,760,OhHeyItsE,8/2/2016 17:44 +12434101,Free password manager for Mac from Avast (beta),https://www.avast.com/passwords-mac,1,1,hellishcz,9/6/2016 7:02 +10200577,You are spending too much f'n money,,6,3,rob-guilfoyle,9/10/2015 21:09 +12031007,Comparing HTTP/1.1 and HTTP/2 on Aircraft WiFi [video],https://www.youtube.com/watch?v=pqY1MfgTYmE,13,1,velmu,7/4/2016 14:37 +11187847,Caffeine for Sale: The Hidden Trade of the World's Favorite Stimulant,http://www.npr.org/sections/thesalt/2016/02/26/467844829/inside-the-anonymous-world-of-caffeine,33,12,nols,2/27/2016 18:08 +12065912,The Rustonomicon: The Dark Arts of Advanced and Unsafe Rust Programming,https://doc.rust-lang.org/nomicon/README.html,191,59,jvns,7/10/2016 15:32 +11405950,Show HN: Spaceship.codes a game for programmers,https://spaceship.codes,1,1,rfotino,4/1/2016 16:17 +10376691,Training Deep Neural Networks Part 1,http://upul.github.io/2015/10/12/Training-(deep)-Neural-Networks-Part:-1/,43,2,upul,10/12/2015 20:08 +11093690,Ebiten A simple SNES-like 2D game library in Go,http://hajimehoshi.github.io/ebiten/,32,2,mkirsche,2/13/2016 12:24 +10786481,How to trick a neural network into thinking a panda is a vulture,https://codewords.recurse.com/issues/five/why-do-neural-networks-think-a-panda-is-a-vulture,268,67,jvns,12/24/2015 0:46 +12110419,"MH17 The Open Source Investigation, Two Years Later",https://www.bellingcat.com/news/uk-and-europe/2016/07/15/mh17-the-open-source-investigation-two-years-later/,2,1,DanBC,7/17/2016 15:17 +10597010,The Last Days of Marissa Mayer?,http://www.forbes.com/sites/miguelhelft/2015/11/19/the-last-days-of-marissa-mayer/,11,1,coloneltcb,11/19/2015 19:38 +11181304,Show HN: Initial release of the distributed TensorFlow runtime,https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/distributed_runtime,85,3,mrry,2/26/2016 13:48 +10839516,"Google paid $380M to buy Bebop, Diane Greene donating her $148M share",http://venturebeat.com/2016/01/04/google-paid-380m-to-buy-bebop-executive-diane-greene-donating-her-148m-share/,84,58,chermanowicz,1/4/2016 23:14 +10288289,"The drug industry wants us to think Martin Shkreli is a rogue CEO, but he isn't",http://www.washingtonpost.com/news/wonkblog/wp/2015/09/25/the-drug-industry-wants-us-to-think-martin-shkreli-is-a-rogue-ceo-he-isnt/,222,169,rottyguy,9/27/2015 23:29 +10392585,Supercharging the Elasticsearch Percolator,http://underthehood.meltwater.com/blog/2015/09/29/supercharging-the-elasticsearch-percolator/,40,4,traxmaxx,10/15/2015 11:54 +12313249,US ready to 'hand over' the internet's naming system,http://www.bbc.com/news/technology-37114313,2,1,tagawa,8/18/2016 15:30 +11907569,A Graduate Course in Applied Cryptography (Dan Boneh and Victor Shoup),http://toc.cryptobook.us/,2,1,smartera,6/15/2016 6:50 +12341093,Show HN: Igloos That Don't Melt,http://icewall.com.au/?hn,81,35,peterwallhead,8/23/2016 3:04 +11337814,"Starting a Startup with Nick Franklin, Co-Founder and CEO of ChartMogul",https://www.youtube.com/watch?v=vJxNXNWlbOU,5,1,rheaverma,3/22/2016 16:44 +12126111,Computer Science Rankings,http://csrankings.org/,4,1,k4rtik,7/20/2016 0:53 +12559668,Show HN: Send scribbles and pictures to an Emacs buffer from your Android phone,https://github.com/yati-sagade/orch,1,1,yati,9/22/2016 19:39 +12506387,Election hacking: Sowing doubt is prime danger,http://nytimes.com/2016/09/15/us/politics/sowing-doubt-is-seen-as-prime-danger-in-hacking-voting-system.html,3,1,brd529,9/15/2016 14:24 +10366936,Flash Disruption Comes to Server Main Memory,http://www.theplatform.net/2015/08/05/flash-disruption-comes-to-server-main-memory/,22,7,nkurz,10/10/2015 20:47 +12355275,Cloudron: A platform for self-hosting web apps,https://cloudron.io/blog/2016-08-24-introducing.html,8,18,nebulon,8/24/2016 21:08 +11707675,Swift now available on FreeBSD,http://www.freshports.org/lang/swift/,4,1,swills,5/16/2016 16:57 +11025209,Show HN: ES2015 loader in 60 SLOC,,3,2,populacesoho,2/3/2016 7:19 +12257429,"Chrome 53 Beta: Shadow DOM, PaymentRequest, and Android Autoplay",http://blog.chromium.org/2016/08/chrome-53-beta-shadow-dom.html,29,9,itayadler,8/9/2016 20:21 +11513207,That man who deleted his entire company with a line of code? It was a hoax,http://www.pcworld.com/article/3057235/data-center-cloud/that-man-who-deleted-his-entire-company-with-a-line-of-code-it-was-a-hoax.html,24,7,empressplay,4/17/2016 2:18 +11540813,"What Is the Difference Between Wireframe, Mockup and Prototype?",http://brainhub.eu/blog/2016/04/20/difference-between-wireframe-mockup-prototype/,70,27,mwarcholinski,4/21/2016 10:18 +10619966,Customers connecting to our website having connectivity issues with carrier AT&T,,2,2,neo22s,11/24/2015 9:59 +11150483,Arithmetic Optimization for Compilers by Randomly Generated Equivalent Programs [pdf],https://www.jstage.jst.go.jp/article/ipsjtsldm/9/0/9_21/_pdf,15,2,tambourine_man,2/22/2016 12:59 +12046062,LambCI A continuous integration system built on AWS Lambda,https://github.com/lambci/lambci,160,57,hharnisch,7/6/2016 21:38 +12341032,Startups that launched at Y Combinator S16 Demo Day 1,https://techcrunch.com/2016/08/22/y-combinator-demo-day-summer-2016/,155,125,runesoerensen,8/23/2016 2:47 +11884013,Cartful: Changing the Fashion Discovery Game Forget Pinterest,http://www.cartful.co,2,1,adias9,6/11/2016 16:22 +11594272,Neuroscientists create atlas showing how words are organised in the brain,https://www.theguardian.com/science/2016/apr/27/brain-atlas-showing-how-words-are-organised-neuroscience,73,11,arashdelijani,4/29/2016 7:27 +11872928,Bloomberg Plea: Ad-Blockers Disrupt the Experience,http://adage.com/article/media/bloomberg-ad-blockers-disrupt-experience/304299/,4,3,arunmoezhi,6/9/2016 22:42 +10980545,IT Question,,3,1,LCogent,1/27/2016 15:35 +12076712,Datachains: AI driven DAOs for incentivizing taste-based content delivery,http://roberts.pm/datachain,34,5,Uptrenda,7/12/2016 4:23 +10934672,Facebook over Tor on Android,https://www.facebook.com/notes/facebook-over-tor/adding-tor-support-on-android/814612545312134,2,3,yeukhon,1/19/2016 22:41 +11010642,Clifford Attractors,http://paulbourke.net/fractals/clifford/,62,16,d00r,2/1/2016 9:06 +11574378,Oculus VR Founder Taunts Redditors Over Shipping Delays,http://www.popsci.com/oculus-vr-founder-reddit,23,2,paulmd,4/26/2016 18:28 +10384328,Drawing under the microscope,http://blogs.royalsociety.org/history-of-science/2015/10/12/drawing/,17,2,Petiver,10/14/2015 0:18 +10729141,Baidu says it's developed China's first fully autonomous self-driving car,http://venturebeat.com/2015/12/09/baidu-says-its-developed-chinas-first-fully-autonomous-self-driving-car/,91,68,doppp,12/14/2015 2:43 +10442929,Land-value tax: Why Henry George had a point,http://www.economist.com/blogs/freeexchange/2015/04/land-value-tax,48,98,eru,10/24/2015 8:43 +12151393,Water Out of the Tailpipe: A New Class of Electric Car Gains Traction,http://www.nytimes.com/2016/07/22/automobiles/water-out-the-tailpipe-a-new-class-of-electric-car-gains-traction.html?hpw&rref=automobiles&action=click&pgtype=Homepage&module=well-region®ion=bottom-well&WT.nav=bottom-well,29,54,prostoalex,7/23/2016 23:04 +10445613,Texting reduces need for pain medication during surgery,https://www.bostonglobe.com/lifestyle/2015/05/08/texting-reduces-need-for-pain-medication-during-surgery/q7pRsvHDCQikaj0pvFBcyH/story.html,24,18,Oatseller,10/25/2015 1:41 +11117929,Which Type of Exercise Is Best for the Brain?,http://well.blogs.nytimes.com/2016/02/17/which-type-of-exercise-is-best-for-the-brain/?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=mini-moth®ion=top-stories-below&WT.nav=top-stories-below,229,118,acdanger,2/17/2016 14:13 +12081124,Programmer competency matrix,http://www.starling-software.com/employment/programmer-competency-matrix.html,7,2,hjalle,7/12/2016 18:01 +11797038,An Unconventional Look at the European Map,http://www.the-dialogue.com/en/en4-an-unconventional-look-at-the-european-map/,41,21,DrSheldon,5/29/2016 16:52 +11945314,EFF Urges Citizens to Fight Changes Expanding Gov Powers to Break into Computers,https://www.eff.org/press/releases/eff-urges-citizens-websites-fight-rule-changes-expanding-government-powers-break,2,1,DiabloD3,6/21/2016 13:08 +11404770,The Trouble with CloudFlare,https://blog.torproject.org/blog/trouble-cloudflare,620,351,tshtf,4/1/2016 13:58 +10792688,Beware of How Millennials View Office Promotions,http://blogs.wsj.com/experts/2015/10/26/beware-of-how-millennials-view-office-promotions/,1,1,repeek,12/25/2015 23:22 +12564793,How does Google know where I am?,http://security.stackexchange.com/questions/137418/how-does-google-know-where-i-am,260,146,kumarharsh,9/23/2016 14:19 +11105882,Shunning Israeli goods to become criminal offence in UK,http://www.independent.co.uk/news/uk/home-news/israel-boycott-local-councils-public-bodies-and-student-unions-to-be-banned-from-shunning-israeli-a6874006.html,17,3,kat,2/15/2016 20:55 +12238533,Introducing Amazon One,https://www.amazon.com/p/feature/gca37opgyo4u53v,35,12,t23,8/6/2016 15:58 +10754553,Holiday Gift Ideas from Y Combinator,http://www.ycgiftideas.com/,266,132,t-3-k,12/17/2015 21:07 +10667180,The search for a faster CRC32,https://blog.fastmail.com/2015/12/03/the-search-for-a-faster-crc32/,100,51,alfiedotwtf,12/3/2015 1:40 +10552805,100 years of general relativity,http://motls.blogspot.com/2015/11/100-years-of-general-relativity.html,49,13,yetanotheracc,11/12/2015 12:59 +10688496,Show HN: RightGIF - a better /giphy for Slack,https://rightgif.com,11,9,toast76,12/7/2015 9:13 +12194924,New tech installed on the ISS set to form solar system-wide 'internet',http://futurism.com/new-tech-installed-on-the-iss-set-to-form-solar-system-wide-internet/,2,1,ALhult,7/30/2016 22:28 +12400932,Improving Inception and Image Classification in TensorFlow,https://research.googleblog.com/2016/08/improving-inception-and-image.html,6,1,runesoerensen,8/31/2016 19:45 +10491576,CALMzone launch suicide prevention campaign,https://www.thecalmzone.net/2015/11/big-news-calm-and-lynx-launch-bigger-issues-campaign/,1,1,DanBC,11/2/2015 13:02 +11852339,SpaceX Falcon 9 vs. ISROs Reusable Launch Vehicle,https://medium.com/@rsn/spacex-falcon-9-vs-isros-reusable-launch-vehicle-c52d4d56f87d#.2ymtsfkcu,1,1,signa11,6/7/2016 4:12 +12280881,Ask HN: Have you launched a failed web business?,,50,42,marktangotango,8/13/2016 9:33 +12357813,Israel deploys automated military robots,http://mainichi.jp/english/articles/20160824/p2a/00m/0na/020000c,49,53,sjreese,8/25/2016 9:32 +10324295,"Ask HN: As a startup CTO, how do I protect my web app from security threats?",,4,7,svepuri,10/3/2015 15:55 +11637945,Everything Good Has Already Been Invented,http://www.forbes.com/sites/nathankontny/2016/05/05/everything-good-has-already-been-invented/#11871fe35776,2,1,nate,5/5/2016 17:12 +10965321,What Is Zero UI? (2015),http://www.fastcodesign.com/3048139/what-is-zero-ui-and-why-is-it-crucial-to-the-future-of-design,48,25,jonbaer,1/25/2016 2:59 +11249143,"Ask HN: Re-learn JavaScript today, where to start?",,6,9,simonebrunozzi,3/8/2016 22:05 +10586963,"PocketGrid: tiny, powerful CSS grid",https://arnaudleray.github.io/pocketgrid/,2,2,interfacesketch,11/18/2015 10:34 +10650278,The Japanese Art of Self-Preservation,http://www.damninteresting.com/sokushinbutsu-the-ancient-buddhist-mummies-of-japan/,102,19,ca98am79,11/30/2015 16:45 +10684570,Spanish galleon may contain biggest treasure haul ever found on seabed,http://www.theguardian.com/world/2015/dec/06/wreck-spanish-galleon-treasure-haul,65,44,Thevet,12/6/2015 6:28 +11565958,Worlds First 3-D Printed Excavator on Display,http://www.manufacturingtomorrow.com/news/2016/04/20/world%E2%80%99s-first-3-d-printed-excavator-on-display-at-conexpo-conagg-and-ifpe/7915/,15,2,djoldman,4/25/2016 17:53 +11641867,0.0% of Icelanders 25 years or younger believe God created the world,http://icelandmag.visir.is/article/00-icelanders-25-years-or-younger-believe-god-created-world-new-poll-reveals,122,94,BinaryIdiot,5/6/2016 5:17 +10792057,Reforms to Ease Students Stress Divide a New Jersey School District,http://www.nytimes.com/2015/12/26/nyregion/reforms-to-ease-students-stress-divide-a-new-jersey-school-district.html,3,1,chewymouse,12/25/2015 19:23 +11890590,Natural Language for Developers,https://wit.ai/,183,56,Perados,6/12/2016 22:18 +12263272,MacBook Pro Lineup Set for 'Most Significant Overhaul in Over 4 Years',http://www.macrumors.com/2016/08/10/macbook-pro-lineup-overhaul-4-years/,2,1,t23,8/10/2016 17:08 +10684980,"Show HN: ACME Let's Encrypt client binary releases, works like 'make'",https://github.com/hlandau/acme,83,30,davewongillies,12/6/2015 11:24 +12317525,"Physics, Topology, Logic and Computation: A Rosetta Stone (2009) [pdf]",http://math.ucr.edu/home/baez/rosetta.pdf,132,10,sndean,8/19/2016 2:00 +10667986,Hawaii Court Rescinds Permit to Build Thirty Meter Telescope,http://www.nytimes.com/2015/12/04/science/space/hawaii-court-rescinds-permit-to-build-thirty-meter-telescope.html,76,46,anigbrowl,12/3/2015 5:48 +11684424,I'm a fucking webmaster,https://justinjackson.ca/webmaster/,291,67,fredrivett,5/12/2016 16:07 +11284330,Data Science RSS Feed Do you have enough data about your data,https://www.dataradar.io/,8,1,dekhtiar,3/14/2016 17:58 +10959258,Death to JSON,https://medium.com/@tsaizhenling/death-to-json-b035e604e80a#.fc7pfwl6a,6,1,tsaizhenling,1/23/2016 18:11 +12265493,Travel Survival Guide,http://www.jonobacon.org/2016/08/10/the-bacon-travel-survival-guide/,3,1,jonobacon,8/10/2016 23:53 +10652979,Japan's Cute Army,http://www.newyorker.com/culture/culture-desk/japans-cute-army?mbid=social_twitter,69,46,coloneltcb,12/1/2015 0:49 +10438192,Tool to build rust structs to parse given JSON,https://rusty-json.herokuapp.com/,2,3,IceyEC,10/23/2015 12:39 +10470068,The Xanadu Parallel Universe,http://xanadu.com/xUniverse-D6,5,2,nanna,10/29/2015 10:30 +11351991,Mesosphere raises $73.5M with Microsoft participating,http://venturebeat.com/2016/03/24/mesosphere-raises-73-5-million-with-microsoft-participating-launches-velocity-tool/,136,13,mwilcox,3/24/2016 11:39 +12235193,Fuchsia (A New Operating System by Google?),https://fuchsia.googlesource.com/,8,2,hellopetitos,8/5/2016 19:36 +10524747,How do companies handle tax/payment for remote workers?,,5,4,zippy786,11/7/2015 13:42 +11622632,Why You Should Put Yourself Out There and Try New Products,https://bothsidesofthetable.com/why-you-should-put-yourself-out-there-and-try-new-products-4cd5a88510f0#.jfq97d5zy,2,2,joeyespo,5/3/2016 17:31 +12520140,Power and Autistic Traits,http://journal.frontiersin.org/article/10.3389/fpsyg.2016.01290/full,4,1,sajid,9/17/2016 11:51 +10564878,How Filipino WWII Soldiers Were Written Out of History,http://priceonomics.com/how-filipino-soldiers-were-written-out-of-the/,114,32,miciah,11/14/2015 7:40 +12363580,Ask HN: Single or multiple mounting point(s) in React app?,,1,1,billykwok,8/26/2016 0:49 +12263900,Jacob Appelbaum: Inconsistencies in Rape Allegations,http://www.zeit.de/kultur/2016-08/jacob-appelbaum-rape-allegations-contradictions,2,1,Tomte,8/10/2016 18:38 +11314341,We could colonize the moon for just $10B and make it happen by 2022,http://www.marketwatch.com/story/it-would-cost-only-10-billion-to-live-on-the-moon-2016-03-17,5,1,cryptoz,3/18/2016 19:41 +10900887,Beware of the Silicon Valley cult,https://thinkfaster.co/2015/12/beware-of-the-silicon-valley-cult/,170,134,pmcpinto,1/14/2016 12:15 +11780517,What is Mass Incarceration?,https://medium.com/@dan_nott/what-is-mass-incarceration-ff737196580,3,1,jessaustin,5/26/2016 18:51 +11188966,Most software already has a golden key backdoor: the system update,http://arstechnica.com/security/2016/02/most-software-already-has-a-golden-key-backdoor-its-called-auto-update/,16,1,infinity0,2/27/2016 23:21 +10545155,T-Mobile is writing the manual on how to fuck up the internet,http://www.theverge.com/2015/11/10/9706296/t-mobile-binge-on-streaming-net-neutrality-problem-john-legere,11,2,nithinr6,11/11/2015 6:38 +11867135,Don't use ES2015,http://blog.brianyang.us/dont-use-es2015/,3,1,brian-yang,6/9/2016 2:09 +10559102,Turris Omnia Open Source Home Router (HW and SW),https://www.indiegogo.com/projects/turris-omnia-hi-performance-open-source-router/x/12740262#/story,1,1,virtuallynathan,11/13/2015 10:47 +11984177,Are European software engineers still welcomed in London?,,4,3,deliriousferret,6/27/2016 4:11 +11836455,Europe Isn't Quite Ready for the Sharing Economy,http://www.bloomberg.com/view/articles/2016-06-03/europe-isn-t-quite-ready-for-the-sharing-economy,1,1,petethomas,6/4/2016 14:29 +11230509,Stein's paradox in Statistics (1977) [pdf],http://statweb.stanford.edu/~ckirby/brad/other/Article1977.pdf,69,13,xtacy,3/5/2016 19:00 +10595796,The real reason new graduates can't get hired,http://www.bbc.com/capital/story/20151118-this-is-the-real-reason-new-graduates-cant-get-hired,37,45,hccampos,11/19/2015 16:49 +11387212,Amazon bans the sale of rogue USB-C cables,http://techcrunch.com/2016/03/29/amazon-bans-the-sale-of-rogue-usb-c-cables/,50,68,prostoalex,3/30/2016 5:49 +12104857,pfSense moves to Apache License,https://blog.pfsense.org/?p=2103,13,2,sashk,7/16/2016 1:50 +10702456,How cash is carried across Congo,http://www.economist.com/news/business-and-finance/21679720-new-system-paying-civil-servants-puts-banks-through-their-paces-its-jungle-out-there,59,10,Turukawa,12/9/2015 7:44 +12217612,Show HN: Heartbeat Transform REST Endpoints to Streaming APIs,https://heartbeat.appbase.io,111,24,sidi,8/3/2016 13:02 +11812050,DigitalOcean Introducing Our Bangalore Region: BLR1,https://www.digitalocean.com/company/blog/introducing-our-bangalore-region-blr1,23,3,vaishnavpratik,6/1/2016 4:27 +11164107,Justice Department Wants Apple to Unlock Nine More iPhones,http://www.nytimes.com/2016/02/24/technology/justice-department-wants-apple-to-unlock-nine-more-iphones.html?partner=rss&emc=rss&_r=0,636,304,jstreebin,2/24/2016 2:29 +11181024,This water bottle apparently turns air into drinking water,https://konstruktor.com/Article/view/929,3,5,bontoJR,2/26/2016 12:28 +10554679,Don't copy paste from a website to a terminal,http://thejh.net/misc/website-terminal-copy-paste,665,242,DAddYE,11/12/2015 17:43 +10499842,Firefox Now Offers a More Private Browsing Experience,https://blog.mozilla.org/blog/2015/11/03/firefox-now-offers-a-more-private-browsing-experience/,11,1,reubenmorais,11/3/2015 14:49 +10974520,Eclipse Che Is Now Beta Next-Generation Eclipse IDE,http://blog.codenvy.com/introducing-eclipse-che-beta/,18,9,TylerJewell,1/26/2016 17:23 +10501170,Show HN: Elevator Any dev team can be acquihired,https://goelevator.com,31,4,mikeyanderson,11/3/2015 17:47 +11662248,Pica high quality image resize in browser,https://github.com/nodeca/pica,11,1,guifortaine,5/9/2016 19:03 +10235706,Amazon's New $50 Fire Tablet,http://www.amazon.com/dp/B00TSUGXKE/,35,71,bsilvereagle,9/17/2015 19:59 +12302899,Deutsche Post to start sale of electric vehicles in 2017,http://www.reuters.com/article/deutsche-post-electric-van-idUSFWN1AT0C7,1,1,vincent_s,8/17/2016 6:45 +12199317,The Science That Fueled Frankenstein,http://www.nature.com/nature/journal/v535/n7613/full/535490a.html?WT.mc_id=FBK_NA_1607_FHBOOKSARTSFRANKENSTEIN_PORTFOLIO,1,1,hownottowrite,7/31/2016 22:54 +12276795,How to Hack an Election in 7 Minutes,http://www.politico.com/magazine/story/2016/08/2016-elections-russia-hack-how-to-hack-an-election-in-seven-minutes-214144#ixzz4GSuIBNwd,5,1,oli5679,8/12/2016 16:16 +10874463,"PHP RFC: Make a simple, secure cryptography library",https://wiki.php.net/rfc/php71-crypto,4,1,sarciszewski,1/10/2016 6:27 +12201714,Only 9% of America Chose Trump and Clinton as the Nominees,http://www.nytimes.com/interactive/2016/08/01/us/elections/nine-percent-of-america-selected-trump-and-clinton.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=b-lede-package-region®ion=top-news&WT.nav=top-news,160,262,Dowwie,8/1/2016 12:03 +12387936,Strong signal from sun-like star sparks alien speculation,http://www.cnn.com/2016/08/30/health/seti-signal-hd-164595-alien-civilization/index.html,2,1,mikx007,8/30/2016 6:32 +11667243,Saudi Arabia and Iran: The Cold War of Islam,http://www.spiegel.de/international/world/saudia-arabia-iran-and-the-new-middle-eastern-cold-war-a-1090725.html,73,78,leroy_masochist,5/10/2016 14:07 +12409834,Targeting Activity Against State Board of Election Systems [pdf],https://s.yimg.com/dh/ap/politics/images/boe_flash_aug_2016_final.pdf,9,2,taylorbuley,9/2/2016 0:17 +12045421,Diablo II Save File Format (Work in Progress),https://github.com/krisives/d2s-format,5,2,krisives,7/6/2016 19:54 +11207204,U.S. oil production at 43-year high,http://money.cnn.com/2016/03/01/investing/us-oil-production-near-record-opec/,2,1,adventured,3/2/2016 0:04 +12154879,Using Deep Reinforcement Learning to Play Flappy Bird,https://yanpanlau.github.io/2016/07/10/FlappyBird-Keras.html?n=3,17,2,fchollet,7/24/2016 21:01 +10677665,Virgin presses 747 jumbo into space action,http://www.bbc.co.uk/news/science-environment-35002459,11,1,edward,12/4/2015 17:33 +11791304,"Ask HN: If UIs can be patented, why not APIs?",,3,4,whack,5/28/2016 11:40 +11834158,SpaceX Drone Ship Names,http://www.space.com/28445-spacex-elon-musk-drone-ships-names.html,3,3,11thEarlOfMar,6/4/2016 0:08 +12003863,Berlin St. Petersburg Software Companies,,1,1,tegoo,6/29/2016 19:04 +10974169,Show HN: Goad AWS Lambda powered load testing tool,https://goad.io,69,13,jcxplorer,1/26/2016 16:24 +11367175,A Colorful Interactive Graphic Captures 200 Years of U.S. Immigration,http://www.citylab.com/housing/2015/03/200-years-of-us-immigration-in-1-colorful-infographic/388571/?utm_source=atlanticFB,2,1,fforflo,3/26/2016 19:57 +10362284,All Winter 2016 Application AMA in one place,http://www.askmeanything.me/brands/ycombinator/?from=@,1,2,ramkumarceg,10/9/2015 18:25 +11393064,Shandra Woworuntu: My life as a sex-trafficking victim,http://www.bbc.com/news/magazine-35846207,9,1,ytNumbers,3/30/2016 21:15 +11845452,"D-Day: June 6, 1944",https://www.army.mil/d-day/,2,2,DrScump,6/6/2016 9:04 +10827322,Kivy 1.9.1 released,http://kivy.org/planet/2016/01/kivy-1-9-1%C2%A0released/,96,22,mcastle,1/2/2016 18:53 +11026737,Ravens attribute visual access to unseen competitors,http://www.nature.com/ncomms/2016/160202/ncomms10506/full/ncomms10506.html,3,1,daegloe,2/3/2016 14:58 +11522143,Ask HN: Teaching kids to program?,,6,9,matheweis,4/18/2016 18:36 +10377040,Map Shows Where Sea Level Rise Will Drown American Cities,http://www.wired.com/2015/10/map-shows-sea-level-rise-will-drown-american-cities/,4,6,cryptoz,10/12/2015 21:25 +12473081,'Say hello to the real reasons we got rid of the 3.5mm jack',https://www.reddit.com/r/funny/comments/527629/use_apple_pay_or_else/,12,3,nreece,9/11/2016 12:40 +10960195,All Models of Machine Learning Have Flaws (2007),http://hunch.net/?p=224,57,7,walterbell,1/23/2016 21:31 +10525711,Infrared Scans Show Possible Hidden Chamber in King Tuts Tomb,http://news.nationalgeographic.com/2015/11/151106-tut-tutankhamun-tomb-thermal-imaging-nefertiti-archaeology/,3,1,Mz,11/7/2015 18:35 +11182915,Google Cloud Vision API is evidently decent at aircraft identification,https://twitter.com/gregsramblings/status/703275041396404224,4,1,gw5815,2/26/2016 18:11 +10900618,Ask HN: Where do you share content to that most ppl don't know?,,2,1,LukeFitzpatrick,1/14/2016 10:58 +12485666,Elixir as an Object-Oriented Language,http://tech.noredink.com/post/142689001488/the-most-object-oriented-language,96,28,weatherlight,9/13/2016 4:39 +11271821,The Mindset Mindset (2015),http://www.alfiekohn.org/article/mindset/,18,3,jimsojim,3/12/2016 8:14 +10922588,The Secrets of Sherlocks Mind Palace,http://www.smithsonianmag.com/arts-culture/secrets-sherlocks-mind-palace-180949567/?no-ist,76,39,walterbell,1/18/2016 4:58 +12074769,Dive into GHC: Intermediate Forms,http://www.stephendiehl.com/posts/ghc_02.html,82,1,setra,7/11/2016 21:20 +10424556,How Many U.S. Federal Laws Are There? (2013),http://blogs.loc.gov/law/2013/03/frequent-reference-question-how-many-federal-laws-are-there/,6,9,dsr_,10/21/2015 10:20 +11430655,Show HN: Are your APIs leaking user data?,http://overseer.fallible.co/,4,4,mkagenius,4/5/2016 14:33 +11467872,Notes on 'Decisive: How to Make Better Choices in Life and Work',http://scattered-thoughts.net/blog/2016/04/10/notes-on-decisive-how-to-make-better-choices-in-life-and-work/,28,5,luu,4/10/2016 19:58 +11086208,Eradicating Earths Mosquitoes to Fight Disease Is Probably a Bad Idea,http://motherboard.vice.com/en_uk/read/why-eradicating-earths-mosquitoes-to-fight-disease-is-probably-a-bad-idea?utm_source=mbtwitter,18,39,digital_ins,2/12/2016 9:55 +10542231,"Arrests made in JP Morgan, Etrade, Scottrade hacks",http://krebsonsecurity.com/2015/11/arrests-in-jp-morgan-etrade-scottrade-hacks/,3,1,eyeareque,11/10/2015 20:31 +11055741,Love Resembles Addiction,http://nautil.us/issue/33/attraction/love-is-like-cocaine,177,115,dnetesn,2/8/2016 0:23 +10993849,Shift Card,https://www.shiftpayments.com/,2,1,max_,1/29/2016 6:36 +11451437,Microsoft Edge Putting Users in Control of Flash,https://blogs.windows.com/msedgedev/2016/04/07/putting-users-in-control-of-flash/,20,4,cpeterso,4/7/2016 23:11 +12248956,"Man Awarded $150,000 After Facebook Post Ruined His Life",http://www.smh.com.au/nsw/150000-facebook-post-that-destroyed-a-former-deputy-principals-life-20160807-gqmxqf.html,28,5,breitling,8/8/2016 16:28 +11899545,SimCity: Will Wright's City in a Box,http://www.filfre.net/2016/06/simcity-part-1-will-wrights-city-in-a-box/,224,31,danso,6/14/2016 3:28 +11574745,Scala on Tessel 2 via Scala.js,http://blog.bruchez.name/2016/04/scala-on-tessel-2.html,31,4,sjrd,4/26/2016 19:18 +10303043,Show HN: Lost in translations a fun app of recursive translations,http://lost-in-translations.amanjeev.com,24,31,Amanjeev,9/30/2015 11:12 +12265147,Ask HN: What do you use for password management and why?,,13,20,master_plan,8/10/2016 22:24 +12332324,Has anyone invented this writing system before? (works best in Chrome),http://dhappy.org/.../reader/lrrl/,3,3,dysbulic,8/21/2016 19:27 +12191456,FTLAB FSG-001 A $30 Geiger Counter for Android and iOS,http://www.cnx-software.com/2016/07/29/ftlab-fsg-001-is-a-30-geiger-counter-radiation-detector-for-android-or-ios-smartphones/,51,20,zxv,7/30/2016 3:14 +11861320,PG says London is not a startup hub as you can't get into the Ritz with trainers,https://twitter.com/paulg/status/740226080116736000,5,3,CiaranR,6/8/2016 10:50 +12038584,If the Moon Was Only 1 Pixel,http://joshworth.com/dev/pixelspace/pixelspace_solarsystem.html,11,4,gk1,7/5/2016 18:41 +11254267,Announcing R Tools for Visual Studio,https://blogs.technet.microsoft.com/machinelearning/2016/03/09/announcing-r-tools-for-visual-studio-2/,279,83,brettcannon,3/9/2016 17:29 +12532862,Instant Payouts for Marketplaces,https://stripe.com/blog/instant-payouts-for-marketplaces,16,1,samber,9/19/2016 17:00 +12518400,Space Toads Mayhem Dev Update: Mega Death Sun Power-Up :),https://twitter.com/SpaceToadsGame/status/776930628931649540,1,2,spacetoads,9/17/2016 0:25 +12054602,Meat Is Killing Our Planet and We Wont Even Talk About It,http://collindonnell.com/2016/07/07/meat-is-killing-our-planet-and-we-wont-even-talk-about-it/,8,9,ingve,7/8/2016 10:41 +12307492,Why We Shouldnt Accept Unrepeated ScienceOur Author Responds to His Critics,http://nautil.us/blog/why-we-shouldnt-accept-unrepeated-scienceour-author-responds-to-his-critics,2,1,dnetesn,8/17/2016 19:14 +12292241,Low Latency New GC on OpenJDK: Shenandoah by Christine Flood (27mn),https://www.youtube.com/watch?v=N0JTvyCxiv8,1,1,based2,8/15/2016 18:09 +10333096,Health Care Slavery and Overwork,http://www.telesurtv.net/english/opinion/Health-Care-Slavery-and-Overwork-20150825-0022.html,1,2,cryoshon,10/5/2015 16:56 +11365452,Rethinking PID1 (2010),http://0pointer.de/blog/projects/systemd.html,1,1,shuoli84,3/26/2016 12:44 +12042491,A death on Usenet,http://kernelmag.dailydot.com/issue-sections/headline-story/16932/usenet-sharon-lopatka-consensual-murder/,2,1,elorant,7/6/2016 12:00 +11559537,Verifying Bit-Manipulations of Floating-Point [pdf],http://theory.stanford.edu/~aiken/publications/papers/pldi16b.pdf,60,2,ingve,4/24/2016 13:01 +10743704,I'll Register My Drone When You Have to Register Your Gun,http://motherboard.vice.com/read/ill-register-my-drone-when-you-have-to-register-your-gun,20,9,signa11,12/16/2015 12:02 +12076759,"Show HN: Retry A stateless, functional way to perform actions until successful",https://github.com/Rican7/retry,4,1,Rican7,7/12/2016 4:37 +11012934,My Bathroom Mirror Is Smarter Than Yours,https://medium.com/@maxbraun/my-bathroom-mirror-is-smarter-than-yours-94b21c6671ba#.qalaketfq,5,2,maxbbraun,2/1/2016 16:50 +12373645,The Multi-Project Programmer,http://www.codersnotes.com/notes/multi-project-programmer/,4,1,kayamon,8/27/2016 18:56 +11886317,New research: cashiers who have their own lines move customers more quickly,http://www.scientificamerican.com/article/the-science-of-getting-through-a-checkout-line-faster/,48,66,qazmonk,6/12/2016 2:15 +12017804,Oracle ordered to pay $3bn damages to HP,http://www.bbc.com/news/technology-36682598,4,1,amaks,7/1/2016 16:59 +10396537,"UltraDNS Server Problem Pulls Down Websites, Including Netflix, for 90 Minutes",http://www.nytimes.com/2015/10/16/technology/ultradns-server-problem-pulls-down-websites-including-netflix-for-90-minutes.html,48,29,rdl,10/15/2015 23:02 +10621173,Is a New Raspberry Pi Coming?,http://www.averagemanvsraspberrypi.com/2015/11/new-raspberry-pi.html,3,1,benn_88,11/24/2015 15:21 +10592889,Heat Records Shatter as a Monster El Nino Gathers Strength,http://www.bloomberg.com/news/features/2015-11-18/heat-records-shatter-as-a-monster-el-nino-gathers-strength,3,1,Daishiman,11/19/2015 5:18 +11842645,The Quest for a Perfect C++ Interview Question,http://www.acodersjourney.com/2016/06/the-quest-for-a-perfect-c-interview-question/,9,2,debh,6/5/2016 19:30 +12397525,Ask HN: How do you manage per-service emails with aliases?,,5,6,lnalx,8/31/2016 11:41 +11405385,Show HN: WhatsApp dont allow bots so we made WhatsHash. WebApp with push notfctn,https://whatshash.com/?hn,5,2,theharsh,4/1/2016 15:16 +11339688,Why mental health idealism might not overcome the market,http://thenewmentalhealth.org/?p=81,46,18,DanBC,3/22/2016 20:20 +10390172,Ask HN: Any small businesses buying K-cup pods,,1,1,logicb,10/14/2015 23:09 +10472600,Re:work tools and lessons to make work better,https://rework.withgoogle.com/,239,65,kelukelugames,10/29/2015 17:13 +10949099,"Ask HN: Consultants, how do you handle commissions?",,10,2,musha68k,1/21/2016 22:42 +11481359,Continuous Deployment at Instagram,http://engineering.instagram.com/posts/1125308487520335/continuous-deployment-at-instagram/,239,91,nbm,4/12/2016 17:07 +11304585,Show HN: Creds manage API keys with GPG on the command line,https://github.com/joemiller/creds,42,15,miller_joe,3/17/2016 14:39 +10492134,Exercising Software Freedom in the Global Email System,https://sfconservancy.org/blog/2015/sep/15/email/,64,19,pmoriarty,11/2/2015 15:09 +11545449,Urbanhail app new Kayak for ridesharing in Boston,http://www.urbanhail.com,2,1,urbanhail,4/21/2016 21:24 +12491967,Microsoft researchers achieve speech recognition milestone,http://blogs.microsoft.com/next/2016/09/13/microsoft-researchers-achieve-speech-recognition-milestone,6,1,espadrine,9/13/2016 20:32 +10771494,"Show HN: Stremio watch movies, series, YouTube channels, live TV",http://www.strem.io,116,30,ivshti,12/21/2015 15:31 +12367273,Rackspace to go private again,https://techcrunch.com/2016/08/26/rackspace-to-go-private-after-4-3b-acquisition-by-private-equity-firm-apollo/,3,3,smb06,8/26/2016 16:21 +10977192,"All this happened, more or less.",http://americanbookreview.org/100bestlines.asp,2,2,sorokod,1/26/2016 23:53 +10343496,"Roku Unveils Its 4K Streamer, the Roku 4",http://techcrunch.com/2015/10/06/roku-unveils-its-4k-streamer-the-roku-4-plus-new-software-discovery-features-and-upgraded-mobile-app,11,1,rl3,10/7/2015 0:53 +11993451,Show HN: Improved passive TCP/IP geolocation,http://sheerun.gitlab.io/ping/,78,42,sheerun,6/28/2016 13:07 +12220353,CommaAI Releases Self-Driving Car Dataset,https://github.com/commaai/research,2,1,ericjang,8/3/2016 18:40 +12405698,Ask HN: Who is hiring? (September 2016),,521,910,whoishiring,9/1/2016 15:00 +10380664,"If nearly 40% of Americans aren't Working, What are they Doing?",http://qz.com/516023/if-nearly-40-of-americans-arent-working-what-are-they-doing/,24,10,roymurdock,10/13/2015 14:28 +10434694,The Darknet: Is the Government Destroying the Wild West of the Internet?,http://www.rollingstone.com/politics/news/the-battle-for-the-dark-net-20151022,11,2,nols,10/22/2015 20:05 +10859218,Compare Carbon Footprints of Bay Area Neighborhoods,http://news.berkeley.edu/2016/01/06/new-interactive-map-compares-carbon-footprints-of-bay-area-neighborhoods/,3,1,vinayak147,1/7/2016 17:19 +11443716,"Apply HN: 8Yet? Social in old fashioned way, i.e. face2face",,6,10,dingquan,4/7/2016 0:48 +10664244,Anything2Vec,http://www.lab41.org/anything2vec/,9,1,amplifier_khan,12/2/2015 17:16 +11037880,Ask HN: How many iPhones match the total USSR computing power in 1970? 1985?,,2,3,brandelune,2/4/2016 22:43 +10484255,In the 1920s two murderers were defended by science,http://nautil.us/issue/17/big-bangs/the-original-natural-born-killers,3,1,dnetesn,10/31/2015 21:22 +11610534,Alexandra Elbakyan: The frustrated science student behind Sci-Hub,http://www.sciencemag.org/news/2016/04/alexandra-elbakyan-founded-sci-hub-thwart-journal-paywalls,42,2,yarapavan,5/2/2016 11:26 +10470552,Identifying Traffic Differentiation in Mobile Networks [pdf],http://www3.cs.stonybrook.edu/~phillipa/papers/traffic-diff_imc15.pdf,2,1,cambyrne,10/29/2015 12:47 +11690503,Trump Says Bezos attacking him because Amazon Has Huge Antitrust Problem,http://www.theverge.com/2016/5/13/11669756/donald-trump-amazon-antitrust-jeff-bezos,5,1,jboydyhacker,5/13/2016 14:10 +11356012,Concise video user tests,https://sprint.dscout.com/s/i777dgok,2,1,jackbwheeler,3/24/2016 20:08 +12429830,Ask HN: When is flirting at the workplace sexist?,,3,1,thanatropism,9/5/2016 12:34 +12127950,Ask HN: Getting started with web app development,,8,12,tananaev,7/20/2016 10:22 +10590902,How should we talk to AIs?,http://blog.stephenwolfram.com/2015/11/how-should-we-talk-to-ais/,52,43,champillini,11/18/2015 21:32 +11417172,Quebec seeks to block access to non-government online gambling sites,http://www.thestar.com/news/canada/2016/04/03/quebec-seeks-to-block-access-to-non-government-online-gambling-sites.html,47,21,noarchy,4/3/2016 19:02 +11995055,Voters may be asked to tax SF tech companies,http://www.sfexaminer.com/voters-may-asked-tax-sf-tech-companies/,55,63,enra,6/28/2016 16:25 +12100723,asciitable.com,http://www.asciitable.com,3,2,joubert,7/15/2016 13:21 +12536423,Why are web apps so badly designed from a user-friendliness perspective?,,7,10,hamiltonians,9/20/2016 1:54 +10611628,React Native might become the first multi-platform framework that actually works,https://medium.com/@skvarekm/whyreact-native-might-become-the-first-multi-platform-framework-that-actually-works-ae819bf32721,8,2,mtschopp,11/22/2015 21:46 +11652278,Arcade Raid The Duke of Lancaster Ship,https://arcadeblogger.com/2016/05/06/arcade-raid-the-duke-of-lancaster-ship/,140,20,kilroy123,5/8/2016 2:09 +10501373,Google aims to begin drone package deliveries in 2017,http://onvb.co/HyVUB6C,3,1,kostandin_k,11/3/2015 18:15 +10353780,Economic Inequality Is Not Immoral,http://www.bloombergview.com/articles/2015-08-27/economic-inequality-is-not-immoral,3,1,danielam,10/8/2015 16:25 +11374451,The Great Divide Over Market Efficiency,http://www.institutionalinvestor.com/Article/3315202/Asset-Management-Equities/The-Great-Divide-over-Market-Efficiency.html?ArticleId=3315202&single=true#/.VvlAZ_krKHs,2,1,chollida1,3/28/2016 14:33 +10796681,Computers Get Busy for National Novel-Generating Month,http://thenewstack.io/computers-get-busy-national-novel-generating-month/,29,2,bootload,12/27/2015 6:47 +11183151,Michael Moritz on how Sequoia Capital has maintained long-term success,http://themacro.com/articles/2016/02/michael-moritz-sequoia-success/,39,1,loyalelectron,2/26/2016 18:45 +12562732,Amazon closes at all-time high,http://www.cnbc.com/2016/09/22/amazon-closes-at-all-time-high-above-800-for-the-first-time.html,2,1,shahryc,9/23/2016 6:34 +11500945,"Show HN: 10,000 free Beacons plotted around the world",https://www.beaconsinspace.com/GETBeacons,2,3,benjamsmith,4/14/2016 23:03 +11038705,How to Build an AI that Wins,https://blog.vivekpanyam.com/how-to-build-an-ai-that-wins-the-basics-of-minimax-search/,4,1,vpanyam,2/5/2016 1:18 +10986653,Cycle 2016,https://medium.com/@willmoyer/cycle-2016-d4bcbdad497c#.kedc6n1el,2,1,trhaynes,1/28/2016 6:18 +11715301,Women in Elite Jobs Face Stubborn Pay Gap,http://www.wsj.com/articles/women-in-elite-jobs-face-stubborn-pay-gap-1463502938,1,2,ArtDev,5/17/2016 17:09 +10614682,"For Addicts, Fantasy Sites Can Lead to Ruinous Path",http://www.nytimes.com/2015/11/23/sports/fantasy-sports-addiction-gambling-draftkings-fanduel.html,17,4,SeanBoocock,11/23/2015 14:21 +10927360,Show HN: Would love some feedback on my weekend project (built in 3 days),https://www.teamclerk.com?utm_source=hn,44,49,tc1222,1/18/2016 22:06 +11964673,Is productivity the victim of its own success?,https://growthecon.com/blog/Baumol/,78,57,jseliger,6/23/2016 22:11 +12136846,Serverless Computing on DC/OS with Galactic Fog,https://mesosphere.com/blog/2016/07/20/serverless-computing-dcos-galactic-fog/,3,1,florianleibert,7/21/2016 14:00 +11449737,Apply HN Seedu Equity Financing for Education,,10,11,seanreddy,4/7/2016 19:05 +11773187,SELinux is beyond saving,https://utcc.utoronto.ca/~cks/space/blog/linux/SELinuxBeyondSaving,137,77,fcambus,5/25/2016 21:16 +11095876,Why I am not touching Node.js,https://blog.tincho.org/posts/Why_I_am_not_touching_node.js/,3,1,chei0aiV,2/13/2016 22:14 +10922365,New book argues we cant expect new tech to rekindle rapid economic growth,https://www.washingtonpost.com/opinions/technology-wont-save-us-from-slow-growth/2016/01/17/6fe2a1cc-bb9c-11e5-99f3-184bc379b12d_story.html,42,55,petethomas,1/18/2016 3:17 +10511588,Ask HN: Please recommend an affordable wifi temp adjustable light bulb,,2,2,soulbadguy,11/5/2015 4:13 +10946602,The fastest form and api workflow anywhere,https://form.io,6,2,finid,1/21/2016 17:11 +12512599,10 Modern Software Over-Engineering Mistakes,https://medium.com/@rdsubhas/10-modern-software-engineering-mistakes-bc67fbef4fc8#.h9j6eosbq,4,1,sidcool,9/16/2016 8:16 +10887715,Brazils Digital Backlash,http://www.nytimes.com/2016/01/12/opinion/brazils-digital-backlash.html,9,5,tysone,1/12/2016 14:55 +10766234,A pause to refresh the Web?,https://www.oreilly.com/ideas/a-pause-to-refresh-the-web,24,8,prostoalex,12/20/2015 6:15 +11551333,Lumen A semi-modular analog-style video synth for Mac,http://lumen-app.com/,20,2,lyime,4/22/2016 18:21 +11196340,Show HN: Lagom A simple homepage for your browser with a new design every day,http://lagom.io,1,1,vpanyam,2/29/2016 16:25 +12555810,The Age of the Superbug Is Here,http://www.huffingtonpost.com/entry/antibiotic-resistance-crisis-un_us_57d8ea87e4b0fbd4b7bc66c4,147,151,pmcpinto,9/22/2016 10:28 +11842713,Show HN: GPG-Mailer send GPG-encrypted emails from your PHP application,https://github.com/paragonie/gpg-mailer,4,1,CiPHPerCoder,6/5/2016 19:40 +11553261,Semiconductor Pioneer & Nobel Laureate Dr. Walter Kohn Has Died,https://en.wikipedia.org/wiki/Walter_Kohn,2,2,jonah,4/22/2016 23:28 +10409930,Ordinary Words Will Do,http://www.scottaaronson.com/blog/?p=2494,3,1,ikeboy,10/18/2015 21:45 +12014271,NASA Software Safety Guidebook (2004) [pdf],http://www.hq.nasa.gov/office/codeq/doctree/871913.pdf,104,38,Tomte,7/1/2016 6:44 +10539075,The New Intolerance of Student Activism,http://www.theatlantic.com/politics/archive/2015/11/the-new-intolerance-of-student-activism-at-yale/414810/?single_page=true,19,30,trevin,11/10/2015 13:20 +11409352,Gmail Mic-Down Chrome Extension,https://chrome.google.com/webstore/detail/gmail-mic-down/gonmfjbhknfofhooajdjombcbbpbilhl,1,1,freakynit,4/1/2016 23:36 +10330126,"The TPP: Copyright Law, the Creative Industries, and Internet Freedom",https://medium.com/@DrRimmer/the-trans-pacific-partnership-copyright-law-the-creative-industries-and-internet-freedom-960254be7f33,43,7,walterbell,10/5/2015 5:42 +11179355,Ask HN: Please increase the amount of time edit is available on comments,,2,3,samstave,2/26/2016 1:52 +10405632,The Rise and Fall of Everest (The App),https://medium.com/@producthunt/the-rise-and-fall-of-everest-the-app-b0d2e6cb594c,18,10,booruguru,10/17/2015 19:11 +10806077,The Contradiction That Is Ayn Rand,http://www.petemccormack.com/blog/?p=6711,2,1,jimsojim,12/29/2015 10:33 +10923622,Applying to Toptal: My Retrospective,,4,2,toptalthrowaway,1/18/2016 10:37 +11245108,"Show HN: Tellybox Simple, energy efficient kiosk display for your businesses",http://tellybox.me,12,10,adambutler,3/8/2016 13:40 +10841810,A Break for Small Business,http://www.bloombergview.com/articles/2016-01-04/a-break-for-small-business,50,22,MaysonL,1/5/2016 7:21 +11780312,"Most of the time, I dont feel like a girl, I feel like a programmer",https://sarahbradburyblog.wordpress.com/2016/05/23/caroline-clark-on-coding/?preview=true,65,44,hunglee2,5/26/2016 18:24 +11946063,"Invoking Orlando, Senate Republicans set up vote to expand FBI spying",http://www.reuters.com/article/us-cyber-fbi-emails-idUSKCN0Z7056?feedType=RSS&feedName=politicsNews&utm_source=Twitter&utm_medium=Social,2,1,dforrestwilson,6/21/2016 14:57 +10883372,The Blogosphere Pays Off More Than Ever,http://wwd.com/media-news/media-features/chiara-ferragni-fashion-bloggers-money-make-income-millionaire-kristina-bazan-kylie-jenner-10306124/,4,1,mozumder,1/11/2016 20:47 +11367422,A 120-Year Lease on Life Outlasts Apartment Heir (1995),http://www.nytimes.com/1995/12/29/world/a-120-year-lease-on-life-outlasts-apartment-heir.html,53,47,tshtf,3/26/2016 20:57 +10179222,OMN: Scripting the whole language of traditional staff notation,http://opusmodus.com/omn.html,46,12,geoffroy,9/6/2015 22:01 +11294230,Windows 10 forcefully installs,http://www.theguardian.com/technology/2016/mar/15/windows-10-automatically-installs-without-permission-complain-users,10,2,ausjke,3/16/2016 1:00 +11915212,Robot Bites Man,http://hackaday.com/2016/06/15/robot-bites-man/,3,1,qwerty245245,6/16/2016 10:35 +12567587,VR Devs Pull Support for Oculus Rift Until Palmer Luckey Steps Down,http://motherboard.vice.com/read/vr-devs-pull-support-for-oculus-rift-until-palmer-luckey-steps-down,34,33,davidgerard,9/23/2016 20:11 +11266355,Using Google's Python Client Library to Authorise Your Desktop App with OAuth2,http://www.jamalmoir.com/2016/03/google-python-library-oauth2.html,31,12,Jmoir,3/11/2016 13:07 +11900949,Watch a computer think through how its going to beat you at chess,http://fusion.net/story/313582/thinking-machine-6-computer-chess/,2,1,jonbaer,6/14/2016 10:19 +11448181,Nose.js left-pad is Accidentally Quadratic,http://accidentallyquadratic.tumblr.com/post/142387131042/nodejs-left-pad,3,1,tel,4/7/2016 15:47 +11112631,Ask HN: I hacked the mental health industry now what?,,2,5,tcj_phx,2/16/2016 19:49 +11028308,College Career Network Handshake Secures $10.5M Series A from KPCB,https://medium.com/@gklord/handshake-s-new-funding-6d7569553219#.7440zvtnz,12,2,sgringwe,2/3/2016 18:16 +10544364,How to Remove Your IP from the Gmail Blacklist,https://www.rackaid.com/blog/gmail-blacklist-removal/,27,7,gull,11/11/2015 2:14 +11201038,The King of Human Error: Michael Lewis on Daniel Kahneman (2011),http://www.vanityfair.com/news/2011/12/michael-lewis-201112,25,8,tim_sw,3/1/2016 6:08 +11454653,SHAFT Unveils Awesome New Bipedal Robot at Japan Conference,http://spectrum.ieee.org/automaton/robotics/humanoids/shaft-demos-new-bipedal-robot-in-japan,4,1,mcspecter,4/8/2016 13:56 +11357950,Rust Mutation Testing,https://llogiq.github.io/2016/03/24/mutest.html,52,5,mmastrac,3/25/2016 1:42 +12570188,"Your new iPhones features include oppression, inequality and vast profit",https://www.theguardian.com/commentisfree/2016/sep/19/your-new-iphone-features-oppression-inequality-vast-profit,8,3,dr1337,9/24/2016 9:11 +10969640,Rails 5.0.0.beta1.1 released,http://weblog.rubyonrails.org/2016/1/25/Rails-5-0-0-beta1-1-4-2-5-1-4-1-14-1-3-2-22-1-and-rails-html-sanitizer-1-0-3-have-been-released/,2,1,aaronbrethorst,1/25/2016 20:16 +11548831,A Marriage Gone Bad: Walgreens Struggles to Shake Off Theranos,http://www.nytimes.com/2016/04/22/business/a-once-avid-ally-walgreens-is-struggling-to-shake-off-theranos.html?smid=tw-nytimes&smtyp=cur&_r=1,144,135,dbcooper,4/22/2016 13:13 +10282121,The Greatest Regex Trick Ever (2014),http://www.rexegg.com/regex-best-trick.html,227,131,user_235711,9/26/2015 4:41 +10636697,A Large-Scale Study of the Use of Eval in JavaScript Applications (2011) [pdf],http://the.gregor.institute/papers/ecoop2011-richards-eval.pdf,18,12,luu,11/27/2015 10:10 +10556375,f.lux for iOS is no longer available,https://justgetflux.com/sideload/#notanymore,616,400,kilian,11/12/2015 21:45 +12396213,A Simple JavaScript change to reduce your build size,http://patrick-gordon.com/blog/2016/8/31/reducing-bundle-size-easily,8,2,patrickgordon,8/31/2016 5:27 +11325883,China has a $777B problem with unpaid bills,http://smh.com.au/business/markets/china-has-a-777-billion-problem-with-unpaid-bills-20160321-gnn0er.html,3,1,bootload,3/21/2016 2:48 +10425459,The Lost History of Gay Adult Adoption,http://www.nytimes.com/2015/10/19/magazine/the-lost-history-of-gay-adult-adoption.html?mod=e2this&_r=0,72,69,pmcpinto,10/21/2015 14:04 +10912563,Global Entrepreneurship Index do you know/agree with this list?,http://thegedi.org/global-entrepreneurship-and-development-index/,2,1,MasterScrat,1/15/2016 22:07 +10462576,Ask HN: Do I choose a few team members or lose our only investor?,,11,12,CaptainAwesome,10/28/2015 2:34 +12451543,I used an online platform to create a successfull android app and need your help,,3,3,megahz,9/8/2016 9:44 +10800985,ASCII table Pronunciation Guide,http://ascii-table.com/pronunciation-guide.php,4,1,marinintim,12/28/2015 13:25 +10519135,SQL vs. NoSQL: you do want to have a relational storage by default,http://enterprisecraftsmanship.com/2015/11/06/sql-vs-nosql-you-do-want-to-have-a-relational-storage-by-default/,16,2,vkhorikov,11/6/2015 12:41 +11373555,Aquaris M10 Ubuntu Tablet Pre-order,http://www.bq.com/uk/aquaris-m10-ubuntu-edition,238,130,legierski,3/28/2016 10:50 +11578317,Experimental Qt and QML in the browser,http://dragly.org/2016/04/27/experimental-qt-and-qml-in-the-browser/,58,20,ingve,4/27/2016 6:49 +10292707,Show HN: Another approach to building my portfolio on GitHub,http://alessiosantocs.github.io/,3,1,alessiosantocs,9/28/2015 19:50 +11124116,Flying with a Wounded Wing: Why Twitter Still Has More Than a Chance,https://medium.com/@garyvee/flying-with-a-wounded-wing-why-twitter-still-has-more-than-a-chance-f35db718bb98#.ig3yep7ha,2,1,gyvastis,2/18/2016 6:49 +10589068,4 Reasons Why Microservices Are Climbing the Hype Cycle,https://www.linkedin.com/pulse/4-reasons-why-microservices-climbing-hype-cycle-david-simmons,1,1,tmflannery,11/18/2015 17:14 +11862386,Making Music in a Browser: Recreating Theremin with JavaScript and Web Audio API,https://www.smashingmagazine.com/2016/06/make-music-in-the-browser-with-a-web-audio-theremin/,4,1,ohjeez,6/8/2016 14:14 +12249275,NeoWize (YC S16) Personalizes E-Commerce Sites to New Users,http://themacro.com/articles/2016/08/neowize/,33,19,stvnchn,8/8/2016 17:10 +11387642,Show HN: Next generation configuration mgmt,https://ttboj.wordpress.com/2016/01/18/next-generation-configuration-mgmt/,3,3,purpleidea,3/30/2016 8:02 +11319493,Arxiv Sanity Preserver,http://www.arxiv-sanity.com/,129,39,stared,3/19/2016 17:40 +11438089,Classism in America,http://siderea.livejournal.com/1260265.html?format=light,307,333,traverseda,4/6/2016 11:47 +11400839,Show HN: A Highcharts Library for Polymer 1.0,https://avdaredevil.github.io/highcharts-chart/,4,2,max0563,3/31/2016 21:51 +11098930,Exhaustive list of All Python Books (Updated),http://importpython.com/books/,6,1,mangoorange,2/14/2016 16:48 +10898789,Ask HN: What's your favorite place to work from as a freelancer?,,4,3,prmph,1/14/2016 0:29 +11021129,EBay Platform Exposed to Severe Vulnerability,http://blog.checkpoint.com/2016/02/02/ebay-platform-exposed-to-severe-vulnerability/,21,5,cyptus,2/2/2016 18:04 +11888869,The 'Broomgate' Controversy Rocking the Sport of Curling,http://gizmodo.com/heres-the-physics-behind-the-broomgate-controversy-rock-1781822352,57,38,lando2319,6/12/2016 16:32 +11808132,Ask HN: Are press releases relevant anymore?,https://medium.com/@cborodescu/press-releases-are-bullshit-dont-feed-that-to-journalists-92ed91388f41,5,1,ponderatul,5/31/2016 17:23 +12042759,Show HN: NewsAPI A free API for live news headlines and images,https://newsapi.org,3,12,highace,7/6/2016 13:02 +11573220,"Kiev, Ukraine: CloudFlares 78th Data Center",https://blog.cloudflare.com/kiev/,2,2,jgrahamc,4/26/2016 16:26 +12254374,Ask HN: Know a good tool to purge all posts/likes/photos from Facebook?,,110,95,galaktor,8/9/2016 13:40 +11215897,Intuitive design for command line switches,http://nunobrito1981.blogspot.com/2016/03/intuitive-design-for-command-line.html,1,3,nunobrito,3/3/2016 9:50 +12462819,Researchers debunk 'five-second rule',http://sciencebulletin.org/archives/5076.html,2,1,upen,9/9/2016 15:00 +12316343,A Bot that Calculates your quarterly taxes?,http://www.quarterlytaxcalculator.com/,6,1,Brianjwma,8/18/2016 21:08 +11098466,All Late Projects Are the Same (2011) [pdf],http://www.systemsguild.com/pdfs/DeMarcoNov2011.pdf,50,20,musha68k,2/14/2016 14:57 +10457666,European Parliament votes against net neutrality amendments,http://www.bbc.co.uk/news/technology-34649067,160,38,majc2,10/27/2015 12:59 +10540505,Founder,https://www.gospik.com,1,1,gospik,11/10/2015 17:00 +11824164,Test your free will at the Aaronson Oracle,http://people.ischool.berkeley.edu/~nick/aaronson-oracle/index.html,271,225,ifelsehow,6/2/2016 17:06 +10270173,Sam Altman: 'The greatest threat to this country is incompetence of governance',http://www.businessinsider.com/y-combinators-sam-altman-on-government-incompetence-2015-9,3,3,dkasper,9/24/2015 6:33 +10584663,An Abrupt End to Debian Live,https://lists.debian.org/debian-live/2015/11/msg00024.html,109,42,conductor,11/17/2015 23:04 +12430138,Offer HN: free logo redesign for open source projects Part II,,3,2,fairpx,9/5/2016 13:27 +11614076,AMD Polaris Architecture,http://www.amd.com/en-us/innovations/software-technologies/radeon-polaris#,4,1,doener,5/2/2016 18:28 +11838490,Instagram for Business,https://business.instagram.com/,83,35,afshinmeh,6/4/2016 22:34 +12521320,The Design of Parliaments Has an Impact on Politics,https://www.wired.com/2016/09/beautiful-book-reveals-architectures-impact-politics/,58,18,sethbannon,9/17/2016 17:08 +11025657,Wahoo Fitness Desk,http://uk.wahoofitness.com/wahoo-fitness-standing-desk.html,2,1,awjr,2/3/2016 9:59 +12357812,Voice Recognition Software Beats Humans at Typing,http://www.npr.org/sections/alltechconsidered/2016/08/24/491156218/voice-recognition-software-finally-beats-humans-at-typing-study-finds?href=,37,54,jonbaer,8/25/2016 9:31 +10638110,How in-state college football rivalries became a form of class warfare,http://www.slate.com/articles/sports/sports_nut/2015/11/why_florida_state_and_florida_fans_hate_each_other_so_much.html,13,13,x43b,11/27/2015 17:34 +12207204,Bypassing UAC on Windows 10 Using Disk Cleanup,https://enigma0x3.net/2016/07/22/bypassing-uac-on-windows-10-using-disk-cleanup/,6,2,djsumdog,8/2/2016 1:00 +10828681,Medium has assiduously courted the political class,http://www.politico.com/story/2016/01/how-medium-is-breaking-washingtons-op-ed-habit-217230,33,12,jeo1234,1/3/2016 0:00 +10567496,Mob Software (2001),http://www.dreamsongs.com/MobSoftware.html,21,4,teddyh,11/14/2015 22:15 +11949692,Table-oriented programming (2002),http://www.oocities.org/tablizer/top.htm,122,64,open-source-ux,6/21/2016 21:47 +12229269,So I accidentally broke a Skype messaging bot,http://imgur.com/a/1vB4F,27,2,mistat,8/4/2016 23:58 +12371933,A discussion about Time Series databases,,3,1,dataloopio,8/27/2016 11:42 +10441684,Beta Aangle Reaction Videos of Anything on Your Phone,https://play.google.com/apps/testing/com.getswizzle.angle,1,1,szabon,10/23/2015 23:00 +10702779,1984 When women stopped coding,http://www.npr.org/sections/money/2014/10/17/356944145/episode-576-when-women-stopped-coding,145,204,rmason,12/9/2015 9:47 +11814002,When should you store serialized objects in the database? (2010),https://www.percona.com/blog/2010/01/21/when-should-you-store-serialized-objects-in-the-database/,54,68,harshasrinivas,6/1/2016 13:02 +10677628,2015 State of Clojure community survey,http://blog.cognitect.com/blog/2015-clojure-community-survey,74,1,dgellow,12/4/2015 17:26 +11172323,Startup Failure Post-Mortems,https://www.cbinsights.com/blog/startup-failure-post-mortem,101,15,alatkins,2/25/2016 4:06 +11479350,Go package for letsencrypt,https://godoc.org/rsc.io/letsencrypt,1,1,buro9,4/12/2016 13:29 +11218119,BlueCrew (YC S15) uses tech for blue-collar temp agency,http://www.sfchronicle.com/business/article/BlueCrew-uses-tech-for-blue-collar-temp-agency-6864229.php,21,5,coopernewby,3/3/2016 16:56 +12073032,AI Startup Acquisitions Average $2.5M Per Employee,https://www.cbinsights.com/blog/top-acquirers-ai-startups-ma-timeline/,2,1,paulsutter,7/11/2016 18:14 +10742048,Ask HN: What do you guys think about Shark Tank (the TV program from abc)?,,7,6,pedrodelfino,12/16/2015 2:50 +11349619,KiK's Side of the breaking-the-internet story,https://medium.com/@mproberts/a-discussion-about-the-breaking-of-the-internet-3d4d2a83aa4d#.95priw8ta,8,2,harel,3/24/2016 0:32 +10397953,UK firm's surveillance kit 'used to crush Uganda opposition',http://www.bbc.co.uk/news/uk-34529237,108,28,escapologybb,10/16/2015 7:31 +12493191,The single biggest reason startups succeed,https://fpgasite.wordpress.com/2016/07/26/the-single-biggest-reason-why-startups-succeed/,3,1,chclau,9/13/2016 23:49 +11339307,Measuring SMTP STARTTLS Deployment Quality,https://yahoo-security.tumblr.com/post/141495385400/measuring-smtp-starttls-deployment-quality,25,4,ingve,3/22/2016 19:31 +11784560,Unesco report on Great Barrier Reef that Australia didn't want world to see,http://www.theguardian.com/environment/2016/may/27/revealed-the-report-on-the-great-barrier-reef-that-australia-didnt-want-the-world-to-see,2,1,YeGoblynQueenne,5/27/2016 8:03 +10807760,Postgres features and tips,http://www.craigkerstiens.com/2015/12/29/my-postgres-top-10-for-2016/,190,37,craigkerstiens,12/29/2015 17:28 +11861589,"Show HN: sleuth, an autodiscovery and communication library for Go HTTP services",https://github.com/ursiform/sleuth,2,1,afshin,6/8/2016 12:01 +11826722,Some Lost Superstitions of the Early-20th-Century United States,http://www.slate.com/blogs/the_vault/2016/06/01/lists_gathering_the_lost_superstitions_of_early_20th_century_america.html,92,23,samclemens,6/2/2016 22:42 +10620083,Betwixt Web Debugging Proxy Based on Chrome DevTools Network Panel,https://github.com/kdzwinel/betwixt,56,6,atriix,11/24/2015 10:43 +10539273,How Outsourcing Companies Are Gaming the H1B Visa System,http://www.nytimes.com/interactive/2015/11/06/us/outsourcing-companies-dominate-h1b-visas.html?_r=0,2,1,nopinsight,11/10/2015 14:01 +11619245,The Bug in the Physical Building,http://two-wrongs.com/the-bug-in-the-physical-building,14,1,kqr,5/3/2016 10:13 +12043031,Amazon.com: Fun Finds,http://www.amazon.com/stream/hotpicks/,7,3,tilt,7/6/2016 13:51 +12357513,Show HN: BotFunded Track which chatbots are getting the most funding,https://botfunded.com/,3,1,iisbum,8/25/2016 8:02 +12468682,Are zero-hours contracts really worse than jobs for life?,https://www.theguardian.com/commentisfree/2016/sep/10/zero-hours-contracts-worse-jobs-for-life-work-unions?CMP=twt_gu,4,1,kristianc,9/10/2016 11:13 +10728866,The Quartz guide to bad data,https://github.com/Quartz/bad-data-guide,43,6,denzil_correa,12/14/2015 1:33 +10276636,Leave Homework to Children and Home Work to Adults,https://medium.com/b-calm-and-b-corp/leave-homework-to-children-and-home-work-to-adults-55c980103ff5,2,1,makkina,9/25/2015 6:19 +10592631,Ask HN: Short Survey About Programming vs. Engineering,,5,1,choxi,11/19/2015 3:54 +12566716,Driverless Cars may force Human motorists off the road,http://www.denverpost.com/2016/09/22/driverless-cars-human-motorists-off-road/,1,1,pgnas,9/23/2016 18:10 +10908042,Dr. Memory: A Memory Checker Faster Than Valgrind,http://drmemory.org/,143,43,vmorgulis,1/15/2016 8:52 +12078980,Artificial Intelligence Is Setting Up the Internet for a Huge Clash with Europe,http://www.wired.com/2016/07/artificial-intelligence-setting-internet-huge-clash-europe/,50,29,jonbaer,7/12/2016 14:01 +10731009,What hourly rate should I charge as a freelancer?,http://www.logicalbacon.com/what-hourly-rate-should-i-charge-as-a-freelancer/,1,1,Meshed,12/14/2015 14:08 +10690209,Todoman: A simple CalDav-based todo manager,https://pypi.python.org/pypi/todoman/1.4.0,40,4,leephillips,12/7/2015 16:03 +10923494,Facebook and How UIs Twist Your Words,https://medium.com/user-experience-design-1/facebook-and-how-uis-twist-your-words-4ceedc5fd93#.sqrvcqkm3,2,1,gdilla,1/18/2016 9:44 +11125967,The Missing Link of Artificial Intelligence,https://www.technologyreview.com/s/600819/the-missing-link-of-artificial-intelligence/#/set/id/600832/,9,2,plhetp,2/18/2016 14:35 +12186822,Ask HN: Simple rules inspired by Rust ownership in C++?,,4,1,netgusto,7/29/2016 13:58 +10688826,How to tell if a FLOSS project is doomed to Fail (2009),http://www.theopensourceway.org/book/The_Open_Source_Way-How_to_tell_if_a_FLOSS_project_is_doomed_to_FAIL.html,20,8,ingve,12/7/2015 11:46 +11428440,Microsoft SQL Server Developer Edition Is Now Free,https://blogs.technet.microsoft.com/dataplatforminsider/2016/03/31/microsoft-sql-server-developer-edition-is-now-free/,20,8,ximeng,4/5/2016 7:07 +10504254,"Michael D. Hammond, Co-Founder of Gateway, Is Dead at 53",http://www.nytimes.com/2015/11/04/technology/michael-d-hammond-co-founder-of-gateway-is-dead-at-53.html,138,53,doppp,11/4/2015 2:52 +11219393,Oculus Rift Won't Support Mac Until Apple Releases a 'Good Computer',http://www.macrumors.com/2016/03/03/oculus-rift-for-mac-requires-better-gpus/,8,3,charlieegan3,3/3/2016 19:37 +10549222,Static lighting upsets our internal clocks,http://getsvet.tumblr.com/post/128705496759/static-lighting-upsets-our-internal-clocks,1,2,hovl,11/11/2015 20:57 +10689773,Blockchain Challenge by Bank of England,http://blockchain.bankofenglandearlycareers.co.uk/,75,111,jimsojim,12/7/2015 14:50 +12203740,Email marketing: do you understand what this service is about?,http://www.obvi.email,2,3,aledalgrande,8/1/2016 16:31 +12409807,When Is a Mark Not a Mark? When Its a Venture Capital Mark,http://a16z.com/2016/09/01/marks-offmark/,120,37,aston,9/2/2016 0:10 +11747012,World's Largest Solar Plant Sets Itself Ablaze Due to Misaligned Mirrors,http://hothardware.com/news/worlds-largest-solar-plant-sets-itself-ablaze-due-to-misaligned-mirrors,2,2,enlightenedfool,5/22/2016 1:16 +11662834,Ephemeral is developing tattoo ink designed to disappear after a year,http://techcrunch.com/2016/05/09/ephemeral-tattoos/,117,138,jimschley,5/9/2016 20:23 +10195820,"Adventures of a Foreigner in Silicon Valley, Part 1: Why?",https://medium.com/@maraoz/adventures-of-a-foreigner-in-silicon-valley-part-1-why-80f78639e7ea,2,1,wslh,9/10/2015 2:05 +11976526,Ask HN: How do you cope with routine in your daily programming job?,,7,3,wofo,6/25/2016 15:01 +11801222,Using Makefiles for simple build scripts,http://blog.stapps.io/using-makefiles-for-simple-build-scripts/,1,2,stilliard,5/30/2016 13:32 +11219017,Show HN: ComputationalHealthcare Search aggregated stats on millions of visits,http://www.computationalhealthcare.com/Home#,1,1,aub3bhat,3/3/2016 18:54 +10389023,"Uber launches Uber Rush, merchant delivery service, in three cities",http://www.businessinsider.com/uber-rush-fedex-killer-released-2015-10,64,19,zouko,10/14/2015 20:01 +11025163,Expand Your Programming Vocabulary (for Beginners),http://www.programmingforbeginnersbook.com/blog/expand_your_programming_vocabulary/,70,19,boyakasha,2/3/2016 7:08 +11323912,Searchkit 0.8 React UI Components for Elasticsearch,https://blog.searchkit.co/searchkit-0-8-2c6432f9b4ac#.jds6mrkql,108,9,joemcelroy,3/20/2016 18:07 +10947972,Why California Is Such a Talent Magnet,https://hbr.org/2016/01/why-california-is-such-a-talent-magnet,5,1,hwstar,1/21/2016 20:14 +10457336,The Needless Complexity of Academic Writing,http://www.theatlantic.com/education/archive/2015/10/complex-academic-writing/412255/?single_page=true,63,67,DarkContinent,10/27/2015 11:20 +11053028,Mediatek MT6261 ROM dumping via the vibration motor,http://www.sodnpoo.com/posts.xml/mediatek_mt6261_rom_dumping_via_the_vibration_motor.xml,86,9,sodnpoo,2/7/2016 15:00 +10655418,The Moral Character of Cryptographic Work [pdf],http://web.cs.ucdavis.edu/~rogaway/papers/moral-fn.pdf,37,7,moviuro,12/1/2015 14:16 +10343349,Ask HN: What's a proud hack of yours?,,16,9,diego,10/7/2015 0:15 +12010543,Database of 9.3M Healthcare Patient Records Breached,https://www.deepdotweb.com/2016/06/28/now-9300000-healthcare-insurance-database-sold/,7,2,jswny,6/30/2016 18:14 +10986854,"Fired, Downsized or Laid Off",http://skloverworkingwisdom.com/blog/stand-up-for-yourself-at-work-resource-center/fired-downsized-or-laid-off/,1,2,walterbell,1/28/2016 7:18 +11344217,"Launching Density Labs. If you can dream it, we can code it",http://densitylabs.io/,1,5,framallo2,3/23/2016 13:34 +11628178,Show HN: This app lets you call up to 10 people at once. Useful?,http://myglobalconference.com/app,6,4,bertelet,5/4/2016 13:34 +10477593,NASA Adds to Evidence of Mysterious Ancient Earthworks,http://www.nytimes.com/2015/11/03/science/nasa-adds-to-evidence-of-mysterious-ancient-earthworks.html,254,63,igonvalue,10/30/2015 13:23 +10606168,The perfect TV,http://technology.siekerman.nl/post/133644449664/the-perfect-tv,58,60,tvtechnology,11/21/2015 8:24 +11910537,Mars Explorers Wanted Posters from NASA,http://mars.nasa.gov/multimedia/resources/mars-posters-explorers-wanted/,2,1,protomyth,6/15/2016 17:07 +10794705,Ask HN: In a difficult situation at work. Need advice,,56,66,helplessdev,12/26/2015 18:09 +10185102,TSA Master Keys,https://www.schneier.com/blog/archives/2015/09/tsa_master_keys.html,299,142,privong,9/8/2015 11:43 +12236516,Mercedes Is About to Unveil an Entire Fleet of Electric Vehicles,http://www.bloomberg.com/news/articles/2016-08-05/mercedes-to-challenge-bmw-tesla-with-four-car-electric-lineup?cmpid=BBD080516_BIZ,9,3,JumpCrisscross,8/6/2016 0:36 +11675108,Show HN: We Work Contract London Web contract jobs with day rates,http://weworkcontract.com/,71,77,jwmoz,5/11/2016 13:38 +10557160,Why dont more women work in cybersecurity?,http://www.slate.com/articles/technology/future_tense/2015/11/why_don_t_more_women_work_in_cybersecurity.html,2,4,jessaustin,11/13/2015 0:16 +11467981,[React] proptypes-parser: Define React PropTypes with readable string.,https://github.com/joonhocho/proptypes-parser,1,1,joonhocho,4/10/2016 20:20 +10615054,Top 5 Google Analytics alerts,http://metrics.watch/top-5-google-analytics-alerts/,3,1,jpmw,11/23/2015 15:24 +11260116,"Show HN: Fieldbook Codelets: Host snippets of code, integrated with Fieldbook",https://medium.com/@fieldbook/announcing-fieldbook-codelets-77389d9eb59f,15,6,jasoncrawford,3/10/2016 16:27 +10284673,Dieselgate: How exactly did the software know the car was being tested?,,7,8,lollipop25,9/26/2015 22:38 +11103498,Asking 'Why' in Design A Cautionary Tale,https://spin.atomicobject.com/2016/02/15/asking-why-resources/#.VsHfMZ82rXQ.hackernews,1,1,philk10,2/15/2016 14:22 +10927162,Ask HN: Why is cancer trending?,https://www.google.com/trends/explore#q=%2Fm%2F0qcr0,2,1,carlsborg,1/18/2016 21:37 +12455451,"Show HN: MasterWP become a WordPress power user, fast",https://masterwp.co,13,2,beartear,9/8/2016 18:02 +12061456,Ask HN: TeamViewer alternative?,,4,3,pvinis,7/9/2016 14:49 +11563654,A Complete Detail About Credit Card Frauds,https://gasstaionfraud.quora.com/A-Complete-Detail-About-Credit-Card-Frauds?share=1,1,1,gasstationfraud,4/25/2016 11:57 +12225982,Not All the High-Tech Jobs Are in California,http://www.bloomberg.com/view/articles/2016-08-04/not-all-the-high-tech-jobs-are-in-california,11,8,pbhowmic,8/4/2016 15:07 +11794637,PyThalesians: Python Open Source Financial Library,https://github.com/thalesians/pythalesians,139,8,sndean,5/29/2016 3:32 +10788860,Nuclear disarmament and Mars,,3,2,akshayB,12/24/2015 17:29 +11887899,Possible QT WebKit revival could be great news,,4,2,LordLestat,6/12/2016 13:00 +10964404,Why Are So Many Zappos Employees Leaving?,http://www.theatlantic.com/business/archive/2016/01/zappos-holacracy-hierarchy/424173/?single_page=true,71,77,pmcpinto,1/24/2016 22:44 +12466247,"University of Californias outsourcing is wrong, says U.S. lawmaker",http://www.computerworld.com/article/3118552/it-careers/university-of-california-s-outsourcing-is-wrong-says-u-s-lawmaker.html,9,3,cag_ii,9/9/2016 21:38 +12063850,Ask HN: What is the Unique Selling Point of each programming language?,,7,8,bakery2k,7/9/2016 23:37 +12170645,The Inside Story of 'Pokémon GO's' Evolution,http://www.forbes.com/sites/ryanmac/2016/07/26/monster-game/,2,1,prostoalex,7/27/2016 5:11 +11493296,What Its Like to Wake Up from Autism After Magnetic Stimulation,http://nymag.com/scienceofus/2016/04/what-its-like-to-wake-up-from-autism-after-magnetic-stimulation.html,312,167,nkurz,4/13/2016 23:48 +12411756,I'm feeling lucky,,1,3,mradhip,9/2/2016 8:41 +10877256,Why I Carry a Newton,http://eggfreckles.net/notes/why-newton/,164,139,ingve,1/10/2016 21:19 +10922386,"Musk: Falcon lands on droneship, tips over post landing [video]",https://www.instagram.com/p/BAqirNbwEc0/,30,10,bdon,1/18/2016 3:27 +10307942,"BuiltWith, perhaps one of Australia's most profitable companies, has zero staff",http://www.startupdaily.net/2015/09/builtwith-is-perhaps-one-of-australias-most-profitable-online-companies-and-has-zero-staff/,11,5,tim333,9/30/2015 22:41 +11785944,The Guardian unpublishes 13 stories after investigation into fabrication,http://www.poynter.org/2016/the-guardian-unpublishes-13-stories-after-investigation-into-fabrication/413947/,1,1,MollyR,5/27/2016 13:42 +11918125,"Plume, more WiFi",https://www.plumewifi.com/,7,1,joshcarr,6/16/2016 18:56 +11366144,Show HN: Transparent Onboarding documents for Elixir startups,http://rg.posthaven.com/transparent-onboarding-documents-for-elixir-startups,13,8,zizh,3/26/2016 16:09 +12236681,Dont hold your breath over promising Federal Reserve report,http://nypost.com/2016/08/05/dont-hold-your-breath-over-promising-federal-reserve-report/,2,1,nickysielicki,8/6/2016 1:48 +10565032,Why Hackers Must Eject the SJWs,http://esr.ibiblio.org/?p=6918,26,8,davidgerard,11/14/2015 9:05 +11318092,Arguments Supporting Warrantless Surveillance Wither When Exposed to Sunlight,https://www.eff.org/deeplinks/2016/03/once-again-arguments-supporting-warrantless-surveillance-shrivel-when-exposed,144,23,DiabloD3,3/19/2016 11:19 +11228417,The NSA is trying to create a virtual clone of me,https://eev.ee/blog/2016/03/03/the-nsa-is-trying-to-create-a-virtual-clone-of-me/,9,1,mparramon,3/5/2016 4:24 +12414985,What YouTube Stars Are Going to Do Now That They Cant Swear and Get Paid,http://motherboard.vice.com/read/what-youtube-stars-are-going-to-do-now-that-they-cant-swear-and-get-paid,2,1,walterbell,9/2/2016 18:13 +11619653,Introducing CloudFlare Origin CA,https://blog.cloudflare.com/cloudflare-ca-encryption-origin/,19,1,jgrahamc,5/3/2016 11:41 +11457594,Ask HN: Is this acceptable?,,6,2,annoyeduser,4/8/2016 20:20 +12060835,"A 2011 stackoverflow post on Diablo AI, updated with technological advances",http://stackoverflow.com/questions/6542274/how-to-train-an-artificial-neural-network-to-play-diablo-2-using-visual-input,3,1,Houshalter,7/9/2016 10:08 +11423161,Show HN: JSON to JSDoc Converter,https://eek.ro/json-to-jsdoc/,8,2,Eek,4/4/2016 16:30 +10369862,The Radio Amateur's Handbook (1936) [pdf],http://www.tubebooks.org/Books/arrl_1936.pdf,15,3,jhallenworld,10/11/2015 16:22 +10356972,"Blue skies, frozen water detected on Pluto",Http://phys.org/news/2015-10-blue-sky-red-ice-pluto.html,108,13,Mz,10/8/2015 22:57 +12331776,Ask HN: Is SteemIt a scam?,,2,6,charlesism,8/21/2016 17:30 +11537934,Ask HN: Would you use a git for data?,,14,10,sha1-1b141e,4/20/2016 21:38 +11986977,A Case for the Pyret Programming Language,http://www.pyret.org/pyret-code/,69,37,spdegabrielle,6/27/2016 15:52 +11330299,"Report on Paris Attacks Shows No Encryption Evidence, NY Times Invents Them",https://www.techdirt.com/articles/20160321/00392533965/french-police-report-paris-attacks-shows-no-evidence-encryption-so-ny-times-invents-evidence-itself.shtml,23,3,r3bl,3/21/2016 18:12 +12078476,The Old GitHub Font,https://github.com/rreusser/the-old-github-font,4,2,nathancahill,7/12/2016 12:33 +10292012,"GCHQ's Karma Police: Tracking and Profiling Every Web User, Every Website",https://www.techdirt.com/articles/20150927/02130732376/gchqs-karma-police-tracking-profiling-every-web-user-every-web-site.shtml,2,1,fdik,9/28/2015 18:20 +10181749,Are You in It for the Long Haul?,http://recode.net/2015/07/21/are-you-in-it-for-the-long-haul/,17,1,nathanbarry,9/7/2015 15:26 +11822022,Amazon search was down,http://techcrunch.com/2016/06/02/its-not-just-you-amazon-search-is-down/,153,159,gourou,6/2/2016 12:52 +12468706,Show HN: Build your own language and your own editor,https://github.com/ftomassetti/LangSandbox,8,1,ftomassetti,9/10/2016 11:26 +11232932,Can Starbucks succeed in Italy?,http://www.bbc.co.uk/news/magazine-35728428,3,3,vanilla-almond,3/6/2016 8:18 +12184720,Google tweaks system after Trump left off search results,http://www.theverge.com/2016/7/27/12299532/presidential-candidates-google-results-trump-bias-accusations,2,2,mbgaxyz,7/29/2016 2:33 +11142528,Git the simple guide,http://rogerdudler.github.io/git-guide/,125,8,dhruvbhatia,2/20/2016 23:43 +10609801,Atomic Design using Sketch,https://medium.com/re-write/the-unicorn-workflow-design-to-code-with-atomic-design-principles-and-sketch-8b0fe7d05a37#.dctkvo41e,14,6,stephenitis,11/22/2015 11:38 +11846997,Add a graphic designer to your Facebook Messenger,http://www.designabl.com,2,1,briebls,6/6/2016 14:27 +11533539,WebGL map of global shipping movements,http://www.shipmap.org,99,13,robinhouston,4/20/2016 11:12 +11106254,Scientists want to sequence the genome of all living kakapo parrots,http://sites.duke.edu/dukeresearch/2016/02/15/a-dead-parrot-not-yet-but-it-could-sure-use-your-help/,36,18,HandleTheJandal,2/15/2016 21:43 +12114604,"$7,000-a-Month Shameless China Blogger Loses All with One Post",http://www.bloomberg.com/news/articles/2016-07-17/-7-000-a-month-shameless-china-blogger-loses-all-with-one-post,3,1,wyclif,7/18/2016 12:19 +11784135,NanoServer in Windows Containers on Windows 10,https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10,57,9,benaadams,5/27/2016 5:46 +11384931,New York college moves to strip gender markings from all bathrooms,http://www.theguardian.com/world/2016/mar/29/gender-bathrooms-cooper-union-college-new-york,5,4,paublyrne,3/29/2016 21:13 +11624618,Vegan restaurateurs under fire over revelation they raise animals for slaughter,http://www.theguardian.com/lifeandstyle/2016/may/03/vegan-restaurant-meat-eating-owners-cafe-gratitude-california#comments,8,3,marricks,5/3/2016 22:04 +11428970,Azendoo for Mobile built on Reactnative,https://www.azendoo.com/mobile,10,1,fredcastagnac,4/5/2016 9:10 +10377132,Ask HN: More sites like HN? 1300 days later,,8,6,polym,10/12/2015 21:46 +10400132,Microsoft Azure SQL Database provides unparalleled data security in the cloud,https://azure.microsoft.com/en-us/blog/microsoft-azure-sql-database-provides-unparalleled-data-security-in-the-cloud-with-always-encrypted/,6,1,tmullaney,10/16/2015 15:56 +11363439,How to Use Intel RealSense Emotion Tracking in Unity 5,https://www.youtube.com/watch?v=-A3pe7wgfS4,1,1,doener,3/25/2016 23:11 +12459755,Some bad Git situations and how I got myself out of them,http://ohshitgit.com/,713,335,emilong,9/9/2016 5:10 +10790306,Ask HN: Freelance Web Development,,3,2,poveritysucks,12/25/2015 3:25 +11168227,How to Build Your First App with Angular2 and .NET,https://royaljay.com/development/angular2-tutorial/,7,1,mikelarned,2/24/2016 17:02 +10739494,Show HN: Python Crash Course,,3,1,japhyr,12/15/2015 18:34 +11787769,How to Worry Less About Being a Bad Programmer,https://www.stilldrinking.org/how-to-worry-less-about-being-a-bad-programmer,4,1,synthmeat,5/27/2016 18:07 +11459654,MicroSoft OneDrive free storage limit downgraded from 15GB to 5GB,https://support.office.com/en-us/article/Microsoft-OneDrive-storage-changes-bf91132d-d0cb-4cbb-96ba-86278c5c1c2f?WT.mc_id=PART_OneDrive-Unknown_OneRM_StorageChanges_FAQ&ui=en-US&rs=en-US&ad=US,2,1,bemmu,4/9/2016 2:47 +10569110,When I stopped hearing the voices in my head,http://www.theguardian.com/commentisfree/2015/nov/13/hearing-voices-head-drugs-therapy,73,69,DanBC,11/15/2015 9:51 +11698784,Mistakes to avoid with C++ 11 smart pointers,http://www.acodersjourney.com/2016/05/top-10-dumb-mistakes-avoid-c-11-smart-pointers/,134,90,debh,5/15/2016 0:51 +11475605,Ask HN: How much does company name matter on a resume?,,5,6,sweetsweetpie,4/11/2016 22:16 +12017113,The Bengali Click Farmer,http://thenewinquiry.com/essays/the-bengali-click-farmer/,1,1,kkennis,7/1/2016 15:49 +11356070,American Big Brother: A Century of Political Surveillance and Repression,http://www.cato.org/american-big-brother,133,26,kushti,3/24/2016 20:14 +10528566,MMM Ponzi scam may be main reason behind Bitcoin price fluctuations,http://siliconangle.com/blog/2015/11/06/mmm-ponzi-scheme-may-be-main-reason-behind-bitcoin-price-fluctuations/,5,2,davidgerard,11/8/2015 14:33 +11709302,Does power really corrupt?,https://www.1843magazine.com/features/does-power-really-corrupt,118,112,Turukawa,5/16/2016 20:22 +10589159,ISIS as Revolutionary State,https://www.foreignaffairs.com/articles/middle-east/isis-revolutionary-state,2,1,Misha_B,11/18/2015 17:23 +11428812,Grunt 1.0.0 released,http://gruntjs.com/blog/2016-04-04-grunt-1.0.0-released,128,99,plurby,4/5/2016 8:41 +12485996,Ask HN: Middle way between being the boss and being a slave?,,3,2,cureyourhead,9/13/2016 6:25 +10493012,Review: Asus ZenWatch 2 robust hardware at a bargain price,http://www.networkworld.com/article/3000341/mobile-wireless/review-asus-zenwatch-2-android-wear-smartwatch.html,1,1,stevep2007,11/2/2015 16:56 +12218042,3 Signs IBM Is in Big Trouble--And How the Company Masks It,http://www.forbes.com/sites/tonysagami/2016/07/31/3-signs-ibm-is-in-big-trouble-and-how-the-company-masks-it/#4c2ae455f3ff,2,1,Deinos,8/3/2016 14:17 +10278774,How Chromium Works,https://medium.com/@aboodman/in-march-2011-i-drafted-an-article-explaining-how-the-team-responsible-for-google-chrome-ships-c479ba623a1b,290,71,aboodman,9/25/2015 15:44 +10979944,Working with different filesystems,https://nodejs.org/en/docs/guides/working-with-different-filesystems,3,2,jorangreef,1/27/2016 13:42 +10687787,The Starfighter Low-Level Tech Tree,http://sockpuppet.org/issue-79-file-0xb-foxport-hht-hacking.txt.html,261,102,Cogito,12/7/2015 2:55 +11153403,Pandas on HDFS with Dask Dataframes,http://matthewrocklin.com/blog/work/2016/02/22/dask-distributed-part-2,6,1,quasiben,2/22/2016 19:08 +11874584,People suck at technical interviews (2014),http://seldo.com/weblog/2014/08/26/you_suck_at_technical_interviews,265,302,sgift,6/10/2016 6:12 +12410133,Sony to boost smartphone batteries because people arent replacing phones,https://www.theguardian.com/technology/2016/sep/01/sony-boost-smartphone-batteries-people-are-not-replacing-phones,5,2,annecap,9/2/2016 1:23 +11690213,Ingestible origami robot fishes out swallowed battery from stomach,http://robohub.org/ingestible-origami-robot/,6,1,robofenix,5/13/2016 13:18 +10803988,Anonymous Postings for your neighborhood,https://play.google.com/store/apps/details?id=xdk.intel.ad.circle,1,1,halkoy,12/28/2015 23:05 +10598439,Can Women Build A Better Tinder?,https://medium.com/backchannel/can-women-build-a-better-tinder-f125b5c5250a#.dovpduqyv,39,67,steven,11/19/2015 23:28 +12209889,Show HN: Learn Functional Programming Using Haskell,http://lambdaschool.com/,220,90,xwowsersx,8/2/2016 13:49 +11196942,Machines are making music now. Does this compliment or replace humans?,https://blog.pivotal.io/big-data-pivotal/p-o-v/will-intelligent-machines-replace-or-compliment-human-workers,2,2,sparkystacey,2/29/2016 18:00 +12214470,The real 10 algorithms that dominate our world,https://medium.com/@_marcos_otero/the-real-10-algorithms-that-dominate-our-world-e95fa9f16c04#.67agog79m,19,1,amplifier_khan,8/3/2016 0:16 +12160013,Pooper Your Dog's Poop in Someone Else's Hands,http://pooperapp.com/,2,2,edward,7/25/2016 17:09 +11537616,Why Kotlin is my next programming language,https://medium.com/@octskyward/why-kotlin-is-my-next-programming-language-c25c001e26e3,5,8,jaxondu,4/20/2016 20:46 +11523191,A passenger plane may have collided with a drone for the first time,http://www.theverge.com/2016/4/17/11447746/drone-plane-impact-british-airways-london-heathrow,3,1,wanderer42,4/18/2016 21:10 +11500111,Decoding meteor-m2 weather satellite images with a $15 DTV dongle,http://sdr-radio.livejournal.com/355.html,4,1,demouser7,4/14/2016 20:33 +11407248,Reddit goes open source,http://www.redditblog.com/2008/06/reddit-goes-open-source.html,3,4,kauegimenes,4/1/2016 18:27 +12087443,The fake cures for autism that can prove deadly,https://www.theguardian.com/society/2016/jul/13/fake-cures-autism-prove-deadly,3,1,DanBC,7/13/2016 16:27 +11060692,"Show HN: Testcontainers, Docker support for JUnit integrated tests",http://testcontainers.viewdocs.io/testcontainers-java/,3,1,killing_time,2/8/2016 20:33 +11454796,Broken: What the Hell Happened in East New York?,http://digg.com/2016/broken-what-the-hell-happened-in-east-new-york,84,65,sergeant3,4/8/2016 14:21 +11488851,Amazon Kindle Oasis,http://www.amazon.com/dp/B00REQKWGA?ref_=pe_2522670_189214260_ods_em_eink_wy_ann_ecg,3,1,headmelted,4/13/2016 15:14 +11875124,Visualizing Cyber Threats 3d network graph,http://metastackio.github.io/analytics/app.html,2,1,johncmouser,6/10/2016 8:59 +10635237,"Blockchain technology could reduce role of banks, says BIS",http://in.reuters.com/article/2015/11/23/global-banking-blockchain-idINKBN0TC28720151123,53,46,rakkhi,11/26/2015 23:50 +11222945,400Gbps: Winter of Whopping Weekend DDoS Attacks,https://blog.cloudflare.com/a-winter-of-400gbps-weekend-ddos-attacks/,2,1,jgrahamc,3/4/2016 10:33 +10882878,Where Are Amazon's Data Centers?,http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/?single_page=true,1,1,e15ctr0n,1/11/2016 19:53 +11482417,Apply HN: Codeflow A revolutionary programming platform,,14,10,murukesh_s,4/12/2016 18:51 +11421079,Dearth of Women Scientists? No Just a System That Favours Men,http://www.iafrikan.com/2016/04/04/dearth-of-women-scientists-no-just-a-system-that-favours-men/,1,1,tefo-mohapi,4/4/2016 11:46 +10271715,Cordova Universal Links Plugin,https://github.com/nordnet/cordova-universal-links-plugin,4,1,nikdem,9/24/2015 14:17 +11382259,Canvas: Notes for teams of nerds,https://usecanvas.com,142,81,ryanmickle,3/29/2016 15:40 +11461718,Apply HN: Melt API for Physical Gifting,,6,7,gxespino,4/9/2016 15:41 +12538408,Backup SQLite database with zero downtime when running Ghost in Azure Web Apps,https://tomssl.com/2016/09/12/backup-your-sqlite-database-with-zero-downtime-when-running-ghost-in-azure-web-apps/,2,5,tomchantler,9/20/2016 10:33 +10746496,California DMV: Self-driving cars must have driver behind wheel,http://www.mercurynews.com/business/ci_29262037/california-self-driving-cars-must-have-driver-behind,42,77,not_that_noob,12/16/2015 19:14 +11573222,Facebook Camera App Concept and Prototype Case Study,https://blog.prototypr.io/facebook-camera-2f7e962d6b6b#.2wv0l5cne,12,1,damjanstankovic,4/26/2016 16:26 +10619126,"Ask HN: If Donald Knuth woke up 10,000 years ago, how would he build a computer?",,10,11,backpropagated,11/24/2015 4:26 +12378478,Welcome to 1986: Inside Halt and Catch Fire's High-Tech Time Machine,https://www.fastcompany.com/3063135/most-creative-people/welcome-to-1986-inside-halt-and-catch-fires-high-tech-time-machine,3,3,cyann,8/28/2016 20:54 +10473025,Microsoft fails to fix Surface Book problems and cherry-picks positive reviews,http://betanews.com/2015/10/28/microsoft-fails-to-fix-surface-book-problems-and-cherry-picks-positive-reviews/,5,1,wslh,10/29/2015 18:05 +11416095,hash_salt= : Salts public on Github,https://github.com/search?utf8=%E2%9C%93&q=%22hash_salt%3D%22&type=Repositories&ref=searchresults,4,2,newsignup,4/3/2016 13:53 +10485928,"Admission and Orientation Manual, United States Penitentiary ADX Florence [pdf]",http://www.bop.gov/locations/institutions/flm/FLM_aohandbook.pdf,2,1,atdt,11/1/2015 9:36 +10999521,$5.5 Trillion in Government Bonds Now Have Negative Yields,http://www.ft.com/fastft/2016/01/29/record-5-5tn-in-govt-bonds-trade-at-negative-yields/,16,9,randomname2,1/29/2016 23:53 +11285154,Show HN: Asset Library / Style Guide Template for Your Next Projects,https://github.com/ohsik/asset-library-template,2,2,ohsik,3/14/2016 20:02 +10431749,Retrospection and Full PCAP Reveal Instances of XcodeGhost Dating Back to April,https://www.protectwise.com/blog/retrospection-and-full-pcap-reveal-instances-of-xcodeghost-dating-back-to-april-2015/,30,6,wslh,10/22/2015 12:19 +12426835,"Twitter blocks, why no last message?",,1,1,haaen,9/4/2016 21:34 +11842084,Judge sends two to prison for 7 years for H-1B fraud,http://www.computerworld.com/article/3079224/it-careers/judge-sends-two-to-prison-for-7-years-for-h-1b-fraud.html,222,191,us0r,6/5/2016 17:41 +12102925,Rktnetes brings rkt container engine to Kubernetes,http://blog.kubernetes.io/2016/07/rktnetes-brings-rkt-container-engine-to-Kubernetes.html,113,35,philips,7/15/2016 18:34 +11668912,Reflections: The ecosystem is moving,https://whispersystems.org/blog/the-ecosystem-is-moving/,226,98,tprynn,5/10/2016 17:27 +10435587,"Hiker finds 1,200-year-old Viking sword under rocks",http://www.cnn.com/2015/10/22/europe/viking-sword-norway/index.html,14,2,curtis,10/22/2015 22:33 +12257503,"Introducing FBlock, AdBlocking for the New Facebook",https://medium.com/@mohamedmansour/introducing-fblock-adblocker-for-the-new-facebook-be7a2aac53e4#.y2t11msal,18,3,mohamedmansour,8/9/2016 20:32 +11917390,Sexual Politics: What Most Women Are Doing Wrong,http://micheleincalifornia.blogspot.com/2016/06/sexual-politics-what-most-women-are.html,34,1,Mz,6/16/2016 17:05 +10202907,"Lets Build a Simple Interpreter, Part 4",http://ruslanspivak.com/lsbasi-part4/,39,3,ingve,9/11/2015 10:19 +12267030,The Elements of Value,https://hbr.org/2016/09/the-elements-of-value,4,1,merkleme,8/11/2016 9:40 +10688619,Sleeping Beauty Keep track of whats where crowdfunding today,http://sleeping.watch,1,1,SleepingBeauty,12/7/2015 10:16 +10282941,What is a quick way to get feedback on ideas?,,1,2,pa12,9/26/2015 12:39 +10411160,Tmux 2.1 has been released,https://github.com/tmux/tmux/releases/tag/2.1,4,1,byaruhaf,10/19/2015 4:41 +12301474,Alternative Rust Compiler,https://github.com/thepowersgang/mrustc,4,2,miqkt,8/16/2016 23:40 +12157797,What nobody will tell you about JSON,http://elitalon.com/2016/07/25/what-nobody-will-tell-you-about-json/,2,2,mweibel,7/25/2016 11:02 +10397740,Virtue Signalling: Saying things violently on Twitter is easier than kindness,http://new.spectator.co.uk/2015/04/hating-the-daily-mail-is-a-substitute-for-doing-good/,9,2,epaga,10/16/2015 6:18 +10601831,Fail at Scale and Controlling Queue Delay,http://blog.acolyer.org/2015/11/19/fail-at-scale-controlling-queue-delay/,22,1,Hansi,11/20/2015 15:59 +10816651,Life: Each Month Is a Box,http://i.imgur.com/39U4k.png,3,3,vinchuco,12/31/2015 7:21 +11814380,Your PC turns into a music-making machine in just a second,http://defonic.ovh/?maker,1,1,ivanco,6/1/2016 14:01 +10182113,Researcher discloses zero-day vulnerability in FireEye,http://www.csoonline.com/article/2980937/vulnerabilities/researcher-discloses-zero-day-vulnerability-in-fireeye.html,29,5,wglb,9/7/2015 16:54 +10582189,Melisma Stochastic Melody Generator,http://www.link.cs.cmu.edu/melody-generator/,13,1,colund,11/17/2015 16:38 +10452751,"LinkedIn open-sources PalDB, a key-value store for handling side data",http://venturebeat.com/2015/10/26/linkedin-open-sources-paldb-a-key-value-store-for-handling-side-data/,4,1,mbastian,10/26/2015 17:10 +10516760,Zerocoin startup revives the dream of truly anonymous money,http://www.wired.com/2015/11/zerocoin-startup-revives-the-dream-of-truly-anonymous-money/,50,54,rdl,11/5/2015 23:03 +10631306,Namecheap changed their UI and ignoring users,https://community.namecheap.com/forums/viewtopic.php?f=10&t=66572,8,9,gesman,11/26/2015 4:42 +12302085,Shadow Brokers Leak Raises Question of whether the N.S.A. was Hacked,http://www.nytimes.com/2016/08/17/us/shadow-brokers-leak-raises-alarming-question-was-the-nsa-hacked.html,157,87,carbocation,8/17/2016 2:21 +11906844,Machine Learning 101: What Is Regularization?,http://datanice.github.io/machine-learning-101-what-is-regularization-interactive.html,201,51,hassenc,6/15/2016 2:28 +11190093,Pentium? Core i5? Core i7? Making sense of Intels convoluted CPU lineup,http://arstechnica.com/gadgets/2016/02/pentium-core-i5-core-i7-making-sense-of-intels-convoluted-cpu-lineup/,41,11,nkurz,2/28/2016 6:28 +10721757,What Microsoft Can Do to Make Me Hate Windows a Little Less,http://garrett.damore.org/2015/12/what-microsoft-can-do-to-make-me-hate.html,2,1,zdw,12/12/2015 4:07 +10609165,Fallout 4 Service Discovery and Relay,https://getcarina.com/blog/fallout-4-service-discovery-and-relay/,322,54,jnoller,11/22/2015 5:16 +12173450,Cruising for a Purpose: Have Fun and Do Good Through Impact Travel,http://www.marketplace.org/2016/07/26/world/cruising-purpose-have-fun-and-do-good,1,1,dpflan,7/27/2016 15:12 +11981756,When Machines Will Need Morals,http://www.nytimes.com/2016/06/25/technology/when-machines-will-need-morals.html,2,1,tucif,6/26/2016 17:48 +10710381,Ubuntu 16.04 Online searches in the dash to be off by default,http://www.whizzy.org/2015/12/online-searches-in-the-dash-to-be-off-by-default/,114,47,reddotX,12/10/2015 12:58 +10381464,"For First time, MIT's free online classes can lead to degree",http://www.sfgate.com/business/technology/article/For-1st-time-MIT-s-free-online-classes-can-carry-6556128.php,4,3,SimplyUseless,10/13/2015 16:19 +11008202,"BlitzMax, Cross-Platform OO BASIC, Is Free and Open Source",http://www.blitzbasic.com/Products/_index_.php,82,37,dragonbonheur,1/31/2016 21:37 +10848245,"Making a Murderer Left Out Crucial Facts, Prosecutor Says",http://www.nytimes.com/2016/01/05/arts/television/ken-kratz-making-a-murderer.html?module=WatchingPortal®ion=c-column-middle-span-region&pgType=Homepage&action=click&mediaId=wide&state=standard&contentPlacement=1&version=internal&contentCollection=www.nytimes.com&contentId=http%3A%2F%2Fwww.nytimes.com%2F2016%2F01%2F05%2Farts%2Ftelevision%2Fken-kratz-making-a-murderer.html&eventName=Watching-article-click&_r=0,53,70,pavornyoh,1/6/2016 3:22 +11832526,Clinton Pollster: It's 'Likely' Hillary Will Lose to Sanders,http://townhall.com/tipsheet/leahbarkoukis/2016/06/03/former-bill-clinton-pollster-its-increasingly-likely-hillary-will-lose-to-sanders-in-california-n2172333,2,1,puppetmaster3,6/3/2016 19:17 +11891738,Reusable SpaceX rockets gain backing by launch insurers,http://www.seattletimes.com/business/reusable-spacex-rockets-gain-backing-by-launch-insurers/,2,1,jseliger,6/13/2016 4:29 +11012209,The Resolution of the Bitcoin Experiment,https://medium.com/@octskyward/the-resolution-of-the-bitcoin-experiment-dabb30201f7#.ln1jdcflt,1,1,andyjpb,2/1/2016 15:24 +12107939,Why are all programming languages in English?,https://medium.com/@jennymandl/why-are-all-programming-languages-in-english-12b1312bada4#.o3lhofbw3,3,2,rmason,7/16/2016 21:27 +10455179,On-chip zero-index metamaterials,http://www.nature.com/articles/nphoton.2015.198.epdf?shared_access_token=bPVi5L8wdx6ZAEtKKVN23NRgN0jAjWel9jnR3ZoTv0MIrPbAi5thMIrOmcVLfIrYX2vKSgpvYfHkt1fV84Rao_X73gwyzX6BtsjjUEgzAbuaMwuy_7wCHd0anYfEh4VJLjHlfXwUV0F3OScFcOMa97Y7cjjLfm-MTx8Xu3Rjp-zzQWiZnjKLl51gNXufOvI25T9FZ_e8SoKZhLbcLMjCUYoZO0qmRSSDm9vgnhvzIKI%3D,1,1,hownottowrite,10/26/2015 23:18 +11047705,Why the Assholes Are Winning: Money Trumps All,http://onlinelibrary.wiley.com/doi/10.1111/joms.12177/full,193,177,rbanffy,2/6/2016 13:37 +10849527,The 1975 LaGuardia Airport Bombing,http://observer.com/2016/01/why-hasnt-washington-explained-the-1975-laguardia-airport-bombing/,47,21,monort,1/6/2016 9:40 +11533819,NSFW Content Recognition,https://developer.clarifai.com/guide/tag#nsfw,2,1,charlieirish,4/20/2016 12:23 +11881429,Imagination Solution to FCC Rules: Run OpenWrt and WiFi Driver in Separate VM's,http://www.cnx-software.com/2016/06/10/imagination-solution-to-fcc-rules-for-wifi-routers-run-openwrt-dd-wrt-and-the-wifi-driver-in-separate-virtual-machines/,50,25,zdw,6/11/2016 1:10 +10945461,R.I.P. Bitcoin. Its time to move on,http://wadhwa.com/2016/01/19/r-i-p-bitcoin-its-time-to-move-on/,4,1,adamqureshi,1/21/2016 14:43 +11087252,Why Havent We Automated Our Meetings Yet?,http://getsolid.io/blog/meeting-automation/,3,1,thibautdavoult,2/12/2016 14:15 +12303075,It's The Future,https://circleci.com/blog/its-the-future,1323,521,knowbody,8/17/2016 7:53 +10929935,Serving 6.8M requests per second at 9 Gbps from a single Azure VM,http://www.ageofascent.com/azure-cloud-high-speed-networking/,127,55,profquail,1/19/2016 11:07 +11871803,The Chrome extension that hides your screen in plain sight,https://nakedsecurity.sophos.com/2016/06/08/the-chrome-extension-that-hides-your-screen-in-plain-sight/,2,2,secfirstmd,6/9/2016 19:45 +10190685,Why you should learn to cherish the answer it depends,http://sensinum.com/blog-post/why-you-should-learn-to-cherish-the-answer-it-depends/,2,1,misiekfraczek,9/9/2015 10:47 +11515433,Recruiting and Retaining Giants [pdf],http://www.alexstjohn.com/WP/download/Recruiting%20Giants.pdf,19,16,bphogan,4/17/2016 17:46 +12106533,Ask HN: Any devs interested in messaging app?,,1,2,warewolf,7/16/2016 15:01 +10441538,HP Winds Down Cloud Computing Project,http://www.wsj.com/articles/h-p-winds-down-cloud-computing-project-1445624977?alg=y,41,43,jaymoorthi,10/23/2015 22:14 +10988716,Show HN: Maslow Social opinions platform,https://www.producthunt.com/tech/maslow,1,1,joslin01,1/28/2016 15:31 +11428186,Determining Gender of a Name with 80% Accuracy Using Only Three Features,http://blog.ayoungprogrammer.com/2016/04/determining-gender-of-name-with-80.html,36,58,max_,4/5/2016 6:03 +11257690,Will there ever be a Robot / AI Apocalypse?,,1,1,tefo-mohapi,3/10/2016 6:49 +11876327,"Period. Full Stop. Point. Whatever Its Called, Its Going Out of Style",http://www.nytimes.com/2016/06/10/world/europe/period-full-stop-point-whatever-its-called-millennials-arent-using-it.html?_r=0,1,2,terryauerbach,6/10/2016 13:55 +11155026,SFMTA owe you a refund? Search here,http://www.sfmtarefund.com,14,1,heezo,2/22/2016 22:54 +10599918,Rise of the Pre-Accelerator Program,http://davidcummings.org/2015/11/19/rise-of-the-pre-accelerator-program/,2,1,frankacter,11/20/2015 6:22 +12109889,The hedgehog and the fox,http://ben-evans.com/benedictevans/2016/7/12/the-hedgehog-and-the-fox,2,1,yarapavan,7/17/2016 12:00 +12113652,Show HN: Social media bot automating posts by Groovy and TensorFlow,https://github.com/getintouchapp/socialmediabot,4,2,ganeshkrishnan,7/18/2016 7:31 +12549458,The Woman Who Is Preserving the Smell of History,http://www.atlasobscura.com/articles/meet-the-woman-who-is-preserving-the-smell-of-history,50,1,diodorus,9/21/2016 16:05 +12483911,Slacks director of engineering doesnt believe in diversity quotas,https://techcrunch.com/2016/09/12/slacks-director-of-engineering-leslie-miley-doesnt-believe-in-diversity-quotas/,5,4,confiscate,9/12/2016 21:37 +10185599,WhatsApp Security Vulnerability,http://www.telegraph.co.uk/technology/internet-security/11850817/WhatsApp-security-breach-lets-hackers-target-web-app-users.html,34,5,rsobers,9/8/2015 13:44 +11341174,Ask HN: What makes a Senior Dev,,42,29,probinso,3/23/2016 0:38 +10320888,German developer prohibit the use of his program in nations welcoming refugees,http://www.treefinder.de/,34,27,walkingolof,10/2/2015 19:54 +11830350,The Google Chrome Extension White Supremacists Use to Track Jews,https://mic.com/articles/145105/coincidence-detector-the-google-extension-white-supremacists-use-to-track-jews#.oL6owgbNV,15,8,angry-hacker,6/3/2016 14:05 +11140033,'Five-dimensional' glass discs could store data for billions of years,http://www.independent.co.uk/life-style/gadgets-and-tech/news/five-dimensional-5d-glass-discs-data-storage-southampton-a6879176.html,40,34,aethertap,2/20/2016 13:56 +10773986,The Forbes 50 Hottest Startups of 2015 Ranked by Growth Score,http://mattermark.com/the-forbes-hottest-startups-of-2015-ranked-by-growth-score/,1,1,nickfrost,12/21/2015 22:23 +10366293,Python wats,https://github.com/cosmologicon/pywat,123,122,luu,10/10/2015 17:58 +10237742,Painless Subtitle downloader,https://github.com/beatfreaker/subdownloader,1,1,chintanradia,9/18/2015 6:20 +10703171,Parliament now has to consider debate to Block Donald Trump from UK entry,https://petition.parliament.uk/petitions/114003,12,3,joosters,12/9/2015 12:10 +11561641,The Genuine (JavaScript) Sieve of Eratosthenes,http://raganwald.com/2016/04/22/genuine-javascript-sieve-of-eratosthenes.html,2,1,braythwayt,4/24/2016 22:22 +10641523,El Capitan System Integrity Protection and Dlopen,https://langui.sh/2015/11/27/sip-and-dlopen/,3,1,reaperhulk,11/28/2015 16:46 +11690681,Ask HN: Whether to change the name of startup?,,2,7,svirelka,5/13/2016 14:45 +10252714,Ask HN: What are you working on this week?,,10,12,chilicuil,9/21/2015 14:57 +12267105,"Lead, Follow or Get the Fuck Out of the Way",https://bothsidesofthetable.com/lead-follow-or-get-the-fuck-out-of-the-way-668000be6e47#.2ptg0dnh3,2,1,greenspot,8/11/2016 10:09 +12106275,How to build a simple project fastly,http://tboox.org/2016/07/16/how-to-build-a-simple-project/,2,2,waruqi,7/16/2016 13:31 +11554099,Replace master and slave terms in Redis,https://github.com/antirez/redis/issues/3185,2,1,lladnar,4/23/2016 3:59 +10413046,Apple's Aggressive Recruiting Destroys Motorcyle Startup,http://www.reuters.com/article/2015/10/19/apple-motorcycle-idUSL1N12F2JZ20151019,4,1,SQL2219,10/19/2015 14:22 +12495687,Inside Ubers New Self-Driving Cars in Pittsburgh,http://www.wsj.com/articles/inside-ubers-new-self-driving-cars-in-pittsburgh-1473847202,3,1,areski,9/14/2016 11:09 +10407951,VW,http://blog.cleancoder.com/uncle-bob/2015/10/14/VW.html,120,44,boriselec,10/18/2015 11:41 +12472658,Scaling Synchronization in Multicore Programs,http://queue.acm.org/detail.cfm?id=2991130,67,4,xwvvvvwx,9/11/2016 9:44 +12441466,Can we build a Starship with our current technology in the next 10 years?,https://www.quora.com/Can-we-build-a-Starship-Enterprise-with-our-current-technology-in-the-next-10-years?share=1,2,4,galazzah,9/7/2016 7:32 +11842386,A two-neuron system for adaptive goal-directed decision-making in Lymnaea Snails [pdf],http://www.nature.com/ncomms/2016/160603/ncomms11793/pdf/ncomms11793.pdf,45,4,wallflower,6/5/2016 18:40 +11213406,Aurelia Early March 2016 Update,http://blog.durandal.io/2016/03/01/aurelia-early-march-2016-update,1,1,alexkavon,3/2/2016 22:04 +10994440,Free 2 Player Game [Python][Angular],https://freemind.today/en/,1,1,potar,1/29/2016 10:13 +10816322,Incorporating and accessing binary data into a C program,http://smackerelofopinion.blogspot.com/2015/12/incorporating-and-accesses-binary-data.html,110,34,signa11,12/31/2015 5:21 +10941530,Google proposes its Dataflow batch/stream tech to the Apache Incubator,https://wiki.apache.org/incubator/DataflowProposal,191,33,crb,1/20/2016 21:32 +11769897,Ask HN: What's your technique to damage-control interruptions to flow?,,2,2,djanowski,5/25/2016 14:16 +12171817,What to write (2009),https://jacobian.org/writing/what-to-write/,2,2,thomasfoster96,7/27/2016 10:52 +10507160,"Chemsex': Doctors about days-long, drug-fueled orgies with ca. 5 partners",https://www.washingtonpost.com/news/morning-mix/wp/2015/11/04/chemsex-the-days-long-drug-fueled-orgies-with-an-average-of-five-partners-doctors-are-worried-about/?hpid=hp_no-name_morning-mix-story-x%3Ahomepage%2Fstory,2,1,panagios,11/4/2015 15:22 +12142883,Ask HN: Pricing for tailored solutions,,2,2,selmat,7/22/2016 11:16 +12536446,A Theory of Creepiness,https://aeon.co/essays/what-makes-clowns-vampires-and-severed-hands-creepy,59,68,pepys,9/20/2016 1:58 +10457043,Health hackers: Patients taking medical innovation into their own hands,http://www.theguardian.com/lifeandstyle/2015/oct/26/health-hackers-patients-taking-medical-innovation-into-own-hands,22,5,TuxMulder,10/27/2015 9:50 +10284334,Ask HN: What's the most interesting thing in technology in 2015?,,5,6,aa10ll,9/26/2015 20:33 +12150219,Best 15 inch Linux Laptop?,,16,8,conqrr,7/23/2016 17:33 +10897119,Rock Rings Reveal New Insights About North America's Climate Past,http://gizmodo.com/rock-rings-reveal-surprising-new-insights-about-north-a-1752556296,16,1,curtis,1/13/2016 20:13 +11277979,CS143: Compilers (2011),http://www.keithschwarz.com/cs143/WWW/sum2011/,139,62,rspivak,3/13/2016 15:24 +12115921,Code Like a Girl: Harassment of Our Authors Is Not OK,https://medium.com/code-like-a-girl/harassment-of-our-authors-is-not-ok-f0266d21f460#.sw8x46v1e,38,21,DinahDavis,7/18/2016 16:08 +11862593,Why You Dont Need a Specification Document Before Talking to a Dev Team,https://stanfy.com/blog/why-you-dont-need-a-specification-document-before-talking-to-a-dev-team/,3,2,ianatiev,6/8/2016 14:48 +10225942,Allocation rate impact for garbage collected languages,https://plumbr.eu/blog/garbage-collection/what-is-allocation-rate,2,4,ivom2gi,9/16/2015 12:02 +10981164,The biggest secret to designing ultra-low-power systems?,https://eengenious.com/how-low-can-you-go-the-secret-to-ultra-low-power-design/,3,3,girishmhatre500,1/27/2016 17:00 +10594875,Microsoft Working on Swift Compiler for Windows 10,http://www.windowscentral.com/microsoft-also-working-towards-swift-compiler-ios-developers-come-windows-10,12,2,11thEarlOfMar,11/19/2015 14:21 +11053640,Show HN: Parametric Activation Pools greatly increase performance in ConvNets,http://blog.claymcleod.io/2016/02/06/Parametric-Activation-Pools-greatly-increase-performance-and-consistency-in-ConvNets/,6,1,clmcleod,2/7/2016 17:15 +11296162,How your data is collected and commoditised via free online services,http://www.troyhunt.com/2016/03/how-your-data-is-collected-and.html,217,68,matthewwarren,3/16/2016 10:13 +10462339,Pivotal Greenplum Database has been open sourced,https://github.com/greenplum-db/gpdb,195,51,snaga,10/28/2015 1:20 +10902286,Visualizing Docker Compose with Clojure,https://ardoq.com/visualizing-docker-compose/,11,1,ebaxt,1/14/2016 16:21 +11625438,Perl -p -i -e .com,http://perlpie.com,1,1,shaunpud,5/4/2016 0:57 +11226993,"Longest Lasting Cars That Make It Over 200,000 Miles",http://www.popularmechanics.com/cars/a19560/top-cars-to-make-it-over-200000-miles/,2,1,jmtlee,3/4/2016 21:29 +12341229,North Korea 'Netflix' device unveiled,http://www.bbc.com/news/technology-37154456,42,23,tonteldoos,8/23/2016 3:40 +11129443,"Lamprey, a new parasitic language to write Elixir in Erlang",https://github.com/gar1t/lamprey,4,2,rlander,2/18/2016 21:25 +11965042,"Buybacks by Companies Like Apple May Signal Danger, Not Growth",http://www.nytimes.com/2016/06/26/your-money/buybacks-by-companies-like-apple-may-signal-danger-not-growth.html?ref=technology&_r=0,5,4,pavornyoh,6/23/2016 23:22 +12509019,Marijuana Makes for Slackers? Now Theres Evidence,http://www.wsj.com/articles/marijuana-makes-for-slackers-now-theres-evidence-1473953464,1,1,dcgudeman,9/15/2016 19:22 +11193130,What Its Really Like to Risk It All in Silicon Valley,http://www.nytimes.com/2016/02/28/upshot/what-its-really-like-to-risk-it-all-in-silicon-valley.html?_r=0,6,1,siavosh,2/29/2016 0:49 +10513237,Let Twitter Be Twitter,http://around.com/let-twitter-be-twitter/,119,98,hangars,11/5/2015 13:48 +10651465,"'Use More Expressive Words' Teachers Bark, Beseech, Implore",http://www.wsj.com/articles/use-more-expressive-words-teachers-bark-beseech-implore-1448835350,2,1,grellas,11/30/2015 20:17 +12555752,Golang Package: plugin,https://tip.golang.org/pkg/plugin/,107,30,pythonist,9/22/2016 10:10 +12271518,Jumpers (2003),http://www.newyorker.com/magazine/2003/10/13/jumpers,9,5,Enthouan,8/11/2016 21:03 +10317161,Do we need specialized design for Flash storage?,http://juku.it/en/do-we-need-specialized-design-for-flash-storage/,9,1,ingve,10/2/2015 7:25 +10943980,The Digital Materiality of GIFs,http://digitalmateriality.com/,98,25,shashashasha,1/21/2016 8:00 +11794698,Scientists say they have created a new platform for antibiotic discovery,http://www.genengnews.com/gen-news-highlights/harvard-team-takes-major-step-toward-overcoming-antibiotic-resistance/81252750/,63,18,jseliger,5/29/2016 4:02 +12175861,The Typography of Stranger Things,https://blog.nelsoncash.com/the-typography-of-stranger-things-e35771f40d31#.37yms804p,216,67,thoughtpalette,7/27/2016 19:35 +10214769,There Is No Theory of Everything,http://opinionator.blogs.nytimes.com/2015/09/12/there-is-no-theory-of-everything/,8,10,cpete,9/14/2015 12:41 +10749643,Xi Jinping Calls for 'Cyber Sovereignty',http://www.bbc.com/news/world-asia-china-35109453,2,1,mangeletti,12/17/2015 4:59 +12539173,What Every Software Developer Must Know About Unicode and Character Sets,http://joelonsoftware.com/articles/Unicode.html,3,1,tmlee,9/20/2016 13:04 +12097989,Why We Should Let the Pantheon Crack,http://nautil.us/issue/24/error/why-we-should-let-the-pantheon-crack,13,4,gbaygon,7/14/2016 23:33 +11878785,Salary Negotiation how not to set a bunch of money on fire,https://medium.freecodecamp.com/salary-negotiation-how-not-to-set-a-bunch-of-money-on-fire-605aabbaf84b#.o8itco9kz,3,1,quincyla,6/10/2016 18:37 +11604736,How do you make money online? Why is it so hard?,,5,5,zippy786,5/1/2016 3:30 +10806461,"Why some people get what they want, and others dont",http://www.wisdomination.com/why-some-people-get-what-they-want-and-others-dont/,7,1,charlieirish,12/29/2015 12:59 +11515243,Caroline Lucretia Herschel Comet Huntress (1999) [pdf],http://cdsads.u-strasbg.fr/cgi-bin/nph-iarticle_query?1999JBAA..109...78H&data_type=PDF_HIGH,14,1,Hooke,4/17/2016 17:03 +11125050,Why Our Intuition About Sea-Level Rise Is Wrong,http://nautil.us/issue/33/attraction/why-our-intuition-about-sea_level-rise-is-wrong,4,1,elorant,2/18/2016 11:26 +11640724,Boulder Will Host the First National 'YIMBY' Conference,http://www.citylab.com/housing/2016/05/boulder-will-host-the-first-national-yimby-conference/481548/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheAtlanticCities+%28CityLab%29,2,1,jseliger,5/6/2016 0:12 +10938634,The First App to See You Friends More Without the Creep Factor of Stalking,https://medium.com/@supmenow/the-first-app-to-see-you-friends-more-without-the-creep-factor-of-stalking-f4120545ccae#.eftbnoszj,11,2,TheAppGuy,1/20/2016 15:23 +10414793,Podcast: Is Dubai the Next Silicon Valley of the Middle East?,http://kerningcultures.com/episodes/uae-startup-scene,2,1,kerningcultures,10/19/2015 18:50 +12507996,Hunting for Vulnerabilities in Signal Part 1,https://pwnaccelerator.github.io/2016/signal-part1.html,4,1,hannob,9/15/2016 17:22 +11212441,On Ad Blocking,http://www.brucelawson.co.uk/2016/on-ad-blocking/,1,1,twapi,3/2/2016 19:46 +12347510,Linode-hosted DNS zones were down,https://status.linode.com/incidents/ly9hx0plrzxn,43,43,mwpmaybe,8/23/2016 20:51 +10749855,The End of Internet Advertising as Weve Known It,http://www.technologyreview.com/review/544371/the-end-of-internet-advertising-as-weve-known-it/,3,1,qnnlu,12/17/2015 5:58 +11863217,ZeroNet Decentralized websites using Bitcoin crypto and BitTorrent network,https://github.com/HelloZeroNet/ZeroNet,8,1,edward,6/8/2016 16:08 +10342853,The Simple Truth About Gun Control,http://www.newyorker.com/news/daily-comment/the-simple-truth-about-gun-control,4,5,kareemm,10/6/2015 22:24 +11893810,Show HN: My Virtual Reality Room-Scale RPG,https://partner.steamgames.com/apps/landing/488760,2,2,thenomad,6/13/2016 13:48 +10974065,"Ask HN: Has anybody built Tinder/Imgur style mailboxes, GTD, email?",,1,1,visakanv,1/26/2016 16:04 +10322942,Show HN: Linguaquote Professional Translation Management,https://www.linguaquote.com,6,2,luxpir,10/3/2015 7:12 +11366529,Ralph Nader: Why Bernie Sanders Was Right to Run as a Democrat,https://www.washingtonpost.com/posteverything/wp/2016/03/25/ralph-nader-why-bernie-sanders-was-right-to-run-as-a-democrat/,31,11,acbilimoria,3/26/2016 17:31 +10941775,The 2015 global avg temp was the hottest on record NASA/NOAA [video/animation],https://twitter.com/rtenews/status/689885606990581760,3,1,danielhunt,1/20/2016 22:12 +10838166,Should scientific papers be anonymous?,http://www.statnews.com/2015/12/30/should-scientific-papers-be-anonymous/,70,46,tokenadult,1/4/2016 20:10 +10961722,Need advice on cover letter as an independent contractor,,3,4,tagfolder,1/24/2016 6:31 +11272760,Show HN: NeedProgrammer The internet's simplest software job board,https://needprogrammer.com,1,2,muxlab,3/12/2016 13:28 +10304562,The Wild Architecture of Soviet-Era Bus Stops,http://www.wired.com/2015/09/wild-architecture-soviet-era-bus-stops/,2,1,jeo1234,9/30/2015 15:15 +10428419,"Guys, Here's What It's Actually Like to Be a Woman",http://observer.com/2015/10/guys-heres-what-its-actually-like-to-be-a-woman/,6,6,kafkaesq,10/21/2015 20:25 +11313205,OpenGrid Chicago Releases User-Friendly Open Data Tool,http://opengrid.io/,15,4,ChrisBland,3/18/2016 17:10 +11128278,Show HN: Loot Market a marketplace for buying/selling DOTA 2 items,https://lootmarket.com/?ref=hackernews,12,1,iamunr,2/18/2016 18:58 +11520736,Deepjazz: AI-generated 'jazz',https://github.com/jisungk/deepjazz,189,90,mattdennewitz,4/18/2016 15:36 +12251958,How to Have Healthy Relationships as a Developer,http://smo.nu/how-to-have-healthy-relationships-as-a-developer/,226,140,karlmcguire,8/9/2016 1:28 +12231518,Test flight held for small jet modeled after Miyazaki anime,http://mainichi.jp/english/articles/20160805/p2a/00m/0na/013000c,242,69,sjreese,8/5/2016 11:53 +11454827,The Fourth Facebook Goldrush Just Started,https://medium.com/@jeremyliew/on-your-marks-get-set-go-the-fourth-facebook-goldrush-just-started-100093c16ec8#.g8v1ktkq6,58,46,jeremyliew,4/8/2016 14:26 +12092022,Ask HN: Developer Friendly Laptops?,,4,2,conqrr,7/14/2016 6:31 +12346789,World Wide Web (1991),http://info.cern.ch/hypertext/WWW/TheProject.html,34,13,jhirshon,8/23/2016 19:34 +11744584,Startups Once Showered with Cash Now Have to Work for It,http://www.nytimes.com/2016/05/21/technology/start-ups-once-showered-with-cash-now-have-to-work-for-it.html,132,49,marban,5/21/2016 13:21 +10831749,Ask HN: Things to do in San Francisco?,,8,7,olalonde,1/3/2016 18:57 +11056414,How Julian Assange Is Destroying WikiLeaks,http://www.nytimes.com/2016/02/08/opinion/how-julian-assange-is-destroying-wikileaks.html?_r=0,33,58,bennettfeely,2/8/2016 4:57 +11604060,Commanding a Tesla Model S with the Amazon Echo,https://medium.com/@jsgoecke/commanding-a-tesla-model-s-with-the-amazon-echo-a06f975364b8#.ha3vdpzaw,26,3,ot,4/30/2016 23:07 +10717633,Alibaba Buys South China Morning Post,https://www.techinasia.com/alibaba-acquires-south-china-morning-post/,53,18,williswee,12/11/2015 15:33 +10450142,Morocco poised to become a solar superpower with launch of desert mega-project,http://www.theguardian.com/environment/2015/oct/26/morocco-poised-to-become-a-solar-superpower-with-launch-of-desert-mega-project,297,171,Turukawa,10/26/2015 8:43 +10359197,Estonia wants to collect the DNA of all its citizens,http://www.theatlantic.com/health/archive/2015/10/is-a-biobank-system-the-future-of-personalized-medicine/409558/?single_page=true,5,4,jcrei,10/9/2015 10:43 +11410781,"Cello automates design of DNA-based logic circuits, to program living cells",http://www.nature.com/news/biology-software-promises-easier-way-to-program-living-cells-1.19671?WT.mc_id=HN,4,1,homarp,4/2/2016 8:44 +10869688,How the Net Was Won,http://dme.engin.umich.edu/internet/,24,1,bootload,1/9/2016 1:57 +12196862,Massive Sulcata tortoises have become a popular American family pet,https://www.buzzfeed.com/catferguson/a-reptile-dysfunction,12,1,benbreen,7/31/2016 13:23 +11726915,Dont let where you work define you,https://nsainsbury.svbtle.com/dont-let-bigco-define-you,4,1,nsainsbury,5/18/2016 23:39 +10258609,Imgur is being used to create a botnet and DDOS 8Chan,https://np.reddit.com/r/technology/comments/3lw2g6/imgur_is_being_used_to_create_a_botnet_and_ddos/,5,1,MLR,9/22/2015 14:04 +12362663,Grabr Raises $3.5M to Help Travelers Monetize Unusued Checked Luggage Allowance,http://www.forbes.com/sites/grantmartin/2016/08/25/grabr-raises-3-5-million-in-funding-to-help-travelers-monetize-unusued-checked-luggage-allowance/#1f4a47a16f68,1,1,viramontana,8/25/2016 21:29 +12527667,o-o Browser bookmarking for your terminal,https://github.com/dawsonbotsford/o-o,3,1,dawsonbotsford,9/18/2016 23:09 +10764399,Startup Ideas: The Excel Sheet Heuristic,http://statspotting.com/startup-ideas-the-excel-sheet-heuristic/,1,1,npguy,12/19/2015 18:39 +11426327,Spain's Prime Minister set to drop siesta to shorten working day by two hours,http://www.independent.co.uk/news/world/europe/spains-prime-minister-mariano-rajoy-set-to-drop-siesta-to-shorten-working-day-by-two-hours-a6967101.html,9,3,Jerry2,4/4/2016 22:41 +12205993,How Millennials in the Workplace Are Turning Peer Mentoring on Its Head,http://fortune.com/2016/07/26/reverse-mentoring-target-unitedhealth/,2,1,JSeymourATL,8/1/2016 21:06 +11778428,Boxed.com paying for employee weddings,http://blog.boxed.com/2016/05/25/boxed-pays-weddings/,4,3,pgrote,5/26/2016 15:00 +12003305,72% in U.S. say driving must be preserved,http://www.computerworld.com/article/3089363/car-tech/though-most-back-self-driving-cars-72-in-us-say-driving-must-be-preserved-too.html,2,1,Lucas123,6/29/2016 17:52 +11736794,Ask HN: Are you building something? How long for? How much longer to go?,,1,5,hoodoof,5/20/2016 10:39 +10241431,Fat: The New Health Paradigm [pdf],https://plus.credit-suisse.com/researchplus/ravDocView?docid=4CbnSI,80,22,vanderfluge,9/18/2015 19:13 +11632413,Starting June apps submitted to the App Store must support IPv6-only networking,https://developer.apple.com/news/?id=05042016a,5,1,esad,5/4/2016 22:22 +10460534,"Oracle finally launches Elastic Compute Cloud, 9 years after Amazon debuted EC2",http://venturebeat.com/2015/10/27/oracle-finally-launches-elastic-compute-cloud-9-years-after-amazon-debuted-ec2/,2,1,prateekj,10/27/2015 19:37 +10637433,A company called SkyTran is making maglev passenger cars,http://secondnexus.com/technology-and-innovation/the-future-of-transportation/,33,22,ColinWright,11/27/2015 14:31 +10272154,Google AI beats humans at more classic arcade games than ever before,http://www.techrepublic.com/article/google-ai-beats-humans-at-more-classic-arcade-games-than-ever-before/,1,1,ClintEhrlich,9/24/2015 15:28 +12384077,Should a wildly successful solopreneur start a *real* company?,,1,1,Stratoscope,8/29/2016 18:34 +10850036,"What Could Have Entered the Public Domain on January 1, 2016?",https://web.law.duke.edu/cspd/publicdomainday/2016/pre-1976,231,77,pwg,1/6/2016 12:05 +12121309,Tinkering toward AGI,https://medium.com/@SteveHazel/tinkering-toward-agi-55d9c9813491,3,1,stevehaz,7/19/2016 12:27 +12502989,Who Competes with VMware Now?,http://www.forbes.com/sites/johnwebster/2016/09/08/who-competes-with-vmware-now/?partner=yahootix&yptr=yahoo#c22c9946b81d,3,1,walterbell,9/15/2016 2:52 +11451356,Ask HN: Why is it still not possible to search an S3 bucket?,,4,1,hoodoof,4/7/2016 22:55 +12192554,Chinese satellite to test secure quantum communications,https://www.engadget.com/2016/07/29/chinese-satellite-to-test-secure-quantum-communications/,1,1,jonbaer,7/30/2016 11:37 +11532375,Ask HN: How would Leonardo Da Vinci be using the internet?,,10,6,kfalion,4/20/2016 5:08 +11738655,HTTP status codes. And dogs,https://httpstatusdogs.com/,18,3,HeinZawHtet,5/20/2016 15:35 +10677408,Shellcode detection using CPU emulation and syscall blacklisting,https://rainbow.cs.unipi.gr/projects/seduce,35,7,luu,12/4/2015 16:54 +10531090,Show HN: We are rethinking personal blogging need feedback and tough questions,http://followme.co,8,9,robot,11/9/2015 2:34 +10567054,In a world where all terrorist attacks are not equal,http://stateofmind13.com/2015/11/14/from-beirut-this-is-paris-in-a-world-that-doesnt-care-about-arab-lives/,20,13,yinghang,11/14/2015 20:17 +12047868,Thank you HN Just glad to be here,,4,1,tylerruby,7/7/2016 6:55 +11998065,Foxes Like Beacons Open positioning system/the politics of infrastructures,http://www.creativeapplications.net/arduino-2/foxes-like-beacons-open-positioning-system-and-the-politics-of-infrastructures/,2,1,thecosas,6/28/2016 22:24 +11460367,EPassport Reader Android app,https://github.com/tananaev/passport-reader,3,1,tananaev,4/9/2016 7:31 +11721274,Introducing rich cards,https://webmasters.googleblog.com/2016/05/introducing-rich-cards.html,3,1,ncw96,5/18/2016 12:00 +12020847,A Woman's History of Silicon Valley,https://backchannel.com/a-womens-history-of-silicon-valley-feea9279d88a#.dg3g331rt,5,1,Jenjent,7/2/2016 0:49 +10539803,Adobe Flash Vulnerabilities Make Up 8 of the Top Security Exploits,http://arc.applause.com/2015/11/10/popular-flash-vulnerabilities-in-exploit-kits/,1,1,werencole,11/10/2015 15:20 +11260953,Welcome to CRISPR's Gene-Modified Zoo,http://www.scientificamerican.com/article/welcome-to-crispr-s-gene-modified-zoo/,3,1,jeancasimir,3/10/2016 18:25 +10184201,A History of Modern 64-bit Computing (2007) [pdf],http://courses.cs.washington.edu/courses/csep590/06au/projects/history-64-bit.pdf,29,6,Aloha,9/8/2015 5:09 +10430367,A riddle wrapped in a curve,http://blog.cryptographyengineering.com/2015/10/a-riddle-wrapped-in-curve.html,159,54,wbond,10/22/2015 4:10 +10825988,Who Saved the Most Lives in History,http://www.scienceheroes.com/index.php?option=com_content&view=article&id=258&Itemid=232,3,2,ZeljkoS,1/2/2016 12:28 +10520371,Why I Quit Ordering from Uber-For-Food Startups,http://www.theatlantic.com/technology/archive/2015/11/the-food-delivery-start-up-you-havent-heard-of/414540/?single_page=true,17,3,jessepollak,11/6/2015 16:44 +11714045,IBM scientists achieve storage memory breakthrough,http://phys.org/news/2016-05-ibm-scientists-storage-memory-breakthrough.html,121,28,interconnector,5/17/2016 14:43 +12240523,The Outsider Artist Who Built His Own Private Disneyland,http://hyperallergic.com/311753/the-outsider-artist-who-built-his-own-private-disneyland/,22,6,prismatic,8/7/2016 0:36 +11513697,Apply HN: Get Discovered with IMe,,4,8,Pradeep2195,4/17/2016 6:17 +11922133,Apple iPhones Found to Have Violated Chinese Rivals Patent,http://www.bloomberg.com/news/articles/2016-06-17/apple-s-iphones-found-to-have-violated-chinese-rival-s-patent,133,76,bcg1,6/17/2016 12:11 +11822488,Show HN: An easy to understand FizzBuzz using TensorFlow,https://github.com/AKSHAYUBHAT/TensorFlowFizzBuzz,5,1,aub3bhat,6/2/2016 14:01 +12474032,AWQL.me A web AWQL console to easily run requests on your Adwords accounts,https://www.awql.me,2,1,sunnyreports,9/11/2016 16:12 +11351894,Nantes Métropole completes switch to LibreOffice,https://joinup.ec.europa.eu/node/150244,84,22,buovjaga,3/24/2016 11:10 +11864211,How the Windows Subsystem for Linux Redirects Syscalls,https://blogs.msdn.microsoft.com/wsl/2016/06/08/wsl-system-calls/,359,266,jackhammons,6/8/2016 18:06 +10347696,"Show HN: MelodyScript, a DSL for writing melodies with chords",https://github.com/pdorrell/melody_scripter,12,2,pjdorrell,10/7/2015 17:59 +11138032,'WarGames' and Cybersecurity's Debt to a Hollywood Hack,http://www.nytimes.com/2016/02/21/movies/wargames-and-cybersecuritys-debt-to-a-hollywood-hack.html,107,35,thucydides,2/20/2016 0:57 +12304955,Show HN: Top Publications,https://toppub.xyz/,10,2,iisbum,8/17/2016 14:30 +11227069,"Are you serial, Promise.all?",https://bramanti.me/are-you-serial-promise-all/,1,6,jadengore,3/4/2016 21:43 +11483931,Unnatural Selection: What will it take to save the worlds reefs and forests?,http://www.newyorker.com/magazine/2016/04/18/a-radical-attempt-to-save-the-reefs-and-forests,40,9,sergeant3,4/12/2016 21:57 +11292541,From Web 2.0 to Web 2016: The Need for Public Platforms for Digital Ownership,https://blockai.com/blog/from-web-2.0-to-web-2016/,46,21,williamcotton,3/15/2016 20:03 +12485128,Ask HN: Why doesn't Paul Graham give more public talks?,,1,1,soheil,9/13/2016 1:58 +10310442,Ask HN: feature request - page cache,,1,1,Galanwe,10/1/2015 11:38 +12405092,"Cash Squeeze at Tesla, SolarCity",http://www.wsj.com/articles/elon-musk-faces-cash-squeeze-at-tesla-solarcity-1472687133,121,101,endswapper,9/1/2016 13:34 +11156288,Why Are Ultrasound Machines So Expensive?,http://www.maori.geek.nz/why-are-ultrasound-machines-so-expensive/,195,132,grahar64,2/23/2016 3:29 +10388019,NYPD has secret X-ray vans,http://nypost.com/2015/10/13/nypd-has-secret-x-ray-vans/,11,1,joering2,10/14/2015 17:31 +12497162,"2M fake accounts later, Wells Fargo drops sales quotas for its employees",http://arstechnica.com/business/2016/09/wells-fargo-drops-sales-requirements-for-employees-after-fake-accounts-exposed/,3,1,shawndumas,9/14/2016 14:28 +12430768,Understanding the power of data types (PostgreSQL),http://postgres-data-types.pvh.ca,3,1,insulanian,9/5/2016 15:21 +10359075,"Genetically Engineered Mice, a Journey to Space, and a Decapitation",http://nautil.us/issue/29/scaling/why-the-russians-decapitated-major-tom,14,4,sergeant3,10/9/2015 9:59 +11022816,Fun Sales Fakts The Witness,http://the-witness.net/news/2016/02/fun-sales-fakts/,26,2,cocoflunchy,2/2/2016 21:30 +11027508,Ask HN: How do you feel about the ethics of what you do as a programmer?,,2,2,J-dawg,2/3/2016 16:46 +12106817,A Twitter adaption of Ulysses reveals the secret of Bloomsday,http://www.theatlantic.com/technology/archive/2016/06/everyday-is-bloomsday/487313/?single_page=true,48,10,samclemens,7/16/2016 16:17 +11836159,Why You Cant Get a Ticket to the NBA Finals,https://theringer.com/ticket-industry-problem-solution-e4b3b71fdff6#.z2zzl0jhc,40,43,pappyo,6/4/2016 12:57 +10942558,AttackIQ emerges from stealth mode,https://attackiq.com/attackiq-emerges-from-stealth/,16,1,bifrost,1/21/2016 0:37 +11318316,Motion Design Is the Future of UI,https://blog.prototypr.io/motion-design-is-the-future-of-ui-fc83ce55c02f,117,86,nerdy,3/19/2016 12:53 +11801691,How I built a profitable bootstrapped side project,https://www.getdeckchair.com/blog/how-i-built-a-profitable-bootstrapped-side-project/,134,38,squiggy22,5/30/2016 15:18 +11791832,Ask HN: What do you want to learn in 2016?,,63,125,brown-dragon,5/28/2016 14:53 +12255316,Show HN: Django Secret Key Generator,https://github.com/ariestiyansyah/django-secret-key,5,13,ariestiyansyah,8/9/2016 15:38 +12167209,"New attack that cripples HTTPS crypto works on Macs, Windows, and Linux",http://arstechnica.com/security/2016/07/new-attack-that-cripples-https-crypto-works-on-macs-windows-and-linux/,250,68,kcorbitt,7/26/2016 17:20 +10235623,Integrating KDBus in Android [pdf],https://linuxplumbersconf.org/2015/ocw//system/presentations/3417/original/integrating-kdbus-in-android.pdf,12,1,vezzy-fnord,9/17/2015 19:46 +10525171,Netpbm format,https://en.wikipedia.org/wiki/Netpbm_format,29,23,networked,11/7/2015 16:15 +10751106,A Gas Station Designed by Frank Lloyd Wright,http://www.slate.com/blogs/atlas_obscura/2015/12/15/in_1927_frank_lloyd_wright_designed_a_gas_station_it_was_finally_built_in.html,12,2,dnetesn,12/17/2015 12:40 +11082875,Microsoft Upgrades Windows 10 Powers of Control,http://www.forbes.com/sites/gordonkelly/2016/02/11/microsoft-makes-windows-10-u-turn/,2,1,davidjade,2/11/2016 20:19 +10253220,How we lost revenue by improving our signup process,http://nathanpowell.me/blog/how-we-lost-revenue,13,3,mokkol,9/21/2015 16:13 +10983286,How not to be a better programmer,http://blog.erratasec.com/2016/01/how-not-to-be-better-programmer.html,5,1,utternerd,1/27/2016 20:59 +11563168,Node.js ES2015/ES6 support,http://node.green/,133,94,tilt,4/25/2016 9:07 +12037844,Who pays when startup employees keep their equity?,https://gist.github.com/jdmaturen/5830b83c1425c4767f7e1bd4c9561718,255,237,tanoku,7/5/2016 17:00 +10728773,"Geoffrey Hinton: Introduction to Deep Learning, Deep Belief Nets (2012) [video]",https://www.youtube.com/watch?v=GJdWESd543Y,61,6,mindcrime,12/14/2015 1:03 +10308602,GlaxoSmithKline fined $3B after bribing doctors to increase drug sales (2012),http://www.theguardian.com/business/2012/jul/03/glaxosmithkline-fined-bribing-doctors-pharmaceuticals,79,26,KerryJones,10/1/2015 1:08 +11360582,SHOW HN: Left-Pad could be the next FizzBuzz so we coded it up in 13 Languages,https://www.educative.io/collection/page/10370001/520001/750001,4,1,fahimulhaq,3/25/2016 15:27 +10537688,Ask HN: Suggestions on good resources to get started with 'OM.Next',,1,1,tacticiankerala,11/10/2015 4:52 +10645332,Show HN: Windows 95 in the browser,http://win95.ajf.me/,15,9,TazeTSchnitzel,11/29/2015 17:43 +10821077,RethinkDB Founder Looking for Technical Cofounder (2009),http://www.defmacro.org/ramblings/rethinkdb-tech-founder.html,49,9,trevmckendrick,1/1/2016 4:14 +11598058,Challenges of Deployment to ECS,https://convox.com/blog/ecs-challenges/,80,37,mwarkentin,4/29/2016 19:13 +11078242,Ekanite: Syslog server with built-in search,https://github.com/ekanite/ekanite,26,7,otoolep,2/11/2016 4:29 +12540229,Dear Al-Jazeera: thank you for doing the right thing,https://www.scrollytelling.io/al-jazeera-all-good.html,231,82,signa11,9/20/2016 15:26 +10352795,Digg Dialog,http://digg.com/2015/dialog-launch-blog-post,1,1,impostervt,10/8/2015 14:02 +12040387,Show HN: Choo 5kb framework for creating sturdy front end applications,https://github.com/yoshuawuyts/choo,16,8,yoshuaw,7/6/2016 0:05 +11354803,Canadian Government Earmarks Nearly $1.9B for Culture and the Arts,http://www.billboard.com/biz/articles/7272520/canadian-government-earmarks-nearly-19-billion-for-culture-and-the-arts-in-new,2,1,6stringmerc,3/24/2016 17:46 +12213593,San Francisco Progressives Declare War on Affordable Housing,http://www.bloomberg.com/view/articles/2016-08-02/san-francisco-progressives-declare-war-on-affordable-housing,72,68,joshlittle,8/2/2016 21:33 +10836556,Ideas on monetize site,,2,3,altsyset,1/4/2016 16:42 +11436541,Oak Ridge N.L. surges forward with 20-kilowatt wireless charging for vehicles,https://www.ornl.gov/news/ornl-surges-forward-20-kilowatt-wireless-charging-vehicles,14,8,iam-TJ,4/6/2016 4:09 +10230474,Dave Winer: A tech conference where everyone on stage is over 50,http://scripting.com/2015/09/16/aTechConferenceWithPerpsective.html,12,1,rmason,9/16/2015 22:40 +10750395,Jaco Creating a tool that records user interactions,http://blog.invisionapp.com/user-interactions-tool/,31,2,itayadler,12/17/2015 9:25 +10566312,Xv6,https://en.wikipedia.org/wiki/Xv6,350,47,jdmoreira,11/14/2015 17:02 +11841563,Reddit quietly updates 16 day old post: you are now tracked even if logged out,https://voat.co/v/MeanwhileOnReddit/comments/1083516,92,37,temp,6/5/2016 15:58 +11144576,Origins of cloud computing,http://oncloudblog.com/origin-of-cloud-computing/,2,1,aril,2/21/2016 14:25 +11282819,Microsoft Recommends Git,,2,1,gregonicus,3/14/2016 13:43 +10776243,Dear Facebook: This Is the Limit of Desperation,http://trak.in/tags/business/2015/12/22/users-mails-usa-canada-users-supporting-free-basics/,18,1,rtdp,12/22/2015 6:38 +10332488,Ask HN: How does Amazon keep its best engineers from quitting?,,11,6,Flopsy,10/5/2015 15:35 +11800048,Why Not Use Bash for Algorithmic Interviews?,http://www.giocc.com/why-not-use-bash-for-algorithmic-interviews.html,2,1,signa11,5/30/2016 7:20 +12534192,How YouTube threatened me to please EU president Juncker (French/Video),https://youtube.com/watch?v=7y-xS_EB3QI,17,1,dredmorbius,9/19/2016 19:54 +11686452,Computer problem temporarily shuts Loblaw-owned stores,http://www.cbc.ca/news/business/loblaw-computer-bug-1.3579022,1,1,robertelder,5/12/2016 20:20 +12517437,Ask HN: What is the most novel program you saw?,,4,2,mrwnmonm,9/16/2016 21:19 +11314530,Using virtual machine serial console via Web,http://ziviani.net/2016/web-serial-console,2,1,prisionif,3/18/2016 20:06 +10189288,John McAfee announces he's running for President,http://money.cnn.com/2015/09/08/news/john-mcafee-for-president/,33,20,ilyaeck,9/9/2015 2:10 +10415142,Physicists can code,https://www.authorea.com/users/3/articles/83283/_show_article,4,1,apepe,10/19/2015 19:36 +10336998,Analyse Asia 64: Spotify in Asia with Sunita Kaur,http://analyse.asia/2015/10/06/episode-64-spotify-in-asia-with-sunita-kaur/,1,1,bleongcw,10/6/2015 6:09 +11472508,Apply HN: Cubeit- Making Conversations More Contextual,,7,7,gnkchintu,4/11/2016 16:06 +11172060,Ask HN: Who will GitHub acquire?,,15,5,curiousisgeorge,2/25/2016 2:57 +12120631,Ask HN: Document Conversion from DocX and Other FileFormats to a Specific XSD,,2,1,realmunk,7/19/2016 8:52 +10806803,Mark Zuckerberg cant believe India isnt grateful for Facebooks free internet,http://qz.com/582587/mark-zuckerberg-cant-believe-india-isnt-grateful-for-facebooks-free-internet/,16,3,prakashk,12/29/2015 14:31 +11923573,How Hired Hackers Got Complete Control of Palantir,https://www.buzzfeed.com/williamalden/how-hired-hackers-got-complete-control-of-palantir,217,78,minimaxir,6/17/2016 16:23 +10917767,African American Women Worked as Some of NASA's First Computers,https://bitchmedia.org/article/african-american-women-worked-some-nasas-first-computers,93,60,rhizome31,1/17/2016 1:13 +12291615,Whats New with The Rust Programming Language?,http://words.steveklabnik.com/whats-new-with-the-rust-programming-language,143,50,doppp,8/15/2016 16:50 +10868249,Schrödinger's Firefox OS,http://elioqoshi.me/en/2016/01/schrodingers-firefox-os/,2,3,bpierre,1/8/2016 21:06 +11313932,"Twitter to keep 140-character limit, CEO says",http://www.reuters.com/article/us-twitter-character-limit-idUSKCN0WK275,44,54,shayannafisi,3/18/2016 18:47 +10448872,Why Uber could be worth $70B,http://www.vox.com/2014/12/4/7336433/uber-worth-,3,1,digisth,10/25/2015 23:22 +10676366,150-year-old map reveals that beaver dams can last centuries,http://news.sciencemag.org/plants-animals/2015/12/150-year-old-map-reveals-beaver-dams-can-last-centuries,21,3,Amorymeltzer,12/4/2015 14:11 +10593825,Which Country Ex President Joyce Banda Belongs To?,,1,1,rmos,11/19/2015 9:59 +11274329,Lambdas (in Java 8) Screencast,http://bitpress.io/learning-modern-java/,4,2,jjensen90,3/12/2016 20:14 +10430341,Show HN: `monki`. Share your code across hundreds of Git repos.,https://github.com/laarc/monki,6,1,laarc,10/22/2015 4:02 +11070419,FirefoxOS GSM factory unlocked Fx0 for ~$60,http://www.amazon.com/gp/product/B00UULNTHK?psc=1&redirect=true&ref_=od_aui_detailpages00,9,5,hardwaresofton,2/10/2016 2:40 +11186999,"Ask HN: Broke, no money for rent or food? What should I do?",,9,17,tevlon,2/27/2016 13:17 +11937133,The Panama Canal Expands,http://www.wsj.com/articles/the-panama-canal-expands-1466378348,86,39,jonbaer,6/20/2016 10:25 +10454704,Most Company Culture Posts Are Fluffy Bullshit?,https://medium.com/evergreen-business-weekly/most-company-culture-posts-are-fluffy-bullshit-here-is-what-you-actually-need-to-know-1cf8597a5c2c#.flunkxjnw,2,1,vladiim,10/26/2015 21:44 +11343680,"BMW, Audi and Toyota cars can be unlocked and started with hacked radios",http://www.telegraph.co.uk/technology/2016/03/23/hackers-can-unlock-and-start-dozens-of-high-end-cars-through-the/,154,115,bb101,3/23/2016 12:10 +12213967,"Python 3.6 proposal, PEP 525: Asynchronous Generators",https://www.python.org/dev/peps/pep-0525/,8,1,1st1,8/2/2016 22:36 +11077114,Princeton Bitcoin textbook is now freely available,https://freedom-to-tinker.com/blog/randomwalker/the-princeton-bitcoin-textbook-is-now-freely-available/,247,19,t3hSpork,2/10/2016 23:37 +11037953,Maryland AG says it's OK for police to spy on smartphone users,http://dcinno.streetwise.co/2016/02/04/maryland-residents-are-spied-on-by-police-via-smartphone-says-ag/,22,5,fearfulsymmetry,2/4/2016 22:57 +10577411,41 Percent of Fliers Think Youre Rude If You Recline Your Seat,http://fivethirtyeight.com/datalab/airplane-etiquette-recline-seat/,20,43,kitwalker12,11/16/2015 21:40 +12171026,Introducing Apache Spark 2.0,https://databricks.com/blog/2016/07/26/introducing-apache-spark-2-0.html,55,1,rxin,7/27/2016 7:00 +11423114,"What is your story of finding your cofounder, tech or non-tech?",,2,5,PeterTMayer,4/4/2016 16:24 +10905330,Ask HN: Udemy's Complete Web Developer Course Yes? No? Maybe?,,2,2,neilmack,1/14/2016 22:42 +10368728,Stripe.com Reviews anyone?,,1,1,audioshop,10/11/2015 9:44 +12282810,ZFS High-Availability NAS,https://github.com/ewwhite/zfs-ha/wiki,150,59,louwrentius,8/13/2016 19:46 +12260809,MASSCAN: Mass IP port scanner,https://github.com/robertdavidgraham/masscan,61,33,ntumlin,8/10/2016 11:21 +11439773,How to Mess with the Nazis: The CIAs Sabotage Manual for Ordinary Citizens,http://www.messynessychic.com/2016/04/06/how-to-mess-with-the-nazis-the-cia-sabotage-manual/,3,1,apo,4/6/2016 16:19 +10397043,Square's IPO prospectus shows just how much the company needs a full-time CEO,https://www.pando.com/2015/10/15/square-ipo/03baf262b41a0001eb4db73353673dc3ca5bde63/,4,1,onedev,10/16/2015 1:46 +11696178,Ask HN: How would you gracefully exit your startup?,,2,4,ichinisanshi,5/14/2016 14:06 +11784934,North Korea Linked to Digital Attacks on Global Banks,http://mobile.nytimes.com/2016/05/27/business/dealbook/north-korea-linked-to-digital-thefts-from-global-banks.html?_r=0&referer=http://freerepublic.com/focus/f-news/3434335/posts,2,1,sjreese,5/27/2016 9:57 +12099705,To fork or not to fork,https://blog.ethereum.org/2016/07/15/to-fork-or-not-to-fork/,14,2,runesoerensen,7/15/2016 9:10 +11266471,Factorio a game where you can automate basically anything,http://www.factorio.com/,582,113,staticelf,3/11/2016 13:33 +10759594,The No-Lose Bet for Banks in IPOs,http://www.wsj.com/articles/the-no-lose-bet-for-banks-in-ipos-1450402900,10,12,jackgavigan,12/18/2015 17:28 +10336687,Even senior engineers cant afford to live near their offices in San Francisco,http://qz.com/516486/even-senior-engineers-cant-afford-to-live-near-their-offices-in-san-francisco,2,1,katiey,10/6/2015 3:57 +12515021,Investing for Geeks,https://training.kalzumeus.com/newsletters/archive/investing-for-geeks,7,1,charlieirish,9/16/2016 16:12 +12216308,Classic Shell download mirror compromised,http://www.classicshell.net/forum/viewtopic.php?f=12&t=6441,3,1,corobo,8/3/2016 7:38 +12541428,"JavaScript isn't ever going away, is it?",,9,18,resmote,9/20/2016 17:42 +12023635,Bidding war with Salesforce drove up Microsofts LinkedIn bill,https://next.ft.com/content/c741d6bc-3fdc-11e6-8716-a4a71e8140b0,69,42,cm2187,7/2/2016 20:04 +10985944,Power laws as a thinking tool,https://www.facebook.com/notes/kent-beck/putting-power-law-thinking-to-work/1092326674133529,35,10,KentBeck,1/28/2016 3:19 +12083714,Ask HN: Anyone running a SaaS based on machine learning?,,16,3,osazuwa,7/13/2016 3:25 +10914779,Scalable C Writing Large-Scale Distributed C,https://hintjens.gitbooks.io/scalable-c/content/preface.html,193,145,ingve,1/16/2016 8:57 +11484014,Redex: an Android bytecode optimizer developed by Facebook,http://fbredex.com/,107,56,folz,4/12/2016 22:11 +11616404,Ask HN: What's the process of writing a new programming language?,,14,13,audace,5/2/2016 22:54 +10724563,Satoshi's PGP Keys Are Probably Backdated and Point to a Hoax,http://motherboard.vice.com/read/satoshis-pgp-keys-are-probably-backdated-and-point-to-a-hoax,1,1,quickquicker,12/12/2015 23:07 +10686610,Abstract Algebra: The Definition of a Group [video],https://www.youtube.com/watch?v=QudbrUcVPxk&list=PLi01XoE8jYoi3SgnnGorR_XOW3IcK-TP6,74,30,espeed,12/6/2015 21:06 +12465321,Early evidence on predictive policing and civil rights,https://www.teamupturn.com/reports/2016/stuck-in-a-pattern,78,76,miraj,9/9/2016 19:22 +12253306,OnePlus 3 Support Nightmare (on-going),https://medium.com/@kornkris/oneplus-3-support-nightmare-on-going-66c6eb64d614,2,1,destloy,8/9/2016 8:34 +11409107,Galileos reputation is more hyperbole than truth,https://aeon.co/opinions/galileo-s-reputation-is-more-hyperbole-than-truth,12,9,Hooke,4/1/2016 22:43 +11685109,Silicon Valleys Dumb Money,http://awealthofcommonsense.com/2016/05/silicon-valleys-dumb-money/,3,2,tosseraccount,5/12/2016 17:17 +12090792,CIA Faked a Vaccination Campaign in the Pursuit of Bin Laden,http://www.nytimes.com/2011/07/12/world/asia/12dna.html,6,1,reimertz,7/14/2016 0:11 +10578930,Researchers uncover patterns in how scientists lie about their data,http://news.stanford.edu/news/2015/november/fraud-science-papers-111615.html,28,2,nreece,11/17/2015 3:05 +12068522,TempleOS Flight Simulator and FPS Video,https://www.youtube.com/watch?v=geYBLxYEITo,43,7,TempleOSV409,7/11/2016 2:35 +11085637,Show HN: ReadBoard Change the Way You Converse on the Web (Private Beta),http://www.readboard.io,3,10,abhishekdesai,2/12/2016 6:28 +12493959,George Geohot Hotz announces a self driving car kit [video],https://www.youtube.com/watch?v=cYl6DIxvnzM,13,1,vierja,9/14/2016 2:53 +11903547,We need lots more power lines. Why are we so bad at planning them?,http://www.vox.com/2016/6/9/11881556/power-lines-bad-planning,2,1,state_machine,6/14/2016 17:18 +11467131,Sample workflow for LP digitization,http://manual.audacityteam.org/o/man/sample_workflow_for_lp_digitization.html,100,52,dirwiz,4/10/2016 17:17 +11436383,Ask HN: What is in a modern web framework?,,2,2,chvid,4/6/2016 3:19 +11525514,Google.com partially dangerous,https://www.google.com/transparencyreport/safebrowsing/diagnostic/index.html?hl=en-US#url=google.com,450,116,s_chaudhary,4/19/2016 7:58 +12265266,Love My Company but Feel Like My Salary Is Low,,16,21,spellsadmoose,8/10/2016 22:53 +10809153,Texas businesses prep for new open carry gun law,http://money.cnn.com/2015/12/28/news/companies/texas-open-carry-handgun-law/index.html,3,1,ourmandave,12/29/2015 21:22 +11901285,The Pauseless GC Algorithm [pdf],https://www.usenix.org/legacy/events/vee05/full_papers/p46-click.pdf,2,1,ingve,6/14/2016 11:38 +11891458,Instead of corporations buying robots,,3,9,coroutines,6/13/2016 2:53 +10567016,For Better or for Worse,http://jmoiron.net/blog/for-better-or-for-worse/,57,33,BarkMore,11/14/2015 20:04 +11471336,"WhatsApp Encryption Is a Good Start, but Businesses Need More Security",http://nuro.im/whatsapp-encryption-businesses-need-security/,1,1,SofiaNuro,4/11/2016 13:36 +12255089,Feature Request: Manual Refresh of external calendar feeds,https://productforums.google.com/forum/#!topic/calendar/iXp8fZfgU2E;context-place=topicsearchin/calendar/ical,70,92,baptou12,8/9/2016 15:13 +12036148,Teaching Programming in High Schools Will Be Useless,http://williamrfry.com/2016/07/04/teaching-programming-is-useless/,3,1,audace,7/5/2016 13:12 +11505002,Why is the certificate for Wi-Free displayed as being unsecure?,https://support-en.upc-cablecom.ch/app/answers/detail/a_id/9949/~/certificate-for-wi-free,2,2,acqq,4/15/2016 15:19 +11622584,"Ask HN: How DoesNever Remember This Credit Card, Not Remember the Credit Card?",,1,2,rickdale,5/3/2016 17:24 +12265818,U.S. court blocks FCC bid to expand public broadband,http://www.reuters.com/article/us-usa-internet-ruling-idUSKCN10L23N,2,1,srameshc,8/11/2016 1:29 +10895549,"Ask HN: YC Fellowship, was it succesful? Will it be repeated?",,3,2,GFischer,1/13/2016 16:40 +10244764,The Tablet and the Calculator,http://www.wired.com/2015/09/amazon-tablet-casio-calculator/,40,32,Amorymeltzer,9/19/2015 16:46 +11174174,"Node.js and Express Authentication Kit with MySQL, Sequelize and Connect",https://www.noodl.io/market/product/P201601091821557/nodejs-express-login-nodejs-express-login-create-accounts-login-logout-validate-sessions,1,2,noodlio,2/25/2016 13:21 +11152532,"Apple, FBI, and the Burden of Forensic Methodology",http://www.zdziarski.com/blog/?p=5645,3,1,jazzdev,2/22/2016 17:29 +11089304,Why I use ggplot2,http://varianceexplained.org/r/why-I-use-ggplot2/,64,11,var_explained,2/12/2016 18:31 +10638127,Superfish 2.0: Now Dell Is Breaking HTTPS,https://www.eff.org/deeplinks/2015/11/superfish-20-now-dell-breaking-https,81,68,tdurden,11/27/2015 17:38 +10471344,What Makes Us Happy? (2009),http://www.theatlantic.com/magazine/archive/2009/06/what-makes-us-happy/307439/?single_page=true,45,12,tim_sw,10/29/2015 14:43 +10943131,Automated image testing with Verified Pixel,http://lwn.net/SubscriberLink/672464/770cc7c59e3203cf/,19,2,ajdlinux,1/21/2016 3:16 +11601857,Scientist Hack Plants to Turn Biomass into Fuel Using the Sun,http://www.nature.com/ncomms/2016/160404/ncomms11134/full/ncomms11134.html,2,3,kevindeasis,4/30/2016 14:45 +11707609,SoundCloud Preparing to Block All DJ Mixes,http://www.digitalmusicnews.com/2016/05/16/soundcloud-preparing-massive-restrictions-dj-uploads/,4,2,yuddidit,5/16/2016 16:49 +12291080,Pair Programming Is Not a Panacea (2014),http://www.mattgreer.org/articles/pair-programming-is-not-a-panacea/,39,19,zeveb,8/15/2016 15:27 +11646343,".NET Core RC2 Improvements, Schedule, and Roadmap",https://blogs.msdn.microsoft.com/dotnet/2016/05/06/net-core-rc2-improvements-schedule-and-roadmap/,157,109,choudeshell,5/6/2016 19:56 +11542679,Apply HN: DevJoy-Developer Sourcing Tool with Focus on Minimising Recruiter Spam,,3,1,zelloworld,4/21/2016 15:04 +11490188,Cruise,http://blog.samaltman.com/cruise,580,386,sama,4/13/2016 17:21 +12148856,Piknik: copy/paste anything over the network,https://github.com/jedisct1/piknik,2,1,jedisct1,7/23/2016 8:49 +10224083,Building DistributedLog: Twitters high-performance replicated log service,https://blog.twitter.com/2015/building-distributedlog-twitter-s-high-performance-replicated-log-service,13,1,anu_gupta,9/16/2015 1:00 +11976669,Ask HN: Would you use Tor to connect to your distributed servers?,,6,7,merqurio,6/25/2016 15:35 +12308044,"Show HN: Fr8, an Open-Source Cloud Application Integration Service (iPaaS)",http://blog.fr8.co/2016/08/17/fr8-launches-as-an-open-source-project/,15,1,alexed,8/17/2016 20:14 +11905485,Semantic Search with Latent Semantic Analysis,http://opensourceconnections.com/blog/2016/03/29/semantic-search-with-latent-semantic-analysis/,61,5,softwaredoug,6/14/2016 21:32 +11748528,"How to Fall 35,000 Feet And Survive (2010)",http://www.popularmechanics.com/adventure/outdoors/a5045/4344036/,67,64,Tomte,5/22/2016 13:39 +12142046,Ask HN: What will be consequences if Ymail is shut down permanently?,,2,2,priteshjain,7/22/2016 6:34 +11294769,Are Group Chat Apps Repeating the Same Mistakes of Email?,http://motherboard.vice.com/read/why-group-chat-apps-arent-perfect,3,1,aceperry,3/16/2016 3:25 +10463343,Memorado Hackweek: 4 apps for refugees in 4 days,https://medium.com/@Memorado/day-3-4-memorado-hackweek15-41474f5af452,5,1,igor_filippov,10/28/2015 8:45 +11200201,Crisis text line to release massive data set to researchers,http://www.newsworks.org/index.php/homepage-feature/item/91451-crisis-text-line-to-release-massive-data-set-to-researchers,3,1,hackuser,3/1/2016 1:27 +10579904,Designing an Intel 80386SX development board,http://blog.lse.epita.fr/articles/77-lsepc-intro.html,76,8,ingve,11/17/2015 8:50 +10245954,A simple string to crash Google Chrome,http://andrisatteka.blogspot.com/2015/09/a-simple-string-to-crash-google-chrome.html,5,1,minimaxir,9/19/2015 23:39 +11939922,Local Motors,https://localmotors.com/,2,1,evo_9,6/20/2016 18:13 +11107920,Why Pay Employees to Exercise When You Can Threaten Them?,http://www.bloomberg.com/news/articles/2016-02-15/why-pay-employees-to-exercise-when-you-can-threaten-them,2,5,petethomas,2/16/2016 4:42 +10555222,New Nvidia Jetson tx1 devkit,https://developer.nvidia.com/embedded/buy/jetson-tx1-devkit,1,1,intrasight,11/12/2015 18:46 +12422124,We have been experiencing a catastrophic DDoS attack,https://status.linode.com/?,187,141,wowaname,9/4/2016 1:10 +10280623,Intruder: How to crack Wi-Fi networks in Node.js,http://stevenmiller888.github.io/intruder-cracking-wifi-networks-in-node/,3,3,stevenmiller888,9/25/2015 20:55 +10353728,Why the most popular webpage for developers is not responsive?,,3,1,maxwellito,10/8/2015 16:18 +10717622,CNN Inside a Hacker Cantina,http://money.cnn.com/technology/superhero-hackers/inside-a-hacker-cantina/index.html,2,1,jchernan,12/11/2015 15:31 +12030931,Ways to get motivated when you dont feel like working,http://plan.io/blog/post/146892730063/4-ways-to-get-motivated-when-you-dont-feel-like,136,45,thomascarney,7/4/2016 14:23 +11304016,Rampant wealth inequality in Silicon Valley could make San Fran a ghost town,http://qz.com/641223/rampant-wealth-inequality-in-silicon-valley-could-make-san-francisco-a-ghost-town/,3,2,Libertatea,3/17/2016 12:56 +11493135,IMPORTANT INFORMATION ON FABLE LEGENDS Lionhead Studios Is Closing,https://www.fablelegends.com/news/important-information-on-fable-legends,2,1,0xCMP,4/13/2016 23:15 +12372853,Bitcoin Technology to Fuel P2P Solar Revolution?,http://understandsolar.com/bitcoin-technology-p2p-solar/,55,14,urumcsi,8/27/2016 15:59 +11370511,Japanese space telescope Hitomi (ASTRO-H) appears to have broken up in orbit,https://twitter.com/jointspaceops/status/714103414225960960,5,1,throwaway_yy2Di,3/27/2016 16:37 +11058874,How does Facebook manage 1000+ config changes a day? Config as code approach,http://muratbuffalo.blogspot.com/2016/02/holistic-configuration-management-at.html,12,1,mad44,2/8/2016 16:11 +10330813,Japans startup ecosystem gets lift from Silicon Valleys Hiroshi Menjo,http://beaconreports.net/japans-startup-ecosystem-gets-lift-from-silicon-valleys-hiroshi-menjo/,12,4,gillygize,10/5/2015 9:59 +11139248,Whatever Origin,http://www.whateverorigin.org/,28,2,laex,2/20/2016 7:15 +10367603,"Ultrasound, thermodynamics, and robot overlords (2014)",http://independentscience.tumblr.com/post/101728968844/ultrasound-thermodynamics-and-robot-overlords,30,8,apsec112,10/11/2015 0:58 +10291128,New DDoS attack uses smartphone browsers to flood sites,http://www.zdnet.com/article/new-ddos-attack-uses-smartphone-browsers-to-flood-site-with-4-5bn-requests/,3,1,Sami_Lehtinen,9/28/2015 16:06 +12010155,"Developers: First, do no harm",http://sdtimes.com/industry-watch-developers-first-no-harm/,5,2,sirduncan,6/30/2016 17:26 +11160482,Show HN: CloudRail Universal API New UI to create your custom SDK in 30s,http://cloudrail.com/newui/,4,1,cloud-rail,2/23/2016 17:21 +12379006,Using Apache Spark to Analyze Large Neuroimaging Datasets,https://blog.dominodatalab.com/pca-on-very-large-neuroimaging-datasets-using-pyspark/,52,4,gk1,8/28/2016 23:16 +12151031,Ask HN: What are your maxvisit and minaway settings?,,2,1,ahmedfromtunis,7/23/2016 21:15 +11805880,Show HN: JavaScript for Designers follow along for free,http://betaflows.com/,2,1,startlaunch,5/31/2016 11:19 +11136579,Ask HN: Do you still read RSS feeds?,,34,40,nodivbyzero,2/19/2016 20:59 +10880639,The Most Interesting Atom Packages I've Found So Far,http://benmccormick.org/2016/01/11/the-most-interesting-atom-packages-ive-found-so-far/,12,2,ben336,1/11/2016 13:33 +12293676,Gym Selfies a Sign of Tough Times for the Economy,http://www.usnews.com/news/articles/2016-08-15/gym-selfies-a-sign-of-tough-times-for-the-economy,7,3,spking,8/15/2016 21:38 +10630591,HardCaml Register Transfer Level Hardware Design in OCaml,https://github.com/ujamjar/hardcaml,26,3,mattw1810,11/26/2015 0:05 +10179980,The Myth of Quality Time,http://www.nytimes.com/2015/09/06/opinion/sunday/frank-bruni-the-myth-of-quality-time.html,160,24,kareemm,9/7/2015 3:46 +11363697,"Netflix Throttles Its Videos on AT&T, Verizon Networks",http://www.wsj.com/articles/netflix-throttles-its-videos-on-at-t-verizon-phones-1458857424,38,14,jackgavigan,3/26/2016 0:05 +10785591,GPS Always Overestimates Distances,http://www.i-programmer.info/news/145-mapping-a-gis/9164-gps-always-over-estimates-distances.html,86,21,isp,12/23/2015 20:55 +10622355,The characters U+ are an ASCIIfied version of the MULTISET UNION ? character,http://stackoverflow.com/questions/1273693/why-is-u-used-to-designate-a-unicode-code-point/8891122#8891122,1,1,bpierre,11/24/2015 18:09 +12401013,Ask HN: Do you rely more on data or intuition when making product decisions?,,3,3,kierantie,8/31/2016 19:56 +10933091,Bedrock Linux 1.0beta2 Nyla Released,http://bedrocklinux.org/index.html,3,1,swsieber,1/19/2016 19:10 +11185783,"Evelyn Waugh, the Art of Fiction No. 30 (1963)",http://www.theparisreview.org/interviews/4537/the-art-of-fiction-no-30-evelyn-waugh,35,7,samclemens,2/27/2016 2:32 +10556203,The Hunt for the Tinmouth Apple,http://www.bostonmagazine.com/restaurants/blog/2015/09/29/tinmouth-apple/print/,2,1,aaronbrethorst,11/12/2015 21:18 +11513193,Show HN: I made a GitHub stars manager,http://www.getstarboard.xyz/,3,2,daiwei,4/17/2016 2:13 +10723923,Edward Luttwak: The Machiavelli of Maryland,http://www.theguardian.com/world/2015/dec/09/edward-luttwak-machiavelli-of-maryland,39,9,blackbagboys,12/12/2015 20:00 +11330658,"How does the Android Battery tool work, and why should developers care?",https://www.apteligent.com/developer-resources/battery-life-how-does-the-android-battery-tool-work-and-why-should-developers-care/,19,2,andrewmlevy,3/21/2016 18:46 +12248764,Meccano Differential Analyzer,https://hackaday.com/2016/08/08/differential-analyzer-cranks-out-math-like-a-champ-at-vcf-2016,47,8,l1n,8/8/2016 16:00 +10501676,VC++ standalone C++ tools for build environments,http://blogs.msdn.com/b/vcblog/archive/2015/11/02/announcing-visual-c-build-tools-2015-standalone-c-tools-for-build-environments.aspx,23,2,jjuhl,11/3/2015 18:54 +10457182,Crack and Cider buy useful items to be given to London's homeless,http://crackandcider.com/,1,2,buro9,10/27/2015 10:30 +11618263,The Top 1 Percent: What Jobs Do They Have?,http://www.nytimes.com/packages/html/newsgraphics/2012/0115-one-percent-occupations/index.html?ref=business,17,4,selmat,5/3/2016 5:55 +10798586,North Korea's computer operating system mirrors its political one,http://www.reuters.com/article/northkorea-computers-idUSKBN0UA0GF20151227,86,66,dosshell,12/27/2015 20:08 +12477050,Show HN: Customizing ubuntu for the likes of a developer,https://blog.microideation.com/2016/08/30/customizing-ubuntu-system/,12,15,sandheepgr,9/12/2016 3:43 +11064487,A list of all known ResearchKit applications,http://blog.shazino.com/articles/science/researchkit-list-apps/,16,3,shazino,2/9/2016 10:48 +12369896,C++ IDEs a rant,http://www.gamedev.net/blog/2199/entry-2262213-c-ides-a-rant/,24,51,douche,8/26/2016 22:59 +11400742,MVC-N,https://realm.io/news/slug-marcus-zarra-exploring-mvcn-swift/,13,2,astigsen,3/31/2016 21:37 +11710111,The DAO Bytecode Tour for the Skeptic (Part 1),https://blog.slock.it/the-dao-bytecode-tour-for-the-skeptic-part-1-722e1b0a884d,3,1,bpierre,5/16/2016 22:22 +12161563,Edward Snowden Blasts Russia for DNC Hack,http://foreignpolicy.com/2016/07/25/noted-hacker-edward-snowden-has-some-thoughts-on-the-dnc-hack/,8,2,coatta,7/25/2016 20:56 +11063041,Egypt five years on: was it ever a 'social media revolution'?,http://www.theguardian.com/world/2016/jan/25/egypt-5-years-on-was-it-ever-a-social-media-revolution,2,1,niravseo,2/9/2016 4:19 +11202522,Show HN: MuscleWiki A fitness website using gifs,https://www.musclewiki.org,39,18,w0ts0n,3/1/2016 13:50 +11702939,"I made an app that orders delivery to a random location, and ubers you there",https://twitter.com/chromakode/status/731942777131425792,261,28,robtaylor,5/15/2016 21:52 +11200878,The SaaS Startup Founders Guide,https://startups.salesforce.com/article/The-SaaS-Startup-Founder-s-Guide,86,26,vyrotek,3/1/2016 5:00 +10714318,The Steam Controller Update,http://store.steampowered.com/controller/update/dec15,1,1,Doolwind,12/10/2015 23:12 +11272561,Three leaders from Latin America call for decriminalizing drug use,http://www.latimes.com/opinion/op-ed/la-oe-0311-presidents-drug-war-fail-20160311-story.html,4,1,citizensixteen,3/12/2016 12:22 +12283593,GitHub as a free blogging platform with paywall functionality,https://stevetabernacle.github.io/,4,1,a1a,8/13/2016 23:34 +10244950,Statistics for Hackers,https://speakerdeck.com/jakevdp/statistics-for-hackers,341,54,tomaskazemekas,9/19/2015 17:40 +11600396,The Geographical Oddity of Null Island,https://blogs.loc.gov/maps/2016/04/the-geographical-oddity-of-null-island/,58,14,Thevet,4/30/2016 4:39 +11436836,Ask HN: How to network in Bay Area?,,3,1,um304,4/6/2016 5:41 +10265209,Block and Unsubscribe,http://gmailblog.blogspot.com/2015/09/stay-in-control-with-block-and.html,203,123,xpressyoo,9/23/2015 14:35 +11532599,Detecting the use of curl bash server side,https://www.idontplaydarts.com/2016/04/detecting-curl-pipe-bash-server-side/,352,120,ingve,4/20/2016 6:19 +10812094,RVM Is Down,,2,6,jyaker,12/30/2015 14:14 +10629192,This shoe brand claims to have built the 'sneaker of the future',http://mashable.com/2015/11/20/greats-sneaker-future/#DB7Elsb8ysqc,1,1,notduncansmith,11/25/2015 19:50 +10484947,"The Law Cant Keep Up with Technology, and That's Good",http://www.newsweek.com/government-gets-slower-tech-gets-faster-389073,37,14,sjcsjc,11/1/2015 0:56 +11174240,Haskell Is Not for Production and Other Tales by FB's Katie Miller [video],https://www.youtube.com/watch?v=mlTO510zO78,10,1,cies,2/25/2016 13:31 +10541385,Samsung Gear VR now available for preorder,https://www.oculus.com/en-us/blog/samsung-gear-vr-now-available-for-pre-orders-at-99/,9,3,_nh_,11/10/2015 18:44 +10974050,HTTPS provides more than just privacy,https://certsimple.com/blog/ssl-why-do-i-need-it,211,83,nailer,1/26/2016 16:01 +10252979,Thiel: Technology Stalled in the 1970's,http://www.technologyreview.com/qa/530901/technology-stalled-in-1970/,5,13,david927,9/21/2015 15:37 +10813571,North Pole temperature is above 0; 50 degrees hotter than average,http://www.theatlantic.com/science/archive/2015/12/iceland-storm-melt-north-pole-climate-change/422166?single_page=true,4,1,billconan,12/30/2015 18:53 +10460222,Europe abolishes mobile phone roaming charges,http://www.theguardian.com/technology/2015/oct/27/europe-abolishes-mobile-phone-roaming-charges,131,67,nols,10/27/2015 18:49 +11066713,The Brain Preservation Foundation Small Mammal Prize Has Been Won,http://www.brainpreservation.org/small-mammal-announcement/,9,1,porejide,2/9/2016 17:00 +10464077,My Google Search History Visualized,http://lisacharlotterost.github.io/2015/06/20/Searching-through-the-years/,37,4,sebg,10/28/2015 12:48 +11142084,Selling Haskell in the Pub,http://neilmitchell.blogspot.com/2016/02/selling-haskell-in-pub.html?m=1,5,3,stefans,2/20/2016 21:41 +12041959,Show HN: Dehaze Curated hashtags for Instagram photographers,http://dehaze.co/,4,1,nicksmithr,7/6/2016 8:55 +10401214,Epoh,https://epoh.me,1,6,epoh,10/16/2015 18:31 +11601699,How AI Can Predict Heart Failure Before It's Diagnosed,https://blogs.nvidia.com/blog/2016/04/11/predict-heart-failure/,4,1,shawndumas,4/30/2016 13:54 +11582674,Show HN: I built a mirror that you can touch,https://www.youtube.com/watch?v=sh2EJzplkpM,31,14,razor,4/27/2016 17:44 +11590090,Ask HN: Is anybody doing something productive with IBM Watson or is it just BS?,,62,51,maxxxxx,4/28/2016 16:37 +11692172,DataGateKeeper: The FIRST Impenetrable Anti-Hacking Software,https://www.kickstarter.com/projects/datagatekeeper/datagatekeeper-the-first-impenetrable-anti-hacking,2,4,rudolf0,5/13/2016 18:18 +11174371,Screen sharing built with Erlang/Elixir/WebRTC/Chrome Extension,https://www.producthunt.com/tech/crankwheel,21,4,joisig,2/25/2016 13:52 +11043515,Power your blog using APIs (writing too): how to be a lazy content marketer,https://scripted.com/dev/work-smarter-content-marketer/,7,1,rbucks,2/5/2016 18:30 +11795979,Does Military Sonar Kill Marine Wildlife? (2009),http://www.scientificamerican.com/article/does-military-sonar-kill/,53,9,turrini,5/29/2016 11:34 +10574208,GPL Licenses Logos Now Available,http://www.gnu.org/graphics/license-logos.html,86,56,ekianjo,11/16/2015 13:17 +10185696,Show HN: Pensamientos Open your thoughts to the world,https://play.google.com/store/apps/details?id=com.livae.ff.app,1,1,jorgemf,9/8/2015 14:01 +11135397,XSS vuln on beta.minecraft.net,https://bugs.mojang.com/browse/WEB-268,1,1,_jomo,2/19/2016 18:26 +11360499,Our security auditor is an idiot. How do I give him the information he wants?,http://serverfault.com/questions/293217/our-security-auditor-is-an-idiot-how-do-i-give-him-the-information-he-wants,4,1,Artemis2,3/25/2016 15:17 +10811838,WebSockets: caution required,https://samsaffron.com/archive/2015/12/29/websockets-caution-required,216,110,strzalek,12/30/2015 12:46 +10579930,Quantum and Tech Startups,https://medium.com/@manumish/tech-startups-and-quantum-f132711d5d35,1,1,hack_mmmm,11/17/2015 8:57 +11607176,All Belgian residents issued with iodine tablets to protect against radiation,http://www.telegraph.co.uk/news/2016/04/28/all-belgian-residents-issued-with-iodine-tablets-to-protect-agai/,1,1,prostoalex,5/1/2016 18:07 +11360949,Netflix is making videos look like garbage on AT&T and Verizon,http://techcrunch.com/2016/03/25/netflix-is-voluntarily-making-videos-look-like-garbage-on-att-and-verizon/,1,3,CrankyBear,3/25/2016 16:26 +11200434,Web Audio Arpeggiator,http://arpeggiator.desandro.com/,3,1,pwenzel,3/1/2016 2:35 +12042914,Sam Altman Has an Unusual Way of Paying the Taxes He Thinks He Should Owe,http://www.vanityfair.com/news/2016/07/sam-altman-carried-interest-tax-rate-plan?google_editors_picks=true,5,1,6stringmerc,7/6/2016 13:31 +11985598,Docker for Mac and Windows Is Out No More VirtualBox,https://blog.docker.com/2016/06/docker-mac-windows-public-beta/,7,1,bokenator,6/27/2016 12:03 +11865028,Ask HN: How do you pick your next book?,,4,12,thakobyan,6/8/2016 19:43 +10453523,Oracle releases new JavaScript framework,http://www.oracle.com/webfolder/technetwork/jet/index.html,3,4,hitekker,10/26/2015 18:50 +10251226,Show HN: GoHere Show someone where to go,http://gohere.io,5,6,cillian,9/21/2015 9:34 +10318200,Adblock Sold to Mystery Company,http://www.businessinsider.com/adblock-gets-sold-acceptable-ads-2015-10,298,166,huntermeyer,10/2/2015 13:05 +11892805,Basic Income: A Sellout of the American Dream,https://www.technologyreview.com/s/601499/basic-income-a-sellout-of-the-american-dream/,6,1,leptoniscool,6/13/2016 10:43 +12476957,"As More Devices Board Planes, Travelers Are Playing with Fire",http://www.nytimes.com/2016/09/13/business/as-more-devices-board-planes-travelers-are-playing-with-fire.html?pagewanted=all,46,41,kawera,9/12/2016 3:12 +10270272,CodeFights thinks competitive programming could become a spectators sport,http://businessinsider.com/codefights-thinks-competitive-programming-can-be-a-spectator-sport-2015-9,1,1,jsnathan,9/24/2015 7:04 +12521603,P4: a high-level language for programming protocol-independent packet processors,http://p4.org/?hn,85,20,afics,9/17/2016 18:03 +10569341,Mozilla has 'no plans' to offer Firefox without Pocket,http://venturebeat.com/2015/11/12/mozilla-has-no-plans-to-offer-firefox-without-pocket/,2,1,tomkwok,11/15/2015 11:46 +11639221,Crooks Go Deep with Deep Insert Skimmers,http://krebsonsecurity.com/2016/05/crooks-go-deep-with-deep-insert-skimmers/,4,1,heywire,5/5/2016 19:56 +11771563,Gawker Seeks Reduction in Judgment After Reports Say Billionaire Backed Hogan,http://www.wsj.com/articles/gawker-seeks-reduction-in-judgment-after-reports-say-billionaire-backed-plaintiff-hulk-hogan-1464185082,2,1,dcgudeman,5/25/2016 17:37 +11700520,Ask HN: What things would you like your children to learn?,,5,6,glaberficken,5/15/2016 11:35 +11829220,"AppSurfer Made This Tech 3 Years Before Google, Here's Why We're Shutting Down",https://inc42.com/resources/appsurfer/,5,1,rtdp,6/3/2016 9:34 +12563803,Becoming a Real Company,http://hardba.co/becomingacorp,51,15,brault,9/23/2016 11:38 +11481185,Ask HN: What should be my salary?,,1,1,iyogeshjoshi,4/12/2016 16:49 +11170360,"Independent SQL-On-Hadoop Benchmark of SparkSQL, Impala, and Hive",http://blog.atscale.com/how-different-sql-on-hadoop-engines-satisfy-bi-workloads,14,1,mb22,2/24/2016 21:27 +10533858,Atlassian files for IPO,http://www.sec.gov/Archives/edgar/data/1650372/000155837015001685/filename1.htm,490,174,joewadcan,11/9/2015 16:18 +10777965,Ask HN: Where do you store your side projects?,,8,14,yungGeez,12/22/2015 14:42 +10267717,Insideapp Update Cordova Apps Instantly Without Resubmit to the AppStore,https://www.insideapp.co/,9,2,dpaluy,9/23/2015 19:58 +11770170,Nova: The Architecture for Understanding User Behavior,https://amplitude.com/blog/2016/05/25/nova-architecture-understanding-user-behavior/,3,1,smalter,5/25/2016 14:52 +10334579,Why Intel Added Cache Partitioning,http://danluu.com/intel-cat/,213,53,dangerman,10/5/2015 20:19 +10208527,Which Android HTTP library to use,https://packetzoom.com/blog/which-android-http-library-to-use.html,24,16,chetanahuja,9/12/2015 16:43 +11251839,The Complete and Most Excellent MicroManual for Hosting Static Sites on AWS,http://micromanuals.xyz/static-sites.html,7,1,tobyhede,3/9/2016 9:17 +10999588,The top blogs in one place,http://www.blogmetrics.org/,2,1,pashakym,1/30/2016 0:06 +11401514,Lets Recognize How Fast Were Moving,https://medium.com/@kylry/let-s-recognize-how-fast-we-re-moving-e3a8d56fbfae#.h1r645gko,2,3,rezist808,3/31/2016 23:55 +12281047,Linus Torvalds still wants Linux to take over the desktop,http://www.cio.com/article/3053507/linux/linus-torvalds-still-wants-linux-to-take-over-the-desktop.html,52,92,dsego,8/13/2016 11:07 +10199285,Android Home Mirror,https://github.com/HannahMitt/HomeMirror,11,3,Nemisis7654,9/10/2015 17:16 +12148592,Ask HN: What to do when a company's second engineering hire is horrible?,,13,10,journeyadv,7/23/2016 6:26 +12135967,Curl 7.50 Changes,https://curl.haxx.se/changes.html#7_50_0,49,7,okket,7/21/2016 10:44 +12315997,Ask HN: Digital Nomads Who Stopped Wandering- Where Did You Settle?,,9,6,cdvonstinkpot,8/18/2016 20:12 +11300722,Google nabs Apple as a cloud customer,http://www.businessinsider.com/google-nabs-apple-as-a-cloud-customer-2016-3,471,216,rajathagasthya,3/16/2016 21:12 +11180498,Ask HN: A blog on startups and business ideas,,1,2,DanPir,2/26/2016 8:58 +11144837,"The Bitcoin Roundtable Consensus Proposal Too Little, Too Late",https://medium.com/@barmstrong/the-bitcoin-roundtable-consensus-proposal-too-little-too-late-e694f13f40b,29,17,Kinnard,2/21/2016 15:25 +10635182,You are much more likely to be killed by mundane things than terrorism (2013),http://www.washingtonsblog.com/2013/04/statistics-you-are-not-going-to-be-killed-by-terrorists.html,55,50,Fice,11/26/2015 23:27 +11372712,Speeding Up Web Page Loads with Shandian [pdf],https://www.usenix.org/system/files/conference/nsdi16/nsdi16-paper-wang-xiao-sophia.pdf,10,1,0x1997,3/28/2016 4:20 +10903229,Show HN: Keepasswd Script to automate changing ssh passwords from KeePass DB,https://github.com/jodiecunningham/keepasswd,3,2,deadfece,1/14/2016 18:20 +12277439,World Brain: The Idea of a Permanent World Encyclopædia (1937),https://sherlock.ischool.berkeley.edu/wells/world_brain.html,76,19,yk,8/12/2016 17:48 +12333171,String theorist Edward Witten says consciousness will remain a mystery,http://blogs.scientificamerican.com/cross-check/world-s-smartest-physicist-thinks-science-can-t-crack-consciousness/,45,80,RubyMyDear,8/21/2016 23:13 +10201904,"No, Mark Cuban, this tech bubble is not worse than 2000",https://medium.com/@thisisjoshvarty/no-mark-cuban-this-tech-bubble-is-not-worse-than-2000-2e1cf42b8405,29,15,Permit,9/11/2015 3:40 +11160974,"Alluxio, formerly Tachyon hits 1.0",http://www.alluxio.com/2016/02/alluxio-formerly-tachyon-is-entering-a-new-era-with-1-0-release/,12,4,hurrycane,2/23/2016 18:15 +10684065,Winners and Losers of Globalization (2012),http://www.theglobalist.com/the-real-winners-and-losers-of-globalization/,40,25,gwern,12/6/2015 2:00 +12253002,A Street Map of New York City in the 1800s,http://www.techinsider.io/old-photos-of-new-york-city-in-the-1800s-with-google-street-view-2016-7,145,17,kawera,8/9/2016 6:48 +11956366,Possible liquid ocean discovered on Pluto. Could it be Pluto Water?,https://en.wikipedia.org/wiki/Pluto_Water,1,1,foobarbecue,6/22/2016 19:30 +10942079,The Three Virtues of a GREAT Programmer,http://threevirtues.com/,23,4,gauravphoenix,1/20/2016 23:01 +11962374,Magento 2.1 released,https://magento.com/blog/magento-news/magento-enterprise-edition-21-unleashes-power-marketers-and-merchandisers,30,58,alternize,6/23/2016 16:41 +12434807,Tony Fullman NSA Intercepts,https://www.documentcloud.org/public/search/%22Project%20ID%22:%20%2228715-tony-fullman-nsa-file%22,60,6,sjreese,9/6/2016 10:12 +12172922,Marissa Mayers Payday,http://fortune.com/2016/07/26/marissa-mayers-verizon-yahoo-pay/,54,68,swyx,7/27/2016 14:15 +12037858,SFs homeless problem: A civic disgrace,https://marco.org/2016/07/05/sf-homeless,23,2,aaronbrethorst,7/5/2016 17:02 +11218283,React Three UI Experimenting with React as an Interface for 3D UIs,https://github.com/lwansbrough/react-three-ui,27,10,iLoch,3/3/2016 17:19 +12487117,Apache NetBeans Proposal,https://wiki.apache.org/incubator/NetBeansProposal,144,83,aikah,9/13/2016 11:37 +11313409,"Laser Weapons Ready for Use Today, Lockheed Executives Say",http://www.defensenews.com/story/defense/innovation/2016/03/15/laser-weapons-directed-energy-lockheed-pewpew/81826876/,4,1,IamFermat,3/18/2016 17:33 +11642717,Americans Distaste for Both Trump and Clinton Is Record-Breaking (2016),https://fivethirtyeight.com/features/americans-distaste-for-both-trump-and-clinton-is-record-breaking/?ex_cid=538twitter,57,89,rfreytag,5/6/2016 9:36 +10724592,Stockfighter is live,https://www.stockfighter.io/,549,138,jzig,12/12/2015 23:15 +11313648,The Pentagons procurement system is so broken they are calling on Watson,https://www.washingtonpost.com/business/economy/the-pentagons-procurement-system-is-so-broken-they-are-calling-on-watson/2016/03/18/a6891158-ec6a-11e5-a6f3-21ccdbc5f74e_story.html,29,25,mcamaj,3/18/2016 18:09 +10551594,On the Dark Matter of the Publishing Industry,http://techcrunch.com/2015/11/11/on-the-dark-matter-of-the-publishing-industry/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29,22,5,prostoalex,11/12/2015 6:19 +10305534,Meet the new Asana,https://blog.asana.com/2015/09/the-new-asana/,122,72,rayshan,9/30/2015 17:20 +12413512,Neural Network Architectures,http://culurciello.github.io/tech/2016/06/04/nets.html,360,39,billconan,9/2/2016 15:07 +10791186,Globetrotting Digital Nomads: The Future of Work or Too Good to Be True?,http://www.forbes.com/sites/forbesleadershipforum/2015/12/22/globetrotting-digital-nomads-the-future-of-work-or-too-good-to-be-true/,2,2,theunixbeard,12/25/2015 13:37 +10903892,A Push to Make Harvard Free Also Questions the Role of Race in Admissions,http://www.nytimes.com/2016/01/15/us/a-push-to-make-harvard-free-also-questions-the-role-of-race-in-admissions.html,63,118,Futurebot,1/14/2016 19:45 +11111557,Ask HN: How do I contact a recruiter?,,17,31,mattchue,2/16/2016 17:34 +11023122,ClojureSwift: a Clojure dialect on top of Apple's Swift language and LLVM bitcode,https://github.com/sventech/ClojureSwift,5,1,hellofunk,2/2/2016 22:17 +10870780,China Shows How Surveillance Leads to Intimidation and Software Censorship,https://www.eff.org/deeplinks/2016/01/china-shows-how-backdoors-lead-software-censorship,126,59,DiabloD3,1/9/2016 10:34 +12010881,Das Keyboard Kickstarter for Cloud-Connected Keyboard,https://www.kickstarter.com/projects/1229573443/das-keyboard-5q-the-cloud-connected-keyboard,6,2,tw334,6/30/2016 19:03 +11324900,Ask HN: How much do you make working as a CRUD dev?,,11,6,bo_Olean,3/20/2016 22:05 +10994165,Metric anomalies detection,https://github.com/eleme/banshee,12,4,hit9,1/29/2016 8:31 +11033522,Hubness-aware kNN in Python,http://www.biointelligence.hu/pyhubs/,2,1,pjf,2/4/2016 12:25 +10360613,18F launches cloud.gov,https://18f.gsa.gov/2015/10/09/cloud-gov-launch/,218,84,dlapiduz,10/9/2015 15:22 +12403556,Wisdom is more of a state than a trait,https://digest.bps.org.uk/2016/08/31/wisdom-is-more-of-a-state-than-a-trait/,46,11,bootload,9/1/2016 7:11 +10655407,Researchers want to wire the human body with sensors,http://www.nature.com/news/the-inside-story-on-wearable-electronics-1.18906,17,4,Amorymeltzer,12/1/2015 14:14 +11485005,The Lost 1984 Video: Young Steve Jobs Introduces the Macintosh,https://www.youtube.com/watch?v=2B-XwPjn9YY,6,4,phillipchaffee,4/13/2016 1:21 +10287270,Why the Human Brain Project Went Wrong and How to Fix It,http://www.scientificamerican.com/article/why-the-human-brain-project-went-wrong-and-how-to-fix-it/,93,61,wrongc0ntinent,9/27/2015 17:51 +11828248,Blade Runner re-encoded using neural networks,http://www.vox.com/2016/6/1/11787262/blade-runner-neural-network-encoding,151,66,signa11,6/3/2016 4:14 +12015205,Validate your startup idea,,2,1,sudeepn,7/1/2016 11:31 +12159334,Donald Trump to Hold Reddit AMA,https://techcrunch.com/2016/07/25/trump-ama/,9,1,pearlsteinj,7/25/2016 15:32 +11636502,Microsofts PhotoDNA,http://www.combatsextrafficking.com/microsofts-photodna/,25,5,royapak,5/5/2016 14:43 +12047538,Where to find good social media/marketing expert?,,1,3,dimasf,7/7/2016 4:56 +12042132,Akkadian,http://www.omniglot.com/writing/akkadian.htm,67,34,brador,7/6/2016 10:00 +11007148,Trademark: REACT (serial no. 86689364),http://www.tmfile.com/mark/?q=866893643,8,2,bdcravens,1/31/2016 17:48 +10406263,NativeScript Open Source framework for building native mobile apps using JS,https://github.com/NativeScript/NativeScript,1,1,joeyspn,10/17/2015 21:46 +10410046,React Desktop React UI Components for OS X El Capitan and Windows 10,https://github.com/gabrielbull/react-desktop,207,73,dalailambda,10/18/2015 22:15 +10179828,Twitter's product is fucking fine,http://startupljackson.com/post/128504446315/twitters-product-is-fucking-fine,4,3,takinola,9/7/2015 2:19 +10731066,The employees shut inside coffins,http://www.bbc.co.uk/news/magazine-34797017,6,3,tankenmate,12/14/2015 14:18 +10784030,Successful Former Teacher Responds to Wisconsin Gov with a Scathing Letter,http://magazine.good.is/articles/scott-walker-ryan-clancy-wisconsin-teacher-small-business,2,2,nekopa,12/23/2015 16:27 +10943188,Chess has just been banned in Saudi Arabia,https://www.reddit.com/r/chess/comments/41w4q9/chess_has_just_been_banned_in_saudi_arabia/,19,3,gk1,1/21/2016 3:37 +10605281,Physics of the Piano (2012) [pdf],https://nanohub.org/resources/18884/download/2013.06.19-Giordano-REU.pdf,54,10,snake117,11/21/2015 2:38 +10582598,At Home in the Liminal World,http://nautil.us/issue/30/identity/at-home-in-the-liminal-world-rp,7,1,dnetesn,11/17/2015 17:26 +11014128,Ask HN: Why should (or shouldn't) I use Intersystem's Cache?,,3,2,jklein11,2/1/2016 18:42 +11887941,Show HN: SQL Back End for the Static Web and Mobile Apps,https://www.lite-engine.com/blog/hello_world.html,5,6,marktangotango,6/12/2016 13:12 +10697601,Should Writing Be an Art or a Career?,https://newrepublic.com/article/124463/writing-art-career,26,24,dnetesn,12/8/2015 16:56 +10572228,Qutting Open Source,http://ryanbigg.com/2015/11/open-source-work/,11,2,steveklabnik,11/16/2015 2:07 +11352888,95% of Top 100 Authors in Computer Science Are Male,http://academic.research.microsoft.com/RankList?entitytype=2&topDomainID=2&subDomainID=0&last=0&start=1&end=100,2,2,11thEarlOfMar,3/24/2016 14:10 +11109298,Why you shouldnt trust Gmails new TLS icon,https://halon.io/blog/gmails-new-tls-icon/,5,2,Bino,2/16/2016 12:03 +12426227,Insurer Claims Man Comitted Arson via Remote PC Login,http://i.stuff.co.nz/national/crime/83868063/Northland-man-denies-burning-down-house-but-insurer-refuses-to-pay-out#,1,1,polemic,9/4/2016 19:25 +12268745,New AWS Application Load Balancer,https://aws.amazon.com/blogs/aws/,14,1,axelfontaine,8/11/2016 15:02 +11650706,Geologists Find Clues In Crater Left By Dinosaur-Killing Asteroid,http://www.npr.org/sections/thetwo-way/2016/05/06/476871766/geologists-find-clues-in-crater-left-by-dinosaur-killing-asteroid,83,24,hoffmannesque,5/7/2016 18:23 +12310345,Saving Science,http://www.thenewatlantis.com/publications/saving-science,37,21,Hooke,8/18/2016 3:54 +10905845,Open-source infrastructure is not venture-backable,https://medium.com/@nayafia/how-i-stumbled-upon-the-internet-s-biggest-blind-spot-b9aa23618c58,205,106,panic,1/14/2016 23:55 +10779510,How to Write Systematically in 11.5 bites,http://cryoshon.co/2015/12/22/how-to-write-systematically-in-11-5-bites/,13,1,cryoshon,12/22/2015 18:50 +10682003,Microsoft Edge's JavaScript engine to go open-source,https://blogs.windows.com/msedgedev/2015/12/05/open-source-chakra-core/,852,268,clarle,12/5/2015 14:48 +10484824,"Once a Year Your Data is Corrupted, Happy Halloween - MySQL Bugs: #38455",https://bugs.mysql.com/bug.php?id=38455,13,2,neilellis,11/1/2015 0:10 +12057859,"Wealth, Health, and Child Development: Evidence from Swedish Lottery Players",http://qje.oxfordjournals.org/content/131/2/687.full,66,40,gwern,7/8/2016 19:00 +11886039,Bash aliases for Harry Potter enthusiasts,https://gist.github.com/graceavery/01ec404e555571a4a668c271c8f62e8b,69,18,geb,6/12/2016 0:16 +12181765,Universal UI Components,http://jxnblk.com/writing/posts/universal-ui-components/,2,1,lioeters,7/28/2016 17:40 +11639816,"LinkedIn turns 13, what do you think should improve?",https://en.wikipedia.org/wiki/LinkedIn,1,3,debeggar,5/5/2016 21:32 +10284052,Handbook for Spoken Mathematics Larrys Speakeasy (1983) [pdf],http://web.efzg.hr/dok/MAT/vkojic/Larrys_speakeasy.pdf,30,3,mindcrime,9/26/2015 18:56 +10667756,Modern science detects disease in 400-year-old embalmed hearts,http://www.reuters.com/article/2015/12/02/us-science-hearts-idUSKBN0TL2PN20151202#VYwS6ZjSJtztSqZe.97,9,1,tokenadult,12/3/2015 4:30 +11195106,Show HN: Superplaceholder.js super charge the way users interact with forms,http://kushagragour.in/lab/superplaceholderjs/,5,1,chinchang,2/29/2016 12:46 +10924877,Ask HN: What sites do you use to find contract work?,,358,162,the_wheel,1/18/2016 15:27 +10410339,Much of the technology in the NY subway hasn't been updated in over 100 years,http://www.businessinsider.com/this-is-why-the-new-york-city-subway-is-always-delayed-2015-7,102,90,dankohn1,10/18/2015 23:45 +11228199,CloudFlare's TLS 1.3 Web Server Experiment,https://tls13.cloudflare.com,6,1,eastdakota,3/5/2016 2:46 +12501333,Cagou: XMPP based social network on its way to reach your desktop and Android,http://www.goffi.org/blog/goffi/56c67ebd-1aed-4b1b-99aa-4fe28df58b2b,5,1,goffi,9/14/2016 21:26 +11434083,Art-List: A Music Licensing Platform for Filmmakers,http://www.art-list.io,9,1,davidbarker,4/5/2016 20:27 +12167982,Are free tech strategy consultations a good idea?,,1,1,sarahcxlab,7/26/2016 18:58 +10421736,Apple tells U.S. judge 'impossible' to unlock new iPhones,http://www.reuters.com/article/2015/10/20/us-apple-court-encryption-idUSKCN0SE2NF20151020,328,193,aaronbrethorst,10/20/2015 20:53 +10291624,Mobile Ad Networks as DDoS Vectors: A Case Study,https://blog.cloudflare.com/mobile-ad-networks-as-ddos-vectors/,17,13,jgrahamc,9/28/2015 17:20 +12019499,HN Proposal: Lottery Monday,,1,1,Edmond,7/1/2016 20:43 +10385336,Is the hot hand fallacy a fallacy?,https://rjlipton.wordpress.com/2015/10/12/is-the-hot-hand-fallacy-a-fallacy/,2,1,nicknash,10/14/2015 6:56 +11392547,Software security,,2,2,zaadcs,3/30/2016 20:09 +10786570,"Apple developer intermediate certificates are expiring Feb 14, 2016",https://developer.apple.com/support/certificates/expiration/index.html,61,15,gdeglin,12/24/2015 1:22 +11309131,Critical Software Update for Kindle E-Readers,http://www.amazon.com/gp/help/customer/display.html/ref=deveng_hero?ie=UTF8&nodeId=201994710&ref=deveng_hero&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=desktop-hero-K&pf_rd_r=1B7TR110RDSHP0NEN8VZ&pf_rd_t=36701&pf_rd_p=2431455282&pf_rd_i=desktop,17,5,bogidon,3/18/2016 1:15 +10462721,Rhinoplasty attacking poaching problems from the supply side,http://www.laura-krantz.com/looking/2015/10/23/rhinoplasty,37,5,mooreds,10/28/2015 3:34 +10180322,Teaching taste,http://akkartik.name/post/teaching-taste,36,4,akkartik,9/7/2015 6:28 +10616491,How to hijack a journal,http://www.sciencemag.org/content/350/6263/903.summary,1,1,avivo,11/23/2015 19:04 +12511631,Has Chomsky been blown out of the water? [pdf],http://www.covingtoninnovations.com/michael/blog/1609/160916-Chomsky.pdf,26,36,breck,9/16/2016 3:26 +11582345,"OpenAI Gym: Toolkit for developing, comparing reinforcement learning algorithms",https://gym.openai.com/,337,18,netinstructions,4/27/2016 17:12 +12076007,Third Tesla crashes amid report of SEC probe,http://www.usatoday.com/story/money/cars/2016/07/11/tesla-motors-ceo-elon-musk-secret-master-plan/86936778/,9,1,cag_ii,7/12/2016 1:02 +11648340,Zuckerberg: It's Tough for Kids to Learn CS Without Internet Access in Schools,https://slashdot.org/submission/5838593/zuckerberg-its-tough-for-kids-to-learn-cs-without-internet-access-in-schools,3,1,theodpHN,5/7/2016 4:02 +11304264,"Google, YouTube and Binge On",https://googlepublicpolicy.blogspot.com/2016/03/google-youtube-and-binge-on.html,2,1,_jomo,3/17/2016 13:45 +11681455,Ganges River: India's dying mother,http://www.bbc.co.uk/news/resources/idt-aad46fca-734a-45f9-8721-61404cc12a39,39,13,blahedo,5/12/2016 5:12 +10236668,"Bitcoin Is Officially a Commodity, According to U.S. Regulator",http://www.bloomberg.com/news/articles/2015-09-17/bitcoin-is-officially-a-commodity-according-to-u-s-regulator,296,233,shill,9/17/2015 23:21 +10177307,Orange is the new $15 Raspberry Pi,http://hackaday.com/2015/09/05/orange-is-the-new-15-pi/,9,1,ck2,9/6/2015 10:45 +10732861,The High-Stakes Race to Rid the World of Human Drivers,http://www.theatlantic.com/technology/archive/2015/12/driverless-cars-are-this-centurys-space-race/417672/?single_page=true,107,155,zbravo,12/14/2015 18:38 +10229112,Lyft Announces Strategic Partnership with Didi,http://blog.lyft.com/posts/lyft-didi,145,76,mikedb,9/16/2015 19:22 +11534387,Why are big banks pulling out of investing? Is it fin tech?,,2,2,mikeyanderson,4/20/2016 13:56 +10782527,Whatagraph.com Infographic Google Analytics Reports,http://whatagraph.com/,29,20,domantas,12/23/2015 8:52 +11872255,Opt-In Your Apps into the iOS App Store Search Ads Beta,https://searchads.apple.com/beta-opt-in/,1,1,svarrall,6/9/2016 20:47 +10712688,Twilio IP Messaging: Now in Open Beta,https://www.twilio.com/docs/api/ip-messaging?utm_campaign=&utm_medium=email&utm_source=Eloqua&utm_content=PROD%20IP%20Messaging%20Public%20Beta%20DEC%2010%202015,2,1,as1ndu,12/10/2015 19:15 +10627154,"Jet.com Raises $350M, Expects $150M More",http://recode.net/2015/11/24/jet-lands-350-million-in-funding-with-potential-for-150-million-more/,44,47,kawera,11/25/2015 13:55 +10177459,Show HN: AppyPaper Gift wrap with app icons printed on it,http://www.appypaper.com/,6,4,submitstartup,9/6/2015 12:38 +11510741,Tata hit with $940M verdict for stealing Epic Systemss software,http://www.americanbazaaronline.com/2016/04/15/tata-group-hit-940-million-trade-secrets-verdict-stealing-epic-systems-corp-s-software/,6,2,geodel,4/16/2016 14:41 +10775969,App Developers on Swift Evolution,http://curtclifton.net/app-developers-on-swift-evolution,83,77,ingve,12/22/2015 5:13 +10758177,"Mars Rover Finds Changing Rocks, Surprising Scientists",http://www.nytimes.com/2015/12/18/science/mars-rover-finds-changing-rocks-surprising-scientists.html?hpw&rref=science&action=click&pgtype=Homepage&module=well-region®ion=bottom-well&WT.nav=bottom-well,72,10,hvo,12/18/2015 12:57 +10489150,Apparatus: A Hybrid Graphics Editor / Programming Environment [video],https://www.youtube.com/watch?v=i3Xack9ufYk,20,5,panic,11/2/2015 0:12 +11689396,Tutonota: An end-to-end encrypted email client and hosted service,https://github.com/tutao/tutanota,52,35,livatlantis,5/13/2016 9:12 +10460155,Show HN: Filldunphy.com (image placeholder service),http://filldunphy.com/,15,5,phenomnominal,10/27/2015 18:38 +10907886,Publishers Gave Away 123M Books During World War II,http://www.theatlantic.com/business/archive/2014/09/publishers-gave-away-122951031-books-during-world-war-ii/379893/?single_page=true,89,10,jrslv,1/15/2016 8:02 +10395111,"An App, KEAPO, where you can create private or public groups to sell things",,1,1,alexheikel,10/15/2015 18:44 +11310452,Yays,https://github.com/Bahlaouane-Hamza/Yays,1,1,quick2ouch,3/18/2016 7:52 +12445825,"Ask HN: When did the terms Front-End, Back-End, and Full-Stack become prevalent?",,2,2,ncarlson,9/7/2016 18:33 +12079108,"Arent more white people than black people killed by police? Yes, but no",https://www.washingtonpost.com/news/post-nation/wp/2016/07/11/arent-more-white-people-than-black-people-killed-by-police-yes-but-no?utm_term=.6968a4ebd9f9,2,1,laktak,7/12/2016 14:14 +11557184,Bad housing laws have turned San Francisco's tech boom into a crisis for Oakland,http://www.vox.com/2016/4/23/11490758/oakland-housing-crisis,9,2,jseliger,4/23/2016 20:06 +12270106,Typeshed: static types for the Python standard library,https://github.com/python/typeshed/,2,1,danblick,8/11/2016 17:28 +11071030,Friction Between Programming Professionals and Beginners,http://www.programmingforbeginnersbook.com/blog/friction_between_programming_professionals_and_beginners/,3,4,boyakasha,2/10/2016 6:09 +11673660,Headlines 'exaggerated' climate link to sinking of Pacific islands,http://www.theguardian.com/environment/2016/may/10/headlines-exaggerated-climate-link-to-sinking-of-pacific-islands,1,1,okket,5/11/2016 9:02 +12442397,Mercedes Benz and Matternet unveil vans that launch delivery drones,https://techcrunch.com/2016/09/07/mercedes-benz-and-matternet-unveil-vans-that-launch-delivery-drones/,48,29,endswapper,9/7/2016 11:30 +12552176,"Shaarli Personal, minimalist, database-free, bookmarking service",https://github.com/shaarli/Shaarli,97,51,dsr_,9/21/2016 20:58 +10380662,Optimizely Raises $58M,https://blog.optimizely.com/2015/10/13/optimizely-series-c-funding/,76,29,dsiroker,10/13/2015 14:27 +12420057,Ask HN: Breadth vs. Value in product design,,4,6,ErikVandeWater,9/3/2016 17:25 +12453535,How to Write a Spelling Corrector,http://norvig.com/spell-correct.html,401,126,colobas,9/8/2016 14:52 +11992467,2D Liquid Simulation in WebGL,https://github.com/Erkaman/gl-water2d,3,1,erkaman,6/28/2016 9:29 +10791461,"How to build a windmill part 2: Parts, nuts, bolts and blades (2012)",http://jacquesmattheij.com/how-to-build-a-windmill-ii,17,7,dominotw,12/25/2015 15:45 +10963883,Ask HN: How can I become smarter?,,6,7,_privateer,1/24/2016 20:29 +10233723,"What you should learn from the man who lost $600,000 on Facebook ads",http://adespresso.com/academy/blog/what-you-should-learn-from-the-man-who-lost-600000-on-facebook-ads/,42,26,smalter,9/17/2015 15:01 +11370840,Where's my petabyte disk drive?,http://bit-player.org/2016/wheres-my-petabyte-disk-drive,127,100,bit-player,3/27/2016 18:11 +11672557,Show HN: Skill Silo Live Language Tutoring via Skype,http://www.skillsilo.com,8,8,joshaharonoff,5/11/2016 3:57 +11490737,Important Changes to Mandrill,http://blog.mandrill.com/important-changes-to-mandrill.html#,2,1,napsterbr,4/13/2016 18:14 +11923739,Death to the Minotaur (2001),http://www.salon.com/2001/03/23/wizards/,1,1,gloriousduke,6/17/2016 16:54 +11374003,Gogs Go Git Service,https://gogs.io/,341,183,of,3/28/2016 13:07 +10796654,"If youre 30% through your life, that's 90% of your best relationships",http://qz.com/572284/the-tail-end/,8,2,rsanaie,12/27/2015 6:35 +11821644,Amazon.com (search) is down,,5,2,opendomain,6/2/2016 11:18 +11326244,Simulating the World (In Emoji),http://ncase.me/simulating/,4,1,colinprince,3/21/2016 4:29 +10362470,Berkley Astronomer Geoff Marcy Violated Sexual Harassment Policies,http://www.buzzfeed.com/azeenghorayshi/famous-astronomer-allegedly-sexually-harassed-students,8,5,BDGC,10/9/2015 18:50 +12363508,St. Jude Heart Devices Vulnerable to Hacks,http://www.bloomberg.com/news/articles/2016-08-25/in-an-unorthodox-move-hacking-firm-teams-up-with-short-sellers,9,4,maibaum,8/26/2016 0:28 +11622800,The sorry state of the blockchain,http://blog.luisivan.net/the-sorry-state-of-the-blockchain,8,3,luisivan,5/3/2016 17:53 +12138397,A visit by the CPT Whats it all about? (1999) [pdf],http://www.cpt.coe.int/en/documents/doc-visit-by-cpt.pdf,1,1,Tomte,7/21/2016 17:18 +10764467,Ask HN: How I do learn more about test driven development?,,1,2,jklein11,12/19/2015 19:01 +12338603,Sponge creates steam using ambient sunlight,http://news.mit.edu/2016/sponge-creates-steam-using-ambient-sunlight-0822,69,19,jimsojim,8/22/2016 19:09 +11712449,Cool URIs don't change (1998),https://www.w3.org/Provider/Style/URI.html,297,122,benjaminjosephw,5/17/2016 10:34 +10490500,"Psychosynth, a synthesizer and modular audio framework inspired by Reactable",http://psychosynth.com/index.php/Main_Page,55,8,MrBra,11/2/2015 7:19 +11411039,Ask HN: How critical was time-to-market?,,2,4,sigmaml,4/2/2016 10:47 +11598911,Apple Looks to Streamline Clarification of Awkward Autocorrect Messages,http://www.macrumors.com/2016/04/29/apple-autocorrect-messages-patent/,5,1,zy1t,4/29/2016 21:33 +11816961,Nothing Like These Hidden Temples Exist Outside of the Films of Indiana Jones,http://www.messynessychic.com/2016/06/01/nothing-like-these-hidden-temples-exist-outside-of-the-films-of-indiana-jones/,7,1,apo,6/1/2016 18:33 +10975800,Six Foods Bill Marler Never Eats,http://www.foodpoisonjournal.com/food-poisoning-information/six-foods-bill-marler-never-eats/#.VqeGABgrIy4,2,1,tetraodonpuffer,1/26/2016 20:32 +11212681,"If a Soyuz capsule lands in front of you, follow these instructions [pdf]",http://www.spaceref.com/iss/soyuz/SCLSaB.edit.pdf,261,73,marvel_boy,3/2/2016 20:17 +10314895,High-Speed Trading Firm Deleted Some Code by Accident,http://www.bloombergview.com/articles/2015-09-30/high-speed-trading-firm-deleted-some-code-by-accident,75,60,fahimulhaq,10/1/2015 21:31 +12298304,Show HN: Stranger Things Type Generator,http://makeitstranger.com/,3,1,thoughtpalette,8/16/2016 16:00 +11149542,What the literature says about the earnings of entrepreneurs,https://80000hours.org/2016/02/what-the-literature-says/,63,23,BenjaminTodd,2/22/2016 9:14 +10808538,How Amazon Has Clouded Wall Streets Vision,http://www.wsj.com/articles/how-amazon-has-clouded-wall-streets-vision-1451329791,2,1,gwintrob,12/29/2015 19:31 +10895731,Why Women Arent Buying Smartwatches,http://www.racked.com/2016/1/12/10750446/smartwatches-women-apple-huawei-jawbone,3,4,trextrex,1/13/2016 17:03 +12478538,"If your code accepts URIs as input, filter out file://",https://blog.steve.fi/If_your_code_accepts_URIs_as_input__.html,370,157,stevekemp,9/12/2016 10:38 +11878203,LAVA: prevent ticket fraud with Ethereum,http://www.lavamovement.com,5,1,dpwoert,6/10/2016 17:37 +10513982,Should we all become Software Engineers as a society?,https://medium.com/@manumish/should-we-all-become-software-engineers-as-a-society-6930b3171fb2,2,1,hack_mmmm,11/5/2015 15:52 +12192157,Show HN: Learn Japanese through classic short stories,https://languageinmotion.jp/,25,16,njrc9,7/30/2016 8:27 +11268993,Show HN: An experimental Python to C#/Go/Ruby/JS transpiler,http://github.com/alehander42/pseudo-python,14,1,alehander42,3/11/2016 19:45 +11044586,Primed Team High Performance Software Teams for Life,http://www.primedteam.com/,17,8,primedteam,2/5/2016 21:02 +11045891,Widest Roman Prime,https://blog.soff.es/widest-roman-prime,104,28,kellysutton,2/6/2016 0:47 +12285217,Explaining the Example in The Secret Life of Objects of Eloquent JavaScript,https://github.com/fhdhsni/The-Secret-Life-of-Objects,2,1,fhdhsni,8/14/2016 11:43 +12554849,Ask HN: Audio books for developers?,,2,1,source99,9/22/2016 6:25 +11159146,We're Not as Open-Minded as We Think We Are,http://lifehacker.com/were-not-as-open-minded-as-we-think-you-are-1759787196,2,1,DiabloD3,2/23/2016 14:47 +11525837,Battle of JavaScript: The 4 Frameworks Leading the Pack in 2016,http://blog.debugme.eu/javascript-frameworks-for-2016/,2,1,vittulino,4/19/2016 9:38 +11026673,Is Twitter Dead?,http://istwitterdead.com/,3,1,ducuboy,2/3/2016 14:45 +11411794,How to Start Running,http://www.nytimes.com/well/guides/how-to-start-running,179,159,dpflan,4/2/2016 15:11 +11372924,Show HN: Get hired as a team: Work with people you know,https://godlist.co/,1,1,soheil,3/28/2016 5:53 +11986411,"Obama hints at a future in VC, and Silicon Valley is salivating",http://qz.com/715765/hes-kind-of-perfect-for-the-job-obama-hints-at-a-future-in-vc-and-silicon-valley-is-salivating/,1,1,situationista,6/27/2016 14:39 +10554657,Rocket Fiber Launches 100GB/s Internet Service in Downtown Detroit,http://techcrunch.com/2015/11/12/rocket-fiber-launches-100gbs-internet-service-in-downtown-detroit/,157,110,prostoalex,11/12/2015 17:40 +11984351,"Node-Data is unique framework to support sql,nosql,graph in single ORM layer",https://github.com/ratneshsinghparihar/Node-Data,5,2,ratneshsingh,6/27/2016 5:33 +11031135,"Vorpal, a framework for building CLIs",http://vorpal.js.org/#,76,41,fidbit,2/4/2016 0:41 +12338746,Ask HN: Google Recruiter contact etiquette,,7,9,jbooj,8/22/2016 19:28 +10829184,IntelliJ IDEA and the whole IntelliJ platform migrates to Java 8,http://blog.jetbrains.com/idea/2015/12/intellij-idea-16-eap-144-2608-is-out/,184,137,ingve,1/3/2016 2:18 +10880864,The new way police are surveilling you: Calculating your threat score,https://www.washingtonpost.com/local/public-safety/the-new-way-police-are-surveilling-you-calculating-your-threat-score/2016/01/10/e42bccac-8e15-11e5-baf4-bdf37355da0c_story.html,7,1,diafygi,1/11/2016 14:23 +11971901,Intelligent People Will Be the Death of Us All,https://medium.com/@chalmers_brown/intelligent-people-will-be-the-death-of-us-all-f9d4ff93c832,1,1,chalmers,6/24/2016 17:49 +11389158,"My Last Lecture: How to Be a Bad Professor (Dave Patterson, UC Berkeley)",https://amplab.cs.berkeley.edu/40-year-goodbye-a-last-lecture-and-symposium/,6,3,yarapavan,3/30/2016 13:41 +11991647,The Moral Economy of Tech,http://idlewords.com/talks/sase_panel.htm,241,102,jmduke,6/28/2016 5:27 +12268010,Why Buyers Shunned the World's Largest Diamond,http://www.vanityfair.com/news/2016/08/why-buyers-shunned-the-worlds-largest-diamond,194,119,Thevet,8/11/2016 13:28 +11030868,Ask HN: What is your trusted system for GTD?,,17,15,gammabeta,2/3/2016 23:43 +12514534,Show HN: Apply to MuckRocks Thiel Fellowship,https://www.muckrock.com/news/archives/2016/sep/16/apply-thiel-fellowship/,5,1,morisy,9/16/2016 15:12 +10362855,GADTs Meet Their Match [pdf],http://research.microsoft.com/en-us/um/people/simonpj/papers/pattern-matching/gadtpm-acm.pdf,90,11,luu,10/9/2015 19:53 +11943094,So youre foolish enough to make satire for the App Store,https://medium.com/@everydayarcade/so-youre-foolish-enough-to-make-satire-for-the-app-store-9e5303acd47b#.b8o4qstlo,36,10,morisy,6/21/2016 2:25 +10201300,Ask HN: Any problems with the new TLDs?,,3,3,Monstergrep,9/11/2015 0:07 +12060954,Siemens Electric Airplane Flies Us Toward the Future,http://cleantechnica.com/2016/07/06/siemens-electric-airplane-flies-us-toward-future/,37,11,Osiris30,7/9/2016 11:18 +10653100,Ask HN: Do most startups work 65 hours a week?,,6,14,nullundefined,12/1/2015 1:24 +12229235,Ask HN: Will more women study computer science after smartphones and tablets?,,1,1,dnprock,8/4/2016 23:45 +10891958,Show HN: Grammar checker using deep learning,http://www.deepgrammar.com/,24,10,jmugan,1/13/2016 2:23 +11734881,Support for parallel ECDSA / RSA certificates,https://trac.nginx.org/nginx/ticket/814,82,17,runesoerensen,5/20/2016 0:25 +12437544,No more tl;dr,http://smartcuts.xyz/,2,1,kemyd,9/6/2016 17:14 +10320557,Experian Data Breach Affects 15 Million T-Mobile Customers,http://www.t-mobile.com/landing/experian-data-breach?clickid=Q5k0Ql3YCzvXVLxyOdwooSyIUkXRSjSqX10zxg0&iradid=189313&cmpid=WTR_AF_189313&irpid=10078&irgwc=1&clickid=wjqyZxzdDzY4Qh317IzUUQ%3AUUkXRjuzdwXF4ww0&iradid=187812&cmpid=WTR_AF_187812&irpid=27795&irgwc=1,3,1,glitcher,10/2/2015 19:05 +12190726,Venezuela has a shocking new forced labor law,https://news.vice.com/article/venezuela-has-a-new-forced-labor-law-that-can-require-people-work-in-fields,12,4,randomname2,7/29/2016 23:06 +10288274,The most accurate atomic clock,http://fusion.net/story/122667/this-is-the-most-accurate-atomic-clock-ever-made/,9,1,chapulin,9/27/2015 23:24 +12439605,Willpower and cognitive processing draw from the same pool of resources (2013),http://seriouspony.com/blog/2013/7/24/your-app-makes-me-fat,151,49,vharish,9/6/2016 22:03 +12302450,Showtime at the Musée DOrsay: Watching Varnish Dry,http://www.nytimes.com/2016/08/16/arts/design/showtime-at-the-musee-dorsay-watching-varnish-dry.html,31,2,prismatic,8/17/2016 4:08 +10202102,Should Facebook get into the business of smartphones,,1,1,yawarabbas,9/11/2015 5:08 +10833783,IPv6 celebrates its 20th birthday by reaching 10 percent deployment,http://arstechnica.com/business/2016/01/ipv6-celebrates-its-20th-birthday-by-reaching-10-percent-deployment/,2,1,alricb,1/4/2016 2:58 +12135906,BIP: Hard Fork to Return Seized Silk Road Bitcoin to Ross Ulbricht,http://elaineou.com/2016/07/20/bitcoin-improvement-proposal-hard-fork-to-return-stolen-silk-road-bitcoin-to-ross-ulbricht/,26,4,davidgerard,7/21/2016 10:26 +10850418,ISIS Jihadi Technical College Developing Driverless Car Bombs,http://news.sky.com/story/1617197/exclusive-inside-is-terror-weapons-lab,14,9,askdfjksdf,1/6/2016 13:44 +10321678,Linkedin 13M settlement over Add Connections [pdf],http://www.addconnectionssettlement.com/media/380939/settlementagreement.pdf,7,1,eric-hu,10/2/2015 22:16 +10391723,Murder in the Alps,http://www.gq.com/story/alps-murder-chevaline,167,55,dogecoinbase,10/15/2015 6:46 +10952895,Pbd Protocol Buffers Disassembler,https://github.com/rsc-dev/pbd,2,1,rsc-dev,1/22/2016 14:37 +10336817,What are valid intellectual professions?,https://bitcoinrevolt.wordpress.com/2015/10/06/what-are-valid-intellectual-professions,1,1,gizi,10/6/2015 4:55 +10647728,Tested: Why the iPad Pro really isn't as fast a laptop,http://www.pcworld.com/article/3006268/tablets/tested-why-the-ipad-pro-really-isnt-as-fast-a-laptop.html,71,75,bhauer,11/30/2015 4:34 +12256412,Ask HN: Why does Google 404 serve invalid HTML?,,1,2,philip1209,8/9/2016 17:50 +11604853,Persistent-memory error handling,https://lwn.net/Articles/684288,16,4,bootload,5/1/2016 4:19 +10806956,When coding style survives compilation: De-anonymizing programmers from binaries,https://freedom-to-tinker.com/blog/aylin/when-coding-style-survives-compilation-de-anonymizing-programmers-from-executable-binaries/,218,67,randomwalker,12/29/2015 15:06 +10531453,Image Compression on cakePHP,,1,1,FashomMitali,11/9/2015 4:50 +10900239,Show HN: Web app to build better products using visual feedback,http://www.zipboard.co,12,1,zipBoard,1/14/2016 8:45 +10792368,Physicists believe they can create matter from colliding photons,http://www.theguardian.com/science/2014/may/18/matter-light-photons-electrons-positrons,78,50,stonlyb,12/25/2015 21:14 +11641339,JCSAT-14 Hosted Webcast,https://www.youtube.com/watch?v=L0bMeDj76ig,4,1,MattF,5/6/2016 2:44 +11620304,Passion is Profit,https://medium.com/salt-of-the-earth/passion-is-profit-24ac39e22bdb,10,4,crc321,5/3/2016 13:18 +10851088,Ask HN: Why do companies struggle to find relevant insights in business data?,,3,3,cneumann81,1/6/2016 15:49 +12186263,Dark Patterns are designed to trick you (and theyre all over the Web),http://arstechnica.co.uk/security/2016/07/dark-patterns-what-are-they/,20,4,robin_reala,7/29/2016 12:00 +11694755,Ask HN: Peer to peer learning,,1,2,pal_25,5/14/2016 6:20 +11942503,Ask HN: What's the best way to leave a new job,,14,12,penguinlinux,6/20/2016 23:43 +11185930,Time and time again were forced to label new technology as Creepy?,https://www.linkedin.com/pulse/time-again-were-forced-label-new-technology-creepy-ankit-sehgal,2,3,ankitsehgal,2/27/2016 3:17 +12187512,After 100 years World War I battlefields are poisoned and uninhabitable,http://www.wearethemighty.com/articles/after-100-years-world-war-i-battlefields-are-poisoned-and-uninhabitable,485,270,sbjustin,7/29/2016 15:36 +12005453,"I quit, I'm going nomad",https://medium.com/@henriquebarroso/i-quit-im-going-nomad-7e7e06227313#.winv82y81,11,3,phatbyte,6/29/2016 23:00 +10778175,"Show HN: How I started to improve my life, one thought at a time",,3,1,pouria3,12/22/2015 15:15 +11359172,The story behind China's 'Minecraft' military camouflage,http://www.bbc.com/autos/story/20160324-the-story-behind-chinas-minecraft-military-camo,88,60,yannis,3/25/2016 9:26 +11351902,UK police chief advises banks not to compensate online fraud victims,https://thestack.com/security/2016/03/24/bernard-hogan-howe-do-not-compensate-online-fraud-victims/,5,1,twoshedsmcginty,3/24/2016 11:13 +11546055,Hierarchical Deep Reinforcement Learning vs. Montezuma's Revenge,http://arxiv.org/abs/1604.06057,1,2,dontreact,4/21/2016 23:30 +11295779,Music streaming has a nearly undetectable fraud problem,http://qz.com/615359/steady-chunks-of-money-are-being-quietly-illicitly-stolen-from-music-streaming/,5,2,winta,3/16/2016 8:17 +11774588,"Peter Thiel, Tech Billionaire, Reveals Secret War with Gawker",http://www.nytimes.com/2016/05/26/business/dealbook/peter-thiel-tech-billionaire-reveals-secret-war-with-gawker.html,262,323,uptown,5/26/2016 1:30 +10793532,Web Design is Dead,http://mashable.com/2015/07/06/why-web-design-dead/#KemqvvUL_mql,6,2,mau,12/26/2015 7:04 +10639932,Strategies for reclaiming our personal privacy online,http://www.theguardian.com/technology/2015/nov/26/online-privacy-security-tips,41,13,walterbell,11/28/2015 3:47 +10325650,OCLC prints last library catalog cards,https://www.oclc.org/en-US/news/releases/2015/201529dublin.html,12,1,tanglesome,10/3/2015 22:31 +11161399,Python 3 Function Overloading with singledispatch,http://www.blog.pythonlibrary.org/2016/02/23/python-3-function-overloading-with-singledispatch/,1,2,driscollis,2/23/2016 19:05 +10697185,Announcing the First Alpha Release of TiDB,http://www.pingcap.com/posts/alpha-release.html,12,1,c4pt0r,12/8/2015 16:06 +11044863,Elon Musk discusses an electric jet,https://futuristech.info/posts/video-elon-musk-could-electrify-the-world-again-with-an-electric-jet,2,1,jaxzin,2/5/2016 21:41 +12268714,Silicon Valleys geeks are trying to turn themselves into jocks,http://www.economist.com/news/business/21704834-silicon-valleys-geeks-are-trying-turn-themselves-jocks-revenge-nerds,16,21,rndmize,8/11/2016 14:58 +11403330,CNN reviews pull requests and fixes bugs of Spark,https://databricks.com/blog/2016/04/01/unreasonable-effectiveness-of-deep-learning-on-spark.html,9,4,wjp712,4/1/2016 7:36 +12358374,KDevelop 5.0.0 release,https://www.kdevelop.org/news/kdevelop-500-released,117,27,snovv_crash,8/25/2016 12:09 +11512534,Tech support of my dreams,http://imgur.com/PdFydhQ,2,2,ohjeez,4/16/2016 22:21 +10540348,IndiaHack 2016 Programming Competition,http://hck.re/NVhYnG,3,1,replyTo,11/10/2015 16:40 +10621369,Fontdeck is Retiring,http://us1.campaign-archive2.com/?u=262832f6c05900ce22e8b14b6&id=847cdd319d&e=024aead881,2,1,bigtunacan,11/24/2015 15:48 +12324598,How many ways can you tile a chessboard with dominoes?,http://www.johndcook.com/blog/2016/08/19/how-many-ways-can-you-tile-a-chessboard-with-dominoes/,5,1,bootload,8/20/2016 1:25 +10645518,"Loneliness may warp our genes, and our immune systems",http://www.npr.org/sections/health-shots/2015/11/29/457255876/loneliness-may-warp-our-genes-and-our-immune-systems,38,6,gpvos,11/29/2015 18:32 +12491171,Lookouts: a book of the making of a short monster movie,http://www.lookoutsshortfilm.com/the-book/,1,1,camtarn,9/13/2016 18:54 +10974904,Are you a Developer or an Engineer?,http://redqueencoder.com/are-you-a-developer-or-an-engineer/,5,2,ingve,1/26/2016 18:21 +11509461,Lyft gaining on Uber as it spends big on growth,http://www.sfgate.com/business/article/Lyft-gaining-on-Uber-as-it-spends-big-on-growth-7251625.php,176,130,timr,4/16/2016 5:41 +11883579,My Increasing Frustration with Clojure,http://ashtonkemerling.com/blog/2016/06/11/my-increasing-frustration-with-clojure/,274,233,village-idiot,6/11/2016 14:34 +11250987,Ask HN: What resource allocation strategies do IaaS providers use?,,1,2,push7joshi,3/9/2016 4:44 +11903177,Why and how your startup should hire foreign developers,https://medium.com/@lauremartin/why-and-how-your-startup-should-hire-foreign-developers-82758d79bb9#.ma76u7jy8,2,1,laurette,6/14/2016 16:31 +10663838,Ask HN: Feedback on text-based food delivery concept?,,2,5,jmzbond,12/2/2015 16:20 +11373295,Deep Learning with the Analytical Engine,https://gitlab.com/apgoucher/DLAE,33,2,vog,3/28/2016 8:53 +12387794,What is the fastest way to determine user's country using IP?,,1,2,postila,8/30/2016 5:46 +10446185,Show HN: A unique utility that free you from remembering passwords,http://sitepassword.azurewebsites.net/,2,1,sitepassword,10/25/2015 6:33 +12075197,Consciousness in the Aesthetic Imagination,https://www.metapsychosis.com/consciousness-in-the-aesthetic-imagination/,34,10,msekeris,7/11/2016 22:13 +12508783,Google Manager Ali Afshar Arrested,https://medium.com/@aliafshar/to-the-4-white-male-policemen-who-beat-me-for-checking-the-health-of-a-sick-black-man-in-their-8d77789fb24d#.wcq5i1y1i,17,3,dev1n,9/15/2016 18:57 +10275261,Ask HN: What SDK do you use in your mobile app?,,2,1,wkoszek,9/24/2015 22:38 +12360091,Reinforcement Learning and DQN learning to play from pixels,https://rubenfiszel.github.io/posts/rl4j/2016-08-24-Reinforcement-Learning-and-DQN.html#asynchronous-methods-for-deep-reinforcement-learning#,60,9,rubenfiszel,8/25/2016 16:00 +12146663,"The Meaning of Desolate, Amazing Photos of Abandoned Soviet Infrastructure",http://www.popularmechanics.com/technology/infrastructure/g2710/amazing-photos-of-abandoned-soviet-infrastructure/,2,1,geospeck,7/22/2016 20:50 +12387116,Ask HN: How do I hire for jobs I'm not an expert in?,,3,1,wfoweoi,8/30/2016 2:44 +10905809,"You Can't Destroy the Village to Save It: W3C vs. DRM, Round Two",https://www.eff.org/deeplinks/2016/01/you-cant-destroy-village-save-it-w3c-vs-drm-round-two,216,107,cpeterso,1/14/2016 23:50 +12475203,A Loud Sound Shut Down a Bank's Data Center for 10 Hours,http://motherboard.vice.com/read/a-loud-sound-just-shut-down-a-banks-data-center-for-10-hours,90,35,okket,9/11/2016 19:37 +11338411,Which is a better career launch pad. A large company or a medium size startup,,1,2,saks,3/22/2016 17:50 +10262800,Selfies are killing more people than shark attacks,http://www.slate.com/blogs/future_tense/2015/09/22/selfies_are_killing_more_people_than_shark_attacks.html,1,1,Amorymeltzer,9/23/2015 1:13 +12429390,The math of CSS locks,http://fvsch.com/code/css-locks/,126,22,bpierre,9/5/2016 10:47 +10208806,Sony Pictures Considered Buying BitTorrent Inc,https://torrentfreak.com/sony-pictures-considered-buying-bittorrent-inc-150912/,5,1,forlorn,9/12/2015 18:19 +10752649,Buffer Acquired Social Media Customer Service Tool Respondly,https://open.buffer.com/buffer-acquires-respondly/,49,4,chimpscanfly,12/17/2015 17:05 +10816974,BBC Down: The internet responds,http://www.wired.co.uk/news/archive/2015-12/31/bbc-down-respond,18,11,wedge14,12/31/2015 9:42 +11123039,YouTube copyright complaint kills Harvard professors legal copyright lecture,https://torrentfreak.com/youtube-copyright-complaint-kills-harvard-professors-copyright-lecture-160217/,2,1,jmount,2/18/2016 1:36 +10580343,Anonymous Operation Paris,https://www.youtube.com/watch?v=ybz59LbbACQ,12,1,GnwbZHiU,11/17/2015 11:10 +10298991,How do people feel about video dating app?,,1,1,heyujingjing,9/29/2015 19:41 +10262244,Did iOS 9 set millions of iPhone clocks to the wrong time?,http://www.volleythat.com/essays/2015/9/22/did-apple-just-set-millions-of-iphone-clocks-to-the-wrong-time,23,14,jameswilsterman,9/22/2015 22:52 +12553367,Libreboot Leaves the GNU,https://www.phoronix.com/scan.php?page=news_item&px=Libreboot-Not-GNU,6,3,MollyR,9/22/2016 0:17 +12141346,Peter Thiel: Fake Culture Wars Only Distract Us from Our Economic Decline,http://www.realclearpolitics.com/video/2016/07/21/thiel_fake_culture_wars_only_distract_us_from_our_economic_decline.html,47,91,spking,7/22/2016 2:23 +11148632,The Lawlessness of Medicine,https://lareviewofbooks.org/review/the-lawlessness-of-medicine,87,28,Petiver,2/22/2016 5:13 +12173422,Twitter's Fucked,http://degoes.net/articles/fuck-twitter,370,376,buffyoda,7/27/2016 15:10 +10524302,Why the Web Won't Be Nirvana,http://www.newsweek.com/clifford-stoll-why-web-wont-be-nirvana-185306,6,1,bemmu,11/7/2015 9:47 +11515981,Edward Snowden thinks a global iPhone attack will happen this year,http://www.popsci.com/edward-snowden-thinks-global-iphone-attack-will-happen-this-year,4,4,IamFermat,4/17/2016 19:49 +11026778,JavaFX is dead,https://www.codenameone.com/blog/should-oracle-spring-clean-javafx.html,2,1,fishyfishyy,2/3/2016 15:04 +12397235,Cloudron is now open source,https://cloudron.io/blog/2016-08-29-opensource.html,50,37,nebulon,8/31/2016 10:19 +10532642,My Year as a Pro-Russia Troll Magnet,http://kioski.yle.fi/omat/my-year-as-a-pro-russia-troll-magnet,245,147,ptaipale,11/9/2015 12:34 +11609308,RIP Kuro5hin,http://www.kuro5hin.org/,298,270,Jerry2,5/2/2016 5:14 +11305109,Little hacks: SMS YouTube,http://blog.messagebird.com/2016/03/little-hacks-sms-youtube,3,1,lgomezma,3/17/2016 15:50 +10583002,Interview with Scentbird (YC S15): women disrupting the fragrance industry,https://medium.com/@onlyaticon/the-women-who-disrupted-the-fragrance-industry-an-interview-with-the-scentbird-cofounders-4ea8cecdfd05,23,2,connieliu,11/17/2015 18:29 +12245886,The Nine Lives of Cat Videos,https://www.theguardian.com/australia-news/2016/aug/08/documents-immigration-secret-asylum-seeker-boats-accidentally-released-guardian-australia,1,1,bootload,8/8/2016 6:56 +10310307,Scientists are working on space-based solar panels,http://www.businessinsider.com/space-based-solar-panels-beam-unlimited-energy-to-earth-2015-9,6,11,ogezi,10/1/2015 10:57 +11422536,Not a single mention of Panama leaks on front page of NYTimes?,http://nytimes.com,5,5,atilev,4/4/2016 15:19 +11913480,Ask HN: Books of Problem Sets,,2,4,_spoonman,6/16/2016 1:59 +10528844,Data Saved in Quartz Glass Might Last 300M Years,http://www.scientificamerican.com/article/data-saved-quartz-glass-might-last-300-million-years/,73,32,pmoriarty,11/8/2015 16:10 +10601484,Show HN: Mole.js Front end error reporting with insight,http://molejs.github.io/index.html,3,1,filiptc,11/20/2015 15:08 +12338982,"Martin Shkreli Weighs in on EpiPen Scandal, Calls Drug Makers 'Vultures'",http://www.nbcnews.com/business/consumer/martin-shkreli-weighs-epipen-scandal-calls-drug-makers-vultures-n634451,8,7,subpar,8/22/2016 19:59 +11335398,iOS 9.3 Night Shift Is a Bust: Heres What You Can Do,https://jasonprall.com/2016/03/appleiosnightshift/,2,2,raulk,3/22/2016 9:52 +11227024,Ask HN: What are the most clever email collecting pop-overs that you've seen?,,2,2,Huhty,3/4/2016 21:35 +10747467,Parse Open Source Hub,http://parseplatform.github.io/,32,3,gfosco,12/16/2015 21:25 +11785623,Wirify turns any page into a Wireframe,https://www.wirify.com/,27,7,alixaxel,5/27/2016 12:45 +12071024,Effortless post deployment testing with GitHub,https://assertible.com/blog/effortless-post-deployment-testing-github#,3,1,creichert,7/11/2016 13:54 +10900462,When to join a startup,http://tomblomfield.com/post/136759441870/when-to-join-a-startup,338,113,tomblomfield,1/14/2016 10:08 +11986214,The emotional arcs of stories are dominated by six basic shapes,http://arxiv.org/abs/1606.07772,108,32,ehudla,6/27/2016 14:10 +11104471,Connect your Raspberry Pi to an enterprise wireless network,https://netbeez.net/2014/10/14/connect-your-raspberry-pi-to-wireless-enterprise-environments-with-wpa-supplicant/,2,1,sgridelli,2/15/2016 17:12 +10260578,"A self-contained, serverless, zero-configuration, document store",http://linux.die.net/man/3/stdio,9,7,tossie,9/22/2015 18:28 +11030663,Destroying worn-out cells makes mice live longer,http://www.nature.com/news/destroying-worn-out-cells-makes-mice-live-longer-1.19287,186,69,Someone,2/3/2016 23:10 +11638646,Fordlândia: A Midwestern Ghost Town in the Amazon Jungle,http://www.slate.com/blogs/atlas_obscura/2013/08/12/fordl_ndia_henry_ford_s_failed_rubber_town_in_the_amazon_jungle.html,1,1,danielsiders,5/5/2016 18:34 +11923474,MemberSpace add member logins to Squarespace,https://www.mymemberspace.com/,1,1,wardly_320,6/17/2016 16:11 +11051158,21 JavaScript Answers on Quora Every Developer Must Read,https://josecasanova.com/blog/21-javascript-answers-on-quora-every-developer-must-read/,6,2,jcsnv,2/7/2016 2:00 +11310386,This VC says Dropbox's recent moves show why companies often fail to innovate,http://www.businessinsider.in/This-VC-says-Dropboxs-recent-moves-show-why-big-companies-often-fail-to-innovate/articleshow/51449745.cms,1,1,tim333,3/18/2016 7:22 +10712093,"Tell HN: iOS 10 will use lots of dark backgrounds, be ready for the design shift",,3,3,msoad,12/10/2015 17:54 +11466125,A fleet of trucks just drove themselves across Europe,http://qz.com/656104/a-fleet-of-trucks-just-drove-themselves-across-europe/,51,12,mhb,4/10/2016 14:04 +11462984,Avoiding the Trap: Learning to Recognize Burnout,https://medium.com/@jamis/avoiding-the-trap-8df59e718f3e#.5qeelfmgp,1,1,milesf,4/9/2016 19:53 +11252550,The impact of syntax colouring on program comprehension [pdf],http://www.ppig.org/sites/default/files/2015-PPIG-26th-Sarkar.pdf,1,1,edward,3/9/2016 12:30 +12377133,German economy minister says EU-US trade talks have failed,http://bigstory.ap.org/611ff828b5ed44d5ad56ab46e0781e52,112,74,paol,8/28/2016 16:26 +11006940,A first look at zsun WiFi SD card reader,https://www.nu42.com/2016/01/zsun-wifi-card-reader-openwrt.html,4,2,nanis,1/31/2016 16:52 +11733919,"Chance to win 100 tickets to Google I/O'17 Firebase.foo, ARG from Firebase",https://firebase.foo,2,1,altryne1,5/19/2016 21:15 +12304046,Ask HN: Why are modern Intel CPUs not getting a lot more cores?,,40,69,trapperkeeper79,8/17/2016 12:12 +11977329,Brexit and the Failure of Western Establishment Institutions,https://theintercept.com/2016/06/25/brexit-is-only-the-latest-proof-of-the-insularity-and-failure-of-western-establishment-institutions/,168,181,benaadams,6/25/2016 18:17 +11281715,Having best friend as co-founder (non-technical),,1,2,terrafield,3/14/2016 8:51 +11416367,SixXS IPv6 Deployment and Tunnel Broker,https://www.sixxs.net/main/,1,1,based2,4/3/2016 15:13 +12440369,One Second Every Day,http://www.johnwittenauer.net/one-second-every-day/,3,1,jdwittenauer,9/7/2016 1:06 +12518217,Florida sinkhole causes radioactive water to leak into aquifer,http://www.bbc.co.uk/news/world-us-canada-37390562,4,2,jburgess777,9/16/2016 23:47 +11256272,Ask HN: Any coding workflow for using the repl?,,1,2,tonyle,3/9/2016 22:51 +11174407,Forthcoming OpenSSL releases,https://mta.openssl.org/pipermail/openssl-announce/2016-February/000063.html,119,25,currysausage,2/25/2016 13:59 +12154232,The association between cannabis use and suicidality among men and women,http://www.sciencedirect.com/science/article/pii/S0165032716304906,45,51,nashke,7/24/2016 18:37 +11266102,Shocking unification reduces disparate spin models to just one,http://www.sciencemag.org/news/2016/03/shocking-unification-reduces-lot-tough-physics-problems-just-one?utm_campaign=email-news-latest&et_rid=17042337&et_cid=332196,68,15,croller,3/11/2016 12:11 +11569882,Ask HN: Is Let's Encrypt for CPanel Trustworthy?,,4,2,exolymph,4/26/2016 6:42 +10423447,Automatic SIMD vectorization support in PyPy,http://morepypy.blogspot.com/2015/10/automatic-simd-vectorization-support-in.html,95,21,wyldfire,10/21/2015 3:08 +10985775,The Dark Side of Cryptography: Kleptography in Black-Box Implementations (2003),http://www.infosecurity-magazine.com/magazine-features/the-dark-side-of-cryptography-kleptography-in/,12,1,jonbaer,1/28/2016 2:46 +10591169,Ask HN: How do I get started with open source?,,1,1,haack,11/18/2015 22:15 +12171567,From killing machines to agents of hope: the future of drones in Africa,https://www.theguardian.com/world/2016/jul/27/africas-drone-rwanda-zipline-kenya-kruger,20,2,runesoerensen,7/27/2016 9:45 +12569695,Gcpp Experimental deferred and unordered destruction library for C++,https://github.com/hsutter/gcpp,66,14,ingve,9/24/2016 6:19 +11305356,The Beta Program Behind a Startup's Winning Launch,http://firstround.com/review/the-beta-program-behind-this-startups-winning-launch/?ct=t(How_Does_Your_Leadership_Team_Rate_12_3_2015),11,5,zt,3/17/2016 16:19 +11017661,Uninstalling Facebook app saves up to 20% of Android battery life,http://www.theguardian.com/technology/2016/feb/01/uninstalling-facebook-app-saves-up-to-20-of-android-battery-life?CMP=Share_AndroidApp_reddit_is_fun,1,2,JoneyKing,2/2/2016 4:36 +10928516,Time for a new dev machine just get a NUC?,,6,8,intrasight,1/19/2016 2:23 +10468087,"2M concurrent clients on Phoenix (Elixir) benchmark (40 core, 128GB)",https://twitter.com/chris_mccord/status/659430661942550528,12,1,haukur,10/28/2015 23:13 +10342105,"Apple Approves an App That Blocks Ads in Native Apps, Including Apple News",http://techcrunch.com/2015/10/06/apple-approves-an-app-that-blocks-ads-in-native-apps-including-apple-news/#.6qjorz:cICn,1,1,confiscate,10/6/2015 20:28 +10776967,Ask HN: What happens after your site is ready for launch? How to get traffic?,,4,6,supersan,12/22/2015 10:55 +12003892,Klipse plugin for JavaScript JSFiddle,https://jsfiddle.net/viebel/50oLnykk/,2,1,viebel,6/29/2016 19:06 +11739824,The mystery of the blend (2009),http://www.atmind.nl/blender/mystery_ot_blend.html,5,1,Tomte,5/20/2016 17:38 +12299045,Ask HN: Invite me to lobste.rs,,5,5,ffggvv,8/16/2016 17:33 +10418762,React native on windows with android sdk,http://davidanderson.io/2015/10/18/a-step-by-step-guide-to-react-native-on-windows/,2,1,jdelgado2002,10/20/2015 12:40 +10216839,"You're not irrational, you're just quantum probabilistic",http://phys.org/news/2015-09-youre-irrational-quantum-probabilistic-human.html,23,17,jedharris,9/14/2015 19:08 +12310075,Is anybody else using ridiculously long variable names?,,20,48,amorroxic,8/18/2016 2:36 +10815186,Twitters updated Mac app wasnt made by Twitter,http://www.theverge.com/2015/12/30/10691290/twitter-mac-outsourced,155,87,coloneltcb,12/30/2015 23:47 +10921591,Memcmp requires pointers to fully valid buffers,http://trust-in-soft.com/memcmp-requires-pointers-to-fully-valid-buffers/,19,1,osivertsson,1/17/2016 23:26 +10329627,Scientific/Coding/Invention Challange A hedge fund algorithm,,3,2,meeper16,10/5/2015 2:14 +11278363,Daylight Saving Time: Why Does It Exist? (Its Not for Farming),http://www.nytimes.com/2016/03/12/us/daylight-saving-time-farmers.html,3,1,aaronbrethorst,3/13/2016 17:03 +11921679,"Facebook dumped Messenger from Facebook app,now brings Facebook inside Messenger",http://newsroom.fb.com/news/2016/06/messenger-makes-it-even-easier-to-start-conversations/,1,1,tdkl,6/17/2016 10:04 +11066608,Show HN: Easily manage Firefox hidden privacy settings (plugin),https://github.com/UnGround/netmask-privacy-plugin,1,1,BCharlie,2/9/2016 16:48 +11506300,OpenBR: Open-Source Biometric Recognition,http://openbiometrics.org/,54,3,JDDunn9,4/15/2016 17:54 +11486977,Show HN: Media Archive with CORS API,https://restdb.io/blog/#!posts/570d28ae385af21e000000af,2,1,knutmartin,4/13/2016 10:11 +10611447,Patrick Collison's Bookshelf,http://patrickcollison.com/bookshelf,11,1,jellyksong,11/22/2015 20:51 +12101060,Inky 3 Encrypted emails using ANY email provider,,8,3,tatoalo,7/15/2016 14:14 +11166504,Docker for an Existing Rails Application,http://chrisstump.online/2016/02/20/docker-existing-rails-application/,1,1,cstump,2/24/2016 13:28 +11616759,Ask HN: How do you learn to read source code?,,5,7,ywecur,5/2/2016 23:49 +11116934,"Kimono, webscraper, disappearing as a service. App to mend transitional issues",http://blog.kimonolabs.com/2016/02/15/the-kimono-team-is-joining-palantir/,3,2,eklem,2/17/2016 10:52 +10673832,Read It Aloud and Weep: Controversy Surrounds Kindle Text-To-Speech (2009),http://sunsteinlaw.com/read-it-aloud-and-weep-controversy-surrounds-text-to-speech-feature-of-amazons-kindle-reader/,4,4,walterbell,12/4/2015 0:33 +11956086,Tell HN: HackerNews is the greatest site to browse in Cuba,,15,7,ChicagoBoy11,6/22/2016 18:49 +10479595,Ask HN: How to learn Rust without learning to program?,,1,5,sanosuke,10/30/2015 18:28 +10832424,Ask HN: What's the difference between SF and NY tech work culture?,,17,3,aurelius83,1/3/2016 21:14 +12300566,Pesticide link to long-term wild bee decline in 18 year study,http://www.bbc.co.uk/news/science-environment-37089385,191,99,chestnut-tree,8/16/2016 20:54 +10726456,Whites earn more than blacks even on eBay,https://www.washingtonpost.com/news/wonk/wp/2015/12/11/whites-earn-more-than-blacks-even-on-ebay/,3,2,mhb,12/13/2015 14:49 +11939787,Next Silicon Valley (list),http://brighton.io/Next_Silicon_Valley,39,44,achille,6/20/2016 17:57 +12102562,The Darkness Before the Right,https://theawl.com/the-darkness-before-the-right-84e97225ac19#.4gic29jrj,2,1,myrrh,7/15/2016 17:31 +10632208,Ask HN: How much would the Raspberry Pi Zero cost in the 1980's?,,3,3,gloves,11/26/2015 9:55 +10335918,Y Combinator's Altman: What I Worry About in Business [video],http://www.bloomberg.com/news/videos/2015-09-24/y-contributor-s-altman-what-i-worry-about,115,49,roybahat,10/6/2015 0:07 +10247943,Time for vinyl to get back in its groove after pressing times,http://www.theguardian.com/music/2015/sep/20/music-vinyl-records-new-pressing-plant-portland-oregon,28,27,tintinnabula,9/20/2015 15:50 +10226164,Irving TX 9th-grader arrested after taking homemade electronic clock to school,http://www.dallasnews.com/news/community-news/northwest-dallas-county/headlines/20150915-irving-9th-grader-arrested-after-taking-homemade-clock-to-school.ece,3,1,linkydinkandyou,9/16/2015 12:55 +10470867,[XSA-148] x86: Uncontrolled creation of large page mappings by PV guests,http://xenbits.xen.org/xsa/advisory-148.html,7,1,yuvadam,10/29/2015 13:40 +11631916,Node OS,https://node-os.com/,58,47,ajones,5/4/2016 21:17 +10815671,The blue-eyed islanders puzzle (2008),https://terrytao.wordpress.com/2008/02/05/the-blue-eyed-islanders-puzzle/,42,44,networked,12/31/2015 1:57 +12262778,Algorithms that select which algorithm should play which game,http://togelius.blogspot.com/2016/08/algorithms-that-select-which-algorithm.html,63,22,togelius,8/10/2016 16:08 +12274564,What Danes consider healthy childrens television,http://www.economist.com/blogs/prospero/2016/08/don-t-need-no-education,355,195,CraneWorm,8/12/2016 10:53 +10588844,Announcing Visual Studio Dev Essentials,https://my.visualstudio.com,3,1,dstaheli,11/18/2015 16:45 +11225547,The Best Textbooks on Every Subject,http://lesswrong.com/lw/3gu/the_best_textbooks_on_every_subject/,22,2,saint_fiasco,3/4/2016 17:59 +12465818,Have you ever smoked weed? Answer this question and you could be banned from US,http://www.cbc.ca/news/politics/pot-border-banned-waiver-1.3752278,60,64,dgudkov,9/9/2016 20:30 +12285503,Deliveroo courier strike,http://www.independent.co.uk/news/business/news/deliveroo-courier-strike-employers-national-living-wage-government-department-for-business-a7189126.html,27,2,danohu,8/14/2016 13:31 +10215239,Ask HN: Is it common knowledge that Yahoo benefits from (relies on?) adware?,,1,1,superplussed,9/14/2015 14:34 +11295088,Snoopers' Charter: Government Wins Vote on Investigatory Powers Bill,http://www.telegraph.co.uk/news/politics/12194441/Snoopers-Charter-Parliamentary-vote-on-the-investigatory-powers-bill-live-updates.html,13,3,dubwubz,3/16/2016 4:50 +12390693,Welcome to the Job Interview: Quirky Questions and Awesome Answers,http://journal.wozber.com/welcome-to-the-job-interview-quirky-questions-and-awesome-answers/,2,1,Azuolas,8/30/2016 14:56 +10577981,"A distributed, tag-based pub-sub service for modern web applications",https://github.com/nanopack/mist,67,32,sdomino,11/16/2015 23:05 +11289705,The Origin of QWERTY,http://hackaday.com/2016/03/15/the-origin-of-qwerty/,90,32,fauria,3/15/2016 14:10 +11467813,Apply HN: Townsourced A locally moderated community bulletin board,,4,1,tshannon,4/10/2016 19:46 +12494062,Recruiting process gone dark,,1,4,jwalker14,9/14/2016 3:28 +11528157,Is it just me or past few days we are seeing lot of Echo related news/stories?,,23,2,mrunal,4/19/2016 16:38 +11033260,Allowing Matlab to Talk to Rust,http://smitec.io/2016/02/04/allowing-matlab-to-talk-to-rust.html,64,11,smitec,2/4/2016 11:19 +11161782,The US has gone F&*%ing mad,https://medium.com/@jamesallworth/the-u-s-has-gone-f-ing-mad-52e525f76447#.c5wkyjqdp,30,29,TheBiv,2/23/2016 19:56 +10710650,National Society of Professional Engineers Code of Ethics,http://www.nspe.org/resources/ethics/code-ethics,3,1,jacquesm,12/10/2015 14:13 +10296786,Building your own MMDB databases for IP-specific data,http://blog.maxmind.com/2015/09/29/building-your-own-mmdb-database-for-fun-and-profit/#more-154,3,1,oalders,9/29/2015 15:00 +12008976,How China Took Center Stage in Bitcoins Civil War,http://www.nytimes.com/2016/07/03/business/dealbook/bitcoin-china.html?module=WatchingPortal®ion=c-column-middle-span-region&pgType=Homepage&action=click&mediaId=thumb_square&state=standard&contentPlacement=6&version=internal&contentCollection=www.nytimes.com&contentId=http%3A%2F%2Fwww.nytimes.com%2F2016%2F07%2F03%2Fbusiness%2Fdealbook%2Fbitcoin-china.html&eventName=Watching-article-click&_r=0,1,1,methehack,6/30/2016 14:59 +11851468,Man indicted for disabling red light cameras faces 7 years in prison,http://arstechnica.com/tech-policy/2016/06/man-indicted-for-disabling-red-light-cameras-faces-7-years-in-prison/,6,1,shawndumas,6/6/2016 23:59 +11817758,"King Tut's dagger blade made from meteorite, study confirms",http://www.cbc.ca/beta/news/technology/king-tut-dagger-1.3610539,223,62,benbreen,6/1/2016 20:14 +12211088,"This Time, Miller and Valasek Hack the Jeep at Speed",http://www.darkreading.com/vulnerabilities---threats/this-time-miller-and-valasek-hack-the-jeep-at-speed/d/d-id/1326468,24,11,adamnemecek,8/2/2016 16:28 +12149081,The Role of Higher Education in Entrepreneurship,https://techcrunch.com/2016/07/21/the-role-of-higher-education-in-entrepreneurship/,1,1,mpbm,7/23/2016 10:41 +10553992,Notify by Facebook is a Hooks clone?,http://novobrief.com/hooks-app-notifications/,14,2,kozkozkoz,11/12/2015 16:10 +12229340,Ask HN: How did you recover from failure?,,4,3,lighttower,8/5/2016 0:21 +10764246,CRM for HR,,1,3,djrules24,12/19/2015 17:54 +10265099,Color film was built for white people. Here's what it did to dark skin,http://www.vox.com/2015/9/18/9348821/photography-race-bias,3,6,jtr1,9/23/2015 14:17 +11079863,BigchainDB: A scalable blockchain database,https://www.bigchaindb.com/,47,7,trentmc,2/11/2016 13:10 +12274456,The Rise and Fall of Quicksand,http://www.slate.com/articles/health_and_science/science/2010/08/terra_infirma.html,2,1,andrelaszlo,8/12/2016 10:28 +10400947,Ask HN: How to switch from software engineering to sales,,2,4,asimjalis,10/16/2015 17:54 +10444957,Visualizing popular machine learning algorithms,http://jsfiddle.net/wybiral/3bdkp5c0/embedded/result/,195,38,ingve,10/24/2015 21:41 +10492664,Back to the Futu-Rr-e: Deterministic Debugging with Rr,http://fitzgeraldnick.com/weblog/64/,61,9,mnemonik,11/2/2015 16:14 +12455844,Google's clever plan to stop Daesh recruits,https://www.wired.com/2016/09/googles-clever-plan-stop-aspiring-isis-recruits/,5,1,dragonbonheur,9/8/2016 18:34 +11409795,The College of Chinese Wisdom: Confucius,http://www.wsj.com/articles/the-college-of-chinese-wisdom-1459520703,47,19,T-A,4/2/2016 1:33 +10573315,'Armchair woodchoppers' make DIY timber guide surprise bestseller,http://www.theguardian.com/books/2015/nov/16/armchair-woodchoppers-guide-surprise-bestseller-norwegian-wood,10,3,yitchelle,11/16/2015 8:47 +10642548,"Musings on AOT, JIT and Language Design",http://pointersgonewild.com/2015/11/28/musings-on-aot-jit-and-language-design/,51,65,ingve,11/28/2015 21:38 +11771552,Visas CEO just threatened to go after PayPal,http://www.recode.net/2016/5/25/11768854/visa-ceo-paypal-threat,2,1,protomyth,5/25/2016 17:35 +11146080,Welcome to the Python Engineering blog,https://blogs.msdn.microsoft.com/pythonengineering/2016/02/12/welcome/,147,61,tanlermin,2/21/2016 19:34 +10378252,Ask HN: Is it okay to change jobs within a year of starting?,,18,15,confImmigr,10/13/2015 2:36 +11972051,9 Best Practices for DevOps,http://www.datamation.com/applications/9-best-practices-for-devops-1.html,3,2,avitzurel,6/24/2016 18:08 +10406437,Show HN: Machine-learning used to suggest extra destinations to fly,https://www.producthunt.com/tech/questorganizer,3,1,madidi707,10/17/2015 22:34 +11469332,Red Hat to support .NET,http://developers.redhat.com/webinars/net-on-rhel-sneak-peek/,44,5,Enindu,4/11/2016 2:44 +10638107,Japan recognizes Cyberdynes robotic suit as medical device,http://www.japantimes.co.jp/news/2015/11/26/business/tech/homegrown-robotic-suit-gets-recognized-medical-device-japan/,25,15,adventured,11/27/2015 17:34 +10714423,Bruce Schneier: Wanted: Cryptography Products for Worldwide Survey,https://www.schneier.com/blog/archives/2015/09/wanted_cryptogr.html,19,1,tete,12/10/2015 23:30 +11070455,Hand reactions to 3 letter words,http://hands.wtf/,4,1,baldajan,2/10/2016 2:51 +11514499,Poll: Vast majority of Americans don't trust the news media,http://bigstory.ap.org/article/35c595900e0a4ffd99fbdc48a336a6d8/poll-vast-majority-americans-dont-trust-news-media,6,2,randomname2,4/17/2016 14:01 +12305180,NASA launches a free public archive of its recent research results,http://thenextweb.com/insider/2016/08/17/pubspace-one-stop-shop-nasas-public-research/,2,1,maxoliver,8/17/2016 14:58 +11635647,Elsevier Complaint Shuts Down Sci-Hub Domain Name,https://torrentfreak.com/elsevier-complaint-shuts-down-sci-hub-domain-name-160504/,450,227,yunque,5/5/2016 12:59 +11664660,It's time to rethink mandatory password changes,https://www.ftc.gov/news-events/blogs/techftc/2016/03/time-rethink-mandatory-password-changes,5,2,Sukotto,5/10/2016 1:36 +12472028,Bing advertisement URL exploit,,2,2,tylerhou,9/11/2016 4:38 +10725983,Open source effort to bring open biomedical data together anyone interested?,http://inspiratron.org/blog/2015/12/12/open-source-effort-to-bring-all-open-biomedical-data-together/,83,22,nikolamilosevic,12/13/2015 10:24 +10310266,Ask HN: Computer Generated Non-Existant Human Face (realistic)?,,1,1,frade33,10/1/2015 10:40 +10351351,Crit-bit tries without allocation,http://fanf.livejournal.com/137485.html,22,1,luu,10/8/2015 7:32 +10265508,Show HN: Namesmith.io Business Name Generator,https://namesmith.io,20,11,ZenSwordArts,9/23/2015 15:15 +10827820,Just Subtract Water: The Los Angeles River,https://lareviewofbooks.org/essay/just-subtract-water-the-los-angeles-river-and-a-robert-moses-with-the-soul-of-a-jane-jacobs,8,1,e15ctr0n,1/2/2016 20:39 +10387061,Being Poor,http://whatever.scalzi.com/2005/09/03/being-poor/,31,7,ecopoesis,10/14/2015 15:13 +10671831,OpenSSL Security Advisory,https://www.openssl.org/news/secadv/20151203.txt,149,61,jgrahamc,12/3/2015 19:16 +11839903,Ask HN: Top stories and best stories in the HN API?,,3,1,kiloreux,6/5/2016 6:29 +12170200,Spammers Abuse GitHub by Forking Unreal Engine,https://github.com/HelloKitty/PokemonGoDesktop.Unity.Game/issues/1,3,3,Benjamin_Dobell,7/27/2016 2:55 +11645536,Inside the Magic Pocket,https://blogs.dropbox.com/tech/2016/05/inside-the-magic-pocket/,115,29,hepha1979,5/6/2016 17:53 +10729129,"Amir D. Aczel, author of Fermats Last Theorem, has died",https://www.washingtonpost.com/entertainment/books/amir-d-aczel-author-of-fermats-last-theorem-and-other-best-sellers-dies/2015/12/12/4e4b88aa-9de0-11e5-bce4-708fe33e3288_story.html,43,8,percept,12/14/2015 2:40 +10835977,Building a Startup in 45 Minutes per Day While Deployed to Iraq,http://mattmazur.com/2016/01/04/building-a-startup-in-45-minutes-per-day-while-deployed-to-iraq/,8,1,matt1,1/4/2016 15:17 +11982319,Kodect - Get your development tasks done by skilled coders,https://kodect.com,2,1,agustind,6/26/2016 19:43 +11229020,Show HN: file.pizza - WebRTC p2p file sharing webapp,https://file.pizza/,4,1,simon_vetter,3/5/2016 9:58 +12502336,Leaked Apple emails reveal employees' complaints about toxic work environment,https://mic.com/articles/154169/leaked-apple-emails-reveal-employees-complaints-about-sexist-toxic-work-environment#.zw8upJ7sg,126,234,apu,9/15/2016 0:02 +11213479,Show HN: Collapse Comments on Hacker News,https://chrome.google.com/webstore/detail/hacker-news-collapse/pdlifinplmfmoeppfooipommbdljhdmp,93,78,Igglyboo,3/2/2016 22:17 +10188889,Macromedia Flash A New Hope for Web Applications (2002) [pdf],http://www.uie.com/publications/whitepapers/FlashApplications.pdf,42,29,MrBra,9/8/2015 23:56 +10791063,Erd?sBacon number,https://en.wikipedia.org/wiki/Erd%C5%91s%E2%80%93Bacon_number,2,1,BerislavLopac,12/25/2015 12:28 +12442257,Ask HN: Why Twitter,,2,6,DanielBMarkham,9/7/2016 11:02 +11388131,Git 2.8.0 released,https://lkml.org/lkml/2016/3/28/436,278,55,jjuhl,3/30/2016 9:51 +10615107,Impact of Interest Rate Changes on the Automobile Market,http://libertystreeteconomics.newyorkfed.org/2015/11/end-of-the-road-impact-of-interest-rate-changes-on-the-automobile-market.html#.VlMwU66rQ6g,7,4,bpolania,11/23/2015 15:34 +10382577,Ask HN: I can't make the Lean Startup Conference want to buy my ticket?,,5,3,rmkahler,10/13/2015 18:48 +11650967,Tesla crash after flying 82 feet in the air shows importance of a crumple zone,http://electrek.co/2016/05/06/tesla-model-s-crash-large-crumple-zone-gallery/,296,181,vinnyglennon,5/7/2016 19:24 +11292539,Thomas Jefferson and Apple versus the FBI,https://blog.cr.yp.to/20160315-jefferson.html,217,51,lx,3/15/2016 20:02 +10657811,Why is Germany so obsessed with Hamlet?,http://www.newstatesman.com/culture/music-theatre/2015/11/why-germany-so-obsessed-hamlet,12,24,lermontov,12/1/2015 18:56 +10563236,Bank of England Bludges on Bitcoin to Create a Cashless Society,http://www.newsbtc.com/2015/11/13/bank-of-england-bludges-on-bitcoin-to-create-a-cashless-society/,2,1,positron4,11/13/2015 23:39 +12331146,Ask HN: Which payment provider do you use?,,3,4,bert2002,8/21/2016 15:03 +11598859,Ask HN: How do you think this site works?,,1,2,aerovistae,4/29/2016 21:24 +11267047,Badoo switched to PHP7 and saved $ 1M,https://translate.google.fr/translate?hl=fr&sl=auto&tl=en&u=https%3A%2F%2Fhabrahabr.ru%2Fcompany%2Fbadoo%2Fblog%2F279047%2F,5,2,cellover,3/11/2016 15:16 +11114034,Yahoo just pulled the plug on its Google-like research group,http://www.businessinsider.com/yahoo-labs-to-integrate-with-product-groups-2016-2,3,4,santaclaus,2/16/2016 23:45 +10355839,Full Speed Ahead with HTTP/2 on Google Cloud Platform,http://googlecloudplatform.blogspot.com/2015/10/Full-Speed-Ahead-with-HTTP2-on-Google-Cloud-Platform.html,64,10,waffle_ss,10/8/2015 20:15 +11476880,Ask HN: Alternatives to Credit Rating Agency Cartel,,1,1,Kinnard,4/12/2016 2:51 +11176072,Virginia considers bill to withhold all officers names,https://www.washingtonpost.com/news/true-crime/wp/2016/02/24/secret-police-virginia-considers-bill-to-withhold-all-officers-names/,2,1,morisy,2/25/2016 17:37 +10549703,Ask HN: Who hires Infosys and Cognizant?,,11,6,Taylor_OD,11/11/2015 22:09 +11801738,Show HN: Free and simple platform for creating visualisation with data maps,http://datamaps.co/,5,3,caspg,5/30/2016 15:28 +11609619,Creator of Bitcoin digital cash reveals identity,http://www.bbc.com/news/technology-36168863,105,15,joewalker,5/2/2016 7:05 +10487680,NASA Study: Mass Gains of Antarctic Ice Sheet Greater Than Losses,http://www.nasa.gov/feature/goddard/nasa-study-mass-gains-of-antarctic-ice-sheet-greater-than-losses,148,165,adventured,11/1/2015 19:14 +10471485,Lobbyists Win Right to Bombard Student Borrowers with Robocalls,https://theintercept.com/2015/10/28/boehnerland-lobbyists-win-right-to-bombard-student-borrowers-with-robocalls/,117,109,boh,10/29/2015 14:58 +11080315,'What if?': Why we can't get enough of counterfactual shows,http://www.theguardian.com/tv-and-radio/tvandradioblog/2016/feb/11/counterfactuals-man-in-high-castle-11-22-63,2,1,ikeboy,2/11/2016 14:33 +11777856,Ask HN: Are eshares' 409a valuations independent and able to withstand audits?,,5,2,Dawoodi,5/26/2016 13:45 +11768536,"Microsoft is cutting 1,000 jobs in Finland as it stops phone production",http://uk.businessinsider.com/microsoft-cutting-1000-jobs-in-finland-as-it-ends-phone-production-report-2016-5,192,69,dacm,5/25/2016 9:06 +10741318,Simplicity isn't simple Delphi's design principles,http://removingalldoubt.com/programming/2015/07/23/simplicity-isnt-simple/,51,5,clouddrover,12/15/2015 23:39 +10512775,Learn data science in python by taking online course,http://www.dezyre.com/data-science-in-python/36,1,1,shankar251289,11/5/2015 11:34 +10876621,Performance is a Feature,http://blog.codinghorror.com/performance-is-a-feature/,1,3,Kinnard,1/10/2016 19:04 +12509401,Ford moving all production of small cars from U.S. to Mexico,http://www.usatoday.com/story/money/cars/2016/09/14/ford-moving-all-production-small-cars-mexico/90354334/,90,60,ourmandave,9/15/2016 20:07 +11415842,"Build sports car, use money to build affordable car",https://www.teslamotors.com/blog/secret-tesla-motors-master-plan-just-between-you-and-me,4,1,shekhar101,4/3/2016 12:08 +10844004,What powers Facebook and Google's AI and how computers could mimic brains,http://theconversation.com/what-powers-facebook-and-googles-ai-and-how-computers-could-mimic-brains-52232,4,1,cryoshon,1/5/2016 16:19 +10901718,Tenacity,http://avc.com/2016/01/tenacity-2,83,19,worldvoyageur,1/14/2016 14:56 +10675954,Route 53 Traffic Flow,http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html?sc_ichannel=em&sc_icountry=global&sc_icampaigntype=launch&sc_icampaign=EM_158148660&sc_idetail=1063446210&ref_=pe_411040_158148660_9,65,15,tobltobs,12/4/2015 12:40 +11563532,"Platform infrastructure for embedded Erlang/OTP, Elixir and LFE projects",https://github.com/nerves-project/nerves_system_br,63,8,musha68k,4/25/2016 11:21 +11167430,Lazarus Rising or Icarus Falling? The GoPro and LinkedIn Question,http://aswathdamodaran.blogspot.com/2016/02/lazarus-rising-or-icarus-falling-gopro.html,2,1,tosseraccount,2/24/2016 15:31 +12342313,Hiroshima (1946),http://www.newyorker.com/magazine/1946/08/31/hiroshima?intcid=mod-most-popular,12,1,asib,8/23/2016 9:03 +11702682,"20,000 concurrent file searches in less than 1 minute with Elixir",http://www.automatingthefuture.com/blog/2016/5/10/performing-searches-concurrently-when-one-thread-just-wont-do,4,1,galfarragem,5/15/2016 20:49 +10835416,"Twitter Invests in Muzik, a High-End Headphone Startup",http://recode.net/2016/01/04/twitter-invests-in-muzik-a-high-end-headphone-startup/,3,1,eamonncarey,1/4/2016 13:17 +11205685,The difference between good and excellent programmers,http://thefullstack.xyz/excellent-javascript-developer/,2,1,mpbm,3/1/2016 20:11 +11522597,Life-Expectancy Inequality Grows in America,http://www.newyorker.com/news/daily-comment/life-expectancy-inequality-grows-in-america/,60,47,rafaelc,4/18/2016 19:41 +12406614,Ask HN: A reasonable deployment solution for small-scale kiosk apps?,,4,3,c61746961,9/1/2016 16:27 +11431595,Forget Apple vs. FBI: WhatsApp Just Switched on Encryption for a Billion People,http://www.wired.com/2016/04/forget-apple-vs-fbi-whatsapp-just-switched-encryption-billion-people/?mbid=social_fb,3,1,unusximmortalis,4/5/2016 16:11 +10615221,How the 'Quiet Eye' Technique Makes Athletes More Coordinated,http://www.theatlantic.com/health/archive/2015/11/what-athletes-see/416388/?single_page=true,115,58,Amorymeltzer,11/23/2015 15:49 +10390398,Astronomers may have found giant alien 'megastructures',http://www.independent.co.uk/news/world/forget-water-on-mars-astronomers-may-have-just-found-giant-alien-megastructures-orbiting-a-star-near-a6693886.html,10,2,joe_the_user,10/14/2015 23:59 +10645768,Chinese Cash Floods U.S. Real Estate Market,http://www.nytimes.com/2015/11/29/business/international/chinese-cash-floods-us-real-estate-market.html,50,64,walterbell,11/29/2015 19:42 +11621849,Ask HN: What do you do while you're waiting for code to compile?,,10,9,karmacondon,5/3/2016 16:06 +11102618,What Happened: Adobe Creative Cloud Update Bug,https://www.backblaze.com/blog/adobe-creative-cloud-update-bug/,397,116,slyall,2/15/2016 10:42 +10394079,Apple infringed UWisconsin power-saving patent; damages up to $862M,http://www.reuters.com/article/2015/10/14/apple-wisconsin-patent-idUSL1N12D2FV20151014,1,2,jongraehl,10/15/2015 16:25 +12248040,Apocalypse 5: Pattern Matching (2006),http://perl6.org/archive/doc/design/apo/A05.html,45,3,_acme,8/8/2016 14:31 +12179691,All the Talks from 12 Business of Software Conferences,http://businessofsoftware.org/2016/07/all-talks-from-business-of-software-conferences-in-one-place-saas-software-talks/?utm_source=HNews&utm_medium=&utm_campaign=all-talks-in-one-place-email,4,1,marklittlewood,7/28/2016 12:08 +12259772,"Ask HN: 8 years working, now 3-4 months off to learn. Looking for advice",,218,117,ramblerman,8/10/2016 5:58 +10433743,Ask HN: Where do you get your reading material from?,,2,1,blabla_blublu,10/22/2015 17:58 +12108442,The Language Integrated Quantum Operations Simulator,http://stationq.github.io/Liquid/,1,1,smoothdeveloper,7/17/2016 0:34 +10213042,A New Design for Cryptographys Black Box,https://www.quantamagazine.org/20150902-indistinguishability-obfuscation-cryptographys-black-box/,59,20,0cool,9/13/2015 22:47 +10196485,Tired of memorizing passwords? Manuel Blum came up with this algorithmic trick,http://www.networkworld.com/article/2978312/tired-of-memorizing-passwords-a-turing-award-winner-came-up-with-this-algorithmic-trick.html,56,93,jalcazar,9/10/2015 7:03 +10793151,Strong and Light-Weight Metal Using Ceramic Nanoparticles,http://wtexas.com/content/5256-strong-and-light-weight-metal-developed-ucla-research-team-using-ceramic-nanoparticles,1,1,zaroth,12/26/2015 3:22 +10448595,Ask HN: How to raise a hacker?,,35,37,orless,10/25/2015 21:53 +11158600,It Is Surprisingly Hard to Store Energy,https://www.gatesnotes.com/Energy/It-Is-Surprisingly-Hard-to-Store-Energy,4,1,mhb,2/23/2016 13:14 +12572521,Freenode is being DDoSed,https://twitter.com/freenodestaff/status/779759172518866944,7,1,JulienRbrt,9/24/2016 20:31 +12197449,"I was violated, digitally",https://medium.com/@kapilharesh/i-was-violated-digitally-d3ea2b290e3a#.niw6y2chg,7,1,Shank,7/31/2016 15:55 +11094675,How async/await works in Python 3.5,http://www.snarky.ca/how-the-heck-does-async-await-work-in-python-3-5,63,10,brettcannon,2/13/2016 17:01 +10207935,BitTorrent backups BTsync and Syncthing,http://www.dedoimedo.com/computers/torrent-backups.html,2,1,hanru,9/12/2015 12:43 +12330038,Fuzzing Perl: A Tale of Two American Fuzzy Lops,http://www.geeknik.net/71nvhf1fp,82,18,geeknik,8/21/2016 8:47 +12417927,American readers still prefer printed books over eBooks,http://www.theverge.com/2016/9/2/12775836/us-printed-book-reading-rate-steady-pew-study,16,49,Tomte,9/3/2016 5:41 +11855598,Warcraft director Duncan Jones: I wanted to make a great film,http://techcrunch.com/2016/06/07/duncan-jones-warcraft-interview/,27,22,confiscate,6/7/2016 16:33 +11249401,SSHKeyDistribut0r: A tool to make SSH key distribution easier for sysop teams,https://github.com/Fachschaft07/SSHKeyDistribut0r,11,6,tamier,3/8/2016 22:44 +10818493,"Polyglot Twitter Bot, Part 4: PureScript",http://joelgrus.com/2015/12/31/polyglot-twitter-bot-part-4-purescript/,4,1,joelgrus,12/31/2015 17:14 +11710117,Travel Meets Commerce Global P2P Shopping -Grabr: Unlocking the World,http://www.grabr.io,11,2,isaiahd,5/16/2016 22:23 +10198525,Open Sourcing the Stupid-Simple Messaging Protocol,https://www.aerofs.com/blog/open-sourcing-the-stupid-simple-messaging-protocol/,107,31,vonsnowman,9/10/2015 15:12 +11021665,Bad USB-C cable destroys laptop,https://plus.google.com/+BensonLeung/posts/aFWWeiybe4P,368,130,mrb,2/2/2016 19:11 +10444795,Japan's hidden caste of untouchables,http://www.bbc.com/news/world-asia-34615972,140,124,rglovejoy,10/24/2015 20:45 +11915487,Test Anything Protocol specification (2006),http://testanything.org/tap-specification.html,43,10,Tomte,6/16/2016 11:55 +10223015,Show HN: Primer Marketing Lessons from Google,https://www.yourprimer.com/?utm_source=team&utm_medium=social&utm_content=ky&utm_campaign=2015-9-8-launch,29,3,kyasui,9/15/2015 20:38 +11266891,Dog or mop: funny image recognition system tests,http://imgur.com/a/K4RWn,12,1,groar,3/11/2016 14:50 +12051234,The double standard of the 'side hustle' entrepreneur,https://www.washingtonpost.com/news/wonk/wp/2016/07/07/alton-sterling-eric-garner-and-the-double-standard-of-the-side-hustle/,27,2,RockyMcNuts,7/7/2016 18:34 +11343993,"The Uber Model, It Turns Out, Doesnt Translate",http://www.nytimes.com/2016/03/24/technology/the-uber-model-it-turns-out-doesnt-translate.html,66,86,blatherard,3/23/2016 13:02 +10790402,Fighting DMCA Issue in Stack Exchange,https://medium.com/@acsudeep/fighting-dmca-in-stack-exchange-f8206761959e#.ba2yuvfng,1,3,sudeep1,12/25/2015 4:18 +10461425,Shrine A new solution for handling file uploads in Ruby,http://twin.github.io/introducing-shrine/,52,20,lucisferre,10/27/2015 21:51 +11794790,Yesterday's Phone Cancer Scare Scares Me a Little About the Future of Journalism,http://www.forbes.com/sites/matthewherper/2016/05/28/yesterdays-cell-phone-cancer-scare-scares-me-a-little-about-the-future-of-journalism/#60a3e71b4166,6,2,Osiris30,5/29/2016 4:30 +10965537,Ask HN: Linode equivalent of Dedicated Server?,,7,5,rk0567,1/25/2016 4:20 +11792295,Jawbone stops production of fitness trackers,http://www.techinsider.io/jawbone-stops-production-of-fitness-trackers-2016-5,67,55,zhuxuefeng1994,5/28/2016 16:45 +11865468,Uber CEO investigated over allegations of fraud in price-fixing case,https://www.theguardian.com/technology/2016/jun/08/uber-price-fixing-lawsuit-ceo-travis-kalanick-spencer-meyer,23,6,century19,6/8/2016 20:40 +10875464,"Power Laws, Pareto Distributions and Zipfs Law",http://arxiv.org/abs/cond-mat/0412004,13,1,dpflan,1/10/2016 14:53 +11312037,Show HN: Concurrent Wifi Users,https://www.youtube.com/watch?v=7YnGlV0MnFg,1,1,jftuga,3/18/2016 14:36 +11597862,Mark Zuckerberg thinks AI will start outperforming humans in the next decade,http://www.theverge.com/2016/4/28/11526436/mark-zuckerberg-facebook-earnings-artificial-intelligence-future,2,1,jonbaer,4/29/2016 18:47 +10706589,C4: An opensource creative coding framework for iOS,http://c4ios.com,73,27,buza,12/9/2015 20:43 +12392180,What do black people like me have to lose if Trump wins? Everything,http://www.vox.com/2016/8/30/12690332/donald-trump-black-voters,1,1,dwaxe,8/30/2016 17:42 +11180956,Transform your existing home appliances into smarter ones,https://leaf.co.in,3,1,rathish_g,2/26/2016 11:58 +11594523,Automatic Colorization of Grayscale Images,https://github.com/satoshiiizuka/siggraph2016_colorization,4,1,arek_,4/29/2016 9:02 +12494278,Economic Singularity: The Gods and the Useless,http://www.littletinyfrogs.com/article/479588/Economic_Singularity_The_Gods_and_the_Useless,2,1,blackhole,9/14/2016 4:41 +11515222,Managing dotfiles with GNU Stow,https://taihen.org/managing-dotfiles-with-gnu-stow/,164,66,pmoriarty,4/17/2016 16:58 +10860765,N Guilty Men (1997),http://www2.law.ucla.edu/volokh/guilty.htm,58,23,zargon,1/7/2016 21:07 +11660066,Email Sign-In Links,https://hashnode.com/post/email-sign-in-links-cio03gpez00iopz53tw2660cq,8,7,dkopi,5/9/2016 14:27 +11600091,The Legend of Princes Special Custom-Font Symbol Floppy Disks,http://nymag.com/selectall/2016/04/princes-legendary-floppy-disk-symbol-font.html,91,18,tintinnabula,4/30/2016 2:45 +11607300,The Fallout The medical aftermath of Hiroshima,http://hiroshima.australiandoctor.com.au/#c1,82,31,vezycash,5/1/2016 18:33 +12095721,"So Many Research Scientists, So Few Openings as Professors",http://www.nytimes.com/2016/07/14/upshot/so-many-research-scientists-so-few-openings-as-professors.html?hpw&rref=upshot&action=click&pgtype=Homepage&module=well-region®ion=bottom-well&WT.nav=bottom-well&_r=0,89,113,hvo,7/14/2016 17:28 +10860805,"Paypal froze our funds, then offered us a business loan",https://medium.com/@casey_rosengren/paypal-froze-our-funds-then-offered-us-a-business-loan-49a078310fb#.hz04mc4sa,4,3,edwinjm,1/7/2016 21:12 +12217886,Learn Voraciously (2015),http://www.arbing.co.uk/learn-voraciously/,90,30,arbingsam,8/3/2016 13:54 +10349260,"Make phone calls via slack, yes it transcribes in real-time",https://github.com/IBM-Bluemix/phonebot,5,2,webnanners,10/7/2015 21:32 +11385154,Html5 based widget for an iOS app: Today extension powered by Ionic framework,http://captaindanko.blogspot.com/2016/03/html5-based-widget-for-ios-app-today.html,2,1,bsoni,3/29/2016 21:44 +11079855,3 Reasons AWS Lambda Is Not Ready for Prime Time,https://www.datawire.io/3-reasons-aws-lambda-not-ready-prime-time/,4,3,kiyanwang,2/11/2016 13:06 +11936888,"Facebook planned my birthday party, and I can't decide how to feel about it",http://www.theverge.com/2016/6/19/11970818/facebook-birthday-party-suggestions,3,1,laktak,6/20/2016 8:57 +11176596,What Does It Take to Be a Best-Selling Author? $3 and 5 Minutes,http://observer.com/2016/02/behind-the-scam-what-does-it-takes-to-be-a-bestselling-author-3-and-5-minutes/,454,91,hullo,2/25/2016 18:38 +12231464,The Lost Art of C Structure Packing (2014),http://www.catb.org/esr/structure-packing/,117,113,bramv,8/5/2016 11:42 +12128410,Five million Danish ID numbers sent to Chinese firm by mistake,http://www.thelocal.dk/20160720/five-million-danish-id-numbers-sent-to-chinese-firm-by-mistake,184,79,mbanzon,7/20/2016 12:21 +12205151,Show HN: Web app health directly on GitHub pull requests,https://assertible.com/blog/github-status-checks,3,1,creichert,8/1/2016 19:23 +10289746,The Identity Crisis Under the Ink,http://theatlantic.com/health/archive/2014/11/the-identity-crisis-under-the-ink/382785/?single_page=true,16,8,bootload,9/28/2015 10:49 +12513335,Ask HN: What's your best marketing automation techniques?,,2,5,rloc,9/16/2016 11:46 +11229897,CPU runs at reduced maximum clock speed with no battery installed,https://support.lenovo.com/us/en/documents/ht075965,2,1,wslh,3/5/2016 16:24 +10611187,Gyrocar,https://en.wikipedia.org/wiki/Gyrocar,62,14,mavhc,11/22/2015 19:47 +12175360,Are We Ready for Secure Languages? CurryOn,https://www.youtube.com/watch?v=-fC975HLhyc,6,1,pjmlp,7/27/2016 18:30 +12012231,Gender is not a spectrum,https://aeon.co/essays/the-idea-that-gender-is-a-spectrum-is-a-new-gender-prison,7,6,kafkaesq,6/30/2016 22:11 +12364016,Bill to End Daylight Saving Time in California Fails in Senate,http://www.mercurynews.com/california/ci_30282581/bill-end-daylight-savings-time-california-fails-senate,3,1,MilnerRoute,8/26/2016 2:59 +10486570,Top 3 problems 50 founders faced when scaling,https://www.techinasia.com/talk/top-3-problems-50-entrepreneurs-faced-scaling-startups/?utm_source=Read+More&utm_medium=web&utm_campaign=readmore-posts,1,1,williswee,11/1/2015 15:08 +11864655,The Lemon Index: Which Cars Have the Highest Maintenance Costs?,http://priceonomics.com/the-lemon-index-which-cars-have-the-highest/,6,1,dwaxe,6/8/2016 18:57 +11880876,The New World Atlas of Artificial Sky Brightness,http://cires.colorado.edu/artificial-sky,70,16,nateberkopec,6/10/2016 23:09 +11466445,A C64 Games Mashup,http://level4.jojati.com/c64mashup/,79,25,ingve,4/10/2016 15:10 +10982594,What a PhD Really Means in the US National Security Community,https://news.vice.com/article/doctors-of-doom-what-a-phd-really-means-in-the-us-national-security-community-1,120,73,bootload,1/27/2016 19:50 +12156822,Amazon Picking Challenge,http://amazonpickingchallenge.org/,74,49,signa11,7/25/2016 6:21 +12316527,Ask HN: Do you accept LinkedIn connection requests from recruiters?,,11,16,johnhess,8/18/2016 21:44 +10758256,"Evernote to End Support for Clearly, Evernote for Pebble, and Versions of Skitch",https://blog.evernote.com/blog/2015/12/17/evernote-to-end-support-for-clearly-evernote-for-pebble-and-versions-of-skitch/,3,2,DiabloD3,12/18/2015 13:19 +11843872,Spybot Anti-Beacon for Windows,https://www.safer-networking.org/spybot-anti-beacon/,3,1,vezycash,6/6/2016 0:16 +11116129,The Elements of User Experience,http://www.weeklypixels.com/books/the-elements-of-user-experience/,7,2,ramijames,2/17/2016 8:01 +10367046,A record of unsolicited kindness and excessive generosity in academia,http://academickindness.tumblr.com/,5,1,p4bl0,10/10/2015 21:16 +11057679,The Surprising Subtleties of Zeroing a Register (2012),https://randomascii.wordpress.com/2012/12/29/the-surprising-subtleties-of-zeroing-a-register/,62,3,qznc,2/8/2016 12:19 +11117114,Eternal 5D data storage could record the history of humankind,http://www.southampton.ac.uk/news/2016/02/5d-data-storage-update.page,10,2,bigblind,2/17/2016 11:33 +10275829,Celebrate Canada's 150th anniversary with pocket change designed by Canadians,http://www.mint.ca/store/coin-design-contest/contest-vote-form.jsp?lang=en_CA&rcmeid=van_CoinDesignVote,2,2,stickhandle,9/25/2015 0:47 +12329892,Ask HN: How to obtain the FB activity logs of a missing person?,,8,6,aanastasov,8/21/2016 7:46 +10240296,Salton Sea Notes: Lawrence Ferlinghettis California Travel Journals (1961),http://www.theparisreview.org/blog/2015/09/18/salton-sea-notes/,19,3,Thevet,9/18/2015 16:55 +10969149,What Paul Graham Is Missing About Inequality Tim O'Reilly,https://medium.com/the-wtf-economy/what-paul-graham-is-missing-about-inequality-a9f7e1613059#.5nmn0ybn4,89,43,cryptoz,1/25/2016 19:06 +11314401,"Show HN: OctaveWealth Smart, flat-fee 401k",https://octavewealth.com/,42,17,dmmalam,3/18/2016 19:48 +12345499,Undebt: How We Refactored 3M Lines of Code,http://engineeringblog.yelp.com/2016/08/undebt-how-we-refactored-3-million-lines-of-code.html,13,4,Yelp,8/23/2016 17:25 +11645441,"Ask HN: How exactly apart from taxes, can income inequality be reduced?",,7,26,max_,5/6/2016 17:37 +10518540,"Hello, Im Mr. Null. My Name Makes Me Invisible to Computers",http://www.wired.com/2015/11/null/,7,4,pmcpinto,11/6/2015 9:34 +10956853,PulseAudio 8.0 released,http://lists.freedesktop.org/archives/pulseaudio-discuss/2016-January/025277.html,87,43,captn3m0,1/23/2016 2:04 +10327077,Show HN: CloudParty play games with friends in the cloud,https://cloudparty.io,2,1,gionn,10/4/2015 10:03 +12266377,A Filesystem on Noms,http://dtrace.org/blogs/ahl/2016/08/09/nomsfs/,4,1,zdw,8/11/2016 5:10 +10952402,The Swiss Shouldn't Mock the Apple Watch,http://www.bloomberg.com/gadfly/articles/2016-01-22/swiss-shouldn-t-mock-apple-watch,8,3,RaSoJo,1/22/2016 12:55 +10301103,Evapolar: World's first personal air conditioner,http://evapolar.com/#,1,1,adamnemecek,9/30/2015 1:21 +11937375,China's Top500 leader with their own 260-core CPU design [pdf],http://www.netlib.org/utk/people/JackDongarra/PAPERS/sunway-report-2016.pdf,2,2,cm3,6/20/2016 11:47 +11955493,Decoding the Brain should electronics mimic biology?,http://semiengineering.com/decoding-the-brain/,3,1,brian_bailey,6/22/2016 17:18 +12567681,Ask HN: Do you think a CLI-based SaaS would be useful?,,3,1,prmph,9/23/2016 20:23 +11561865,Sublime vs. Atom who will win the editor's war?,,5,13,rjaviervega,4/24/2016 23:48 +11460585,Team Size and Why It Matters,http://engineering.skybettingandgaming.com/2016/04/08/team-size-and-why-it-matters/,2,1,adamgoodie,4/9/2016 9:09 +10325146,"Show HN: A community run, aggregate news source",https://user-news.herokuapp.com/tutorial,2,1,a_burns,10/3/2015 20:01 +10831800,Ask HN: 2 page or 1 page resume?,,8,17,testpass,1/3/2016 19:08 +11706339,A first peek behind the scenes of Hillary Clintons technology operation,https://medium.com/git-out-the-vote/a-first-peek-behind-the-scenes-of-hillary-clinton-s-technology-operation-d4536079be4e#.oxbw4fdme,7,4,kylerush,5/16/2016 14:11 +10593276,I Turned Off JavaScript for a Week,http://www.wired.com/2015/11/i-turned-off-javascript-for-a-whole-week-and-it-was-glorious/,94,89,ayi,11/19/2015 7:28 +11072924,Show HN: Measure ad blocking rate by device type and country,https://deliberatedigital.com/blog/adblock-analytics,1,1,pierrefar,2/10/2016 14:31 +10636775,5 Growth Hacking Articles You Should Read,http://desmart.com/blog/5-growth-hacking-articles-you-should-read,3,2,Piotr_F,11/27/2015 10:47 +10689803,Keurig Will Be Acquired by JAB-Led Group for $13.9B,http://www.bloomberg.com/news/articles/2015-12-07/keurig-to-be-bought-by-jab-led-investor-group-for-13-9-billion,3,1,bko,12/7/2015 14:53 +11748036,Ask HN: Why is it still so hard to host your own email/calendar that just works?,,91,83,thalev,5/22/2016 10:33 +11472538,Ask HN: Why do you people make open-source projects?,,1,9,karimdag,4/11/2016 16:10 +12421902,The gig economy is here to stay. So making it fairer must be a priority,https://www.theguardian.com/commentisfree/2016/sep/03/gig-economy-zero-hours-contracts-ethics,8,1,lnguyen,9/4/2016 0:05 +10900156,My Credit Now Worths 1.5B. Thanks PowerBall,http://zhesong.info/2016/01/13/my-credit-worth-en/,2,2,zhesong,1/14/2016 8:13 +11721142,Microsoft offloads Nokia feature phone business to Foxconn for $350M,http://techcrunch.com/2016/05/18/microsoft-offloads-nokia-feature-phone-business-to-foxconn-for-350m/,70,78,yread,5/18/2016 11:29 +11006038,Rider implicated after motor found on bike at world cyclo-cross championships,http://www.theguardian.com/sport/2016/jan/30/hidden-motor-bike-world-cyclo-cross-championships,2,1,Luc,1/31/2016 11:12 +11796679,50 Stunning National Parks Outside the U.S,http://www.fodors.com/trip-ideas/national-parks/news/photos/50-stunning-national-parks-outside-the-us,2,1,ranopano,5/29/2016 15:30 +10255720,Technological Unemployment and the Value of Work,http://philosophicaldisquisitions.blogspot.com/2015/09/technological-unemployment-and-value-of.html,1,1,bootload,9/21/2015 23:12 +10847459,Ask HN: How do I get notified of comments?,,4,4,eibrahim,1/6/2016 0:50 +12426108,The highest paid workers in Silicon Valley are not software engineers,http://qz.com/766658/the-highest-paid-workers-in-silicon-valley-are-not-software-engineers/?utm_source=qzfbarchive,1,1,prostoalex,9/4/2016 19:02 +10243633,Marc Andreesen's ~15 year old PGP key,https://pgp.mit.edu/pks/lookup?search=andreessen&op=index,1,1,vonklaus,9/19/2015 7:52 +10636859,Edmund de Waal and the strange alchemy of porcelain,http://www.nytimes.com/2015/11/29/magazine/edmund-de-waal-and-the-strange-alchemy-of-porcelain.html,9,1,petewailes,11/27/2015 11:37 +11718782,Letter from West Virginia,http://www.theparisreview.org/blog/2016/05/17/letter-from-west-virginia/,22,2,samclemens,5/18/2016 0:26 +10541327,Million Dollar Shack,http://milliondollarshack.com/,3,1,msoad,11/10/2015 18:37 +10984288,Oracle deprecating Java applets in Java 9,https://blogs.oracle.com/java-platform-group/entry/moving_to_a_plugin_free,117,68,nikanj,1/27/2016 23:01 +12456584,Wells Fargo lays off 5300 employees over fake accounts,http://www.npr.org/sections/thetwo-way/2016/09/08/493130449/wells-fargo-to-pay-around-190-million-over-fake-accounts-that-sparked-bonuses,20,2,markwaldron,9/8/2016 19:42 +10673549,U.S. Officials Caved on Hiroshima as Well as H-bomb,http://fpif.org/top-u-s-officials-caved-on-hiroshima-as-well-as-h-bomb/,3,1,ethana,12/3/2015 23:32 +10936947,Building Nginx and Tarantool based services,,5,1,vsoshnikov,1/20/2016 9:45 +10632820,The Birth and Death of Privacy,https://medium.com/the-ferenstein-wire/the-birth-and-death-of-privacy-3-000-years-of-history-in-50-images-614c26059e,57,30,dankohn1,11/26/2015 13:17 +11702680,Can Multilingualism Survive?: How cities preserve and abandon languages,http://www.theatlantic.com/international/archive/2016/05/multilingual-cities/482709/?single_page=true,52,87,tokenadult,5/15/2016 20:49 +12417632,LoweBot,http://www.lowesinnovationlabs.com/lowebot,101,35,adenadel,9/3/2016 3:57 +12461725,Example structure for a npm package written in coffee-script,https://github.com/lodni/npmexample-coffee,1,1,ekyo777,9/9/2016 13:02 +11239849,Ask HN: Why did Google Buzz fail?,,6,6,acidfreaks,3/7/2016 16:45 +10705717,People who change your life and how I landed my remote jobs and contracts,http://jipiboily.com/people-who-change-your-life-and-how-I-landed-my-remote-jobs-and-contracts/,1,1,jpmw,12/9/2015 18:35 +10705181,Ask HN: How did you determine if you and cofounder could work together?,,7,5,a_lifters_life,12/9/2015 17:35 +12134834,Silicon Valley Could Get Pass in Democrats Antitrust Crusade,http://www.bloomberg.com/politics/articles/2016-07-20/silicon-valley-could-get-pass-in-democrats-antitrust-crusade,2,2,elgabogringo,7/21/2016 5:07 +11327618,Learn How to easily make a custom FlappyBird clone with Goo Create,https://learn.goocreate.com/tutorials/create/flappy-goon/,4,1,hccampos,3/21/2016 12:38 +10646425,What I learned building a career driven by everything should be free (2013),https://medium.com/@1marc/what-i-learned-from-building-a-career-driven-by-an-everything-should-be-free-idealism-be97720fedee#.zd34p29w0,9,9,caseysoftware,11/29/2015 22:41 +10631109,Ubuntu Drops Python 2.7 from the Default Install in 16.04,https://wiki.ubuntu.com/Python/FoundationsXPythonVersions,9,3,ekianjo,11/26/2015 3:31 +12368635,"Belgians are hunting books, instead of Pokemon",http://www.reuters.com/article/us-belgium-books-pokemon-idUSKCN1110RG,6,1,empressplay,8/26/2016 19:17 +12409238,Lane bias: Why some Olympic swimmers may have gotten an unfair advantage,https://www.washingtonpost.com/news/wonk/wp/2016/09/01/these-charts-clearly-show-how-some-olympic-swimmers-may-have-gotten-an-unfair-advantage/?hpid=hp_hp-more-top-stories_swimadvantage-wb-850am%3Ahomepage%2Fstory,5,1,timmytokyo,9/1/2016 22:04 +11967589,The Case for Open Source,https://blog.prototypr.io/the-case-for-open-source-4e0ac9767967#.minna8x8l,5,1,jacobwilson,6/24/2016 7:44 +11077752,ZFS on RaspberryPi B,https://github.com/hughobrien/zfs-remote-mirror,35,10,anotherhue,2/11/2016 1:57 +11260366,Fluent Conference Live Stream Day 2,http://fluentconf.com/live,1,1,nerdy,3/10/2016 17:02 +12534243,Show HN: Xcode 8 Source Code Extension to Generate Swift Initializers,https://github.com/Bouke/SwiftInitializerGenerator,14,3,bouke,9/19/2016 20:03 +12525860,Better than a Gallon of Gall: Abe Lincoln addresses a temperance society (1842),http://laphamsquarterly.org/intoxication/better-gallon-gall,12,4,pepys,9/18/2016 16:23 +11105794,Physical Unclonable Function,https://en.wikipedia.org/wiki/Physical_unclonable_function,29,17,kushti,2/15/2016 20:43 +11800995,The state of deep learning in Debian,http://www.danielstender.com/blog/work-for-debian-1605.html,53,8,ashitlerferad,5/30/2016 12:38 +10872322,Lisp.jl: A Clojure-like Lisp syntax for julia,https://github.com/swadey/Lisp.jl,8,2,leephillips,1/9/2016 18:43 +12119292,Its No 'Accident:' Advocates Want to Speak of Car 'Crashes' Instead,http://www.nytimes.com/2016/05/23/science/its-no-accident-advocates-want-to-speak-of-car-crashes-instead.html?_r=2,112,139,jseliger,7/19/2016 3:07 +11272890,Winter ISO C++ standards meeting,http://herbsutter.com/2016/03/11/trip-report-winter-iso-c-standards-meeting/,53,5,ingve,3/12/2016 14:03 +10696298,Apple Releases First Battery Case to Eat Third-Party Accessory Makers Lunch,http://techcrunch.com/2015/12/08/apple-releases-first-battery-case-to-eat-third-party-accessory-makers-lunch/?ncid=rss,1,3,devNoise,12/8/2015 13:55 +12344119,Zenimax V Oculus Amended Complaint,https://www.scribd.com/mobile/document/321898098/Zenimax-v-Oculus-Amended-Complaint,2,1,amaks,8/23/2016 14:46 +10556637,Mindfulness meditation trumps placebo in pain reduction,http://www.sciencedaily.com/releases/2015/11/151110171600.htm,137,55,DrScump,11/12/2015 22:32 +11522780,I wrote ISIS Beer Funds in a Venmo memo and the feds detained my $42,http://arstechnica.com/tech-policy/2016/04/i-wrote-isis-beer-funds-in-a-venmo-memo-and-the-feds-detained-my-42/,84,40,jseliger,4/18/2016 20:06 +12467872,Do Consumers Have a Right to Opt Out of Advertising?,http://adexchanger.com/data-driven-thinking/consumers-right-opt-advertising/,3,1,wdr1,9/10/2016 5:41 +11444781,Apply HN: Visage Fully Automated Makeup Application,,4,14,joyeuse6701,4/7/2016 4:43 +12360749,"The IBM System/360: the first modular, general-purpose computer",https://text.sourcegraph.com/the-ibm-system-360-the-first-modular-general-purpose-computer-98caeb0c9d1b#.4h3q3sq1b,105,37,lindax,8/25/2016 17:22 +11589985,"New Study Shows Mass Surveillance Breeds Meekness, Fear and Self-Censorship",https://theintercept.com/2016/04/28/new-study-shows-mass-surveillance-breeds-meekness-fear-and-self-censorship/,14,4,nomoba,4/28/2016 16:26 +12536630,NY police used a virtual 'wanted poster' to help catch bombing suspect,http://www.abc.net.au/news/2016-09-20/mobile-alert-issued-to-new-york-resident-in-hunt-for-suspect/7860408,2,1,nichodges,9/20/2016 2:45 +10939525,"Zcash, an Untraceable Bitcoin Alternative, Launches in Alpha",http://www.wired.com/2016/01/zcash-an-untraceable-bitcoin-alternative-launches-in-alpha/,19,1,mdxn,1/20/2016 17:09 +10779156,Environment Variables and Why You Shouldn't Use Them,https://support.cloud.engineyard.com/hc/en-us/articles/205407508-Environment-Variables-and-Why-You-Shouldn-t-Use-Them,3,1,gkop,12/22/2015 17:53 +11719552,Ask HN: Cheapest computer to run linux?,,2,8,basicscholar,5/18/2016 3:37 +10311167,My gamedever wishlist for Rust,https://users.rust-lang.org/t/my-gamedever-wishlist-for-rust/2859,94,69,m0th87,10/1/2015 14:01 +11636311,Shots: get an animated gif from a Wayback Machine archive,https://github.com/bevacqua/shots,62,4,bpierre,5/5/2016 14:22 +11994053,Hands on with India's £3 smartphone,http://www.bbc.co.uk/news/technology-36651700,2,1,hobbes,6/28/2016 14:30 +11294302,Google Maps on Android Will Now Show a Dedicated Ride-Sharing Tab,http://www.androidpolice.com/2016/03/15/google-maps-on-android-will-now-show-a-dedicated-ride-sharing-tab/,2,1,joshfraser,3/16/2016 1:15 +12298986,A Roomba smeared dog poop. There's an economic lesson here,http://www.vox.com/2016/5/17/11683718/roomba-irobot-robots-disappointment,11,4,ArtDev,8/16/2016 17:25 +11816474,The Curious Case of Chris Kyles DD-214,http://jasonlefkowitz.net/2016/06/curious-case-american-sniper-chris-kyles-dd-214/,7,5,smacktoward,6/1/2016 17:40 +12245767,Dropbox is stealing my space,,1,2,humlerne,8/8/2016 6:14 +11976798,Iris framework author exposed for license violations,https://www.reddit.com/r/golang/comments/4psfzq/katarasiris_author_is_crazy/,27,12,sgmansfield,6/25/2016 16:12 +11977079,How transactional DDL in your queries can kill your throughput. Postmortem,https://www.joyent.com/blog/manta-postmortem-7-27-2015,2,1,based2,6/25/2016 17:19 +12208486,Microsoft Live Account Credentials Leaking from Windows 8 and Above,https://hackaday.com/2016/08/02/microsoft-live-account-credentials-leaking-from-windows-8-and-above/,233,140,aurhum,8/2/2016 8:20 +10578036,The Paris Attacks and the Abuse of History,https://www.facebook.com/notes/mark-humphries/the-paris-attacks-and-the-abuse-of-history/919018744800165,69,35,diodorus,11/16/2015 23:14 +11889095,Show HN: The Second Issue of Compelling Science Fiction,http://compellingsciencefiction.com/issue2.html,18,3,mojoe,6/12/2016 17:12 +11958590,GitHub's Game of Life (userscript),https://github.com/ryanml/Github-Game-of-Life,1,1,palferrari,6/23/2016 3:00 +10472271,"Instead of Standing, Why Not Lie Down While You Work?",http://www.fastcoexist.com/3052273/instead-of-standing-why-not-lie-down-while-you-work-this-desk-lets-you-do-both#8,44,42,coryfklein,10/29/2015 16:28 +12211932,A Non-Technical Guide to the Technical Interview,http://flow.moe/tech-interviews/,2,1,akrolsmir,8/2/2016 18:18 +11707449,Why Free Software Is Losing Influence,http://www.datamation.com/open-source/7-reasons-why-free-software-is-losing-influence.html,7,2,hargup,5/16/2016 16:31 +11281104,Mozilla's Firefox 46 Beta Include GTK3 on Linux,http://iskandar.ml/2016/03/14/mozillas-firefox-46-beta-include-gtk3-on-linux/,1,1,fooiskandar,3/14/2016 4:37 +11272205,"Introducing Relate GraphQL client, data agnostic, connector on top of Redux",https://github.com/relax/relate,3,1,bruno12mota,3/12/2016 10:04 +10607747,Webtorrent BitTorrent over WebRTC,https://github.com/feross/webtorrent,362,108,rvikmanis,11/21/2015 19:31 +11116792,GitHub supports now issue templates,,12,3,LukasReschke,2/17/2016 10:19 +10546744,Smart battery connects your dumb smoke alarm to Wi-Fi,http://thenextweb.com/insider/2015/11/11/the-roost-smart-battery-is-now-available-to-connect-your-dumb-smoke-alarm-to-wi-fi/,1,1,joshfraser,11/11/2015 14:17 +10431031,3D-inspired hi-tech buoy takes African marine monitoring to new levels,https://theconversation.com/3d-inspired-hi-tech-buoy-takes-african-marine-monitoring-to-new-levels-48945,9,2,Oatseller,10/22/2015 8:24 +10797507,A better way to teach technical skills to a group,http://miriamposner.com/blog/a-better-way-to-teach-technical-skills-to-a-group/,171,21,mdlincoln,12/27/2015 14:22 +10641904,Vorlon.js,http://vorlonjs.com/,16,2,Artemis2,11/28/2015 18:36 +10285080,"I'm writing a book on Ansible, and I've made $25k before publishing",https://servercheck.in/blog/25k-book-sales-and-im-almost-ready-publish,2,1,geerlingguy,9/27/2015 1:30 +12519407,Decentralized insurance using prediction markets and game theory,https://hack.ether.camp/idea/decentralized-insurance-using-prediction-markets-and-game-theory,14,3,lamito,9/17/2016 6:25 +10755166,"Uber becomes legal in NSW, Australia taxi owners to be compensated",http://www.dailytelegraph.com.au/news/nsw/uber-legal-in-nsw-taxi-owners-to-be-compensated/story-fni0cx12-1227656507684?nk=35cb421f9f76b5c0063a30276fd580f9-1450392057,31,39,BishoyDemian,12/17/2015 22:42 +11995491,Someone Can Change Your Facebook Credentials by Just Sending in a Fake Passport,http://imgur.com/a/L0pTI,33,7,phwd,6/28/2016 17:11 +11073072,Ask HN: What do you use to backup your data / family photos?,,1,1,sergiotapia,2/10/2016 14:51 +10190144,Steve Wozniak on Steve Jobs Movie,http://www.bbc.co.uk/news/technology-34188602,69,41,DanEdge,9/9/2015 7:09 +11672590,Back door found in Allwinner Linux kernels,http://www.theregister.co.uk/2016/05/09/allwinners_allloser_custom_kernel_has_a_nasty_root_backdoor/,281,78,tbrock,5/11/2016 4:08 +11089151,Remote Logging with SSH and Syslog-NG,http://www.deer-run.com/~hal/sysadmin/SSH-SyslogNG.html,1,1,clebio,2/12/2016 18:13 +10612455,"Offer HN: I will build your MVP for $2,500 in two weeks",,3,4,anthony_franco,11/23/2015 2:02 +12422706,"The intersection of white nationalism, the alt-right and the libertarianism",https://www.washingtonpost.com/posteverything/wp/2016/09/02/where-did-donald-trump-get-his-racialized-rhetoric-from-libertarians/?tid=pm_opinions_pop_b&utm_term=.c0577b53a113,11,13,iamjeff,9/4/2016 4:32 +10936132,It's time to build your own router,http://arstechnica.com/gadgets/2016/01/numbers-dont-lie-its-time-to-build-your-own-router/,185,93,ghosh,1/20/2016 4:46 +11415922,Satellite Images Can Pinpoint Poverty Where Surveys Cant,http://www.nytimes.com/2016/04/03/upshot/satellite-images-can-pinpoint-poverty-where-surveys-cant.html?_r=0,3,1,hvo,4/3/2016 12:57 +11741831,Google engineer ends push for crypto-only setting in Allo,http://arstechnica.com/security/2016/05/incensing-critics-google-engineer-ends-push-for-crypto-only-setting-in-allo/,8,1,eigenvector,5/20/2016 21:54 +10928119,Glamorous tech startups can be brutal places for workers,http://www.economist.com/news/business/21688390-glamorous-tech-startups-can-be-brutal-places-workers-other-side-paradise?fsrc=scn/fb/te/pe/ed/theothersideofparadise,13,5,porter,1/19/2016 0:40 +11855382,First Interactive 360º Video,http://www.wirewax.com/blog/post/360-video-whats-the-point,2,2,jose_wirewax,6/7/2016 16:03 +11016813,Both Gmail and WhatsApp have now passed more than 1B MAU,http://9to5google.com/2016/02/01/gmail-whatsapp-billion-monthly/,3,1,indus,2/2/2016 0:25 +11963942,Goldman Scraps On-Campus Interviews for Undergraduates,http://www.bloomberg.com/news/articles/2016-06-23/goldman-sachs-scraps-on-campus-interviews-for-robo-recruiting,30,10,irenetrampoline,6/23/2016 20:11 +11216350,Japanese Artists Show Off Their Workspaces,http://kotaku.com/japanese-artists-show-off-their-workspaces-1762345155,3,1,ourmandave,3/3/2016 12:16 +12454105,Now you can buy a USB stick that destroys anything in its path,http://www.zdnet.com/article/now-you-can-buy-a-usb-stick-that-destroys-laptops/,2,3,usernamebias,9/8/2016 15:47 +11765367,Google Daydream is a contrarian platform bet on mobile virtual reality,http://www.networkworld.com/article/3074241/consumer-electronics/google-daydream-is-a-contrarian-platform-bet-on-mobile-virtual-reality.html,3,1,stevep2007,5/24/2016 20:52 +11119354,Introducing GIF search on Twitter,https://blog.twitter.com/2016/introducing-gif-search-on-twitter,134,89,dredge,2/17/2016 17:13 +11002044,"Tcl.js: robust, high-performance Tcl in JavaScript",https://github.com/cyanogilvie/Tcl.js,107,50,blacksqr,1/30/2016 15:09 +11318300,Ask HN: How do you manage complexity in large JavaScript applications,,9,11,harshitj,3/19/2016 12:47 +10381260,China has had a telescope on the moon for the past two years,https://www.newscientist.com/article/dn28323-china-has-had-a-telescope-on-the-moon-for-the-past-two-years/,2,1,ck2,10/13/2015 15:52 +10761670,Newly discovered hack has U.S. fearing foreign infiltration,http://www.cnn.com/2015/12/18/politics/juniper-networks-us-government-security-hack/index.html,3,1,betadreamer,12/18/2015 23:23 +10331951,Disney researchers made an app that turn drawings into 3D characters,https://www.youtube.com/watch?v=SWzurBQ81CM,9,4,sabarasaba,10/5/2015 14:20 +10874573,"Research shows to rebuild cities, get back to the basics",http://www.freep.com/story/opinion/contributors/2016/01/09/gallagher-detroit-economy-development/78442020/,18,2,rmason,1/10/2016 7:32 +11185855,PICO-8 for Raspberry Pi,http://www.lexaloffle.com/bbs/?tid=3085,84,7,doppp,2/27/2016 2:57 +12151651,"Tevis Cup 100 miles, one day, in mountains, on horseback",http://www.teviscup.org/,1,1,Animats,7/24/2016 0:29 +11491655,Story Points and Sizing Complexity,https://grip.qa/story-points-sizing-complexity/,7,1,kmile,4/13/2016 19:56 +10325099,Ask HN: How to block marketing trackers in Gmail,,1,2,gavreh,10/3/2015 19:46 +11952324,Are U.S. Millennial Men Just as Sexist as Their Dads?,https://hbr.org/2016/06/are-u-s-millennial-men-just-as-sexist-as-their-dads,4,2,bootload,6/22/2016 8:35 +10979094,Starting my first MVP with right tools and making right early choices,,3,1,bitbreaker,1/27/2016 9:22 +10585091,How do you find out what the usual salary is for the kind of work that you do?,,26,8,ayjz,11/18/2015 0:34 +12020215,ESLint hits 3.0,https://github.com/eslint/eslint/blob/master/CHANGELOG.md,4,1,adambrod,7/1/2016 22:42 +10881658,Facebook's Christopher Chedeau on the Core Philosophies That Underly React,http://thepracticaldev.com/christopher-chedeau-on-the-philosophies-of-react,5,1,bhalp1,1/11/2016 17:11 +10208601,Envelope Postgres database to web app with just HTML and SQL,http://envelope.xyz/,115,75,justintocci,9/12/2015 17:11 +10735748,Reddit is Down,http://www.redditstatus.com/incidents/npwvzvg4nnf8,5,2,jsight,12/15/2015 3:37 +12354407,Uber launches flat fares in San Francisco through subscription,https://www.uber.com/info/plus/sanfrancisco/,121,172,nikunjk,8/24/2016 19:02 +10730502,Why Apple Wants to Get into the Unprofitable World of Payments Between Friends,http://www.bloomberg.com/news/articles/2015-12-01/why-apple-wants-to-get-into-the-unprofitable-world-of-payments-between-friends,21,35,jackgavigan,12/14/2015 11:47 +11506446,A New Map for America,http://www.nytimes.com/2016/04/17/opinion/sunday/a-new-map-for-america.html,354,316,thisjustinm,4/15/2016 18:14 +11610819,An LSM-Tree-based Ultra-Large Key-Value Store for Small Data [pdf],http://www.ece.eng.wayne.edu/~sjiang/pubs/papers/wu15-lsm-trie.pdf,61,12,jorangreef,5/2/2016 12:37 +10287388,Ask HN: Difficulty taking charge as PM,,1,1,ls66,9/27/2015 18:27 +12049507,Rclone: rsync for cloud storage,http://rclone.org/,4,1,yarapavan,7/7/2016 14:27 +11916320,The 5 causes of failure as an entrepreneur,https://www.swabbl.com/en/business-news/the-5-causes-of-failure-as-an-entrepreneur/,5,1,lewisa,6/16/2016 14:28 +11708918,"Seattle restaurant jobs have fallen -900 this year vs. +6,200 in rest of state",http://www.aei.org/publication/minimum-wage-effect-seattle-area-restaurant-jobs-have-fallen-900-this-year-vs-6200-food-jobs-in-rest-of-state/,3,1,zackliscio,5/16/2016 19:28 +10752287,An undergrad's experience with programming in college,http://architv.me/hackers-and-body-builders/,2,1,architv07,12/17/2015 16:13 +12325927,Ask HN: What web framework should I use nowadays?,,20,49,ehsan_akbari,8/20/2016 10:08 +11512301,"Plenty of Passengers, but Where Are the Pilots?",http://www.nytimes.com/2016/04/17/opinion/sunday/plenty-of-passengers-but-where-are-the-pilots.html,2,1,kpozin,4/16/2016 21:22 +11017340,Ask HN: Anyone from Malaysia on HN?,,1,1,tixocloud,2/2/2016 2:39 +10273984,Amazon Fire Tablet Only $ 49.99,http://www.amazon.com/dp/B00TSUGXKE/ref=ods_gw_d_h1_tab_frd_LG9_TagD?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=desktop-hero-kindle-A&pf_rd_r=1NQ4T0C79EGT68FRMT47&pf_rd_t=36701&pf_rd_p=2211604862&pf_rd_i=desktop,2,1,wslh,9/24/2015 19:23 +10302019,US Rail Construction Costs,https://pedestrianobservations.wordpress.com/2011/05/16/us-rail-construction-costs/,9,4,kangman,9/30/2015 5:44 +11067856,Cars for Comrades: The Life of the Soviet Automobile (2009),http://www.history.ac.uk/reviews/review/722,9,1,lermontov,2/9/2016 19:12 +10210321,Twitter: When the network is the thing,http://www.eugenewei.com/blog/2015/9/1/when-the-network-is-mature,25,10,dtawfik1,9/13/2015 4:04 +11279187,DIY Meteor-like Realtime Functionality Using Socket.io and RethinkDB Changefeeds,http://www.scotthasbrouck.com/blog/2016/3/13/using-socketio-with-rethinkdb-changefeeds-to-build-a-reactive-backend,71,13,ginkgotree,3/13/2016 20:20 +10304109,Learning Game of Life with a Convolutional Neural Network,http://danielrapp.github.io/cnn-gol/,71,13,DanielRapp,9/30/2015 14:16 +11909292,"Coffee May Protect Against Cancer, W.H.O. Concludes",http://well.blogs.nytimes.com/2016/06/15/coffee-may-protect-against-cancer-w-h-o-concludes/,1,2,troydavis,6/15/2016 13:50 +11698026,I hate the term open source,https://medium.com/@nayafia/i-hate-the-term-open-source-a65fd481a95#.xotkb24z6,7,3,Amorymeltzer,5/14/2016 21:02 +12150672,Show HN: HammerJS for React Native,https://github.com/longseespace/react-native-hammerjs,12,3,longnguyen,7/23/2016 19:23 +12028757,What's Wrong with Open Source Telegram?,https://yalantis.com/blog/whats-wrong-telegram-open-api/,1,1,snaky,7/4/2016 3:26 +10300867,Londons crackdown on Uber will backfire,https://medium.com/@flukes1/london-s-crackdown-on-uber-will-backfire-f796bbdf1ddd,1,1,ghughes,9/30/2015 0:21 +12002419,CREW: A weeding manual for modern libraries (2012) [pdf],https://www.tsl.texas.gov/sites/default/files/public/tslac/ld/ld/pubs/crew/crewmethod12.pdf,20,16,tokai,6/29/2016 15:46 +10965384,Ask HN: What's a hobby?,,4,4,miguelrochefort,1/25/2016 3:23 +12234457,Project Iceworm,http://www.bldgblog.com/2011/01/project-iceworm/,49,14,cpeterso,8/5/2016 17:59 +12079573,Professional Software Development,http://mixmastamyk.bitbucket.org/pro_soft_dev/,474,145,iris-digital,7/12/2016 14:59 +11456257,Game of Thrones Transit Maps,http://www.tyznik.com/thrones/,2,1,hunglee2,4/8/2016 17:20 +11345106,Ask HN: Does GitHub seem slow to anyone else lately?,,3,3,cjstewart88,3/23/2016 15:04 +11011187,Learning to Predict Where Humans Look [pdf],http://people.csail.mit.edu/torralba/publications/wherepeoplelook.pdf,2,1,meseznik,2/1/2016 11:43 +12171219,Interactive Top Programming Languages 2016 from IEEE Spectrum,http://spectrum.ieee.org/static/interactive-the-top-programming-languages-2016,2,1,bshanks,7/27/2016 7:56 +12074488,A National Food Policy for the 21st Century (2015),https://medium.com/food-is-the-new-internet/a-national-food-policy-for-the-21st-century-7d323ee7c65f#.rpyo9x6az,2,1,mastax,7/11/2016 20:52 +12559215,Yahoo says at least 500M accounts hacked in 2014,http://www.reuters.com/article/us-yahoo-cyber-idUSKCN11S16P?il=0,105,139,andrewbinstock,9/22/2016 18:54 +11754713,The blue flash,http://blog.nuclearsecrecy.com/2016/05/23/the-blue-flash/,2,1,okket,5/23/2016 16:03 +12098140,Mentat helps people land their dream jobs,http://www.themacro.com/articles/2016/07/mentat/,43,44,dwaxe,7/15/2016 0:00 +11013979,EOL: Barracuda's Copy.com will be discontinued on May 1st 2016,https://techlib.barracuda.com/display/COPY/Copy+End-of-Life,14,4,derFunk,2/1/2016 18:29 +11402985,Realistic Kids Game Turns Out to Be Real World,http://www.cnet.com/news/kids-tricked-when-realistic-game-turns-out-to-be-actual-forest/,2,1,Evolved,4/1/2016 6:05 +12474769,Millionaires' new challenge: they're not rich enough for private banking,https://www.theguardian.com/money/us-money-blog/2016/sep/11/millionaires-private-banking-chase-wealth-management,11,2,walterbell,9/11/2016 18:22 +12258515,A Party Based on Digital Vote,https://medium.com/@colochef/a-party-based-on-digital-vote-a9930820fb60#.aujefvm0i,2,3,colochef,8/9/2016 23:53 +11163502,Principal Component Projection Without Principal Component Analysis,http://arxiv.org/abs/1602.06872,117,16,beefman,2/24/2016 0:16 +11279438,Hacking OpenStreetMap data for fun and profit,http://readcodelearn.com/notes/intro-osm-part-1.html,2,1,furtivefelon,3/13/2016 21:30 +12103725,An OpenCV-based document scanner in Python,https://github.com/vipul-sharma20/document-scanner,118,23,vipul20,7/15/2016 20:45 +10856685,"Show HN: Kemal Lightning Fast, Super Simple Crystal Web Framework",http://kemalcr.com,5,2,sdogruyol,1/7/2016 8:19 +11479097,It's time to dispel the myths about nuclear power,https://www.theguardian.com/science/blog/2016/apr/11/time-dispel-myths-about-nuclear-power-chernobyl-fukushima,243,320,Osiris30,4/12/2016 12:59 +10302279,Gene-edited 'micropigs' to be sold as pets at Chinese institute,http://www.nature.com/news/gene-edited-micropigs-to-be-sold-as-pets-at-chinese-institute-1.18448,4,3,jerven,9/30/2015 7:11 +10954836,ZType Typing Game,http://zty.pe,6,1,mikewhy,1/22/2016 19:03 +10326863,Incident of drunk man kicking humanoid robot raises legal questions,http://techxplore.com/news/2015-10-incident-drunk-humanoid-robot-legal.html,2,1,bluish,10/4/2015 8:03 +10594676,University says FBI payment reports 'inaccurate',http://www.bbc.co.uk/news/technology-34867345,4,4,escapologybb,11/19/2015 13:43 +10263709,A Decade at Google,http://wp.sigmod.org/?p=1851,202,74,dwenzek,9/23/2015 7:17 +11187344,Show HN: PouchDB Bindings for PureScript,https://github.com/brakmic/purescript-pouchdb,21,3,brakmic,2/27/2016 15:39 +11602575,The beauty of the seasons changing by WebGL,https://www.producthunt.com/r/b41d0d7a482450/58440?webgl,2,1,gertaq,4/30/2016 17:29 +10191889,"Ask HN: Startup owners/employees, would you use a service like this?",,9,2,tom3k,9/9/2015 15:08 +10799315,Headbang: another personal music streaming webapp (Node.js+react),https://github.com/knoopx/headbang,1,1,knoopx,12/28/2015 0:59 +12127429,"'The graveyard of the Earth': inside City 40, Russia's deadly nuclear secret",http://www.theguardian.com/cities/2016/jul/20/graveyard-earth-inside-city-40-ozersk-russia-deadly-secret-nuclear,4,1,ptha,7/20/2016 7:39 +11060607,Top 20 Employee Benefits and Perks (as Measured by Glassdoor),https://www.glassdoor.com/blog/top-20-employee-benefits-perks/,4,6,ohjeez,2/8/2016 20:18 +11843206,Show HN: Calories based food search,http://manavkundra.com/Swastya.html,1,1,makpy,6/5/2016 21:23 +10650322,My GitHub Wishlist: Consolidate Request,http://www.koszek.com/blog/2015/11/23/my-github-wishlist-consolidate-request/#.Vlx-pUaYZxA.hackernews,3,3,wkoszek,11/30/2015 16:52 +10535148,A Blight-Fighting Solution for Saving Detroiters from Eviction,https://nextcity.org/features/view/detroit-foreclosures-tax-auction-loveland-technologies-jerry-paffendorf,15,4,rmason,11/9/2015 19:20 +10742461,Zomato finds advertising on porn sites is cheaper and has higher ROI,http://blog.zomato.com/post/135236716946/this-post-is-probably-safe-for-work,3,1,elssar,12/16/2015 4:53 +10434974,A woman who can smell Parkinson's disease,http://www.bbc.co.uk/news/uk-scotland-34583642,251,114,dan1234,10/22/2015 20:53 +11234649,Scientists develop very early stage human stem cell lines,https://www.cam.ac.uk/research/news/scientists-develop-very-early-stage-human-stem-cell-lines-for-first-time,69,3,salmonet,3/6/2016 17:46 +10383465,Show HN: Node.js minimal Dataflow programming engine,http://g14n.info/dflow/,2,1,fibo,10/13/2015 21:03 +11322644,What happens when millennials run the workplace,http://www.nytimes.com/2016/03/20/fashion/millennials-mic-workplace.html?smprod=nytcore-iphone&smid=nytcore-iphone-share,25,19,timrpeterson,3/20/2016 12:12 +12048723,Here's an OPML file with 101 of the most popular web design blogs to follow,https://www.dart-creations.com/web-design/opinion/web-design-blogs.html,1,1,dattard21,7/7/2016 11:56 +10531338,Saying Goodbye to Our Russian Web Traffic Spammers,http://blog.malleablebyte.org/2015/11/saying-goodbye-to-our-russian-web.html,2,4,quadedge,11/9/2015 4:12 +12260548,Im a neoliberal. Maybe you are too,https://medium.com/@s8mb/im-a-neoliberal-maybe-you-are-too-b809a2a588d6#.fmyynpxn5,2,1,anacleto,8/10/2016 9:59 +11764288,Going up? Space elevator could zoom astronauts into Earth's stratosphere,https://www.theguardian.com/science/2015/aug/17/space-elevator-thothx-tower,1,1,CarolineW,5/24/2016 18:34 +11346111,Limbo dev open-sources its Unity 5 anti-aliasing tech,http://www.gamasutra.com/view/news/268722/Limbo_dev_opensources_its_Unity_5_antialiasing_tech.php,3,1,louhike,3/23/2016 16:50 +10799431,Ask HN: Why is the software ecosystem of single-board computers so ugly?,,44,37,hexman,12/28/2015 1:47 +11850870,U.S. Supreme Court lets Google advertising class action suit proceed,http://www.reuters.com/article/us-usa-court-google-idUSKCN0YS1GI,11,1,Jerry2,6/6/2016 22:13 +12251244,CSS mix-blend-mode is bad for your browsing history,https://lcamtuf.blogspot.com/2016/08/css-mix-blend-mode-is-bad-for-keeping.html,196,40,kawera,8/8/2016 22:20 +11753668,Theres Nothing Magical About Breakfast,http://www.nytimes.com/2016/05/24/upshot/sorry-theres-nothing-magical-about-breakfast.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=second-column-region®ion=top-news&WT.nav=top-news&_r=0,176,181,hvo,5/23/2016 13:26 +10638633,Data about parents and children breached in VTech hack,http://www.troyhunt.com/2015/11/when-children-are-breached-inside.html,45,6,uptown,11/27/2015 19:59 +11389989,"Show HN: MapHub A Google My Maps Alternative, Based on OpenStreetMap Data",https://maphub.net/,244,81,hyperknot,3/30/2016 15:28 +10227586,Amgen to buy Dezima Pharma for $1.5B,http://www.nasdaq.com/article/amgen-to-buy-dezima-signs-pact-with-xencor--update-20150916-00647,1,1,the-dude,9/16/2015 16:04 +10526572,Attention Shoppers: Internet Is Open (1994),http://www.nytimes.com/1994/08/12/business/attention-shoppers-internet-is-open.html,85,21,sjcsjc,11/7/2015 23:02 +10823916,Why We Can't Afford the Rich (2015),http://www.alternet.org/books/why-we-cant-afford-rich,3,1,sawwit,1/1/2016 22:59 +11561593,ASMR: The videos which claim to make their viewers 'tingle' (2014),http://www.bbc.com/news/magazine-30412358,1,1,otoolep,4/24/2016 22:09 +11407699,A late-night rant about OOP and parametric dispatch,http://devblog.avdi.org/2016/03/31/a-late-night-rant-about-oop-and-parametric-dispatch/,38,32,joeyespo,4/1/2016 19:16 +10682494,Gmail Ending? Google Starts Migrating Users,http://www.forbes.com/sites/gordonkelly/2015/12/05/google-ending-gmail/,8,8,smaili,12/5/2015 17:10 +10702080,English and Its Undeserved Good Luck,http://chronicle.com/blogs/linguafranca/2015/12/03/english-and-its-undeserved-good-luck,35,65,tintinnabula,12/9/2015 5:29 +10957920,The Peoples Scientist: Richard Levins emancipatory vision of science,https://www.jacobinmag.com/2016/01/richard-levins-obituary-biological-determinism-dialectics/,9,2,ehudla,1/23/2016 10:30 +12167261,Nintendo NX is powered by Nvidia Tegra technology,http://www.eurogamer.net/articles/digitalfoundry-2016-nintendo-nx-mobile-games-machine-powered-by-nvidia-tegra,13,2,clevernickname,7/26/2016 17:26 +11278784,What ISPs can see,https://www.teamupturn.com/reports/2016/what-isps-can-see,225,81,schoen,3/13/2016 18:40 +10444332,Ask HN: What is the secret sauce to be accepted into Y Combinator?,,5,4,bambang150,10/24/2015 17:58 +10639735,Ask HN: How well are 4k monitors supported under Linux?,,10,6,pmoriarty,11/28/2015 2:17 +10866597,What we learned from the transcripts of Tony Blair and Bill Clintons phonecalls,http://www.newstatesman.com/world/north-america/2016/01/what-we-learned-transcripts-tony-blair-and-bill-clinton-s-phonecalls,1,1,teh_klev,1/8/2016 17:35 +11224459,Ask HN: Which payments processors to use for recurring subscriptions in India?,,10,8,superasn,3/4/2016 15:45 +10626157,Show HN: Commandcar a CLI tool that can easily communicate with any API,https://github.com/tikalk/commandcar,82,12,shaharsol,11/25/2015 8:55 +10647219,Plastic pollution from fabrics and other consumer products,http://www.nytimes.com/2015/11/29/opinion/sunday/what-comes-out-in-the-wash.html,17,4,efm,11/30/2015 2:15 +12411820,Alibabas biggest rival unveils cute drone delivery bots,https://www.techinasia.com/alibabas-biggest-rival-announces-cute-drone-delivery-bots,2,1,marcuskay,9/2/2016 9:03 +10218915,The first dead Unicorn will be Evernote,https://syrah.co/joshdickson40/55e1beac15970d6c01395d9d,107,97,webmasterraj,9/15/2015 4:14 +10934344,How I got 50 new users to give me video feedback in 24 hours,http://www.dscout.com/research/sprint,2,1,jackbwheeler,1/19/2016 21:48 +10220621,Jack Ma: 'Harvard rejected me 10 times' [video],https://agenda.weforum.org/2015/09/jack-ma-harvard-rejected-me-10-times/?utm_content=buffer051b7&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer,81,129,jimsojim,9/15/2015 13:57 +11009983,"Code Blocks: open-source, cross-platform, free C, C++ and Fortran IDE",http://codeblocks.org/,60,45,uyoakaoma,2/1/2016 5:35 +10330425,Origin of the name Google,https://graphics.stanford.edu/~dk/google_name_origin.html,80,33,crivabene,10/5/2015 7:59 +12125234,Are Android intents supposed to be like Smalltalk/Erlang message passing?,,1,1,_justsomeguy,7/19/2016 21:54 +10270068,China Is Building a Reputation System to Monitor Citizen Behavior,http://www.fastcoexist.com/3050606/china-is-building-the-mother-of-all-reputation-systems-to-monitor-citizen-behavior,9,2,walterbell,9/24/2015 5:56 +10814277,How these Chicago firms took on spoofing,http://www.chicagobusiness.com/article/20151228/NEWS01/151229912/how-these-chicago-firms-took-on-spoofing?utm_source=NEWS01&utm_medium=rss&utm_campaign=chicagobusiness,4,2,caminante,12/30/2015 20:47 +10390732,"Should cars be fully driverless? No, says an MIT engineer and historian",http://news.mit.edu/2015/no-driverless-cars-1013,57,102,rajathagasthya,10/15/2015 1:17 +10949082,"Vainglory vs. Clash Royale, and the future of hardcore games on mobile",http://andreaspapathanasis.blogspot.com/2016/01/vainglory-vs-clash-royale-and-future-of.html,41,41,elemeno,1/21/2016 22:40 +11535043,Snapchat's 4/20 Filter Not Exactly a PR Success,http://gizmodo.com/snapchat-s-offensive-bob-marley-filter-gives-you-inst-1772008981,4,1,6stringmerc,4/20/2016 15:19 +12100519,Why do startups mostly favour freelancer services and not outsourcing companies?,,3,1,TurningIdeas,7/15/2016 12:39 +10206509,U.S. Drops Charges That Professor Shared Technology With China,http://www.nytimes.com/2015/09/12/us/politics/us-drops-charges-that-professor-shared-technology-with-china.html,149,105,el_benhameen,9/11/2015 22:34 +11752698,Getting paid for thinking not coding,https://www.upwork.com/job/Clojure-script-development-with-paid-Hammock-Research-time_~01c498b96559b767f6/,4,2,mrsheen,5/23/2016 9:13 +11033078,"The end of politics: Cities, social networks and loneliness in the 21st century",http://futureurbanism.com/interview/the-end-of-politics-cities-social-networks-and-loneliness-in-the-21st-century/,17,14,jensen123,2/4/2016 10:35 +10642555,Behind the success of Monument Valley,https://medium.com/@InVisionApp/secrets-behind-the-success-of-monument-valley-5742bed3e42b,54,16,ingve,11/28/2015 21:40 +12271354,"Fuchsia, a new operating system",https://github.com/fuchsia-mirror,384,165,helloworld517,8/11/2016 20:31 +11875827,Functions in JavaScript: Assess your skills,https://www.educative.io/collection/page/10370001/2650002/2950001,6,1,fahimulhaq,6/10/2016 12:21 +10201549,Ask HN: What's your 1-man startup?,,57,65,cmacole,9/11/2015 1:39 +11275755,"How to Increase Website Traffic by 250,000+ Monthly Visits",http://www.siegemedia.com/increase-website-traffic,8,1,InfinityX0,3/13/2016 1:52 +10744601,How to Swallow $200M Accidentally,https://medium.com/@blakeross/how-to-swallow-200-million-accidentally-c7d8ed57e625,50,15,kornish,12/16/2015 14:58 +11092982,CITA 712: Update on LIGO's Search for Gravitational Waves,https://www.youtube.com/watch?v=RGqZZthc_l4,3,1,jakeogh,2/13/2016 7:03 +12146477,Tesla shares fall after Elon Musk unveils master plan part deux,http://venturebeat.com/2016/07/21/tesla-shares-fall-after-elon-musk-unveils-master-plan-part-deux/,2,1,hccampos,7/22/2016 20:19 +10768694,Silicon Valley's cash party is coming to an end,http://www.cnbc.com/2015/12/17/silicon-valleys-cash-party-is-coming-to-an-end.html,21,3,peterjliu,12/20/2015 23:09 +12135595,Supertux on X11(unity7) vs. Mir(unity8),https://www.youtube.com/watch?v=BVhlunj1Evk,18,3,reddotX,7/21/2016 8:52 +11282327,Ask HN: Who is most likely to develop true AI?,,39,60,bossx,3/14/2016 12:12 +11560285,The Banker Who Gambled Everything and Brought EVE's Greatest Empire to Its Knees,https://www.rockpapershotgun.com/2016/04/21/eve-online-world-war-bee-mittani/,3,1,danso,4/24/2016 16:41 +12019845,How the itch.io app sandboxes games,https://github.com/itchio/itch/issues/670,18,3,elisee,7/1/2016 21:35 +11174781,"Ape in Space, Scott Kelly Chases Tim Peake in a Gorilla Suit",https://twitter.com/ShuttleCDRKelly/status/701927839344373760,1,2,AstroJetson,2/25/2016 14:55 +11596565,"Android Studio 2.0 Is Googles New, Improved Development Suite",http://www.zco.com/blog/android-studio-2-0/,78,75,rafa2000,4/29/2016 16:01 +12495067,Valve tackles dodgy devs cheating Steam review scores,http://arstechnica.co.uk/gaming/2016/09/valve-steam-cheating-review-scores-devs/,8,1,timje1,9/14/2016 8:55 +12468618,Will Google NLI Kill the Market? Linguistic APIs Review,https://www.linkedin.com/pulse/google-nli-kill-market-linguistic-apis-review-yuri-kitin,1,1,wongfei,9/10/2016 10:41 +10913407,Ask HN: Are we heading to a new Black Monday?,,4,2,the-dude,1/16/2016 0:24 +10232899,Show HN: New and Easy way to discover beautiful Places to travel,https://wanderhunt.com/,4,3,iamgordx,9/17/2015 12:22 +12154156,Confessions of a Former Apocalypse Survival Guide Writer,http://motherboard.vice.com/read/i-used-to-write-apocalypse-survival-guides,86,83,jackgavigan,7/24/2016 18:22 +12257862,Australian Bureau of Statistics says Census website attacked by overseas hackers,http://www.abc.net.au/news/2016-08-10/australian-bureau-of-statistics-says-census-website-hacked/7712216,4,1,nichodges,8/9/2016 21:34 +10238566,Visualising the Impact of Sillicon Valley CEOs,https://peakon.com/blog/post/visualising-the-impact-of-sillicon-valley-ceos,5,1,thr0w4w4y444,9/18/2015 11:32 +11937132,Ask HN: Profitable SaaS? How did you grow your business?,,295,109,hackathonguy,6/20/2016 10:25 +11729513,ShiViz is a new distributed system debugging visualization tool. [ACM Queue],http://queue.acm.org/detail.cfm?ref=rss&id=2940294,3,1,blopeur,5/19/2016 12:04 +12530105,Holistic Info-Sec for Web Developers,https://leanpub.com/holistic-infosec-for-web-developers,1,1,LethalDuck,9/19/2016 9:48 +12519123,TraceTool: Open source C++ execution trace framework,http://blog.froglogic.com/2016/09/open-source-c-execution-trace-framework/,42,3,ashitlerferad,9/17/2016 4:29 +10831142,Ask HN: How do you remember what you read?,,12,12,dynamic99,1/3/2016 16:37 +10928187,New Study: Cheap Weddings Lead to Fewer Divorces,http://thehustle.co/average-marriage-cost,9,4,jl87,1/19/2016 1:00 +11264755,Universal Install Script,https://xkcd.com/1654/,8,4,ikeboy,3/11/2016 5:05 +11694842,Microsoft kills project Spark,http://forums.projectspark.com/yaf_postst214854.aspx,57,24,fenesiistvan,5/14/2016 7:01 +11677027,Its a Tough Job Market for the Young Without College Degrees,http://www.nytimes.com/2016/05/11/business/economy/its-a-tough-job-market-for-the-young-without-college-degrees.html?action=click&contentCollection=education®ion=rank&module=package&version=highlights&contentPlacement=1&pgtype=sectionfront&_r=0,16,15,hvo,5/11/2016 16:59 +10434469,Winner Takes Most,http://avc.com/2015/10/winner-takes-most/,50,25,rock57,10/22/2015 19:33 +10989433,Open-Source and .NET It's Not Picking Up,http://code972.com/blog/2016/01/93-open-source-and-net-its-not-picking-up,16,5,daigoba66,1/28/2016 17:06 +11964838,"Utah K-9 sniffs out porn or the devices that carry it, anyway",http://www.sltrib.com/news/4031044-155/utah-k-9-sniffs-out-porn-,3,3,slantyyz,6/23/2016 22:42 +10448687,Ask HN: Should I maintain a daily journal of my thoughts?,,13,12,textread,10/25/2015 22:17 +11819804,Blizzard Exempt from iOS and MacOS Security Sandbox,https://twitter.com/i0n1c/status/738018742710460420,141,64,personjerry,6/2/2016 1:49 +11447791,An unofficial Snapchat button,http://scbutton.com/,5,2,rodreegez,4/7/2016 15:03 +10289752,Opening the Open Library of Humanities,https://about.openlibhums.org/2015/09/28/olh-launches/,1,1,JohnHammersley,9/28/2015 10:51 +11927578,The woman behind Apple's first icons,http://priceonomics.com/the-woman-behind-apples-first-icons/,2,1,nnx,6/18/2016 8:26 +10606076,YArchive,http://yarchive.net/comp/index.html,119,4,signa11,11/21/2015 7:35 +12108674,Check Widening in LLVM,http://www.playingwithpointers.com/check-widening-in-llvm.html,57,10,sanjoy_das,7/17/2016 1:48 +10188139,RefugeBnB,,4,1,gj352,9/8/2015 20:48 +10255312,Apple refunding all purchases of Peace,http://www.marco.org/2015/09/21/peace-refund,92,65,coloneltcb,9/21/2015 21:38 +10350340,Google announces Accelerated Mobile Pages for faster open mobile web,https://googleblog.blogspot.com/2015/10/introducing-accelerated-mobile-pages.html,4,1,manigandham,10/8/2015 1:31 +10854588,The $8.2B Adtech Fraud Problem That Everyone Is Ignoring,http://techcrunch.com/2016/01/06/the-8-2-billion-adtech-fraud-problem-that-everyone-is-ignoring/,14,2,sjscott80,1/6/2016 23:00 +11090675,Show HN: Fromlatest.io An opinionated Dockerfile linter,https://fromlatest.io,13,1,marcc,2/12/2016 21:17 +10577731,A 23-year-old Windows 3.1 system failure crashed Paris airport,http://www.zdnet.com/article/a-23-year-old-windows-3-1-system-failure-crashed-paris-airport/,4,4,kitwalker12,11/16/2015 22:28 +11081621,Marissa Mayer Just Fired Dozens of Yahoo Employees by Accident,http://fortune.com/2016/02/01/yahoo-mayer-layoffs/?utm_content=bufferfe7bc&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,4,1,alexobenauer,2/11/2016 17:43 +12576116,Bidirectional Replication is coming to PostgreSQL 9.6,http://blog.2ndquadrant.com/bdr-is-coming-to-postgresql-9-6/,200,38,iamd3vil,9/25/2016 16:54 +12426677,"Facing my fear: when I moved back to America, I felt like a foreigner",https://www.theguardian.com/commentisfree/2016/sep/02/facing-my-fear-moving-to-america-inequality-experience,40,17,betolink,9/4/2016 20:58 +10628228,Re-live your memories with VR,https://www.indiegogo.com/projects/teleport-capture-relive-your-best-memories,9,2,tnn225,11/25/2015 17:17 +11393675,I built an app that programatically generates a 15s version of movie trailers,http://www.trailerpuppy.com/,1,1,awkward_clam,3/30/2016 22:58 +10770878,How I made my own Amazon Dash button,http://www.stavros.io/posts/emergency-food-button/?print,47,11,stelabouras,12/21/2015 13:01 +10321206,"The Joyful, Illiterate Kindergartners of Finland",http://www.theatlantic.com/education/archive/2015/10/the-joyful-illiterate-kindergartners-of-finland/408325?single_page=true,125,105,petethomas,10/2/2015 20:45 +12234784,Datamining a Flat in Munich (2014),https://funnybretzel.svbtle.com/datamining-a-flat-in-munich,1,1,sdiq,8/5/2016 18:37 +11322978,Snowden: Privacy can't depend on corporations standing up to the government,http://www.networkworld.com/article/3046135/security/edward-snowden-privacy-cant-depend-on-corporations-standing-up-to-the-government.html,169,84,Tsiolkovsky,3/20/2016 14:17 +11433484,WeLive Apartments Let You Rent a Fold-Away Bed Behind a Curtain for $1375,http://gothamist.com/2016/04/05/wework_welive_wedie.php,6,1,Futurebot,4/5/2016 19:18 +10469304,Open-sourcing Pinterest MySQL management tools,https://engineering.pinterest.com/blog/open-sourcing-pinterest-mysql-management-tools,101,8,rwultsch,10/29/2015 4:41 +11981223,Ex-Joist employees share their side of the layoff story,http://betakit.com/joists-former-employees-share-their-side-of-the-story/,3,1,Geekette,6/26/2016 15:39 +10606117,TrueCrypt is safer than previously reported,http://arstechnica.com/security/2015/11/truecrypt-is-safer-than-previously-reported-detailed-analysis-concludes/?utm_content=buffer17549&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,4,1,dijit,11/21/2015 7:57 +10214461,Why programming manuals aren't on audiobook,https://vimeo.com/116986391,2,1,BlackLamb,9/14/2015 10:43 +10284383,Saudi Arabia travel guide,http://wikitravel.org/en/Saudi_Arabia,49,52,lisper,9/26/2015 20:48 +10437574,Show HN: LeadFinch Find Anyone's Email Address,https://leadfinch.com/,15,15,crrashby,10/23/2015 9:15 +10623270,"Introducing StandiT, the Sleek, Smart, Simple Electric Desk",,2,2,Standit,11/24/2015 20:07 +11084728,"Aging, mediocre programmer seeks wise fellow programmers/technical folks",,15,17,dennis_jeeves,2/12/2016 1:28 +12030097,African American Vernacular English Is Not Standard English with Mistakes (1999) [pdf],https://web.stanford.edu/~zwicky/aave-is-not-se-with-mistakes.pdf,156,249,hiq,7/4/2016 11:34 +10225582,Show HN: Unofficial Facebook Messenger app,https://github.com/sindresorhus/caprine,2,2,mofle,9/16/2015 9:57 +12401946,Will Amazon Kill FedEx?,https://www.bloomberg.com/features/2016-amazon-delivery/,68,66,Jerry2,8/31/2016 22:28 +11729540,"One Chart, Twelve Charting Libraries",http://lisacharlotterost.github.io/2016/05/17/one-chart-code/,212,43,ingve,5/19/2016 12:12 +10213487,Questions About Shaken Baby Syndrome,http://www.nytimes.com/2015/09/14/us/shaken-baby-syndrome-a-diagnosis-that-divides-the-medical-world.html,33,17,hackuser,9/14/2015 2:52 +11964880,EU Referendum Results,http://www.bbc.com/news/politics/eu_referendum/results,427,387,mmastrac,6/23/2016 22:50 +12530425,"Open-plan offices might be making us less social and productive, not more",http://qz.com/781974/open-plan-offices-might-be-making-us-less-social-and-productive-not-more/,2,1,yladiz,9/19/2016 11:17 +11523597,StumpWM Tiling Window Manager in Common Lisp,https://stumpwm.github.io/index.html,119,50,giancarlostoro,4/18/2016 22:33 +12307622,Researchers 'Reprogram' Network of Brain Cells with Thin Beam of Light,http://datascience.columbia.edu/researchers-reprogram-network-brain-cells-light,48,11,rch,8/17/2016 19:29 +12196388,MNIST Handwritten Digit Classifier beginner neural network project,https://github.com/karandesai-96/digit-classifier,205,28,ironislands,7/31/2016 10:42 +10255522,Why can't Twitter kill its bots?,http://fusion.net/story/195901/twitter-bots-spam-detection/,2,1,chapulin,9/21/2015 22:26 +11343964,Heres why Europe cant police terrorism very well,https://www.washingtonpost.com/news/monkey-cage/wp/2016/03/22/heres-why-europe-cant-police-terrorism-very-well/,1,1,mathattack,3/23/2016 12:57 +12490481,LoRa Wireless Range Is Bananas. First Look at Cellular for IoT in San Francisco,http://blog.beepnetworks.com/2016/09/loras-wireless-r…in-san-francisco/,1,2,dconrad,9/13/2016 17:34 +11956122,Ethereum Developers Launch White Hat Counter-Attack on the DAO,http://www.coindesk.com/ethereum-developers-draining-dao/,4,1,bpolania,6/22/2016 18:54 +12541891,Ask HN: Thinking about making a website to teach people Excel. Good idea?,,1,3,Im_a_throw_away,9/20/2016 18:20 +11934074,Amazon Gets the Wrath of Paris Town Hall (French),http://www.lefigaro.fr/secteur/high-tech/2016/06/19/32001-20160619ARTFIG00127-amazon-s-attire-les-foudres-de-la-mairie-de-paris.php,1,1,tajen,6/19/2016 18:47 +11437516,Ask HN: Best payment solution for intermediary company,,1,2,pixiez,4/6/2016 8:47 +11124497,Facebook Chat API bot for mentions in group chats,https://github.com/webfreak7/AbhiBot,2,1,webfreak7,2/18/2016 8:50 +11685656,Impatient R,http://www.burns-stat.com/documents/tutorials/impatient-r/,68,6,Tomte,5/12/2016 18:30 +11343643,Duplicacy: cross-platform cloud backup tool based on lock-free deduplication,https://github.com/gilbertchen/duplicacy-beta,48,29,acrosync,3/23/2016 12:03 +10537685,Stonehenge Begins to Yield Its Secrets,http://www.nytimes.com/2015/11/10/science/stonehenge-begins-to-yield-its-secrets.html,93,12,jeo1234,11/10/2015 4:52 +10841853,Google thinks 1 KB = 1000 Bytes,http://imgur.com/2pKvDKi,1,3,stop1234,1/5/2016 7:32 +11041999,Why I No Longer Use MVC Frameworks,http://www.infoq.com/articles/no-more-mvc-frameworks?utm_source=hacker%20news&utm_medium=link&utm_campaign=external,9,2,ancatrusca,2/5/2016 15:27 +12260512,Everyone is quitting,https://sites.google.com/site/thefaceofamazon/home/everyone-is-quitting,599,327,po1nter,8/10/2016 9:46 +12285130,Kilo: A text editor in less than 1000 LOC with syntax highlight and search,https://github.com/antirez/kilo,2,4,okket,8/14/2016 10:58 +10351966,"Beyond disgusting, says journalist Matthew Keys of his hacking conviction",http://www.washingtonpost.com/news/morning-mix/wp/2015/10/08/edward-snowden-miffed-journalist-facing-years-in-prison-for-conspiring-to-deface-an-online-newspaper-article/,89,138,ourmandave,10/8/2015 11:21 +10240082,U.S. Stocks Fall as Rate Decision Spurs Global Economy Concerns,http://www.bloomberg.com/news/articles/2015-09-18/u-s-index-futures-little-changed-as-investors-weigh-fed-policy,2,1,cryoshon,9/18/2015 16:23 +11135383,A Better Vim How to Configure Neovim,http://patrickmarchand.com/posts/neovim-tuto.html,1,1,superskierpat,2/19/2016 18:25 +11337379,Ask HN: How does submitting a patent for an app/website/browser extension work?,,2,3,simonebrunozzi,3/22/2016 15:44 +12509246,Checking If Font Awesome Loaded,http://allthingssmitty.com/2016/09/12/checking-if-font-awesome-loaded/,3,2,AllThingsSmitty,9/15/2016 19:50 +12516937,The Intellectual yet Idiot,https://medium.com/@nntaleb/the-intellectual-yet-idiot-13211e2d0577#.ccgr9ercv,3,6,triplesec,9/16/2016 20:06 +10296461,Show HN: Make a rectangle a puzzle game,https://github.com/kelukelugames/makeabox,23,25,kelukelugames,9/29/2015 14:21 +10414854,Freedom Chair Off-road wheelchair,http://www.gogrit.us/,20,1,agarden,10/19/2015 19:01 +10356365,"AWS Lambda Supports Python, Versioning, Scheduled Jobs, and 5 Minute Functions",https://aws.amazon.com/about-aws/whats-new/2015/10/aws-lambda-supports-python-versioning-scheduled-jobs-and-5-minute-functions/,20,5,impostervt,10/8/2015 21:22 +11402721,Theranos Statement of Deficiency from CMMS [pdf],http://www.wsj.com/public/resources/documents/report20160331.pdf,137,54,jerryhuang100,4/1/2016 4:50 +10475754,"HeLa, the oldest and most commonly used human cell line",https://en.wikipedia.org/wiki/HeLa,54,12,GuiA,10/30/2015 2:08 +10360299,Time to End Monetary Central Planning,http://www.cobdencentre.org/2015/10/time-to-end-monetary-central-planning/,1,2,timtas,10/9/2015 14:43 +10973374,How Thatcher killed the UK's superfast broadband before it even existed,http://www.techradar.com/news/world-of-tech/how-the-uk-lost-the-broadband-race-in-1990-1224784,30,11,anon1385,1/26/2016 13:59 +12441543,Permafrost bubbles are leaking methane 200 times above the norm,http://siberiantimes.com/ecology/casestudy/news/n0681-now-the-proof-permafrost-bubbles-are-leaking-methane-200-times-above-the-norm/,116,86,FuNe,9/7/2016 7:59 +12011150,Show HN: WebArcs Discover and keep up with websites,http://webarcs.com/,1,1,FraserGreenlee,6/30/2016 19:48 +10862896,Islamic Libertarianism in the Quran,http://darwinianconservatism.blogspot.com/2016/01/islamic-libertarianism-in-quran.html,21,3,woodandsteel,1/8/2016 4:16 +10440678,"Profile Engine, the Facebook crawler hated by people who want to be forgotten",http://qz.com/279940/meet-profile-engine-the-spammy-facebook-crawler-hated-by-people-who-want-to-be-forgotten/,10,1,vinnyglennon,10/23/2015 19:12 +10627966,How Walmart Keeps an Eye on Its Massive Workforce,http://www.bloomberg.com/features/2015-walmart-union-surveillance/,2,1,bko,11/25/2015 16:33 +10282046,Bitcoin Processor BitPay Reduces Staff in Cost-Cutting Effort,http://www.coindesk.com/bitcoin-processor-bitpay-reduces-staff-in-cost-cutting-effort&,1,1,herendin,9/26/2015 4:02 +10569994,Kashmir: A statically typed Lispy language compiling to Go,https://owickstrom.github.io/kashmir/,182,71,owickstrom,11/15/2015 16:22 +10864407,Extending Landauer's Bound from Bit Erasure to Arbitrary Computation,http://arxiv.org/abs/1508.05319,6,1,DiabloD3,1/8/2016 12:34 +10512655,"Oh IPv6, Where Art Thou",https://labs.spotify.com/2015/11/05/oh-ipv6-where-art-thou/,44,9,daenney,11/5/2015 10:48 +12192254,The Long Chase,http://www.lightspeedmagazine.com/fiction/the-long-chase/,98,10,monort,7/30/2016 9:11 +11884542,Perfect parody of TED talks,http://digg.com/video/ted-talk-parody?utm_content=buffer5f66d&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer,7,1,ProfChronos,6/11/2016 18:11 +10614029,When Youre Just Drawn That Way: Who Framed Roger Rabbit?,http://www.tor.com/2015/11/05/when-youre-just-drawn-that-way-who-framed-roger-rabbit/,102,14,sohkamyung,11/23/2015 11:39 +10773808,How the online hate mob set its sights on me,http://www.theguardian.com/media/2015/dec/20/social-media-twitter-online-shame,104,83,philangist,12/21/2015 21:54 +10974310,Minksy: My career was based on cowardice,http://www.webofstories.com/play/marvin.minsky/19,3,1,eigenvalue,1/26/2016 16:52 +11914717,A Twitter client that puts users first,http://www.whileaway.top,2,2,headshot,6/16/2016 8:11 +11641734,Most Ordinary Americans in 2016 Are Richer Than Was John D. Rockefeller in 1916,http://cafehayek.com/2016/02/40405.html,24,32,tokenadult,5/6/2016 4:45 +11402862,Dwarf Fortress' creator on how he's 42% towards simulating existence,http://www.pcgamer.com/dwarf-fortress-creator-on-how-hes-42-towards-simulating-existence/#page-1,267,125,phodo,4/1/2016 5:33 +10437852,EverDB The IMDb for high-end products,https://www.everdb.com,2,1,everdb,10/23/2015 11:08 +11599695,Tax Breaks for Twitter Bring Benefits and Criticism,http://www.wsj.com/articles/tax-breaks-for-twitter-bring-benefits-and-criticism-1461947597,42,12,anishkothari,4/30/2016 0:40 +12160940,Machine Learning over 1M hotel reviews,https://blog.monkeylearn.com/machine-learning-1m-hotel-reviews-finds-interesting-insights/,145,41,feconroses,7/25/2016 19:27 +11971774,Please enter information associated with your online presence,https://www.federalregister.gov/articles/2016/06/23/2016-14848/agency-information-collection-activities-arrival-and-departure-record-forms-i-94-and-i-94w-and#h-11,50,22,eplanit,6/24/2016 17:34 +12460545,The Book That Predicted Proxima B [Excerpt],http://www.scientificamerican.com/article/the-book-that-predicted-proxima-b-excerpt/,1,1,pmcpinto,9/9/2016 9:00 +10216743,The Semiotics of Rose Gold,http://www.newyorker.com/culture/cultural-comment/the-semiotics-of-rose-gold,16,9,applecore,9/14/2015 18:53 +11031295,CMU's Advanced Cloud Computing Class (Spring 2016),http://www.cs.cmu.edu/~15719/,40,13,fitzwatermellow,2/4/2016 1:12 +11043536,Can Extreme Exercise Hurt Your Heart? Swimming the Pacific to Find Out,http://www.npr.org/sections/health-shots/2016/02/01/464457884/can-extreme-exercise-hurt-your-heart-swim-the-pacific-to-find-out?sc=17&f=3,51,21,juanplusjuan,2/5/2016 18:33 +11736458,"Show HN: Qwerkey, a better way to play chords",http://some1else.github.io/qwerkey/,8,2,some1else,5/20/2016 9:09 +12258509,Australian census website cracks after malicious attack by hackers,https://theconversation.com/census-website-cracks-after-malicious-attack-by-hackers-63734,10,5,mopoke,8/9/2016 23:52 +10895008,The President Wants Every Student to Learn Computer Science,http://www.npr.org/sections/ed/2016/01/12/462698966/the-president-wants-every-student-to-learn-computer-science-how-would-that-work,2,1,evo_9,1/13/2016 15:35 +11744643,How py.path ate my files,http://pastebin.com/rstwKzZg,2,1,thepain,5/21/2016 13:47 +10916235,Three lines to crash Safari for good,,8,4,oliverfriedmann,1/16/2016 18:38 +11334912,The American Concordes that never flew,http://www.bbc.com/future/story/20160321-the-american-concordes-that-never-flew,57,18,yitchelle,3/22/2016 7:28 +10187906,Larry Wall Presents: Perl 6,http://perl6releasetalk.ticketleap.com/perl-tech-talk/details,51,8,justinator,9/8/2015 20:05 +10463205,Kill the laws that keep car dealers in business,http://www.vox.com/2014/10/26/6977315/buy-car-hassle-free,378,315,prostoalex,10/28/2015 7:37 +11075362,Using Apple TV for better agile development,,5,1,wallboard_tv,2/10/2016 19:36 +10406900,Lawrence Lessig Presidential Campaign: REPORT OF RECEIPTS AND DISBURSEMENTS,http://docquery.fec.gov/pres/2015/Q3/C00583146.html,2,2,blazespin,10/18/2015 1:34 +12229495,Why Useless Surgery Is Still Popular,http://www.nytimes.com/2016/08/04/upshot/the-right-to-know-that-an-operation-is-next-to-useless.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=stream&module=stream_unit&version=latest&contentPlacement=6&pgtype=sectionfront,3,1,dnetesn,8/5/2016 1:07 +12284960,Ikata reactor in Shikoku reaches criticality,http://www.japantimes.co.jp/news/2016/08/13/national/ikata-reactor-shikoku-reaches-criticality/,8,4,e-sushi,8/14/2016 9:22 +11375629,How many external adware/metrics sites can one page hit? This one hit 38,http://imgur.com/jipCRru,2,2,DrScump,3/28/2016 17:14 +11802820,Ask HN: Has YC changed it's MO for acceptance?,,3,2,katpas,5/30/2016 19:57 +10771024,This is an emulation of the personal computer of a conspiracy theorist from 1996,http://www.seadope.com,3,4,_watmuffj_,12/21/2015 13:49 +12552644,"Apple and Mental Health Issues, Employees Speak on Hostile Environment",https://mic.com/articles/154788/apple-employees-say-their-mental-health-issues-came-from-alleged-hostile-work-environment,12,2,magicmu,9/21/2016 21:59 +10436803,Jack Dorsey Gives One-Third of Twitter Stake to Employees,http://bits.blogs.nytimes.com/2015/10/22/jack-dorsey-gives-one-third-of-twitter-stake-to-employees/?hp&action=click&pgtype=Homepage&module=second-column-region®ion=top-news&WT.nav=top-news,10,1,hvo,10/23/2015 4:28 +10851095,Cycligent Announces New Microservices Platform,https://www.cycligent.com/blog/cycligent-announces-new-microservices-platform/,5,1,dbrianwhipple,1/6/2016 15:50 +12441858,We might live in a computer program but it may not matter,http://www.bbc.com/earth/story/20160901-we-might-live-in-a-computer-program-but-it-may-not-matter,26,84,gyre007,9/7/2016 9:25 +12143627,The future is fewer people writing code?,https://techcrunch.com/2016/07/22/dear-google-the-future-is-fewer-people-writing-code/,126,247,pratap103,7/22/2016 14:17 +10703203,The Equidistribution of Lattice Shapes of ...: An Artists Rendering [pdf],http://www.theliberatedmathematician.com/wp-content/uploads/2015/11/PiperThesisPostPrint.pdf,1,3,th0br0,12/9/2015 12:22 +10194857,You literally cannot pay me to speak without a Code of Conduct,http://rachelnabors.com/2015/09/01/code-of-conduct/,12,4,davidgerard,9/9/2015 21:48 +11726931,Announcing Rails 6: An Imagined Keynote,http://naildrivin5.com/blog/2016/05/17/announcing-rails-6-an-imagined-roadmap.html,6,1,pw,5/18/2016 23:44 +11055927,Long Short-Term Memory-Networks for Machine Reading,http://gitxiv.com/posts/tfkjEgw9x4KSi2GnH/long-short-term-memory-networks-for-machine-reading,151,6,jonbaer,2/8/2016 1:25 +10312916,Why the Internet of Things Is Going Nowhere,https://medium.com/@patburns/why-the-internet-of-things-is-going-nowhere-112540e79ae,60,68,patburns,10/1/2015 17:34 +11427110,26-year-old hacker (Geohot) gets $3mm for self driving car startup,http://money.cnn.com/2016/04/04/technology/george-hotz-comma-ai-andreessen-horowitz/index.html?sr=twcnni040416george-hotz-comma-ai-andreessen-horowitz0641PMStoryPhoto&linkId=23044870,4,1,rdl,4/5/2016 1:22 +11063924,Googles Sundar Pichai receives $199m stock award,http://www.ft.com/cms/s/0/c7b9b5d4-ce89-11e5-92a1-c5e23ef99c77.html,4,7,antr,2/9/2016 8:23 +12360311,Microsoft Excel blamed for gene study errors,http://www.bbc.co.uk/news/technology-37176926,5,4,edward,8/25/2016 16:25 +12462261,Why Kubernetes is winning the container war,http://www.infoworld.com/article/3118345/cloud-computing/why-kubernetes-is-winning-the-container-war.html,269,159,bdburns,9/9/2016 14:01 +11470791,Developing for the Amazon Echo,https://medium.com/@genadyo/developing-for-the-amazon-echo-2578339992dc,81,16,genadyo,4/11/2016 11:26 +10783308,Damn Vulnerable Node Application,https://github.com/quantumfoam/DVNA/,43,8,anaxag0ras,12/23/2015 14:09 +10863177,"No More Pirated Games in Two Years, Cracking Group Warns",https://torrentfreak.com/no-more-pirate-games-in-two-years-group-warns-160106/,28,7,ycmbntrthrwaway,1/8/2016 5:47 +11055726,The quest for an infinitely patient tutor,https://medium.com/@fjmubeen/the-quest-for-an-infinitely-patient-tutor-3efd9e682c6b#.i6sne5bc7,2,1,refrigerator,2/8/2016 0:20 +11981394,San Francisco's Epidemic of Car Break-Ins,http://www.theatlantic.com/politics/archive/2016/04/san-francisco-crime-policy/479880/?single_page=true,3,1,prostoalex,6/26/2016 16:16 +11992452,The Reluctant Memoirist,https://newrepublic.com/article/133893/reluctant-memoirist,14,1,pmcpinto,6/28/2016 9:24 +11807249,What's the best place to follow news on data warehouse and databases?,,1,1,jacob_kaufman,5/31/2016 15:51 +10556711,Which Hollywood movies feature the most ridiculous code?,http://www.bbc.co.uk/guides/zxj487h,1,3,tankenmate,11/12/2015 22:43 +11037841,Playlist syncing across streaming sites,http://techcrunch.com/2016/02/04/with-soundsgood-create-and-publish-playlists-on-all-streaming-services,6,1,louisviallet,2/4/2016 22:33 +10207904,Is it futile to un-Google?,http://tsangiotis.com/is-it-futile-to-un-google,110,128,tsagi,9/12/2015 12:25 +10768504,Universities: excellence v equity,http://www.economist.com/news/special-report/21646985-american-model-higher-education-spreading-it-good-producing-excellence,27,17,Futurebot,12/20/2015 22:15 +12521403,Messy Networks for the Internet of Things,http://blog.beepnetworks.com/2016/09/messy-networks-for-the-internet-of-things/,36,4,slewis,9/17/2016 17:24 +10559216,What's up with the black bar on top?,,51,16,maxsavin,11/13/2015 11:23 +10198484,What the IBM Acquisition of StrongLoop Means for the Node.js Community,https://strongloop.com/strongblog/node-js-community-ibm-acquisition/,244,130,ijroth,9/10/2015 15:05 +10577487,"Ask HN: Why are GMT{+,-}N timezones sometimes reversed?",,2,1,zensavona,11/16/2015 21:50 +11750424,Magenta Is Google's New Project to Make Art with Artificial Intelligence,http://www.popsci.com/magenta-is-googles-project-to-make-art-with-artificial-intelligence,2,1,bpires,5/22/2016 21:46 +11549277,Female Hackers Still Face Harassment at Conferences,https://motherboard.vice.com/read/female-hackers-still-face-harassment-at-conferences,2,1,jgrahamc,4/22/2016 14:06 +12292389,Tyre Typed regular expressions,https://drup.github.io/2016/08/12/tyre/,109,32,dwc,8/15/2016 18:28 +10769768,Failing at the Basics in Intelligence and InfoSec,https://danielmiessler.com/blog/failing-at-the-basics-in-intelligence-and-infosec/?fb_ref=9866704a4f5f4bf88a6d6eeaa8cb97e2-Hackernews,2,1,danielrm26,12/21/2015 5:44 +11796151,Sideproject.xyz Find collaborators or join side projects,http://www.sideproject.xyz,3,2,samnis,5/29/2016 12:37 +11836517,Ask HN: Would anyone use an API for sports data?,,26,51,romellogoodman,6/4/2016 14:50 +12033278,Show HN: I built my wedding website using Polymer,https://maggieandcaleb.com/,104,68,caleblloyd,7/4/2016 22:06 +11053022,Command line interface for Signal/TextSecure,https://github.com/AsamK/textsecure-cli,4,1,misterXYZ,2/7/2016 14:59 +11503470,Invest in Things That Matter Please Stop Funding Social Media Apps,https://medium.com/@javier_noris/invest-in-things-that-matter-61a08d03bd2a#.thqjviwe8,5,1,vike27,4/15/2016 11:27 +10930697,Ask HN: Should Chrome support Android apps?,,2,2,jlebrech,1/19/2016 13:51 +10569460,A Web Deployment Tool,https://github.com/meolu/walle-web,1,1,wushuiyong,11/15/2015 12:45 +11998529,Please take care of my plant,http://www.pleasetakecareofmyplant.com/,27,9,znpy,6/28/2016 23:57 +11932748,Startups- Why a business plan is important,https://businessmellow.wordpress.com/2016/06/19/4-reasons-why-a-business-plan-is-important/,1,1,reyherb,6/19/2016 12:27 +12050763,"After Attacks on Muslims, Where Is the Outpouring?",http://www.nytimes.com/2016/07/06/world/europe/muslims-baghdad-dhaka-istanbul-terror.html?_r=0,2,1,georgecmu,7/7/2016 17:23 +10957315,My Trouble with Bayes,http://themultidisciplinarian.com/2016/01/21/my-trouble-with-bayes/,49,15,another,1/23/2016 5:23 +11025300,"What is the best site for following existing, funded startups?",,1,1,seshagiric,2/3/2016 7:54 +12005203,The winner in mixed reality will be Snapchat,https://backchannel.com/the-dark-horse-of-augmented-reality-cdd663e5d902#.3myz1wf09,1,1,steven,6/29/2016 22:14 +10512248,Juce C++ framework reaches v4 with live-coding environment,http://www.juce.com/releases/projucer-juce-4,95,21,geoffroy,11/5/2015 8:27 +10766061,Senna.js,http://sennajs.com/,2,4,lolptdr,12/20/2015 4:31 +10584908,DreamHost is removing sudo access from existing VPS instances on Nov 30th,,1,4,gibybo,11/17/2015 23:56 +12049998,Valleywag changed my life for the better,https://backchannel.com/how-valleywag-changed-my-life-ba24ed2537e1#.krh1zak70,9,3,steven,7/7/2016 15:40 +10273594,Python 3.5 and Multitasking,http://brianschrader.com/archive/python-35-and-multitasking/,84,99,sonicrocketman,9/24/2015 18:33 +11421553,PyPIup: CLI that checks whether your PyPI requirements are up to date,https://github.com/ekonstantinidis/pypiup,2,3,ekonstantinidis,4/4/2016 13:07 +10798769,Paranoid: North Korea's computer operating system mirrors its political one,http://uk.reuters.com/article/northkorea-computers-idUKKBN0UA0GF20151227,4,2,teddyh,12/27/2015 21:06 +11629099,Lessons Learned: How to Effectively Organize a Remote Team Meetup,https://www.chargify.com/blog/how-to-effectively-organize-a-remote-team-meetup/,12,1,adamfeber,5/4/2016 15:38 +10982177,The Man Who Tried to Kill Math in America,http://www.theatlantic.com/education/archive/2016/01/the-man-who-tried-to-kill-math-in-america/429231/?utm_source=SFFB&single_page=true,7,1,randycupertino,1/27/2016 19:01 +10401602,Unicorn: The ultimate CPU emulator,http://www.unicorn-engine.org/#,1,1,adamnemecek,10/16/2015 19:49 +10286564,Natural Language Basics with TextBlob,http://rwet.decontextualize.com/book/textblob/,69,23,sloria,9/27/2015 14:16 +10903084,Proposed New York Law bans encrypted smartphones,http://www.zdnet.com/article/apple-iphone-ban-new-york-looks-to-outlaw-sale-of-encrypted-smartphones/,71,40,ianamartin,1/14/2016 18:03 +11547816,Visual Doom AI Competition,http://vizdoom.cs.put.edu.pl/competition-cig-2016,118,25,nopakos,4/22/2016 8:43 +11137262,Linus Torvalds Rant on Media commit causes user space to misbahave,https://lkml.org/lkml/2012/12/23/75,5,2,jeremynixon,2/19/2016 22:38 +11350088,Will the BBC's free micro:bit computer create a generation of teenage HACKERS?,http://www.mirror.co.uk/tech/bbcs-microbit-free-computer-handout-7610397,4,1,hoodoof,3/24/2016 2:11 +11875255,Do Xeons contain customer specific features?,,4,1,pjc50,6/10/2016 9:41 +10189031,"DDD, Event Sourcing, and CQRS Tutorial",http://cqrs.nu/tutorial/cs/01-design,39,11,lisa_henderson,9/9/2015 0:42 +10842584,How Do You Punish Your Employees?,http://www.yegor256.com/2016/01/05/how-to-punish-employees.html?2016-01,6,6,yegor256a,1/5/2016 11:02 +10976794,Show HN: Graphene GraphQL framework for Python,http://graphene-python.org/,106,25,syrusakbary,1/26/2016 22:39 +12292151,How Home Loans Have Changed since 2000,http://www.zillow.com/research/conventional-mortgage-changes-12999/,97,115,bradleybuda,8/15/2016 17:58 +10692778,I hate the C++ keyword auto,http://www.randygaul.net/2015/12/06/i-hate-the-c-keyword-auto/,37,68,ingve,12/7/2015 21:17 +11033253,How-To-Prevent-Scraping: The ultimate guide on preventing Website Scraping,https://github.com/JonasCz/How-To-Prevent-Scraping,5,3,emartinelli,2/4/2016 11:18 +10501456,Show HN: A Chrome extension that brings back stars on Twitter,https://chrome.google.com/webstore/detail/fav-forever/belacnojopafdobcknphjadpphldcpao,6,2,reedk,11/3/2015 18:25 +11859395,The Webs Creator Looks to Reinvent It,http://www.nytimes.com/2016/06/08/technology/the-webs-creator-looks-to-reinvent-it.html,162,65,elie_CH,6/8/2016 1:32 +12479370,REST Anti-patterns,http://marcelo-cure.blogspot.com/2016/09/rest-anti-patterns.html,140,126,marcelocure,9/12/2016 13:16 +12139602,The Technical Evolution of Vannevar Bushs Memex (2008),http://www.digitalhumanities.org/dhq/vol/2/1/000015/000015.html,23,3,Hooke,7/21/2016 20:00 +11018929,Lumici Slate,,1,1,atifmahmood,2/2/2016 11:59 +10254705,Don't Start a Company Be Obsessed with Something,https://medium.com/@saagrawa/don-t-start-a-company-be-obsessed-with-something-62f7940d88cc,8,1,ceekay,9/21/2015 19:48 +11576291,Hey everyone any feedback would be helpful with our site,http://www.gowevest.com?referral=NJ9eQU8xZ&refSource=copy,1,2,jtouri,4/26/2016 22:29 +12073288,Show HN: A Dynamic CSS Compiler for WordPress,https://github.com/askupasoftware/wp-dynamic-css,8,4,ykadosh,7/11/2016 18:47 +10673127,Android Audio Latency,http://www.androidpolice.com/2015/11/13/android-audio-latency-in-depth-its-getting-better-especially-with-the-nexus-5x-and-6p/,102,83,kawera,12/3/2015 22:15 +11350515,Chinese Buy One-Third of Vancouver Homes: National Bank Estimate,http://www.bloomberg.com/news/articles/2016-03-23/chinese-buy-one-third-of-vancouver-homes-national-bank-estimate,242,222,saeranv,3/24/2016 4:09 +10288590,Atlassian IPO,http://www.smh.com.au/business/markets/software-giant-atlassian-files-us-ipo-papers-20150926-gjvqte.html,11,3,danhsh,9/28/2015 1:50 +12358177,Mezzano An operating system written in Common Lisp,https://github.com/froggey/Mezzano,213,63,arm,8/25/2016 11:23 +10238062,Realtime KVM,http://lwn.net/Articles/656807/,79,1,signa11,9/18/2015 8:23 +11716020,"Facebook Democratized the News, but New Changes Do the Opposite",http://www.nytimes./roomfordebate/2016/05/17/is-facebook-saving-journalism-or-ruining-it/facebook-democratized-the-news-but-new-changes-do-the-opposite,1,1,joshrotenberg,5/17/2016 18:25 +12500975,Self-driving car by comma.ai,https://www.youtube.com/watch?v=AerjS7PTNYs,3,2,andreapaiola,9/14/2016 20:30 +10238327,Sergey Ananov: Two days on ice with three polar bears,http://www.bbc.co.uk/news/magazine-34281218,106,18,ColinWright,9/18/2015 10:15 +12504382,Ask HN: Suggestion on Automated Testing Suit(E2E) for NodeJs/ReactRedux App?,,3,2,sunasra,9/15/2016 8:40 +12209165,QML: A Functional Quantum Programming Language written in Haskell,http://sneezy.cs.nott.ac.uk/QML/,52,9,e19293001,8/2/2016 11:40 +11305825,How to get input from a flashplayer game to make a bot? (No visual input),,1,1,monsy_jr,3/17/2016 17:16 +11193439,"Silicon Valley startups are buying fewer $10,000 bikes as signing bonuses",http://www.businessinsider.com/silicon-valley-startups-buying-fewer-10000-bikes-as-signing-bonuses-2016-2,12,1,justinlaing,2/29/2016 3:26 +11789106,Stanza Programming Language Now Supports Windows,http://www.lbstanza.org,1,1,patricksli,5/27/2016 21:19 +10917328,The Real Problem with Lunch,http://www.nytimes.com/2016/01/16/opinion/the-real-problem-with-lunch.html,139,115,wallflower,1/16/2016 23:13 +10529647,DOJ indicts man who blasted false stock info on Twitter then traded on it,http://arstechnica.com/tech-policy/2015/11/scottish-man-indicted-for-twitter-based-stock-fraud/,7,1,ourmandave,11/8/2015 20:05 +11786337,Bright spots on the dwarf planet Ceres continue to puzzle researchers,http://phys.org/news/2016-05-life-ceres-mysterious-bright-baffle.html,46,14,dnetesn,5/27/2016 14:42 +11915604,Google praises 86-year-old for polite internet searches,https://www.theguardian.com/uk-news/2016/jun/16/grandmother-nan-google-praises-search-thank-you-manners-polite,152,46,Princeofpersia,6/16/2016 12:22 +11328646,"Show HN: Dplython, dplyr data manipulation for python",https://github.com/dodger487/dplython,11,1,capybara,3/21/2016 15:18 +10458361,Car designer warns on Google game changer,http://www.reuters.com/article/2015/10/27/us-autoshow-japan-designer-iduskcn0sl08t20151027?utm_source=twitter,3,2,leephillips,10/27/2015 14:59 +11611434,Ask HN: Server-side web framework in Swift/ObjectiveC?,,1,2,tango12,5/2/2016 14:05 +10423939,Tech Industry Trade Groups Are Coming Out Against CISA,https://www.eff.org/deeplinks/2015/10/tech-industry-trade-groups-are-coming-out-against-cisa-we-need-individual,18,1,DiabloD3,10/21/2015 5:57 +10683395,7 Ways to Arrive at a Breakthrough Idea That Will Positively Impact the World,http://www.forbes.com/sites/kathycaprino/2015/12/02/7-surefire-ways-to-arrive-at-a-breakthrough-idea-that-will-positively-impact-the-world/,1,1,marcusgarvey,12/5/2015 21:50 +12076632,Shezhen: The Silicon Valley of Hardware (Full Documentary),https://www.youtube.com/watch?v=SGJ5cZnoodY,27,3,ktta,7/12/2016 3:55 +10300666,ClojureScript on Android,http://blog.fikesfarm.com/posts/2015-07-15-clojurescript-on-android.html,104,20,Immortalin,9/29/2015 23:40 +11148458,Hoverboard electrical safety standard released,http://www.ul-energy.com/start/the-new-ul-2272-standard-gets-a-handle-on-hoverboard-safety/,1,1,Animats,2/22/2016 4:31 +10715723,Roads to Rome,http://roadstorome.moovellab.com/,1,1,avyfain,12/11/2015 6:31 +10575212,China's yuan takes leap toward joining IMF currency basket,http://www.reuters.com/article/2015/11/14/us-imf-china-yuan-idUSKCN0T22OC20151114#cwmVVRkYhB44kFLF.97,15,6,walterbell,11/16/2015 16:14 +11052122,Upload files to Dropbox using command line,https://github.com/xennygrimmato/DropboxUpload,8,1,xennygrimmato,2/7/2016 7:55 +11925527,Things XSLT can't do,http://www.dpawson.co.uk/xsl/sect2/nono.html,5,2,Tomte,6/17/2016 21:01 +10835459,Show HN: Restabase REST interface for SQL database,https://github.com/marin-liovic/restabase,14,5,MoD411,1/4/2016 13:25 +11921120,On Writing a Book,http://blog.florian-hopf.de/2016/06/on-writing-a-book.html,7,1,florian-hopf,6/17/2016 7:18 +10591672,Cinematic obscenity in America: A hundred years of over-baring censors,http://www.economist.com/blogs/prospero/2015/11/cinematic-obscenity-america,26,38,tintinnabula,11/18/2015 23:58 +11931599,Trumps brigade took over Reddit. Now Reddit is changing its rules to stop them,https://www.washingtonpost.com/news/the-intersect/wp/2016/06/17/trumps-meme-brigade-took-over-reddit-now-reddit-is-trying-to-stop-them/,37,33,credo,6/19/2016 2:49 +10821057,From NYC to Harvard: The War on Asian Success,http://nypost.com/2015/12/29/from-nyc-to-harvard-the-war-on-asian-success/,18,2,ghosh,1/1/2016 4:00 +10218426,SpaceX Has Nearly a Full Uber Funding in Contracts,http://techcrunch.com/2015/09/14/spacex-has-nearly-a-full-uber-funding-in-contracts/,81,48,confiscate,9/15/2015 1:07 +10368273,Applications of Graph Theory (2007),http://www.dharwadker.org/pirzada/applications/,58,12,aoldoni,10/11/2015 6:12 +10361891,London Police Super Recognizer Walks Beat with a Facebook of the Mind,http://www.nytimes.com/2015/10/10/world/europe/london-police-super-recognizer-walks-beat-with-a-facebook-of-the-mind.html,5,1,snewman,10/9/2015 17:40 +10480851,DIY College Scorecard Rankings,http://www.brendansudol.com/college-scorecard-rankings/,1,1,Amorymeltzer,10/30/2015 22:14 +10551142,Urbit Live Stream: Begins 7:00 PM PST,https://www.youtube.com/channel/UCUH5D5Y6PbpU6LLLZZEXwhQ/live,3,1,jpt4,11/12/2015 3:35 +11809053,"When the Data Bubble Bursts, Companies Will Have to Actually Sell Things Again",http://www.fastcoexist.com/3059722/when-the-data-bubble-bursts-companies-will-have-to-actually-sell-things-again,21,2,t23,5/31/2016 18:53 +11369540,Desmos Graphing Calculator HTML5 with LaTeX editor,https://www.desmos.com/calculator,114,29,TXV,3/27/2016 10:22 +10488947,Why Women Compete with Each Other,http://www.nytimes.com/2015/11/01/opinion/sunday/why-women-compete-with-each-other.html?action=click&module=TrendingStory®ion=TrendingTop&pgtype=collection&_r=0,36,11,SimplyUseless,11/1/2015 23:23 +12441738,Arewegameyet? Game Development Using Rust,http://arewegameyet.com/,2,1,eriknstr,9/7/2016 8:57 +12560400,Redesigning the HHVM JIT compiler for better performance,https://code.facebook.com/posts/156835038101894/redesigning-the-hhvm-jit-compiler-for-better-performance/,21,1,samber,9/22/2016 21:11 +11560122,An integer formula for Fibonacci numbers,http://paulhankin.github.io/Fibonacci/,297,56,0xmohit,4/24/2016 16:05 +11810876,"Gawker Smeared Me, and yet I Stand with It",http://www.nytimes.com/2016/05/31/opinion/i-stand-with-gawker.html?action=click&pgtype=Homepage&version=Moth-Visible&moduleDetail=inside-nyt-region-3&module=inside-nyt-region®ion=inside-nyt-region&WT.nav=inside-nyt-region&_r=0,14,7,wglb,5/31/2016 22:47 +10944565,The former CEO of Mozilla is launching a web browser that blocks all ads,http://www.businessinsider.com/former-mozilla-ceo-brendan-eich-launches-ad-blocking-web-browser-brave-2016-1?r=UK&IR=T,2,1,PhilipA,1/21/2016 11:27 +11210578,Go channels are bad,http://www.jtolds.com/writing/2016/03/go-channels-are-bad-and-you-should-feel-bad/,298,153,jtolds,3/2/2016 15:40 +10730992,How to not get ripped off by web developers/web development companies,https://www.linkedin.com/pulse/how-get-ripped-off-web-developersweb-development-michael-hamilton?published=t,1,1,MichaelHamilton,12/14/2015 14:04 +11603684,"One Top Taxpayer Moved, and New Jersey Shuddered",http://www.nytimes.com/2016/05/01/business/one-top-taxpayer-moved-and-new-jersey-shuddered.html?hp&action=click&pgtype=Homepage&clickSource=wide-thumb&module=mini-moth®ion=top-stories-below&WT.nav=top-stories-below&_r=0,2,1,mrjaeger,4/30/2016 21:28 +11923123,Russian Track and Field Team Barred from Rio Olympics,http://www.nytimes.com/2016/06/18/sports/olympics/russia-barred-rio-summer-olympics-doping.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=first-column-region®ion=top-news&WT.nav=top-news&_r=0,54,53,gk1,6/17/2016 15:17 +10693819,I'll pay $5.99 a month for Mailbox,,26,6,shubhamgoel,12/8/2015 0:08 +10784928,This Animated Data Visualization of World War 2 Fatalities Is Shocking,https://vimeo.com/128373915,3,1,MarlonPro,12/23/2015 18:58 +11937524,Help this #OpenData survey to find key drivers in software,,5,1,aliostad,6/20/2016 12:32 +10784968,Guy saved $1000 every month by not drinking alcohol/coffee,http://www.huffingtonpost.com/tobias-van-schneider/no-alcohol-no-coffee-for-15-months-this-is-what-happened_b_8723958.html,2,3,n3on_net,12/23/2015 19:04 +10442777,A Brief History of Popcorn Time [The Verge],http://www.theverge.com/2015/10/23/9600576/popcorn-time-history-timeline,2,1,mkaroumi,10/24/2015 7:21 +11614995,Temperate Earth-sized planets transiting a nearby dwarf star,http://www.nature.com/nature/journal/vaop/ncurrent/full/nature17448.html,2,1,gliese1337,5/2/2016 19:56 +12062294,Simple questions to help reduce AI hype,http://smerity.com/articles/2016/ml_not_magic.html,208,33,apathy,7/9/2016 17:14 +11871495,Ask HN: My daughter wants to build a web site,,2,4,todd8,6/9/2016 18:54 +10824522,"Install, configure and automatically renew a free Let's Encrypt SSL certificate",https://vincent.composieux.fr/article/install-configure-and-automatically-renew-let-s-encrypt-ssl-certificate,82,18,eko,1/2/2016 1:38 +11192059,"Connecting Docker containers, part one",https://deis.com/blog/2016/connecting-docker-containers-1,9,1,simonebrunozzi,2/28/2016 19:46 +10444463,Are tarballs obsolete?,http://esr.ibiblio.org/?p=6875,1,2,bananaoomarang,10/24/2015 18:41 +12195936,A Low Poly CSS Only Beating Heart Animation,http://codepen.io/morkett/full/VjByYj/,2,1,based2,7/31/2016 6:08 +11607119,RISC instruction sets I have known and disliked,http://blog.jwhitham.org/2016/02/risc-instruction-sets-i-have-known-and.html,104,74,jsnell,5/1/2016 17:56 +11359266,Ask HN: How do you integrate remote developers?,,127,90,tnitsche,3/25/2016 10:04 +11348254,Performance Improvements in C Code Using Micro-Optimizations,http://ftp://ftp.tcl.tk/pub/incoming/p15/RichardHipp/microoptimization/paper.html,4,2,blacksqr,3/23/2016 21:08 +11512845,Phineas Fisher's account of how he took down HackingTeam,https://ghostbin.com/paste/6kho7,429,97,adamnemecek,4/16/2016 23:46 +11927694,SQL Database Hacks Using AS and ORDER BY,https://www.morpheusdata.com/news/2016-06-16-sql-database-hacks-using-as-and-order-by,3,1,agsbcap,6/18/2016 9:14 +11857990,Whats the tool that you have to use but dislike the most? Why?,,2,3,vs2370,6/7/2016 21:23 +11748530,"The Common Thread: Fuzzing, Bug Triage, and Attacker Automation",http://cybersecpolitics.blogspot.com/2016/05/the-common-thread-fuzzing-bug-triage.html,38,9,jsnell,5/22/2016 13:40 +11031441,Is this the perfect save icon?,https://medium.com/@etchuk/is-this-the-perfect-save-icon-9651129bda85#.tabfyo29c,3,1,colinprince,2/4/2016 1:51 +10323878,Steve Jobs talks marketing strategy in an internal NeXT video (1991),https://www.youtube.com/watch?v=HNfRgSlhIW0,2,2,bholdr,10/3/2015 13:51 +12421341,New Analysis Confirms Why the Skagit River Bridge Collapsed,http://gizmodo.com/new-analysis-confirms-why-the-skagit-river-bridge-colla-1785842162,61,51,curtis,9/3/2016 21:38 +12348990,I conducted an experiment on the importance of make up,https://www.reddit.com/r/muacjdiscussion/comments/4z7gxm/i_conducted_an_experiment_on_the_importance_of/,18,4,exolymph,8/24/2016 1:15 +10686108,Cancer drugs in 18 countries: a cross-country price comparison study,http://www.thelancet.com/journals/lanonc/article/PIIS1470-2045%2815%2900449-0/abstract,4,1,vanilla-almond,12/6/2015 18:53 +11283072,Show HN: Donald Trump Votewiser,http://www.volkskrant.nl/kijkverder/2016/trump/,2,2,huskyr,3/14/2016 14:31 +11788379,Entrepreneurs Anonymous anonymous peer support group for entrepreneurs,http://entrepreneursanonymous.net/,1,1,nunspajamas,5/27/2016 19:38 +10263129,Writing Good C++14 by Default [pdf],https://github.com/isocpp/CppCoreGuidelines/blob/master/talks/Sutter%20-%20CppCon%202015%20day%202%20plenary%20.pdf,121,81,adamnemecek,9/23/2015 3:06 +12018813,Ask HN: Resources for learning how to hand-write modern x86-64 assembly?,,2,2,sdegutis,7/1/2016 19:01 +11342411,Show HN: My chrome extension to make old webpages look good,https://chrome.google.com/webstore/detail/beautify-me/giojjefcklnloleflpgbbepmdfonomaf,2,7,igauravsehrawat,3/23/2016 5:54 +10593794,Running ASP.NET 5 on Lego Mindstorms EV3,http://bleedingnedge.com/2015/11/08/asp-net-5-on-lego-mindstorms-ev3-using-ev3dev/,32,8,plurby,11/19/2015 9:52 +10979766,You Are Most Likely Misusing Docker,http://www.mpscholten.de/docker/2016/01/27/you-are-most-likely-misusing-docker.html,7,3,_query,1/27/2016 13:01 +12324250,Way to give small digital ocean box more RAM,,3,3,andrewfromx,8/19/2016 23:33 +12022227,America's top earners are Asian men,https://www.washingtonpost.com/news/wonk/wp/2016/07/01/the-group-that-seriously-out-earns-white-men/?tid=pm_business_pop_b,48,66,jgalt212,7/2/2016 12:18 +11091283,"Feuding neighbor turned Airbnb renter asserts renters' rights, refuses to leave",http://www.sfchronicle.com/business/article/most-bizarre-airbnb-feud-story-6824921.php?t=44c4e62221#photo-9357392,3,2,brownbat,2/12/2016 22:49 +11896916,LEDs Are Set to Revolutionize Greenhouse Farming (2014),https://www.technologyreview.com/s/528356/how-leds-are-set-to-revolutionize-hi-tech-greenhouse-farming/,99,58,legodt,6/13/2016 19:52 +12126548,Twitter Just Permanently Suspended Conservative Writer Milo Yiannopoulos,https://www.buzzfeed.com/charliewarzel/twitter-just-permanently-suspended-conservative-writer-milo?utm_term=.gw85D2JjAx#.jgl15YZ86e,46,92,Jerry2,7/20/2016 2:52 +10609809,CacheBrowser: Bypassing Chinese Censorship Without Proxies Using Cached Content [pdf],https://people.cs.umass.edu/~amir/papers/CacheBrowser.pdf,11,2,rahimnathwani,11/22/2015 11:43 +11617981,"Show HN: Larder, bookmarking for developers",https://larder.io/,52,32,joshsharp,5/3/2016 4:47 +11221111,Ask HN: Are 300 ms considered acceptable latency for browser-internal URLs?,,7,1,currysausage,3/4/2016 0:27 +11220608,Tell HN: Who is hiring needs it's own monthly section,,13,7,jqueryin,3/3/2016 22:35 +10238297,The search for a thinking machine,http://www.bbc.co.uk/news/technology-32334573,9,3,ColinWright,9/18/2015 10:00 +11111757,"The Work of John Milnor, a giant in modern mathematics [pdf]",http://www.abelprize.no/c53720/binfil/download.php?tid=53562,92,18,Outdoorsman,2/16/2016 17:55 +10209017,FBI director: Ability to unlock encryption is not a 'fatal' security flaw,https://www.washingtonpost.com/world/national-security/fbi-director-ability-to-unlock-encryption-is-not-a-fatal-security-flaw/2015/09/10/6dd0ac8e-57fc-11e5-8bb1-b488d231bba2_story.html,3,2,serengeti,9/12/2015 19:25 +10301497,Why hunting for life in Martian water will be a tricky task,http://www.nature.com/news/why-hunting-for-life-in-martian-water-will-be-a-tricky-task-1.18450,4,1,biswaroop,9/30/2015 3:12 +11396416,Rules of Makefiles,http://make.mad-scientist.net/papers/rules-of-makefiles/,4,1,rodelrod,3/31/2016 11:45 +11670503,Forgotten Mayan city 'discovered' in Central America by 15-year-old boy,http://www.independent.co.uk/news/world/americas/forgotten-mayan-city-discovered-in-central-america-by-15-year-old-a7021291.html,24,4,jackgavigan,5/10/2016 20:42 +12307732,"Netlify, a sevice for quickly rolling out static websites, raises $2.1M",https://techcrunch.com/2016/08/17/netlify-a-sevice-for-quickly-rolling-out-static-websites-raises-2-1m/,56,25,jamesheroku,8/17/2016 19:41 +12400760,Does giftedness matter? No,http://blogs.scientificamerican.com/beautiful-minds/does-giftedness-matter/,19,13,yoloswagins,8/31/2016 19:20 +10602810,Why I Left the Best Job in the World,https://medium.com/swlh/why-i-left-the-best-job-in-the-world-3689a5a4649a#.lkmc5uwbv,2,1,dx211,11/20/2015 18:19 +12312457,Angular 2 RC5 release enables ahead of time compilation and lazy loading,http://blog.angular-university.io/angular2-ngmodule/,2,1,xpto123,8/18/2016 13:53 +10782294,A Year in Papers 2015,http://blog.acolyer.org/2015/12/14/a-year-in-papers/,47,2,r4um,12/23/2015 6:48 +11799140,Simple Approvals for Pull Requests,https://lgtm.co/,1,2,ScotterC,5/30/2016 1:55 +10223122,HP plans to cut upto 30k jobs,http://www.bloomberg.com/news/articles/2015-09-15/hewlett-packard-to-cut-up-to-30-000-more-jobs-in-restructuring?cmpid=yhoo,3,1,mandeepj,9/15/2015 20:53 +10791280,7 Reasons Why You Will Never Do Anything Amazing with Your Life,https://medium.com/raymmars-reads/7-reasons-why-you-will-never-do-anything-amazing-with-your-life-2a1841f1335d#.m83ncsiaf,4,3,PVS-Studio,12/25/2015 14:17 +12349080,The Real Russian Mole Inside NSA,http://observer.com/2016/08/the-real-russian-mole-inside-nsa/,3,1,mudil,8/24/2016 1:38 +11392251,IBMs brain-inspired chip finds a home at Livermore National Lab,http://arstechnica.com/science/2016/03/ibms-brain-inspired-chip-finds-a-home-at-livermore-national-lab/,3,1,olalonde,3/30/2016 19:32 +10835660,How to Avoid Idea Averaging,http://andrewxhill.com/blog/2016/01/04/idea-averaging/,43,26,andrewxhill,1/4/2016 14:06 +10327461,The Gutless Cutlass: Pilots had good reason to fear the F7U,http://www.airspacemag.com/military-aviation/the-gutless-cutlass-12023991/?all,70,24,smacktoward,10/4/2015 13:35 +10199307,Why Kik Let a Student Design a Major Feature,https://medium.com/@katherinecarras/why-kik-let-a-student-design-a-major-feature-6d9b853e280,8,1,drflet,9/10/2015 17:18 +10670091,Ask HN: Apple and Google browser/OS bundling today vs. Microsoft circa 2000,,2,1,edtrudeau,12/3/2015 15:35 +11496962,Questions to Ask a Potential Tech Employer,https://gitlab.com/doctorj/interview-questions,252,116,dr_jay,4/14/2016 14:24 +12534754,How to transfer Googles 2-factor authentication to a new iphone,http://www.brianckeegan.com/2016/09/how-to-transfer-googles-2-factor-authentication-to-a-new-iphone/,4,1,chetanahuja,9/19/2016 21:11 +11859258,Generating Natural Language Inference Chains with Sequence-2-Sequence Networks,http://arxiv.org/abs/1606.01404,3,1,chlestakoff,6/8/2016 0:55 +10751170,Why is Facebook instant article so fast?,,2,2,eddylg,12/17/2015 12:55 +11023720,Microsoft Is Acquiring Londons AI-Driven Swiftkey for $250M,http://techcrunch.com/2016/02/02/microsoft-is-acquiring-londons-ai-driven-swiftkey-for-250m/,262,99,rahulshiv,2/2/2016 23:59 +11111102,Automatically inferring file syntax with afl-analyze,https://lcamtuf.blogspot.com/2016/02/say-hello-to-afl-analyze.html,1,1,tobik,2/16/2016 16:44 +11875059,Did Google Manipulate Search for Hillary?,https://www.youtube.com/watch?v=PFxFRqNmXKg&feature=youtu.be,12,2,doener,6/10/2016 8:37 +12396356,Why we made our SaaS platform open source,https://medium.com/learnings-in-and-around-sharetribe/why-sharetribe-is-open-source-9462384a2f81#.t1d93xmns,2,1,kusti,8/31/2016 6:22 +10724040,Bret Easton Ellis on Living in the Cult of Likability,http://www.nytimes.com/2015/12/08/opinion/bret-easton-ellis-on-living-in-the-cult-of-likability.html?smid=tw-share,38,9,herbertlui,12/12/2015 20:39 +11273356,Data is a Toxic Asset,https://www.schneier.com/blog/archives/2016/03/data_is_a_toxic.html,180,65,interweb,3/12/2016 16:22 +10796930,Intelligent soldiers most likely to die in battle,https://www.newscientist.com/article/dn16297-intelligent-soldiers-most-likely-to-die-in-battle/,8,2,lumpypua,12/27/2015 9:21 +10849936,AMA Book: A Book by Reddit with Best AMAs,http://askmeanythingbook.com/,6,1,znpy,1/6/2016 11:33 +10924741,Top Books on Amazon Based on Links in Hacker News Comments,http://ramiro.org/vis/hn-most-linked-books/,1043,181,gkst,1/18/2016 15:03 +10641927,Founder Stories: Detroit Water Projects Tiffani Ashley Bell,http://macro.ycombinator.com/articles/2015/11/qa-with-tiffani-ashley-bell/,13,9,jameshk,11/28/2015 18:46 +11628398,3 in 5 Employees Did Not Negotiate Salary,https://www.glassdoor.com/blog/3-5-u-s-employees-negotiate-salary/,3,1,ProZsolt,5/4/2016 14:01 +11001540,Gartner Technology Hype Cycle in 2000,https://qzprod.files.wordpress.com/2014/08/gartner-hype-cycle2000.gif?w=479,16,2,anton_tarasenko,1/30/2016 11:51 +11369867,McAfee Labs Threat Advisory: Ransomware Locky [pdf],https://kc.mcafee.com/resources/sites/MCAFEE/content/live/PRODUCT_DOCUMENTATION/26000/PD26383/en_US/McAfee_Labs_Threat_Advisory-Ransomware-Locky.pdf,1,2,based2,3/27/2016 13:16 +10822793,Towards Energy Consumption Verification via Static Analysis,http://arxiv.org/abs/1512.09369,17,1,ingve,1/1/2016 18:48 +10212204,Solar-System-Sized Experiment to Put Time to the Test,http://fqxi.org/community/articles/display/205,34,3,dnetesn,9/13/2015 18:05 +10984206,Teen flew from Sheffield to Essex via Berlin because it was cheaper than train,http://metro.co.uk/2016/01/27/a-teen-flew-from-sheffield-to-essex-via-berlin-because-it-was-cheaper-than-the-train-5647510,48,32,awqrre,1/27/2016 22:50 +11133909,"How Tim Cook, in iPhone Battle, Became a Bulwark for Digital Privacy",http://www.nytimes.com/2016/02/19/technology/how-tim-cook-became-a-bulwark-for-digital-privacy.html,3,1,Amorymeltzer,2/19/2016 15:19 +10789159,A notebook of laser-cutting experiments for bootstrapping planar fabrication,https://github.com/kragen/laserboot,25,2,luu,12/24/2015 18:38 +12313005,I'm bullish on hedge funds,http://krzana.com/blog/im-bullish-on-hedge-funds,41,51,gearhart,8/18/2016 15:04 +10746008,What happens to ex-cons who go from prison to startups,http://www.dailydot.com/technology/last-mile-prison-coding-program/,4,2,stario1,12/16/2015 18:04 +11713047,10 thousand times faster Swift,https://medium.com/@icex33/10-thousand-times-faster-swift-737b1accd973#.lk21x8xty,92,29,coldcode,5/17/2016 12:36 +10358094,Potential Mechanisms for Cancer Resistance in Elephants,http://jama.jamanetwork.com/article.aspx?articleid=2456041,2,1,danieltillett,10/9/2015 4:07 +10466676,Inside The Fine Art Factories of China,https://instapainting.com/blog/company/2015/10/28/how-to-paint-10000-paintings/,252,83,chrischen,10/28/2015 19:24 +12236574,The World's Greatest Programmer,http://www.computerworld.com/article/3101902/application-development/the-worlds-greatest-programmer.html,2,2,Fjolsvith,8/6/2016 0:58 +11314449,Ask HN: How much do you make at Google?,,193,81,googsomeday,3/18/2016 19:55 +11016447,STS-107 In-Flight Options Assessment [pdf],http://www.nasa.gov/columbia/caib/PDFS/VOL2/D13.PDF,2,1,tosh,2/1/2016 23:17 +11510673,Ask HN: Has Google Stopped Showing Page Rank to Public?,,2,1,techaddict009,4/16/2016 14:19 +11159911,Android Toggle Switch: customizable extension of Switches that supports 2+ items,http://belka.us/en/android-toggle-switch/,10,1,GiovanniFrigo,2/23/2016 16:20 +11845001,Google and Amazon are slowly killing the gadget as we know it,http://www.businessinsider.com/apple-iphone-vs-web-services-2016-6,8,1,walterbell,6/6/2016 6:22 +10715161,Philosophy of science books every computer scientist should read,http://tomasp.net/blog/2015/reading-list/,183,205,nkurz,12/11/2015 2:36 +10592749,Antibiotic resistance: World on cusp of 'post-antibiotic era',http://www.bbc.co.uk/news/health-34857015,16,2,majc2,11/19/2015 4:30 +10950071,Google Paid Apple $1B to Keep Search Bar on iPhone,http://www.bloomberg.com/news/articles/2016-01-22/google-paid-apple-1-billion-to-keep-search-bar-on-iphone,159,52,aaronkrolik,1/22/2016 1:25 +12362697,CIA and Amazon Using AI to Spy on Earth from SPACE,https://www.thesun.co.uk/news/1673802/cia-training-artificial-intelligence-to-spy-on-earth-from-space-using-computer-vision/,10,1,w8rbt,8/25/2016 21:36 +11053097,A waterless toilet that turns poo into power,http://www.theguardian.com/sustainable-business/2016/feb/07/waterless-toilet-turns-your-poo-into-power-nano-membrane-technology,60,21,YeGoblynQueenne,2/7/2016 15:19 +10443086,The Samsung 950 Pro PCIe SSD Review,http://www.anandtech.com/show/9702/samsung-950-pro-ssd-review-256gb-512gb,84,70,x0f1a,10/24/2015 10:07 +12152965,Show HN: Automatically import or install modules when they're needed in IPython,https://github.com/OrangeFlash81/ipython-auto-import,19,3,OrangeFlash81,7/24/2016 10:42 +12243611,Ask HN: What book have you given as a gift?,,360,514,schappim,8/7/2016 20:57 +10742944,A Cosmonaut on the Moon: Korlevs N-1/L3 Plan,https://thehighfrontier.wordpress.com/2015/11/11/a-cosmonaut-on-the-moon-korlevs-n-1l3-plan/,66,10,sohkamyung,12/16/2015 8:03 +11192542,LambdaNative,http://www.lambdanative.org,287,73,macco,2/28/2016 21:50 +12095071,Open letter from technology sector leaders on Donald Trumps candidacy,https://medium.com/@markjosephson/an-open-letter-from-technology-sector-leaders-on-donald-trumps-candidacy-for-president-c9197af88fed#.dnp5l1c3w,7,1,SeanOC,7/14/2016 16:16 +11945354,How to Pick Your Battles on a Software Team,https://spin.atomicobject.com/2016/06/21/pick-battles-software-team/#.V2k-lErouZc.hackernews,190,136,philk10,6/21/2016 13:18 +10869396,802.11ah Wi-Fi Standard Approved,http://www.wi-fi.org/discover-wi-fi/wi-fi-halow,207,105,sengork,1/9/2016 0:33 +11946756,"SPF, DMARC, and DKIM: How to Keep Your Email Out of the Spam Folder",http://www.wpsitecare.com/keep-your-email-out-of-the-spam-folder/,108,58,wpBenny,6/21/2016 16:10 +11026525,Spirograph drawing,https://nbremer.github.io/spirograph/,2,1,martgnz,2/3/2016 14:20 +11075357,Show HN: Temporary File Sharing Service,http://www.5minutestorage.com,2,3,bbayer,2/10/2016 19:36 +10987490,Piñatas delivered by drones,https://www.youtube.com/watch?v=7uCnxqXCghg,2,4,sleepyhead,1/28/2016 10:59 +10839149,Maryland Debacle Shows Why We Must Get Football Out of Our Universities,http://www.forbes.com/sites/stevensalzberg/2015/10/11/get-football-out-of-our-universities-take-it-private/,23,3,tmoullet,1/4/2016 22:17 +10402431,UK launches exceptional talent visa for founders,http://www.techcityuk.com/blog/2015/10/tech-city-uk-unveils-tech-nation-visa-scheme-tier-1-exceptional-talent/,1,1,robk,10/16/2015 22:31 +12424446,Ask HN: What would you improve about human body?,,2,3,ne01,9/4/2016 14:17 +11175484,How to get an app logo designed for $42 on Fiverr,http://burstcommerce.com/shopify-app-logo-banner-fiverr/,25,6,atomgiant,2/25/2016 16:28 +11930821,Congresswoman Proposes Top 1% Act to Drug Test Wealthy People Who Get Tax Breaks,http://bipartisanreport.com/2016/06/16/congresswoman-proposes-top-1-act-to-drug-test-wealthy-people-who-get-tax-breaks-quotes/,9,3,molecule,6/18/2016 22:02 +11566720,Homebrew now sends usage information to Google Analytics,https://github.com/Homebrew/brew/blob/master/share/doc/homebrew/Analytics.md,359,312,aorth,4/25/2016 19:35 +11612449,"LLVM Backend for the VideoCore4, Raspberry Pi 2 VPU",https://github.com/christinaa/LLVM-VideoCore4,129,53,DHowett,5/2/2016 15:49 +12169773,Robert Fano has died,http://www.nytimes.com/2016/07/27/technology/robert-fano-98-dies-engineer-who-helped-develop-interactive-computers.html,24,2,kercker,7/27/2016 0:33 +10187705,"Mac User Groups Fade in Number and Influence, but Devotees Press On",http://www.nytimes.com/2015/09/09/technology/personaltech/apple-mac-user-groups-devotees-press-on.html,10,5,ChrisArchitect,9/8/2015 19:31 +12477858,Show HN: Curated list of companies using WordPress,https://github.com/minthemiddle/powered-by-wordpress,4,3,mcbetz,9/12/2016 7:41 +11651292,"Mayhem, Amiga Game, Ported to Raspberry Pi",http://www.stuffaboutcode.com/2016/04/mayhem-classic-amiga-game-ported-to.html,3,1,doener,5/7/2016 20:48 +10453650,Easily Create D3 Examples,http://blockbuilder.org/,98,23,kilbuz,10/26/2015 19:06 +10447933,Man Accused of Spoofing Some of the World's Biggest Futures Exchanges,http://www.bloomberg.com/news/articles/2015-10-19/before-u-s-called-igor-oystacher-a-spoofer-he-was-known-as-990,55,34,SonicSoul,10/25/2015 19:09 +12296604,The making of a open source timetracker without the need to sign up in polymer,https://junt.io/open-source/making-of-yotilo-1/,3,1,junt_io,8/16/2016 11:00 +12277391,Love the Fig,http://www.newyorker.com/tech/elements/love-the-fig,53,12,Petiver,8/12/2016 17:41 +11152472,"An Open Letter to HubSpot Employees: Focus on Value, Not Valuation",https://readthink.com/an-open-letter-to-hubspot-employees-focus-on-value-not-valuation-226fed123d2b#.vrv91cgjk,4,1,erikdevaney,2/22/2016 17:22 +11886753,"Ask HN: Need advice.My story:Once an $90k jQuery developer,now a useless lamer",,27,16,baybal2,6/12/2016 5:15 +10726158,Poor man's VPN via ssh socks proxy,http://www.redpill-linpro.com/sysadvent//2015/12/13/socks-proxy-as-poor-mans-vpn.html,117,51,kvisle,12/13/2015 12:17 +12461438,Wells Fargo Opened a Couple Million Fake Accounts,https://www.bloomberg.com/view/articles/2016-09-09/wells-fargo-opened-a-couple-million-fake-accounts,2,1,PanMan,9/9/2016 12:18 +11924392,Pixel Art to CSS,http://pixelart.jvrpath.com/,5,1,harel,6/17/2016 18:08 +12553261,Google backtracks on privacy promise with messaging service Allo,https://techcrunch.com/2016/09/21/google-lands-in-hot-water-after-backtracking-on-earlier-allo-privacy-promise/,59,30,Lordarminius,9/21/2016 23:47 +11844999,Ask HN: Password Schema Site,,3,3,hactually,6/6/2016 6:21 +11533731,England and Wales House Price Analysis,https://jasmcole.com/2016/04/17/england-and-wales-house-prices/,153,60,mhb,4/20/2016 12:04 +12548808,Apple in Talks to Buy McLaren,http://jalopnik.com/apple-in-talks-to-buy-mclaren-report-1786894101?utm_campaign=socialflow_gizmodo_facebook&utm_source=gizmodo_facebook&utm_medium=socialflow,14,1,hackerkid,9/21/2016 15:05 +10613550,Covert Communication in Mobile Applications [pdf],https://people.csail.mit.edu/mjulia/publications/Covert_Communication_in_Mobile_Applications_2015.pdf,12,1,sylvarant,11/23/2015 9:13 +11081725,Show HN: Party with a Local 2.0 a night out anywhere is better with a local,http://app.partywithalocal.com/,7,1,partywithalocal,2/11/2016 17:59 +11800686,Wanted: Quirky Individuals to join a fast growing startup to build a new future,,3,4,comeexplore,5/30/2016 10:57 +11340492,Ask HN: Critique of logo design ideas,,1,3,c_prompt,3/22/2016 22:38 +10736954,"Show HN: Ursprung, a complete blog without a back end area",https://onli.github.io/ursprung/,8,19,onli,12/15/2015 10:27 +11416548,JSClassFinder: Detecting class-like structures in legacy JavaScript code,https://github.com/aserg-ufmg/JSClassFinder,51,5,nextjj,4/3/2016 16:02 +12336899,PowerShell Post Exploitation Tool Aimed at Making Penetration Testing easier,https://github.com/fdiskyou/PowerOPS,12,1,hitr,8/22/2016 15:17 +11491622,There's now an 'Uber just for women,http://www.digitalspy.com/tech/apps/news/a790459/theres-now-an-uber-just-for-women-chariot-for-women-taxi-service/,6,3,ourmandave,4/13/2016 19:52 +10613864,Chromium Re-Enables HTTP/2 Over NPN,https://code.google.com/p/chromium/issues/detail?id=557197,5,1,pjf,11/23/2015 10:47 +10639834,Ask HN: Using a rented apartment for office space?,,8,7,HomeOffice,11/28/2015 3:03 +11020263,Which software do you need but which doesn't exist yet?,,5,6,juli3n,2/2/2016 16:06 +10715549,A fascinating map of the worlds most and least racially tolerant countries,https://www.washingtonpost.com/news/worldviews/wp/2013/05/15/a-fascinating-map-of-the-worlds-most-and-least-racially-tolerant-countries/,4,1,scat,12/11/2015 5:04 +11296491,JavaScript libraries should be written in TypeScript,http://staltz.com/all-js-libraries-should-be-authored-in-typescript.html,386,275,ingve,3/16/2016 11:35 +11733025,"So Far, So Good",http://hintjens.com/blog:119,162,28,okket,5/19/2016 19:28 +10363837,When Were All Urban Planners,https://nextcity.org/features/view/when-were-all-urban-planners,15,2,waterlesscloud,10/9/2015 23:32 +11228319,PIN analysis (2012),http://datagenetics.com/blog/september32012/index.html,3,1,adamnemecek,3/5/2016 3:44 +11000073,Ask HN: Did you ever consider dropping out?,,8,21,amjaeger,1/30/2016 1:40 +11914046,New Planet Is Largest Discovered That Orbits Two Suns,http://www.nasa.gov/feature/goddard/2016/new-planet-is-largest-discovered-that-orbits-two-suns,4,1,smaili,6/16/2016 4:43 +10734384,?Corporate Governance and Blockchains,http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2700475,1,1,Dowwie,12/14/2015 22:15 +11610435,Ask HN: How do you deal with abrasive personalities?,,3,4,grafelic,5/2/2016 10:52 +10418557,How Yelp Uses Deep Learning to Classify Photos,http://engineeringblog.yelp.com/2015/10/how-we-use-deep-learning-to-classify-business-photos-at-yelp.html,4,1,lvwrence,10/20/2015 11:35 +11432638,Native Mac Notifications Comes to Chrome Stable,https://bugs.chromium.org/p/chromium/issues/detail?id=326539&can=2&start=0&num=100&q=&colspec=ID%20Pri%20M%20Stars%20ReleaseBlock%20Component%20Status%20Owner%20Summary%20OS%20Modified&groupby=&sort=,158,93,heavymark,4/5/2016 17:47 +10363088,Reviving Smalltalk-78: The First Modern Smalltalk Lives Again (2014) [pdf],http://www.freudenbergs.de/bert/publications/Ingalls-2014-Smalltalk78.pdf,81,23,fniephaus,10/9/2015 20:31 +11983188,Spry: a programming language inspired by Smalltalk/Rebol and written in Nim,http://sprylang.org/,134,63,vmorgulis,6/26/2016 22:50 +10464860,Mark Zuckerberg: net neutrality is a first-world problem,http://www.telegraph.co.uk/technology/mark-zuckerberg/11960016/Mark-Zuckerberg-net-neutrality-is-a-first-world-problem.html,2,2,denzil_correa,10/28/2015 15:11 +10386359,Secret surveillance of suspicious blacks in one of DC's poshest neighborhoods,https://www.washingtonpost.com/local/social-issues/the-secret-surveillance-of-suspicious-blacks-in-one-of-the-nations-poshest-neighborhoods/2015/10/13/2e47236c-6c4d-11e5-b31c-d80d62b53e28_story.html,14,8,kanamekun,10/14/2015 13:07 +12171577,Window JavaScript alert messagebox tutorial for beginners,http://www.how-to-program-in-java.com/2016/07/25/window-javascript-alert-messagebox-tutorial-beginners/,1,1,abenmariem,7/27/2016 9:51 +11180459,Breaking and Entering: Lose the Lock While Embracing Concurrency,http://bravenewgeek.com/breaking-and-entering-lose-the-lock-while-embracing-concurrency/,24,2,olalonde,2/26/2016 8:46 +11313951,The Global Rebellion Against No-Skin-In-the-Game Insiders,http://reason.com/blog/2016/03/15/nassim-taleb-the-global-rebellion-agains,113,93,MollyR,3/18/2016 18:49 +12534287,"For kids, addictiveness of screens can rivals heroin",http://nypost.com/2016/08/27/its-digital-heroin-how-screens-turn-kids-into-psychotic-junkies/,10,3,gnicholas,9/19/2016 20:09 +12096534,Ask HN: Which startups will expand internationally in the next 1-2 years?,,9,3,rsmoore215,7/14/2016 19:24 +11524098,So Youre Getting a Ph.D.: Welcome to the Worst Job Market in America,http://www.weeklystandard.com/so-youre-getting-a-ph.d./article/1059359#.VxVRECG6Ck0.facebook,16,8,jseliger,4/19/2016 0:31 +11548816,The average size of Web pages is now the average size of a Doom install,https://mobiforge.com/research-analysis/the-web-is-doom,857,449,Ovid,4/22/2016 13:11 +12114716,D4 Declarative Data-Driven Documents,https://d4.js.org,263,79,joelburget,7/18/2016 12:47 +11799479,Study: MRI scans show schizophrenic brains attempt self-repair,http://www.upi.com/Health_News/2016/05/28/Study-MRI-scans-prove-schizophrenic-brains-attempt-self-repair/6851464458336/,4,1,tokenadult,5/30/2016 4:03 +10551180,How to Advertise on a Porn Website (2013),https://blog.eat24.com/how-to-advertise-on-a-porn-website/,109,24,waldohatesyou,11/12/2015 3:44 +11181459,Show HN: A chrome extension showing star history graph of GitHub repository,https://github.com/timqian/star-history-plugin,3,4,timqian,2/26/2016 14:19 +10271186,SpaceX and Tesla backer just invested $50M in this startup,http://fortune.com/2015/09/24/premise-data-world-bank/,1,1,tankenmate,9/24/2015 12:24 +11333240,This Australian Game Will Turn Us All into Hackers,http://www.kotaku.com.au/2015/07/this-australian-game-will-turn-us-all-into-hackers/,2,1,andrewstuart,3/21/2016 23:49 +12236617,You Dont Have Plenty of Time,http://startingstrength.com/training/you-dont-have-plenty-of-time,139,42,deegles,8/6/2016 1:20 +11466862,The Internet of Things has a dirty little secret,https://medium.com/internet-of-shit/the-internet-of-things-has-a-dirty-little-secret-28bce2d412b2#---0-91.rwny5cnj4,58,27,pierregillesl,4/10/2016 16:30 +11098980,Hardening Debian for the Desktop Using Grsecurity,https://micahflee.com/2016/01/debian-grsecurity/,3,1,based2,2/14/2016 17:05 +10674014,How Mark Zuckerbergs Altruism Helps Himself,https://www.propublica.org/article/how-mark-zuckerbergs-altruism-helps-himself,2,1,ericthor,12/4/2015 1:19 +11736884,Why Googles monopoly abuse case in Europe will run and run,http://arstechnica.com/tech-policy/2016/05/google-antitrust-case-europe-details-analysis/,34,8,Tomte,5/20/2016 11:01 +11740412,An Open Source Honeypot Using Docker,https://github.com/iankronquist/beeswax,19,6,muricula,5/20/2016 18:44 +11816041,Attack of the Ad Blockers,http://www.bloomberg.com/gadfly/articles/2016-06-01/mobile-ad-blocking-s-surge-shows-digital-media-must-change,32,67,antouank,6/1/2016 16:58 +10559148,Ask HN: Best desktop android running as VM?,,4,8,botw,11/13/2015 11:04 +11734492,Ask HN: Is this a billion dollar business idea?,,3,5,thrwawy20160421,5/19/2016 22:55 +12038660,Ask HN: How to move from architecture to cod,,1,2,drieddust,7/5/2016 18:51 +10707585,Diversity makes you Brighter,http://www.nytimes.com/2015/12/09/opinion/diversity-makes-you-brighter.html,1,1,trustfundbaby,12/9/2015 23:20 +11022756,Show HN: Instagloss Save time with variable summarization,http://www.instagloss.com/,27,3,MayanAstronaut,2/2/2016 21:24 +10446553,Trending ranking. How come none take pageviews into account?,https://moz.com/blog/reddit-stumbleupon-delicious-and-hacker-news-algorithms-exposed,2,2,Oggle,10/25/2015 10:34 +12355379,"Cancer survival not linked to a positive attitude, study finds",http://www.apa.org/monitor/jan08/cancer.aspx,3,1,colinprince,8/24/2016 21:26 +11847860,Introducing Ignite for React Native,https://shift.infinite.red/ignite-your-mobile-development-32417590ed3e#.550hb5veo,4,3,GantMan,6/6/2016 16:15 +11552003,How do I find out who has sent me the most emails?,,5,3,id122015,4/22/2016 19:34 +12325374,My quest for a dream job,,1,2,kshk123,8/20/2016 5:42 +10834682,"Its 2016 already, how are websites still screwing up these user experiences?",http://www.troyhunt.com/2016/01/its-2016-already-how-are-websites-still.html,15,6,campuscodi,1/4/2016 9:34 +11583268,Elon Musk Supports His Business Empire with Unusual Financial Moves,http://www.wsj.com/articles/elon-musk-supports-his-business-empire-with-unusual-financial-moves-1461781962,100,125,phodo,4/27/2016 18:38 +11027539,"Dropbox May Not Be LeBron James, but Is Still in the Game",http://www.nytimes.com/2016/02/04/technology/dropbox-may-not-be-lebron-james-but-it-is-still-in-the-game.html,150,195,es09,2/3/2016 16:51 +12123859,"Free Rotating Proxy API, Free Rotating User Agent API",https://www.proxicity.io,2,2,cmeadows,7/19/2016 18:49 +11932702,The Inside of a Neutron Star,http://nautil.us/issue/31/stress/the-inside-of-a-neutron-star-looks-spookily-familiar,80,22,dnetesn,6/19/2016 12:09 +11404062,Ask HN: Is it stupid to store GB's of data without a DBMS/DS/etc?,,2,7,erik14th,4/1/2016 11:26 +10355249,Zero correlation between state homicide rate and state gun laws,https://www.washingtonpost.com/news/volokh-conspiracy/wp/2015/10/06/zero-correlation-between-state-homicide-rate-and-state-gun-laws/,3,1,monort,10/8/2015 19:06 +10651018,Tech Unicorns: Gored,http://www.economist.com/news/leaders/21679194-correction-startup-valuations-would-be-good-news-technology-sector-gored,30,11,nopinsight,11/30/2015 18:58 +10227500,InfluxDB 0.9.4 is out Here's what's new,https://influxdb.com/blog/2015/09/16/InfluxDB-0_9_4-released-with-top-order-by-time-desc-and-more.html,2,1,greyhoundsmc,9/16/2015 15:52 +10625233,Maybe Clockless Chip Design's Time Has Come,https://www.semiwiki.com/forum/content/5196-maybe-clockless-chip-designs-time-has-come.html,49,56,throwaway000002,11/25/2015 3:53 +11379819,The Mathematical Justification for Not Letting Your Builds Queue,https://circleci.com/blog/mathematical-justification-for-not-letting-builds-queue/,5,1,dankohn1,3/29/2016 6:26 +11675000,Security update for IntelliJ-based IDEs v2016.1 and older versions,http://blog.jetbrains.com/blog/2016/05/11/security-update-for-intellij-based-ides-v2016-1-and-older-versions/,87,21,shalupov,5/11/2016 13:24 +12396520,Common Startup Timing Mistakes and How to Avoid Them,https://codingvc.com/common-startup-timing-mistakes-and-how-to-avoid-them/?utm_campaign=Mattermark+Daily&utm_source=hs_email&utm_medium=email&utm_content=33630139&_hsenc=p2ANqtz-_8iZGC4mo543yNV-whawSgYp8lkVTZ0g-pZ1ndWcP-FX8C6QSVnCJRNQxevVjn5_2HSRTntDoLt1vpnvk7Sn1rL1Q1zA&_hsmi=33630139,53,10,prostoalex,8/31/2016 7:21 +10385292,Europe's largest newspaper by circulation bans users with AdBlock,http://www.xing-news.com/reader/news/articles/118369?newsletter_id=8567&xng_share_origin=email,5,4,riskneural,10/14/2015 6:32 +10964163,"When we take turns speaking, we chime in after a culturally universal short gap",http://www.theatlantic.com/science/archive/2016/01/the-incredible-thing-we-do-during-conversations/422439/?single_page=true,69,58,ehudla,1/24/2016 21:44 +10200839,Show HN: Mirror of current articles on HN front page,http://hn.getpageback.com/,11,9,enan,9/10/2015 22:04 +10344939,Manifest for a web application Working Draft,http://www.w3.org/TR/appmanifest/,46,6,bpierre,10/7/2015 9:08 +10941480,The Man Who Turned Night into Day,https://motherboard.vice.com/read/the-man-who-turned-night-into-day,5,1,Palomides,1/20/2016 21:25 +12011282,Don't like Brexit? We have a plan,http://www.transylvaniabeyond.com/,108,50,beniaminmincu,6/30/2016 20:09 +10468049,The American Presidency Project,http://www.presidency.ucsb.edu/index.php,3,1,Oatseller,10/28/2015 23:05 +11617195,The Golden Age of Drug Trafficking,https://news.vice.com/article/drug-trafficking-meth-cocaine-heroin-global-drug-smuggling,3,1,gwintrob,5/3/2016 1:34 +11996832,Zend Framework 3 Released,https://framework.zend.com/blog/2016-06-28-zend-framework-3.html,93,91,agopaul,6/28/2016 19:36 +10274963,Shadertoy Procedural city,https://www.shadertoy.com/view/XtsSWs,15,1,epsylon,9/24/2015 21:42 +11832602,"Fish eat plastic like teens eat fast food, researchers say",http://www.bbc.co.uk/news/science-environment-36435288,2,1,nsgi,6/3/2016 19:29 +11022993,Sandstorm App update: New open-source self-hostable apps,https://sandstorm.io/news/2016-01-22-8-new-open-source-apps,152,53,andybak,2/2/2016 21:57 +11103198,Efficient Rails DevOps (second edition),https://efficientrailsdevops.com,4,2,relativkreativ,2/15/2016 13:19 +10758191,Common Lisp Koans,https://github.com/google/lisp-koans,100,22,galois198,12/18/2015 13:00 +11591941,dot NET Micro Framework,http://www.netmf.com/,27,6,talles,4/28/2016 21:15 +10246428,This Dad Wrote a Check to His Kids School Using Common Core Math,http://www.buzzfeed.com/morganshanahan/this-dad-wrote-a-check-to-his-kids-school-in-common-core-mat?bffbparents&utm_term=4ldqphs#.hpmv81lXn,7,4,bhartzer,9/20/2015 2:59 +10492644,Theres no better place than oceans for cleaen power. Why'd it take us so long?,http://www.slate.com/articles/business/the_juice/2015/10/block_island_wind_farm_off_rhode_island_finally_brings_wind_power_to_america.html,1,1,jseliger,11/2/2015 16:12 +12554611,"Hacker house blues: life with 12 programmers, 2 rooms and one 21st-century dream",http://www.salon.com/2016/09/17/hacker-house-blues-my-life-with-12-programmers-2-rooms-and-one-21st-century-dream/,4,3,MilnerRoute,9/22/2016 5:33 +10239744,An Odd Couple: Samuel Beckett and Buster Keaton,http://www.movingimagearchivenews.org/an-odd-couple-samuel-beckett-buster-keaton/,21,5,dnetesn,9/18/2015 15:29 +12196882,"If Russia Hacked D.N.C., How Should Obama Retaliate?",http://www.nytimes.com/2016/07/31/us/politics/us-wrestles-with-how-to-fight-back-against-cyberattacks.html,2,1,finid,7/31/2016 13:27 +10191938,Ask HN: How do you feel about ad blockers?,,29,40,slsii,9/9/2015 15:16 +11749282,In 1950s Vegas Exploding A-Bombs Were Cause For a Party,http://www.yournewszonenetwork.com/2015/04/in-1950s-vegas-exploding-bombs-were.html,26,6,marvindanig,5/22/2016 16:53 +12513340,Ask HN: Can you help this quadriplegic organise their medical information?,,4,1,escapologybb,9/16/2016 11:47 +10378306,Maryland Debacle Shows Why We Must Get Football Out of Our Universities,http://www.forbes.com/sites/stevensalzberg/2015/10/11/get-football-out-of-our-universities-take-it-private/,8,3,FireBeyond,10/13/2015 2:49 +11713490,"IBM May Have Just Found How to End Viral Infection. Yes, All of Them",http://secondnexus.com/technology-and-innovation/molecule-could-destroy-all-viruses/,13,1,SimplyUseless,5/17/2016 13:38 +11658200,Butteraugli a tool for measuring differences between images,https://github.com/google/butteraugli,71,11,aorth,5/9/2016 7:54 +10358597,A new approach to web performance,https://www.ampproject.org/how-it-works/,225,172,kostarelo,10/9/2015 7:19 +12249739,Rationalizing Startup Ideas,https://medium.com/@kyle.smith.bgsu/rationalizing-startup-ideas-7625d0491efe#.y18rmtm0u,1,1,Kevin_S,8/8/2016 18:13 +11944587,NPM integration for Rails,https://github.com/endenwer/npm-rails,2,1,endenwer,6/21/2016 9:39 +10304617,Estimated loss of global revenue due to blocked ads during 2015 was $21.8B [pdf],http://downloads.pagefair.com/reports/2015_report-the_cost_of_ad_blocking.pdf,2,1,johnnaka,9/30/2015 15:22 +11686769,Spain Loves Tesla Letter to Elon Musk [pdf],https://www.spainlovestesla.com/SpainLovesTeslaEN.pdf,3,1,openmaze,5/12/2016 21:03 +12012279,Email updates about your own activity,https://github.com/blog/2203-email-updates-about-your-own-activity,23,6,wpBenny,6/30/2016 22:17 +11232246,The Dark Ages of Austin Startup Capital,http://techcrunch.com/2016/03/05/the-dark-ages-of-austin-startup-capital/,71,34,cdcro,3/6/2016 2:47 +10334264,Ask HN: Burnt out in job after 9 months,,7,10,password03,10/5/2015 19:36 +10552402,Netspeak Search for Words,http://www.netspeak.org/,17,1,charlieirish,11/12/2015 10:58 +11061074,"Just tags, no folders. But everything at right place",https://grabduck.com/last,2,2,grabduck,2/8/2016 21:39 +11515173,Show HN: FailArchive Fail videos to waste your time,https://failarchive.com,4,1,steve_wilson,4/17/2016 16:47 +12051763,Bluetooth headphones are annoying,http://www.theverge.com/2016/7/7/12109384/wireless-bluetooth-headphones-battery-life-video,6,10,walterbell,7/7/2016 20:04 +11682163,Polar watches/sportbands Python API,https://github.com/rsc-dev/loophole,63,18,rsc-dev,5/12/2016 8:48 +10194179,Simple Online Web Editor,https://redaktor.io/,1,1,redaktor,9/9/2015 20:09 +10285849,The Volkswagen Scandal: A Mucky Business,http://www.economist.com/news/briefing/21667918-systematic-fraud-worlds-biggest-carmaker-threatens-engulf-entire-industry-and,7,1,rmathew,9/27/2015 8:17 +10322033,Vigilante hacker creates good virus,http://www.maximumpc.com/router-virus-seemingly-fights-the-good-fight/,3,1,chatman,10/2/2015 23:59 +10659957,Tor's first real donation campaign,https://blog.torproject.org/blog/our-first-real-donations-campaign,3,1,zmanian,12/2/2015 0:20 +10729130,The Tab Raises $3M for Hyperlocal News Site Written by Student Journalists,http://techcrunch.com/2015/12/10/the-tab-raises-3m-for-its-hyperlocal-news-site-written-by-unpaid-student-journalists/,13,6,doppp,12/14/2015 2:41 +10984425,Ask HN: What's your favorite physics demonstration?,,1,1,CarolineW,1/27/2016 23:24 +10463187,Nim 0.12.0 released,http://nim-lang.org/news.html#Z2015-10-27-version-0-12-0-released,15,6,elpres,10/28/2015 7:22 +10646066,GDP growth of humanity over the very long run,http://ourworldindata.org/data/growth-and-distribution-of-prosperity/gdp-growth-over-the-very-long-run/,52,46,asm,11/29/2015 21:05 +10486476,My Livecoding.tv account deletion saga,http://liza.io/my-livecoding-dot-tv-account-deletion-saga/,667,430,drakonka,11/1/2015 14:29 +10271834,Motion Sensing with Intel Edison,https://software.intel.com/en-us/blogs/2015/07/13/motion-sensing-with-intel-edison?cid=em-elq-5111&utm_source=elq&utm_medium=email&utm_campaign=5111&elq_cid=1208315,2,1,bpolania,9/24/2015 14:38 +11925546,Crisis based forking can pierce the Decentralized Veil of Ethereum,https://blog.stakeventures.com/articles/piercing-ethereums-veil,25,8,pelle,6/17/2016 21:05 +12359820,Entitled startup founders and indulgent VCs = disaster,http://www.mercurynews.com/michelle-quinn/ci_30285683/founders-syndrome-takes-troubling-turn,1,1,bobthedog,8/25/2016 15:32 +12390627,Ask HN: How do I perform given a 1 month probation period?,,8,22,pzk1,8/30/2016 14:48 +12200601,"Kagi, old-school software payment processor, abruptly goes out of business",https://www.dropbox.com/s/8n2seaxfkgd8h8o/2016-08-01%20Important%20Kagi%20Announcement.pdf?dl=0,4,1,veidr,8/1/2016 6:49 +10289515,"Show HN: Fictionhub, a place to share fiction",http://fictionhub.io/,46,25,rayalez,9/28/2015 9:15 +10402519,Subprime unicorns,http://www.ft.com/intl/cms/s/0/91063628-73f5-11e5-bdb1-e6e4767162cc.html#axzz3om3nkxin,1,1,henridf,10/16/2015 22:53 +12080779,Challenges around building an app and how Hello Startups program can help,http://discover.7cstudio.com/post/147283558367/challenges-around-building-an-app-and-how-hello,8,4,suryasach,7/12/2016 17:20 +10287901,This is why I support a SAG-AFTRA strike authorization for video games,https://medium.com/@wilw/this-is-why-i-support-a-sag-aftra-strike-authorization-for-video-games-and-it-isn-t-about-money-d9123d7a700d,3,2,cdcarter,9/27/2015 20:48 +12287988,Hyperloop and our misplaced love of futuristic technology,https://www.theguardian.com/sustainable-business/2016/aug/14/hyperloop-elon-musk-futuristic-technology-transport,6,2,jonbaer,8/15/2016 0:44 +12056619,The Tech Co-Founder Deal You Should Be Getting,https://medium.com/@paultyma/best-tech-co-founder-offer-i-ever-got-e0c05d8274cb#.y07z5lai8,4,1,bladgod,7/8/2016 16:17 +11853431,Show HN: Share what you own,https://iownit.co,5,3,TimLeland,6/7/2016 9:59 +10539045,MTN telecom chief executive quits after Nigeria fine,http://www.bbc.com/news/business-34763602,18,7,valanto,11/10/2015 13:12 +10440767,Node.js Websockets for React: Automatically updates state and data,https://github.com/ColDog/socketify,2,1,coldog,10/23/2015 19:25 +10252616,A New Yorker Walks into a San Francisco Start Up,https://medium.com/@jenniferdaniel/a-new-yorker-walks-into-a-san-francisco-start-up-6926651b8254,11,5,adrusi,9/21/2015 14:47 +10910454,Ask HN: Have you ever changed your DBMS for a site running in production?,,3,4,poops,1/15/2016 16:53 +11620656,Nobel prize winner and buckyball discoverer Harry Kroto dies at 76,http://www.rsc.org/chemistryworld/2016/05/harry-kroto-fullerenes-buckyball-nobel-prize-obituary,2,1,srikar,5/3/2016 13:56 +11811757,Bad arguments against a universal basic income,http://www.lawyersgunsmoneyblog.com/2016/05/bad-arguments-against-a-universal-basic-income,6,3,veryluckyxyz,6/1/2016 2:38 +10770781,SuperMalloc: A Super Fast Multithreaded Malloc for 64-bit Machines,http://conf.researchr.org/event/ismm-2015/ismm-2015-papers-supermalloc-a-super-fast-multithreaded-malloc-for-64-bit-machines,147,32,ingve,12/21/2015 12:35 +11438027,Mobile Mesh Networking Framework Build apps that connect even without internet,http://www.hypelabs.io,2,1,CLei,4/6/2016 11:29 +12471434,Web version of the iOS10 music app design?,,1,1,allanhahaha,9/10/2016 23:57 +10821506,The Website Obesity Crisis talk,https://vimeo.com/147806338,38,1,chei0aiV,1/1/2016 9:44 +10711386,Show HN: Scut simple windows cmd shortcut/alias manager,https://github.com/ShamariFeaster/scut,4,1,alistproducer2,12/10/2015 16:19 +12237582,From Inception to Redux,http://jamesknelson.com/state-react-1-stateless-react-app/http://jamesknelson.com/state-react-2-inception-redux/,1,1,jamesknelson,8/6/2016 9:14 +10771888,How interactive news and data journalism responded to the major events of 2015,http://blog.webkid.io/2015-interactive-news-and-data-journalism/,1,1,chrtze,12/21/2015 16:37 +11808342,Its Time to Shut Down the Most Prolific Patent Troll in the Country,https://www.eff.org/deeplinks/2016/05/its-time-shut-down-most-prolific-patent-troll-country,27,2,dwaxe,5/31/2016 17:40 +11546324,"Bitcasa Drive Being Discontinued on May 20, 2016",https://support.bitcasa.com/hc/en-us/articles/218389848-Bitcasa-Drive-Being-Discontinued-on-May-20-2016,11,1,VinceD01,4/22/2016 0:37 +12357599,How Startup Options and Ownership Work,http://a16z.com/2016/08/24/options-ownership/?utm_campaign=Mattermark+Daily&utm_source=hs_email&utm_medium=email&utm_content=33386773&_hsenc=p2ANqtz-8Yh06XfJ07IS_elY10dP8tl6Et3vg0oGecP6iW9E-6_zYuCaUP_bMpOXOVidvEs8wUZwZMrYurXUBx4DrTCsDpEFYUNA&_hsmi=33386773,254,96,prostoalex,8/25/2016 8:28 +12421643,Is Elon Musk trying to do too much too fast?,http://www.latimes.com/business/la-fi-spacex-tesla-musk-20160902-snap-story.html,45,52,endswapper,9/3/2016 22:50 +10742546,Optimizing Software in C++ [pdf],http://www.agner.org/optimize/optimizing_cpp.pdf,82,11,signa11,12/16/2015 5:22 +12323883,Internet stats and facts for 2016,https://hostingfacts.com/internet-facts-stats-2016/,1,2,ffggvv,8/19/2016 22:13 +11226904,Ask HN: Are there companies willing to sponsor visas for interns?,,1,4,noobie,3/4/2016 21:13 +11204344,Complaining Rewires Your Brain for Negativity,http://www.inc.com/jessica-stillman/complaining-rewires-your-brain-for-negativity-science-says.html?utm_content=bufferf1901&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer,22,6,magoghm,3/1/2016 17:30 +12115818,Prometheus reaches 1.0,https://prometheus.io/blog/2016/07/18/prometheus-1-0-released/,152,58,grobie,7/18/2016 15:56 +12385688,"Facebook fires trending team, and algorithm without humans goes crazy",https://www.theguardian.com/technology/2016/aug/29/facebook-fires-trending-topics-team-algorithm?CMP=fb_gu,3,1,nek28,8/29/2016 21:52 +11018538,How Product Hunt influenced our growth rate,https://www.stackfield.com/blog/how-product-hunt-influenced-our-growth-rate-32,1,1,rolfos,2/2/2016 9:56 +10714623,Strapi Fast. Reusable. Easy to use. The next generation framework for Node.js,http://strapi.io/,3,3,kulakowka,12/11/2015 0:13 +11805795,Project Soli touchless gesture interactions by Google,https://atap.google.com/soli/,182,42,danr4,5/31/2016 10:51 +10424115,"Rebuilding Segment's Infrastructure with Docker, ECS, and Terraform",http://highscalability.com/blog/2015/10/19/segment-rebuilding-our-infrastructure-with-docker-ecs-and-te.html,22,3,samber,10/21/2015 7:33 +10876138,Ask HN: Why doesn't somebody buy every combination of the Powerball?,,10,15,hanniabu,1/10/2016 17:35 +11594572,Creator of pop-up ads apologizes for inventing internets original sin,https://www.rt.com/news/180740-online-ads-apology-zuckerman-essay/,3,1,RobAley,4/29/2016 9:19 +12200240,Ask HN: How do you know if an idea is worth running with?,,2,3,alexbanks,8/1/2016 4:44 +12529846,Win3mu Part 1 Why Im writing a 16-bit Windows Emulator,https://medium.com/@CantabileApp/win3mu-part-1-why-im-writing-a-16-bit-windows-emulator-2eae946c935d#.fg3gvf4eg,74,23,mpalme,9/19/2016 8:37 +10437376,JP Morgan to Grant IPO Access to Everyone,http://techcrunch.com/2015/10/21/jp-morgan-to-grant-ipo-access-to-everyone/,63,30,areski,10/23/2015 7:56 +10792915,How One Stupid Tweet Blew Up Justine Saccos Life,http://www.nytimes.com/2015/02/15/magazine/how-one-stupid-tweet-ruined-justine-saccos-life.html,14,12,noobermin,12/26/2015 1:26 +10466754,When do YC W16 invites go out?,,10,17,gingerpolin,10/28/2015 19:33 +11942258,China Wants to Build a Deep Sea 'Space Station',http://motherboard.vice.com/read/china-wants-to-build-a-deep-sea-space-station,39,17,zeristor,6/20/2016 22:54 +11007801,Youre Either Venture-Backed or a Lifestyle Business: The Big Lie (2014),http://hunterwalk.com/2014/03/04/youre-either-venture-backed-or-a-lifestyle-business-the-big-lie/,9,1,bootload,1/31/2016 20:04 +12311115,The joy of algebra,,1,2,gloves,8/18/2016 8:37 +10221333,Thoughts on this site?,http://collegiatecode.com/,1,1,aml183,9/15/2015 15:54 +12035578,"Android is imploding, and there's nothing that can be done to stop it",http://www.zdnet.com/article/android-is-imploding-and-theres-nothing-that-can-be-done-to-stop-it/,32,20,brkumar,7/5/2016 11:05 +12478300,12 Reasons Why Software Localization (L10n) Is So Dang Hard,https://phraseapp.com/blog/posts/12-reasons-software-localization-l10n-dang-hard/,3,1,torbenfabel,9/12/2016 9:39 +11164378,Ask HN: Is it worth the Scala's Ordeal?,,1,3,basicscholar,2/24/2016 3:39 +10982165,Improved GitHub commenting with Markdown,https://github.com/blog/2097-improved-commenting-with-markdown?utm_source=twitter&utm_medium=social&utm_campaign=markdown-toolbar-intro,13,1,hodgesmr,1/27/2016 19:00 +12329499,Live MySQL Schema Changes on RDS with Percona Toolkit,https://github.com/mrafayaleem/percona-presentation,2,1,iamspoilt,8/21/2016 5:16 +12032669,Wget Arbitrary Commands Execution,https://blogs.securiteam.com/index.php/archives/2701,118,33,walterbell,7/4/2016 19:55 +10266297,Pebble announces round watch: Pebble Time Round,http://www.theverge.com/2015/9/23/9372899/pebble-time-round-smartwatch-announcement-availability,3,1,fredley,9/23/2015 17:07 +10973889,Why BPG will replace GIFs and more,https://eek.ro/why-bpg-will-replace-gifs-and-not-only/,173,116,antouank,1/26/2016 15:36 +12571426,Ask HN: Why not openai hire using a kaggle competition?,,2,5,master_yoda_1,9/24/2016 16:03 +11257518,Chrome Music Lab,https://musiclab.chromeexperiments.com,3,1,adamnemecek,3/10/2016 5:30 +11411262,Neo Geo Programming Guide (1991) [pdf],http://www.hardmvs.com/manuals/NeoGeoProgrammersGuide.pdf,76,16,felhr,4/2/2016 12:18 +10881920,Sencha Software License Agreement,https://www.sencha.com/legal/sencha-software-license-agreement/,2,1,shawndumas,1/11/2016 17:54 +12385873,Ask HN: Single-user task and project management recs?,,6,5,bradleyankrom,8/29/2016 22:13 +11125724,Show HN: Weeknder up to 60% off weekend flights from NYC,,1,1,richf,2/18/2016 13:59 +10339332,"The Mystery Vigilantes Who Created 'Malware' To Secure 10,000 Routers",http://www.forbes.com/sites/thomasbrewster/2015/10/06/mystery-white-team-vigilante-hackers-speak-out/,8,1,cdubzzz,10/6/2015 15:03 +12031562,You're doing DevOps wrong,https://techcrunch.com/2016/07/04/youre-doing-devops-wrong/,3,1,Spydar007,7/4/2016 16:18 +10262186,A Tale of Two Ports: Automation at Oakland vs. Rotterdam,https://learn.flexport.com/port-automation/,7,2,rottencupcakes,9/22/2015 22:36 +10638271,Chromebook Comparison Chart: Compare Technical Specifications of Chromebooks,http://www.linux-netbook.com/compare/chromebooks/,3,2,yaph,11/27/2015 18:23 +10658884,The Monster of Bad Spelling,http://www.theawl.com/2015/11/giant-despair-of-doubting-castle,30,5,dnetesn,12/1/2015 21:23 +11811972,Show HN: Flask Seed App,https://github.com/muicss/flaskapp,7,4,andres,6/1/2016 4:00 +10452262,"Open-sourcing PalDB, a lightweight companion for storing side data",https://engineering.linkedin.com/blog/2015/10/open-sourcing-paldb--a-lightweight-companion-for-storing-side-da,5,1,thousandx,10/26/2015 16:02 +11904417,"Russian government hackers penetrated DNC, stole opposition research on Trump",https://www.washingtonpost.com/world/national-security/russian-government-hackers-penetrated-dnc-stole-opposition-research-on-trump/2016/06/14/cf006cb4-316e-11e6-8ff7-7b6c1998b7a0_story.html?postshare=7401465918761361,9,2,seccess,6/14/2016 18:59 +12353846,Reactors: Foundational framework for distributed computing,http://reactors.io/,53,30,acjohnson55,8/24/2016 17:50 +10924849,Valve greenlights sale of fan-made Half-Life game,http://gamasutra.com/view/news/263645/Valve_greenlights_sale_of_fanmade_HalfLife_game.php,6,1,bpierre,1/18/2016 15:22 +10740029,Why I no longer use MVC frameworks,http://www.ebpml.org/blog15/2015/12/why-i-no-longer-use-mvc-frameworks/,116,92,jdubray,12/15/2015 19:55 +11581536,Apply HN: Discovery List Product Hunt for products you can actually buy,,10,6,plyleung,4/27/2016 15:52 +10877883,My payphone runs Linux now,https://www.jwz.org/blog/2016/01/my-payphone-runs-linux-now/,10,2,pavel_lishin,1/11/2016 0:04 +11230287,When the U.S. air force discovered the flaw of averages,https://www.thestar.com/news/insight/2016/01/16/when-us-air-force-discovered-the-flaw-of-averages.html,471,103,hecubus,3/5/2016 18:16 +12210296,Microsoft forks Unreal Engine 4 and ports it to Universal Windows Platform,https://forums.unrealengine.com/showthread.php?118375-Unreal-Engine-4-is-available-for-Win10-UWP-app-dev-now,157,115,htaunay,8/2/2016 14:43 +10957807,"What is the best country for startups? Believe it or not, its Spain",http://startup.cat/en/what-is-the-best-country-for-startups-believe-it-or-not-its-spain/,3,1,jray,1/23/2016 9:39 +10790890,Ask HN: What is your favorite Christmas fable?,,3,3,atmosx,12/25/2015 10:31 +11958893,ABBA: A/B Test (Split Test) Calculator,https://www.thumbtack.com/labs/abba/,33,6,rgbrgb,6/23/2016 4:45 +12342617,"Reeling from Effects of Climate Change, Alaskan Village Votes to Relocate",http://www.nytimes.com/2016/08/20/us/shishmaref-alaska-elocate-vote-climate-change.html,76,27,jackgavigan,8/23/2016 10:31 +11289178,Mobirise Best Website Maker v2.9.7 is out,https://mobirise.com,1,2,Mobirise,3/15/2016 12:48 +10523018,Spotify is removing music from politically controversial bands,http://weev.livejournal.com/414647.html,5,2,gnarbarian,11/7/2015 0:44 +11608985,E Programming Language: Write Secure Distributed Software,http://wiki.erights.org/wiki/Main_Page,57,21,jervisfm,5/2/2016 3:01 +11457313,Issues for Self-Driving Cars in U.S. Cities,http://www.inc.com/betsy-mikel/why-self-driving-cars-could-be-a-design-nightmare-for-us-cities.html,9,11,prostoalex,4/8/2016 19:41 +11667494,"Show HN: BitKeeper Enterprise-ready version control, now open-source",https://www.bitkeeper.org/,384,306,wscott,5/10/2016 14:39 +11548780,Great video to help OO programmers begin to think functionally,https://www.youtube.com/watch?v=E8I19uA-wGY&feature=youtu.be,82,7,rawkode,4/22/2016 13:05 +12226139,Why swearing is good for you,http://qz.com/749454/why-you-should-teach-your-children-profanity/,118,94,prostoalex,8/4/2016 15:26 +10282908,The Phony Free Market,https://m.facebook.com/?_rdr#!/RBReich/photos/a.404595876219681.103599.142474049098533/1075758279103434/?type=3,1,1,jrs235,9/26/2015 12:27 +10712045,Bank account verification and transfers in just a few lines of code,http://blog.dwolla.com/bank-account-verification-and-transfers-in-just-a-few-lines-of-code/,86,39,teetime,12/10/2015 17:48 +10357414,"Ask HN: Twitter ads support disaster, what to do?",,2,1,binarycrusader,10/9/2015 0:47 +10957013,Toronto man found not guilty in Twitter harassment trial,http://www.theglobeandmail.com/news/toronto/verdict-expected-today-in-twitter-harassment-trial/article28334101/,82,38,eigenvector,1/23/2016 3:12 +11166270,Missed 83b by one day,,2,1,sbrowns,2/24/2016 12:43 +11883318,What If PTSD Is More Physical Than Psychological? Evidence from new study,http://www.nytimes.com/2016/06/12/magazine/what-if-ptsd-is-more-physical-than-psychological.html,165,103,jcfrei,6/11/2016 13:08 +10267922,DrawMatch-iOS app measures how well people draw with image processing algorithms,http://www.drawmatch.com,1,1,zyqu,9/23/2015 20:27 +11450253,Ask HN: How long would it take to crack the Enigma Code now?,,13,4,mangeletti,4/7/2016 20:12 +11599314,Show HN: LuxBase Open-Source Smart Lighting Control System,https://github.com/kienankb/LuxBase,38,13,kienankb,4/29/2016 23:07 +11099836,Ask HN: Why is there only one Reddit?,,8,6,fyrejuggler,2/14/2016 20:27 +10591003,Amazon to Add Two-Factor Authentication to Retail Customer Accounts,http://www.streetinsider.com/Insiders+Blog/Amazon.com+(AMZN)+Adds+Two-Factor+Authorization+to+Accounts/11086924.html,2,1,DHJSH,11/18/2015 21:47 +12465763,Elementary OS Loki 0.4 Stable Release,http://blog.elementary.io/post/147637979911/loki-04-stable-release,222,63,iamcreasy,9/9/2016 20:23 +11710930,Thoughts on the future of Python and graphical interfaces,https://medium.com/@tryexceptpass/a-python-ate-my-gui-971f2326ce59#.r71wrkqfq,103,127,sebg,5/17/2016 2:03 +10256652,Ask HN: Need advice on startup options,,23,13,optionadvice,9/22/2015 4:41 +12372684,Facebook Hired Me at 18. But My Story Isnt as Perfect as It Sounds,https://www.facebook.com/notes/michael-sayman/facebook-hired-me-at-18-but-my-story-isnt-as-perfect-as-it-sounds/1109149972513019,4,1,ingve,8/27/2016 15:15 +10705960,Undertale dares players to make a mistake they can never take back,http://www.avclub.com/article/undertale-dares-players-make-mistake-they-can-neve-228716,1,1,minimaxir,12/9/2015 19:09 +10374448,Show HN: Sell It Easy Sell anything in 30 seconds,,2,2,brahnema,10/12/2015 13:53 +10595414,Square jumps in market debut,http://reuters.com/article/idUSL3N13E45620151119,140,96,petethomas,11/19/2015 15:55 +10841178,My 'smart drugs' nightmare,http://www.bbc.co.uk/news/magazine-35091574,32,53,pmoriarty,1/5/2016 4:22 +11483356,Lorem Dim Sum,http://loremdimsum.com/,3,3,OJFord,4/12/2016 20:37 +12485712,I have 23 keybase.io invites emails in the comments if you want em,,6,28,Tigew,9/13/2016 4:53 +12154997,Ask HN: Does anyone knows anything about pokemon go tech stack and architecture?,,3,1,pedrorijo91,7/24/2016 21:28 +11425927,2016 State of Hardware Report,http://blog.fictiv.com/posts/2016-state-of-hardware-report,4,2,monkmartinez,4/4/2016 21:41 +12393449,Opportunity Overload sends you researched business ideas and opportunities,http://opportunityoverload.com,2,1,vphillips,8/30/2016 20:10 +10994912,Free Trade with China Wasn't Such a Great Idea for the U.S,http://www.bloombergview.com/articles/2016-01-26/free-trade-with-china-wasn-t-such-a-great-idea,43,86,primodemus,1/29/2016 12:52 +10890317,"Tadepalli V. Uber Technologies, Inc",https://eclaim.kccllc.net/caclaimforms/utd/home.aspx,5,2,paulannesley,1/12/2016 20:55 +10779084,Bubble sort is the fastest sorting algorithm,https://www.quora.com/How-efficient-is-bubble-sort/answer/Dale-Thomas-8?share=1,15,3,radmuzom,12/22/2015 17:43 +11851849,Urbit is now in open developer beta,https://urbit.org/,184,153,jonasrosland,6/7/2016 1:40 +10493154,The Hacking Team Defectors,http://motherboard.vice.com/read/the-hacking-team-defectors,5,1,tptacek,11/2/2015 17:08 +10952128,"Show HN: Janeway A more mouse-driven, curses-based Node.js console",https://github.com/skerit/janeway,25,4,skerit,1/22/2016 11:32 +10681140,Apollo 11: The computers that put man on the moon,http://www.computerweekly.com/feature/Apollo-11-The-computers-that-put-man-on-the-moon,1,1,triplesec,12/5/2015 6:39 +11873561,Ask HN: Chromium for Windows (64) from an official and secure source,,1,3,mitm2mitm,6/10/2016 1:01 +10821858,Gfverif: fast and easy verification of finite-field arithmetic,http://gfverif.cryptojedi.org/,7,1,reader_1000,1/1/2016 13:43 +11652297,HoloflexWorld's first holographic flexible smartphone,http://techxplore.com/news/2016-05-holoflexworld-holographic-flexible-smartphone-video.html,2,1,dnetesn,5/8/2016 2:13 +10436820,Show HN: Sublime Text Database Client,https://sequoiastudios.io/db1,44,41,alexggordon,10/23/2015 4:34 +11928842,Why most of Londons tech sector believes Brexit will prove a disaster,https://techcrunch.com/2016/06/16/why-most-of-londons-tech-sector-believes-brexit-will-prove-a-disaster/,2,2,henrik_w,6/18/2016 14:47 +10456290,Ask HN: Should I deploy my code and lay off 80 people?,,82,62,nowherenice,10/27/2015 4:15 +11669797,Double-Stranded RNA Activated Caspase Oligomerizers May Treat Most Viruses,https://www.indiegogo.com/projects/dracos-may-be-an-effective-cure-for-viral-diseases,4,1,aurelian15,5/10/2016 19:17 +11055975,GitHub exposes everyone's email address in GIT commits,https://taylorhakes.com/posts/get-any-github-users-email-address/,4,12,asjfkdlf,2/8/2016 1:43 +11859235,214ft seeding rig working in Australia,https://m.youtube.com/watch?v=IsPkRJZXoow,2,1,fanquake,6/8/2016 0:50 +11500081,What MVP should you be building?,http://customerdevlabs.com/2016/04/14/what-mvp-should-you-be-building/,6,3,rharris,4/14/2016 20:29 +12133606,GRPC with REST and Open APIs,http://www.grpc.io/posts/coreos,14,2,philips,7/21/2016 0:15 +12550659,Embrace Your Inner Geek: CNC Periodic Table of Elements Poster,http://blog.fictiv.com/posts/the-cnc-periodic-table-of-elements-poster-giveaway-contest-is-back,9,1,fictivmade,9/21/2016 18:01 +10736815,Europes most active startup investor has overhauled its financing conditions,http://tech.eu/brief/htgf-financing-terms/,1,1,robinwauters,12/15/2015 9:48 +12037454,Apple is building organ donation into iOS 10,https://techcrunch.com/2016/07/05/apple-organ-donation/,5,1,jstreebin,7/5/2016 16:13 +10751827,Ketamines effect bolsters a new theory of mental illness,http://nautil.us/issue/31/stress/a-vaccine-for-depression,181,149,pmcpinto,12/17/2015 15:06 +11048847,"Maybe: run a command, see what it does to your files without actually doing it",https://github.com/p-e-w/maybe,515,94,colund,2/6/2016 18:05 +10839116,Measuring Price Elasticity and More,http://avc.com/2015/12/measuring-price-elasticity-and-more/,21,10,piyushmakhija,1/4/2016 22:12 +10891428,"Grindr Sells Stake to Chinese Company, Valued at $155m",http://www.nytimes.com/2016/01/12/technology/grindr-sells-stake-to-chinese-company.html?ref=business,2,1,cft,1/13/2016 0:16 +11493094,Massively Distributed Backup at Facebook Scale [Live],https://codeascraft.com/speakers/,1,1,nerdy,4/13/2016 23:07 +10654206,The Race to Create Elon Musks Hyperloop Heats Up,http://www.wsj.com/articles/the-race-to-create-elon-musks-hyperloop-heats-up-1448899356,10,1,rajathagasthya,12/1/2015 8:39 +10458820,Climate scientists ponder spraying diamond dust in the sky to cool planet,http://www.nature.com/news/climate-scientists-ponder-spraying-diamond-dust-in-the-sky-to-cool-planet-1.18634,1,1,cryoshon,10/27/2015 15:56 +12047909,"Akka.NET 1.1: Akka.Cluster, Akka.Streams, and Multi-Node Testing",https://petabridge.com/blog/akkadotnet-11-cluster-streams/,115,20,Aaronontheweb,7/7/2016 7:07 +11411368,DO Not CLOSE THE ISSUE ASSHOLE,https://github.com/ParsePlatform/parse-server/issues/1050,82,54,s4chin,4/2/2016 13:06 +11173178,The Horror Show That Is Congress,http://www.rollingstone.com/politics/news/inside-the-horror-show-that-is-congress-20050825?page=6,3,1,ghosh,2/25/2016 8:49 +10535244,Ask HN: Best place for programmers to blog about code?,,3,6,jcuga,11/9/2015 19:35 +10464672,YC W2016 Interview Invites,,11,14,techbullets,10/28/2015 14:37 +12320586,React Fiber Architecture: React's new core algorithm,https://github.com/acdlite/react-fiber-architecture,48,5,adamnemecek,8/19/2016 15:14 +12453103,There Are No Truffles in Truffle Oil (2014),https://priceonomics.com/there-are-no-truffles-in-truffle-oil/,166,184,obi1kenobi,9/8/2016 14:05 +10420593,Big Data Is Saving This Little Bird,http://fivethirtyeight.com/datalab/big-data-is-saving-this-little-bird/,15,1,kleinsound,10/20/2015 17:43 +11309116,How to Get into Y Combinator??the No BS Approach,https://medium.com/@davidchen_62162/how-to-get-into-y-combinator-the-no-bs-approach-820cbedbc904#.4w0rgeehb,19,1,dfguo,3/18/2016 1:11 +11976967,The Hard Realization of Growing an Instagram Account,https://medium.com/@RodgersGigi/the-hard-realization-of-growing-an-instagram-account-2d597f6e9c7d#.9xbzqhakc,2,1,cucumbertime,6/25/2016 16:56 +12022235,Income inequality today may be higher today than in any other era,https://www.washingtonpost.com/news/wonk/wp/2016/07/01/income-inequality-today-may-be-the-highest-since-the-nations-founding/?tid=pm_business_pop_b,84,187,jgalt212,7/2/2016 12:24 +11078809,Cheap Smartphones to Propel App Spending Past $100B,http://www.bloomberg.com/news/articles/2016-02-10/cheap-smartphones-to-propel-app-spending-past-100-billion,12,3,prostoalex,2/11/2016 7:49 +10405213,Humpback whales synchronize their songs across oceans,https://medium.com/@dealville/whales-synchronize-their-songs-across-oceans-and-theres-sheet-music-to-prove-it-b1667f603844,60,15,dang,10/17/2015 17:27 +10898431,Comparing Elixir and Erlang variables,http://blog.plataformatec.com.br/2016/01/comparing-elixir-and-erlang-variables/,2,1,tortilla,1/13/2016 23:15 +10242950,Show HN: prm A minimal project manager for the terminal,https://github.com/eivind88/prm,13,4,eivarv,9/19/2015 1:30 +10206670,"Linux Btrfs, ZFS, ext4: performance [pdf]",http://www.dhtusa.com/media/IOPerfCMG09.pdf,2,1,joshumax,9/11/2015 23:24 +11874484,Short film written by algorithm,http://arstechnica.com/the-multiverse/2016/06/an-ai-wrote-this-movie-and-its-strangely-moving/,15,1,walrus01,6/10/2016 5:31 +10483780,Busybox removes support for systemd,http://git.busybox.net/busybox/commit/?id=accd9eeb719916da974584b33b1aeced5f3bb346,201,197,sethvargo,10/31/2015 19:18 +10614809,Show HN: Simple HTML to WordPress Conversion Tool,http://htmltowordpress.io,6,2,hexadecimal,11/23/2015 14:42 +11493452,Oculus Rift Exclusives on the HTC Vive Proof of Concept,https://github.com/LibreVR/Revive,91,71,sergiotapia,4/14/2016 0:22 +11462366,Creating the $1.4M TSA Randomizer app in under 4 minutes using swift,http://ankit.im/swift/2016/04/09/TSA-randomizer-app-in-swift-in-4-minutes/,2,1,aciid,4/9/2016 17:51 +11200523,Show HN: Searchable list of Companies people on Hacker News work for,https://gist.github.com/Dorian/2c183cfacd1446651e80,6,1,dorianm,3/1/2016 3:00 +11243726,What Apple Did and Didn't Do When China Knocked on Its Backdoor,http://www.newsweek.com/2016/03/11/what-apple-do-when-china-knocked-backdoor-430993.html,3,1,aburan28,3/8/2016 5:39 +10882290,Show HN: SendBird A Simple Messaging SDK+Back End for Apps,https://sendbird.com,16,1,dosh,1/11/2016 18:51 +11309907,Statically Recompiling NES Games into Native Executables with LLVM and Go (2013),http://andrewkelley.me/post/jamulator.html,356,64,dcschelt,3/18/2016 4:29 +11869075,Y Combinators basic income study is result of white unemployment,http://www.geektime.com/2016/06/09/living-in-a-bubble-y-combinators-basic-income-study-is-merely-a-result-of-white-unemployment/,4,1,tekheletknight,6/9/2016 13:05 +11063214,Object-Oriented Programming is Bad [video],https://www.youtube.com/watch?v=QM1iUe6IofM,3,2,jtwebman,2/9/2016 5:01 +10931448,New Relic for code quality?,,3,2,progressive_dad,1/19/2016 15:46 +12068444,Is Ego-Depletion a Replicable Effect?,https://replicationindex.wordpress.com/2016/04/18/is-ego-depletion-a-replicable-effect-a-forensic-meta-analysis-of-165-ego-depletion-articles/,156,52,gwern,7/11/2016 2:16 +12049548,Checked C,https://kristerw.blogspot.com/2016/07/checked-c.html,16,3,ingve,7/7/2016 14:33 +12284676,"It's not smart cities, it's better cities",https://medium.com/infinitilabhkg/a-smart-city-its-not-just-about-technology-28c74fdc3d8a#.l2f944vg6,6,1,Stephen_T,8/14/2016 7:50 +12480614,"Chemistry says Moon is proto-Earths mantle, relocated",http://sciencebulletin.org/archives/5124.html,160,28,upen,9/12/2016 15:37 +10834734,Dear VR manufacturers: don't get me off the couch,,2,1,forgottenacc56,1/4/2016 9:53 +11834261,JRuby+Truffle: Why its important to optimise the tricky parts [pdf],https://ia801503.us.archive.org/32/items/vmss16/seaton.pdf,1,2,norswap,6/4/2016 0:34 +11420166,Stream PirateBay movies directly from CLI,,249,204,guilhermepontes,4/4/2016 8:07 +10889607,Show HN: HackerRank's app guarantees an interview call after a coding challenge,http://techcrunch.com/2016/01/12/hackerrank-jobs-takes-the-mystery-out-of-technical-recruiting/,54,32,rvivek,1/12/2016 19:12 +11232339,The Eviction Economy,http://www.nytimes.com/2016/03/06/opinion/sunday/the-eviction-economy.html,2,1,patmcguire,3/6/2016 3:28 +11193786,How Moving Is Linked to Losing Friends,http://www.theatlantic.com/health/archive/2016/02/disposable-friendships-in-a-mobile-world/470718/?utm_source=QuartzFB&single_page=true,130,81,prostoalex,2/29/2016 5:44 +10758328,"Idea: on the Show page, remove 'Show HN' from the titles",,7,9,joelanman,12/18/2015 13:39 +11243221,Calculus Is So Last Century,http://www.wsj.com/articles/calculus-is-so-last-century-1457132991,2,1,enitihas,3/8/2016 2:33 +12538704,Smart Dildo Company Sued for Tracking Users Habits,http://www.vocativ.com/358530/smart-dildo-company-sued-for-tracking-users-habits/,2,1,goodmachine,9/20/2016 11:42 +11388315,Working with Saved Replies on GitHub,https://help.github.com/articles/working-with-saved-replies/,2,2,chippy,3/30/2016 10:49 +12251519,Tokyo may have found the solution to soaring housing costs,http://www.vox.com/2016/8/8/12390048/san-francisco-housing-costs-tokyo,26,9,g4k,8/8/2016 23:29 +11801181,Five Cities Beloved by Digital Nomads,http://www.bbc.com/travel/story/20160524-five-cities-beloved-by-digital-nomads,53,60,ytNumbers,5/30/2016 13:23 +11874624,Should we block forever waiting for high-quality random bits?,https://www.mail-archive.com/python-dev@python.org/msg92676.html,1,2,Tomte,6/10/2016 6:26 +11503500,How and why to make your software faster,http://incoherency.co.uk/blog/stories/how-to-make-software-faster.html,99,68,jstanley,4/15/2016 11:37 +11349768,Virtual Desktop 1.0 Trailer,https://www.youtube.com/watch?v=bjE6qXd6Itw,4,2,err418,3/24/2016 1:02 +11052850,Apple rejects the Binding of Isaac: Rebirth b/c of 'violence towards children',http://www.polygon.com/2016/2/7/10930230/the-binding-of-isaac-ios-mobile-rejected-apple,7,1,msabalau,2/7/2016 14:04 +10299252,US Court of Appeals Takes on Ridesharing in Aviation,http://blog.flytenow.com/us-court-of-appeals-takes-on-ridesharing-in-aviation,56,43,voska,9/29/2015 20:11 +11912109,ActBlue CSRF Security Vulnerability Responsible Disclosure,http://rajk.me/actblue,8,1,quantumtremor,6/15/2016 21:00 +10189515,Have Some Sympathy,https://posthaven.com/dashboard#sites/8021,2,1,RealKyleReese,9/9/2015 3:30 +11276065,Facebook blocked our domain name without reason,,4,2,srikantadas,3/13/2016 3:32 +11690127,Snapchat at 107 M.P.H.? Lawsuit Blames Teenager (and Snapchat),http://www.nytimes.com/2016/05/04/us/snapchat-speeding-teenager-crash-lawsuit.html,2,1,snsr,5/13/2016 13:01 +12550528,Microsoft aren't forcing Lenovo to block free operating systems,http://mjg59.dreamwidth.org/44694.html,366,236,robin_reala,9/21/2016 17:50 +11676804,"The Weird, Wild Saga of Gizmondo",http://www.thedrive.com/news/2559/the-weird-wild-saga-of-gizmondo-part-1,74,7,gdeglin,5/11/2016 16:35 +10357617,Data Center Computers: Modern Challenges in CPU Design [video],https://www.youtube.com/watch?v=QBu2Ae8-8LM,32,2,luu,10/9/2015 1:40 +11388890,Data driven Understanding of Playstore search rankings,https://www.simform.com/blog/google-play-app-store-optimization,3,1,steveappdev,3/30/2016 12:59 +10641213,Enterprise Startups to bet on in 2016,http://www.businessinsider.com/enterprise-startups-to-bet-on-in-2016-2015-11,7,1,F_J_H,11/28/2015 15:06 +11939628,Is Pantone 448C really the ugliest colour in the world?,http://www.theguardian.com/fashion/2016/jun/08/stylewatch-pantone-448c-ugliest-colour-world-opaque-couche-australian-smokers-fashion,2,1,Eduard,6/20/2016 17:39 +10721032,"Watch new movie trailers and get notified on release (Theater, Netflix, Torrent)",http://www.trailerpuppy.com,2,3,birchlore,12/12/2015 0:04 +12052614,Which Providers Support DNSSEC and SSHFP with a REST API?,,2,3,SunSparc,7/7/2016 22:53 +10764605,MkLinux: Apple-Funded Port of Linux to the Power Mac / Mach Microkernel,http://mklinux.org/,69,45,lwf,12/19/2015 19:47 +11502541,Mixpanel introduces JQL,https://mixpanel.com/jql/,2,1,pbowyer,4/15/2016 6:12 +11256946,Uber's many scandals are affecting recruitment at every level,https://pando.com/2016/03/09/turns-out-ubers-many-scandals-are-affecting-recruitment-pretty-much-every-level/0d3827f4e2a2e8440f349584adf0b7a36c6d9d9c/,46,18,prostoalex,3/10/2016 1:45 +12321200,Ask HN: How important is general knowledge to you?,,2,3,inputcoffee,8/19/2016 16:25 +11164708,Ask HN: How do you track what you learn?,,7,9,pipu,2/24/2016 5:16 +11810576,Beep Networks,https://www.beepnetworks.com/,36,7,sinak,5/31/2016 21:51 +11249894,"Show HN: FillyShapey a small, fun iOS game",https://fillyshapey.com,3,2,danielhunt,3/9/2016 0:18 +11136739,The IPv6 Numeric IP Format Is a Usability Problem,https://www.zerotier.com/blog/?p=724,323,196,LukeLambert,2/19/2016 21:24 +11931375,"Typing Test Check Your Speed and Practice, WPM",https://www.keyhero.com/free-typing-test/,1,1,sebg,6/19/2016 0:59 +11986085,On 'Affecting Atoms by Looking at Emitted Light',http://algorithmicassertions.com/post/1618,1,1,Strilanc,6/27/2016 13:42 +10900776,Nearly €2bn wiped off Renault's shares on reports of emissions probe,http://www.telegraph.co.uk/finance/newsbysector/industry/12099314/renault-shares-emissions-probe-france.html,4,1,antr,1/14/2016 11:40 +12263014,Flutterwave (YC S16) is building digital payment infrastructure for Africa,http://themacro.com/articles/2016/08/flutterwave/,6,3,stvnchn,8/10/2016 16:37 +11967412,EU Referendum Rules Triggering a 2nd EU Referendum,https://petition.parliament.uk/petitions/131215,5,2,edward,6/24/2016 7:15 +10974797,The mathematics of weight loss,https://www.youtube.com/watch?v=vuIlsN32WaE,1,1,samfisher83,1/26/2016 18:07 +10926339,Ask HN: Are any startups working on text-to-speech?,,36,43,bossx,1/18/2016 19:32 +12288863,NanoPi M3 Octa Core 64-bit ARM Development Board,,2,1,jiameijiang,8/15/2016 5:38 +12009939,State of Rust Survey 2016,http://blog.rust-lang.org/2016/06/30/State-of-Rust-Survey-2016.html,215,74,steveklabnik,6/30/2016 17:01 +11672871,What happened to the inaugural class of travel startup Remote Year,http://www.atlasobscura.com/articles/remote-year-promised-to-combine-work-and-travel-was-it-too-good-to-be-true?Src=longreads,40,8,aaronbrethorst,5/11/2016 5:46 +11802753,Kids install pirated office instead of selling limonade,http://arstechnica.com/information-technology/2016/05/the-spammer-who-logged-into-my-pc-and-installed-microsoft-office/,3,1,tychuz,5/30/2016 19:42 +10711421,Ask HN: Used to work for a YC backed company when I was 15,,3,7,kelvincobanaj,12/10/2015 16:22 +11187156,Most software already has a golden key backdoorits called auto update,http://arstechnica.com/security/2016/02/most-software-already-has-a-golden-key-backdoor-its-called-auto-update/,6,1,nbe,2/27/2016 14:31 +10672007,"Lyft, Didi, Ola and GrabTaxi Partner in Global Tech, Alliance to Rival Uber",http://techcrunch.com/2015/12/03/lyft-didi-ola-and-grabtaxi-partner-in-global-tech-service-alliance-to-rival-uber/,60,62,kevindeasis,12/3/2015 19:40 +10525669,When Gold Isnt Worth the Price,http://www.nytimes.com/2015/11/07/opinion/when-gold-isnt-worth-the-price.html?_r=0,56,33,sharp11,11/7/2015 18:24 +11878986,Authorization for humans (Python Package),https://github.com/ourway/auth,2,1,rodmena,6/10/2016 18:59 +10356533,Making a Better Airplane Using SigOpt (YC W15) and Rescale (YC W12),http://blog.sigopt.com/post/130771597853/making-a-better-airplane-using-sigopt-and-rescale,2,2,Zephyr314,10/8/2015 21:46 +10215857,Show HN: Websites Speed Comparison Test in a Comprehensive Report,https://www.dareboost.com/en/compare,4,1,damienj,9/14/2015 16:22 +11646896,The Muse's Kathryn Minshew Speaks at the Female Founders Conference 2016 [video],https://www.youtube.com/watch?v=Cmd5yOjnOqo,2,1,Walkman,5/6/2016 21:40 +12058018,ConvertKit raises $1.8m from large group of angel investors,https://medium.com/@ConvertKit/email-marketing-startup-convertkit-raises-1-8m-from-large-group-of-angel-investors-751b86092e77#.cbemwmlcb,2,1,kareemm,7/8/2016 19:25 +11594220,Security of critical phone database called into question,https://www.washingtonpost.com/world/national-security/security-of-critical-phone-database-called-into-question/2016/04/28/11c23b10-0c8d-11e6-a6b6-2e6de3695b0e_story.html?postshare=2121461890367505&tid=ss_tw,44,17,ghosh,4/29/2016 7:14 +10881209,David Bowies Top 100 Books (2013),http://www.openculture.com/2013/10/david-bowies-list-of-top-100-books.html,62,40,samclemens,1/11/2016 16:06 +12151863,Why Angular 2 Switched to TypeScript,https://vsavkin.com/writing-angular-2-in-typescript-1fa77c78d8e8#.xkfxa7yag,69,111,Doolwind,7/24/2016 1:59 +10308868,In Praise of Idleness (1932),http://www.zpub.com/notes/idle.html,1,1,hemapani,10/1/2015 2:32 +12023907,Extend the life of threads with synchronization (C++11),http://stackoverflow.com/q/15252292/3986712,16,1,indatawetrust,7/2/2016 21:50 +12013263,Facebook throws out the news Paper,https://techcrunch.com/2016/06/30/recycled/,2,1,doppp,7/1/2016 1:32 +12394255,Record-Breaking Galaxy Cluster Discovered,http://www.nasa.gov/mission_pages/chandra/record-breaking-galaxy-cluster-discovered.html,90,26,okket,8/30/2016 21:54 +11767925,Tim Cook Says Apple Working on Mac App Store Shortcomings,https://twitter.com/drewmccormack/status/735163955899994113,4,1,nier,5/25/2016 6:00 +12031197,Ruby or Rails?,http://railshurts.com/quiz/,2,1,EduardoBautista,7/4/2016 15:11 +11586897,Why Its Impossible to Actually Be a Vegetarian,http://www.iflscience.com/editors-blog/why-it-s-impossible-actually-be-vegetarian,8,6,bartkappenburg,4/28/2016 6:37 +11099878,The Revelations of a Nazi Art Catalogue,http://www.newyorker.com/books/page-turner/the-revelations-of-a-nazi-art-catalogue,37,1,prismatic,2/14/2016 20:35 +12459949,Google plan to stop ISIS recruits,https://www.wired.com/2016/09/googles-clever-plan-stop-aspiring-isis-recruits/,3,2,xbmcuser,9/9/2016 6:09 +12470040,Courage,http://daringfireball.net/2016/09/courage,6,2,kposehn,9/10/2016 17:08 +11006739,Ultra-fine particles emitted by commercial desktop 3D printers [pdf],http://ec.europa.eu/environment/integration/research/newsalert/pdf/commercial_desktop_3D_printers_emit_ultra_fine_particles_48si9_en.pdf,188,62,hippich,1/31/2016 15:55 +12019567,The Hunt for the Death Valley Germans,http://www.otherhand.org/home-page/search-and-rescue/the-hunt-for-the-death-valley-germans/,179,61,swatkat,7/1/2016 20:53 +10465076,"Aurous offers to give up the fight, but the RIAA fights on",http://www.completemusicupdate.com/article/aurous-offers-to-give-up-the-fight-but-the-riaa-fights-on/,2,1,6stringmerc,10/28/2015 15:48 +12477997,Kickstarter: The World's Most Portable Electric Skateboard,http://www.kickstarter.com/projects/arcboardsev/arcboardsev,3,1,ArcBoardsEV,9/12/2016 8:19 +11660140,Androids Stagefright vulnerability hardened against exploits,http://www.networkworld.com/article/3067714/mobile-wireless/androids-stagefright-vulnerability-hardened-against-exploits.html,2,1,stevep2007,5/9/2016 14:38 +12142364,The Internals of PostgreSQL,http://www.interdb.jp/pg/index.html,4,1,myth17,7/22/2016 8:25 +11586971,People spend on average more than 50 minutes a day using Facebook,http://techcrunch.com/2016/04/27/facediction/,5,1,colincarter41,4/28/2016 7:08 +10485421,Packet copies: Expensive or cheap?,https://github.com/SnabbCo/snabbswitch/issues/648,48,12,luu,11/1/2015 4:32 +10595242,YouTube's Fair Use Protection,https://www.youtube.com/yt/copyright/fair-use.html#yt-copyright-protection,5,1,larsiusprime,11/19/2015 15:26 +10375609,Understanding Common Table Expressions with FizzBuzz,http://hashrocket.com/blog/posts/understanding-common-table-expressions-with-fizzbuzz,7,1,jbranchaud,10/12/2015 16:37 +12203821,Gawker Media founder to file for personal bankruptcy,http://www.reuters.com/article/us-gawkermedia-founder-idUSKCN10C2RV,56,48,iamben,8/1/2016 16:42 +11265876,"European job market is rigged against younger workers, says Draghi",http://www.theguardian.com/world/2016/mar/11/european-job-market-is-rigged-against-younger-workers-says-draghi,1,1,return0,3/11/2016 11:00 +11460496,AppNap for Linux prototype,https://github.com/rugginoso/appfap,4,1,unhammer,4/9/2016 8:30 +10532504,Ask HN: Can you imagine using VR for things such as gaming?,,5,1,gloves,11/9/2015 11:49 +10345736,100M games played,http://en.lichess.org/blog/VgwCfhwAAB8AbzkK/100000000-games-played,229,71,SanderMak,10/7/2015 13:09 +11106843,Why C Students Are More Successful After Graduation,https://medium.com/life-learning/10-reasons-why-c-students-are-more-successful-after-graduation-e5287760525f#.1uqt7k1jo,7,9,dicemoose,2/15/2016 23:24 +11813011,Original vision of Bitcoin,http://blog.oleganza.com/post/145248960618/original-vision-of-bitcoin,13,1,oleganza,6/1/2016 9:06 +12406775,The Lost Art of Typing Shit by Hand,https://daveceddia.com/the-lost-art-of-typing-shit-by-hand/,47,52,3stripe,9/1/2016 16:43 +10670989,Facebook Sponsors Let's Encrypt,https://letsencrypt.org//2015/12/03/facebook-sponsorship.html,2,1,Gys,12/3/2015 17:33 +11747675,India set to start massive project to divert Ganges and Brahmaputra rivers,http://www.theguardian.com/global-development/2016/may/18/india-set-to-start-massive-project-to-divert-ganges-and-brahmaputra-rivers,55,98,nafizh,5/22/2016 7:33 +11313809,The VAX platform is no more,http://undeadly.org/cgi?action=article&sid=20160309192510,2,1,lelf,3/18/2016 18:30 +10555434,Bloc Introducing the Software Engineering Track,https://blog.bloc.io/announcing-software-engineering-track/,20,1,choxi,11/12/2015 19:19 +10852260,DJI 10 Years Anniversary Sale and new Phantom 3 4K,http://store.dji.com/event/10years/,1,2,amima,1/6/2016 18:09 +11371831,PASTE,http://nodepaste.herokuapp.com,1,1,kingkabir,3/27/2016 22:34 +10938468,It All Changes When the Founder Drives a Porsche,https://medium.com/@micah/it-all-changes-when-the-founder-drives-a-porsche-32ac25c713ad?utm_campaign=Mattermark+Daily&utm_source=hs_email&utm_medium=email&utm_content=25419206&_hsenc=p2ANqtz--5KQWfGFmBxSZtzoY2EM6qXs54IFj0p-C7AHsCYSDZseYZ3AEQL8Bx8TSuKmikUT2UEBhIiPhr_ohp07MkvnuXxG2tYw&_hsmi=25419206#.xr6bsi9bn,9,3,taylorwc,1/20/2016 14:59 +10771587,Surveillance Video of Robbery that led to false arrest. Police Deny wrongdoing,http://www.iwasfalselyarrested.com/,9,1,twistofate,12/21/2015 15:46 +11055409,Finding My Optimum Reading Speed [video],http://quantifiedself.com/2016/01/finding-my-optimum-reading-speed/,24,2,wslh,2/7/2016 23:01 +11186396,The Diamond Model of Intrusion Analysis (2013) [pdf],https://www.threatconnect.com/wp-content/uploads/ThreatConnect-The-Diamond-Model-of-Intrusion-Analysis.pdf,30,3,bootload,2/27/2016 7:26 +12378799,An MIT Scientist Claims That This Pill Is the Fountain of Youth,http://nymag.com/scienceofus/2016/08/is-elysium-healths-basis-the-fountain-of-youth.html?wpsrc=nymag,15,2,x43b,8/28/2016 22:14 +12354278,Do algorithms find depression or cause it? Depression rates on MTurk are high,https://medium.com/@dbreunig/do-algorithms-find-depression-or-cause-depression-2e047ef84cda#.n01ls254a,7,1,dbreunig,8/24/2016 18:44 +10254639,Swift 2 Apps in the App Store,https://developer.apple.com/swift/blog/?id=32,80,32,julien_c,9/21/2015 19:38 +10897825,Grapefruitdrug interactions,https://en.wikipedia.org/wiki/Grapefruit%E2%80%93drug_interactions,19,1,monort,1/13/2016 21:48 +11125513,Bookmark this Adsvise is the ultimate digital ad sizing guide,http://www.adsvise.com/facebook,8,9,andrewmichael27,2/18/2016 13:24 +11055682,PayPal's Super Bowl 50 Commercial,https://www.youtube.com/watch?v=1dF9t_xQGks,1,2,minimaxir,2/8/2016 0:08 +11511364,GPS 2.0: Aerospace Corp. Launches Second Draft of GPS,http://breakingdefense.com/2016/04/gps-2-0-aerospace-corp-launches-second-draft-of-gps-exclusive/,126,30,hackuser,4/16/2016 17:15 +12466625,"Show HN: A flask app to make dashboards, easily",https://github.com/christabor/flask_jsondash,302,38,dxdstudio,9/9/2016 23:00 +11086933,"Valentine's Day Special: Bye Bye Tinder, Flirting in the Support Channel","https://www.stackfield.com/blog/bye-bye-tinder,-flirting-in-the-support-channel-----34",100,104,rolfos,2/12/2016 13:14 +11298992,Math is a human construct,http://exolymph.com/2016/03/15/imaginary-numerical-encroachment/,4,1,exolymph,3/16/2016 17:19 +10227511,Search laws/regulations from many countries at once; autotranslated when needed,http://global-regulation.com/,6,1,michaelfagan,9/16/2015 15:53 +11570670,Getting shit done. A guide for lazypreneurs,https://www.lazypreneur.pw/2016/getting-shit-done/,59,38,herbst,4/26/2016 10:23 +12108041,Writing custom type systems for Python in Prolog,http://code.alehander42.me/prolog_type_systems,125,42,type0,7/16/2016 22:00 +10347020,"Show HN: Challenge CLI, a command line interface for programming challenges",https://github.com/architv/chcli,4,3,architv07,10/7/2015 16:36 +10395693,A Second Snowden Has Leaked a Mother Lode of Drone Docs,http://www.wired.com/2015/10/a-second-snowden-leaks-a-mother-lode-of-drone-docs/,5,1,kushti,10/15/2015 20:16 +11510349,"In Cramped and Costly Bay Area, Cries to Build, Baby, Build",http://www.nytimes.com/2016/04/17/business/economy/san-francisco-housing-tech-boom-sf-barf.html,210,368,rowanseymour,4/16/2016 12:37 +11247906,Google DeepMind Challenge Match: Lee Sedol vs. AlphaGo,https://www.youtube.com/watch?v=vFr3K2DORc8,16,1,davidcgl,3/8/2016 19:41 +10720381,Ask HN: Fair equity split after prototype and First client?,,2,2,d--b,12/11/2015 21:56 +11017289,Could Vietnam Become the Next Silicon Valley?,http://www.bbc.com/news/business-35227626,2,1,miraj,2/2/2016 2:18 +12171184,Editor Wars,https://hackaday.com/2016/07/26/editor-wars/,4,1,lnalx,7/27/2016 7:43 +12389469,Ask HN: Would Elon Musk Make a Better President Than Hillary?,,7,6,christmm,8/30/2016 12:43 +12544151,A curated list of talks about React Native,https://github.com/mightyCrow/awesome-react-native-talks,18,5,mightyCrow,9/20/2016 23:13 +10277682,New Horizons: Pluto displays rippling terrain,http://www.bbc.co.uk/news/science-environment-34358723,138,71,antouank,9/25/2015 12:18 +10992022,"Facebook to Shut Down Parse, Its Platform for Mobile Developers",http://bits.blogs.nytimes.com/2016/01/28/facebook-to-shut-down-parse-its-platform-for-mobile-developers/,5,1,zeeshanm,1/28/2016 22:39 +12256373,1400 km of optical fiber connect optical clocks in France and Germany,http://sciencebulletin.org/archives/4098.html,102,26,upen,8/9/2016 17:47 +10499941,Hearts on Twitter,https://blog.twitter.com/2015/hearts-on-twitter,191,170,janvdberg,11/3/2015 15:03 +10355508,Alister Maclin can break Bitcoin on command,http://motherboard.vice.com/read/i-broke-bitcoin,53,58,davidgerard,10/8/2015 19:38 +11880070,Andreessen Horowitz Raises $1.5B for New Fund,http://fortune.com/2016/06/10/andreessen-horowitz-new-fund/,77,35,brianchu,6/10/2016 21:15 +11995904,"Lending Club plans layoffs, discloses loans to former CEO and family members",http://www.latimes.com/business/la-fi-lending-club-layoffs-20160628-snap-story.html,109,127,latimer,6/28/2016 17:53 +12308951,Reqiured Background Check to enter public school,,2,7,mgamache,8/17/2016 22:24 +10308432,Quizscript: simple markup language for quizz,http://dbweb.cs.uvic.ca:8080/servlet/MMPServlet?filename=quizscript.mmp,3,1,vmorgulis,10/1/2015 0:30 +12258968,The WorldWideWeb (WWW) project aims to allow links to information (1991),https://groups.google.com/forum/m/#!msg/alt.hypertext/eCTkkOoWTAY/bJGhZyooXzkJ,93,31,phodo,8/10/2016 1:41 +12203719,Elizabeth Holmes is finally presenting Theranos data as company collapses,http://arstechnica.com/science/2016/08/elizabeth-holmes-is-finally-presenting-theranos-data-as-company-collapses/,24,9,Aelinsaar,8/1/2016 16:29 +11127674,Zero Rating: What It Is and Why You Should Care,https://www.eff.org/deeplinks/2016/02/zero-rating-what-it-is-why-you-should-care,4,1,Tsiolkovsky,2/18/2016 17:51 +11800544,DoppioJVM brings JVM apps to the browser,http://www.javaworld.com/article/3075031/web-development/doppiojvm-brings-jvm-apps-to-the-browser.html,14,5,antonkozlov,5/30/2016 9:59 +12129521,Thiel to support Trump at RNC Thursday,http://www.nytimes.com/2016/07/21/technology/peter-thiels-embrace-of-trump-has-silicon-valley-squirming.html?smprod=nytcore-iphone&smid=nytcore-iphone-share,18,23,george_ciobanu,7/20/2016 15:02 +11020795,Show HN: 4usxus Accountability is awesome,https://4usxus.com,2,2,bbrez1,2/2/2016 17:20 +10243477,Google Chrome crashing [crash],http://biome3d.com/%%30%30,3,2,aatteka,9/19/2015 6:22 +11256051,Fake and cheap 3D metaball,http://blog.edankwan.com/post/fake-and-cheap-3d-metaball,41,9,tobltobs,3/9/2016 22:05 +10491038,Why Virtual Classes Can Be Better Than Real Ones,http://nautil.us/issue/29/scaling/why-virtual-classes-can-be-better-than-real-ones,81,38,sergeant3,11/2/2015 10:31 +11286689,Ask HN: Why does no one talk about greenhouse gas reclamation?,,3,1,enknamel,3/15/2016 0:41 +11747367,Nigerians Dominate Scrabble Tournaments Using Five-Letter Word Strategy,http://www.wsj.com/articles/for-nigerian-scrabble-stars-short-tops-shorter-1463669734,295,80,vincentbarr,5/22/2016 4:28 +10536257,The security of wired.com is bad because User Enumeration is possible,https://twitter.com/potherca/status/663835146387365888,1,1,hackfish,11/9/2015 22:21 +10400907,Ask HN: Why have none of the ~940 YC companies ever gone public via IPO?,,28,23,RockyMcNuts,10/16/2015 17:48 +10381793,Ireland plans to give Multinationals more lower tax rate,http://www.nytimes.com/2015/10/14/business/international/ireland-tax-rate-breaks.html?ref=business,8,1,hvo,10/13/2015 17:02 +11379241,Authenticate on OS X with iPhone Bluetooth LE,http://guoc.github.io/nearbt/,7,2,guoc,3/29/2016 3:12 +11233288,Sweeney Has No Proof of Evil Plan by Microsoft and Hes Not Up to Date on UWP,http://wccftech.com/sweeney-admits-theres-no-proof-of-evil-plan-by-microsoft-proves-hes-not-up-to-date-on-uwp-specifics/,3,1,Pada,3/6/2016 11:08 +12006957,What media companies dont want you to know about ad blockers,http://www.cjr.org/opinion/ad_blockers_malware_new_york_times.php,119,137,CaptainZapp,6/30/2016 6:35 +11007375,Man changes his name to Above Znoneofthe so it can appear at bottom of ballot,http://www.cbc.ca/news/canada/toronto/vote-none-of-the-above-byelection-1.3426783,4,1,_jomo,1/31/2016 18:38 +11908006,Ask HN: Early adopters for hire,,3,2,d_luaz,6/15/2016 9:04 +11965228,Show HN: Great tool for creating loading 'spinners',http://loading.io/,4,2,neilellis,6/24/2016 0:02 +11929821,How Frankensteins Monster Became Human,https://newrepublic.com/article/134271/frankensteins-monster-became-human,30,7,mr_golyadkin,6/18/2016 18:03 +11860752,The State of SourceForge Since Its Acquisition in January,https://www.reddit.com/r/sysadmin/comments/4n3e1s/the_state_of_sourceforge_since_its_acquisition_in/,122,27,tomaac,6/8/2016 8:10 +10187664,Cutting the Cord,http://www.danielandrews.com/2015/09/07/cutting-the-cord/,1,1,danielandrews,9/8/2015 19:23 +10999108,Peer-reviewed paper debunking conspiracy theories has a (deliberate?) flaw,http://littleatoms.com/david-grimes-conspiracy-theory-maths,2,1,sprague,1/29/2016 22:41 +11737374,Partnering with Microsoft to run Jenkins infrastructure on Azure,https://jenkins.io/blog/2016/05/18/announcing-azure-partnership/,66,15,dstaheli,5/20/2016 12:57 +10348637,Pandora Acquires TicketFly for $450M,http://start.ticketfly.com/blog/pandora-and-ticketfly-join-forces-to-create-the-worlds-most-powerful-music-platform/?utm_source=MEL&utm_medium=138881,121,90,timthimmaiah,10/7/2015 20:03 +10924416,Introducing TrumpScript Make Python Great Again,http://www.makepythongreatagain.org,104,24,cannon10100,1/18/2016 14:08 +12019300,Miranda Warning Equivalents Abroad [pdf],https://www.fas.org/sgp/eprint/miranda.pdf,23,3,rl3,7/1/2016 20:10 +10853932,Copy complete supercut of computers in films of the 70s/80s/90s,https://www.youtube.com/watch?v=LzgAzasqbpA,1,1,ChrisArchitect,1/6/2016 21:30 +10458248,Life with My Robot Secretary,http://www.fastcodesign.com/3052646/innovation-by-design/life-with-my-robot-secretary,69,32,signor_bosco,10/27/2015 14:40 +10450736,Ben Fathi: Why I Joined CloudFlare,https://blog.cloudflare.com/ben-fathi-why-i-joined-cloudflare/,26,15,jgrahamc,10/26/2015 11:43 +12257100,Xautobacklight,http://www.tedunangst.com/flak/post/xautobacklight,3,1,ingve,8/9/2016 19:21 +12511714,Ask HN: Finding a partner for a unique request,,1,2,newman8r,9/16/2016 3:54 +10512725,All Unregistered 3 Digit .eu domains,http://dntalk.xyz/viewtopic.php?f=11&t=57&p=2479#p2479,4,3,jamesmd,11/5/2015 11:12 +12560603,This new electric car is designed for a $37 weekly subscription service,https://techcrunch.com/2016/09/22/this-new-electric-car-is-designed-for-a-37-weekly-subscription-service/,4,2,jonbaer,9/22/2016 21:46 +10286569,Stop Googling. Lets Talk,http://www.nytimes.com/2015/09/27/opinion/sunday/stop-googling-lets-talk.html?mwrsm=LinkedIn&_r=0,119,109,notNow,9/27/2015 14:19 +10665752,Secret Society of Soul Painters (neural style applied to video),https://www.youtube.com/watch?v=0uCdJKVjPmQ,3,1,anishathalye,12/2/2015 20:58 +12309600,MouseJack: Injecting Keystrokes in Wireless Mice,https://www.bastille.net/technical-details,4,1,bsilvereagle,8/18/2016 0:26 +10978873,Staging Servers Must Die,http://readwrite.com/2016/01/22/staging-servers,3,3,aechsten,1/27/2016 8:10 +11080428,My 5 Favorite Free Tools for Working Remotely,http://blog.debugme.eu/free-tools-working-remotely/,3,1,SLaszlo,2/11/2016 14:53 +10608419,Show HN: Simple personal blogging service. Looking forward to feedback,http://followme.co,13,5,robot,11/21/2015 23:14 +12285246,"Aeron: Efficient reliable UDP unicast, UDP multicast, and IPC message transport",https://github.com/real-logic/Aeron,78,8,based2,8/14/2016 11:52 +12400930,Why Agile Is Critical for Attracting Millennial Engineers,https://www.infoq.com/articles/agile-critical-millennial,1,2,douche,8/31/2016 19:45 +10940507,"Show HN: Teevox Twitch Multistream Player,made in Static HTML, React, Firebase",https://teevox.com/hn,29,24,jiggity,1/20/2016 19:09 +11565827,FiveThirtyEight's take on basic income,http://fivethirtyeight.com/features/universal-basic-income/#hn2,7,2,hammock,4/25/2016 17:34 +11001641,P2P takes on Ebay,https://torrentfreak.com/steal-show-s01e05-p2p-takes-ebay/,6,1,Sami_Lehtinen,1/30/2016 12:48 +11523457,Ask HN: IaaS/PaaS providers for India region,,1,2,pbhowmic,4/18/2016 22:01 +12304642,Show HN: Amazon Search on Steroids,http://www.jeviz.com/,71,54,ceyhunkazel,8/17/2016 13:50 +11292488,Server and Client RCE in Git version 2.7.1 and below,http://seclists.org/oss-sec/2016/q1/645,139,29,breadtk,3/15/2016 19:55 +11416998,Collecting Unrecognizable Beings from the Stratosphere,http://nautil.us/blog/this-astrobiologist-is-collecting-unrecognizable-beings-from-the-stratosphere,61,17,dnetesn,4/3/2016 18:14 +11009996,Quiver: Programmer's Notebook for OS X,http://happenapps.com/#quiver,421,250,moonlighter,2/1/2016 5:39 +10977809,Ask HN: New OS X Calculator?,,1,2,dyeje,1/27/2016 2:25 +12330029,Ask HN: Why has the downvoting timelimit been reduced?,,46,78,aaron695,8/21/2016 8:42 +10317622,Asymmetric proof-of-work based on the Generalized Birthday problem [pdf],https://eprint.iacr.org/2015/946.pdf,3,1,monort,10/2/2015 10:10 +11406150,Apple has patented technology to automatically scan songs and remove swear words,http://www.businessinsider.com/apple-patented-technology-to-scan-songs-and-remove-swear-words-2016-3?r=UK&IR=T,2,1,6stringmerc,4/1/2016 16:32 +10758689,Google under scrutiny over lobbying influence on Congress and White House,http://www.theguardian.com/us-news/2015/dec/18/google-political-donations-congress,5,3,cryoshon,12/18/2015 14:46 +11601247,Ask HN: Is a simple life desirable to you? Why or why not?,,4,4,personlurking,4/30/2016 11:03 +11821256,Bill Gates talks about why artificial intelligence is nearly here,http://www.recode.net/2016/6/1/11833340/bill-gates-ai-artificial-intelligence,11,5,jonbaer,6/2/2016 9:28 +12368479,Spreadsheet technology (2011) [pdf],http://www.itu.dk/people/sestoft/funcalc/ITU-TR-2011-142.pdf,42,5,Tomte,8/26/2016 18:59 +11439756,London Mayoral Elections 2016: A site to help voters decide,https://www.getagent.co.uk/london-mayor/,25,14,sebpowell,4/6/2016 16:16 +12537649,Cheapest Solar on Record Offered as Abu Dhabi Expands Renewables,http://www.bloomberg.com/news/articles/2016-09-19/cheapest-solar-on-record-said-to-be-offered-for-abu-dhabi,86,65,Osiris30,9/20/2016 6:49 +10448921,Distance to Mars,http://www.johndcook.com/blog/2015/10/24/distance-to-mars/,70,40,bumbledraven,10/25/2015 23:44 +11454234,Apply HN Idea Essentials,,2,11,Innovativex,4/8/2016 12:50 +11043306,Show HN: Pathshare Professional New asset tracking and pick up dashboard,https://pathsha.re/professional,1,2,Pathshare,2/5/2016 18:05 +12303141,Show HN: LockedAway A unique text experience,http://lockedaway.online,65,24,foopod,8/17/2016 8:14 +12317934,Jekyll: The CMS you always wanted,http://jekyllrb.com/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/,2,2,rmason,8/19/2016 4:11 +11098677,Camel milk,https://en.wikipedia.org/wiki/Camel_milk,1,2,based2,2/14/2016 15:50 +10189483,Code to transform Hillary's emails from raw PDF documents to a SQLite database,https://github.com/benhamner/hillary-clinton-emails,94,42,shagunsodhani,9/9/2015 3:18 +12533732,Gun violence kills 70 over weekend as terrorism kills zero,http://www.slate.com/blogs/the_slatest/2016/09/19/gun_violence_kills_70_over_weekend_as_terrorism_kills_zero.html,3,1,smacktoward,9/19/2016 18:49 +11141158,"Twitter is struggling, probably because normal people don't know how to use it",http://www.theguardian.com/technology/2016/feb/18/twitter-problems-jack-dorsey-silicon-valley-technology,50,70,prostoalex,2/20/2016 18:15 +11441933,Apply HN: Meet New People Around You,http://www.koopuluri.com/meet,5,3,koopuluri,4/6/2016 20:43 +10464006,Rreverrse Debugging,http://huonw.github.io/blog/2015/10/rreverse-debugging/,142,46,dbaupp,10/28/2015 12:29 +10700457,Choose design over architecture,https://18f.gsa.gov/2015/11/17/choose-design-over-architecture/,108,36,dhotson,12/8/2015 23:03 +11509870,Ask HN: Think of novel ways AI may not be able to overwrite us,,1,3,bbunqq,4/16/2016 8:47 +11704216,Doctors' Secret Language for Assisted Suicide,http://www.theatlantic.com/health/archive/2015/05/doctors-secret-language-for-assisted-suicide/393968/?single_page=true,197,63,nitin_flanker,5/16/2016 4:17 +12577685,What I Learned from a Stroke at 26: Make Time to Untangle,http://www.nytimes.com/2016/09/25/jobs/what-i-learned-from-a-stroke-at-26-make-time-to-untangle.html?smid=fb-share,81,28,allsystemsgo,9/25/2016 21:58 +11554234,Victorians who flew as high as jumbo jets,http://www.bbc.com/future/story/20160419-the-victorians-who-flew-as-high-as-jets,159,37,otoolep,4/23/2016 5:02 +11952616,Moc myths debunked,https://woboq.com/blog/moc-myths.html,73,25,Tomte,6/22/2016 9:57 +10317923,Adblock extension with 40M users sells to mystery buyer,http://thenextweb.com/apps/2015/10/02/trust-us-we-block-ads/,9,1,pyprism,10/2/2015 12:02 +11075500,Ask HN: Could we please stop using the term 'bro'?,,3,4,jacquesm,2/10/2016 19:56 +10595120,Submitting Emoji Character Proposals,http://unicode.org/emoji/selection.html,30,56,ingve,11/19/2015 15:04 +12195519,What would you want offline to be without internet for a year?,,2,2,naveen99,7/31/2016 2:51 +11705989,Decentralised Decision Making with Initiative Circles,http://codurance.com/2016/05/13/initiative-circles/,58,4,mashooq-badar,5/16/2016 13:08 +10589895,Emscripten and ClojureScript: Transpiling to Avoid Rolling Your Own Crypto,https://blog.balboa.io/emscripten.html,45,23,squidlogic,11/18/2015 18:57 +10582302,"Homeschooled with MIT courses at 5, accepted to MIT at 15",http://news.mit.edu/2015/ahaan-rungta-mit-opencourseware-mitx-1116,416,216,badboyboyce,11/17/2015 16:51 +11103256,Stackable Traits Pattern in Scala,https://code.sahebmotiani.com/patterns-in-scala-101-5d0fa70aaf3f#.1d15x2akq,32,27,saheb37,2/15/2016 13:30 +12509832,Node v6.6.0,https://nodejs.org/en/blog/release/v6.6.0,152,47,samber,9/15/2016 21:06 +11236807,Show HN: I Ported LevelDB to Universal Windows Platform,https://github.com/maxpert/LevelDBWinRT,83,19,maxpert,3/7/2016 2:52 +11276798,Lee Sedol Beats AlphaGo in Game 4,https://gogameguru.com/alphago-4/,1395,448,jswt001,3/13/2016 8:44 +10506149,"Show HN: ""Ceasium"", An Angular.JS app for freelance programmers",http://z-petal.com/ng-ceasium/ceasium-html5-angularjs-app-for-freelancers.html,5,1,imakesnowflakes,11/4/2015 13:02 +10596945,Nintendo Controller Teardown,https://www.fictiv.com/resources/starter/hardware-dna-nintendo-teardown,152,43,fictivmade,11/19/2015 19:27 +12159416,The Best Problems,https://medium.com/@jsinge/thebestproblems-10a4aa540618,3,2,jsin,7/25/2016 15:43 +11546077,Snowden Seeks Assurance from Norway It Wont Extradite Him,http://www.wsj.com/articles/snowden-seeks-assurance-from-norway-it-wont-extradite-him-1461270001,171,128,aburan28,4/21/2016 23:36 +10206354,California Governor Vetoes Bill to Stop Drones from Flying Over Private Property,http://www.slate.com/blogs/future_tense/2015/09/10/california_gov_jerry_brown_vetoes_bill_to_stop_drones_from_flying_over_private.html,6,2,harold,9/11/2015 21:48 +10460894,Apple Reports Record Fourth Quarter Results,http://www.apple.com/pr/library/2015/10/27Apple-Reports-Record-Fourth-Quarter-Results.html,102,124,runesoerensen,10/27/2015 20:32 +11301948,Artificial Intelligence Will Kill Our Grandchildren (Singularity),http://berglas.org/Articles/AIKillGrandchildren/AIKillGrandchildren.html,1,1,doener,3/17/2016 1:09 +12224167,Ask HN: Does Prezi still run their bug bounty program?,,2,4,foota,8/4/2016 8:13 +12321505,Raptor Maps (YC S16) Uses Drones to Help Farmers Get Better Crops,http://themacro.com/articles/2016/08/raptor-maps/,20,11,stvnchn,8/19/2016 17:03 +11362691,List-less productivity,,4,7,sarkarsh,3/25/2016 21:06 +11055430,"Building a business, not just an app",https://stratechery.com/2014/pleco-building-business-just-app/,170,57,exolymph,2/7/2016 23:06 +11026480,Livestream of Wendelstein 7-X Stellerator being turned on,http://www.ipp.mpg.de/livestream_e_16,108,56,rkangel,2/3/2016 14:08 +11527632,Feature Flags for Mobile Apps,http://apptimize.com/feature-flags-launch/,26,2,swampthing,4/19/2016 15:28 +10846505,Jack Dorsey addresses Twitter's character limit,https://twitter.com/jack/status/684496529621557248,85,69,TheBiv,1/5/2016 22:19 +10470983,The astronomer and the witch how Kepler saved his mother from the stake,https://theconversation.com/the-astronomer-and-the-witch-how-kepler-saved-his-mother-from-the-stake-49332,81,14,benbreen,10/29/2015 13:57 +12187335,"Show HN: Our Red Dot Design Award submission (from 2014 and no, we didn't win)",https://bvckup2.com/design,1,1,latitude,7/29/2016 15:12 +10559393,Justice officials fear nation's biggest wiretap operation may not be legal,http://www.usatoday.com/story/news/2015/11/11/dea-wiretap-operation-riverside-california/75484076/,76,11,escapologybb,11/13/2015 12:16 +12526211,Amateur Radio Parity Act Passes in the US House of Representatives,http://www.arrl.org/news/amateur-radio-parity-act-passes-in-the-us-house-of-representatives,100,43,AstroJetson,9/18/2016 17:38 +11518402,FBI Is Pushing Back Against Judge's Order to Reveal Tor Browser Exploit,https://motherboard.vice.com/read/fbi-is-pushing-back-against-judges-order-to-reveal-tor-browser-exploit,77,18,ashitlerferad,4/18/2016 8:12 +10431775,An inside look at YouTubes new ad-free subscription service,http://www.theverge.com/2015/10/21/9566973/youtube-red-ad-free-offline-paid-subscription-service,31,50,jonathansizz,10/22/2015 12:26 +12016311,EU bans claim that water can prevent dehydration,http://www.telegraph.co.uk/news/worldnews/europe/eu/8897662/EU-bans-claim-that-water-can-prevent-dehydration.html,3,2,cordite,7/1/2016 14:33 +12198085,Show HN: SimpleRT reverse tethering utility for Android,https://github.com/vvviperrr/SimpleRT,100,24,vvviperrr,7/31/2016 18:14 +11272057,Watch Thy Neighbor,http://foreignpolicy.com/2016/03/11/watch-thy-neighbor-nsa-security-spying-surveillance/,2,1,kushti,3/12/2016 9:15 +10243794,"Completely Painless Programmer's Guide to XYZ, RGB, ICC, XyY, and TRCs",http://ninedegreesbelow.com/photography/xyz-rgb.html,68,13,nkurz,9/19/2015 9:26 +11780861,"Thiel, Trump and the death of shame",https://pando.com/2016/05/26/thiel-trump-and-death-shame/097711488320d3d19419036e673f63d51fc80bb4/,5,1,ShaneBonich,5/26/2016 19:40 +11818654,PyPy3.3 v5.2 alpha 1 released,http://morepypy.blogspot.com/2016/05/pypy33-v52-alpha-1-released.html,2,1,triplepoint217,6/1/2016 22:12 +10620148,Roku OS 7: Developer Highlights,https://blog.roku.com/developer/2015/11/23/roku-os-7-dev-highlights/,8,1,ingve,11/24/2015 11:12 +12317253,How Lending Clubs Biggest Fanboy Uncovered Shady Loans,http://www.bloomberg.com/news/features/2016-08-18/how-lending-club-s-biggest-fanboy-uncovered-shady-loans,55,21,petethomas,8/19/2016 0:36 +11922864,DarkForest: Deep learning engine for playing Go from Facebook research,https://github.com/facebookresearch/darkforestGo,135,59,adamnemecek,6/17/2016 14:39 +11369463,How Genode came to RISC-V,http://genode.org/documentation/articles/riscv,54,19,carey,3/27/2016 9:36 +10608866,There are far more Muslims ready to fight for the West than against it,https://www.washingtonpost.com/opinions/there-are-far-more-muslims-ready-to-fight-for-the-west-than-against-it/2015/11/20/ce2ef78a-8ee2-11e5-baf4-bdf37355da0c_story.html,8,1,thehoff,11/22/2015 2:43 +10474890,New Yorks Legendary 'Mole People',http://narrative.ly/myths-and-misconceptions/the-truth-about-new-yorks-legendary-mole-people/,40,6,nols,10/29/2015 22:36 +12408082,Blockchain Surveillance Is Accelerating Privacy Tool Development,https://news.bitcoin.com/blockchain-surveillance-privacy-tool/,72,45,posternut,9/1/2016 19:16 +11455449,Ask HN: What to do when a Chinese startup clones your website?,,131,128,bflesch,4/8/2016 15:40 +11912554,Coding bootcamp Fullstack Academy (YC S12) will fund alumni-founded startups,https://techcrunch.com/2016/06/15/coding-bootcamp-fullstack-academy-will-fund-alumni-founded-startups/,58,16,dangerman,6/15/2016 22:13 +11275720,The maker illusion,http://www.erickarjaluoto.com/blog/the-maker-illusion/,2,1,karjaluoto,3/13/2016 1:43 +10593500,"New Archaeological Evidence for an Early Human Presence at Monte Verde, Chile",http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0141923#pone-0141923-g001,25,3,r0muald,11/19/2015 8:37 +10256937,Dr. Alan Kay on the Meaning of Object-Oriented Programming,http://userpage.fu-berlin.de/~ram/pub/pub_jf47ht81Ht/doc_kay_oop_en,5,1,ingve,9/22/2015 6:26 +10938103,TorFlow,https://torflow.uncharted.software/,261,71,bemmu,1/20/2016 14:06 +10248775,More on the Political Economy of Permahawkery,http://krugman.blogs.nytimes.com/2015/09/20/more-on-the-political-economy-of-permahawkery,2,1,lisa_henderson,9/20/2015 19:50 +11686014,IBM Announces Magic Bullet to Zap All Kinds of Killer Viruses,http://www.fastcompany.com/3059782/ibm-announces-magic-bullet-to-zap-all-kinds-of-killer-viruses,8,1,mfoy_,5/12/2016 19:20 +10973476,You can't split-test human experience You cant split test human experience,http://justinjackson.ca/split-human/,3,1,mooreds,1/26/2016 14:22 +10192413,Magic PNG Thumbnails,http://thume.ca/projects/2012/11/14/magic-png-files/,111,41,trishume,9/9/2015 16:36 +10875170,Auto-tuning system using the ROSE compiler (2013) [pdf],http://rosecompiler.org/autoTuning.pdf,10,1,vmorgulis,1/10/2016 13:00 +11586755,Instagram insists littergram app is renamed,http://www.bbc.co.uk/news/uk-england-kent-36148093,3,2,sjcsjc,4/28/2016 5:49 +10409903,"Driverless trucks move all iron ore at Rio Tinto's Pilbara mines, in world first",http://www.abc.net.au/news/2015-10-18/rio-tinto-opens-worlds-first-automated-mine/6863814,6,1,cryptoz,10/18/2015 21:38 +11660492,TMSU: a tool born out of frustration with the hierarchical nature of filesystems,http://tmsu.org/,237,128,goblin89,5/9/2016 15:23 +12058647,Ask HN: TDD-Oriented Resources for Learning iOS/Swift Programming?,,8,6,cauterized,7/8/2016 21:06 +11995065,Forget Guava: 5 Google Libraries Java Developers Should Know,http://blog.takipi.com/forget-guava-5-google-libraries-java-developers-should-know/,8,1,tkfx,6/28/2016 16:25 +11298799,Meet the Guy Whose Software Keeps the Worlds Clocks in Sync,http://spectrum.ieee.org/tech-talk/computing/networks/meet-the-guy-whose-software-keeps-the-nations-clocks-in-sync,2,1,simonebrunozzi,3/16/2016 16:58 +11398231,Show HN: Did not find automated personalization for websites and created this,https://www.landy.io/,11,6,alexeykudinkin,3/31/2016 16:12 +12242053,The Meeting That Showed Me the Truth about VCs and How They Dont Make Money,https://medium.com/@tomerdean/the-meeting-that-showed-me-the-truth-about-vcs-and-how-they-don-t-make-money-ab72b52b50cd#.d301mxgo8,30,3,tomerdean,8/7/2016 13:43 +12269425,Indie Hackers: Learn how developers are making money,https://www.indiehackers.com,971,184,csallen,8/11/2016 16:12 +12090109,The Rich Douchebag's Approach to Basic Income,https://medium.com/@pashapiro/the-rich-douchebags-approach-to-basic-income-73e9c64f9504#.wikxt269x,22,11,pashapiro,7/13/2016 22:17 +12553344,Why I Think English Majors Should Learn to Code,https://medium.com/code-like-a-girl/why-i-think-to-english-majors-should-learn-to-code-54591a96735#.juswfefx4,1,1,DinahDavis,9/22/2016 0:09 +12505678,Azure Status,https://azure.microsoft.com/en-gb/status/,12,1,chris_overseas,9/15/2016 12:57 +11038671,Study finds almost half of all cancers linked to preventable factors,http://www.cbc.ca/news/canada/edmonton/study-finds-almost-half-of-all-cancers-linked-to-preventable-factors-1.3434002,77,54,cpncrunch,2/5/2016 1:11 +10281362,Tell HN: Super Mario maker is the visual programming language we have waited for,,4,2,S_A_P,9/25/2015 23:30 +12365584,Need a Photo That Fits the Mood? Ask This Startups Algorithm,http://www.bloomberg.com/news/articles/2016-08-26/need-a-photo-that-fits-the-mood-ask-this-startup-s-algorithm,1,1,sebii,8/26/2016 12:01 +10433766,'Huge Step': FCC Slashes Costs of Prison Phone Calls,http://www.nbcnews.com/news/us-news/huge-step-fcc-slashes-costs-prison-phone-calls-n449286,2,1,hwstar,10/22/2015 18:01 +12018985,"USS Truman sailors use 3D printing to create new part, save Navy more than $42k",http://pilotonline.com/news/military/local/uss-truman-sailors-create-truclip-at-sea-and-save-the/article_37dd3370-d7f9-5305-9cb3-bb2ef2c1c4cb.html?dolujhbkjn,3,1,jewbacca,7/1/2016 19:22 +11397524,"Two out of three developers are self-taught, and other trends from a survey",http://qz.com/649409/two-out-of-three-developers-are-self-taught-and-other-trends-from-a-survey-of-56033-developers/,113,118,raddad,3/31/2016 14:43 +10293300,The two Detroits: a city both collapsing and gentrifying at the same time,http://www.theguardian.com/cities/2015/feb/05/detroit-city-collapsing-gentrifying,40,57,Thevet,9/28/2015 21:22 +10964907,Why Learn Perl?,http://perlhacks.com/2016/01/why-learn-perl/,6,2,eCa,1/25/2016 0:53 +11881282,Apple Starts to Woo Its App Developers,http://www.nytimes.com/2016/06/11/technology/apple-starts-to-woo-its-app-developers.html?hpw&rref=technology&action=click&pgtype=Homepage&module=well-region®ion=bottom-well&WT.nav=bottom-well&_r=0,77,173,hvo,6/11/2016 0:28 +11084779,Twitter's new 'Safety Council' makes a mockery of free speech,http://blogs.spectator.co.uk/2016/02/twitters-new-safety-council-makes-a-mockery-of-free-speech/,3,1,walterbell,2/12/2016 1:46 +10404562,Optical Computer Prototype,http://optalysys.com/technology/achievements-date/,50,26,fenrissan,10/17/2015 15:01 +10612752,BuzzFeed for Doctors,http://www.ngfeed.com/,3,2,joelogan,11/23/2015 3:42 +12429445,"Loneliness can be depressing, but it may have helped humans survive",https://www.washingtonpost.com/national/health-science/loneliness-can-be-depressing-but-it-may-have-helped-humans-survive/2016/09/02/c01a15f4-38a0-11e6-8f7c-d4c723a2becb_story.html,138,45,wallflower,9/5/2016 11:02 +10198631,AWS in Plain English,https://1c1592af.ngrok.io/aws-in-plain-english,3,1,ivank,9/10/2015 15:29 +11666060,"Production, the practical alternative to Vagrant",https://vine.co/v/iQLqBV6jYa3,7,1,velmu,5/10/2016 9:46 +12116684,Show HN: Africa's Top Tech Talent On-demand,https://www.kuhustle.com/,30,17,gichuru,7/18/2016 17:39 +11232053,Calculus Is So Last Century,http://www.wsj.com/articles/calculus-is-so-last-century-1457132991,3,3,Chinjut,3/6/2016 1:32 +10649155,How to Fix Everything: Spending a few days at iFixit,http://motherboard.vice.com/read/how-to-fix-everything,81,46,jkoebler,11/30/2015 13:08 +10530891,Another $1M Crowdfunded Gadget Company Collapses,http://www.techcrunch.com/2015/11/07/another-1-million-crowdfunded-gadget-company-collapses/,2,1,Jerry2,11/9/2015 1:14 +11961914,A ?-calculus interpreter in less than 200 lines of JavaScript,http://tadeuzagallo.com/blog/writing-a-lambda-calculus-interpreter-in-javascript/,11,2,bpierre,6/23/2016 15:49 +11451500,Boxer Shorts: quantifying the economical impact of one more,http://vocus.io/link?id=3d9f5be3-67f9-46e2-a2a2-6bce41277d35,14,1,ANaimi,4/7/2016 23:22 +10496326,Show HN: A Firefox extension to break the habit of typing distracting websites,https://addons.mozilla.org/en-US/firefox/addon/focus-by-cabana-labs/,37,28,vishaldpatel,11/2/2015 23:53 +10919114,3D Printer Specifications explained,http://www.productchart.com/3d_printers/info/,4,1,no_gravity,1/17/2016 11:03 +11586496,Ask HN: Canadian visa woes. Should I try Australia?,,22,32,visawoes,4/28/2016 3:58 +10501877,Ask HN: Why upvotes not raising my karma?,,8,12,cdvonstinkpot,11/3/2015 19:24 +10882238,The New Republics Next Chapter,https://medium.com/@chrishughes/the-new-republic-s-next-chapter-69f6772606#.hx4poimcv,1,1,boskonyc,1/11/2016 18:44 +12152037,Real-time world air quality index,https://waqi.info/,3,1,percept,7/24/2016 3:02 +10726110,SqlPad: Run SQL in your browser and chart the results,http://rickbergfalk.github.io/sqlpad/,102,30,Walkman,12/13/2015 11:46 +10344966,Nix: The Purely Functional Package Manager,https://nixos.org/nix/,5,2,dmmalam,10/7/2015 9:19 +12569281,Americas Monopoly Problem,http://www.theatlantic.com/magazine/archive/2016/10/americas-monopoly-problem/497549/?single_page=true,13,1,sndean,9/24/2016 3:21 +10610951,Our Generation Ships Will Sink,http://boingboing.net/2015/11/16/our-generation-ships-will-sink.html,9,1,radley,11/22/2015 18:45 +12039837,Bussard: A space flight programming adventure,https://gitlab.com/technomancy/bussard,113,29,spdustin,7/5/2016 22:01 +11508049,DARPA-Funded Clojure Probabalistic Modeling and Execution Learning,https://github.com/dollabs/pamela,99,14,elwell,4/15/2016 22:21 +11394347,Growth Hacking BLOCKS Kickstarter Campaign to $1.6M,https://medium.com/@alfundi/on-growth-hacking-blocks-kickstarter-campaign-to-1-6-22b0f431c9a5#.flu7fd2bi,3,1,alpatrick,3/31/2016 1:19 +12072214,Why Dieters Flock to Instagram,http://www.nytimes.com/2016/07/08/health/instagram-diets.html?ribbon-ad-idx=4&rref=business/media&module=Ribbon&version=context®ion=Header&action=click&contentCollection=Media&pgtype=article,1,1,prostoalex,7/11/2016 16:33 +10418875,The Loop Extrusion Model of DNA,http://www.theatlantic.com/science/archive/2015/10/theres-a-mystery-machine-that-sculpts-the-human-genome/411199/?single_page=true,47,3,cedricr,10/20/2015 13:09 +11898882,"Programmer automates his job, gets fired after 6 years",http://interestingengineering.com/programmer-automates-job-6-years-boss-fires-finds/,27,14,tonteldoos,6/14/2016 0:22 +12437608,Ask HN: Beside Java what languages have a strong tooling/IDE ecosystem on Linux?,,4,7,soulbadguy,9/6/2016 17:22 +12542290,How popular is your birthday?,http://visual.ons.gov.uk/how-popular-is-your-birthday/,2,1,DanBC,9/20/2016 19:02 +11100074,Ask HN: Where have you decided to move your Parse apps?,,4,2,bikamonki,2/14/2016 21:23 +10554291,Word Cloud spoken by each Republican Candidate for the 4th debate,https://medium.com/@micahhausler/4th-2016-republican-debate-word-clouds-53e8207bb870,5,1,micah_chatt,11/12/2015 16:51 +11427292,400 reporters kept the Panama Papers secret for a year,http://mashable.com/2016/04/04/panama-papers-media,12,4,bootload,4/5/2016 2:07 +12349735,Millennials arent buying homes. Good for them,https://www.washingtonpost.com/opinions/millennials-arent-buying-homes--good-for-them/2016/08/22/818793be-68a4-11e6-ba32-5a4bf5aad4fa_story.html?utm_term=.c47e49424fb6,2,1,shawndumas,8/24/2016 4:46 +12239730,JavaScript eval: direct vs. indirect call,http://blog.klipse.tech/javascript/2016/06/20/js-eval-secrets.html,2,3,viebel,8/6/2016 20:23 +11634994,Ask HN: Machine Learning overview for non-engineers,,8,3,servo,5/5/2016 10:30 +11045695,Amgen publishes failures to replicate high-profile science,http://www.nature.com/news/biotech-giant-publishes-failures-to-confirm-high-profile-science-1.19269?WT.mc_id=FBK_NA_1601_NEWSBIOTECHFAILDATA_PORTFOLIO,193,14,chriskanan,2/6/2016 0:04 +11397397,The American City Was Built for Cars. What Will Happen When They All Leave?,https://www.linkedin.com/pulse/american-cities-were-built-cars-what-happen-when-all-leave-kelman,4,2,mooreds,3/31/2016 14:28 +12162849,Show HN: FractalViewer: A JavaScript fractal explorer,https://valera-rozuvan.github.io/FractalViewer/FractalViewer.html,11,11,valera_rozuvan,7/26/2016 1:42 +11747683,How Kosovo Was Turned into Fertile Ground for ISIS,http://www.nytimes.com/2016/05/22/world/europe/how-the-saudis-turned-kosovo-into-fertile-ground-for-isis.html,25,32,Jerry2,5/22/2016 7:38 +10703020,Ask HN: What would happen if everyone was a whistleblower on 1 JAN 2016?,,1,3,cvs268,12/9/2015 11:09 +11190938,Why Daily Weight Lifting Can Be Dangerous,http://well.blogs.nytimes.com/2016/02/26/ask-well-why-daily-weight-lifting-can-be-dangerous/?smid=fb-nytimes&smtyp=cur&_r=0,6,3,prostoalex,2/28/2016 14:08 +12268737,AWS Application Load Balancer,https://aws.amazon.com/blogs/aws/new-aws-application-load-balancer/,371,130,rjsamson,8/11/2016 15:01 +11687407,Show HN: Deploy Docker Image to AWS Elastic Beanstalk,https://gist.github.com/yefim/93fb5aa3291b3843353794127804976f,81,26,yefim,5/12/2016 22:48 +10669996,GC and Rust Part 1: Specifying the Problem,http://blog.pnkfx.org/blog/2015/11/10/gc-and-rust-part-1-specing-the-problem/,139,23,steveklabnik,12/3/2015 15:21 +12165878,How to Write Unmaintainable Code,https://github.com/Droogans/unmaintainable-code#how-to-write-unmaintainable-code,46,27,adgasf,7/26/2016 14:35 +12574306,"Inside the Former US Embassy in Tehran, Iran (2015)",http://thecitylane.com/inside-former-us-embassy-tehran-iran/,68,57,boramalper,9/25/2016 6:58 +10596628,Show HN: A Chrome extension to break the habit of typing distracting websites,https://chrome.google.com/webstore/detail/focus-by-cabana-labs/jgfmjlneealoganlfgionjllmcadobjh,3,1,vishaldpatel,11/19/2015 18:43 +10316966,FlashAir: Memory Card with Wireless LAN,https://flashair-developers.com/en/about/overview/,16,9,bootload,10/2/2015 6:04 +11250112,In San Francisco and Rooting for a Tech Comeuppance,http://www.nytimes.com/2016/03/09/technology/in-san-francisco-and-rooting-for-a-tech-slowdown.html?_r=0,3,1,clorenzo,3/9/2016 1:05 +11014977,"What being a PM is really like Software is easy, People are hard",http://www.craigkerstiens.com/2016/01/28/On-being-a-PM-software-is-easy-people-are-hard/,4,1,joeyespo,2/1/2016 20:07 +11661297,Crooks Go Deep with Deep Insert ATM Skimmers,http://krebsonsecurity.com/2016/05/crooks-go-deep-with-deep-insert-skimmers/,4,1,qingu,5/9/2016 16:58 +10186869,"Famous Writers Sleep Habits vs. Literary Productivity, Visualized",http://www.brainpickings.org/index.php/2013/12/16/writers-wakeup-times-literary-productivity-visualization/,3,1,ZeljkoS,9/8/2015 17:05 +11945270,Google to Offer Better Medical Advice When Searching for Symptoms,https://googleblog.blogspot.com/2016/06/im-feeling-yucky-searching-for-symptoms.html,6,1,chewymouse,6/21/2016 12:59 +12311559,Ubers First Self-Driving Fleet Arrives in Pittsburgh This Month,http://www.bloomberg.com/news/features/2016-08-18/uber-s-first-self-driving-fleet-arrives-in-pittsburgh-this-month-is06r7on,289,223,ghosh,8/18/2016 11:06 +12298112,EQGRP Auction,https://webcache.googleusercontent.com/search?q=cache:owtq6OBSmgEJ:https://theshadowbrokers.tumblr.com/+&cd=1&hl=en&ct=clnk&gl=us,3,1,mrb,8/16/2016 15:36 +11124932,"Cybersecurity is slowing down my business, say majority of chief execs",http://www.theregister.co.uk/2016/02/17/cyber_security/,1,1,munkiepus,2/18/2016 10:52 +11653813,Ask HN: How's your experience running Linux on a macbook?,,3,3,cmdz0rd,5/8/2016 12:47 +12171768,OnionBalance Load balancing and redundancy for Tor hidden services,https://onionbalance.readthedocs.io/en/latest/,55,6,eeZah7Ux,7/27/2016 10:43 +12327458,How to Enable Bash on Windows 10 with the latest update,http://www.omgubuntu.co.uk/2016/08/enable-bash-windows-10-anniversary-update,6,2,wslh,8/20/2016 17:19 +10441755,Popcorntime.io is dead. Long live Butter project,http://status.popcorntime.io/incidents/cs56btjdvnw9,6,1,lambdacomplete,10/23/2015 23:20 +10893947,Knowmail AI for email,https://www.knowmail.me/,47,44,eranknow,1/13/2016 13:03 +11074638,The Robin Hood of Science,http://bigthink.com/neurobonkers/a-pirate-bay-for-science,164,39,salmonet,2/10/2016 18:11 +10502202,Data Mining Reveals the Extent of China's Ghost Cities,http://www.technologyreview.com/view/543121/data-mining-reveals-the-extent-of-chinas-ghost-cities/,5,1,jimsojim,11/3/2015 20:08 +10761037,Enabling support for MathML (Chromium),https://code.google.com/p/chromium/issues/detail?id=152430,2,1,mindcrime,12/18/2015 21:23 +11532142,O RLY Cover Generator,http://dev.to/rly,2,1,dcschelt,4/20/2016 3:50 +10353722,EC2 Instance Update X1 (SAP HANA) and T2.Nano (Websites),https://aws.amazon.com/blogs/aws/ec2-instance-update-x1-sap-hana-t2-nano-websites/,94,32,runesoerensen,10/8/2015 16:17 +12381516,Show HN: Blissify,http://www.blissify.io,6,3,a_t,8/29/2016 12:57 +10307432,The future of cryptocurrencies: Bitcoin and beyond,http://www.nature.com/news/the-future-of-cryptocurrencies-bitcoin-and-beyond-1.18447,12,2,randomwalker,9/30/2015 21:31 +11818199,New recycling app,,3,1,recyche,6/1/2016 21:13 +11987629,"The Slow, Sad, and Ultimately Predictable Decline of 3-D Printing",http://www.inc.com/john-brandon/the-slow-sad-and-ultimately-predictable-decline-of-3d-printing.html,4,1,ytNumbers,6/27/2016 17:13 +11710698,Ask HN: Just how many developers am I competing against?,,2,1,prmph,5/17/2016 0:59 +11321236,Falsehoods Programmers Believe About Phone Numbers,https://github.com/googlei18n/libphonenumber/blob/master/FALSEHOODS.md,236,121,prostoalex,3/20/2016 0:48 +10210814,Anti-Competitive Effects of Common Ownership [pdf],https://www.bc.edu/content/dam/files/schools/csom_sites/finance/Schmalz-031115.pdf,41,4,taofu,9/13/2015 9:42 +12393039,Ask HN: Anybody using web components (or Polymer) in production?,,13,4,bananaoomarang,8/30/2016 19:17 +11583450,Lambda-calculus in lambdatalk,,11,2,martyalain,4/27/2016 18:54 +10761388,How to Kill Your Laptop Battery: Leave an iTunes Store Page Open in iTunes,http://www.mcelhearn.com/how-to-kill-your-laptop-battery-leave-an-itunes-store-page-open-in-itunes/,1,1,shawndumas,12/18/2015 22:22 +11441454,Apply HN: QueueIn Peer to Peer Ticket Marketplace for Music Fans,,13,6,kevshin2,4/6/2016 19:54 +10870875,Show HN: I just made my first JavaScript library,https://www.npmjs.com/package/typecheckjs,2,3,antrion,1/9/2016 11:26 +10392888,Medical Breakthrough in Spinal Cord Injuries Was Made by a Computer Program,http://www.fastcoexist.com/3052282/the-latest-medical-breakthrough-in-spinal-cord-injuries-was-made-by-a-computer-program,169,59,fahimulhaq,10/15/2015 13:12 +11161199,Ask HN: Does HN move too fast for 'Ask HN'?,,51,11,J-dawg,2/23/2016 18:44 +10964727,Why Understanding Space Is So Hard,http://nautil.us/blog/this-is-why-understanding-space-is-so-hard,3,1,dnetesn,1/25/2016 0:10 +10298249,Affdex SDK Meets BB-8 [video],https://www.youtube.com/watch?v=6QDMNPhMJI4,8,6,ahamino,9/29/2015 18:07 +10901033,Someone wants to change the licence of Microsoft's Chakra engine to ISC,https://github.com/Microsoft/ChakraCore/issues/76,1,1,DigitalSea,1/14/2016 12:54 +11419184,Recursively Cautious Congestion Control [pdf],http://www.cs.berkeley.edu/~justine/rc3-nsdi.pdf,13,1,luu,4/4/2016 3:10 +11693384,Is Zika How Humanity Ends?,http://blogs.scientificamerican.com/life-unbounded/is-zika-how-humanity-ends/,2,1,protomyth,5/13/2016 21:40 +12119184,Show HN: HackerClient-A web application for aggregating sports and tech news,https://github.com/vendettacoder/HackerClient,2,1,rohak,7/19/2016 2:36 +10298623,ThoughtBot launches Upcase.com,https://upcase.com,3,1,theuri,9/29/2015 18:55 +12009184,"HTTP2 explained -- Background, the protocol, the implementations and the future",https://daniel.haxx.se/http2/,3,1,0xmohit,6/30/2016 15:27 +11836002,Evidence-Based Estimation for Project Delivery,https://medium.com/@planrockr/evidence-based-estimation-for-project-delivery-4c2a69a17084#.5cjzoszeo,5,1,eminetto,6/4/2016 11:53 +11062131,"For $3100 USD You Can Have a Fast, Fully-Free-Software Workstation",http://www.phoronix.com/scan.php?page=article&item=talos-workstation&num=1,10,4,ajdlinux,2/9/2016 0:37 +10710766,Advaned Angular learning,,2,1,yugoja,12/10/2015 14:39 +11825783,This Is the Tiniest Little Quadruped Robot We've Ever Seen,http://spectrum.ieee.org/automaton/robotics/robotics-hardware/tiniest-little-quadruped-robot#.V1CYBW5g6ew.hackernews,2,1,mcspecter,6/2/2016 20:33 +10248147,Twitter.net: The International Association of Bird Statistics Gatherers,http://twitter.net/,17,6,grhmc,9/20/2015 16:49 +10313962,"2015: 274 days, 294 mass shootings, hundreds dead",http://www.washingtonpost.com/news/wonkblog/wp/2015/10/01/2015-274-days-294-mass-shootings-hundreds-dead/,7,3,jsvine,10/1/2015 19:25 +11647213,How does Google handle `git status`,,3,6,setheron,5/6/2016 22:38 +11812670,Can We Trust Robots?,http://spectrum.ieee.org/static/special-report-trusting-robots,4,2,mcspecter,6/1/2016 7:33 +11798425,Have you tried Tex The most secure message App?,http://texapp.co/,3,3,alexheikel,5/29/2016 21:59 +12136682,EFF Lawsuit Takes on DMCA Section 1201,https://www.eff.org/press/releases/eff-lawsuit-takes-dmca-section-1201-research-and-technology-restrictions-violate,81,3,Vexs,7/21/2016 13:28 +11420826,(UK) CMA tackles undisclosed advertising online,https://www.gov.uk/government/news/cma-tackles-undisclosed-advertising-online,1,1,DanBC,4/4/2016 11:00 +11521873,SF 1906 quake seen through private collection,http://www.sfgate.com/bayarea/article/San-Francisco-1906-earthquake-rare-photos-6922034.php#photo-9767201,10,1,evo_9,4/18/2016 18:00 +12403946,Pantsuit: The Hillary Clinton UI Pattern Library,https://medium.com/git-out-the-vote/pantsuit-the-hillary-clinton-ui-pattern-library-238e9bf06b54#.n7xkkz4nq,9,2,blopeur,9/1/2016 9:32 +11951407,"As Airbnb Grows, So Do Claims of Discrimination",http://www.nytimes.com/2016/06/26/travel/airbnb-discrimination-lawsuit.html?ref=business,2,1,drpgq,6/22/2016 3:39 +11086722,I have nothing to hide is killing the privacy argument,http://thenextweb.com/insider/2016/02/11/i-have-nothing-to-hide-is-killing-the-privacy-argument/,7,6,plhetp,2/12/2016 12:24 +10531127,Divisibility by 7 is a Walk on a Graph (2009),http://blog.tanyakhovanova.com/2009/08/divisibility-by-7-is-a-walk-on-a-graph-by-david-wilson/,335,71,znpy,11/9/2015 2:47 +10609297,Why use Go programming language?,http://www.usmanajmal.com/go-programming-by-todd-mcleod/,4,1,usmanajmal,11/22/2015 6:39 +10569773,Clearing the Air on Wi-Fi Software Updates,https://www.fcc.gov/blog/clearing-air-wi-fi-software-updates,9,1,Deinos,11/15/2015 15:07 +12292248,Ask HN: I'm a generalist developer I'd like to specialise. What should I choose?,,17,7,slice-beans,8/15/2016 18:10 +11356085,France fines Google over 'right to be forgotten',http://www.reuters.com/article/us-google-france-privacy-idUSKCN0WQ1WX,34,20,jim-greer,3/24/2016 20:16 +10505765,From kafkatrap to honeytrap,http://esr.ibiblio.org/?p=6907,87,22,d9h549f34w6,11/4/2015 11:13 +10538832,Why Is Uber for Moving So Popular?,https://www.movebuddha.com/blog/uber-for-moving-popular/,5,2,rcarrigan87,11/10/2015 11:58 +12395893,Can Kimbal Musk Do for Farms What Elon Has for Cars?,http://www.takepart.com/article/2016/08/29/indoor-farming-startups,6,2,rmason,8/31/2016 3:48 +10795439,The Navy SEALs Might Have Selected a New Pistol of Choice,http://foxtrotalpha.jalopnik.com/the-navy-seals-may-have-selected-a-new-pistol-of-choice-1749620057,1,1,ourmandave,12/26/2015 21:54 +10872658,Britney Spear's Guide to Semiconductor Physics (2000),http://britneyspears.ac/lasers.htm,94,31,jdmoreira,1/9/2016 20:07 +10446897,U2F support extension for Firefox,https://github.com/prefiks/u2f4moz,6,1,roidelapluie,10/25/2015 14:12 +11503911,Uninstall QuickTime for Windows now,http://www.infoworld.com/article/3056650/security/uninstall-quicktime-for-windows-now.html,2,3,AJAlabs,4/15/2016 13:02 +11241973,The Gmail Moment??Delight of the Unknown,https://medium.com/@taimurabdaal/the-gmail-moment-delight-of-the-unknown-9db87fed80a5,12,2,refrigerator,3/7/2016 21:45 +10966290,Bootstrap 4 upgrader,http://demo.bootstraptor.com/bootstrap4/,3,1,bootstraptor,1/25/2016 9:20 +12576002,A fast PostgreSQL client library for Python: 3x faster than psycopg2,https://github.com/MagicStack/asyncpg,3,1,arjun27,9/25/2016 16:33 +10805836,Free Basics protects net neutrality,http://blogs.timesofindia.indiatimes.com/toi-edit-page/free-basics-protects-net-neutrality/,3,1,MOil,12/29/2015 8:53 +11204952,The most popular subdomains on the internet,https://bitquark.co.uk/blog/2016/02/29/the_most_popular_subdomains_on_the_internet,4,2,bitquark,3/1/2016 18:41 +11039559,"When Indias Pied Piper was short of cash, the founders operated from a car",https://www.techinasia.com/indias-pied-piper-skcript-short-cash-founders-ran-startup-car-profile,5,2,williswee,2/5/2016 4:59 +10668983,Idea: Lighthouse Comments,http://codepen.io/n3dst4/post/lighthouse-comments,3,1,n3dst4,12/3/2015 11:07 +10276583,Ask HN: Want to contribute in Open source implementation of research papers,,9,14,gamekathu,9/25/2015 5:58 +11306382,Ask HN: Does anyone still use Del.icio.us?,,1,4,rayascott,3/17/2016 18:21 +11380327,Experimenting with Rust generics and dynamic traits,http://dbeck.github.io/My-First-Steps-In-Rust/,67,54,dbeck74,3/29/2016 9:10 +12437018,Xerox Alto restoration day 5: Smoke and parity errors,http://www.righto.com/2016/09/xerox-alto-restoration-day-5-smoke-and.html,6,1,dwaxe,9/6/2016 16:10 +12349596,BrightWork's JavaScript SDK build your back end faster,https://github.com/TeamBrightWork/bw-js-sdk,1,1,josh_carterPDX,8/24/2016 4:03 +11379727,The Cheapest Countries to Buy Apple Products,http://www.applecompass.com/,3,1,gyvastis,3/29/2016 5:53 +11172255,Fewer Asians Need Apply,http://www.city-journal.org/2016/26_1_college-admissions-discrimination.html,4,1,andrewl,2/25/2016 3:49 +12075526,When Persuasion Turns Deadly,http://blog.dilbert.com/post/147247313346/when-persuasion-turns-deadly#_=_,21,27,douche,7/11/2016 23:13 +11259692,Sweet Eclipse,http://exyte.github.io/sweet.eclipse/,5,4,ystrot,3/10/2016 15:25 +12482209,"Restoring YC's Xerox Alto, Day 6: Fixed a chip, data read from disk",http://www.righto.com/2016/09/restoring-ycombinators-xerox-alto-day-6.html,153,31,mr_golyadkin,9/12/2016 18:16 +11963528,Fire in Microgravity,https://www.americanscientist.org/issues/feature/2016/1/fire-in-microgravity/1,107,4,MaxLeiter,6/23/2016 18:57 +10919402,Mercury(II) thiocyanate,https://en.wikipedia.org/wiki/Mercury%28II%29_thiocyanate,1,1,p4bl0,1/17/2016 13:37 +10463427,Inductive Programming Meets the Real World [pdf],http://research.microsoft.com/en-us/um/people/sumitg/pubs/ip-cacm15.pdf,31,7,alanfranzoni,10/28/2015 9:22 +11795841,"No, its not you: Google maps really did get crappy",http://qz.com/681745/no-its-not-you-google-maps-really-did-get-crappy/,7,5,rolux,5/29/2016 10:31 +11042259,"Julian Assange decision by UN panel ridiculous, says Hammond",http://www.bbc.co.uk/news/uk-35504237,44,52,nns,2/5/2016 16:04 +10994702,Show HN: Sniptracker select any web content and follow it on one dashboard,https://www.sniptracker.com,10,5,mitjap,1/29/2016 11:56 +10435454,"Evo, the First Prescription-Strength Video Game?",http://www.bloomberg.com/news/articles/2015-10-22/project-evo-the-first-prescription-strength-video-game-,2,1,EwanG,10/22/2015 22:07 +12081040,What Shakespeares Plays Sounded Like with Their Original English Accent,http://twentytwowords.com/performing-shakespeares-plays-with-their-original-english-accent/,9,1,matan_a,7/12/2016 17:51 +10570856,Walmarts $10 Smartphone Has Better Specs Than the Original iPhone,http://motherboard.vice.com/read/walmarts-10-smartphone-has-better-specs-than-the-original-iphone,279,199,bane,11/15/2015 19:49 +11723652,Google Home,http://home.google.com/,577,457,stuartmemo,5/18/2016 17:20 +10722448,"Comparative Study of Caffe, Neon, Theano, and Torch for Deep Learning",http://arxiv.org/abs/1511.06435,73,8,mindcrime,12/12/2015 11:40 +11596345,Raspberry PI Zero back in stock @ PiHut,https://thepihut.com/products/raspberry-pi-zero?variant=14062715972,1,1,alexellisuk,4/29/2016 15:31 +12144948,Ask HN: What features would make up the ultimate person finance tool for you?,,2,2,alexkehr,7/22/2016 17:13 +11460493,Film Dialouge Broken Down by Gender and Age,http://polygraph.cool/films/,34,6,kamkazemoose,4/9/2016 8:30 +11590506,Mission and Values: a new podcast about remarkable startup cultures,http://missionandvalues.co/,5,1,bryanlanders,4/28/2016 17:27 +11993090,"See Python, See Python Go, Go Python Go",https://blog.heroku.com/archives/2016/6/2/see_python_see_python_go_go_python_go,2,1,cdnsteve,6/28/2016 12:19 +11498115,UC Davis spent thousands to scrub pepper-spray references from Internet,http://www.sacbee.com/news/local/article71659992.html,39,22,zdrummond,4/14/2016 16:32 +11177994,"Paul Armer, former director of Stanford Computation Center, dies at 91",http://news.stanford.edu/news/2016/february/paul-armer-obit-020816.html,2,1,ner0x652,2/25/2016 21:34 +11545053,Ask HN: Best single board computer for computer vision?,,3,7,jgotti92,4/21/2016 20:19 +12534177,Armory Enterprise Spinnaker Release v0.61,http://blog.armory.io/how-to-install-armory-spinnaker-release-v0-61/,4,1,danielodio,9/19/2016 19:51 +10944269,Make me pulse,http://2016.makemepulse.com/,2,1,PhilipA,1/21/2016 9:56 +10795304,Seattle shows San Francisco and New York how to fix the housing crisis,http://www.vox.com/2015/12/23/10657690/seattle-housing-crisis,8,3,sampo,12/26/2015 21:03 +12113363,"MWeb for Mac Pro Markdown writing, note taking and static blog generator App",http://www.mweb.im/,8,1,tvvocold,7/18/2016 5:28 +11944011,PayPal has demanded that we monitor data traffic as well as customers files,https://seafile.de/en/important-infos-about-app-seafile-de-and-licensing-purchases-through-our-web-shops/,1030,340,zolder,6/21/2016 7:16 +12531025,Ask HN: Should I give equity to early employees?,,1,2,a3b2,9/19/2016 12:54 +10279266,NewLisp,http://www.newlisp.org/index.cgi?Home,86,81,jsnathan,9/25/2015 16:57 +11941464,High IQ Countries Have Less Software Piracy,https://torrentfreak.com/high-iq-countries-have-less-software-piracy-research-finds-160619/,7,1,chewymouse,6/20/2016 20:51 +12285541,Motivational Incongruence and Well-Being at the Workplace,http://journal.frontiersin.org/article/10.3389/fpsyg.2016.01153/full,152,86,rjdevereux,8/14/2016 13:48 +10618212,Ask HN: Developer performance metrics?,,6,18,canterburry,11/23/2015 23:57 +11918202,Family of U.S. student killed in Paris attacks sues social media companies,http://www.reuters.com/article/us-france-shooting-usa-student-idUSKCN0Z22FG?feedType=RSS&feedName=topNews&utm_source=twitter&utm_medium=Social,3,1,roymurdock,6/16/2016 19:13 +12440219,Robot Macroeconomics: What can theory and economic history teach us?,https://bankunderground.co.uk/2016/09/06/robot-macroeconomics-what-can-theory-and-several-centuries-of-economic-history-teach-us/,44,33,jburgess777,9/7/2016 0:25 +10926639,Ask HN: Who moderates HN?,,1,1,chirau,1/18/2016 20:20 +11001109,Raspberry Pi Self Driving Car,http://www.therevista.com/raspberry-pi-self-driving-car/,4,1,yasuo,1/30/2016 8:28 +10460799,SkySafe tech to take over badly behaved drones,http://www.skysafe.io/,35,29,cambridgemike,10/27/2015 20:18 +11619191,Do you hate daily commute to Office/College?,https://www.linkedin.com/pulse/do-you-hate-daily-commute-office-varun-verma?trk=mp-author-card,4,2,varver,5/3/2016 9:59 +11162490,Researchers create super-efficient Wi-Fi,http://arstechnica.com/information-technology/2016/02/researchers-create-super-low-power-wi-fi/,101,13,pavornyoh,2/23/2016 21:28 +10932353,"10,36M Bitcoin moved on Sunday, 2nd highest value in the last 2 years",https://kaiko.com/statistics/outputs-volume?range=2y,3,2,arnauddri,1/19/2016 17:46 +11911486,"SpaceX misses landing on a drone ship, breaking the company's streak",http://mashable.com/2016/06/15/falcon-9-rocket-landing-failure/#LDR_56chrmqz,121,71,rezist808,6/15/2016 19:29 +10708199,Ask HN: Can chess be used for crypto communication?,,3,4,capex,12/10/2015 1:15 +12561427,77% of Ad Blocking Users Feel Guilty about Blocking Ads,http://www.huffingtonpost.com/entry/57e43749e4b05d3737be5784?timestamp=1474574566927,5,4,nreece,9/23/2016 0:18 +11698696,Beijing is Silicon Valley's only true competitor,http://www.recode.net/2016/5/13/11592570/china-startup-tech-economy-silicon-valley,157,151,z3t1,5/15/2016 0:20 +11781885,US hiker 'lost for 26 days before dying',http://www.bbc.co.uk/news/world-us-canada-36389383,28,46,sjcsjc,5/26/2016 21:39 +11682692,The 3 best ways to learn Angular 2,http://blog.debugme.eu/learn-angular2/,1,1,wrightandres,5/12/2016 11:44 +12244062,Google Maps is now rendered in 3D,"https://www.google.co.uk/maps/place/City+of+London,+London/@51.5311096,-0.0416171,1485a,20y,270h,41.28t/data=!3m1!1e3!4m5!3m4!1s0x487603554edf855f:0xa1185c8d19184c0!8m2!3d51.5123443!4d-0.0909852",4,2,pyb,8/7/2016 22:25 +11324446,China Has a $590B Problem with Unpaid Bills,http://www.bloomberg.com/news/articles/2016-03-20/china-has-a-590-billion-receivables-problem-as-bills-go-unpaid,5,3,tokenadult,3/20/2016 20:13 +11073037,The IGDB.com Top 100 Games (The IMDb of Gaming),https://www.igdb.com/top-100/games,5,2,RocketTalk,2/10/2016 14:45 +12018436,CTO and co-founder of Hyperloop One leaves amid reported tensions,http://arstechnica.com/business/2016/07/cto-and-co-founder-of-hyperloop-one-leaves-amid-reported-tensions/,3,1,pavornyoh,7/1/2016 18:17 +12349384,Types,https://gist.github.com/garybernhardt/122909856b570c5c457a6cd674795a9c?,445,192,ivank,8/24/2016 3:00 +12404234,Andreessen Horowitzs Returns Trail Venture-Capital Elite,http://www.wsj.com/articles/andreessen-horowitzs-returns-trail-venture-capital-elite-1472722381,115,68,forgingahead,9/1/2016 10:42 +11892653,Building SaaS startup from scratch,http://startupmyway.com/building-saas-startup-from-scratch/,4,3,boboss,6/13/2016 9:51 +10854920,Debugging Go Code with LLDB,http://ribrdb.github.io/lldb/,3,1,rgarcia,1/6/2016 23:57 +11083807,Gadgets to Play Laser Tag with Your Pet from Work Are Now a Thing (WSJ),http://www.wsj.com/articles/gadgets-for-playing-with-your-pet-remotely-1455223286,6,1,YaroslavAzhnyuk,2/11/2016 22:25 +11038281,GitHub is apparently in crisis again,http://www.businessinsider.com/github-identity-crisis-2016-2,162,149,walterbell,2/4/2016 23:59 +12393920,Thorough description of a negative experience interviewing at Palantir,https://www.reddit.com/r/cscareerquestions/comments/50csfd/long_rant_about_drawnout_negative_interview/,9,1,seibelj,8/30/2016 21:09 +12314181,Developer Devolution: Why I Stopped Using Vagrant,https://webdevstudios.com/2016/08/18/why-i-stopped-using-vagrant/,1,1,ingve,8/18/2016 16:56 +12314719,Amazon Mobile Redesign,https://www.dropbox.com/sh/wblhgjb1mvwsl4e/AACkB0ffaxaT9Ly6rI_tP6Gla?dl=0,4,2,gorkemyurt,8/18/2016 17:47 +10355047,Comparing Chinese provinces with countries (2011),http://www.economist.com/content/chinese_equivalents,23,9,abarrettjo,10/8/2015 18:43 +12103271,Higher-order organization of complex networks Science,http://science.sciencemag.org.ezp-prod1.hul.harvard.edu/content/353/6295/163,3,1,sinodin,7/15/2016 19:32 +10425290,"Female violinist exposes 10 years of lewd, fetishizing messages from men online",http://www.washingtonpost.com/news/morning-mix/wp/2015/10/21/a-woman-violinist-exposes-10-years-of-lewd-fetishizing-messages-from-men-online/?tid=sm_fb,96,55,jimsojim,10/21/2015 13:40 +11399525,Reddit's 2015 Transparency Report omits NSL canary present in 2014,https://www.reddit.com/r/announcements/comments/4cqyia/for_your_reading_pleasure_our_2015_transparency/d1knc88,25,2,endianswap,3/31/2016 18:44 +11486311,What it's like to build software used by 2M+ SEOs,http://www.link-assistant.com/news/seo-powersuite-story.html,5,1,maksimava,4/13/2016 7:06 +10209456,Concurrency kit Concurrency primitives and non-blocking data structures in C,http://concurrencykit.org/,143,19,misframer,9/12/2015 21:30 +10597685,Show HN: Learn to beat procrastination and get stuff done,http://www.howtobeatprocastination.com/,5,3,vsergiu,11/19/2015 21:09 +11317381,Dominos has built a self-driving robot for pizza delivery,http://www.digitaltrends.com/cool-tech/dominos-pizza-delivery-robot/?utm_content=buffer1a867&utm_medium=socialm&utm_source=facebook.com&utm_campaign=DT-FB,2,2,prostoalex,3/19/2016 4:56 +11283989,Show HN: A new image sharing service,https://itsosticky.com/,42,36,emily_b,3/14/2016 17:11 +12250006,Purely Functional Linux with NixOS [video],https://begriffs.com/posts/2016-08-08-intro-to-nixos.html?hn=1,169,142,begriffs,8/8/2016 18:52 +10328014,The Internet of Criminal Things,http://lwn.net/Articles/658198/,134,65,rvense,10/4/2015 16:49 +11245136,Ask HN: What are you paying less than $10/month for?,,3,5,mukgupta,3/8/2016 13:45 +12329655,NeuralStyler AI released -Turn your videos into art,http://neuralstyler.com/downloads.html,4,2,rupeshs,8/21/2016 6:11 +12307406,Kaggle Launches an Open Data Platform,http://blog.kaggle.com/2016/08/17/making-kaggle-the-home-of-open-data/,53,1,benhamner,8/17/2016 19:04 +11333036,Introduction to Literate Programming Using Org Mode,http://howardism.org/Technical/Emacs/literate-programming-tutorial.html,4,1,yarapavan,3/21/2016 23:23 +11327906,"Show HN: Info overload when trip planning is annoying, we made Your Local Cousin",https://www.yourlocalcousin.com,2,1,yourlocalcousin,3/21/2016 13:33 +12505126,The First Wearable Hydration Monitor,https://www.kickstarter.com/projects/lactate-threshold/lvl-the-first-wearable-hydration-monitor,1,2,Gys,9/15/2016 11:34 +10402480,"Amazon files suit against 1,000 Fiverr users over fake product reviews",http://www.geekwire.com/2015/after-conducting-undercover-sting-amazon-files-suit-against-1000-fiverr-users-over-fake-product-reviews/,8,3,ljk,10/16/2015 22:44 +11913026,First big containerships en route to the Panama Canal,http://theloadstar.co.uk/first-big-containerships-en-route-panama-canal-leaving-workhorse-vessels-bow/,86,45,protomyth,6/15/2016 23:55 +11137642,Optimizing website images using bandwidth,https://www.npmjs.com/package/jsbandwidth,1,1,ioulaum,2/19/2016 23:38 +10726109,Zbigniew Libera's Lego Concentration Camp,http://www.othervoices.org/2.1/feinstein/auschwitz.php,1,1,Tomte,12/13/2015 11:45 +12174503,Bringing ChakraCore to Linux and OS X,https://blogs.windows.com/msedgedev/2016/07/27/chakracore-on-linux-osx/,264,120,bevacqua,7/27/2016 17:01 +12461419,Student's Vaccine Cooler Wins UK James Dyson Award,http://www.bbc.co.uk/news/uk-england-leicestershire-37309443,26,2,CarolineW,9/9/2016 12:15 +10959490,Lomonosovs Discovery of Venus Atmosphere in 1761,http://arxiv.org/abs/1206.3489,40,4,lermontov,1/23/2016 18:56 +11304827,Do you really need this plugin?,https://kanbanwp.com/blog/do-you-really-need-this-plugin/,4,1,coreymaass,3/17/2016 15:14 +10792712,Trump Filter,http://trumpfilter.com/,2,1,sethbannon,12/25/2015 23:35 +12571046,"Isaac Asimov Asks, How Do People Get New Ideas? (1959)",https://www.technologyreview.com/s/531911/isaac-asimov-asks-how-do-people-get-new-ideas/,113,6,ohjeez,9/24/2016 14:26 +12112597,Make Excel One-Click Easy with AXbean QuikBots (now in Beta),http://www.axbean.com/store.html,1,1,axbean,7/18/2016 0:29 +11572173,Businesses pay DDoS extortionists who never DDoS anyone,http://arstechnica.com/security/2016/04/businesses-pay-100000-to-ddos-extortionists-who-never-ddos-anyone/,8,2,djug,4/26/2016 14:33 +11532869,How I hunted the most odd ruby bug,http://blog.arkency.com/2016/04/how-i-hunted-the-most-odd-ruby-bug/,7,1,calineczka,4/20/2016 7:47 +10289234,How social networks can create the illusion that something rare is common,http://www.technologyreview.com/view/538866/the-social-network-illusion-that-tricks-your-mind/,153,33,nostrademons,9/28/2015 7:07 +10247562,Ask HN: What is your take on the theory of disruption?,,3,1,bobosha,9/20/2015 14:13 +10511842,It's time to update the software update process,http://www.networkworld.com/article/3000809/software/its-time-to-update-the-software-update-process.html,26,23,walterbell,11/5/2015 5:50 +11141887,Scala's Option monad versus null-conditional operator in C#,http://www.codewithstyle.info/2016/02/scalas-option-monad-versus-null.html,87,50,miloszpp,2/20/2016 20:50 +11953946,Spotify is down for many users,,9,5,giiper,6/22/2016 14:01 +10811325,Show HN: Image-triangulation Delaunay and Voronoi from scratch,https://github.com/MauriceGit/Delaunay_Triangulation,63,21,EllipticCurve,12/30/2015 8:39 +11739638,Monument Valley in Numbers: Year 2,https://medium.com/@ustwogames/monument-valley-in-numbers-year-2-440cf5562fe#.phzgxwizd,252,116,Impossible,5/20/2016 17:17 +12141334,Nvidia CEO Reveals New TITAN X at Stanford Deep Learning Meetup,https://blogs.nvidia.com/blog/2016/07/21/titan-x/,140,148,bcaulfield,7/22/2016 2:19 +10838858,Twitter Invests in Connected Headphone Company,http://recode.net/2016/01/04/twitter-invests-in-muzik-a-high-end-headphone-startup/?utm_source=Daily+Must-Reads+from+MediaShift&utm_campaign=87be92293e-Daily_Must_Reads10_24_2011&utm_medium=email&utm_term=0_5371aa94a8-87be92293e-300005261,1,1,nichodges,1/4/2016 21:37 +11703877,Shamir's Secret Sharing,https://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing,66,15,simplect,5/16/2016 2:33 +11962618,Redesigning Shakespeare,https://blog.crew.co/manuja-waldia-interview/,11,1,fluxic,6/23/2016 17:08 +10418233,Theoretical Motivations for Deep Learning,http://rinuboney.github.io/2015/10/18/theoretical-motivations-deep-learning.html,93,11,rndn,10/20/2015 9:33 +10420876,Negative Impact of English on Math Learning,http://www.wsj.com/articles/the-best-language-for-math-1410304008,38,41,ghosh,10/20/2015 18:32 +10689080,Your New Medical Team: Algorithms and Physicians,http://www.nytimes.com/2015/12/08/upshot/your-new-medical-team-algorithms-and-physicians.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=stream&module=stream_unit&version=latest&contentPlacement=1&pgtype=sectionfront&_r=0,21,6,dnetesn,12/7/2015 12:47 +10303498,Insider: Oracle has lost interest in Java,http://www.infoworld.com/article/2987529/java/insider-oracle-lost-interest-in-java.html,49,16,scriptproof,9/30/2015 12:51 +11854256,Page Builder That Will Change WordPress Design,https://elementor.com/elementor-launch/,13,6,Murkin,6/7/2016 13:19 +10576667,Walmart's $10 smartphone isn't actually $10,"http://www.pcmag.com/article2/0,2817,2495179,00.asp",25,42,rfjedwards,11/16/2015 19:46 +12079671,Marp: Markdown Presentation Writer,https://yhatt.github.io/marp/,484,96,somecoder,7/12/2016 15:12 +11781891,Show HN: WebGL Minecraft-like scripting environment for teaching programming,http://webblocks.uk/,66,22,cjdell,5/26/2016 21:40 +12116464,The only way to revoke Spotify API tokens is to delete your account,https://olav.it/post/spotify-third-party-access/,140,40,oal,7/18/2016 17:14 +11290709,"Open Source is losing, SaaS is leading, APIs will win",https://medium.com/point-nine-news/open-source-is-losing-saas-is-leading-apis-will-win-663648d9c8d0#.ggwbx758l,4,4,decodingvc,3/15/2016 16:13 +11715993,Applications of NLP at Quora,https://engineering.quora.com/Applications-of-NLP-at-Quora?share=1,62,5,samber,5/17/2016 18:22 +10703936,Ask HN: Do you want a service which will alert you about an airfare drop?,,1,2,s-stude,12/9/2015 14:56 +10641229,The dissection of a simple hello world ELF file,https://github.com/mewrev/dissection,109,11,giuscri,11/28/2015 15:13 +11749620,GoAws AWS SQS/SNS Server for Development Testing,https://github.com/p4tin/GoAws,3,1,pafortin,5/22/2016 18:19 +11947092,Slowly Poisoned by Energy Drinks,http://yiddish.ninja/the-hidden-cost-of-energy-drinks-they-poisoned-me/,77,86,burgerguyg,6/21/2016 16:46 +11142462,Town Crier: An Authenticated Data Feed for Smart Contracts,https://eprint.iacr.org/2016/168,25,3,randombit,2/20/2016 23:23 +10612682,Successful Freenet attack results in arrest,https://www.reddit.com/r/Freenet/comments/3ti8c9/successful_freenet_attack_results_in_arrest/,7,2,faded_rights,11/23/2015 3:17 +12205881,Salesforce buys word processing app Quip for $750M,https://techcrunch.com/2016/08/01/salesforce-buys-word-processing-app-quip-for-750m/,2,1,johns,8/1/2016 20:56 +11268410,X11fs X window virtual filesystem,https://github.com/sdhand/x11fs,3,1,jfreax,3/11/2016 18:16 +10362100,Driverless Car Accident Reports Make Unhappy Reading for Humans,http://techcrunch.com/2015/10/09/dont-blame-the-robot-drivers/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29&utm_content=FaceBook&sr_share=facebook,2,3,svepuri,10/9/2015 18:01 +11645006,"There are copying, and there are shameless rip-offs",https://medium.com/@prabhaths/invoicely-a-hiveage-rip-off-b92fa411a2bb#.zbx1096o0,14,2,buddhika,5/6/2016 16:28 +10836681,TorBlocker Hall of Shame Part I,https://pad.okfn.org/p/noncloudflare-torblocks,3,2,dsr12,1/4/2016 17:00 +10947712,Bill Gates Expected to Create Billion-Dollar Fund for Clean Energy (2015),http://www.nytimes.com/2015/11/28/us/politics/bill-gates-expected-to-create-billion-dollar-fund-for-clean-energy.html,82,87,noobermin,1/21/2016 19:41 +11982006,"Show HN: My side project Laps Client, Project and Time management",http://app.getlaps.com,70,49,kristaps1990,6/26/2016 18:35 +10409444,Will 787 program ever show an overall profit? Analysts grow more skeptical,http://www.seattletimes.com/business/boeing-aerospace/will-787-program-ever-show-an-overall-profit-analysts-grow-more-skeptical/,53,57,jerven,10/18/2015 19:33 +10555791,Larry Wall's Perl 6 Release Talk [video],https://www.youtube.com/watch?v=kwxHXgiLsFE,133,67,biztos,11/12/2015 20:17 +10545266,"DNA Data from California Newborn Blood Samples Stored, Sold to 3rd Parties",http://sanfrancisco.cbslocal.com/2015/11/09/dna-data-from-california-newborn-blood-samples-stored-sold-to-3rd-parties/,4,1,buserror,11/11/2015 7:32 +11453567,Dear startups: Go niche or go home,https://medium.com/@basprass/dear-startups-go-niche-or-go-home-4aef1d6b527c,2,1,basprass,4/8/2016 9:43 +10357296,How Does Life for Working Parents in Finland Compare to Those in the U.S.?,http://www.fastcompany.com/3051689/second-shift/how-does-life-for-working-parents-in-finland-really-compare-to-the-us,6,5,hoag,10/9/2015 0:16 +12077364,Ask HN: How can I demonstrate value as an onshore developer?,,3,1,J-dawg,7/12/2016 7:31 +11890093,SETI The Next Ten Years,http://www.dailygalaxy.com/my_weblog/2016/06/-nasa-astrobiology-search-for-transmissions-from-advanced-civilizations-the-next-ten-years-weekend-f.html,46,7,elorant,6/12/2016 20:30 +10940509,"Ask HN: Founders, how do you keep up genuine networking with a family and startup?",,2,1,leandot,1/20/2016 19:09 +12264771,Outsourced IT probably hurt Delta Airlines when their power went out,http://www.cringely.com/2016/08/08/outsourced-probably-hurt-delta-airlines-power-went/,3,1,evo_9,8/10/2016 21:09 +12358060,Ask HN: What's the limits of planetary imaging?,,2,2,forgottenacc56,8/25/2016 10:49 +10994091,Bowie's Blackstar Artwork Open Repository,https://github.com/BubuAnabelas/BlackstarArtwork,2,1,bubuanabelas,1/29/2016 8:01 +10464326,Ask HN: Which pricing would you recommend? One-time payment or subscription?,,2,2,To_soo,10/28/2015 13:38 +12114371,SoftBank confirms $32B acquisition of chipmaker ARM to target Internet of Things,http://venturebeat.com/2016/07/18/softbank-confirms-32b-acquisition-of-u-k-based-chipmaker-arm-to-target-internet-of-things/,67,8,gagan2020,7/18/2016 11:15 +10658787,A letter to our daughter,https://www.facebook.com/notes/mark-zuckerberg/a-letter-to-our-daughter/10153375081581634,790,519,arasmussen,12/1/2015 21:10 +10891752,Airbnb plays San Francisco for a chump,http://www.sfexaminer.com/airbnb-plays-san-francisco-for-a-chump/,2,1,lladnar,1/13/2016 1:39 +10207708,IETF and IANA Officially Designate .onion as a Special Use Domain,,13,2,callum85,9/12/2015 9:55 +11297836,Using the Actor-Model Language Pony for FinTech,http://www.infoq.com/news/2016/03/pony-fintech,2,1,chhum,3/16/2016 15:00 +12325223,Genetically Modified Bacteria Conduct Electricity,http://spectrum.ieee.org/nanoclast/semiconductors/materials/genetically-modified-bacteria-conduct-electricity-ushering-in-new-era-of-green-electronics,29,5,gsmethells,8/20/2016 4:31 +11335518,Safety Check for Brussels,https://www.facebook.com/safetycheck/brusselsexplosions-march2016/,129,118,dinosaurs,3/22/2016 10:30 +10920219,The Web Is Dangerous: Phishing and Browser Extensions,https://ejj.io/the-web-is-dangerous-phishing-extensions/,25,3,ejcx,1/17/2016 17:58 +11340409,Life in full view: Etsy one year on from IPO,http://paulbennetts.co/life-in-full-view-etsy-one-year-on-from-ipo/,62,6,paulairtree,3/22/2016 22:21 +11809591,How Did L.A. Become a City of Palms?,https://www.kcet.org/shows/lost-la/how-did-la-become-a-city-of-palms-and-other-questions-about-californias-trees,48,12,ranvir,5/31/2016 19:48 +11689097,A serverless architecture with zero maintenance and infinite scalability,https://medium.com/teletext-io-blog/a-serverless-architecture-with-zero-maintenance-and-infinite-scalability-b00c2ceb4c2b#.751mbzmx6,7,1,neogenix,5/13/2016 7:18 +10679891,"Though climate change is a crisis, the population threat is even worse",http://www.theguardian.com/commentisfree/2015/dec/04/climate-change-population-crisis-paris-summit,5,2,clumsysmurf,12/4/2015 23:21 +11366942,Ubuntu 16.04 (Xenial Xerus) Beta 2,http://releases.ubuntu.com/16.04/,10,1,doener,3/26/2016 19:03 +11445457,Toughest Problem in Programming: How to Name Things,http://www.slideshare.net/pirhilton/how-to-name-things-the-hardest-problem-in-programming,4,1,derFunk,4/7/2016 7:42 +12260700,Ask HN: Is there a concept to icon mapping dictionary?,,5,2,scandox,8/10/2016 10:51 +11295889,Greach: Groovy Conference Madrid,http://greachconf.com/,2,1,miguelpais,3/16/2016 8:52 +12436838,Considering the correspondence between CEOs and shareholders as a literary genre,http://www.newyorker.com/magazine/2016/09/05/jeff-gramms-dear-chairman-boardroom-battles-and-the-rise-of-shareholder-activism,40,3,samclemens,9/6/2016 15:46 +10446571,"Cipherli.st Strong Ciphers for Apache, Nginx and Lighttpd",https://cipherli.st/,1,1,bikeshack,10/25/2015 10:43 +11917668,Gone Full Unikernel,https://deferpanic.com/blog/gone-full-unikernel/,179,92,deferpanic,6/16/2016 17:43 +10705054,"Angela Merkel, German Chancellor, Is Time 'Person of the Year'",http://www.bbc.co.uk/news/world-europe-35048796,4,2,darrhiggs,12/9/2015 17:19 +11517917,Why Quitting Your Job to Chase Your Dream Is a Terrible Idea,https://medium.com/@jeffgoins/why-quitting-your-job-to-chase-your-dream-is-a-terrible-idea-a3269e281eda#.k339e5ic8,2,1,simonebrunozzi,4/18/2016 5:42 +10747744,The man who made Edward Snowden inevitable,http://www.economist.com/news/christmas-specials/21683975-man-who-made-edward-snowden-inevitable-black-chamber,3,1,e15ctr0n,12/16/2015 22:10 +11869740,Research Exposes Flaw in Right to Be Forgotten,http://www.nytimes.com/interactive/2016/06/03/technology/document-google-right-be-forgotten-study.html,1,1,rajadigopula,6/9/2016 14:51 +11457083,"Chartd: responsive, retina-compatible charts with just an img tag",http://chartd.co/,67,16,ingve,4/8/2016 19:13 +10644084,Swedish court: 'We cannot ban Pirate Bay',http://www.thelocal.se/20151127/swedish-court-we-cannot-ban-pirate-bay,153,44,jamesblonde,11/29/2015 7:44 +10636988,Holographic technology adopted by Jaguar Land Rover,http://phys.org/news/2015-11-cambridge-holographic-technology-jaguar-rover.html,7,2,lelf,11/27/2015 12:30 +10425853,10 Hungarian Startups to Be Excited About at Web Summit Dublin 2015,http://blog.debugme.eu/startups-web-summit-dublin/,6,1,SLaszlo,10/21/2015 14:57 +10452868,Wendelstein 7-x stellarator puts new twist on nuclear fusion power,http://www.gizmag.com/wendelstein7x-fusion-stellarator-plasma-tests/40014/,4,3,ScottBurson,10/26/2015 17:30 +12164586,From 0 to 1M to?,https://medium.com/@adrienroose/from-0-to-1-000-000-to-ecb4e2f863c7#.66gmlwq5e,2,1,manuelflara,7/26/2016 10:28 +11407863,Aphasia robs people of their language skills while leaving their minds intact,http://www.theatlantic.com/science/archive/2016/04/lost-for-words/476208/?single_page=true,41,19,sergeant3,4/1/2016 19:35 +12388962,Ask HN: How did you launch your product?,,23,15,palakz,8/30/2016 11:08 +10963809,Henry Baker's Archive of Research Papers,http://www.pipeline.com/~hbaker1/,62,2,geocar,1/24/2016 20:09 +12197744,Snowden and WikiLeaks clash over leaked Democratic Party emails,https://www.washingtonpost.com/news/the-switch/wp/2016/07/28/a-twitter-spat-breaks-out-between-snowden-and-wikileaks/,40,67,tooba,7/31/2016 17:05 +11900599,The Quest to Make Code Work Like Biology Just Took a Big Step,http://www.wired.com/2016/06/chef-just-took-big-step-quest-make-code-work-like-biology/,8,1,edward,6/14/2016 8:27 +12464883,Facebook to reinstate censored image of napalm girl,http://www.independent.co.uk/life-style/gadgets-and-tech/news/facebook-to-reinstate-censored-image-of-napalm-girl-after-mark-zuckerberg-accused-of-abusing-power-a7235021.html,59,56,pimienta,9/9/2016 18:34 +11256363,"Valley VCs Sit on Cash, Forcing Startups to Dial Back Ambition",http://www.bloomberg.com/news/articles/2016-03-09/more-venture-investors-are-sitting-on-the-sidelines,144,123,digisth,3/9/2016 23:14 +11544686,Google I/O 2016,https://events.google.com/io2016/,161,72,emirozer,4/21/2016 19:20 +11628023,Swisscom Hits 1GBps Mobile Data Transfer in European First,http://www.mobileeurope.co.uk/press-wire/swisscom-hits-1gbps-in-european-first,3,1,Osiris30,5/4/2016 13:09 +10443377,Show HN: Your bracelet is your datahub,http://prettio.net/index.php,2,7,AccJasson,10/24/2015 12:22 +11816087,Love in 56kbps,http://www.kerningcultures.com/episodes/love-in-56kb,5,1,amplified,6/1/2016 17:03 +12319074,Cloud with Me,https://cloudwith.me/,2,1,giadaCWM,8/19/2016 10:29 +11275925,I made my own clear plastic tooth aligners and they worked,http://amosdudley.com/weblog/Ortho,943,133,dezork,3/13/2016 2:50 +12154484,How learning Smalltalk can make you a better developer,http://techbeacon.com/how-learning-smalltalk-can-make-you-better-developer,115,70,horrido,7/24/2016 19:35 +10183750,The Visual 6502,http://www.visual6502.org/JSSim/index.html,87,15,sebkomianos,9/8/2015 1:09 +11954850,Passenger drones are hovering over the horizon,http://www.economist.com/news/science-and-technology/21701080-personal-robotic-aircraft-are-cheaper-and-safer-helicopterand-much-easier,56,82,martincmartin,6/22/2016 15:54 +10424850,BMW i8 in WebGL,http://car.playcanvas.com,479,135,antouank,10/21/2015 11:59 +11925621,A game suitable to training a neural network?,,1,1,StrawberrySeed,6/17/2016 21:17 +10499272,Facebook Messenger Assistant Powered by Humans,http://recode.net/2015/11/03/facebooks-virtual-assistant-m-is-super-smart-its-also-probably-a-human/,63,13,chris-at,11/3/2015 13:11 +11595011,Full Interview: CloudFlare's CEO on TOR and Politics,http://www.marketplace.org/2016/04/28/world/full-interview-cloudflare-ceo-tor-politics,1,1,jgrahamc,4/29/2016 11:40 +10304411,Creating a Unix Application Using the Win32 API (1998),http://www.linux.cz/pipermail/linux/1999-September/051669.html,42,39,thwarted,9/30/2015 14:56 +10737131,Fossil SCM keeps more than just your code,https://blog.kotur.org/posts/fossil-keeps-more-than-just-your-code.html,73,90,kotnik,12/15/2015 11:18 +10904352,What3Words three words identify each location on Earth,https://map.what3words.com/,1,1,erehweb,1/14/2016 20:47 +11056982,How We Monitor and Run Elasticsearch at Scale,https://signalfx.com/how-we-monitor-and-run-elasticsearch-at-scale/,42,2,kiyanwang,2/8/2016 8:33 +12185525,Ask HN: How do you market your software startup/app?,,12,9,palerdot,7/29/2016 8:01 +11887787,"Two Years Later, Russian Submarine Requalified as Swedish Object",http://sverigesradio.se/sida/artikel.aspx?programid=83&artikel=6451214,2,1,rodionos,6/12/2016 12:28 +11766063,Autoencoding Blade Runner: reconstructing films with artificial neural networks,https://medium.com/@Terrybroad/autoencoding-blade-runner-88941213abbe,119,37,arto,5/24/2016 22:31 +10478304,Programmer Tim Clemans Resigns from Seattle Police Department After Six Months,http://www.thestranger.com/blogs/slog/2015/10/29/23084403/programmer-tim-clemans-resigns-from-police-department-over-turf-battle,121,100,nicpottier,10/30/2015 15:15 +11009147,"Elixir obsoletes Ruby, Erlang and Clojure in one go",https://medium.com/@qertoip/elixir-obsoletes-ruby-erlang-and-clojure-in-one-go-605329b7b9b4,24,17,qertoip,2/1/2016 1:51 +10991500,"Ask HN: Configuration Management in 2016, how are you doing it?",,2,3,aprdm,1/28/2016 21:27 +10576230,Could playing a dolphin in a video game help stroke patients recover?,http://www.statnews.com/2015/11/13/after-a-stroke-reteaching-the-brain-by-gaming/,1,1,quotha,11/16/2015 18:48 +10414850,Crowdfunding and Lasers Make Possible the Worlds Thinnest Folding Knife,https://www.kickstarter.com/projects/1185529597/wildcard,1,1,zootilitytools,10/19/2015 19:00 +12358563,Ask HN: Learn another programming language,,3,2,aaossa,8/25/2016 12:47 +12328885,I Botched a Perl 6 Release,http://perl6.party/post/I-Botched-A-Perl-6-Release-And-Now-A-Robot-Is-Taking-My-Job,121,54,zoffix222,8/21/2016 0:16 +11424514,Ask HN: What's hot on machine learning today?,,6,7,aaossa,4/4/2016 19:12 +11623996,Dream Machine: The mind-expanding world of quantum computing (2011),http://www.newyorker.com/magazine/2011/05/02/dream-machine,30,10,Hooke,5/3/2016 20:33 +11103343,"Open Compute Project's Telco Project Could Transform the IoT, Driverless Cars",http://www.networkworld.com/article/3033093/internet/how-the-open-compute-projects-telco-project-could-transform-the-iot-driverless-cars.html,1,1,stevep2007,2/15/2016 13:49 +12182041,Apple Hires BlackBerry Talent with Car Project Turning to Self-Driving Software,http://www.bloomberg.com/news/articles/2016-07-28/apple-taps-blackberry-talent-as-car-project-takes-software-turn,30,15,greglindahl,7/28/2016 18:20 +12194777,Googles quantum computer just simulated a molecule for the first time,http://www.sciencealert.com/google-s-quantum-computer-is-helping-us-understand-quantum-physics?utm_source=Facebook&utm_medium=Branded+Content&utm_campaign=ScienceDump,2,1,prateekj,7/30/2016 21:32 +10451466,The Death of Paper,https://medium.com/@stevewaterhouse/the-death-of-paper-7a61c752fed0#.vzy2jt64v,1,1,morisy,10/26/2015 14:04 +10542023,Twitter Sees 6% Increase in Like Activity After First Week of Hearts,http://techcrunch.com/2015/11/10/twitter-sees-6-increase-in-like-activity-after-first-week-of-hearts/,215,138,zhuxuefeng1994,11/10/2015 20:00 +11712586,POP/IMAP/SMTP/Caldav/Carddav/LDAP Exchange Gateway,http://davmail.sourceforge.net/,29,21,vincent_s,5/17/2016 11:11 +11162396,Visualizing 1M flight routes with CartoDB,http://matall.in/posts/deep-insights-visualizing-1m-flight-routes/,8,1,matallo,2/23/2016 21:16 +11672616,Are medical errors really the third most common cause of death in the U.S.?,https://www.sciencebasedmedicine.org/are-medical-errors-really-the-third-most-common-cause-of-death-in-the-u-s/,1,1,tokenadult,5/11/2016 4:14 +10581195,Benchmarking Cloud Provider Performance,http://www.acmebenchmarking.com/2015/11/benchmarking-cloud-provider-performance.html,26,2,jhugg,11/17/2015 14:24 +11863079,Thinking Machine 6: Play chess against a transparent intelligence,http://bewitched.com/chess/,61,22,gwulf,6/8/2016 15:54 +11238906,London Vue.js #2 (Live Q&A with Evan You and Vue: Simple and Great),http://www.meetup.com/London-Vue-js-Meetup/events/229339325/,4,1,blake_newman,3/7/2016 14:11 +12132775,Israeli startups raise a record $1.7B in last quarter,http://www.newsweek.com/israeli-start-ups-raise-record-17-billion-last-quarter-480377,3,1,JSeymourATL,7/20/2016 21:44 +11523061,Cognitive function decreases in over-40s working more than 25 hours per week [pdf],https://www.melbourneinstitute.com/downloads/working_paper_series/wp2016n07.pdf,2,1,darrhiggs,4/18/2016 20:51 +11651250,Ask HN: Student loan for international students?,,1,2,rustymirror,5/7/2016 20:34 +12384582,Ask HN: Where do you get your news from?,,1,2,ajsbae,8/29/2016 19:33 +11533207,Open-Source Recycling,http://preciousplastic.com/,174,40,pelim,4/20/2016 9:40 +10817779,A boilerplate of JavaScript things that mostly shouldn't exist,https://github.com/tj/frontend-boilerplate,3,1,brakmic,12/31/2015 14:59 +10714990,"He Blew the Whistle at JPMorgan Chase, Then Came the Blowback",http://www.nytimes.com/2015/12/11/business/he-blew-the-whistle-at-jpmorgan-chase-then-came-the-blowback.html,173,50,phonon,12/11/2015 1:41 +11552924,Ask HN: How Did My ISP MITM a TLS Connection to the Pirate Bay?,,19,4,tls-intercepted,4/22/2016 22:18 +10192105,New Discoveries Could Explain What Happened to the Lost Colony of Roanoke,http://gizmodo.com/new-discoveries-could-explain-what-happened-to-the-lost-1728576170,59,1,hunglee2,9/9/2015 15:42 +11008076,A Plague of Helicopters In New York,http://www.nytimes.com/2016/01/31/opinion/sunday/a-plague-of-helicopters-is-ruining-new-york.html?smid=fb-nytopinion&smtyp=cur,45,65,prostoalex,1/31/2016 21:08 +11468603,Performance Culture,http://joeduffyblog.com/2016/04/10/performance-culture/,122,29,panic,4/10/2016 22:58 +10183352,Reverse-Engineering iOS Apps: Hacking on Lyft,https://realm.io/news/conrad-kramer-reverse-engineering-ios-apps-lyft/,171,16,timanglade,9/7/2015 22:39 +11932529,The reader count for Reddit's /r/news/ recovers,http://www.penzba.co.uk/images/RedditNewsReaderCount.png,1,1,CarolineW,6/19/2016 10:55 +11891894,Safe C++ Subset Is Vapourware,http://robert.ocallahan.org/2016/06/safe-c-subset-is-vapourware.html,159,116,ndesaulniers,6/13/2016 5:35 +10240397,Runtime.js??JavaScript library OS,https://medium.com/@iefserge/runtime-js-javascript-library-os-823ada1cc3c,116,18,shayief,9/18/2015 17:08 +10679813,Bridge the Digital Divide: Dont Forget the Other Billion People,http://readwrite.com/2015/12/04/digital-divide-project-loon-internet-org,2,1,litnerdy,12/4/2015 23:04 +11206341,"Show HN: Keypirinha, a new semantic launcher for keyboard ninjas",http://keypirinha.com,9,16,polyvertex,3/1/2016 21:45 +10196139,Unix Pipes as IO Monads (2001),http://okmij.org/ftp/Computation/monadic-shell.html,46,1,ayberkt,9/10/2015 4:25 +10579526,Ask HN: Tor accessibility for throwaways?,,5,6,fabulist,11/17/2015 6:42 +10676079,Single purspose app or Multi purpose app?,,2,1,chintan39,12/4/2015 13:10 +12262554,Silk joins Palantir,http://blog.silk.co/post/148741934972/silk-joins-palantir,12,1,munchor,8/10/2016 15:40 +11339200,Our Water System: What a Waste,http://www.nytimes.com/2016/03/22/opinion/our-water-systemwhat-a-waste.html,2,1,kdazzle,3/22/2016 19:17 +11193727,The Life Project: British cohort study turns 70,http://www.theguardian.com/books/2016/feb/27/the-life-project-what-makes-some-people-happy-healthy-successful-and-others-not,126,18,bootload,2/29/2016 5:21 +10754259,AI for the home,https://www.youtube.com/watch?v=q1o-7xDvxkg&feature=youtu.be,1,1,alexcaps,12/17/2015 20:26 +10916375,"Research backs human role in extinction of mammoths, other mammals",http://phys.org/news/2015-10-human-role-extinction-mammoths-mammals.html,47,9,wellokthen,1/16/2016 19:11 +12569930,Dripcap Packet Analyzer,https://github.com/dripcap/dripcap,38,13,n_yuichi,9/24/2016 7:45 +10929476,Why I Left Gulp and Grunt for Npm Scripts,https://medium.com/@housecor/why-i-left-gulp-and-grunt-for-npm-scripts-3d6853dd22b8,73,63,codeaddslife,1/19/2016 9:08 +10491747,"In 1972, Scientists Discovered a Two Billion-Year-Old Nuclear Reactor In Gabon",http://www.iafrikan.com/2015/11/02/did-you-hear-about-how-scientists-discovered-a-two-billion-year-old-nuclear-reactor-in-west-africa/,163,38,tefo-mohapi,11/2/2015 13:45 +11636133,10 times faster with 50 nodes: Querying Presto+AWS: 44secs. Presto+GCP: 4secs,http://tech.marksblogg.com/50-node-presto-cluster-dataproc.html,8,1,fhoffa,5/5/2016 14:00 +10204766,Ad Blocking Will Keep Growing Until We Make Ads Better,http://adexchanger.com/data-driven-thinking/ad-blocking-will-keep-growing-until-we-make-ads-better-2/,9,5,cpeterso,9/11/2015 16:56 +12053400,Uber raises $1.15B leveraged loan,http://reuters.com/article/idUSKCN0ZO020,2,2,leothekim,7/8/2016 3:20 +12372299,The Outliner for the Rest of us,http://outlineedit.com,2,1,robinschnaidt,8/27/2016 13:42 +12025459,Bpkg: package manager for bash,http://www.bpkg.io/,68,32,aserafini,7/3/2016 10:05 +10180493,A General Theory of Reactivity,https://github.com/kriskowal/gtor/,27,2,dmmalam,9/7/2015 7:57 +10182849,FIPS PUB 202: SHA-3 Standard is now out [pdf],http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf,11,1,todd8,9/7/2015 20:11 +10662818,E-mails reveal concerns about Theranoss FDA compliance date back years,https://www.washingtonpost.com/news/wonk/wp/2015/12/02/internal-emails-reveal-concerns-about-theranoss-fda-compliance-date-back-years/,10,1,epistasis,12/2/2015 13:36 +11709247,A Whirlwind Tutorial on Creating Really Teensy ELF Executables for Linux (2005),http://www.muppetlabs.com/~breadbox/software/tiny/teensy.html,74,5,d0mine,5/16/2016 20:15 +10865748,Why I'm joining the Dart Team,https://medium.com/@filiph/why-i-m-joining-the-dart-team-of-all-places-d0b9f83a3b66#.oldcuv47e,157,131,wstrange,1/8/2016 15:58 +12304158,Julian Assange Sees 'Incredible Double Standard' in Clinton Email Case,http://www.npr.org/2016/08/17/489386392/julian-assange-sees-incredible-double-standard-in-clinton-email-case,4,1,samsolomon,8/17/2016 12:34 +10781291,"Since I was 8 Years Old, I wanted to Be a Hacker",http://stemmatch.net/blog/2015/december/22/so-you-want-to-be-a-hacker-the-perception-vs-reality/,5,2,Oxydepth,12/23/2015 0:27 +10384432,Announcing HipChat Connect beta Chat will never be the same again,https://developer.atlassian.com/blog/2015/10/announcing-hipchat-connect/,39,2,Myrannas,10/14/2015 0:53 +10855429,I'm Not Dead Yet: The nineteenth-century obsession with premature burial,http://www.theparisreview.org/blog/2016/01/06/im-not-dead-yet/,40,2,pepys,1/7/2016 1:52 +11507701,What to do with the rm -rf hoax question,https://meta.serverfault.com/questions/8696/what-to-do-with-the-rm-rf-hoax-question,13,1,sp332,4/15/2016 21:20 +11724763,Google supercharges machine learning tasks with TPU custom chip,https://cloudplatform.googleblog.com/2016/05/Google-supercharges-machine-learning-tasks-with-custom-chip.html,823,276,hurrycane,5/18/2016 19:01 +11327925,"Google Self-Driving Car Will Be Ready Soon for Some, in Decades for Others",http://spectrum.ieee.org/cars-that-think/transportation/self-driving/google-selfdriving-car-will-be-ready-soon-for-some-in-decades-for-others,4,1,mathattack,3/21/2016 13:35 +10823739,Install Win32 OpenSSH test release,https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH,49,45,mikemaccana,1/1/2016 22:16 +12160968,4th RISC-V Workshop Proceedings,https://riscv.org/2016/07/4th-risc-v-workshop-proceedings/,16,2,vanjoe,7/25/2016 19:30 +11067376,"Yo, This Is Cool Show Love to Open Source Projects",https://yothisis.cool/,3,1,alpacaaa,2/9/2016 18:16 +11845015,Ask HN: What are some ways to work with large amounts of data quickly?,,5,8,nstart,6/6/2016 6:25 +10720343,Why Programming Languages Are Broken and How We Can Fix Them,https://www.facebook.com/g.hatsevich/posts/742023955927813,1,2,g_hatsevich,12/11/2015 21:51 +10583653,Stop Comparing JSON and XML,http://www.yegor256.com/2015/11/16/json-vs-xml.html?2015-46,10,6,yegor256a,11/17/2015 20:15 +10938473,Bjarne Stroustrup (creator of C++) doing an AMA in /r/Denmark,https://www.reddit.com/r/Denmark/comments/41ud0w/jeg_er_bjarne_stroustrup_datalog_designer_af_c/,5,1,vive-la-liberte,1/20/2016 14:59 +12036654,What kind of music genre is that?,,1,1,passionXV,7/5/2016 14:31 +11118994,The Matrix Plot That Should Have Been,https://medium.com/@marknutter/the-matrix-plot-that-should-have-been-54bcddc60e2b#.wrkz6pnjm,2,1,marknutter,2/17/2016 16:33 +12195470,Reverse Engineering Native Apps by Intercepting Network Traffic,http://nickfishman.com/post/50557873036/reverse-engineering-native-apps-by-intercepting-network,188,70,andrewrice,7/31/2016 2:34 +12201270,Show HN: Navigate text files in a browser and Node.js,https://github.com/anpur/line-navigator,4,2,anpur,8/1/2016 10:19 +10572077,Facebook and the Media Have an Increasingly Landlord-Tenant Style Relationship,http://fortune.com/2015/11/09/facebook-media/,82,32,e15ctr0n,11/16/2015 1:15 +11675979,How Linux Kernel Development Impacts Security,http://www.eweek.com/security/how-linux-kernel-development-impacts-security.html,5,2,CrankyBear,5/11/2016 15:05 +12496402,Ready-made templates to build apps without code on Bubble,https://bubblestore.io/?utm_source=hn,11,2,gerfficiency,9/14/2016 13:03 +10361001,Most Recruiters Don't Care About Your Cover Letter,http://blog.startupcvs.com/2015/10/09/most-recruiters-dont-care-about-your-cover-letter/?utm_source=hackernews&utm_medium=social&utm_campaign=coverletter09102015,7,2,togeekornot,10/9/2015 16:08 +11785952,Is the End Near for Unlicensed Remixes and Cover Songs?,https://medium.com/@6StringMerc/is-the-end-near-for-unlicensed-remixes-and-song-covers-6b08a71afb34#.98cikitet,35,24,6stringmerc,5/27/2016 13:43 +10931750,India's telecom regulator cracks down on Facebook for its Free Basics campaign [pdf],http://trai.gov.in/WriteReadData/Miscelleneus/Document/201601190319214139629TRAI_letter_to_FB_dated_18_01_2016.pdf,379,102,spothuga,1/19/2016 16:30 +12213470,"PGP Key of Mahmood Khadeer, Pres. Of Muslim Association of Puget Sound, Factored",http://qntra.net/2016/08/phuctor-finds-seven-keys-produced-with-null-rng-and-other-curiosities,14,7,asciilifeform,8/2/2016 21:13 +11208463,Fitt's Law,https://en.wikipedia.org/wiki/Fitts%27s_law,70,43,nitin_flanker,3/2/2016 6:51 +11789920,Startups Cant Manufacture Like Apple Does (2014),https://blog.bolt.io/no-you-cant-manufacture-that-like-apple-does-93bea02a3bbf,341,81,bootload,5/27/2016 23:55 +10496852,Announcing delivery robots from Starship Technologies,http://ideas.4brad.com/announcing-delivery-robots-starship-technologies-yours-truly,3,1,mblakele,11/3/2015 1:55 +11595967,Why you shouldn't exercise to lose weight,http://www.vox.com/2016/4/28/11518804/weight-loss-exercise-myth-burn-calories?utm_source=pocket&utm_medium=email&utm_campaign=pockethits,280,279,DiabloD3,4/29/2016 14:35 +12176686,PHP framework Laravel selects Vue.js as default JavaScript framework,http://react-etc.net/entry/php-framework-laravel-selects-vue-js-as-default-javascript-framework,13,3,velmu,7/27/2016 21:35 +10426802,Microsoft is cancelling some SurfaceBook Preorders,https://www.reddit.com/r/Surface/comments/3pcc7n/microsoft_store_cancelling_preorders/,2,2,reboog711,10/21/2015 17:08 +11410212,Promising lab-grown skin sprouts hair and grows glands in mice,http://www.bbc.com/news/science-environment-35946611,12,2,MichalSikora,4/2/2016 4:28 +10765634,GTD sucks for creative work. Heres an alternative system,http://heydave.org/post/24286720323/gtd-sucks-for-creative-work-heres-an-alternative,156,79,pmoriarty,12/20/2015 1:16 +10442641,Running a modern infrastructure stack,https://blog.barricade.io/running-a-modern-infrastructure-stack/,110,23,samber,10/24/2015 6:05 +10349846,Ask HN: How to find a job in the bay area quickly?,,16,7,bonobo3000,10/7/2015 23:21 +10984807,"Chicago Police Hid Mics, Destroyed Dashcams to Block Audio, Records Show",https://www.dnainfo.com/chicago/20160127/archer-heights/whats-behind-no-sound-syndrome-on-chicago-police-dashcams,683,345,danso,1/28/2016 0:28 +12467506,An Infinitely Large Napkin [pdf],https://usamo.files.wordpress.com/2016/07/napkin-2016-07-19.pdf,18,3,kercker,9/10/2016 3:17 +11227594,Elixir and Ruby Comparison,http://elixir-examples.github.io/examples/elixir-and-ruby-comparison,2,4,bjfish,3/4/2016 23:37 +12576813,Show HN: Learn Japanese Vocab via multiple choice questions,http://japanese.vul.io/,1,1,soulchild37,9/25/2016 19:06 +11798821,Ask HN: Have any of you switched to Bash on Windows?,,70,65,ywecur,5/29/2016 23:54 +11949309,I Am Good at My Job and I Am a Woman in Tech,https://medium.com/code-like-a-girl/i-am-good-at-my-job-6bf3a792c549#.wot4ieyeh,3,1,DinahDavis,6/21/2016 20:52 +11794262,Delta built the more efficient TSA checkpoints that the TSA couldn't,http://www.theverge.com/2016/5/26/11793238/delta-tsa-checkpoint-innovation-lane-atlanta,11,3,yoo1I,5/29/2016 0:44 +10952981,How I got shit done in 25% less time by using Time Blocking,http://blog.focusplanner.co/2016/01/15/how-i-got-sht-done-in-25-less-time-by-using-time-blocking/,14,1,vsergiu,1/22/2016 14:51 +12167719,The Fonts of Star Trek,https://www.fontshop.com/content/the-typography-of-star-trek,20,2,aristoteles,7/26/2016 18:25 +11488974,ReDex as a docker container,https://github.com/yongjhih/docker-redex,11,5,yongjhih,4/13/2016 15:26 +10768246,Terrafugia's flying car model has been approved for tests in US airspace,http://www.sciencealert.com/terrafugia-s-flying-car-has-just-been-given-approval-to-run-in-air-tests,37,28,prostoalex,12/20/2015 20:47 +10964733,Go-Restructure: Sane regular expressions with struct fields,https://github.com/alexflint/go-restructure,95,44,jdoliner,1/25/2016 0:10 +10239156,npm@3 Exits Beta,https://github.com/npm/npm/releases/tag/v3.3.4,3,1,btmills,9/18/2015 13:49 +11479855,Hotel: local .dev domains for everyone,https://github.com/typicode/hotel,4,7,uptown,4/12/2016 14:29 +12318042,The area of sphere [gif],http://matematicascercanas.com/wp-content/uploads/2016/07/VarC3A1zsceruza.gif,3,1,diego898,8/19/2016 4:59 +12076358,How We Replaced React with Phoenix,https://robots.thoughtbot.com/how-we-replaced-react-with-phoenix,17,2,tortilla,7/12/2016 2:34 +10704630,"Author create and publish documents to the web, instantly",http://authorapp.co/,2,1,jurajivan,12/9/2015 16:29 +11223074,I'm still in love with Flash,http://nodejs2-appmars.rhcloud.com/?flsh,5,2,optikals,3/4/2016 11:21 +11931977,"Ask HN: Can't come up with a good startup idea, shall I just get a job?",,8,10,nnd,6/19/2016 6:03 +11304752,Unmasking Startup L. Jackson,http://www.bloomberg.com/news/articles/2016-03-17/unmasking-startup-l-jackson-silicon-valley-s-favorite-twitter-persona,357,87,jackgavigan,3/17/2016 15:00 +12480033,Samsung may remotely kill all unreturned Galaxy Note 7's,http://thenextweb.com/gadgets/2016/09/12/remotely-kill-galaxy-note-7/,37,21,lisper,9/12/2016 14:40 +11438232,Presentation2.0 Quickly prepare and present presentation,https://github.com/deepsadhi/presentation2.0,2,2,deepsadhi,4/6/2016 12:19 +10217629,Why the happiest cities are boring,http://www.ft.com/cms/s/2/1b915f0e-517b-11e5-b029-b9d50a74fd14.html,6,1,jeo1234,9/14/2015 21:32 +11747370,"The future of gaming consoles: a variety of models, prices and levels of power",,1,1,hoodoof,5/22/2016 4:29 +12165720,The Future of the Past: Modernizing the New York Times Archive,http://open.blogs.nytimes.com/2016/07/26/the-future-of-the-past-modernizing-the-new-york-times-archive/,15,3,tysone,7/26/2016 14:13 +11523769,How Elon Musk Built His Empire Infographic,http://www.visualcapitalist.com/how-elon-musk-built-his-empire/,7,3,paulsutter,4/18/2016 23:13 +12352619,Show HN: Kotive build and run taskflows,http://www.kotive.com,1,1,redzer,8/24/2016 15:14 +12433866,The best and worst countries in the world for making friends,http://indy100.independent.co.uk/article/the-best-and-worst-countries-in-the-world-for-making-friends--WkbWdgjoXdZ,2,2,imartin2k,9/6/2016 5:51 +11561144,You Can Do Research Too,http://www.bailis.org/blog/you-can-do-research-too/,27,2,ingve,4/24/2016 20:09 +10372969,Reactiflux Slack community shuttering,https://github.com/reactiflux/volunteers/issues/17#issuecomment-147300333,3,1,foxhedgehog,10/12/2015 7:08 +11484770,Show HN: Min web browser with better search and built-in ad blocking,https://palmeral.github.io/min/,151,91,minbrowser,4/13/2016 0:30 +10343055,Technological dark matter,http://scraps.benkuhn.net/2015/09/02/darkmatter.html,43,3,vezzy-fnord,10/6/2015 23:06 +10458975,"Please Do Not Steal My Code, Mock My Analysis, and Present My Ideas as Your Own",http://minimaxir.com/2015/10/code-steal/,257,138,minimaxir,10/27/2015 16:15 +10976898,Understanding Machine Learning: From Theory to Algorithms [pdf],http://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning/understanding-machine-learning-theory-algorithms.pdf,23,6,mindcrime,1/26/2016 22:56 +10799562,Startup Failure by Industry,http://www.statisticbrain.com/startup-failure-by-industry,55,20,billconan,12/28/2015 2:33 +10400676,Alien megastructure could explain mysterious new Kepler results,http://www.theguardian.com/science/across-the-universe/2015/oct/16/alien-megastructure-could-explain-mysterious-new-kepler-results,3,2,cryoshon,10/16/2015 17:12 +11098269,"React, Automatic Redux Providers, and Replicators",https://medium.com/@timbur/react-automatic-redux-providers-and-replicators-c4e35a39f1,5,4,tfb,2/14/2016 13:57 +12228386,If the Olympics Were Held in Space: Dispatch from the Future of Extreme Sports,http://nautil.us/issue/39/sport/if-the-olympics-were-held-in-space,2,1,dnetesn,8/4/2016 20:51 +10431955,Show HN: A community turns RSS into GIFs,http://NewsGIF.com/install,6,1,stagename,10/22/2015 13:10 +11443685,Ask HN: Bay Area Hack Nights?,,1,2,horsecaptin,4/7/2016 0:43 +11739965,Python 3 support in scientific Python projects,https://python3statement.github.io/,5,1,davidism,5/20/2016 17:54 +11016781,Ask HN: Why the hell can't you return my email?,,8,14,flippyhead,2/2/2016 0:20 +11101878,Ask HN: Your thoughts about online developer recruitment tools like HackerRank?,,52,50,ninadmhatre,2/15/2016 6:53 +10441414,Ask HN: What do you want to see on your browser's new tab page?,,3,2,newtabpage,10/23/2015 21:32 +11041566,Pre-Eminent VC Forward Partners Is Hiring a Senior Developer,https://forward-partners.workable.com/j/73E3782BC4,1,2,ForwardChris,2/5/2016 14:27 +11036462,How to spend $100K in your 1st year as a startup,https://www.linkedin.com/pulse/how-spend-100k-your-1st-year-startup-kyriakos-kokkoris-phd,3,2,kyrikokkoris,2/4/2016 19:23 +11882280,Why an F1 car is more energy efficient than an electric car,http://www.espn.in/f1/story/_/id/15152695/why-f1-car-more-energy-efficient-electric-car,31,45,Osiris30,6/11/2016 5:50 +12237513,We know what you're doing,http://www.weknowwhatyouredoing.xyz/,2,1,chaosmachine,8/6/2016 8:30 +10419916,New Top Level Domain: .cern,http://home.cern/,3,3,espinchi,10/20/2015 15:50 +11279129,TextBlade,https://waytools.com/,21,7,xiaq,3/13/2016 20:05 +10889971,Ask HN: Online learning,,8,4,tmaly,1/12/2016 20:07 +10794571,Live Streaming Paper Airplane,https://www.kickstarter.com/projects/393053146/powerup-fpv-live-streaming-paper-airplane-drone,11,5,shacharz,12/26/2015 17:18 +10472427,Ask HN: With the following experience what could I be making?,,1,1,xdinomode,10/29/2015 16:50 +12167356,Survey Suggests a Public Wariness of Enhanced Humans,http://www.nytimes.com/2016/07/27/upshot/building-a-better-human-with-science-the-public-says-no-thanks.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=stream&module=stream_unit&version=latest&contentPlacement=1&pgtype=sectionfront,29,51,dnetesn,7/26/2016 17:39 +10738347,The Product-Technical Spectrum,https://medium.com/@ericwleong/the-product-technical-spectrum-d3e76aa8bff7,9,1,t3hprogrammer,12/15/2015 15:39 +11354454,Using Google Cloud Vision OCR to extract text from photos and scanned documents,https://gist.github.com/dannguyen/a0b69c84ebc00c54c94d,128,26,danso,3/24/2016 17:02 +11528866,The Sincerest Form of Flattery: Cloning Open-Source Hardware,http://hackaday.com/2016/04/19/the-sincerest-form-of-flattery-cloning-open-source-hardware/,2,1,Palomides,4/19/2016 18:05 +12289168,How I reduced the size of my Webpack bundle by 1000%,https://medium.com/@mrbar42/how-i-reduced-the-size-of-my-webpack-bundle-by-1000-f4d74894c2e5,1,1,mrbar42,8/15/2016 7:34 +11191210,Cosmic void dwarfs pose interesting questions,http://nautil.us/blog/cosmic-void-dwarfs-are-a-thing-and-theres-a-problem-with-them,49,1,dnetesn,2/28/2016 16:07 +10182149,Poison-Injecting Robot Submarine Kills Sea Stars to Save Coral Reefs,http://spectrum.ieee.org/automaton/robotics/industrial-robots/poison-robot-submarine?,84,46,ivank,9/7/2015 17:06 +12399891,Washio on-demand laundry service shuts down operations,https://techcrunch.com/2016/08/30/washio-on-demand-laundry-service-shuts-down-operations/,47,77,petethomas,8/31/2016 17:17 +11723555,"GNU Hurd 0.8, GNU Mach 1.7, GNU MIG 1.7 Released",http://www.gnu.org/software/hurd/news/2016-05-18-releases.html,40,3,Tsiolkovsky,5/18/2016 17:12 +11151021,The Lost Wax Method of Rewriting Software,https://makers.airware.com/engineering/lost-wax-method-rewriting-software/,12,2,edjboston,2/22/2016 14:39 +11748500,Bideo.js Easy Background HTML5 Videos,http://rishabhp.github.io/bideo.js/,76,30,_kush,5/22/2016 13:29 +10469624,"Uber Surge Price? Research Says Walk a Few Blocks, Wait a Few Minutes",http://www.npr.org/sections/alltechconsidered/2015/10/29/452585089/uber-surge-price-research-says-walk-a-few-blocks-wait-a-few-minutes,68,37,ckurose,10/29/2015 6:56 +10356085,Apple Says Battery Performance of New iPhones A9 Chips Vary Only 2-3%,http://techcrunch.com/2015/10/08/apple-says-battery-performance-of-new-iphones-a9-chips-vary-only-2-3/,3,1,davidbarker,10/8/2015 20:47 +11434802,Y Combinator cofounder Jessica Livingston to take year-long sabbatical,http://venturebeat.com/2016/04/04/y-combinator-cofounder-jessica-livingston-to-take-year-long-sabbatical/,240,155,etr71115,4/5/2016 21:48 +10673820,The problem with the gender gap in technology,http://www.randalolson.com/2014/06/14/percentage-of-bachelors-degrees-conferred-to-women-by-major-1970-2012/,1,1,neutralino,12/4/2015 0:31 +12089549,A Future for R: A Comprehensive Overview,https://cran.r-project.org/web/packages/future/vignettes/future-1-overview.html,106,38,michaelsbradley,7/13/2016 20:47 +10795379,Big Oil Companies Should Adopt a Self-Liquidation Strategy,https://www.project-syndicate.org/commentary/marginal-pricing-end-of-western-oil-producers-by-anatole-kaletsky-2015-12,173,104,jseliger,12/26/2015 21:32 +10583842,"Congressman: To stop ISIS, lets shut down websites and social media",http://arstechnica.com/tech-policy/2015/11/congressman-to-stop-isis-lets-shut-down-websites-and-social-media/,8,1,dayon,11/17/2015 20:48 +11360651,Legal 101 for tech startups (US and UK),https://www.codementor.io/startups/tutorial/legal-101-for-developers-launching-startups,19,3,mary_goldspink,3/25/2016 15:36 +12284629,Ask HN: Any great talks you would like to share?,,47,12,jsnathan,8/14/2016 7:28 +11786790,New biological device not faster than regular computer (PNAS via scihub),http://www.pnas.org.sci-hub.cc/content/early/2016/05/24/1603944113.full,3,1,yagyu,5/27/2016 15:50 +12209705,ThroughHardwareSerial strategy added to PJON v4.1,https://github.com/gioblu/PJON/blob/master/strategies/ThroughHardwareSerial/ThroughHardwareSerial.h,5,1,gioscarab,8/2/2016 13:21 +11465145,Project:M36 Relational Algebra Engine,https://github.com/agentm/project-m36,38,5,spariev,4/10/2016 6:19 +12299726,Sophia v2.2 is out,https://groups.google.com/forum/#!topic/sophia-database/asQxturuGDw,14,5,pmwkaa,8/16/2016 18:58 +10405936,"$30 Gets You the Sensor-Packed, Curie-Powered Arduino 101",http://makezine.com/2015/10/16/30-gets-you-the-sensor-packed-curie-powered-arduino-101/,2,1,whiskers,10/17/2015 20:30 +11145024,"Yelp Employee Protests Low Pay in Medium Post, Is Promptly Fired",http://recode.net/2016/02/20/yelp-customer-service-employee-protests-low-pay-in-medium-post-is-promptly-fired/,26,15,walterclifford,2/21/2016 16:13 +12485320,Ask HN: What was your eureka moment while programming?,,3,2,minionslave,9/13/2016 2:52 +11369301,Hillary Clinton. Who will guard the guards?,http://www.adamtownsend.me/hillary-clinton-emails/,2,1,kumarski,3/27/2016 8:10 +12116080,Who's using AI/ML in Marketing?,,9,9,hndude83,7/18/2016 16:28 +10184966,In the blink of an eye,http://mosaicscience.com/story/severe-eye-pain,10,2,tomkwok,9/8/2015 10:59 +10856925,Ask HN: Which is best Google Office outside US ?,,2,4,haidrali,1/7/2016 9:21 +10803123,Ask HN: What project are you working on over Xmas?,,5,2,ekpyrotic,12/28/2015 20:21 +10580069,The Counted People Killed by Police in the US,http://www.theguardian.com/us-news/ng-interactive/2015/jun/01/the-counted-police-killings-us-database#,7,4,bloke_zero,11/17/2015 9:45 +11085887,The sick incentives of online publishing,,1,2,imartin2k,2/12/2016 8:12 +10749822,Facebook using dubious tactics to garner support for FreeBasics platform,https://www.facebook.com/savefreebasics?notif_t=iorg_trai_submission,3,1,nutanc,12/17/2015 5:51 +11174238,"Facebook's Product Design Director Explains ""Reactions""",http://www.fastcodesign.com/3057113/facebooks-product-design-director-explains-one-of-its-biggest-ux-changes-in-years,1,1,HeyShayBY,2/25/2016 13:30 +12001839,Lossless compression with Brotli,https://blogs.dropbox.com/tech/2016/06/lossless-compression-with-brotli/,281,63,nuriaion,6/29/2016 14:31 +11734927,New Surveillance System May Let Cops Use All of the Cameras,https://www.wired.com/2016/05/new-surveillance-system-let-cops-use-cameras/,4,1,eplanit,5/20/2016 0:39 +10534089,Microsoft to Add React JSX Support to Visual Studio 2015,https://visualstudiomagazine.com/articles/2015/02/20/react-for-web-essentials.aspx,2,2,evo_9,11/9/2015 16:51 +10815147,Really rich people are suddenly paying quite a bit more in taxes,https://www.washingtonpost.com/news/wonk/wp/2015/12/30/really-rich-people-are-suddenly-paying-quite-a-bit-more-in-taxes/,64,168,ourmandave,12/30/2015 23:39 +11862894,On Reading Issues of Wired from 1993 to 1995,http://www.newyorker.com/culture/cultural-comment/on-reading-issues-of-wired-from-1993-to-1995,1,1,petethomas,6/8/2016 15:32 +12022077,The Scala ecosystem,http://appliedscala.com/blog/2016/scala-ecosystem/,4,2,chuwy,7/2/2016 10:47 +12252790,Write a simple memory allocator,http://arjunsreedharan.org/post/148675821737/write-a-simple-memory-allocator,14,2,mynameislegion,8/9/2016 5:26 +11093568,What are the psychological origins of procrastination?,https://www.weforum.org/agenda/2015/10/what-are-the-psychological-origins-of-procrastination/?utm_content=bufferf2a5c&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,1,1,marvel_boy,2/13/2016 11:29 +11909358,Show HN: Automated Let's Encrypt Certificate Provisioning in Kubernetes,https://blog.jetstack.io/blog/kube-lego/,11,1,mattbates25,6/15/2016 14:03 +11473863,Mac OS X Notes App Open Source Clone for Linux and Windows,http://www.get-notes.com/,2,1,hack4supper,4/11/2016 18:18 +10257907,Google Chrome crashes on special url,https://code.google.com/p/chromium/issues/detail?id=533361,1,1,krizan,9/22/2015 11:39 +11859641,Why I'm not leaving Python for Go (2012),https://uberpython.wordpress.com/2012/09/23/why-im-not-leaving-python-for-go/,37,22,jshen,6/8/2016 2:45 +10191603,Job openings surge to a record high,http://www.businessinsider.com/job-openings-and-labor-turnover-survey-september-9-2015-9,4,1,adventured,9/9/2015 14:23 +12384862,SRL Simple Regex Language,https://simple-regex.com/,279,133,maxpert,8/29/2016 20:04 +12183536,MyLG v0.1.9 Free Network Diagnostic Tool,http://mylg.io/,4,4,mehrdadrad,7/28/2016 22:02 +10251806,Compiler warnings are harmful,http://achacompilers.blogspot.com/2015/09/compiler-warnings-considered-harmful.html,2,3,andrewchambers,9/21/2015 12:48 +10529012,The inside story on getting an app in the Apple TV app store for day one,http://www.loopinsight.com/2015/11/06/the-inside-story-on-getting-an-app-in-the-apple-tv-app-store-for-day-one/,2,1,magnate,11/8/2015 17:09 +11030455,Google to point extremist searches towards anti-radicalisation websites,http://www.theguardian.com/uk-news/2016/feb/02/google-pilot-extremist-anti-radicalisation-information,6,2,leephillips,2/3/2016 22:40 +11882167,Dell: we are associated with organizations doing technology phone scams,https://www.facebook.com/Dell/posts/1018032944899575,2,2,DavidSJ,6/11/2016 5:06 +11317770,Naming is Harder than Types,https://camdez.com/blog/2016/03/17/no-seriously-its-naming/,2,1,nkurz,3/19/2016 8:20 +10804283,Meteor meets GraphQL,https://voice.kadira.io/meteor-meets-graphql-3cba2e65fd00,112,11,peterhunt,12/29/2015 0:06 +11806742,"Status, Seduction, and Annihilation",http://www.jonathanfields.com/status-seduction-and-annihilation/,12,2,wallflower,5/31/2016 14:37 +10993953,Kickstarter for funding Micropython port to ESP8266,https://www.kickstarter.com/projects/214379695/micropython-on-the-esp8266-beautifully-easy-iot?ref=discovery,98,41,Sfabris,1/29/2016 7:16 +11882750,Byte-Monkey: Fault injection for the JVM,http://probablyfine.co.uk/2016/05/30/announcing-byte-monkey/,77,10,probablyfine,6/11/2016 9:07 +11316683,Free FPGA: Reimplement the primitives models,http://blog.elphel.com/2016/03/free-fpga-reimplement-the-primitives-models/,38,16,chei0aiV,3/19/2016 1:17 +10506338,Microsoft and Red Hat partner,http://blogs.microsoft.com/?p=54883?wt.mc_id=WW_ABG_CLD_OO_SCL_TW&Ocid=C+E%20Social%20FY16_Social_TW_MSCloud_20151104_268989404,301,167,kenrick95,11/4/2015 13:40 +10200462,Customer development as an optimization problem,http://martinsosic.com/customer/development/2015/07/16/customer-development-as-optimization-problem.html,6,3,Martinsos,9/10/2015 20:48 +10295011,"What is your preffered IP subnet for your home lan, and why?",,1,4,AdamKlob,9/29/2015 7:29 +11570206,InstaPDF for iOS and Mac One Tap Scanning. Zero Effort Management,https://instapdf.com,2,1,mmackh,4/26/2016 8:14 +12417859,Journalwatch: Simple log parsing utility for the systemd journal,http://git.the-compiler.org/journalwatch/,11,1,ashitlerferad,9/3/2016 5:14 +10456976,#ICANHAZPDF Access to Academic Papers on Twitter,http://www.theatlantic.com/technology/archive/2015/10/why-some-academics-are-sharing-their-papers-for-free/411934/?single_page=true,5,7,po,10/27/2015 9:27 +10649738,The Latest Intellectuals,http://chronicle.com/article/The-Latest-Intellectuals/234339,23,4,petethomas,11/30/2015 15:09 +12160992,How I Left a 12-Year Career in Silicon Valley to Work on a Beach in Belize,https://www.fastcompany.com/3062113/lessons-learned/how-i-left-a-12-year-career-in-silicon-valley-to-work-on-a-beach-in-belize,28,3,prostoalex,7/25/2016 19:33 +12105340,Ask HN: When Twitter is going to fix it's URL shortening?,,7,3,vikasr111,7/16/2016 5:25 +10445026,Amazons $50 Fire tablet reviewed,http://arstechnica.com/gadgets/2015/10/amazons-50-fire-tablet-review-suprisingly-it-doesnt-suck/,101,55,ingve,10/24/2015 22:01 +11744816,"The productive, bizarre career of Nobel laureate Elie Metchnikoff",http://nautil.us/issue/36/aging/the-man-who-blamed-aging-on-his-intestines,41,2,dnetesn,5/21/2016 14:39 +12303972,How natural are nature documentaries?,http://www.theverge.com/2016/8/15/12471540/the-hunt-bbc-nature-documentary-realism-predators-truth-and-art,47,4,galaktor,8/17/2016 11:56 +11717218,Is Gut Science Biased?,https://fivethirtyeight.com/features/gut-week-global-guts-western-bias/,87,19,tokenadult,5/17/2016 20:39 +12022396,Obama After Dark: The Precious Hours Alone,http://www.nytimes.com/2016/07/03/us/politics/obama-after-dark-the-precious-hours-alone.html,21,4,applecore,7/2/2016 13:23 +10545103,Shopify grows Q3 revenue 93%,https://www.internetretailer.com/2015/11/09/e-commerce-platform-vendor-shopify-grows-q3-revenue-93,92,30,Oatseller,11/11/2015 6:13 +11376206,"What happens when AI genders people, and what does this mean for trans people?",http://neutrois.me/2016/03/25/fv-through-ai-eye#bVc6,4,8,alyxmxe,3/28/2016 18:26 +11153358,Why Neutrino Detectors Look So Damn Cool,http://motherboard.vice.com/read/why-neutrino-detectors-look-so-cool,25,3,jonbaer,2/22/2016 19:02 +10417056,Inside Stanford Business Schools Spiraling Sex Scandal,http://www.vanityfair.com/news/2015/10/stanford-business-school-sex-scandal,25,1,nols,10/20/2015 2:21 +11605911,Show HN: Writing Streak write fiction every day,http://writingstreak.io/,2,3,rayalez,5/1/2016 12:22 +11406937,C/C++ Extension for Visual Studio Code,https://blogs.msdn.microsoft.com/vcblog/2016/03/31/cc-extension-for-visual-studio-code/,56,20,oblio,4/1/2016 17:55 +10320979,Why all new tech startups have stupid names,http://www.canadianbusiness.com/innovation/why-all-new-tech-startups-have-stupid-names/,1,1,earlyadapter,10/2/2015 20:10 +10230640,Show HN: It's almost four twenty somewhere in the world,http://its.fourtwenty.in/,8,2,ccvannorman,9/16/2015 23:18 +10491954,Oslo to be carless by 2019,http://sputniknews.com/europe/20151102/1029471684/oslo-cars-ban.html,17,1,mml,11/2/2015 14:31 +10802518,Show HN: I created a Python framework for fast Slack bot development,https://github.com/nficano/gendo,18,1,NFicano,12/28/2015 18:27 +11999930,He Was a Hacker for the NSA and He Was Willing to Talk. I Was Willing to Listen,https://theintercept.com/2016/06/28/he-was-a-hacker-for-the-nsa-and-he-was-willing-to-talk-i-was-willing-to-listen/,9,2,Kristine1975,6/29/2016 6:48 +12562984,GitHub theweavrs/Macalifa: A music player written for UWP,https://github.com/theweavrs/Macalifa/,3,1,thecodrr,9/23/2016 7:46 +12448545,You Suck at Excel with Joel Spolsky (2015) [video],https://youtube.com/watch?v=0nbkaYsR94c,957,420,carlesfe,9/7/2016 22:35 +12048856,Social.android.com,,1,1,yutthapong,7/7/2016 12:26 +11509876,"H.P. Lovecraft Against the World, Against Life (by Michel Houllebecq)",http://chunk.io/f/3bdc0fe122594277808291a42f1fb758,3,1,networked,4/16/2016 8:50 +11899266,"On Max Perkins, One of America's Greatest Editors",http://lithub.com/on-max-perkins-one-of-americas-greatest-editors/,3,1,samclemens,6/14/2016 2:03 +10700145,Death to SAML and LDAP Introducing Passport,https://www.inversoft.com/blog/2015/12/08/passport-user-management-platform/,16,2,brokenwren,12/8/2015 22:25 +12400160,IBM's Watson makes Ai trailer about 'Morgan' AI movie,http://www.geekwire.com/2016/ibm-watson-ai-trailer-morgan-movie/,8,2,okket,8/31/2016 17:54 +12270841,Ask HN: What are the benefits of having a project webpage vs. GitHub README?,,3,7,aelsabbahy,8/11/2016 19:09 +11759700,"The Slack Backlash Has Arrived, but Its Already Too Late",http://www.vocativ.com/320111/slack-backlash/,2,1,JackPoach,5/24/2016 8:01 +10847452,A Historian Who Fled the Nazis and Still Wants Us to Read Hitler,http://www.newyorker.com/books/page-turner/a-historian-who-fled-the-nazis-and-still-wants-us-to-read-hitler,51,43,lermontov,1/6/2016 0:49 +10638206,Notes on Writing Makefiles,http://eigenstate.org/notes/makefiles,82,9,mmphosis,11/27/2015 18:02 +11325603,Show HN: Owlorbit Share your location/msg with friends and family in real-time,http://owlorbit.com/,7,8,tim_nuwin,3/21/2016 1:21 +11647202,Free Open Source NRules.net site is now offline and erased from GitHub,https://github.com/NRules,2,1,Firegarden,5/6/2016 22:36 +12089706,An Atlas of Fantasy,https://en.wikipedia.org/wiki/An_Atlas_of_Fantasy,52,15,benbreen,7/13/2016 21:12 +11180746,Analyze Your Splatoon Play In Real-Time,https://github.com/hasegaw/IkaLog,71,14,matsuu,2/26/2016 10:36 +12443629,Lessons from a 45-year Study of Super-Smart Children,http://www.scientificamerican.com/article/how-to-raise-a-genius-lessons-from-a-45-year-study-of-super-smart-children/,490,457,kungfudoi,9/7/2016 14:25 +10271301,TDD is not a design methodology,http://pulloware.com/blog/tdd_no_design.html,7,1,Sharas_,9/24/2015 12:57 +10290501,Enabling 2.5B people to buy online using cash not cards,http://www.poprecarga.com.br/,1,1,svepuri,9/28/2015 14:05 +11035946,Python 3 comes to Scrapy,https://blog.scrapinghub.com/2016/02/04/python-3-support-with-scrapy-1-1rc1/,249,76,ddebernardy,2/4/2016 18:16 +10925168,Show HN: Space Shooter Retro Game Recreated Using Python,https://github.com/prodicus/spaceShooter,27,4,prodicus,1/18/2016 16:13 +10310420,Introduction of Markov State Modeling,http://www.edupristine.com/blog/markov-state-modeling,1,1,samanthabraden,10/1/2015 11:33 +11065579,Show HN: How Will We Explore Books in the 21st Century?,https://blog.archive.org/2016/02/09/how-will-we-explore-books-in-the-21st-century/,16,1,greglindahl,2/9/2016 14:47 +12067840,Top White House Economist Dismisses the Idea of a Universal Basic Income,http://blogs.wsj.com/economics/2016/07/07/top-white-house-economist-dismisses-the-idea-of-a-universal-basic-income/,93,180,Chinjut,7/10/2016 23:44 +11477892,Show HN: The Organizer for Freelancers and Creatives,https://freeter.io,17,23,AlexKaul,4/12/2016 7:57 +10810116,Failed out of uni. Any tips on making myself more employable?,,1,7,just_a_q,12/30/2015 0:53 +12126842,Experiment suggests people may sense single photons,http://www.scientificamerican.com/article/people-may-sense-single-photons/,3,2,agonz253,7/20/2016 4:11 +10486287,Why isn't blockchain technology part of academics?,http://www.forbes.com/sites/vivekravisankar/2015/11/01/blockchain-the-decentralization-of-cs-education/,1,1,rvivek,11/1/2015 13:05 +10769545,"Facebook, Google, and Twitter Have Agreed to Apply Germanys Anti-Hate Speech Law",http://qz.com/575268/facebook-google-and-twitter-have-agreed-to-apply-germanys-strict-anti-hate-speech-law-online/,11,3,yincrash,12/21/2015 4:13 +10317523,Experian hack exposes 15M people's personal information,http://www.theguardian.com/business/2015/oct/01/experian-hack-t-mobile-credit-checks-personal-information,4,1,charlieirish,10/2/2015 9:34 +10931469,The Rails Doctrine,http://rubyonrails.org/doctrine,497,359,robin_reala,1/19/2016 15:50 +11111513,Is Silicon Valley today's heaven or tomorrow's hell?,http://www.zeit.de/kultur/2016-01/silicon-valley-startups-steve-jobs-journey#1,3,1,Dowwie,2/16/2016 17:29 +10181051,Monifu vs. Akka Streams,https://www.bionicspirit.com/blog/2015/09/06/monifu-vs-akka-streams.html,12,1,bad_user,9/7/2015 11:47 +10824704,Ask HN: What is your advise to move up the ladder? Any anecdotes?,,3,1,gisnotgoogle,1/2/2016 2:40 +10444907,"Space Buckets, a Community of DIY LED Gardeners",http://www.spacebuckets.com,85,31,ekrof,10/24/2015 21:21 +11208980,"Show HN: Keza, Wealthfront for Your Bitcoin Launches Public Beta",http://getkeza.com,5,1,realsimoburns,3/2/2016 9:41 +10661951,Raspberry Pi Zero Headless Setup,http://davidmaitland.me/2015/12/raspberry-pi-zero-headless-setup/,164,43,davidmaitland,12/2/2015 9:48 +10659787,JSFiddle Updates,https://medium.com/jsfiddle-updates/the-lifting-cb3c9f216c2f#.msjzxdzb1,38,8,insidethewebb,12/1/2015 23:43 +10479318,"Spacewar Halloween Edition, only this weekend 2015 code for the 1960 PDP-1",http://www.masswerk.at/spacewar/,38,2,masswerk,10/30/2015 17:49 +10724639,"When the Soviets Banned Rock Music, Teens Used X-rays to Bootleg Records",http://www.smithsonianmag.com/smart-news/soviet-hipsters-bootlegged-banned-music-bone-records-180957505/?no-ist,111,26,markmassie,12/12/2015 23:25 +10674914,How to Remove Obstacles to Learning Math,http://ww2.kqed.org/mindshift/2015/11/30/not-a-math-person-how-to-remove-obstacles-to-learning-math,68,23,bootload,12/4/2015 5:55 +11496037,A curated list of awesome network analysis resources,https://github.com/briatte/awesome-network-analysis,3,1,phnk,4/14/2016 12:26 +10520115,"Ask HN: Advice WhoIsHiring According to my profile, would you hire me?",,13,14,theviajerock,11/6/2015 15:59 +12468236,Python Data Science Handbook Supplemental Materials,https://github.com/jakevdp/PythonDataScienceHandbook,57,1,wyclif,9/10/2016 8:10 +10555855,Top 100 CEOs will get $4.9B for retirement same as 41% of Americans,http://www.thenation.com/article/top-ceos-have-4-9-billion-saved-up-for-retirement-13-of-workers-have-nothing/,9,2,fpp,11/12/2015 20:26 +11960286,Battle of the secure messaging apps: how Signal beats WhatsApp,https://theintercept.com/2016/06/22/battle-of-the-secure-messaging-apps-how-signal-beats-whatsapp/,18,4,willvarfar,6/23/2016 11:59 +10671839,What Holds Me Back from ClojureScript,http://jaredforsyth.com/2015/11/26/What-holds-me-back-from-Clojurescript/,107,53,jaredly,12/3/2015 19:17 +11955717,Senate Falls 1 Vote Short of Giving FBI Access to Browse Histories,http://www.usnews.com/news/articles/2016-06-22/senate-falls-1-vote-short-of-giving-fbi-access-to-browser-histories-without-court-order,22,6,eplanit,6/22/2016 17:53 +11361423,27,https://www.youtube.com/watch?v=dLRLYPiaAoA,28,2,dnx,3/25/2016 17:38 +11690360,Hedge Fund Star: We Are Under Assault,http://www.wsj.com/article_email/hedge-fund-star-we-are-under-assault-1463071444-lMyQjAxMTI2MDEzMzQxMTM2Wj,8,1,terryauerbach,5/13/2016 13:45 +11087419,All File Systems Are Not Created Equal Crash Resiliance,http://blog.acolyer.org/2016/02/11/fs-not-equal/,1,1,gvb,2/12/2016 14:36 +10630603,Sharing a chapter a month can justify crowdfunding,http://patreon.com/energyrealist,1,1,rickmaltese,11/26/2015 0:07 +10220950,XFS: The Enterprise File System of Choice,https://www.suse.com/communities/conversations/xfs-the-file-system-of-choice/,25,17,mariuz,9/15/2015 14:51 +11470641,QuorraJS,https://quorrajs.org/,7,1,impostervt,4/11/2016 10:42 +11614094,Container-Ready Rails 5,https://blog.heroku.com/archives/2016/5/2/container_ready_rails_5,3,1,joeyespo,5/2/2016 18:29 +10906054,Coffee Delivery Is the Future of On-Demand Ordering,http://www.eater.com/2016/1/14/10758072/starbucks-delivery-dunkin-donuts-office,25,47,prostoalex,1/15/2016 0:27 +11534672,"Google Inbox adds Saved articles, videos and links",,6,1,nattaylor,4/20/2016 14:36 +12000156,Bose wants your kids to build their own Bluetooth speakers,https://techcrunch.com/2016/06/28/bosebuild/,6,2,chrisjamesc,6/29/2016 8:03 +10445087,On the Spline: A Brief History of the Computational Curve,http://www.alatown.com/spline-history-architecture/,64,3,alnis,10/24/2015 22:22 +12092754,Say Hello to Nest Cam Outdoor,https://nest.com/ie/blog/2016/07/14/its-a-big-day-for-security-cameras/,4,6,donalhunt,7/14/2016 10:42 +10554756,A Tale of Two Northern European Cities: Meeting the Challenges of Sea Level Rise,http://e360.yale.edu/feature/a_tale_of_two_northern_european_cities_meeting_the_challenges_of_sea_level_rise/2926/,18,1,cpeterso,11/12/2015 17:52 +12412457,Email: Is It Time to Just Ban It?,https://hbr.org/ideacast/2016/09/email-is-it-time-to-just-ban-it?utm_source=twitter&utm_medium=social&utm_campaign=harvardbiz,1,1,apress,9/2/2016 12:12 +11188590,Sysdig vs. DTrace vs. Strace (2014),https://sysdig.com/blog/sysdig-vs-dtrace-vs-strace-a-technical-discussion/,69,3,pmoriarty,2/27/2016 21:25 +10246964,Seth Godin on ad blocking,http://sethgodin.typepad.com/seths_blog/2015/09/ad-blocking.html,8,1,mantesso,9/20/2015 8:57 +10778402,"In Arbitration, a Privatization of the Justice System",http://www.nytimes.com/2015/11/02/business/dealbook/in-arbitration-a-privatization-of-the-justice-system.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=first-column-region®ion=top-news&WT.nav=top-news,29,10,Futurebot,12/22/2015 15:56 +12088631,The Fight for the Right to Repair,http://www.smithsonianmag.com/innovation/fight-right-repair-180959764/?no-ist,704,318,sinak,7/13/2016 18:44 +11998100,Heres What Happens When You Wear a Low-Cut Top in Your Job Application Photo,https://www.yahoo.com/style/happens-wear-low-cut-top-150506053.html,1,4,evo_9,6/28/2016 22:31 +12161508,New version of Raspberry Pi A+,https://twitter.com/EbenUpton/status/757637427074826240,1,1,alexellisuk,7/25/2016 20:46 +11404375,Show HN: FOIA Mapper a search engine for offline government records,https://foiamapper.com,4,5,mgalka,4/1/2016 12:49 +10998486,Ask HN: What should we fund at YC Research?,,316,520,sama,1/29/2016 21:03 +12431724,Show HN: HN Chat Minimal Hacker News Chat with User Verification,https://www.hnchat.com/,180,80,zaytoun,9/5/2016 18:53 +10561134,Doctors Could Use Snot Instead of Blood for DiagnosticsWhy Dont They?,http://motherboard.vice.com/read/doctors-could-use-snot-instead-of-blood-for-diagnostics-why-dont-they,5,1,sageabilly,11/13/2015 17:43 +10189601,What Makes Uber Run,http://www.fastcompany.com/3050250/what-makes-uber-run/,91,67,doppp,9/9/2015 4:02 +10733536,A Midcentury Composers Rainbow Wheels Representing Music Through Color,http://www.slate.com/blogs/the_vault/2015/11/16/composer_ivan_wyschnegradsky_s_color_wheels_representing_his_microtonal.html,17,5,kawera,12/14/2015 20:22 +11956109,German government agrees to ban fracking indefinitely,http://www.reuters.com/article/us-germany-fracking-idUSKCN0Z71YY,210,115,ck2,6/22/2016 18:52 +10893930,Apple Eyeing Time Warner Acquisition,http://ir.net/news/technology/123140/apple-inc-aapl-reportedly-eyeing-time-warner-twx-acquisition/,30,52,Petedoes,1/13/2016 12:58 +12548220,How a Tweet About Getting Rejected Went Viral,https://medium.com/zero-infinity/how-a-tweet-about-getting-rejected-went-viral-f41a9571128a#.2egsco4ld,6,5,mfishbein,9/21/2016 14:04 +10198406,#WorkCanWait,https://37signals.com/remote/workcanwait,11,3,TheBiv,9/10/2015 14:55 +11352957,Accurate CRT Simulation,http://gamasutra.com/blogs/KylePittman/20150420/241442/CRT_Simulation_in_Super_Win_the_Game.php,272,77,jsnell,3/24/2016 14:19 +12299282,Ask HN: How are you using Serverless architecture in production?,,8,7,kcoleman731,8/16/2016 18:04 +11478159,Bye Why I'm leaving Medium,https://medium.com/@charlesomeara/bye-11224eca4a99,131,92,WA,4/12/2016 9:19 +12349686,"The world can transition to 100% clean, renewable energy",http://thesolutionsproject.org/,27,23,epa,8/24/2016 4:32 +12376703,Ask HN: Elm-like JavaScript framework?,,6,3,melle,8/28/2016 14:41 +10874384,The Pithos Guide,http://pithos.io/,23,7,ddispaltro,1/10/2016 5:55 +11641267,Peer Street,http://www.peerstreet.com,66,35,up_and_up,5/6/2016 2:25 +10557484,BadBarcode: Start a shell by scanning a boarding pass,http://motherboard.vice.com/read/badbarcode-project-shows-customized-boarding-passes-can-hack-computers,15,13,ProZsolt,11/13/2015 1:35 +11781229,Cardboard Standing Desk,http://healthydeveloper.com/cardboard-standing-desk/,1,1,dragthor,5/26/2016 20:24 +11307106,"Executive fired after opposing 5,000% drug price hike",http://www.usatoday.com/story/money/2016/03/17/executive-fired-after-opposing-5000-drug-price-hike/81917308/,4,5,HarryHirsch,3/17/2016 19:59 +12135654,Show HN: Lua Digest -- Regular Lua Newsletter,https://luadigest.github.io/,5,4,Immortalin,7/21/2016 9:08 +11206531,"Microsoft to unify PC and Xbox One platforms, ending fixed console hardware",http://www.theguardian.com/technology/2016/mar/01/microsoft-to-unify-pc-and-xbox-one-platforms-ending-fixed-console-hardware?CMP=twt_gu,3,1,ssutch3,3/1/2016 22:13 +12556222,A Sunken Bridge the Size of a Continent,https://www.hakaimagazine.com/article-long/sunken-bridge-size-continent,113,33,jmadsen,9/22/2016 12:08 +10491146,Ask HN: Ncurses first development,,2,1,jlebrech,11/2/2015 10:59 +10904333,Ask HN: What is your favorite tech prank?,,18,40,ternbot,1/14/2016 20:45 +11283709,Cops often let off hook for civil rights complaints,http://triblive.com/usworld/nation/9939487-74/police-rights-civil,3,1,cryoshon,3/14/2016 16:21 +12434458,Advantages of Functional Programming in Java 8,https://bulldogjob.pl/articles/156-the-advantages-of-functional-programming-in-java-8,53,60,Kellanved,9/6/2016 8:45 +12376151,Build a Plant Monitoring Prototype Like a Pro (and for Under 100 Dollars),http://www.thingsquare.com/blog/articles/build-a-plant-monitor-100-dollars/,2,1,adunk,8/28/2016 11:46 +11444284,"Apply HN Madgigs ""Staffing Accelerator""",,3,11,kapitaldata,4/7/2016 2:38 +11473035,"The simplest way to build, train, and deploy intelligent conversational apps",http://init.ai,3,1,guifortaine,4/11/2016 16:56 +12470756,Police in England and Wales consider making misogyny a hate crime,https://www.theguardian.com/society/2016/sep/10/misogyny-hate-crime-nottingham-police-crackdown,1,2,forloop,9/10/2016 20:29 +11902253,Ketamine lifts depression via a byproduct of its metabolism,https://www.sciencedaily.com/releases/2016/05/160504141131.htm,125,83,MollyR,6/14/2016 14:36 +11007724,Global Venture Capital Distribution,http://avc.com/2016/01/global-venture-capital-distribution,23,19,worldvoyageur,1/31/2016 19:49 +10965871,"Zcash, an untraceable Bitcoin alternative, launches in alpha",http://www.wired.com/2016/01/zcash-an-untraceable-bitcoin-alternative-launches-in-alpha/,205,143,rdl,1/25/2016 6:18 +12396319,PEP-526: Syntax for Variable and Attribute Annotations,https://mail.python.org/pipermail/python-dev/2016-August/145991.html,4,1,Spiritus,8/31/2016 6:08 +10858628,Best ways to submit a iphone app on the app store,http://www.liketotallynews.com/list/how-to-submit-an-iphone-app-to-the-app-store/,1,1,alexwa,1/7/2016 15:59 +12287917,Show HN: BlockBlockAdBlock,https://github.com/Mechazawa/BlockBlockAdBlock,12,1,mechazawa,8/15/2016 0:12 +12560284,Industry Concerns about TLS 1.3,https://www.ietf.org/mail-archive/web/tls/current/msg21275.html,22,5,m0nastic,9/22/2016 20:53 +11429794,Robby Leonardi's interactive resume,http://www.rleonardi.com/interactive-resume/,1,1,Perados,4/5/2016 12:26 +11791069,"I've Been Waiting For The Oculus Rift, But Now It's Sitting In My Closet",http://www.forbes.com/sites/insertcoin/2016/05/27/ive-been-waiting-for-the-oculus-rift-my-whole-life-but-now-its-sitting-in-my-closet/,125,150,r0h1n,5/28/2016 9:33 +10583027,Annotated version of Lebesgues 1901 paper on the integral,http://fermatslibrary.com/s/on-a-generalization-of-the-definite-integral,29,16,fermatslibrary,11/17/2015 18:33 +11692155,Giving up on Julia,http://zverovich.net/2016/05/13/giving-up-on-julia.html,265,230,ingve,5/13/2016 18:17 +12404104,Building a new Tor that can resist next-generation state surveillance,http://arstechnica.co.uk/security/2016/08/building-a-new-tor-that-withstands-next-generation-state-surveillance/,18,2,ashitlerferad,9/1/2016 10:15 +10702675,Show HN: Spreadsheet-style reactive web interfaces with Flare,http://david-peter.de/articles/flare/,11,1,sharkdp,12/9/2015 9:10 +10858632,This diet study upends everything we thought we knew about healthy food,https://www.washingtonpost.com/news/to-your-health/wp/2015/11/20/the-diet-study-that-upends-everything-we-thought-we-knew-about-healthy-food/,1,1,dhimes,1/7/2016 15:59 +11243631,My Year in San Franciscos $2M Secret Society Startup,http://motherboard.vice.com/read/my-year-in-san-franciscos-2-million-secret-society-startup,344,120,dcschelt,3/8/2016 5:03 +12062315,Clean Links Converts obfuscated or nested links to genuine clean links,https://addons.mozilla.org/en-US/firefox/addon/clean-links/,192,58,based2,7/9/2016 17:18 +11021633,Comodo Chromodo Browser disables same origin policy,https://code.google.com/p/google-security-research/issues/detail?id=704,217,58,polemic,2/2/2016 19:06 +12351019,Mobirise Bootstap Site Maker v3.05.1 is out,https://mobirise.com/,2,1,Mobirise,8/24/2016 10:44 +11138524,Ask HN: Where are 150k to 200k salary job in Silicon Valley?,,43,31,ugenetics,2/20/2016 2:58 +10255003,Disney Invests in Jaunt as Part of Round That Makes It Highest-Funded VR Startup,http://on.recode.net/1JlBAUG,2,1,danboarder,9/21/2015 20:42 +12118146,Sex workers have created the perfect method for keeping people honest online,http://qz.com/621994/trust-and-crime/,14,6,taylorbuley,7/18/2016 21:27 +12018341,ASK HN: How to consistently work 60+ hrs a week?,,2,9,lonely_rebel,7/1/2016 18:06 +10741329,Analyzing the Worlds News: Exploring the GDELT Project Through Google BigQuery,https://www.oreilly.com/ideas/analyzing-the-worlds_news_exploring_the_gdelt_project_through_google_bigquery,26,1,espeed,12/15/2015 23:41 +11972107,Facebook Bug Delete Any Video,http://www.pranavhivarekar.in/2016/06/23/facebooks-bug-delete-any-video-from-facebook/,215,43,adamnemecek,6/24/2016 18:15 +10253416,"Inside Target Corp., Days After 2013 Breach",http://krebsonsecurity.com/2015/09/inside-target-corp-days-after-2013-breach/#more-32276,3,1,snowy,9/21/2015 16:38 +11749585,3-Person Embryos May Fail to Vanquish Mutant Mitochondria,http://www.scientificamerican.com/article/3-person-embryos-may-fail-to-vanquish-mutant-mitochondria/,1,1,okket,5/22/2016 18:08 +10838458,Surgery Performed with Google Cardboard Saved a Baby's Life,http://www.redbookmag.com/life/news/a41632/google-cardboard-saved-a-babys-life/,25,18,shawndumas,1/4/2016 20:48 +11707334,"TAXA, YC S14, launches first Title III equity crowdfunding campaign",http://www.wefunder.com/taxa,13,5,technotony,5/16/2016 16:19 +11019665,(Chrome) Intent to Ship: Brotli,https://groups.google.com/a/chromium.org/forum/#!searchin/blink-dev/brotli/blink-dev/JufzX024oy0/WEOGbN43AwAJ,4,1,antouank,2/2/2016 14:48 +11314931,Face2Face: Real-time Face Capture and Reenactment of RGB Videos [video],https://www.youtube.com/watch?v=ohmajJTcpNk,160,35,benevol,3/18/2016 20:54 +11276940,"Show HN: Rogue AI Dungeon, javacript bot scripting game",http://bovard.github.io/raid/,17,4,cdubzzz,3/13/2016 9:16 +11358895,Experience Your Computer Desktop in VR,https://www.youtube.com/watch?v=bjE6qXd6Itw,2,1,TheGuyWhoCodes,3/25/2016 7:32 +10687288,"Show HN: Braindump, a simple note platform to organize your life",https://github.com/levlaz/braindump,91,41,levlaz,12/6/2015 23:52 +11813723,Joel Spolsky: The 3 skills every software developer should learn,http://www.techrepublic.com/article/joel-spolsky-the-three-skills-every-software-developer-should-learn/,3,2,mathattack,6/1/2016 12:13 +11672875,A Photographic Guide to the Earliest Computers,http://motherboard.vice.com/read/a-gorgeous-guide-to-the-earliest-computers?trk_source=homepage-lede,3,1,ohjeez,5/11/2016 5:49 +11909503,MacOS Sierra Removes Option to Install Apps from Anywhere,https://www.onthewire.io/apple-upgrades-security-for-ios-and-macos/,2,1,mattingly23,6/15/2016 14:24 +12042078,Lets make peer review scientific,http://www.nature.com/news/let-s-make-peer-review-scientific-1.20194?WT.mc_id=TWT_NatureNews,279,141,return0,7/6/2016 9:41 +10339388,New Windows 10 Devices From Microsoft,http://blogs.windows.com/devices/2015/10/06/a-new-era-of-windows-10-devices-from-microsoft/,875,644,yread,10/6/2015 15:11 +11852371,Streamlining the Sign-In Flow Using Credential Management API,https://developers.google.com/web/updates/2016/04/credential-management-api,7,1,bretthopper,6/7/2016 4:20 +11920939,How the Windows Subsystem for Linux bridges file systems,https://blogs.msdn.microsoft.com/wsl/2016/06/15/wsl-file-system-support/,1,1,adamnemecek,6/17/2016 6:02 +11124335,Python 3 in 2016,https://hynek.me/articles/python3-2016/,184,187,jaxondu,2/18/2016 7:52 +11610887,How the Pwnedlist Got Pwned,http://krebsonsecurity.com/2016/05/how-the-pwnedlist-got-pwned/,30,5,pfg,5/2/2016 12:50 +11626864,Upwork now takes 20% of freelancer earnings,http://www.forbes.com/sites/elainepofeldt/2016/05/03/freelance-giant-upwork-shakes-up-its-business-model/#55a2d8d9909b,13,11,ftrflyr,5/4/2016 7:55 +11096769,How DHL Pioneered the Sharing Economy,http://techcrunch.com/2016/02/13/how-dhl-pioneered-the-sharing-economy/,13,3,dsr12,2/14/2016 2:01 +12081487,Tesla confirms another Autopilot accident,http://money.cnn.com/2016/07/12/technology/tesla-autopilot-accident/index.html,4,4,jasondc,7/12/2016 18:58 +12548483,It seems that it is impossible to get to level 10,https://thundershotgames.github.io/Pamman/,6,2,howbo_bby,9/21/2016 14:33 +10362076,What Ive learned creating a startup index fund using AngelList,https://medium.com/@adammosam/i-recently-invested-in-over-150-startups-ad796b79502d,34,3,amosam,10/9/2015 17:58 +10814757,Homme de Plume: What I Learned Sending My Novel Out Under a Male Name,http://jezebel.com/homme-de-plume-what-i-learned-sending-my-novel-out-und-1720637627/,26,6,Mz,12/30/2015 22:19 +11655308,Why Suburbia Sucks,https://likewise.am/2016/05/08/why-suburbia-sucks/,226,295,wonder_er,5/8/2016 19:12 +10268107,Silex V2 preview (website builder),http://preprod.silex.me/#,1,1,vmorgulis,9/23/2015 20:52 +10222934,The Interim Operating System,http://interim.mntmn.com,155,26,mntmn,9/15/2015 20:25 +11133464,"Fina ultra thin, modern font",http://designhooks.com/freebies/fina-ultra-thin-modern-font/,10,12,ivorhook,2/19/2016 14:01 +10663279,Holiday lights can interfere with WiFi,https://www.washingtonpost.com/news/the-switch/wp/2015/12/01/are-your-holiday-lights-killing-your-wifi/?wpisrc=nl_draw,7,1,dnetesn,12/2/2015 14:59 +10880066,Hardware Acceleration of Key-Value Stores [pdf],https://www.cs.berkeley.edu/~kubitron/courses/cs262a-F14/projects/reports/project13_report.pdf,33,1,ingve,1/11/2016 10:53 +12525751,Ask HN: Can 32-bit Interact with 64-bit?,,1,1,sinnska,9/18/2016 15:51 +10746842,Create alerts for your Google Analytics' custom metrics,http://metrics.watch/blog/shipped-google-analytics-custom-metrics/,1,1,jpmw,12/16/2015 19:58 +11239132,Ask HN: Who's making $300k to $1m as a cloud engineer?,,111,94,sgustard,3/7/2016 14:45 +11180545,Popcorntime for Your Browser,http://www.popcornchill.com/,5,4,ShashawatSingh,2/26/2016 9:14 +12231491,How to Break an API?,http://breakingapis.org/,2,1,tilt,8/5/2016 11:48 +11132778,Why Apple is wrong: A privacy advocate's view,http://www.theregister.co.uk/2016/02/17/why_tim_cook_is_wrong_a_privacy_advocates_view/,1,1,d33,2/19/2016 10:50 +10469342,Ask HN: What novels feature realistic computing?,,1,2,sago,10/29/2015 4:51 +10659123,The Peculiar Ascent of Bill Murray to Secular Saint,http://www.nytimes.com/2015/12/04/fashion/mens-style/the-peculiar-ascent-of-bill-murray-to-secular-saint.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=mini-moth®ion=top-stories-below&WT.nav=top-stories-below&_r=0,147,80,dnetesn,12/1/2015 21:53 +11593674,Devuan jessie beta released,https://beta.devuan.org/,5,2,nextime,4/29/2016 3:58 +11997924,The Moto G4 and G4 Plus Head to the US July 12th,https://www.engadget.com/2016/06/28/the-moto-g4-and-g4-plus-head-to-the-us-on-july-12/,1,1,blisterpeanuts,6/28/2016 22:00 +11832883,Ask HN: What to do when a website violates their own TOS and sells your data?,,1,3,MOARDONGZPLZ,6/3/2016 20:10 +11229653,A Plagiarism Scandal Is Unfolding in the Crossword World,https://fivethirtyeight.com/features/a-plagiarism-scandal-is-unfolding-in-the-crossword-world/,12,3,Amorymeltzer,3/5/2016 14:57 +10247289,Implementing Levenshtein Automata,http://fulmicoton.com/posts/levenshtein/,100,8,fulmicoton,9/20/2015 12:34 +12508356,Elon Musk on How to Build the Future,http://www.ycombinator.com/future/elon/,1104,513,sama,9/15/2016 18:05 +10557762,The only affordable retirement for most Americans isnt in America,http://qz.com/546416/a-21st-century-american-retirement-running-away-to-belize-because-you-cant-afford-america/,7,1,nols,11/13/2015 2:56 +12474198,The Billion-Dollar Ultimatum,https://www.buzzfeed.com/chrishamby/the-billion-dollar-ultimatum,2,1,dredmorbius,9/11/2016 16:45 +12241851,Theres No Such Thing as a Protest Vote,https://medium.com/@cshirky/theres-no-such-thing-as-a-protest-vote-c2fdacabd704#.1ut3oehae,2,1,vinnyglennon,8/7/2016 12:09 +12285542,OpenFisca Open models to compute tax and benefit systems,https://www.openfisca.fr/en,125,12,based2,8/14/2016 13:48 +10214832,Four Reasons to Use Maps Instead of Classes in Clojure,http://spin.atomicobject.com/2015/09/14/clojure-maps-objects-classes/#.VfbF3E7Eibk.hackernews,4,2,philk10,9/14/2015 13:04 +12287452,Nissan Motor Company has announced a new type of gasoline engine,http://www.reuters.com/article/us-autos-japan-nissan-engine-idUSKCN10P0IK?il=0,189,146,verdande,8/14/2016 21:33 +12197861,Rick and Morty writers room,http://orangemind.io/post/rick-and-morty-writers-room,3,1,rayalez,7/31/2016 17:30 +10190977,Journalism is Dead,http://www.vgchartz.com/article/260846/journalism-is-dead/,6,3,generic_user,9/9/2015 12:27 +12095000,Germany enlists machine learning to boost renewables revolution,http://www.nature.com/news/germany-enlists-machine-learning-to-boost-renewables-revolution-1.20251,99,25,vezycash,7/14/2016 16:08 +12202867,Ask HN: Who wants to be hired? (August 2016),,22,118,whoishiring,8/1/2016 15:01 +10557692,Ask HN: Freelancing tips,,3,2,anymys,11/13/2015 2:35 +10915401,No Maintenance Intended,http://unmaintained.tech/,4,2,ingve,1/16/2016 14:56 +11500344,Messenger-Bot: A Node Client for the Facebook Messenger Platform,https://github.com/remixz/messenger-bot,28,9,guifortaine,4/14/2016 21:06 +10362809,Ask HN: Home network for 1G fiber internet,,4,3,heuermh,10/9/2015 19:47 +12314472,Rust conversion of Pinterest C program results in roughly 2x speedup,https://github.com/pinterest/mysql_utils/pull/7,5,1,xfactor973,8/18/2016 17:22 +11022447,Shared genetics between cognitive functions and physical and mental health,http://www.nature.com/mp/journal/vaop/ncurrent/full/mp2015225a.html,62,8,gwern,2/2/2016 20:51 +10714048,How to Become a Good Theoretical Physicist,http://www.staff.science.uu.nl/~gadda001/goodtheorist/,208,75,tokenadult,12/10/2015 22:29 +12435050,Home chores and to-dos for working adults done weekly,http://butlerinsuits.com,2,1,ButlerinSuits,9/6/2016 11:02 +10810760,"The Same Pill That Costs $1,000 in America Sells for $4 in India",http://www.bloomberg.com/news/articles/2015-12-29/the-price-keeps-falling-for-a-superstar-gilead-drug-in-india,77,107,ghosh,12/30/2015 4:47 +11240229,Trump Tower Funded by Rich Chinese Who Invest Cash for Visas,http://www.bloomberg.com/politics/articles/2016-03-07/trump-tower-financed-by-rich-chinese-who-invest-cash-for-visas,6,6,udkl,3/7/2016 17:45 +10571629,Mirror Lake,http://katierose.itch.io/mirrorlake,22,2,jmduke,11/15/2015 22:58 +10754917,Unauthorized code in Juniper ScreenOS allows for administrative access,https://forums.juniper.net/t5/Security-Incident-Response/Important-Announcement-about-ScreenOS/ba-p/285554,271,78,tshtf,12/17/2015 22:04 +11174014,KeeWeb: Unofficial KeePass web and desktop client,https://github.com/antelle/keeweb,265,119,floriangosse,2/25/2016 12:46 +11925102,New York State Senate Passes Anti-Airbnb Bill,https://techcrunch.com/2016/06/17/airbnb-new-york-legislation/,6,1,alexlitov,6/17/2016 19:44 +11113911,Running your models in production with TensorFlow Serving,http://googleresearch.blogspot.com/2016/02/running-your-models-in-production-with.html?m=1,170,18,hurrycane,2/16/2016 23:18 +11986828,NetBox DigitalOcean's IPAM and DCIM tool open sourced,https://github.com/digitalocean/netbox,10,4,yankcrime,6/27/2016 15:34 +10844392,"Giant ape went extinct 100,000 years ago, due to its inability to adapt",http://www.sciencedaily.com/releases/2016/01/160104080854.htm,30,26,diodorus,1/5/2016 17:07 +10710055,What we're doing wrong? Why are people not converting?,http://www.musedapp.com,5,3,kevinelliott,12/10/2015 11:14 +11019340,Fan-In,https://codahale.com/fan-in/,13,1,jsnell,2/2/2016 13:42 +10253486,SlackWithUs a curated list of 30+ regional startup-focused slack communities,http://slackwithus.com,9,2,monting,9/21/2015 16:48 +10442755,Making Arteries with an Off-The-Shelf 3D Printer,http://www.bloomberg.com/news/articles/2015-10-23/3d-printer-hacked-to-make-human-arteries,8,2,rutenspitz,10/24/2015 7:10 +11065376,On Security and PHP,http://devzone.zend.com/7052/on-security/,3,3,cujanovic,2/9/2016 14:17 +12547558,Why Do Anything? A Meditation on Procrastination,http://www.nytimes.com/2016/09/18/opinion/why-do-anything.html?utm_source=pocket&utm_medium=email&utm_campaign=pockethits&_r=0,54,25,prostoalex,9/21/2016 12:30 +11297599,Show HN: StringBean 4K Featherweight Framework,http://stringbean-lang.com/,28,12,Narutu,3/16/2016 14:32 +12524261,Hacking into the Federal Reserve,https://asciinema.org/a/2fulxh2to46q8rn4blpzr33j6,2,1,amingilani,9/18/2016 6:59 +11477170,Apply HN: ATM Making ads interesting and worth watching,,2,3,ramakanthgade,4/12/2016 3:59 +11995966,The Tyranny of the Clock Ivan Sutherland (2012) [pdf],http://worrydream.com/refs/Sutherland%20-%20Tyranny%20of%20the%20Clock.pdf,84,29,mr_tyzic,6/28/2016 18:00 +12538250,This is not how you treat an issue report,https://github.com/nodesource/distributions/issues/358,2,2,SZJX,9/20/2016 9:46 +10846977,'We strive to minimize the financial value of the company.',http://dna.crisp.se/docs/ownership-model.html,2,1,mozboz,1/5/2016 23:24 +12198561,iPad-only is the new desktop Linux,https://medium.com/@chipotlecoyote/ipad-only-is-the-new-desktop-linux-de88b61b6d99,43,56,tdurden,7/31/2016 19:59 +11763733,Finally: Brainfuck is ready for the mainframe/enterprise,,20,11,flok,5/24/2016 17:43 +10546541,Is SQL a good place for business logic?,http://enterprisecraftsmanship.com/2015/11/11/is-sql-a-good-place-for-business-logic/,3,3,vkhorikov,11/11/2015 13:31 +10916510,Vietnam critics end was the start of familys pain,https://www.washingtonpost.com/local/vietnam-critics-end-was-the-start-of-familys-pain/2015/11/01/b50e1d54-7cdf-11e5-b575-d8dcfedb4ea1_story.html,23,13,smollett,1/16/2016 19:43 +11007397,Ask HN: Is a second master's degree worth it?,,5,7,mirchada776,1/31/2016 18:44 +11592702,Whitepages Caller ID is now Hiya,http://www.hiya.com,1,1,hiya,4/28/2016 23:37 +11146371,Whats Really Going on with Student Loan Debt Collection in Texas?,http://www.texasmonthly.com/the-daily-post/whats-really-going-on-with-student-loan-debt-collection-in-texas/#sthash.3Ctva1pL.dpuf,4,1,fezz,2/21/2016 20:36 +12147135,Notes on notation and thought,https://github.com/hypotext/notation,130,17,ingve,7/22/2016 22:11 +10435016,Surveillance planes spotted in the sky for days after West Baltimore rioting,https://www.washingtonpost.com/business/technology/surveillance-planes-spotted-in-the-sky-for-days-after-west-baltimore-rioting/2015/05/05/c57c53b6-f352-11e4-84a6-6d7c67c50db0_story.html,40,66,bootload,10/22/2015 20:58 +10498727,The right time to turn in your keyboard as a coder/founder,http://thebln.com/talk/turn-keyboard-whats-valuable-use-time-founder/,5,1,gloves,11/3/2015 10:58 +11797089,Mugger arrested after victim spots him on Facebooks people you may know,http://bgr.com/2016/05/29/robbery-suspect-facebook-victim-people-you-may-know/,11,2,yq,5/29/2016 17:02 +11311374,Domino's trials pizza delivery by robot,http://www.telegraph.co.uk/technology/2016/03/18/dominos-trials-pizza-delivery-by-robot/,5,2,jonbaer,3/18/2016 12:46 +12476696,A journey along Japans oldest pilgrimage route,http://www.ft.com/cms/s/2/335e5286-7484-11e6-b60a-de4532d5ea35.html?siteedition=intl,53,10,lermontov,9/12/2016 1:47 +10327356,Instagram CEO Kevin Systrom,http://www.theguardian.com/technology/2015/oct/02/instagram-kevin-systrom-interview-working-on-time-travel,19,2,AndrewKemendo,10/4/2015 12:35 +12299377,Show HN: Googley Eyes Firefox Addon Watch Google Watch You,https://addons.mozilla.org/en-US/firefox/addon/googley-eyes/,7,1,projproj,8/16/2016 18:17 +12015436,Linux Assembly How-to,http://www.tldp.org/HOWTO/Assembly-HOWTO/index.html,99,18,rspivak,7/1/2016 12:27 +10474355,Report says Uber surge pricing has a twist: some drivers flee,http://www.sfgate.com/business/article/Report-says-Uber-surge-pricing-has-a-twist-some-6597012.php,4,1,aceperry,10/29/2015 21:16 +10483657,Crypto Rebels (1993),http://www.wired.com/1993/02/crypto-rebels/,19,1,dreamdu5t,10/31/2015 18:49 +12008756,MA House Votes to Pass Noncompete Reform Bill,http://bostinno.streetwise.co/2016/06/29/mass-house-of-representatives-vote-on-noncompete-reform/,1,1,lsllc,6/30/2016 14:26 +11006376,Ask HN: How much you spend on rent?,,1,6,Raed667,1/31/2016 13:52 +11642653,'Boaty McBoatface' Ship to Be Called RRS Sir David Attenborough,http://www.theguardian.com/environment/2016/may/06/boaty-mcboatface-ship-to-be-called-rrs-sir-david-attenborough,3,2,okket,5/6/2016 9:16 +11115931,"Social media is broken, palpiction tries to fix it",https://palpiction.herokuapp.com/home.html#blog,6,9,gaina,2/17/2016 7:12 +11418147,They'll Have to Rewrite the Textbooks: Brain Directly Connected to Immune System,https://news.virginia.edu/illimitable/discovery/theyll-have-rewrite-textbooks?utm_source=UFacebook&utm_medium=social&utm_campaign=news,7,1,jrs235,4/3/2016 22:42 +10949978,Show HN: HNLive Hacker News in Real Time,http://hnlive.cf,51,25,max0563,1/22/2016 1:05 +11807140,Facebook said images of dead girl didn't violate the site's terms and conditions,http://www.dailymail.co.uk/news/article-3617200/Man-killed-girlfriend-posted-pictures-dead-body-covered-blood-Facebook-site-refused-36-hours-didn-t-violate-terms-conditions.html,2,1,neverminder,5/31/2016 15:35 +10429307,"Introducing OpenCypher, the open graph query language project",http://neo4j.com/blog/open-cypher-sql-for-graphs/,5,1,ryguyrg,10/21/2015 22:40 +11158991,Who Else Forgets to Try Force Touch? How ? Watch Should Copy Restroom Faucets,https://medium.com/@adajos/who-else-forgets-to-try-force-touch-2635f3741b10#.brp1qulcv,1,1,adajos,2/23/2016 14:30 +10801502,Our sons' student debt is delaying our retirement,http://money.cnn.com/2015/11/30/retirement/student-debt-delaying-retirement/index.html,46,105,option_greek,12/28/2015 15:27 +10654930,How much CO2 the Earth is churning out in real time,http://www.bloomberg.com/graphics/carbon-clock/,1,1,blondie9x,12/1/2015 12:54 +10669077,"Data normalization reconsidered, Part 1",http://www.ibm.com/developerworks/data/library/techarticle/dm-1112normalization/,9,4,ern,12/3/2015 11:42 +10536683,Judge Deals a Blow to N.S.A. Data Collection Program,http://www.nytimes.com/2015/11/10/us/politics/judge-deals-a-blow-to-nsa-phone-surveillance-program.html,207,35,daegloe,11/9/2015 23:53 +12344843,Google keeps ex-Googlers close by investing in their startups,http://www.recode.net/2016/8/22/12587644/google-investing-startups-orkut,47,13,subpar,8/23/2016 16:10 +12330689,The Amiga Boing Ball Explained,http://amiga.lychesis.net/artist/DaleLuck/Boing.html,142,56,doener,8/21/2016 12:32 +11142810,China Surpasses Japan to Become Worlds 2nd Richest Nation,http://www.chinasmack.com/2015/stories/china-surpasses-japan-to-become-worlds-2nd-richest-nation.html,8,1,s84,2/21/2016 1:11 +11295151,A Different Darkness at Noon,http://www.nybooks.com/articles/2016/04/07/a-different-darkness-at-noon/,32,6,lermontov,3/16/2016 5:02 +11130162,The Artificial Universe That Creates Itself,http://www.theatlantic.com/technology/archive/2016/02/artificial-universe-no-mans-sky/463308/?single_page=true,27,2,netinstructions,2/18/2016 23:16 +12006347,"Show HN: Stereoscopic, full 360 VR from one camera",https://www.youtube.com/watch?v=XzNk-qGZAJI,1,1,opticalflow,6/30/2016 3:14 +10901411,Were disrupting IKEA: Hootsuite CEO launches $25 stand-up desk,http://www.theglobeandmail.com/report-on-business/small-business/startups/were-disrupting-ikea-canadian-entrepreneur-launches-25-stand-up-desk/article28155871/?service=mobile,4,2,kenrose,1/14/2016 14:05 +12325038,PHP-ML Machine Learning Library for PHP,https://github.com/php-ai/php-ml/blob/develop/README.md,5,1,retreatguru,8/20/2016 3:30 +11093458,Show HN: My own tiny React-like rendering engine,https://github.com/guisouza/tembo,21,14,guiCoder,2/13/2016 10:29 +11346934,Hydrogen car smashes world records in six-day demonstration around M25,http://www.businessgreen.com/bg/news/2451982/hydrogen-car-smashes-world-records-in-six-day-demonstration-around-m25,2,1,henriquemaia,3/23/2016 18:22 +10750324,Ask HN: In what way niki.ai and Operator can change future of commerce?,,2,1,nikitarajdan,12/17/2015 8:59 +10320981,BitsBox monthly programming kit for children,https://bitsbox.com/,2,1,peter303,10/2/2015 20:11 +12357863,US condemns EU over plan to demand millions from Apple in unpaid taxes,http://www.independent.co.uk/news/business/news/apple-tax-probe-eu-us-treasury-unpaid-taxes-amazon-starbucks-fiat-a7208681.htmlhttp://www.independent.co.uk/news/business/news/apple-tax-probe-eu-us-treasury-unpaid-taxes-amazon-starbucks-fiat-a7208681.html,6,1,markvdb,8/25/2016 9:48 +11850241,Finally fired after 6 years,https://www.reddit.com/r/cscareerquestions/comments/4km3yc/finally_fired_after_6_years/,41,32,silkodyssey,6/6/2016 20:50 +10451622,Show HN: Get unlimited small changes to your Shopify store for $99/month,https://shopmanager.co/,7,5,jblesage,10/26/2015 14:25 +12141514,Pandemonium Ensues as Nvidia CEO Drops TITAN X at Stanford Deep Learning Meetup,https://blogs.nvidia.com/blog/2016/07/21/titan-x-deep-learning/,2,1,bcaulfield,7/22/2016 3:16 +11853983,End to Democratic Primary:Anonymous Super-Delegates Declare Winner Through Media,https://theintercept.com/2016/06/07/perfect-end-to-democratic-primary-anonymous-super-delegates-declare-winner-through-media/,29,17,etiam,6/7/2016 12:32 +11653116,New worm can propagate between power-plant controllers without a host PC,http://www.theregister.co.uk/2016/05/05/daisychained_research_spells_malware_worm_hell_for_utilities?mt=1462693149073,56,10,DyslexicAtheist,5/8/2016 7:48 +10863182,Amazon Enters Semiconductor Business with Its Own Branded Chips,http://www.wsj.com/article_email/amazon-enters-semiconductor-business-with-its-own-branded-chips-1452124921-lMyQjAxMTE2NDAwNzgwODcxWj,3,1,ghosh,1/8/2016 5:48 +11334074,Ask HN: What's the best platform for E-Commerce?,,2,2,stevofolife,3/22/2016 2:42 +12024198,Sun's galactic journey linked to mass extinctions (2013),http://www.abc.net.au/science/articles/2013/10/02/3857090.htm,48,20,DrScump,7/2/2016 23:38 +10208493,"FBI, Intel Chiefs Decry Deep Cynicism Over Cyber Spying Programs",http://arstechnica.com/tech-policy/2015/09/fbi-intel-chiefs-decry-deep-cynicism-over-cyber-spying-programs/,5,1,kushti,9/12/2015 16:33 +11904462,Facebook executive: Your News Feed will likely be all video in 5 years,http://www.niemanlab.org/2016/06/facebook-executive-your-news-feed-will-likely-be-all-video-in-five-years/,15,26,danso,6/14/2016 19:05 +10984383,The wisdom teeth industry is probably a scam,http://fusion.net/story/252916/should-i-get-my-wisdom-teeth-removed-no,73,92,thebent,1/27/2016 23:16 +11459868,Today is 2²/2³/2?,,33,6,sinak,4/9/2016 4:14 +12112352,Google will use Chrome browsing data for ad tailoring,https://twitter.com/phlsa/status/754337623964053504,319,200,dchest,7/17/2016 23:09 +12519503,The iPhone's new chip should worry Intel,http://www.theverge.com/2016/9/16/12939310/iphone-7-a10-fusion-processor-apple-intel-future,196,243,Tomte,9/17/2016 7:05 +11645175,VXHeaven: Source code for classic viruses,https://vxheaven.org/src.php,121,13,adamnemecek,5/6/2016 16:55 +11206501,Bin Laden wanted to fight climate change- who would guess!,http://www.reuters.com/article/us-usa-binladen-climatechange-idUSKCN0W35MS,12,3,thetruthseeker1,3/1/2016 22:07 +11662681,Worlds first anti-ageing drug could see humans live to 120,http://www.telegraph.co.uk/science/2016/03/12/worlds-first-anti-ageing-drug-could-see-humans-live-to-120/,22,4,phodo,5/9/2016 20:03 +12249781,Theres No Such Thing as a Protest Vote,https://medium.com/@cshirky/theres-no-such-thing-as-a-protest-vote-c2fdacabd704#.p45fxdiwg,3,2,miraj,8/8/2016 18:19 +11112854,Git Cheatsheet,http://satanas.io/cheatsheets/git/,3,1,satanas,2/16/2016 20:21 +11960104,"Uber Hacking: How we found out who you are, where you are and where you went",https://labs.integrity.pt/articles/uber-hacking-how-we-found-out-who-you-are-where-you-are-and-where-you-went/,158,14,r0t1,6/23/2016 11:03 +12492586,Threatened by Prejudices: French Revolutionary Textbooks,https://jhiblog.org/2016/09/12/threatened-by-prejudices-french-revolutionary-textbooks/,12,9,Petiver,9/13/2016 21:54 +11901496,iOS 10 will let you delete most of Apples default apps,http://arstechnica.com/apple/2016/06/ios-10-is-going-to-let-you-delete-most-of-apples-default-apps/,3,1,koolba,6/14/2016 12:17 +11606453,Prof. Frisby's Mostly Adequate Guide to Functional Programming,https://drboolean.gitbooks.io/mostly-adequate-guide/content/index.html,4,1,ingve,5/1/2016 15:10 +10677037,Free AngularJS training in Paris,http://onepoint-angularjs-1.sttc.nukomeet.com/,6,3,albanlv,12/4/2015 16:02 +11991828,A.I. downs expert human fighter pilot in dogfights,http://www.popsci.com/ai-pilot-beats-air-combat-expert-in-dogfight,6,1,abpavel,6/28/2016 6:17 +12303248,"Other half of Webhook. Collect, modify and forward",https://viasocket.com,2,2,pushpendraw,8/17/2016 8:55 +11366756,"House Bill Targets Burner Phones After Paris, Brussels Terrorist Attacks",http://www.digitaltrends.com/mobile/bill-burner-phones/,5,1,masonhensley,3/26/2016 18:23 +10195434,Fox Set to Take Majority of National Geographic,http://mobile.nytimes.com/aponline/2015/09/09/us/politics/ap-us-national-geographic-fox.html?referrer=&_r=0,18,6,sparkystacey,9/10/2015 0:01 +10366556,Super User Spark: Dotfile Management Language,,2,1,Norfair,10/10/2015 19:04 +10427084,Ask HN: Ever worked on maintaining software of which source code has been lost?,,3,3,wkoszek,10/21/2015 17:45 +10894934,"GM to launch self-driving Lyft fleet in Austin, Texas",http://mashable.com/2016/01/13/gm-lyft-autonomous-car-austin/#OipnQNcY4Sqs,3,1,pavel_lishin,1/13/2016 15:25 +11580538,TypeScript Won,https://medium.com/@basarat/typescript-won-a4e0dfde4b08#.a8e1ay4m6,121,127,SanderMak,4/27/2016 14:07 +10596086,Show HN: Community Casts A community-driven archive of tech screencasts,http://communitycasts.co/,7,3,bookerio,11/19/2015 17:31 +11638900,Everything's broken and nobody's upset (2012),http://www.hanselman.com/blog/EverythingsBrokenAndNobodysUpset.aspx,4,2,thefox,5/5/2016 19:09 +11595947,Research into the reasons for procrastination and how to stop,https://www.washingtonpost.com/news/wonk/wp/2016/04/27/why-you-cant-help-read-this-article-about-procrastination-instead-of-doing-your-job/?utm_source=pocket&utm_medium=email&utm_campaign=pockethits,198,97,DiabloD3,4/29/2016 14:32 +12224280,Startup Hiring: How a Pokémon Got Us a Googler,https://medium.com/@mohitmamoria/startup-hiring-how-a-pok%C3%A9mon-got-us-a-great-hire-7acd9a7919d5,7,1,mamoriamohit,8/4/2016 8:47 +11348844,ServerHub SSD VPS,http://serverhub.com/vps/ssd-vps,3,1,jorgecastillo,3/23/2016 22:39 +12382965,The Zinc API and pivoting before demo day,https://getputpost.co/the-zinc-api-and-pivoting-before-demo-day-5265d8493c59,35,10,gwintrob,8/29/2016 16:23 +10297722,Chromecast Audio enables wireless music streaming for your old-school speakers,http://www.theverge.com/2015/9/29/9412755/google-chromecast-audio-announced-price-release-date,17,7,kshaaban,9/29/2015 17:09 +10259800,Imgur Vulnerability Patched,http://imgur.com/blog/2015/09/22/imgur-vulnerability-patched/,13,2,mukyu,9/22/2015 16:48 +10208712,HTML5/CSS3: Advanced Topics,https://github.com/MartinChavez/HTML-CSS-Advanced-Topics,3,1,martinchavez,9/12/2015 17:47 +11009558,Turn your PC upside down to boot into Linux (2003),http://www.mini-itx.com/projects/windowsxpbox/?page=4,176,67,PascLeRasc,2/1/2016 3:34 +11810591,Ask HN: How do you sync your source tree from the host to the VM?,,3,2,chadaustin,5/31/2016 21:53 +12219529,Introducing 1Password individual subscription,https://blog.agilebits.com/2016/08/03/new-1password-hosted-service/,10,4,ropiku,8/3/2016 17:05 +10303515,Study: Some car models consuming around 50% more fuel than official results,http://www.transportenvironment.org/press/some-mercedes-bmw-and-peugeot-models-consuming-around-50-more-fuel-official-results-new-study,462,326,antr,9/30/2015 12:54 +12203836,Losing our business??we didnt see it coming,https://medium.com/@Kev_Reframed/losing-our-business-we-didnt-see-it-coming-ab08bf839882,193,73,schwuk,8/1/2016 16:43 +10886241,"Ask HN: What should I give priority, Lisp, Haskell, or the Dragon Book?",,6,12,thegenius2000,1/12/2016 8:39 +12386918,"Facebook fires trending team, and algorithm without humans goes crazy",https://www.theguardian.com/technology/2016/aug/29/facebook-fires-trending-topics-team-algorithm,27,3,bootload,8/30/2016 1:59 +10351781,Ask HN: Which of these Job Ad writing strategies do you use?,,3,1,klaut,10/8/2015 10:15 +11684189,The Fight Over the .africa Domain Name,http://spectrum.ieee.org/telecom/internet/the-fight-over-the-africa-domain-name?bt_alias=eyJ1c2VySWQiOiAiMTIzYjhlZjctODZiMy00NzFhLTg2NmYtNDhjM2E4MmEyOTgzIn0%3D&utm_source=Tech%20Alert&utm_medium=Email&utm_campaign=TechAlert_05-12-16,2,1,bpolania,5/12/2016 15:39 +12149241,A new key to understanding molecular evolution in space,http://sciencebulletin.org/archives/3573.html,4,1,upen,7/23/2016 12:10 +11016484,Experience the first website ever made,http://line-mode.cern.ch/www/hypertext/WWW/TheProject.html,10,1,daverecycles,2/1/2016 23:22 +11101102,$1B in liquid methamphetamine seized by Australian Police,http://www.abc.net.au/news/2016-02-15/more-than-1-billion-of-ice-seized/7168050,7,1,porjo,2/15/2016 2:05 +12219623,Summarizing service for Mongodb log files,https://worktheme.com/,2,1,data37,8/3/2016 17:15 +12559281,Yahoo says 500M accounts stolen,http://money.cnn.com/2016/09/22/technology/yahoo-data-breach/,3,1,polymathist,9/22/2016 19:00 +10979967,The importance of getting the right font license,http://www.bbc.co.uk/news/technology-35412978,2,4,saspiesas,1/27/2016 13:48 +11404260,Ask HN: Renegotiating Rate with Consulting Firm,,5,5,marktangotango,4/1/2016 12:22 +11517782,An app that can replace the pill,http://www.telegraph.co.uk/technology/2016/04/13/this-app-can-replace-the-pill---with-no-side-effects/,2,1,jaequery,4/18/2016 4:48 +10209786,President Obama's New 'College Scorecard' Is a Torrent of Data,http://www.npr.org/sections/ed/2015/09/12/439742485/president-obamas-new-college-scorecard-is-a-torrent-of-data,1,1,yohoho22,9/12/2015 23:43 +10405616,"Leaked Pinterest Documents Show Revenue, Growth Forecasts",http://techcrunch.com/2015/10/16/leaked-pinterest-documents-show-revenue-growth-forecasts/,72,56,prostoalex,10/17/2015 19:06 +11608491,What's the smallest change to physics required to allow magic?,http://worldbuilding.stackexchange.com/questions/40949/whats-the-smallest-change-to-physics-required-to-allow-magic,2,1,jackweirdy,5/2/2016 0:15 +10818341,The Closed Mind of Richard Dawkins,https://newrepublic.com/article/119596/appetite-wonder-review-closed-mind-richard-dawkins,6,4,mdariani,12/31/2015 16:44 +11955505,JavaScript Performance Updates in Microsoft Edge and Chakra,https://blogs.windows.com/msedgedev/2016/06/22/javascript-performance-updates-anniversary-update/,143,50,hellojs,6/22/2016 17:19 +11701419,Show HN: Movie ratings over time using the Wayback Machine,https://github.com/abrenaut/mrot,3,1,abrena,5/15/2016 16:10 +11884556,If you want to keep something private the best place to keep it is Gmail,https://charlierose.com/videos/28222,1,1,plg,6/11/2016 18:13 +11447091,FBI spills iPhone hacking secret to senators,http://www.cnet.com/news/fbi-spills-iphone-hacking-secret-to-senators/,4,1,aburan28,4/7/2016 13:35 +10737997,Encrypted EBS Boot Volumes,https://aws.amazon.com/blogs/aws/new-encrypted-ebs-boot-volumes/,9,2,tiernano,12/15/2015 14:50 +11120902,Can trees grow inside humans?,http://www.thomas-morris.uk/trees-do-not-grow-in-humans/,4,1,mrtndavid,2/17/2016 20:13 +10590014,A Back Door to Encryption Won't Stop Terrorists,http://www.bloombergview.com/articles/2015-11-18/a-back-door-to-encryption-won-t-stop-terrorists,406,266,giles,11/18/2015 19:17 +12285645,How Silicon Valley's Palantir Wired Washington,http://www.politico.com/story/2016/08/palantir-defense-contracts-lobbyists-226969,143,108,hownottowrite,8/14/2016 14:17 +11324792,Bypassing Antivirus with Ten Lines of Code,http://www.attactics.org/2016/03/bypassing-antivirus-with-10-lines-of.html,184,97,svenfaw,3/20/2016 21:38 +10682707,"Python: Generators, Coroutines, Native Coroutines and Async/Await",http://masnun.com/2015/11/13/python-generators-coroutines-native-coroutines-and-async-await.html,147,30,snw,12/5/2015 18:14 +11187835,Was Australi Witness a troll or a terrorist?,https://features.wearemel.com/how-to-prosecute-an-internet-troll-827e29c621c5,30,15,temp,2/27/2016 18:04 +11711159,"How Twitter Handles 3,000 Images per Second",http://highscalability.com/blog/2016/4/20/how-twitter-handles-3000-images-per-second.html,3,1,oolong_decaf,5/17/2016 3:12 +12451605,EU Courts; Playboy vs. GS Media: links to copyrighted work illegal if commercial,http://curia.europa.eu/juris/document/document.jsf?text=&docid=183124&pageIndex=0&doclang=EN&mode=req&dir=&occ=first&part=1&cid=736696,6,2,digitalengineer,9/8/2016 9:57 +12229208,High fructose visual programming langauge for kids,https://www.youtube.com/watch?v=LhWkR0nUd1A,2,1,DonHopkins,8/4/2016 23:40 +11326165,Johns Hopkins researchers poke a hole in Apples encryption,https://www.washingtonpost.com/world/national-security/johns-hopkins-researchers-discovered-encryption-flaw-in-apples-imessage/2016/03/20/a323f9a0-eca7-11e5-a6f3-21ccdbc5f74e_story.html,173,43,runesoerensen,3/21/2016 4:02 +12571164,Is this bug in Hacker news?,http://recordit.co/Ux5Ehs3PND,1,3,khoury,9/24/2016 14:59 +12161307,Hillary Clinton's startup tax,https://fee.org/articles/clintons-startup-tax-will-crush-new-businesses/,14,7,briandear,7/25/2016 20:18 +12209704,"Inside font-rs, a font renderer written in Rust",https://medium.com/@raphlinus/inside-the-fastest-font-renderer-in-the-world-75ae5270c445#.uttzi87qp,430,115,beefsack,8/2/2016 13:21 +10697939,How Elmo Ruined Sesame Street,http://kotaku.com/how-elmo-ruined-sesame-street-1746504585,348,187,bufordsharkley,12/8/2015 17:39 +11731401,Linux 4.6: What's new and improved,http://www.zdnet.com/article/whats-new-in-linux-4-6-release-improved-security/,40,7,CrankyBear,5/19/2016 16:30 +11224956,H.264 is supported in WebRTC from Chrome 50,http://www.rtc.news/posts/pawtYYfpmsG6Zed3W/h-264-is-supported-in-webrtc-from-chrome-50-here-s-how-to,128,46,arnaudbud,3/4/2016 16:48 +12008957,Show HN: Learn the Amazon Echo with Python,https://alexatutorial.com/,7,1,johnwheeler,6/30/2016 14:56 +10586228,Broken Performance Tools [pdf],http://www.brendangregg.com/Slides/QCon2015_Broken_Performance_Tools.pdf,3,4,yunong,11/18/2015 6:02 +10370048,N. W. Ayer and Son,https://en.wikipedia.org/wiki/N._W._Ayer_%26_Son,14,1,luu,10/11/2015 17:07 +12310342,"Power outages and low internet bandwidth, still manages to build tech company",https://stories.devacademy.la/against-all-odds-building-a-tech-company-outside-of-a-tech-mecca-e9599d0d691e#.uocbdhpoi,2,1,silvialisam,8/18/2016 3:52 +12091812,500 Lines or Less Is Available Now,http://aosabook.org/blog/2016/07/500-lines-or-less-is-available-now/,1,1,e12e,7/14/2016 5:21 +11961338,Diving into Radare2,http://blog.devit.co/diving-into-radare2/,36,7,joachimmm,6/23/2016 14:53 +11563789,"Buy Low, Sell High: The Worst Financial Advice of All Time",https://outlookzen.wordpress.com/2016/04/25/buy-low-sell-high-the-worst-financial-advice-of-all-time/,3,2,whack,4/25/2016 12:37 +12509290,Julian Assange Offers to Surrender to U.S. If Chelsea Manning Is Released,http://www.dailydot.com/layer8/julian-assange-obama-chelsea-manning/,55,3,fraqed,9/15/2016 19:54 +11142618,The Hydra-Light a Salt Water Lantern and Charger,https://www.kickstarter.com/projects/1993414184/the-hydra-light-pl-500-salt-water-energycell-lante,4,1,MrBlue,2/21/2016 0:09 +10479292,"Too many business ideas, but lack the focus to execute on one?",,6,4,dsygner,10/30/2015 17:46 +11063700,"Why do Windows functions begin with a pointless MOV EDI, EDI instruction? (2011)",https://blogs.msdn.microsoft.com/oldnewthing/20110921-00/?p=9583,136,31,mau,2/9/2016 7:23 +12196520,Among the Lizard People: Silent Connections at the Reptile Expo,https://theawl.com/among-the-lizard-people-99826d6476e#.qunz2vlc6,34,10,samclemens,7/31/2016 11:37 +10889064,International Search Results Validator,http://www.serplook.com/,1,1,thelostagency,1/12/2016 18:02 +12055492,Dallas Police Used Robot with Bomb to Kill Ambush Suspect: Mayor,http://www.nbcnews.com/storyline/dallas-police-ambush/dallas-police-used-robot-bomb-kill-ambush-suspect-mayor-n605896,65,124,uptown,7/8/2016 13:58 +11023110,Ask HN: Why does Hacker News's website look like shit?,,3,6,crispytx,2/2/2016 22:15 +10276103,Mathematical and Logic Puzzles,http://martin-gardner.org/PuzzleBooks.html#MLPC,43,3,gkop,9/25/2015 2:39 +11407156,Ask HN: Does anyone else hate April Fools' Day?,,2,3,victorhugo31337,4/1/2016 18:16 +11662269,Artificial Intelligence Markup Language,https://en.wikipedia.org/wiki/AIML,4,1,max_,5/9/2016 19:06 +10829716,Want to know what people really think of you?,http://whatiswrongwith.me/,3,1,nafizh,1/3/2016 6:03 +11705878,Open plan offices are basically terrible in every way (2015),https://tommorris.org/posts/9403,18,1,gortok,5/16/2016 12:40 +10682307,Fermilab Experiment Finds No Evidence That We Live in a Hologram,http://gizmodo.com/fermilab-experiment-finds-no-evidence-that-we-live-in-a-1746130140,70,11,ourmandave,12/5/2015 16:23 +11077127,Switch.co finally has a native mac app,https://www.switch.co/download,2,1,heavymark,2/10/2016 23:39 +11840136,Mylife-mode,https://github.com/narendraj9/mylife-mode,2,2,narendraj9,6/5/2016 8:32 +10794026,Baby's First Garbage Collector (2013),http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/,48,17,rspivak,12/26/2015 12:59 +11907350,Things I hate about Git,https://stevebennett.me/2012/02/24/10-things-i-hate-about-git/,2,3,pmoriarty,6/15/2016 5:39 +11777534,"GoDaddy launches Flare, a community app for sharing and rating business ideas",http://venturebeat.com/2016/05/26/godaddy-flare/,2,2,barlog,5/26/2016 12:57 +12120741,Show HN: Metatask a simple business process management app,,2,4,metatask,7/19/2016 9:23 +11063339,State of Mobile Networks: USA,http://opensignal.com/reports/2016/02/usa/state-of-the-mobile-network/,13,6,prostoalex,2/9/2016 5:35 +11455714,Burr/Feinstein Anti-Encryption Bill It's More Ridiculous Than Expected,https://www.techdirt.com/articles/20160408/08381934131/burr-feinstein-release-their-anti-encryption-bill-more-ridiculous-than-expected.shtml,36,6,cgtyoder,4/8/2016 16:08 +12265698,Death by HSTS preload copy/paste,https://scotthelme.co.uk/death-by-copy-paste/,7,1,carey,8/11/2016 0:55 +12257825,How does knowledge sharing take place inside your software development team?,,4,4,backtobasics,8/9/2016 21:27 +11210208,CSLA.Net move to MIT license,https://github.com/MarimerLLC/csla/issues/532,2,1,wilsonfiifi,3/2/2016 14:50 +11588305,PGHoard: Tools for making PostgreSQL backups to cloud object storages,http://blog.aiven.io/2016/04/postgresql-cloud-backups-with-pghoard.html,72,13,melor,4/28/2016 12:34 +11175550,Continuous Integration with Travis CI Josh Kalderimis (PTP014),http://pythontesting.net/podcast/travis-ci-josh-kalderimis/,1,1,variedthoughts,2/25/2016 16:36 +11193568,"See That Billboard? It May See You, Too",http://www.nytimes.com/2016/02/29/business/media/see-that-billboard-it-may-see-you-too.html,5,2,doctorshady,2/29/2016 4:23 +11333448,Essential Copying and Pasting from Stack Overflow,https://www.gitbook.com/book/tra38/essential-copying-and-pasting-from-stack-overflow/details,111,27,tariqali34,3/22/2016 0:24 +10371076,Show HN: Pipes thin wrapper around PHP SPL iterators and generators,https://github.com/tacone/pipes,4,1,tacone,10/11/2015 21:12 +11185587,"Finally, disruption comes to Ponzi scheme industry",http://www.ponzi.io,3,1,berniemadeoff,2/27/2016 1:27 +11442060,Seattle is putting up $50B for transit,http://www.thetransportpolitic.com/2016/04/06/youve-got-50-billion-for-transit-now-how-should-you-spend-it/,129,201,jseliger,4/6/2016 21:00 +10214939,"For Silicon Valley Hopefuls, Is College Irrelevant?",https://medium.com/bright/for-silicon-valley-hopefuls-is-college-irrelevant-89ffb15dbe82,41,67,sarika008,9/14/2015 13:33 +12007288,The Curious Case of the Bent Blade,https://blog.prototypr.io/the-curious-case-of-the-bent-blade-81986f2c65b0#.3sbkp3n7h,3,2,jacobwilson,6/30/2016 8:34 +10722967,Libreboot T400 laptop now FSF-certified to respect your freedom,https://www.fsf.org/news/libreboot-t400-laptop-now-fsf-certified-to-respect-your-freedom,7,7,awqrre,12/12/2015 15:14 +12346289,Show HN: Checkout my new startup Makerloom at www.makerloom.com,,1,1,ogezi,8/23/2016 18:40 +10408140,Is the VW emissions-test bypass a consequence of developer culture?,http://www.newyorker.com/business/currency/an-engineering-theory-of-the-volkswagen-scandal,1,2,OliverJones,10/18/2015 13:16 +10770195,Kotlin for Android Developers,http://www.javaadvent.com/2015/12/kotlin-android.html,59,36,ingve,12/21/2015 8:33 +11714895,Google applying to patent deep neural network (LSTM) for machine translation,http://www.freepatentsonline.com/y2016/0117316.html,133,72,shmageggy,5/17/2016 16:23 +12113633,WebUSB connects devices directly to the browser via the web,http://react-etc.net/entry/webusb-connects-devices-directly-to-the-browser-via-the-web,5,1,velmu,7/18/2016 7:23 +10304474,Simple exploit completely bypasses Macs malware Gatekeeper,http://arstechnica.com/security/2015/09/drop-dead-simple-exploit-completely-bypasses-macs-malware-gatekeeper/,12,1,jeo1234,9/30/2015 15:03 +10662407,Taskwarrior TODO List from Your Command Line,https://taskwarrior.org/?rand=12084,53,25,enesunal,12/2/2015 11:53 +10808739,A problem with LLVM's undef,http://www.playingwithpointers.com/problem-with-undef.html,30,4,ingve,12/29/2015 20:04 +11198918,Ask HN: What to do when manager starts forcing people out?,,6,1,THRWAWA20160222,2/29/2016 21:55 +12565942,"Convert scans of handwritten notes to beautiful, compact PDFs",https://github.com/mzucker/noteshrink,4,1,hitr,9/23/2016 16:42 +10656242,£1984: does a cashless economy make for a surveillance state?,http://www.theguardian.com/sustainable-business/2015/sep/30/1984-does-a-cashless-economy-make-for-a-surveillance-state,17,2,kawera,12/1/2015 15:53 +11856955,SpiderOak Semaphor [video],https://spideroak.com/solutions/semaphor,13,13,artsandsci,6/7/2016 19:13 +11954497,Cognitive roadblocks to reconciling merit and diversity,https://hbr.org/2016/07/we-just-cant-handle-diversity,33,34,wallflower,6/22/2016 15:06 +11163850,Daily Fantasy Boom Becomes a Nightmare. Now What?,http://recode.net/2016/02/23/the-daily-fantasy-boom-turned-into-a-nightmare-now-what-fanduel-ceo-nigel-eccles-explains/,2,1,betterturkey,2/24/2016 1:34 +10546805,An Apple That Never Browns,http://www.buzzfeed.com/stephaniemlee/uncommon-core#.mhvrXw5ZN,15,2,gry,11/11/2015 14:31 +12145183,An Enormous Green Blob Just Bubbled Out of a Storm Drain in Utah,http://gizmodo.com/an-enormous-green-blob-just-bubbled-out-of-a-storm-drai-1784135139,3,2,lando2319,7/22/2016 17:37 +12487153,Show HN: Prototype your Slack bot,https://walkiebot.co/,15,3,jan_g,9/13/2016 11:43 +11395262,"$820,000 of funding, despite being scientifically impossible",http://www.iflscience.com/technology/artificial-gills-underwater-breathing-device-has-820000-funding-despite-being,13,4,squiggy22,3/31/2016 5:57 +11430779,SublimeGit is going open source,https://github.com/SublimeGit/SublimeGit#sublimegit,3,1,wickchuck,4/5/2016 14:49 +11948445,Redesign Hacker News,https://medium.com/designed-thought/redesign-hacker-news-f3af65d70668,6,2,seanlinehan,6/21/2016 19:02 +11127862,Apple Apologizes and Updates iOS to Restore iPhones Disabled by Error 53,http://techcrunch.com/2016/02/18/apple-apologizes-and-updates-ios-to-restore-iphones-disabled-by-error-53/,400,193,aj_icracked,2/18/2016 18:13 +11251907,FTP Must die the technical explanation,http://mywiki.wooledge.org/FtpMustDie,46,84,aurelien,3/9/2016 9:36 +10534690,Ask HN: What project are you most proud of?,,30,27,tech_crawl_,11/9/2015 18:14 +10834549,Wired for gaming: Brain differences in compulsive video game players,http://www.sciencedaily.com/releases/2015/12/151221194124.htm,32,12,HugoDaniel,1/4/2016 8:33 +10575511,"Anonymous declares 'war' on ISIS, vows cyberattacks",http://www.foxnews.com/tech/2015/11/16/anonymous-declares-war-on-isis-vows-cyberattacks.html?intcmp=hpbt1,7,3,smk11,11/16/2015 16:58 +11532239,BMW Loses Core Development Team of Its I3 and I8 Electric Vehicle Line,http://www.wsj.com/articles/bmw-loses-core-development-team-of-its-i3-and-i8-electric-vehicle-line-1461086049?mod=e2tw,131,122,jseliger,4/20/2016 4:23 +11703128,How to Set Up Two-Factor Authentication for Login and Sudo,https://www.linux.com/learn/how-set-2-factor-authentication-login-and-sudo,139,38,lobo_tuerto,5/15/2016 22:41 +12031854,"Show HN: 10,000+ places to work from near you",http://placestowork.co/?ref=hn,14,1,pieterhg,7/4/2016 17:11 +12534712,Tips for Getting Strangers to Give You Money Customer Acquisition,http://jeremyaboyd.com/getting-strangers-to-give-you-money/,1,1,jermaustin1,9/19/2016 21:07 +12344482,Agencies seek solutions to illegal transient rentals,http://keysnews.com/node/76977,2,1,petethomas,8/23/2016 15:27 +10844801,NSA Targeted The Two Leading Encryption Chips,https://theintercept.com/2016/01/04/a-redaction-re-visited-nsa-targeted-the-two-leading-encryption-chips/,26,1,jonbaer,1/5/2016 18:04 +12349781,What I Learned from a Successful Launch,https://sungwoncho.io/lessons-from-successfully-launching-remotebase/,3,1,stockkid,8/24/2016 4:59 +10698017,Guide to the Largest Ocean Carriers in the World,https://www.flexport.com/blog/who-are-the-largest-ocean-carriers/,31,18,danwyd,12/8/2015 17:50 +10948387,Why I bought my company back,https://medium.com/@Sortable/why-i-bought-my-company-back-4494e8a73530#.s1ujd6163,21,2,christopherreid,1/21/2016 21:10 +11034265,"Show HN: A news aggregator service curated by the leading experts in tech, AI",http://forereads.com,14,8,cam_pj,2/4/2016 14:57 +10652365,"Korean County Achieves Its Goal: Less Birth Control, More Babies",http://www.nytimes.com/2015/12/01/world/asia/korean-county-achieves-its-goal-less-birth-control-more-babies.html,27,6,awl130,11/30/2015 22:29 +12497202,Ask HN: What are some well documented ReactJS applications?,,18,5,whicks,9/14/2016 14:31 +10267689,Traceroute -m 255 bad.horse,,20,4,FabianBeiner,9/23/2015 19:53 +11296460,Show HN: Procedural Voxel Rendering in WebGL,http://guillaumechereau.github.io/goxel/,141,19,guillaumec,3/16/2016 11:24 +10304563,GitHub and Trello: Integrate Your Commits,http://blog.trello.com/github-and-trello-integrate-your-commits/,5,1,dodger,9/30/2015 15:15 +11374222,Learn something behind OpenGL,https://github.com/CallMeZhou/Puresoft3D,2,1,agedboy,3/28/2016 13:52 +12308997,Checking in on Chat Bots,http://avc.com/2016/08/checking-in-on-chat-bots/,4,2,brianchu,8/17/2016 22:35 +12062925,"Stephen Wolfram's New Book, Idea Makers",http://blog.stephenwolfram.com/2016/07/idea-makers-a-book-about-lives-and-ideas/,5,1,alok-g,7/9/2016 19:38 +12078676,Please confirm 2nd gen Intel bugginess in YMM overlapping,,8,4,Georgi_Kaze,7/12/2016 13:12 +10483354,GNU Hurd 0.7 has been released,https://www.gnu.org/software/hurd/news/2015-10-31-releases.html,208,111,vezzy-fnord,10/31/2015 17:28 +12319083,The importance of visual design localisation,https://medium.com/carwow-product-engineering/lost-in-translation-the-importance-of-visual-design-localisation-b75586eec030,16,7,Fuffidish,8/19/2016 10:31 +10543320,Show HN: Sodocan.js: Documentation Made Easy,http://www.sodocanjs.com/,52,39,serrisande,11/10/2015 23:07 +10690881,Sinclair Acquired and Will Relaunch Mobile News Site Circa,http://www.wsj.com/articles/sinclair-acquired-and-will-relaunch-mobile-news-site-circa-1449506665,3,1,herbertlui,12/7/2015 17:24 +11933305,Good News Hidden in the Data: Todays Children Are Healthier,http://www.nytimes.com/2016/06/19/upshot/adults-may-be-dying-younger-but-children-are-getting-healthier.html?ref=opinion,51,12,pavornyoh,6/19/2016 15:37 +12561076,"Next generation of software engineers need training, not retraining",http://www.cio.com/article/3122964/careers-staffing/next-generation-of-software-engineers-need-training-not-retraining.html,2,2,kbredemeier,9/22/2016 23:05 +10454326,RMS: My Lisp Experiences and the Development of GNU Emacs (2002),http://www.gnu.org/gnu/rms-lisp.en.html,5,1,prakashk,10/26/2015 20:43 +11249903,Ask HN: How do I tell SO that its impractical to be a temp non-mobile developer?,,3,1,hnthrowaway488,3/9/2016 0:19 +10754718,The depressed programmer,https://medium.com/@santiagobasulto/the-depressed-programmer-49076d8b33f0,4,4,santiagobasulto,12/17/2015 21:32 +10564318,87-year-old holocaust denier sentenced to 10 months in jail,http://news.yahoo.com/holocaust-denying-nazi-grandma-gets-10-months-jail-102136724.html,2,2,soohyung,11/14/2015 3:33 +10535840,What's going on with Google robotics?,http://www.businessinsider.com/whats-going-on-with-google-robotics-2015-11,94,54,e15ctr0n,11/9/2015 21:04 +10708147,AWS Price List API,https://aws.amazon.com/blogs/aws/new-aws-price-list-api/,8,1,jeffbarr,12/10/2015 1:03 +12311869,Volvo and Uber team up to develop self-driving cars,http://www.reuters.com/article/us-volvo-uber-idUSKCN10T12B,4,1,cocoflunchy,8/18/2016 12:16 +10246429,"The Good, the Bad, and the Ugly: The Unix Legacy [pdf] (2001)",http://herpolhode.com/rob/ugly.pdf,19,4,spenczar5,9/20/2015 2:59 +10971318,Why one company set up employees on blind dates,http://www.fastcompany.com/3055379/work-smart/why-one-company-sets-employees-up-on-blind-dates,6,1,hannele,1/26/2016 1:26 +11386151,Agricultural fastest growing robotic sector,http://www.eetimes.com/document.asp?doc_id=1329273,78,27,rezist808,3/30/2016 0:39 +11042902,A revenge Twitter account powered by a Haskell robot,https://github.com/seanhess/dont-fly-alaska-air,2,1,embwbam,2/5/2016 17:22 +12343890,"Pokémon Go loses its luster, sheds more than 10M users",http://arstechnica.com/gaming/2016/08/pokemon-go-sheds-more-than-10m-users/,209,241,shawndumas,8/23/2016 14:18 +11398983,Ask HN: Why use CoreOS and what are its advantages?,,7,1,kishansundar,3/31/2016 17:37 +12480703,Ember Daily Tip 75: Are you sure?,http://www.emberdaily.tips/2016/09/12/75-are-you-sure,2,2,eibrahim,9/12/2016 15:47 +10854422,This supersized drone will fly you to work (or anywhere),http://www.engadget.com/2016/01/06/184-delivery-drone-for-people/,4,1,y0ghur7_xxx,1/6/2016 22:38 +11895402,Meta (YC S13) raises $50M series B,http://techcrunch.com/2016/06/13/meta-raises-another-50m-as-it-gears-up-for-the-next-version-of-its-ar-headset-and-china/,26,9,svig,6/13/2016 17:01 +10615533,Show HN: Java multicore intelligence,HTTPS://github.com/keppel/pinn,1,2,sevzi7,11/23/2015 16:45 +12338441,"TXR: An Original, New Programming Language for Convenient Data Munging",http://www.nongnu.org/txr/,4,2,qwertyuiop924,8/22/2016 18:48 +10909884,Uber Is Raising More Money from Rich People,http://www.bloombergview.com/articles/2016-01-15/uber-is-raising-more-money-from-rich-people,6,1,tinkerrr,1/15/2016 15:39 +12352587,How AI and Machine Learning Work at Apple,https://backchannel.com/an-exclusive-look-at-how-ai-and-machine-learning-work-at-apple-8dbfb131932b,328,143,firloop,8/24/2016 15:10 +10792182,NASA Moves Closer to Building a 3-D Printed Rocket Engine,http://www.nasa.gov/centers/marshall/news/news/releases/2015/piece-by-piece-nasa-team-moves-closer-to-building-a-3-d-printed-rocket-engine.html,42,23,espeed,12/25/2015 20:01 +11745166,Ask HN: Why not invest in random companies and hire random employees?,,7,8,baron816,5/21/2016 16:15 +10517867,Cool Startup Product Angee (Amazon Echo Style Home Security),https://www.kickstarter.com/projects/tomtu/angee-the-first-truly-autonomous-home-security-sys,1,1,hongkongkiwi,11/6/2015 4:41 +11464542,Millennial Employees Confound Big Banks,http://www.wsj.com/articles/millennial-employees-confound-big-banks-1460126369,19,15,brianchu,4/10/2016 2:21 +11459243,The SpaceX Falcon 9 User Guide [pdf],http://www.spacex.com/sites/spacex/files/falcon_9_users_guide_rev_2.0.pdf,2,1,gregorymichael,4/9/2016 0:34 +10211694,Show HN: A rough simulation of a sail boat (2D Wireframe),,6,4,imakesnowflakes,9/13/2015 15:31 +12501743,Putting (my VB6) Windows Apps in Windows 10 Store,http://www.hanselman.com/blog/PuttingMyVB6WindowsAppsInTheWindows10StoreProjectCentennial.aspx,12,1,benaadams,9/14/2016 22:27 +12539572,Show HN: Yet Another Photo Slideshow,https://silverscreen.io/,2,1,adrianpike,9/20/2016 14:07 +10821171,vcsh Version Control System for $HOME,https://github.com/RichiH/vcsh/,34,8,pmoriarty,1/1/2016 5:26 +11778174,Anti-Abortion Groups Use Smartphone Surveillance to Target Women at Clinics,https://rewire.news/article/2016/05/25/anti-choice-groups-deploy-smartphone-surveillance-target-abortion-minded-women-clinic-visits/,8,2,Eric_WVGG,5/26/2016 14:27 +11358132,Netflix admits to throttling video for AT&T and Verizon customers,http://www.theverge.com/2016/3/24/11302446/netflix-admits-throttling-video-att-verizon-customers,4,1,cpeterso,3/25/2016 2:26 +12468627,"TorrentFreak Gets Its First YouTube Copyright Claim, and It's Bull",https://torrentfreak.com/torrentfreak-gets-its-first-youtube-copyright-claim-and-its-bull-160910/,14,1,okket,9/10/2016 10:44 +12556262,Interactive graphic: Every active satellite orbiting earth,http://qz.com/296941/interactive-graphic-every-active-satellite-orbiting-earth/,91,13,uptown,9/22/2016 12:17 +12425725,What is your phone telling your rental car?,https://www.consumer.ftc.gov/blog/what-your-phone-telling-your-rental-car,188,78,e15ctr0n,9/4/2016 17:55 +10775218,Boom! SpaceX nails a rocket landing,http://bgr.com/2015/12/21/boom-spacex-finally-nails-a-rocket-landing/,4,1,housedonuts,12/22/2015 2:00 +12570867,US Team Claims Solar Cell Efficiency Breakthrough,https://www.theengineer.co.uk/us-team-claims-solar-cell-efficiency-breakthrough/,13,3,M_Grey,9/24/2016 13:39 +11245221,"Swift, HTML and C++ make the list for languages and technologies in high demand",http://sdtimes.com/swift-html-and-c-make-the-list-for-languages-and-technologies-in-high-demand/,20,27,jamescustard,3/8/2016 13:59 +10835978,Fun with Swift,http://joearms.github.io/2016/01/04/fun-with-swift.html,220,109,Turing_Machine,1/4/2016 15:17 +11786103,The Persian Rug May Not Be Long for This World,http://www.nytimes.com/2016/05/27/world/middleeast/end-of-an-art-form-the-persian-rug-may-not-be-long-for-this-world.html,3,1,murtali,5/27/2016 14:05 +11660100,A conference for polyglot programmers Regular tickets on sale,http://polyconf.com/2016/,3,2,zaiste,5/9/2016 14:32 +11951236,We Made the Message Loud and Clear: Stop the Rule 41 Updates,https://www.eff.org/deeplinks/2016/06/we-made-message-loud-and-clear-stop-rule-41-updates,13,1,dwaxe,6/22/2016 2:50 +12300373,Intel Licenses ARM Technology to Boost Foundry Business,http://www.bloomberg.com/news/articles/2016-08-16/intel-licenses-arm-technology-in-move-to-boost-foundry-business,317,119,shawkinaw,8/16/2016 20:24 +11004241,"Stung by a Bad Purchase and Faltering in Digital Era, Xerox Decides to Split Up",http://www.nytimes.com/2016/01/30/business/dealbook/xerox-split-icahn.html,45,3,e15ctr0n,1/30/2016 23:13 +12303647,Online Gift Registry,http://thegiftregister.com.au/gift-shop/,1,1,giftregister,8/17/2016 10:49 +11320540,Show HN: Diskache Combine SSD with HDD on Windows,https://diskache.io/,21,19,lostmsu,3/19/2016 21:27 +11651736,"Show HN: Here is Twitter page showing idea, site hosted at digitalocean",https://twitter.com/cordbouquet,2,1,andrewfromx,5/7/2016 22:56 +11808456,GitHub is rolling out a feature to add your bio,https://github.com/settings/profile?focus_bio=1,11,1,pravj,5/31/2016 17:50 +11948964,Guccifer2's second release from DNC hack,https://guccifer2.wordpress.com/2016/06/21/hillary-clinton/,122,92,chvid,6/21/2016 20:00 +11741592,Ask HN: Has anyone here successfully applied to Stripe Atlas?,,10,7,laurencei,5/20/2016 21:17 +10580026,UNSW researchers make quantum computing breakthrough,http://m.smh.com.au/technology/sci-tech/unsw-researchers-make-another-quantum-computing-breakthrough-20151116-gkzv4b.html,2,1,sjclemmy,11/17/2015 9:29 +11627373,Why you're always at least three steps down your HTTPS certificate chain,https://certsimple.com/blog/https-certificate-chains,9,1,nailer,5/4/2016 10:34 +10912979,Android IMSI-Catcher Detector,https://secupwn.github.io/Android-IMSI-Catcher-Detector/,16,1,alfiedotwtf,1/15/2016 23:10 +12159506,Methane gas trapped underground in Siberia causes earth's surface to wobble,http://www.independent.co.uk/news/science/gas-siberia-underground-earth-bounce-climate-change-siberia-global-warming-a7153486.html,5,1,piokuc,7/25/2016 15:57 +12388486,"CloudFlare, SSL and unhealthy security absolutism",https://www.troyhunt.com/cloudflare-ssl-and-unhealthy-security-absolutism/,141,114,jgrahamc,8/30/2016 9:15 +11686972,Ask HN: Org charts and job titles,,2,2,aesthetics1,5/12/2016 21:40 +10309134,Corporate logos dataset?,,1,1,bobosha,10/1/2015 3:55 +11223384,Why IntelliJ IDEA is hailed as the most friendly Java IDE (many screenshots),http://blog.jetbrains.com/idea/2016/03/enjoying-java-and-being-more-productive-with-intellij-idea/,176,110,andrey_cheptsov,3/4/2016 12:46 +12393126,The problem with San Francisco Opera ticket prices,http://www.perfectprice.io/blog/opera-pricing-strategy-problems,47,25,thegeneralist,8/30/2016 19:28 +12227653,Men may have evolved better 'making up' skills,http://www.bbc.com/news/science-environment-36969103,2,1,hexagonc,8/4/2016 18:53 +10927441,The Air Force Gives Up Its Plan to Retire the A-10,http://www.popularmechanics.com/military/weapons/news/a18985/a-10-warthog-retirement-plans-stalled/,12,3,protomyth,1/18/2016 22:20 +10955791,The eGPU Problem,http://chrissardegna.com/blog/posts/the-egpu-problem/,5,2,css,1/22/2016 21:46 +10477487,Is My Cat Right- or Left-Handed? (2009),http://www.smithsonianmag.com/science-nature/is-my-cat-right-or-left-handed-14832893,35,10,Amorymeltzer,10/30/2015 12:58 +10441430,DoJ to Apple: we can force you to decrypt,http://boingboing.net/2015/10/23/doj-to-apple-your-software-is.html,74,25,k4jh,10/23/2015 21:36 +12095910,Show HN: Multi-GPU Reinforcement Learning in Tensorflow for OpenAI Gym,https://github.com/viswanathgs/dist-dqn,58,8,seasonedschemer,7/14/2016 17:51 +10552100,No UI Is the New UI,http://techcrunch.com/2015/11/11/no-ui-is-the-new-ui/,4,1,mmkhalifaa,11/12/2015 9:21 +10212038,"Show HN: The Garden, an incremental ecosystem simulator",http://www.kongregate.com/games/bendmorris/the-garden,1,2,bendmorris,9/13/2015 17:16 +11212002,1Password sends your password in clear text across the loopback interface,https://medium.com/@rosshosman/1password-sends-your-password-across-the-loopback-interface-in-clear-text-307cefca6389#.h9l20j6lv,197,139,nullrouted,3/2/2016 18:46 +10465597,Gotthard Base Tunnel,https://en.wikipedia.org/wiki/Gotthard_Base_Tunnel,97,48,lelf,10/28/2015 16:47 +10378202,"Perkins Loan program used by 1,000 area college students lapses",http://www.poughkeepsiejournal.com/story/news/local/new-york/2015/10/12/loan-program-used-area-college-students-lapses/73846122/,3,1,fahimulhaq,10/13/2015 2:24 +11424197,"Show HN: EasyWrite- Write Only Using Top 1,000 Words",http://easywrite.parishod.com/,2,3,dallamaneni,4/4/2016 18:33 +11160127,Million Dollar Curve,http://cryptoexperts.github.io/million-dollar-curve/,309,91,aburan28,2/23/2016 16:42 +11908699,"Show HN: Di-ary a math note-taking app built on Ruby on Rails, React and Redux",https://github.com/mkalygin/di-ary,8,7,mkalygin,6/15/2016 11:55 +10210901,On the Multidimensional Stable Marriage Problem,http://arxiv.org/abs/1509.02972,43,6,user_235711,9/13/2015 10:30 +11390439,Microsoft is bringing the Bash shell to Windows 10,http://techcrunch.com/2016/03/30/be-very-afraid-hell-has-frozen-over-bash-is-coming-to-windows-10/,272,267,pyprism,3/30/2016 16:25 +10681727,"How the Space Age Imagined 2014: Asimov's Predictions, Revisited",http://theappendix.net/posts/2014/7/isaac-asimovs-predictions-of-life-in-2014-revisited,65,10,idleworx,12/5/2015 12:44 +12499642,"Announcing new tools, forums, and features",https://github.com/blog/2256-a-whole-new-github-universe-announcing-new-tools-forums-and-features,1141,163,joshmanders,9/14/2016 18:06 +10474043,Neuropsychologist discusses a UK report on irreproducibility in science,http://www.nature.com/news/how-to-make-biomedical-research-more-reproducible-1.18684,6,2,digital55,10/29/2015 20:29 +12077551,Ask HN: What are possible drawbacks of using a company in Singapore?,,6,2,ianderf,7/12/2016 8:30 +10725887,Mosquitoes engineered to pass down genes that would wipe out their species,http://www.nature.com/news/mosquitoes-engineered-to-pass-down-genes-that-would-wipe-out-their-species-1.18974?WT.mc_id=FBK_NatureNews,4,1,tdurden,12/13/2015 9:29 +12359522,Using attrs for everything in Python,https://glyph.twistedmatrix.com/2016/08/attrs.html,246,101,StavrosK,8/25/2016 15:02 +11422005,"Release: Fully operational dlclose exploit + Linux for PS4, by kR105",http://wololo.net/2016/04/02/release-fully-operational-dlclose-exploit-linux-for-ps4-by-kr105/,173,51,alxsanchez,4/4/2016 14:17 +11947080,MongoDB to announce scalable cloud offering at MongoWorld 2016,https://www.linkedin.com/pulse/mongodb-world-2016-big-reveal-john-de-goes?trk=prof-post,4,1,chrisdima,6/21/2016 16:44 +12496314,Chelsea Manning ends hunger strike after winning gender surgery battle,https://www.theguardian.com/us-news/2016/sep/14/chelsea-manning-ends-hunger-strike-after-winning-battle-for-gender-transition-surgery,10,1,jboynyc,9/14/2016 12:52 +10627377,"In Chicago, cops try a guardian approach armed with new prediction methods",https://medium.com/backchannel/arresting-crime-before-it-happens-6cc8ad24d0e3#.7irzqc4nb,19,8,steven,11/25/2015 14:41 +10894055,Elon Musk Attack Ad Is Interesting,http://cleantechnica.com/2016/01/02/elon-musk-attack-ad-is-interesting/,4,2,doener,1/13/2016 13:25 +11252695,JetBrains ToolboxRelease and Versioning Changes,http://blog.jetbrains.com/blog/2016/03/09/jetbrains-toolbox-release-and-versioning-changes/,49,12,EddieRingle,3/9/2016 13:03 +10915192,In 1997 David Bowie shorted the music industry by issuing Bowie bonds,http://qz.com/590977/david-bowie-was-as-innovative-a-financier-as-he-was-a-musician/,4,1,miiiiiike,1/16/2016 13:16 +12230766,Humanising UX using Conversation,http://kijo.co/blog/the-future-of-user-experience-ux/,2,1,thomasfl,8/5/2016 8:18 +11388848,Erlang gen_server reloaded: manage server behaviour and metrics in one place,https://www.erlang-solutions.com/blog/erlang-gen_server-reloaded.html?utm_source=HN&utm_medium=HN&utm_campaign=gen_serverBlog,79,11,andradinu,3/30/2016 12:52 +10315955,"Online Lender SoFi Seems to Push Back IPO Plans, Raising $1B",http://techcrunch.com/2015/09/30/online-lender-sofi-seems-to-push-back-ipo-plans-raising-1-billion-instead/,5,1,doppp,10/2/2015 1:06 +11357343,S3Git: Git for Cloud Storage,https://github.com/s3git/s3git,6,1,DAddYE,3/24/2016 23:23 +12093171,Nintendo re-releases NES as mini console,http://www.nintendolife.com/news/2016/07/nintendo_entertainment_system_nes_classic_edition_coming_this_november_ships_with_30_games,542,262,aeno,7/14/2016 12:33 +12260179,How to find beta testers for a desktop application?,,2,1,mroland,8/10/2016 8:02 +11552378,The plug-in Prius delivers 42 percent of an electric-car revolution,http://www.slate.com/articles/business/the_juice/2016/04/the_plug_in_prius_delivers_42_percent_of_an_electric_car_revolution_i_did.html,13,15,jseliger,4/22/2016 20:33 +10855337,The Worst-Designed Thing You've Never Noticed Roman Mars,https://www.youtube.com/watch?v=pnv5iKB2hl4,4,1,bane,1/7/2016 1:30 +10222003,What's So Special About Low-Earth Orbit?,http://www.wired.com/2015/09/whats-special-low-earth-orbit/,35,16,Amorymeltzer,9/15/2015 17:43 +10864134,Toxic Chemical Discovered in San Francisco's Fog,http://www.popularmechanics.com/science/environment/news/a18841/toxic-chemical-discovered-in-san-franciscos-fog/,2,1,DiabloD3,1/8/2016 11:14 +10740644,"Barnes and Noble is dying, Waterstones in the U.K. is thriving. Why?",http://www.slate.com/articles/business/moneybox/2015/12/barnes_noble_is_dying_waterstones_in_the_u_k_is_thriving.single.html,114,116,jseliger,12/15/2015 21:34 +10214560,Rtop-Vis: Ad Hoc Cluster Monitoring (Load+Memory) Over SSH,http://www.rtop-monitor.org/rtop-vis/,4,1,rapidloop,9/14/2015 11:21 +12000118,Ask HN: Did anyone's life ever gotten more comfortable after accepting funding?,,96,53,tehayj,6/29/2016 7:51 +12304156,Patagonia's CEO Explains How to Make On-Site Child Care Pay for Itself,http://www.fastcompany.com/3062792/second-shift/patagonias-ceo-explains-how-to-make-onsite-child-care-pay-for-itself,117,100,mattiemass,8/17/2016 12:34 +10274378,Product strategy means saying no,http://productstrategymeanssayingno.com,12,1,micearoni,9/24/2015 20:17 +10872670,New Tesla Model S software update lets car park itself with no one inside it,http://bgr.com/2016/01/09/tesla-model-s-software-update-7-1-summon/,8,1,anderzole,1/9/2016 20:10 +10392839,"New ResearchKit Studies for Autism, Epilepsy and Melanoma",http://www.apple.com/pr/library/2015/10/15Apple-Announces-New-ResearchKit-Studies-for-Autism-Epilepsy-Melanoma.html,67,5,mrevoir,10/15/2015 13:00 +10606549,Freeciv-web WebGL 3D engine competition,https://github.com/freeciv/freeciv-webgl-competition,3,2,roschdal,11/21/2015 11:47 +10430144,Some female Wikipedia editors have been targets of harassment by male colleagues,http://www.theatlantic.com/technology/archive/2015/10/how-wikipedia-is-hostile-to-women/411619/?single_page=true,4,1,ovis,10/22/2015 2:45 +10792834,FedEx Says Employees Working Extra Shifts on Christmas,http://www.wsj.com/articles/fedex-says-employees-working-extra-shifts-on-christmas-1451079006,2,1,e15ctr0n,12/26/2015 0:43 +11466194,Why I left Unity,http://richg42.blogspot.com/2016/04/why-i-left-unity.html,25,25,mpalme,4/10/2016 14:20 +11854989,Neighbors Clash in Silicon Valley; Job growth far outstrips housing,http://www.wsj.com/articles/neighbors-clash-in-silicon-valley-1465291802,1,1,danso,6/7/2016 15:08 +12086139,Tesla Model S Autopilot Reliability Why Americans Should Love Tesla,http://www.roadandtrack.com/car-culture/news/a29944/leave-tesla-alone/,130,184,Osiris30,7/13/2016 13:56 +10462924,The Physical Origin of Universal Computing,https://www.quantamagazine.org/20151027-the-physical-origin-of-universal-computing/,42,1,jonbaer,10/28/2015 5:02 +12416365,Show HN: MoonQuery.js Mongo like querying of arrays in JavaScript,https://github.com/pmoon00/moonQuery.js/blob/master/README.md,4,2,pmoon00,9/2/2016 21:19 +10460387,Honda's New Hydrogen-Powered Vehicle Feels More Like a Real Car,http://www.forbes.com/sites/joannmuller/2015/10/27/hondas-new-hydrogen-powered-vehicle-feels-more-like-a-real-car/?utm_campaign=yahootix&partner=yahootix,28,51,radiorental,10/27/2015 19:16 +11546099,"Is the Hum, a mysterious noise heard around the world, science or mass delusion?",https://newrepublic.com/article/132128/maddening-sound,7,4,doener,4/21/2016 23:41 +10231122,Apple's 'Move to iOS' app bombed with one-star reviews,http://geekscribe.com.au/blog/2015/9/17/apples-move-to-ios-app-bombed-with-one-star-reviews,55,50,geekscribe,9/17/2015 1:48 +11565720,RouterSploit Router Exploitation Framework,https://github.com/reverse-shell/routersploit,188,21,adamnemecek,4/25/2016 17:19 +10470190,"Show HN: Gophr London's smarter, fairer, faster courier service",https://uk.gophr.com,7,2,Nilef,10/29/2015 11:13 +10519343,Using Machine Learning to generate rap lyrics,http://www.deepbeat.org/,21,4,MOil,11/6/2015 13:36 +11778512,Ask HN: Am I just burnt out or should I find a new career?,,15,9,amiburntout,5/26/2016 15:11 +10227018,HAAARTLAND The Audience Building Platform,http://www.haaartland.com,1,1,stefankrafft,9/16/2015 14:51 +10932610,Stranger hacks family's baby monitor and talks to child at night,http://sfglobe.com/2016/01/06/stranger-hacks-familys-baby-monitor-and-talks-to-child-at-night/,3,2,jeena,1/19/2016 18:17 +12079305,5 Reasons Why You Should Be Using Promises,http://blog.runnable.com/post/147262856601/5-reasons-why-you-should-be-using-promises,3,1,sundip,7/12/2016 14:31 +11237473,Skirret: a forgotten Tudor vegetable,http://www.telegraph.co.uk/gardening/howtogrow/fruitandvegetables/11421128/Skirret-the-forgotten-Tudor-vegetable.html,88,42,pepys,3/7/2016 6:41 +12040373,Spain approves sun tax,http://www.renewableenergyworld.com/articles/2015/10/spain-approves-sun-tax-discriminates-against-solar-pv.html,10,4,tassl,7/6/2016 0:02 +10230542,The premature optimization is evil myth (2010),http://joeduffyblog.com/2010/09/06/the-premature-optimization-is-evil-myth/,6,2,sea6ear,9/16/2015 22:57 +11684935,California's generation of electricity from coal drops dramatically,http://www.latimes.com/business/la-fi-california-coal-20160512-snap-story.html,193,84,Osiris30,5/12/2016 16:58 +12054451,Hello Games Team Celebrating with No Man's Sky Burnt on a DVD,http://i.imgur.com/piXexCh.jpg,3,1,kowdermeister,7/8/2016 9:43 +10209603,Ask HN: What research areas would you consider if you were to start a CS PhD?,,4,7,slordy,9/12/2015 22:26 +12019461,Working through Ramadan,https://slackhq.com/working-through-ramadan-9784b352282e,35,63,taylorbuley,7/1/2016 20:38 +12296442,The rise of functional programming and the decline of Angular 2.0,http://blog.wolksoftware.com/the-rise-of-functional-programming-and-the-death-of-angularjs,38,13,ower_89,8/16/2016 10:06 +12143790,The Superbook: Turn your smartphone into a laptop for $99,https://www.kickstarter.com/projects/andromium/the-superbook-turn-your-smartphone-into-a-laptop-f/description,101,132,brahmwg,7/22/2016 14:40 +11060474,"Work, Sleep, Family, Fitness, or Friends: Pick 3",http://www.inc.com/jessica-stillman/work-sleep-family-fitness-or-friends-pick-3.html,12,3,joeyespo,2/8/2016 19:56 +10411434,The History of San Francisco's Water System [pdf],http://sfwater.org/modules/showdocument.aspx?documentid=5224,15,1,stevewilhelm,10/19/2015 6:30 +12106931,Develop drugs like we do software,https://medium.com/@osharav/develop-drugs-like-we-do-software-finding-the-right-unit-tests-80e6885a5dae,1,20,osharav,7/16/2016 16:43 +12236394,Carnegie Mellons Mayhem AI Wins DARPAs Cyber Grand Challenge,https://techcrunch.com/2016/08/05/carnegie-mellons-mayhem-ai-takes-home-2-million-from-darpas-cyber-grand-challenge/,166,26,ebakan,8/5/2016 23:45 +10425332,5 reasons Not to choose Atlassian JIRA for agile projects,https://medium.com/@sensinum/5-reasons-not-to-choose-atlassian-jira-for-agile-projects-aeb1fd4ffc7a#.4q60vt8nj,6,2,phicompl,10/21/2015 13:46 +10770962,The complicated confidence of eyewitness memory,http://arstechnica.com/science/2015/12/i-think-this-is-the-guy-the-complicated-confidence-of-eyewitness-memory/,41,9,pavornyoh,12/21/2015 13:28 +11625499,Ask HN: Why does Etsy have so many items titled DO Not PURCHASE?,,1,2,hoodoof,5/4/2016 1:16 +11795545,Edward Snowden Demonstrates How to Go Black,https://www.youtube.com/watch?v=S4LOyi3EMWU,6,4,randomname2,5/29/2016 8:45 +12319583,Sweden Introduces Six-Hour Work Day,http://www.independent.co.uk/news/world/europe/sweden-introduces-six-hour-work-day-a6674646.html,3,9,userium,8/19/2016 12:40 +11446153,Tis-interpreter find subtle bugs in programs written in standard C,https://github.com/TrustInSoft/tis-interpreter,71,37,osivertsson,4/7/2016 10:22 +12567645,Ask HN: What do you wish someone would build?,,171,477,prmph,9/23/2016 20:18 +11326818,Show HN: Use algorithms visualisations to design a website,http://www.leonardofed.io/,4,1,anacleto,3/21/2016 8:37 +12175732,Ask HN: Why are e-books sold for the same price as printed books,,3,3,neogenix,7/27/2016 19:16 +11527853,Apple Said to Hire Tesla Engineer to Head Car Project,http://www.bloomberg.com/news/articles/2016-04-19/apple-said-to-hire-tesla-engineer-to-head-car-project-electrek,4,1,ml_hpc,4/19/2016 15:59 +11424082,Scanse's Sweep Laser Rangefinder: Long Range and Affordable,http://www.hizook.com/blog/2016/04/04/scanses-sweep-laser-rangefinder-long-range-and-affordable,25,8,beambot,4/4/2016 18:20 +12403223,Cycling Matches the Pace and Pitches of Tech,http://www.nytimes.com/2016/08/26/business/dealbook/cycling-matches-the-pace-and-pitches-of-tech.html,1,1,liareye,9/1/2016 5:10 +11827899,RMS on the Ogg Vorbis license (2001),http://lwn.net/2001/0301/a/rms-ov-license.php3,100,82,d99kris,6/3/2016 2:31 +10651857,Repair is a Radical Act,http://www.patagonia.com/us/worn-wear,214,109,fisherjeff,11/30/2015 21:17 +10478195,Show HN: Proxyblock an interactive content-blocking proxy written in golang,https://github.com/jcuga/proxyblock,13,13,jcuga,10/30/2015 14:59 +12056035,Ask HN: GitHub vs. Gitlab?,,65,111,ghettosoak,7/8/2016 15:07 +11427929,"Ask HN: I hate working alone, but I want to pursue my startup",,19,18,slagfart,4/5/2016 4:55 +12441354,A pilot who stole a secret Soviet fighter jet,http://www.bbc.com/future/story/20160905-the-pilot-who-stole-a-secret-soviet-fighter-jet,173,72,alongtheflow,9/7/2016 6:58 +12380879,Seven Puzzles You Think You Must Not Have Heard Correctly (2006) [pdf],https://math.dartmouth.edu/~pw/solutions.pdf,303,207,support_ribbons,8/29/2016 9:31 +12070190,Show HN: UFC API client for golang,https://github.com/sungwoncho/go-ufc,1,1,stockkid,7/11/2016 10:58 +12068379,Vanghogify yourself in 1 second,http://turbo.deepart.io/,4,1,iverjo,7/11/2016 2:00 +11482167,Facebook Surround 360: An Open 3D-360 video capture system,https://code.facebook.com/posts/1755691291326688/introducing-facebook-surround-360-an-open-high-quality-3d-360-video-capture-system,144,40,runesoerensen,4/12/2016 18:22 +10763167,Building Up Perlin Noise,http://eastfarthing.com/blog/2015-04-21-noise/,7,3,a_e_k,12/19/2015 9:57 +10300940,Class of 2015 MacArthur Foundation,https://www.macfound.org/fellows/class/2015/,32,11,japhyr,9/30/2015 0:39 +10680886,The STEM Skills Gap Is Only as Real as the Purple Unicorn,http://techcrunch.com/2015/12/04/the-stem-skills-gap-is-only-as-real-as-the-purple-unicorn/,5,2,kevindeasis,12/5/2015 4:34 +11072799,Twitter's new timeline feature,https://blog.twitter.com/2016/never-miss-important-tweets-from-people-you-follow,162,130,r721,2/10/2016 14:14 +10470535,An update to UBlock Origin was rejected by the Chrome Web Store,https://github.com/gorhill/uBlock/issues/880,323,113,vzjrz,10/29/2015 12:45 +11074862,How do Win 3.1 applications work in Wine?,http://www.wine-staging.com/news/2016-02-10-blog-wine-16bit.html,94,28,pantalaimon,2/10/2016 18:39 +11739166,The Most Disturbing Thing About My Meeting with Mark Zuckerberg,http://www.glennbeck.com/2016/05/19/what-disturbed-glenn-about-the-facebook-meeting/,16,1,joeyespo,5/20/2016 16:27 +11802465,The most popular subdomains on the Internet (2016),https://bitquark.co.uk/blog/2016/02/29/the_most_popular_subdomains_on_the_internet,2,2,svenfaw,5/30/2016 18:34 +11452194,Why I Trained Myself Not to Be a Woman in Tech,https://open.buffer.com/talking-about-diversity/,6,1,liberatus,4/8/2016 2:20 +11234944,Why Microsoft's reorganization is a bad idea (2013),https://stratechery.com/2013/why-microsofts-reorganization-is-a-bad-idea/,26,6,luu,3/6/2016 18:53 +10620125,Building Better Cloud Applications Using Feedback Driven Development,http://blog.acolyer.org/2015/11/10/runtime-metric-meets-developer-building-better-cloud-applications-using-feedback/,4,1,durzagott,11/24/2015 11:04 +11399476,Let's Encrypt and Nginx State of the art secure web deployment,https://letsecure.me/secure-web-deployment-with-lets-encrypt-and-nginx/,290,84,llambiel,3/31/2016 18:38 +12331709,Cognitive behavioural therapy is falling out of favour,https://www.theguardian.com/lifeandstyle/2015/jul/03/why-cbt-is-falling-out-of-favour-oliver-burkeman,76,86,amelius,8/21/2016 17:19 +10780162,Common: Co-Living Startup from a General Assembly Founder,http://techcrunch.com/2015/10/19/common-building-opening/,50,45,edward,12/22/2015 20:24 +10679713,Toxic Coworkers Are More Expensive than Superstar Hires,http://qz.com/563683/turns-out-toxic-coworkers-are-more-expensive-than-superstar-hires/,2,1,Kaedon,12/4/2015 22:44 +11621262,Probabilistic Programming for Anomaly Detection,http://blog.fastforwardlabs.com/post/143792498983/probabilistic-programming-for-anomaly-detection,125,17,n-s-f,5/3/2016 15:03 +12100126,Outdoor learning 'boosts children's development',http://www.bbc.co.uk/news/science-environment-36795912,3,1,sjclemmy,7/15/2016 11:08 +11643410,Why Wind Turbines Have Three Blades,http://www.cringely.com/2016/05/06/15262/,425,189,rfreytag,5/6/2016 12:20 +12515407,What the iPhone 7 Gained by Losing the Headphone Jack,http://gizmodo.com/what-the-iphone-7-gained-by-losing-the-headphone-jack-1786709994,7,2,ourmandave,9/16/2016 16:58 +11320347,The idea of a university as a free space rather than a safe space is vanishing,http://blogs.spectator.co.uk/2016/03/idea-university-free-space-rather-safe-space-vanishing/,63,58,colinprince,3/19/2016 20:41 +12229983,JavaScript and me,http://tilde.town/~vilmibm/thoughts/javascript.html,4,1,vilmibm,8/5/2016 4:07 +12479895,Show HN: Node.js module for Brazilian Zipcode (CEP) updated in real-time,https://github.com/filipedeschamps/cep-promise,2,2,filipedeschamps,9/12/2016 14:24 +10617551,What does product/market fit mean in the large enterprise software market?,,2,1,franciscomello,11/23/2015 21:46 +12012494,"At This Lost Alpine Resort, You Could Ski Among California's Orange Groves",http://www.atlasobscura.com/articles/at-this-lost-alpine-resort-you-could-ski-among-californias-orange-groves,30,4,jackgavigan,6/30/2016 22:55 +12000746,"My condolences, youre now the maintainer of a popular open source project",https://runcommand.io/2016/06/26/my-condolences-youre-now-the-maintainer-of-a-popular-open-source-project/,307,127,donnemartin,6/29/2016 10:54 +10427130,'Mythbusters' to end with final season,http://www.ew.com/article/2015/10/21/mythbusters-ending-interview,5,1,coloneltcb,10/21/2015 17:50 +12076802,This is the face of the ISIS sex slave market New York Post,http://nypost.com/2016/07/05/this-is-the-face-of-the-isis-sex-slave-market/,16,8,hitr,7/12/2016 4:48 +10587102,Google Fortunetelling Predict your future,http://betagoogle.com/,3,5,sander,11/18/2015 11:29 +10530795,The US inmates charged per night in jail,http://www.bbc.com/news/magazine-34705968,1,2,mbrd,11/9/2015 0:41 +12388020,The Marriage of DevOps and SecOps,http://cloudsentry.evident.io/the-marriage-of-devops-secops/,56,30,kiyanwang,8/30/2016 6:51 +10508163,"OOSMOS, the Object Oriented State Machine Operating System, Is Now Open Source",http://oosmos.com/?Action=HN,83,23,zzglenm,11/4/2015 17:38 +10916225,Siberian hermit airlifted to hospital over leg pain,http://www.theguardian.com/world/2016/jan/15/siberian-hermit-agafia-lykova-russia-airlifted-to-hospital-over-leg-pain?CMP=fb_gu,2,2,unreal37,1/16/2016 18:37 +11530097,Little: a tcl-based c-like scripting language,http://www.little-lang.org/index.html,101,57,cisstrd,4/19/2016 20:31 +10319565,"Unexpectedly benevolent malware improves security of routers, IoT devices",http://www.net-security.org/malware_news.php?id=3120,5,1,artma,10/2/2015 16:36 +12009141,Cannabinoids remove plaque-forming Alzheimer's proteins from brain cells,http://medicalxpress.com/news/2016-06-cannabinoids-plaque-forming-alzheimer-proteins-brain.html,4,1,evo_9,6/30/2016 15:21 +12097992,Sharkey: a service for managing certificates for use by OpenSSH,https://github.com/square/sharkey,51,15,amenghra,7/14/2016 23:33 +12294291,We Need to Literally Declare War on Climate Change,https://newrepublic.com/article/135684/declare-war-climate-change-mobilize-wwii?utm=350org,2,2,codonaut,8/15/2016 23:20 +10800116,Minorities exploited by Warren Buffetts mobile-home empire,http://www.seattletimes.com/seattle-news/times-watchdog/minorities-exploited-by-warren-buffetts-mobile-home-empire-clayton-homes/,24,4,smacktoward,12/28/2015 6:09 +10858748,More Benchmarks: Virtual DOM vs. Angular 1/2 vs. Mithril.js vs. Cito.js vs. The Rest,https://auth0.com/blog/2016/01/07/more-benchmarks-virtual-dom-vs-angular-12-vs-mithril-js-vs-the-rest/,5,1,ryanchenkie,1/7/2016 16:17 +11885772,"More Bad English, Please (2010)",http://ostatic.com/blog/more-bad-english-please,23,14,floriangosse,6/11/2016 22:56 +11254888,Google says it wont Google jurors in upcoming Oracle API copyright trial,http://arstechnica.com/tech-policy/2016/03/google-says-it-wont-google-jurors-in-upcoming-oracle-api-copyright-trial/,3,1,rayiner,3/9/2016 18:51 +12377204,Show HN: A JavaScript String replace API that challenges the status quo,https://github.com/FagnerMartinsBrack/str-replace#why,20,7,fagnerbrack,8/28/2016 16:46 +10696254,Ask HN: What are the recruitment tools/plugins used by startups?,,4,4,himanshuy,12/8/2015 13:44 +11787184,Socket.io ssl cert is expired,https://cdn.socket.io/socket.io-1.4.5.js,5,1,xyclos,5/27/2016 16:43 +10619195,Ask HN: Should I use my old mailing list?,,1,2,jakejake,11/24/2015 4:59 +10457538,Ask HN: Are there API centric frameworks that have the same traction as Rails?,,14,17,thomasfromcdnjs,10/27/2015 12:31 +11846791,Show HN: Building a Distributed Machine Learning Testbench with Resin.io,https://resin.io/blog/building-a-distributed-machine-learning-testbench-with-resin-io-on-raspberry-pis/,4,1,craig,6/6/2016 14:01 +10299827,"Show HN: Codeiac.com Your humble, syntax-aware online editor",http://Codeiac.com,3,4,jimant,9/29/2015 21:33 +11708459,How to find techy roommates?,,1,1,trogdoro,5/16/2016 18:31 +11884977,How to build and deploy a simple Facebook Messenger bot with Python and Flask,http://tsaprailis.com/2016/06/02/How-to-build-and-deploy-a-Facebook-Messenger-bot-with-Python-and-Flask-a-tutorial/,101,11,sarumantlor,6/11/2016 19:40 +11107711,Ask HN: How long do you work per day?,,2,1,ripitrust,2/16/2016 3:25 +10832576,Using No Mocks to Improve Design (2012),http://arlobelshee.com/the-no-mocks-book/,22,8,edward,1/3/2016 21:39 +11401408,"Ftp trivia for $1000 please alex, it's the daily double",http://stackoverflow.com/questions/36344079/in-ftp-protocol-how-do-i-know-when-a-file-upload-is-really-done,5,3,andrewfromx,3/31/2016 23:29 +12024014,The Chemical History of a Candle,https://www.youtube.com/watch?v=6W0MHZ4jb4A&list=PL0INsTTU1k2UCpOfRuMDR-wlvWkLan1_r,2,1,beefman,7/2/2016 22:34 +12048426,"One Month Later, How Is Uber Doing in Kampala?",http://www.iafrikan.com/2016/07/07/one-month-later-how-is-uber-doing-in-kampala/,2,1,tefo-mohapi,7/7/2016 10:04 +12235097,How Language Helps Erase the Tragedy of Road Deaths,http://nautil.us/blog/how-language-helps-erase-the-tragedy-of-millions-of-road-deaths,18,7,prostoalex,8/5/2016 19:22 +12305128,"Information, Physics and Computation (2009)",https://web.stanford.edu/~montanar/RESEARCH/BOOK/book.html,100,14,KKKKkkkk1,8/17/2016 14:53 +12361348,Interactive Guide to Tetris in ClojureScript,http://shaunlebron.github.io/t3tr0s-slides/,39,7,doppp,8/25/2016 18:40 +12224600,Moores Law Is About to Get Weird (2015),http://nautil.us/issue/21/information/moores-law-is-about-to-get-weird,101,60,sjayasinghe,8/4/2016 10:30 +11448512,"Aria2: CLI downloader for HTTP, FTP, torrents, metalinks",https://aria2.github.io/,179,40,nickysielicki,4/7/2016 16:24 +12361094,OpenSSL 1.1.0: Add Support for Dual EC DRBG,https://github.com/openssl/openssl/blob/abd30777cc72029e8a44e4b67201cae8ed3d19c1/CHANGES#L877,4,4,okket,8/25/2016 18:04 +10512004,MIT Self-Flying Drone (Open Sourced),http://stgist.com/2015/11/mit-self-flying-drone-can-avoid-obstacles-at-30-mph-5059,31,2,sytelus,11/5/2015 6:49 +12250926,"Show HN: Feedback that anyone can launch gather, share, and use",https://sprint.dscout.com/s/smcs2kak,3,2,jackbwheeler,8/8/2016 21:16 +11174963,Go bridges to JavaScript and Python,https://www.youtube.com/watch?v=YmI7Gw4iq3w,5,1,jstoiko,2/25/2016 15:20 +12215184,Ask HN: Websites/Services like nugget.one,,7,6,isuckatcoding,8/3/2016 2:36 +11808639,DeepOSM: Detect roads and features in imagery with neural nets using OpenStreetMap,https://github.com/trailbehind/DeepOSM,93,18,chippy,5/31/2016 18:08 +10929015,"Isaac Asimov: Man of 7,560,000 Words (1969)",https://www.nytimes.com/books/97/03/23/lifetimes/asi-v-profile.html,89,39,jeremynixon,1/19/2016 5:22 +11445512,The Silicon Valley of Transylvania,http://techcrunch.com/2016/04/06/the-silicon-valley-of-transylvania/,138,54,mirceagoia,4/7/2016 7:57 +11285389,Is Spoonrocket (YC S13) Dead?,,1,1,dlinder,3/14/2016 20:37 +11517894,"Remote code execution, git, and OS X",http://rachelbythebay.com/w/2016/04/17/unprotected/,616,370,ingve,4/18/2016 5:34 +12361215,How Parents Harnessed the Power of Social Media to Challenge EpiPen Prices,http://well.blogs.nytimes.com/2016/08/25/how-parents-harnessed-the-power-of-social-media-to-challenge-epipen-prices/,72,90,pavornyoh,8/25/2016 18:23 +10769481,Great GitHub list of public data sets,http://www.datasciencecentral.com/profiles/blogs/great-github-list-of-public-data-sets?overrideMobileRedirect=1,12,1,vincentg64,12/21/2015 3:50 +10949642,GCC Front-End Internals (2011) [pdf],http://blog.lxgcc.net/wp-content/uploads/2011/03/GCC_frontend.pdf,31,1,vmorgulis,1/22/2016 0:07 +11675417,Google I/O 2016: 9 predictions about new products Google will announce,http://www.networkworld.com/article/3069273/android/google-i-o-2016-9-predictions-about-new-products-google-will-announce.html#tk.twt_nww,3,1,stevep2007,5/11/2016 14:12 +11425785,Statement Regarding Recent Media Coverage [pdf],http://www.mossfon.com/media/wp-content/uploads/2016/04/Statement-Regarding-Recent-Media-Coverage_4-1-2016.pdf,1,1,rav,4/4/2016 21:23 +12074643,Preview the Python Serverless Microframework for AWS,https://aws.amazon.com/blogs/developer/preview-the-python-serverless-microframework-for-aws/,19,1,jpalmer,7/11/2016 21:08 +10486717,Making Insider Trading Legal,http://www.newyorker.com/business/currency/making-insider-trading-legal,142,163,akg_67,11/1/2015 15:41 +10954806,Near-room-temperature superconductivity in hydrogen sulfide,http://www.nature.com/am/journal/v8/n1/full/am2015147a.html,15,7,jonbaer,1/22/2016 19:00 +11194003,Raspberry Pi 3 First Look,http://blog.pimoroni.com/raspberry-pi-3/,26,5,whiskers,2/29/2016 7:03 +11138389,Albert Woodfox released from jail after 43 years in solitary confinement,http://www.theguardian.com/us-news/2016/feb/19/albert-woodfox-released-louisiana-jail-43-years-solitary-confinement,2,1,dsr12,2/20/2016 2:28 +12414083,Jupiters North Pole Unlike Anything Encountered in Solar System,https://www.nasa.gov/feature/jpl/jupiter-s-north-pole-unlike-anything-encountered-in-solar-system,237,87,betolink,9/2/2016 16:18 +12428398,New Koch [January 2016],http://www.newyorker.com/magazine/2016/01/25/new-koch,2,1,jacobolus,9/5/2016 5:52 +11499925,Manage AWS EC2 SSH Access with IAM,https://cloudonaut.io/manage-aws-ec2-ssh-access-with-iam/,6,1,hellomichibye,4/14/2016 20:08 +10324937,Point Break not coming to a cinema near you,http://www.bfi.org.uk/news-opinion/sight-sound-magazine/comment/point-break-not-coming-cinema-near-you,21,15,DanBC,10/3/2015 18:50 +11214022,The architect of the Reich: On the architectural horror of Albert Speer,http://www.newcriterion.com/articles.cfm/The-architect-of-the-Reich-8384,107,52,prismatic,3/2/2016 23:46 +11666653,Magnets and Marbles [video],https://www.youtube.com/watch?v=QQ9gs-5lRKc,136,17,NikhilVerma,5/10/2016 12:17 +10921244,Ask HN: When will you ride an autonomous taxi?,,1,1,source99,1/17/2016 21:49 +10458448,Making Sense of Dell and EMC and VMware,http://a16z.com/2015/10/26/dell-emc-vmware/,144,23,gwintrob,10/27/2015 15:10 +10485726,The Devastating Effect of Ad-Blockers for Guru3D.com,http://www.guru3d.com/news-story/the-devastating-effect-of-ad-blockers-for-guru3d-com.html,121,322,nkurz,11/1/2015 7:34 +12557534,Allo by default stores all your chats indefinitely,http://www.independent.co.uk/life-style/gadgets-and-tech/news/google-allo-should-be-deleted-and-never-used-says-edward-snowden-a7320861.html,2,1,zkhalique,9/22/2016 15:30 +12230869,The truth about Lisp (2006),http://www.secretgeek.net/lisp_truth,120,155,0xmohit,8/5/2016 8:54 +11644278,Scio Kickstarter blocked due to IP dispute,https://www.kickstarter.com/projects/903107259/scio-your-sixth-sense-a-pocket-molecular-sensor-fo,2,1,jasonlaramburu,5/6/2016 14:41 +10675859,Ryanair vs. EasyJet price comparison,http://www.airhint.com/articles/ryanair-vs-easyjet,4,2,alucky,12/4/2015 12:13 +10975799,It's too late Artificial intelligence is already everywhere,http://www.cnbc.com/2016/01/26/disruptive-themes-to-watch-artificial-intelligence-everywhere.html,2,1,eplanit,1/26/2016 20:31 +10668321,UK Parliament Vote in Favor of Airstrikes in Syria,http://www.bbc.com/news/uk-politics-34980504,1,1,nitin_flanker,12/3/2015 7:36 +12258598,"NPM packages: they aint free, you know",https://medium.com/@david.gilbertson/npm-packages-they-aint-free-you-know-e3506278314c#.lp275ttn8,14,2,bubble_boi,8/10/2016 0:10 +10783012,Bank of America gets Twitter to delete journalist joke,http://arstechnica.com/tech-policy/2015/12/bank-of-america-gets-twitter-to-delete-journalists-joke-says-he-violated-copyright/,18,2,woodymcpecks,12/23/2015 12:34 +11498064,Thou Shalt Not Use Struct,https://medium.com/@ferd/thou-shall-not-use-struct-67dd62111167#.1o54k7q04,4,1,fastier,4/14/2016 16:29 +12119463,Old-School PC Copy Protection Schemes (2006),http://www.vintagecomputing.com/index.php/archives/174/old-school-copy-protection-schemes,70,59,erickhill,7/19/2016 3:49 +10768440,Deep Learning: An MIT Press Book in Preparation,http://goodfeli.github.io/dlbook/,245,22,ingve,12/20/2015 21:59 +10452622,"World Health Organisation, meat and cancer",http://www.zoeharcombe.com/2015/10/world-health-organisation-meat-cancer/,1,1,Amorymeltzer,10/26/2015 16:52 +12385727,Hipku encode any IP address as a haiku,http://gabrielmartin.net/projects/hipku/,24,2,alexeyr,8/29/2016 21:56 +11411115,New SSA Back End for the Go Compiler (2015),https://docs.google.com/document/d/1szwabPJJc4J-igUZU4ZKprOrNRNJug2JPD8OYi3i1K0/edit,78,97,gjvc,4/2/2016 11:17 +11958719,Ask HN: What language has the best developer experience?,,11,31,xupybd,6/23/2016 3:46 +10520271,Millennials more likely to use Google Apps than Office 365,http://blog.bettercloud.com/google-apps-vs-office-365/?utm_source=hackernews&utm_medium=hackernews&utm_content=gapps_v_o365&utm_campaign=sharing_contest,6,2,cuphalffull,11/6/2015 16:26 +11559684,Telomere lengthening via gene therapy in a human individual,http://www.neuroscientistnews.com/research-news/first-gene-therapy-successful-against-human-aging,287,102,mkagenius,4/24/2016 13:55 +11092487,US to Restore Commercial Air Travel to Cuba,http://www.politico.com/story/2016/02/us-cuba-commercial-flights-219211,7,1,ttruett,2/13/2016 4:08 +10320944,Why are little kids in Japan so independent?,http://www.citylab.com/commute/2015/09/why-are-little-kids-in-japan-so-independent/407590/,156,123,jmadsen,10/2/2015 20:04 +10436199,Perch: CCTV your home with old smartphones,https://getperch.com/,31,23,singold,10/23/2015 0:53 +10796514,Sound Blaster Series Hardware Programming Guide [pdf],https://pdos.csail.mit.edu/6.828/2014/readings/hardware/SoundBlaster.pdf,28,4,32bitkid,12/27/2015 5:16 +12255805,"Facebook Blocks Ad Blockers, but It Strives to Make Ads More Relevant",http://www.nytimes.com/2016/08/10/technology/facebook-ad-blockers.html,13,5,firloop,8/9/2016 16:37 +11332069,Fiverr: my worst experience and why i still like it,https://www.lazypreneur.pw/2016/fiverr-worst-experience-still-like/,1,1,herbst,3/21/2016 21:08 +11232300,Winners of Google and IEEE Little Box Inverter Challenge Announced,https://www.littleboxchallenge.com,3,1,meggyhimself,3/6/2016 3:10 +10683431,The patent on the Space Shuttle has expired,https://patents.google.com/patent/US3866863A/en,99,45,donohoe,12/5/2015 22:04 +10308406,What Makes the iPhone 6S Waterproof,http://www.popularmechanics.com/technology/gadgets/a17602/iphone-6s-waterproof-ifixit/,16,9,SQL2219,10/1/2015 0:24 +12101918,Notice of security breach on Ubuntu Forums,https://insights.ubuntu.com/2016/07/15/notice-of-security-breach-on-ubuntu-forums/,39,12,onosendai,7/15/2016 16:02 +10855828,Motivated Numeracy and Enlightened Self-Government (2013),http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2319992,8,2,evilsimon,1/7/2016 3:44 +10737915,"Flint, MI: So much lead in childrens blood, state of emergency declared",https://www.washingtonpost.com/news/morning-mix/wp/2015/12/15/toxic-water-soaring-lead-levels-in-childrens-blood-create-state-of-emergency-in-flint-mich/,405,321,uptown,12/15/2015 14:34 +10927572,Magic Bus Aims to Ease SV Commuter Woes with City-To-City Transportation,http://techcrunch.com/2016/01/18/magic-bus-aims-to-magically-ease-silicon-valley-commuter-woes-with-city-to-city-transportation/,6,2,carlsbaddev,1/18/2016 22:45 +11449416,47 year old television signals bouncing back to Earth,http://www.rimmell.com/bbc/news.htm,1,2,iliis,4/7/2016 18:26 +10277373,How to write in Gallifreyan,http://imgur.com/gallery/m8edJ,8,1,nikropht,9/25/2015 10:52 +12406327,How Russia Often Benefits When Julian Assange Reveals the Wests Secrets,http://www.nytimes.com/2016/09/01/world/europe/wikileaks-julian-assange-russia.html,16,7,e15ctr0n,9/1/2016 15:55 +11665942,UK's attractiveness for renewables investment plummets to all-time low,http://www.theguardian.com/environment/2016/may/10/uks-attractiveness-for-renewables-investment-plummets-to-all-time-low,2,1,jsingleton,5/10/2016 9:01 +12504694,Microsoft is now the leading company for open source contributions on GitHub,http://www.businessinsider.com/microsoft-github-open-source-2016-9,343,184,gjmveloso,9/15/2016 10:07 +11234229,"Let's code a TCP/IP stack, 1: Ethernet and ARP",http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp,322,49,ingve,3/6/2016 16:16 +12304591,I'm Sick of the So-Called 'News' on TV,http://www.alternet.org/media/im-sick-so-called-news-tv?akid=14541.2563486.GAIvp4&rd=1&src=newsletter1062025&t=22,3,1,azuajef,8/17/2016 13:42 +10787602,Stop Styling React Components with JavaScript,https://medium.com/front-end-developers/stop-styling-react-components-with-javascript-8b4a7ec96eea#.c2us4m1j8,8,2,andreapaiola,12/24/2015 8:51 +10352960,"FBI director calls lack of data on police shootings ""ridiculous,"" ""embarrassing""",https://www.washingtonpost.com/national/fbi-director-calls-lack-of-data-on-police-shootings-ridiculous-embarrassing/2015/10/07/c0ebaf7a-6d16-11e5-b31c-d80d62b53e28_story.html,148,232,jsvine,10/8/2015 14:28 +11048131,PayPal Starts Banning VPN and SmartDNS Services,https://torrentfreak.com/paypal-starts-banning-vpn-and-smartdns-services-160205/,296,193,fernandotakai,2/6/2016 15:39 +11713727,Ask HN: Has technology benefited the classroom?,,7,11,Snackchez,5/17/2016 14:07 +11167356,The Millionaire Machine (with Cliff Stoll),https://www.youtube.com/watch?v=wwh0KH-ICCw,1,1,pdkl95,2/24/2016 15:22 +10706295,Maillardet's automaton,https://en.wikipedia.org/wiki/Maillardet%27s_automaton,1,1,te,12/9/2015 20:01 +11540784,Ubuntu 16.04 LTS Released,http://releases.ubuntu.com/16.04/,12,4,d99kris,4/21/2016 10:11 +11118854,Ask HN: How can I visualize my skills,,1,1,erkanerol,2/17/2016 16:18 +12159658,"Wikileaks Put Women in Turkey in Danger, for No Reason",http://www.huffingtonpost.com/zeynep-tufekci/wikileaks-erdogan-emails_b_11158792.html,5,2,anon1385,7/25/2016 16:16 +11470621,Animating geographical spread and trends of drug overdose in USA 1999 2014,http://community.wolfram.com/groups/-/m/t/837574,10,3,soofy,4/11/2016 10:36 +12460989,How the Blind See the Stars,http://nautil.us/blog/how-the-blind-see-the-stars,45,13,dnetesn,9/9/2016 10:57 +11746811,It's time Linux fans open their arms to closed source,http://www.techrepublic.com/article/time-linux-fans-open-their-arms-to-closed-source/,2,1,campuscodi,5/22/2016 0:04 +10751227,Introducing Background Sync Web API,https://developers.google.com/web/updates/2015/12/background-sync?hl=en,54,10,toni,12/17/2015 13:07 +12101742,I have a confession,,1,1,hackernewscdn,7/15/2016 15:37 +12389013,"Watch 1,500+ documentaries from the world's best filmmakers up to 4K",https://www.curiositystream.com/,3,1,TimMeade,8/30/2016 11:19 +11288896,Study finds negative association between empathizing and calculation ability,http://www.nature.com/articles/srep23011,189,71,randomname2,3/15/2016 11:48 +12445461,Pokémon Go Is Coming to Apple Watch,https://www.polygon.com/2016/9/7/12836838/pokemon-go-apple-watch-ios,7,1,rl3,9/7/2016 17:46 +10283643,"Low-carb diet may make you unhealthy, shorten your life",http://www.abc.net.au/news/2014-03-05/low-carb-diet-may-shorten-your-life-study-finds/5299284,2,2,amelius,9/26/2015 17:13 +10332437,Show HN: Mailroof.com Map-based CRM in your email,http://www.mailroof.com,10,4,mailroof,10/5/2015 15:30 +12104482,Ask HN: Why Y Combinator? Why not Y Combinator?,,14,7,yeukhon,7/15/2016 23:35 +10865640,North Sentinel Island,https://en.wikipedia.org/wiki/North_Sentinel_Island,3,1,shawndumas,1/8/2016 15:45 +11767814,"Airbnb: Building a Visual Language, Behind the scenes of our new design system",http://airbnb.design/building-a-visual-language/,128,16,kevinwuhoo,5/25/2016 5:23 +10997485,Tale of Tasteless Tomatoes: Why Vegetables Do Not Taste Good Anymore,http://calmscience.net/2015/12/11/tale-of-tasteless-tomatoes-why-vegetables-do-not-taste-good-anymore/,151,136,kafkaesq,1/29/2016 18:50 +10397555,#FFFFFF Diversity,https://medium.com/this-is-hard/ffffff-diversity-1bd2b3421e8a,56,91,Amorymeltzer,10/16/2015 5:02 +12044687,Deploy Docker images directly to Heroku,https://devcenter.heroku.com/changelog-items/926,4,1,troethom,7/6/2016 17:45 +11216401,Samsung starts shipping the world's largest capacity SSD,http://www.engadget.com/2016/03/03/samsung-16tb-ssd-shipping/,3,4,testrun,3/3/2016 12:28 +10759164,Reflecting on Haskell in 2015,http://www.stephendiehl.com/posts/haskell_2016.html,191,102,lelf,12/18/2015 16:12 +11779918,Microsoft and Facebook to build subsea cable across Atlantic,https://blogs.technet.microsoft.com/server-cloud/2016/05/26/microsoft-and-facebook-to-build-subsea-cable-across-atlantic/,18,3,chirau,5/26/2016 17:38 +11996927,Alien Worlds Might Be Covered in Enormous Mountains,http://www.theatlantic.com/science/archive/2016/06/the-enormous-mountains-of-alien-worlds/489101/?single_page=true,10,5,Thevet,6/28/2016 19:47 +10391558,Experimental smartphone app for touchless map control via accelerometer,https://github.com/petervojtek/touchless-map,22,3,matell,10/15/2015 5:48 +11161137,Twitter launches Fabric mobile app for developers,https://fabric.io/blog/introducing-the-fabric-mobile-app,172,46,growthhack,2/23/2016 18:37 +11202570,Wikimedia Foundation director resigns after uproar over Knowledge Engine,http://arstechnica.com/tech-policy/2016/02/head-of-wikimedia-foundation-resigns-as-tensions-with-editors-mount/,68,39,timemachine,3/1/2016 13:58 +11578006,YouTube introduces six-second Bumper ads,http://techcrunch.com/2016/04/26/youtube-bumper-ads/,1,2,confiscate,4/27/2016 5:27 +12187893,StackOverflow & GitHub made responsive,,4,1,yossir,7/29/2016 16:25 +10925055,Always download Debian packages using Tor the simple recipe,http://people.skolelinux.org/pere/blog/Always_download_Debian_packages_using_Tor___the_simple_recipe.html,3,3,liotier,1/18/2016 15:54 +11827750,Ask HN: Is there an up-to-date global index of conferences?,,11,1,hoodoof,6/3/2016 1:44 +11802889,Beyond Memory Safety with Types,https://insanitybit.github.io/2016/05/30/beyond-memory-safety-with-types,20,5,GolDDranks,5/30/2016 20:09 +12512136,Esoteric Topics in Computer Programming (2002),http://web.archive.org/web/20020609152409/www.catseye.mb.ca/esoteric/index.html,126,87,pmoriarty,9/16/2016 5:58 +11668728,The Internet Economy,https://medium.com/@cdixon/the-internet-economy-fc43f3eff58a,100,41,avyfain,5/10/2016 17:06 +12269573,The Flex Company (YC S16) Makes Periods Painless,http://themacro.com/articles/2016/08/the-flex-company/,10,1,stvnchn,8/11/2016 16:27 +10946522,Georgia Tech's Crystal Cathedral of Robotics: A Lab Open to Outsiders,http://magazine.coe.gatech.edu/feature/welcome-robot-zoo,4,2,dpflan,1/21/2016 16:59 +11212607,The nanolight revolution is coming,https://www.nature.com/news/the-nanolight-revolution-is-coming-1.19482,1,1,etiam,3/2/2016 20:07 +12508574,Show HN: Pay $1 for every day you don't push to GitHub,http://codeorelse.com,7,7,Andrewbass,9/15/2016 18:33 +10642317,Kill Flappy Bird (Game),http://regedanzter.com/flappysmash/,2,1,regedanzter,11/28/2015 20:35 +12088859,Show HN: After 20 years Morguefile.com relaunches,http://morguefile.com/,2,1,koi,7/13/2016 19:17 +11782003,"Reddit, account security, and YOU",https://www.reddit.com/r/announcements/comments/4l60nc/reddit_account_security_and_you/,3,3,ikeboy,5/26/2016 21:56 +10806939,New York is installing its promised public gigabit Wi-Fi,http://www.theverge.com/2015/12/28/10674634/linknyc-new-york-public-wifi-installation-photos-gigabit,146,95,daegloe,12/29/2015 15:02 +10738261,More Responsive Tapping on iOS,https://webkit.org/blog/5610/more-responsive-tapping-on-ios/,97,34,cheeaun,12/15/2015 15:25 +10341621,Whats in a Boarding Pass Barcode?,http://krebsonsecurity.com/2015/10/whats-in-a-boarding-pass-barcode-a-lot/,151,56,snowy,10/6/2015 19:24 +12218272,78% of Children with ADD No Longer Have It as Adults,https://theconversation.com/an-end-to-sleepless-nights-new-hope-for-families-raising-children-with-adhd-62749,13,5,salmonet,8/3/2016 14:47 +11660781,Show HN: Hackchain Continuous Bitcoin-Inspired CTF Competition,http://hackcha.in/,83,4,indutny,5/9/2016 15:57 +12435924,This Is What a Zero-Star Car Safety Rating Looks Like [In a 40mph Collision],http://jalopnik.com/this-is-what-a-zero-star-safety-rating-looks-like-on-fo-1777974705,2,1,obi1kenobi,9/6/2016 13:44 +12341843,Robot Octopus Points the Way to Soft Robotics,http://spectrum.ieee.org/robotics/robotics-hardware/robot-octopus-points-the-way-to-soft-robotics-with-eight-wiggly-arms,73,2,mzehrer,8/23/2016 6:44 +12465789,Frictionless Data,http://frictionlessdata.io/,2,1,mxfh,9/9/2016 20:26 +12142749,Reddit: Pokemon Go blocked in india,https://www.reddit.com/r/pokemongo/comments/4u0ywu/blocked_in_india/,2,1,govindpatel,7/22/2016 10:35 +10879733,CurveCP in JavaScript,https://github.com/thomasdelaet/curvecp,3,1,Tepix,1/11/2016 9:16 +12347216,Colossus: Face to Face with the First Electronic Computer,http://hackaday.com/2016/08/23/colossus-face-to-face-with-the-first-electronic-computer/,23,1,szczys,8/23/2016 20:19 +12002746,Memcpy (and friends) with NULL pointers,https://www.imperialviolet.org/2016/06/26/nonnull.html,44,6,runesoerensen,6/29/2016 16:32 +11400816,First Fellowship Virtual Demo Day,https://blog.ycombinator.com/first-fellowship-virtual-demo-day,4,1,jordigg,3/31/2016 21:47 +12285518,We Are Nowhere Close to the Limits of Athletic Performance,http://nautil.us/issue/39/sport/we-are-nowhere-close-to-the-limits-of-athletic-performance,1,1,okket,8/14/2016 13:38 +10478606,Common Core Math Is Not the Enemy,https://medium.com/i-math/common-core-math-is-not-the-enemy-c05b68f46b3e#.nussxb7en,2,1,ThomPete,10/30/2015 16:03 +11814734,Ask HN: Best Read on HTTP Cookies?,,2,1,dedalus,6/1/2016 14:48 +10830141,The Irredeemable Chris Rose,http://www.cjr.org/the_profile/the_irredeemable_chris_rose.php,5,1,miraj,1/3/2016 10:20 +11515307,Ask HN: Describe your first enterprise sale,,496,96,hackerews,4/17/2016 17:18 +10365764,The Families Funding the 2016 Presidential Election,http://www.nytimes.com/interactive/2015/10/11/us/politics/2016-presidential-election-super-pac-donors.html,2,1,erickhill,10/10/2015 15:21 +10645433,Who Writes Wikipedia? (2006),http://www.aaronsw.com/weblog/whowriteswikipedia,4,1,ericax,11/29/2015 18:07 +10447787,How World's Largest Legal Ivory Market Fuels Demand for Illegal Ivory,http://news.nationalgeographic.com/2015/10/legal-loopholes-fuel-ivory-smuggling-in-hong-kong/,35,19,adamnemecek,10/25/2015 18:29 +11764862,The Hidden Cost of Cheap??UX and Internal Applications,https://medium.com/@GeneHughson/the-hidden-cost-of-cheap-ux-and-internal-applications-733b3d4dba2#.nb0mp7qcq,1,1,genehughson,5/24/2016 19:41 +11064509,Ask HN: Best Time for Show HN on HackerNews?,,1,1,a_shiri,2/9/2016 10:56 +10650662,Ask HN: Ever Use Front End Framework Mithril.js?,,7,5,hanniabu,11/30/2015 17:49 +11765176,"For first time since 1880s, more young Americans live with parents than partner",http://www.citylab.com/housing/2016/05/pew-young-adults-parents-housing/483995/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheAtlanticCities+%28CityLab%29,327,430,jseliger,5/24/2016 20:24 +12564120,Heroku's SSL certificate has expired,https://twitter.com/herokustatus/status/779299521125683200,7,2,evaneykelen,9/23/2016 12:46 +11008993,ESP8266 Witty Cloud Board Demo,http://adityatannu.com/blog/post/2016/01/31/ESP8266-Witty-Cloud-Board-Demo.html,3,2,mikecarlton,2/1/2016 1:06 +10987336,Gender gap: only 3% of founders are women in BCN startups,http://blog.jobsbcn.com/index.php/2016/01/26/el-sector-startup-en-barcelona-enero-2016/?lang=es,5,2,xae,1/28/2016 9:55 +10572585,The new kings of YouTube botting,http://kernelmag.dailydot.com/issue-sections/headline-story/15007/cheap-youtube-views/,89,10,nols,11/16/2015 4:18 +11870302,Reviewing Microsoft's Automatic Insertion of Telemetry into C++ Binaries,https://www.infoq.com/news/2016/06/visual-cpp-telemetry,112,33,osopanda,6/9/2016 16:08 +12173566,Wal-Mart Proves Open Source Is Big Business,http://www.forbes.com/sites/moorinsights/2016/07/26/wal-mart-proves-open-source-is-big-business/,71,33,kungfudoi,7/27/2016 15:25 +10426333,NASA Gives 99-Percent Probability of 5.0 Earthquake in LA,http://losangeles.cbslocal.com/2015/10/20/nasa-gives-99-percent-probability-of-5-0-earthquake-in-la/,4,2,kushti,10/21/2015 16:00 +11369360,Moon Village,http://www.esa.int/esatv/Videos/2016/03/Moon_Village2,2,2,adam_klein,3/27/2016 8:44 +11742817,In a Room with Radiohead,http://www.the-tls.co.uk/articles/public/just-playing-in-a-room-with-friends/,85,39,tintinnabula,5/21/2016 1:57 +11457697,Russian diplomats curious obsession with poetry,https://www.washingtonpost.com/world/europe/russian-diplomats-have-a-curious-obsession-with-poetry/2016/04/01/c0c26d4e-f688-11e5-958d-d038dac6e718_story.html,11,1,lermontov,4/8/2016 20:34 +10727064,Americans: Pay Your Taxes--Or Lose Your Passport,http://www.wsj.com/articles/americans-pay-your-taxes-or-lose-your-passport-1447971424,2,1,hippich,12/13/2015 17:46 +12532431,"Ask HN: Those with small side projects, where did you find part-time talent?",,2,2,phankinson,9/19/2016 16:04 +11216020,"Borg, Omega, Kubernetes: Lessons learned from container management over a decade",http://queue.acm.org/detail.cfm?id=2898444,292,24,alanfranzoni,3/3/2016 10:29 +11994157,This cartoon explains why Elon Musk thinks were in a computer simulation,http://www.vox.com/technology/2016/6/23/12007694/elon-musk-simulation-cartoon,1,1,UlysseBottello,6/28/2016 14:43 +11266774,A regex crossword from LinkedIn Engineering,https://engineering.linkedin.com/puzzle,66,40,neilpomerleau,3/11/2016 14:28 +10510495,Im a successful software developer. I often want to hurt myself,https://medium.com/@somejournaler/i-m-a-successful-software-developer-i-often-want-to-hurt-myself-86366c93d8c1,2,1,somejournaler,11/4/2015 23:12 +11210960,Crow: Flask based Microframework in C++,https://github.com/ipkn/crow,6,1,suyash93,3/2/2016 16:31 +11764403,AMDs Zen Summit Ridge 8-core CPUs on Par with Intel I7 5960X Extreme,http://techfrag.com/2016/05/24/amd-zen-summit-ridge-twice-fast-fx-8350-par-intel-i7-5960x-extreme/,178,73,willvarfar,5/24/2016 18:46 +10811586,"Show HN: Cli-money, a simple Unix finance utility",http://www.launchpad.net/cli-money,3,1,veddox,12/30/2015 10:49 +10419940,Ask HN: Wireless HDMI for Macbook to TV,,2,1,tmaly,10/20/2015 15:54 +10764268,Regent: A Language for Implicit Dataflow Parallelism,http://regent-lang.org/,60,19,eslaught,12/19/2015 18:04 +11989494,A common interface for building developer tools,http://developers.redhat.com/blog/2016/06/27/a-common-interface-for-building-developer-tools/,2,1,ingve,6/27/2016 21:07 +10824723,Show HN: Fisherman Fish Shell Manager,https://github.com/fisherman/fisherman,13,12,bucaran,1/2/2016 2:50 +10520293,Why did I leave IBM? (2006),https://web.archive.org/web/20070212062901/http://www.paramecium.org/~leendert/musings.html,32,11,luu,11/6/2015 16:30 +11953286,Ask HN: What (lightweight) bug tracker do you use?,,4,7,neilellis,6/22/2016 12:23 +11668384,When Science Reporting Goes Wrong,http://www.slate.com/blogs/bad_astronomy/2016/05/10/john_oliver_science_and_the_media.html,7,1,okket,5/10/2016 16:26 +11462593,"Film Dialogue from 2,000 screenplays, broken down by gender and age",http://polygraph.cool/films/index.html,89,56,traviskuhl,4/9/2016 18:28 +11518536,Database access through monadic streams with Lemonade Sqlite,https://michipili.github.io/essay/2016/03/16/lemonade-sqlite.html,2,2,vog,4/18/2016 8:53 +11694605,SML# version 3.0.1 has been released,http://www.pllab.riec.tohoku.ac.jp/smlsharp/,2,3,alegrn,5/14/2016 4:58 +11288852,The web's original sin,http://www.quirksmode.org/blog/archives/2016/03/the_webs_origin.html,123,127,Isofarro,3/15/2016 11:35 +10752040,A very short history of data science (2012),http://www.forbes.com/sites/gilpress/2013/05/28/a-very-short-history-of-data-science/,13,1,sti398,12/17/2015 15:35 +10296732,Apples approach to privacy,http://www.apple.com/privacy/,276,164,braythwayt,9/29/2015 14:54 +10949174,San Francisco has had its first self-driving car accident,http://www.pcworld.com/article/3024939/car-tech/san-francisco-has-had-its-first-autonomous-car-accident.html,10,3,OopsCriticality,1/21/2016 22:52 +10633070,Will You Be Able to Run a Modern Desktop Environment in 2016 Without Systemd?,http://linux.slashdot.org/story/15/11/25/1728238/will-you-be-able-to-run-a-modern-desktop-environment-in-2016-without-systemd,3,1,mariuz,11/26/2015 14:24 +11556053,The Rise of Pirate Libraries,http://www.atlasobscura.com/articles/the-rise-of-illegal-pirate-libraries?utm_source=facebook.com&utm_medium=atlas-page,132,35,fforflo,4/23/2016 15:56 +12557590,Two Out of Three Young Millennials Now Use an Ad Blocker,http://www.scribblrs.com/millennials-ad-blocker/,100,174,angry-hacker,9/22/2016 15:37 +12018121,U.S. Reveals Death Toll from Drone Strikes,http://www.nytimes.com/2016/07/02/world/us-reveals-death-toll-from-airstrikes-outside-of-war-zones.html,14,3,jbegley,7/1/2016 17:40 +11377144,Are You More Likely to Be a Baker If Youre Named Baker?,http://nautil.us/blog/are-you-more-likely-to-be-a-baker-if-youre-named-baker,31,28,dnetesn,3/28/2016 20:31 +10761955,PostgreSQL 9.5 RC1 Released,http://www.postgresql.org/about/news/1631/,209,36,elchief,12/19/2015 0:20 +12264500,Mycroft: AI for everyone (open source Amazon Echo replacement),https://mycroft.ai/,2,3,llamataboot,8/10/2016 20:17 +12329407,The hedgehog and the fox,http://ben-evans.com/benedictevans/2016/7/12/the-hedgehog-and-the-fox,23,9,chunkyslink,8/21/2016 4:41 +12330251,Everyday Placebo Buttons Create Semblance of Control,http://99percentinvisible.org/article/user-illusion-everyday-placebo-buttons-create-semblance-control/,137,171,pttrsmrt,8/21/2016 10:07 +12101415,Executing non-alphanumeric JavaScript without parentheses,http://blog.portswigger.net/2016/07/executing-non-alphanumeric-javascript.html,123,19,kkl,7/15/2016 14:57 +11327365,Show HN: Looking for feedback on a Webpack/etc plugin,,2,1,Klonoar,3/21/2016 11:35 +12136557,Show HN: PleasantFish 2.0 Skills Feedback and Articles for Tech Professionals,https://www.pleasantfish.com,3,1,ali_ibrahim,7/21/2016 13:07 +11494648,Why Logical Clocks Are Easy,http://queue.acm.org/detail.cfm?id=2917756,2,1,tim_sw,4/14/2016 6:22 +10280098,Why Does British Humor Fall Flat in China?,https://soundcloud.com/tns_global/why-does-british-humour-fall-flat-in-china,1,1,pm24601,9/25/2015 19:13 +11093115,MaruOS is open source,http://blog.maruos.com/2016/02/11/maru-is-open-source/,9,1,chei0aiV,2/13/2016 7:40 +10801056,Should You Become a Full Stack Developer?,http://logz.io/blog/full-stack-developer/,11,21,sjscott80,12/28/2015 13:56 +10988662,Large-scale conspiracies would quickly reveal themselves,http://www.ox.ac.uk/news/2016-01-26-too-many-minions-spoil-plot,3,5,jmngomes,1/28/2016 15:24 +10602298,They Are Us,http://www.nytimes.com/2015/11/19/opinion/betraying-ourselves.html?action=click&pgtype=Homepage®ion=CColumn&module=MostEmailed&version=Full&src=me&WT.nav=MostEmailed,23,15,muddyrivers,11/20/2015 17:08 +11971957,Ask HN: How do I differentiate myself in the construction industry?,,3,6,dhruvkar,6/24/2016 17:56 +10207071,React Native running on tvOS,https://github.com/facebook/react-native/issues/2618#issuecomment-139682888,15,1,brentvatne,9/12/2015 2:59 +11690602,VR on the Web with Mozilla's A-Frame,https://aframe.io/#cool,2,2,aaronwidd,5/13/2016 14:29 +11918659,Smart detection for passive sniffing in the Tor-network,https://chloe.re/2016/06/16/badonions/,90,9,dotchloe,6/16/2016 20:31 +10199265,React v0.14 Release Candidate,https://facebook.github.io/react/blog/2015/09/10/react-v0.14-rc1.html,10,1,dfguo,9/10/2015 17:13 +11018133,Oil Crash is Kicking Off One of the Largest Wealth Transfers in History,http://www.bloomberg.com/news/articles/2016-02-01/bofa-the-oil-crash-is-kicking-off-one-of-the-largest-wealth-transfers-in-human-history,213,219,walterbell,2/2/2016 7:53 +11752019,"Ask HN: In a hyper conformist world, will you raise your kids as free thinkers?",,1,1,spacewhale,5/23/2016 5:11 +11691792,Another Study Finds Link Between Pharma Money and Brand-name Prescribing,https://www.propublica.org/article/another-study-finds-link-between-pharma-money-and-brand-name-prescribing,85,10,acsillag,5/13/2016 17:28 +12338287,Ask HN: Recommendations for too-quiet open office?,,3,3,graham1776,8/22/2016 18:23 +12572240,Google suggestions for every letter of the alphabet,http://www.internetalphabet.ru/en.html,3,1,surganov,9/24/2016 19:33 +10548004,Show HN: Slackipy automate slack user invites (written using Flask),https://github.com/avinassh/slackipy,4,1,avinassh,11/11/2015 17:57 +11720888,Analyzing stock-based compensation for Twitter and Facebook employees,https://medium.com/@fwiwm2c/stock-based-compensation-facebook-vs-twitter-b0ec1f88f791#.i2seqoq01,48,13,fwiwm2c,5/18/2016 10:21 +12399952,Release Notes for Safari Technology Preview Release 12,https://webkit.org/blog/6928/release-notes-for-safari-technology-preview-release-12/,24,4,okket,8/31/2016 17:24 +10394788,Coding Interview Tips,http://www.interviewcake.com/article/tips-and-tricks,164,54,gameguy43,10/15/2015 17:58 +11593426,Book Review: Albion's Seed,http://slatestarcodex.com/2016/04/27/book-review-albions-seed/,5,1,ScottBurson,4/29/2016 2:33 +11953935,"In Newly Created Life-Form, a Major Mystery",https://www.quantamagazine.org/20160324-in-newly-created-life-form-a-major-mystery/,550,139,DiabloD3,6/22/2016 13:59 +11247945,Universities Are Becoming Billion Dollar Hedge Funds with Schools Attached,http://www.thenation.com/article/universities-are-becoming-billion-dollar-hedge-funds-with-schools-attached/,7,1,spinchange,3/8/2016 19:45 +12525081,Show HN: A Catalog of React Components,https://github.com/brillout/awesome-react-components,2,1,rombri,9/18/2016 12:51 +10841759,Getting to Zero Exceptions,http://yellerapp.com/posts/2015-06-01-getting-to-exception-zero.html,54,29,luu,1/5/2016 7:07 +12240253,IBM Watson correctly diagnoses a form of leukemia,http://siliconangle.com/blog/2016/08/05/watson-correctly-diagnoses-woman-after-doctors-were-stumped/,271,76,adamnemecek,8/6/2016 22:53 +10379552,Microsoft Will Now Let Windows 10 Upgraders Use Windows 7 or 8 Product Key,https://www.thurrott.com/windows/windows-10/6815/microsoft-will-now-let-windows-10-upgraders-use-windows-7-8-or-8-1-product-key-to-activate,1,1,denysonique,10/13/2015 10:56 +10723470,Mochizuki Workshop at Oxford,http://www.math.columbia.edu/~woit/wordpress/?p=8160,28,6,subnaught,12/12/2015 17:52 +12536895,Android Studio 2.2,https://android-developers.blogspot.com/2016/09/android-studio-2-2.html,99,78,dvdyzag,9/20/2016 3:47 +11322921,Ethereum Blockchain Project Launches First Production Release,http://www.coindesk.com/ethereum-blockchain-homestead/,83,27,ca98am79,3/20/2016 14:00 +11917587,"Spam King, who defied nearly $1B in default judgments, sentenced to 2.5 years",http://arstechnica.com/tech-policy/2016/06/spam-king-who-defied-nearly-1b-in-default-judgments-sentenced-to-2-5-years/,16,5,jackgavigan,6/16/2016 17:31 +10373360,Cure for Type 1 Diabetes Imminent After Harvard Stem Cell Breakthrough (2014),https://uk.news.yahoo.com/cure-type-1-diabetes-imminent-harvard-stem-cell-125135549.html,9,1,pgt,10/12/2015 9:10 +11798550,Ask HN: Specializing in a technical domain,,11,2,votr,5/29/2016 22:38 +10391452,Universal basic income?: A mapped community argument,http://en.arguman.org/a-universal-basic-income-is-the-best-way-to-eradicate-economic-inequality,6,2,creamyhorror,10/15/2015 5:07 +10309400,Psychology and sexual equality,http://www.economist.com/news/21668014-women-perceive-more-conflicts-men-do-between-promotion-and-other-goals-what,1,1,jimsojim,10/1/2015 5:28 +11987414,Inappropriate Uses of Google Trends,https://medium.com/@dannypage/stop-using-google-trends-a5014dd32588,488,105,prostoalex,6/27/2016 16:45 +10558795,A Savings App Designed by a Behavioral Economist,http://www.theatlantic.com/business/archive/2015/11/savings-app-behavioral-economist/414522/?single_page=true,27,2,kercker,11/13/2015 9:21 +10825621,Ask HN: Front-end dev trends for 2016,,3,1,danielovichdk,1/2/2016 9:04 +11825388,The Google/Oracle decision was bad for copyright and bad for software,http://arstechnica.com/business/2016/06/the-googleoracle-decision-was-bad-for-copyright-and-bad-for-software/,8,2,nikbackm,6/2/2016 19:33 +10292850,Best estimates are that American debt cannot be fixed with taxes on capital,http://marginalrevolution.com/marginalrevolution/2015/09/best-estimates-are-that-american-debt-is-not-sustainable.html,22,32,baristaGeek,9/28/2015 20:11 +11706129,My Career with the Phone Company,https://medium.com/the-coffeelicious/my-career-with-the-phone-company-ff95853cee8b#.twe3dfssx,1,1,kostyk,5/16/2016 13:34 +12430298,Philae Found,http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_found,1238,125,de_dave,9/5/2016 13:53 +12477159,60 days to NES mini launch. What are your guesses on HW used?,https://ldom22.github.io/NES-classic-reminder/,1,1,ldom22,9/12/2016 4:19 +11192667,Git rebase and the golden rule explained,https://medium.com/@pierreda/git-rebase-and-the-golden-rule-explained-70715eccc372#.lo2efrtcr,6,3,adamnemecek,2/28/2016 22:24 +11155701,The Tunguska Event,http://www.slate.com/blogs/atlas_obscura/2016/02/22/more_than_a_century_later_there_are_still_questions_about_what_happened.html,75,71,bootload,2/23/2016 1:10 +11582143,Why Amazon Is Going to Build Its Own Cellular Network,https://medium.com/@dconrad/why-amazon-is-going-to-build-its-own-cellular-network-29c94b109747,4,1,dconrad,4/27/2016 16:48 +10729880,Ask HN: Can we have a read later for the posts?,,18,20,ForFreedom,12/14/2015 7:57 +10883346,Anti-Decay Programming,http://johnnunemaker.com/anti-decay-programming/,2,1,jnunemaker,1/11/2016 20:43 +10542205,Dissected Maps Were the First Jigsaw Puzzles,http://www.slate.com/blogs/the_vault/2015/11/04/history_of_puzzles_maps_used_to_teach_geography_in_the_19th_century.html,17,1,benbreen,11/10/2015 20:28 +11438479,FAQ Peachpie PHP to .NET Compiler,http://blog.peachpie.io/2016/04/faq.html,21,1,pchp,4/6/2016 13:07 +12381002,Ask HN: How much should I charge per hour as Developer?,,4,4,user7878,8/29/2016 10:20 +10670284,Figma The Collaborative Interface Design Tool,https://www.figma.com/,13,1,uptown,12/3/2015 16:01 +11305527,Google Puts Boston Dynamics Up for Sale in Robotics Retreat,http://www.bloomberg.com/news/articles/2016-03-17/google-is-said-to-put-boston-dynamics-robotics-unit-up-for-sale,830,387,doener,3/17/2016 16:40 +11842156,Free C Programming Course from Aalto University and the University of Helsinki,http://mooc.fi/courses/2016/aalto-c/en/,14,2,epistemos,6/5/2016 17:57 +11240429,Building Market-Networks to Reshape the Legal Profession,https://www.legal.io/blog/56ddbe3de4a99439930000ce/How-Market-Networks-Will-Reshape-the-Legal-Profession,3,1,RedditKon,3/7/2016 18:17 +11647033,Rails 5.0.0.rc1,https://github.com/rails/rails/tree/v5.0.0.rc1,283,138,bdcravens,5/6/2016 22:07 +11309586,Common Ground: A children's book about the tragedy of the commons,http://www.mollybang.com/Pages/common.html,3,2,cardamomo,3/18/2016 3:05 +11158339,Child tracker firm in hack row,http://www.bbc.co.uk/news/technology-35639545,19,5,jgrahamc,2/23/2016 12:22 +11435600,"Measure Seventy-Five Times, Cut Once: Further Blood Glucose Meter Testing",https://medium.com/@chrishannemann/measure-seventy-five-times-cut-once-further-blood-glucose-meter-testing-9e769a853710,1,1,ndonnellan,4/6/2016 0:00 +10543261,"After Poking Facebook, Life Ain't Easy for a Site Named Tsu",http://www.nytimes.com/aponline/2015/11/10/business/ap-us-facebook-war.html?_r=0,2,1,georgecmu,11/10/2015 22:57 +11097789,How to learn JavaScript,https://sivers.org/learn-js,12,1,cocoflunchy,2/14/2016 10:35 +12268317,Hack of Democrats Accounts Was Wider Than Believed,http://mobile.nytimes.com/2016/08/11/us/politics/democratic-party-russia-hack-cyberattack.html?em_pos=small&emc=edit_dk_20160811&nl=dealbook&nl_art=10&nlid=65508833&ref=headline&te=1&referer=,2,1,JumpCrisscross,8/11/2016 14:08 +11162644,Chocolate maker Mars has ordered a recall of chocolate products in 55 countries,http://www.bbc.com/news/business-35642075,39,11,rabblac,2/23/2016 21:51 +11318028,First look inside Tesla's gigafactory,http://www.rgj.com/story/money/business/2016/03/18/get-sneek-peak-inside-teslas-reno-area-gigafactory/81978520/,60,24,moadkid,3/19/2016 10:44 +10531574,"Volkswagen's US sales go up in October, despite diesel emissions scandal",http://www.theverge.com/2015/11/3/9663734/volkswagen-diesel-emissions-scandal-october-sales-rise,3,1,qzervaas,11/9/2015 5:53 +12441423,cURL 7.50.2 released,https://curl.haxx.se/changes.html#7_50_2,55,16,okket,9/7/2016 7:19 +11728989,Nokia announces return to mobile phones and tablets,http://venturebeat.com/2016/05/18/microsoft-offloads-feature-phone-business-to-foxconn-subsidiary-for-350-million/,1,1,vincent_s,5/19/2016 9:31 +11822975,How Dungeons and Dragons Is Frighteningly Close to Real Life,https://medium.com/@kolemcrae/how-dungeons-and-dragons-is-frightening-close-to-real-life-f2784ea8e927#.v11b4h9wg,4,1,kolemcrae,6/2/2016 14:59 +10553320,Firefox finally comes to iOS,http://arstechnica.com/information-technology/2015/11/firefox-finally-comes-to-ios/,10,2,Garbage,11/12/2015 14:35 +12361599,Demonstrations of Attacks Against Implanted Cardiac Devices [pdf],http://d.muddywatersresearch.com/wp-content/uploads/2016/08/MW_STJ_08252016.pdf,42,18,maibaum,8/25/2016 19:09 +12538049,Free VPN in Opera 40,http://www.opera.com/blogs/desktop/2016/09/free-vpn-in-opera-browser-40/,25,12,dineshp2,9/20/2016 8:48 +11825554,Qlik acquired by Thoma Bravo for $3B,http://www.businesswire.com/news/home/20160602005740/en/Qlik-Announces-Agreement-Acquired-Thoma-Bravo-30.50,87,44,dgudkov,6/2/2016 19:56 +10372614,Daily UI: Become a better designer in 100 days,http://www.dailyui.co,2,1,dinnison,10/12/2015 4:46 +12090606,90% of software developers work outside Silicon Valley,http://qz.com/729293/90-of-software-developers-work-outside-silicon-valley/,6,2,cag_ii,7/13/2016 23:40 +10576496,"Sorry, kids: A real movement needs more than hurt feelings",http://nypost.com/2015/11/13/sorry-kids-a-real-movement-needs-more-than-hurt-feelings/,8,3,umpaloop,11/16/2015 19:23 +12344268,How a team of 2 kids and adult rookies won a Robot Sumo competition,http://blog.crisp.se/2015/10/06/henrikkniberg/how-2-kids-and-adult-rookies-won-a-robot-sumo-competition,2,1,heironimus,8/23/2016 15:03 +11639973,JekyllConf A free online conference for all things Jekyll this weekend,http://jekyllconf.com,9,1,mneumegen,5/5/2016 22:01 +10500659,What we learned from rewriting our robotic control software in Swift,http://www.sunsetlakesoftware.com/2015/11/03/what-we-learned-rewriting-our-robotic-control-software-swift,94,83,ingve,11/3/2015 16:38 +11405187,Wikimedia telnet interface,https://meta.wikimedia.org/wiki/Telnet_gateway,115,70,_joe,4/1/2016 14:54 +12472742,Dungeon Generator,https://github.com/Lallassu/DungeonGenerator,29,4,nergal,9/11/2016 10:21 +10647479,The most beautiful theory,http://www.economist.com/news/science-and-technology/21679172-century-ago-albert-einstein-changed-way-humans-saw-universe-his-work?,64,6,prostoalex,11/30/2015 3:24 +12011066,Etcd v3: increased scale and new APIs,https://coreos.com/blog/etcd3-a-new-etcd.html,189,53,philips,6/30/2016 19:35 +11866810,R Passes SAS in Scholarly Use,http://r4stats.com/2016/06/08/r-passes-sas-in-scholarly-use-finally/,193,124,sndean,6/9/2016 0:40 +11608557,Ask HN: Think about the physics of economic growth,,1,4,pygy_,5/2/2016 0:38 +12014252,The C++ Lands [png],http://softwaremaniacs.org/media/alenacpp/cppmap-2012.png,12,2,jonbaer,7/1/2016 6:41 +10270590,"Stampit Create objects from reusable, composable behaviors",https://github.com/stampit-org/stampit/,14,1,dmmalam,9/24/2015 9:15 +11154154,A Brief History of Co-Living Spaces,http://www.citylab.com/navigator/2016/02/brief-history-of-co-living-spaces/470115/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheAtlanticCities+%28CityLab%29,44,9,jseliger,2/22/2016 20:45 +10364846,Stylesheets is a community-generated collection of the best CSS resources,https://stylesheets.co/,2,1,s_dev,10/10/2015 7:47 +10802139,"Harvard Law Review Freaks Out, Sends Threat Over Public Domain Citation Guide",https://www.techdirt.com/articles/20151224/23582933173/harvard-law-review-freaks-out-sends-christmas-eve-threat-level-over-public-domain-citation-guide.shtml,4,1,mathetic,12/28/2015 17:17 +10553322,Why I Joined HackerOne as CEO,https://hackerone.com/blog/marten-mickos-why-i-joined-hackerone-as-ceo,22,9,yarapavan,11/12/2015 14:35 +11983854,An astute online comment has some wondering whether Brexit may ever happen,https://www.washingtonpost.com/news/worldviews/wp/2016/06/26/an-astute-online-comment-has-many-wondering-whether-brexit-may-ever-happen/,62,51,ScottBurson,6/27/2016 2:24 +12366675,Onenote should support markdown,https://www.change.org/p/microsoft-onenote-support-markdown?recruiter=590293622&utm_source=share_for_starters&utm_medium=copyLink,2,1,benjah1,8/26/2016 14:52 +10421947,Apple's auto ambitions sideswipe electric motorcycle startup,http://www.reuters.com/article/2015/10/19/apple-motorcycle-idUSL1N12F2JZ20151019,1,1,doener,10/20/2015 21:30 +11325993,Ask HN: What is the term for faking automation by using human labor?,,8,15,hotpockets,3/21/2016 3:19 +12488173,Earth-friendly EOMA68 Computing Devices,https://www.crowdsupply.com/eoma68/micro-desktop/updates/progress-and-events,22,11,jonny_storm,9/13/2016 13:49 +12043411,"Show HN: Hydra Full Stack Billing, Payment, Provisioning and Mediation Software",http://www.hydra-billing.com/,3,3,dkoplovich,7/6/2016 14:50 +10849458,The Myth of AI Jaron Lanier,http://edge.org/conversation/jaron_lanier-the-myth-of-ai,139,169,discreteevent,1/6/2016 9:20 +10660829,Ask HN: My Farm Approached by a Solar Company to Lease Land-What Should I Learn?,,6,12,giltleaf,12/2/2015 3:53 +10181391,Narcissistic Number,https://en.wikipedia.org/wiki/Narcissistic_number,27,2,onion2k,9/7/2015 13:47 +11759903,Members of US Military targeted by debt collectors 2x civilians: solution,https://www.civilizeit.com/military,6,1,sarahnadav,5/24/2016 8:59 +12161569,Log Structured Merge Trees,http://www.benstopford.com/2015/02/14/log-structured-merge-trees/,271,26,kushti,7/25/2016 20:57 +11118720,How to Safely Store Your Users' Passwords in 2016,https://paragonie.com/blog/2016/02/how-safely-store-password-in-2016,479,301,antitamper,2/17/2016 16:02 +11923571,Are women exiting engineering because men get the challenging assignments?,http://spectrum.ieee.org/view-from-the-valley/at-work/tech-careers/are-women-being-pushed-out-of-engineering-because-men-have-all-the-fun,46,149,teklaperry,6/17/2016 16:22 +12205152,Any good alternatives to Google app for work?,https://apps.google.com/intx/en_ie/pricing.html,2,4,baptou12,8/1/2016 19:23 +12212748,Never Lose Your Phone Again,http://tetherdevices.com/index.html/index.html/,1,2,IshanVachhani,8/2/2016 19:46 +11260180,"FBI could force us to turn on iPhone cameras and microphones, says Apple",http://www.theguardian.com/technology/2016/mar/10/apple-fbi-could-force-us-to-turn-on-iphone-cameras-microphones,10,1,ollysb,3/10/2016 16:36 +10411482,Deconstructing the CAP Theorem for CM and DevOps (2013),http://markburgess.org/blog_cap.html,33,2,shin_lao,10/19/2015 6:46 +12463786,Lessons scaling from 10 to 20 people,http://josephwalla.com/lessons-scaling-from-10-to-20-people,2,1,guiseppecalzone,9/9/2016 16:35 +11533458,3D laser printing yields high quality micro-optics,http://phys.org/news/2016-04-3d-laser-yields-high-quality.html,49,4,dnetesn,4/20/2016 10:49 +11878149,Why Rust for Low-Level Linux Programming?,http://groveronline.com/2016/06/why-rust-for-low-level-linux-programming/,200,226,pieceofpeace,6/10/2016 17:32 +10799490,Any Suggestions for My Awesome Reference Tools Repo?,https://github.com/willhoag/awesome-reference-tools,3,2,devhoag,12/28/2015 2:08 +10358878,OpenBSD's tame(2) changes its name to pledge(2),http://marc.info/?l=openbsd-cvs&m=144435306927994&w=2,1,1,DominikD,10/9/2015 8:58 +12189682,Ask HN: View Count for Submissions,,1,4,specialist,7/29/2016 20:21 +11723257,Is the Silicon Valley Real Estate Bubble About to Explode? Vanity Fair,http://www.vanityfair.com/news/2016/05/is-the-silicon-valley-real-estate-bubble-about-to-explode,9,4,mgav,5/18/2016 16:45 +11196130,Researchers Create Matrix-Like Instant Learning Through Brain Stimulation,http://techcrunch.com/2016/02/29/researchers-create-matrix-like-instant-learning-through-brain-stimulation,13,8,jessecred,2/29/2016 15:52 +12225411,PlayCanvas vs. Unity WebGL,http://blog.playcanvas.com/playcanvas-versus-unity-webgl/,1,2,MayorOfMonkeys,8/4/2016 13:44 +10402692,"Batterymakers See a Big Break Coming No, Seriously This Time",http://www.bloomberg.com/news/articles/2015-10-16/batterymakers-see-a-big-break-coming-no-seriously-this-time,2,1,T-A,10/16/2015 23:41 +11817299,Is there a chance Theranos may have been on to something?,,4,1,NN88,6/1/2016 19:14 +11648413,"Ask HN: As a U.S. developer, how do I transition to working abroad?",,5,2,every_other,5/7/2016 4:37 +11641132,An Unity LAN server-client model example,https://github.com/ifndefdeadmau5/unity5-networking-HLAPI-getting-started,2,4,ifndefdeadmau5,5/6/2016 1:48 +11416691,Belle II and the matter of antimatter,http://www.symmetrymagazine.org/article/belle-ii-and-the-matter-of-antimatter,11,1,elorant,4/3/2016 16:40 +10277201,CryptoBallot: Secure Online Voting,https://cryptoballot.com/,22,5,shocks,9/25/2015 10:03 +11791911,Ask HN: Would you use a messaging app that requires nor a phone number or email?,,1,6,karimdag,5/28/2016 15:18 +10895933,Show HN: I Implemented a HSTS Super Cookie,https://github.com/ben174/hsts-cookie,20,6,ben174,1/13/2016 17:28 +10541962,Shipping SQLite in Windows 10,http://engineering.microsoft.com/2015/10/29/sqlite-in-windows-10/,28,4,perlgeek,11/10/2015 19:54 +10929350,"Facebook Begins Campaign to Purge Europe of Xenophobic, Extremist Posts",http://www.mediaite.com/online/facebook-begins-campaign-to-purge-europe-of-xenophobic-extremist-posts/,6,9,bontoJR,1/19/2016 8:17 +10620769,Researchers Track Tricky Payment Theft Scheme,http://bits.blogs.nytimes.com/2015/11/24/researchers-track-tricky-payment-theft-scheme/?ref=business,5,1,pavornyoh,11/24/2015 14:16 +10339115,"Microsoft taking applications for $3,000 HoloLens dev kits for shipping Q1 2016",http://www.theverge.com/2015/10/6/9442849/microsoft-hololens-october-2015,35,4,slg,10/6/2015 14:32 +10712406,Class of 2016: Whose works will enter the public domain,http://publicdomainreview.org/collections/class-of-2016/,129,72,Thevet,12/10/2015 18:37 +11750521,How China is super-sizing science,http://www.bbc.co.uk/news/resources/idt-0192822d-14f1-432b-bd25-92eab6466362,9,4,PuffinBlue,5/22/2016 22:18 +10403329,Shift in weaning age supports hunting-induced extinction of Siberian mammoths,http://ns.umich.edu/new/multimedia/videos/23202-shift-in-weaning-age-supports-hunting-induced-extinction-of-siberian-woolly-mammoths,16,3,Hooke,10/17/2015 3:52 +10763615,Homeconf: replicating the conference experience at home,http://markos.gaivo.net/articles/homeconf.html,2,1,ingve,12/19/2015 14:20 +12303494,React Enlightenment,http://www.reactenlightenment.com/,106,40,tilt,8/17/2016 10:07 +10242151,Learn how to spy on competition,http://survicate.com/blog/how-to-spy-on-competition/,2,3,lucek_kierczak,9/18/2015 21:26 +10928798,Concealing the Calculus of Higher Education,http://www.nytimes.com/2016/01/16/your-money/concealing-the-calculus-of-higher-education.html?mabReward=CTM&action=click&pgtype=Homepage®ion=CColumn&module=Recommendation&src=rechp&WT.nav=RecEngine,40,10,jseliger,1/19/2016 4:03 +10824665,How to Hire,https://medium.com/@henrysward/how-to-hire-34f4ded5f176#.w0av7pj1k,30,11,jrkelly,1/2/2016 2:26 +11950819,Programming language with gradual and duck typing that targets PHP and JS,https://github.com/quack/quack,1,1,danillo,6/22/2016 0:54 +11827155,Fake UI,http://fakeui.tumblr.com/,32,13,vmorgulis,6/2/2016 23:42 +10976260,YesGraphs Android SDK,http://blog.yesgraph.com/android-sdk/,2,1,prostoalex,1/26/2016 21:31 +10887194,The pirate game,https://en.wikipedia.org/wiki/Pirate_game,298,135,dbalan,1/12/2016 13:18 +10758257,X-Rays Expose a Hidden Medieval Library,http://medievalbooks.nl/2015/12/18/x-rays-expose-a-hidden-medieval-library/,86,6,robin_reala,12/18/2015 13:20 +12030158,Realtime streaming from torrents in the browser,https://swazm.com,11,2,0x4139,7/4/2016 11:51 +10962352,Map of rail station usage in the UK: 1997 2015,http://www.bettertransport.org.uk/maps/rail-usage.html,55,22,chestnut-tree,1/24/2016 12:46 +10317198,Mass incarceration: A new theory for why so many Americans are in prison,http://www.slate.com/articles/news_and_politics/crime/2015/02/mass_incarceration_a_provocative_new_theory_for_why_so_many_americans_are.single.html,115,180,po,10/2/2015 7:37 +11791385,Adblocking and Counter-Blocking: A Slice of the Arms Race,https://www.lightbluetouchpaper.org/2016/05/28/adblocking-and-counter-blocking-a-slice-of-the-arms-race/,4,1,stargrave,5/28/2016 12:18 +10952461,"Ad blockers: Google reveals it now has over 1,000 staff just fighting bad ads",http://www.zdnet.com/article/ad-busters-google-employs-over-1000-people-just-to-fight-bad-ads/,4,1,augb,1/22/2016 13:11 +10492251,The Kotlin Language: 1.0 Beta Is Here,http://blog.jetbrains.com/kotlin/2015/11/the-kotlin-language-1-0-beta-is-here/,178,92,TheAnimus,11/2/2015 15:26 +11403653,Colorful Image Colorization,http://richzhang.github.io/colorization/,113,26,stared,4/1/2016 9:21 +11224013,Show HN: Playing a .wav file through the system bus,https://github.com/anfractuosity/musicplayer,3,1,deutronium,3/4/2016 14:47 +11800072,Is Good Code Impossible? (2010),http://raptureinvenice.com/is-good-code-impossible/,1,1,tomaskazemekas,5/30/2016 7:28 +10559520,"Cancer Genome Atlas Interactive Exploration of Patient Gender, Race and Age",http://www.enpicom.com/visual-lab/tcga-exploration/embed/,12,6,trevi,11/13/2015 12:51 +10312179,A Different Approach to VC,http://avc.com/2015/10/a-different-approach-to-vc/,33,12,wslh,10/1/2015 16:10 +12061320,Changes to Trusted Certificate Authorities in Android Nougat,https://android-developers.blogspot.com/2016/07/changes-to-trusted-certificate.html,102,100,ffernand,7/9/2016 14:10 +11266158,Dealing with releases of single page applications,http://www.beepsend.com/2016/03/10/dealing-releases-single-page-applications/,10,12,xintron,3/11/2016 12:27 +10886022,Ask HN: Should Learn/switch to JavaScript Programming (a Java Developer),,4,2,nanospeck,1/12/2016 7:16 +12075919,A bucket a day a hack in agriculture,https://medium.com/@pravenj/a-bucket-a-day-a-hack-in-agriculture-8b8176b7d285#.o7seviday,2,1,pravenj,7/12/2016 0:42 +11311607,Ask HN: What newsletters do you read and recommend?,,1,1,praveenh,3/18/2016 13:26 +11801372,Last-khajiit/vkb: Java bot for vk.com competitions,https://github.com/last-khajiit/vkb,1,3,last_khajiit,5/30/2016 14:00 +11473890,Keras 1.0 Python deep learning framework,http://blog.keras.io/introducing-keras-10.html,180,17,fchollet,4/11/2016 18:21 +10879557,CL21 Common Lisp in the 21st Century,https://github.com/cl21/cl21,98,40,eruditely,1/11/2016 8:20 +10695611,Astronaut Selection,http://astronauts.nasa.gov/content/broch00.htm,120,110,DanielRibeiro,12/8/2015 10:06 +11938876,OpenAI technical goals,https://openai.com/blog/openai-technical-goals/,220,70,runesoerensen,6/20/2016 16:01 +10631471,The True Story of Good Coffee The Awl,http://www.theawl.com/2015/10/its-bad,2,1,snadahalli,11/26/2015 5:44 +11946565,America's upper middle class is growing,http://www.wlwt.com/money/americas-upper-middle-class-is-thriving/40151566,46,105,arcanus,6/21/2016 15:47 +10720639,Rock-Solid Shell Scripting in Scala,https://vimeo.com/148552858,4,1,lihaoyi,12/11/2015 22:39 +11872598,How Silicon Valley Nails Silicon Valley,http://www.newyorker.com/culture/culture-desk/how-silicon-valley-nails-silicon-valley,504,301,sajid,6/9/2016 21:40 +12429781,4 Benefits of Automating Performance Management [Infograph],http://www.slideshare.net/TETIndia/automated-performance-management-benefits,1,1,the_bong_one,9/5/2016 12:25 +10836837,"Linux and open source have won, get over it",http://www.zdnet.com/article/linux-and-open-source-have-won-get-over-it/,11,3,CrankyBear,1/4/2016 17:18 +12508710,Mark Cuban Changes His Mind,https://www.bloomberg.com/features/2016-america-divided/mark-cuban/,2,1,6stringmerc,9/15/2016 18:48 +10268720,Why the Rich Are So Much Richer,http://www.nybooks.com/articles/archives/2015/sep/24/stiglitz-why-rich-are-so-much-richer/?utm_medium=email&utm_campaign=NYR+Ukraine+Stiglitz+Jewish+terrorists&utm_content=NYR+Ukraine+Stiglitz+Jewish+terrorists+CID_b2cf8552a449621ee6f6a15876c4afbd&utm_source=Newsletter&utm_term=Why%20the%20Rich%20Are%20So%20Much%20Richer,57,59,prostoalex,9/23/2015 22:36 +10599543,We know the city where HIV first emerged,http://www.bbc.com/earth/story/20151119-we-know-the-city-where-hiv-first-infected-a-human,185,47,Perados,11/20/2015 4:23 +12210401,The DNC Hack Shows How Weve Dropped the Ball on Cyberdefense,http://www.slate.com/articles/news_and_politics/war_stories/2016/08/what_we_can_learn_from_the_cyberattack_on_the_dnc.html,1,1,smacktoward,8/2/2016 14:57 +10672798,What the hack?,http://www.economist.com/news/business/21679457-tech-industry-tradition-has-entered-corporate-mainstream-what-hack,13,7,e15ctr0n,12/3/2015 21:30 +10540979,Death by a thousand likes: Facebook and Twitter are killing the open web,http://qz.com/545048/death-by-a-thousand-likes-how-facebook-and-twitter-are-killing-the-open-web/,263,175,snake117,11/10/2015 17:55 +12292614,Robots will soon replace human fruit pickers,http://spectrum.ieee.org/automaton/robotics/industrial-robots/sri-spin-off-abundant-robotics-developing-autonomous-apple-vacuum,17,2,simonebrunozzi,8/15/2016 19:00 +12199143,Words are losing their power. Not even Jason Bourne can save them now,https://www.theguardian.com/commentisfree/2016/jul/21/words-jason-bourne-matt-damon-film-hollywood-dialogue,86,63,wolfgke,7/31/2016 22:06 +10894712,"N1 The extensible, open source mail client",https://www.nylas.com/n1,4,1,speps,1/13/2016 14:59 +10548718,"Democrats and Republicans agree: If you can mine it in space, its yours",http://arstechnica.com/science/2015/11/democrats-and-republicans-agree-if-you-can-mine-it-in-space-its-yours/,2,1,cryptoz,11/11/2015 19:38 +11498781,HTC 10 review: HTC builds the best Android flagship of 2016,http://arstechnica.com/gadgets/2016/04/htc-10-review-htc-builds-the-best-android-flagship-of-2016/,3,1,AdmiralAsshat,4/14/2016 17:36 +11371126,An Autobiography of a Blind Programmer,https://www.parhamdoustdar.com/2016/03/27/autobiography-blind-programmer/,58,29,edtechdev,3/27/2016 19:23 +11498461,Correlation between religion and programming language preference?,https://docs.google.com/forms/d/1clrlqg6p9BSPYa70SX3ianQmiy2tbw9ZaFgyGYMHPII/viewform,6,10,maxwell,4/14/2016 17:05 +10961597,Addressing 2015 Last One Standing,http://blog.apnic.net/2016/01/22/addressing-2015-last-one-standing/,15,1,Sami_Lehtinen,1/24/2016 5:29 +11234266,C pointers are not hardware pointers,http://kristerw.blogspot.com/2016/03/c-pointers-are-not-hardware-pointers.html,45,36,ingve,3/6/2016 16:23 +12089824,Gist: Docker and Nginx with dynamic virtual host,https://gist.github.com/morgangiraud/9c49d596991dbb47be6b52bfa3bce862,2,1,morgangiraud,7/13/2016 21:32 +11066196,Computer pioneer Ken Olsen dies,http://www.boston.com/business/technology/articles/2011/02/08/computer_pioneer_ken_olsen_dies/,17,2,ohjeez,2/9/2016 16:10 +11588238,What Machine Learning Means for Product Development,http://karlrosaen.com/ml-ux/,4,2,krosaen,4/28/2016 12:22 +10903160,Ask HN: Best books/resources on technical writing?,,33,10,philippnagel,1/14/2016 18:12 +12473112,Enough with Basic Income,https://salon.thefamily.co/enough-with-this-basic-income-bullshit-a6bc92e8286b,128,202,julbaxter,9/11/2016 12:53 +11507524,Can XY win the BLE Finder war by turning customers into investors?,https://www.startengine.com/startup/xy-findables,6,3,Grantarvey,4/15/2016 20:49 +12162183,18F Handbook,https://handbook.18f.gov/,12,1,verst,7/25/2016 22:53 +11934087,Dgraph is a next generation graph database with GraphQL as the query language,http://react-etc.net/entry/dgraph-is-a-next-generation-graph-database-with-graphql-as-the-query-language,64,9,velmu,6/19/2016 18:49 +11538390,Show HN: Free SSL in 5 Minutes with Lets Encrypt,https://www.youtube.com/watch?v=k0g21V4MPns,11,5,starlineventure,4/20/2016 23:07 +12548871,Show HN: Phineas build realtime apps with DynamoDB,https://gist.github.com/jatins/11aac836f25257148a1d61def2c7270c,15,2,jatins,9/21/2016 15:11 +10589720,The Most Intense El Niño Ever Observed Is Already a Worldwide Disaster,http://www.slate.com/blogs/future_tense/2015/11/18/global_temperatures_hit_new_high_amid_record_el_nino.html,3,2,cryptoz,11/18/2015 18:31 +12023277,moreutils,https://joeyh.name/code/moreutils/,154,56,JoshTriplett,7/2/2016 17:59 +11320276,Ask HN: Best book (or other media) to learn lua from?,,4,5,Sturmrufer,3/19/2016 20:27 +12030501,Ask HN: How would you reimagine email?,,3,3,kuro-kuris,7/4/2016 13:09 +10202408,Ask HN: How developers in enterprises and startups can spend money?,,8,2,bestan,9/11/2015 7:27 +12357447,Keystroke Recognition Using WiFi Signals (2015) [pdf],https://www.sigmobile.org/mobicom/2015/papers/p90-aliA.pdf,109,25,epaga,8/25/2016 7:41 +11661692,"Burton Malkiel Is Still an Indexing Fan, but a Smart Beta Skeptic",http://www.wsj.com/articles/burton-malkiel-is-still-an-indexing-fan-but-a-smart-beta-skeptic-1462759220,8,1,gwintrob,5/9/2016 17:50 +11634683,Qutebrowswer: Browser with Vim-like UI,http://www.qutebrowser.org/,17,4,tangue,5/5/2016 8:38 +11300654,"Denmark Ranks as Happiest Country; Burundi, Not So Much",http://www.nytimes.com/2016/03/17/world/europe/denmark-world-happiness-report.html,3,1,aaronbrethorst,3/16/2016 21:04 +12496843,Retrospective on Undertale's Popularity,http://undertale.tumblr.com/post/150397346860/retrospective-on-undertales-popularity,19,6,danso,9/14/2016 13:52 +11794314,Gawker cant hide its bad behavior behind press freedom,http://www.cjr.org/criticism/gawker_cant_hide_its_bad_behavior_behind_press_freedom.php,28,14,jackgavigan,5/29/2016 1:01 +11694903,Artistic style transfer for videos,https://www.youtube.com/watch?v=Khuj4ASldmU,3,1,stared,5/14/2016 7:20 +10456714,IBM https broken,https://ibm.com,3,4,smonte,10/27/2015 7:36 +12542980,Tesla patches exploit,https://techcrunch.com/2016/09/20/tesla-patches-exploit-that-left-model-s-potentially-vulnerable-to-remote-access/,1,1,andrewfromx,9/20/2016 20:17 +11971486,Oculus removed the headset check from the DRM in Oculus Runtime 1.5,https://github.com/LibreVR/Revive/releases/tag/0.6.2,272,153,T-A,6/24/2016 17:02 +10995797,3 things I learned during 4+ years at Uber,https://www.techinasia.com/talk/learned-4-years-uber,7,1,williswee,1/29/2016 15:44 +11852271,San Franciscos Housing Crisis Is Solvable. Here's How,https://medium.com/@ferenstein/san-franciscos-housing-crisis-is-solvable-with-one-law-here-s-how-you-can-help-17a0d1005df0#.yf5y5watn,6,1,jseliger,6/7/2016 3:46 +11236324,Netflix is causing us to watch less TV,http://www.digitaltrends.com/movies/netflix-tv-decline/,1,2,felipemora,3/7/2016 0:16 +11489574,"How I got 10,000 five-star reviews in 4 weeks",https://medium.com/@warpling/how-i-got-10-000-five-star-reviews-in-4-weeks-5246cc4c55c7#.4ptbbv1yq,6,1,WoodenChair,4/13/2016 16:22 +11093275,"Learn Raw React No JSX, No Flux, No ES6, No Webpack",http://jamesknelson.com/learn-raw-react-no-jsx-flux-es6-webpack/,243,58,dlcmh,2/13/2016 8:42 +11515800,Reverse Engineering Sublime Text's Fuzzy Match Algorithm,https://blog.forrestthewoods.com/reverse-engineering-sublime-text-s-fuzzy-match-4cffeed33fdb,25,1,mintplant,4/17/2016 19:12 +10968736,Taxi Strike Redux: Is France Failing Its Entrepreneurs?,https://medium.com/welcome-to-thefamily/taxi-strike-redux-is-france-failing-its-entrepreneurs-49c4d7249498#.vuh68hprz,1,1,c2prods,1/25/2016 18:06 +10933357,Gilt Groupe Is a Cautionary Tale for Startup Employees Banking on Stock Options,http://recode.net/2016/01/19/gilt-groupe-is-a-cautionary-tale-for-startup-employees-banking-on-stock-options/,102,66,coloneltcb,1/19/2016 19:40 +10599247,Majority of Renters Are Not Saving for Down Payment: Freddie,http://www.nationalmortgagenews.com/news/origination/majority-of-renters-are-not-saving-for-down-payment-freddie-1066194-1.html,40,65,PretzelFisch,11/20/2015 2:35 +10644373,Ask HN: How do develop a side project when you have a 40hr/week job?,,153,128,ciaoben,11/29/2015 11:23 +10221451,"ISPs dont have First Amendment right to edit Internet, FCC tells court",http://arstechnica.com/tech-policy/2015/09/isps-dont-have-1st-amendment-right-to-edit-internet-fcc-tells-court/,17,1,privong,9/15/2015 16:15 +11344791,How did losing Left-pad package on npm affect your operations?,,9,9,forkLding,3/23/2016 14:34 +11504819,Potato Diet,http://mashable.com/2016/04/15/australian-potato-diet/#3VeIZPYYFPqk,2,1,emilyn,4/15/2016 14:57 +10556848,Malicious LuaJIT bytecode,http://www.corsix.org/content/malicious-luajit-bytecode,5,2,cbetz,11/12/2015 23:07 +11092463,Nikola Teslas Valvular Conduit (2013),http://fluidpowerjournal.com/2013/10/teslas-conduit/,69,5,billconan,2/13/2016 4:02 +11742665,Show HN: Tell Me What to Do,http://tmwtd.io/,9,5,stroz,5/21/2016 1:08 +12350080,Ask HN: Is downloading and storing user-supplied url content legal?,,6,1,prmph,8/24/2016 6:17 +12035225,Sweden internship salaries for Data Science [info needed],,1,1,luus,7/5/2016 9:07 +10556478,Nobody Wants Your App,https://medium.com/@momunt/nobody-wants-your-app-6af1f7f69cb7,2,1,BinaryIdiot,11/12/2015 22:06 +11364689,"Ask HN: Did Tay, Microsoft AI, give you a sneak peek of how dangerous AI can be?",,1,2,adarsh_thampy,3/26/2016 6:24 +12117568,Best laptop for linux (probably Ubuntu)?,,24,33,wheresvic1,7/18/2016 19:38 +12238574,WeChats world,http://www.economist.com/news/business/21703428-chinas-wechat-shows-way-social-medias-future-wechats-world,17,5,g4k,8/6/2016 16:09 +11406757,Slack raises $200M at $3.8B valuation for business messaging,http://techcrunch.com/2016/04/01/slack-raises-200m-at-3-8b-valuation-for-business-messaging,246,223,jordigg,4/1/2016 17:36 +12248442,How World War II scientists invented a data-driven approach to fighting fascism,http://arstechnica.com/science/2016/06/how-world-war-ii-scientists-invented-a-data-driven-approach-to-fighting-fascism/,1,1,musha68k,8/8/2016 15:20 +11621429,Teaching: Convergence and Divergence,https://blog.getify.com/teaching-convergence-and-divergence/,2,1,_getify,5/3/2016 15:21 +12124334,Pokemon GO server monitor with SMS alerts,https://status.pokemongoserver.com/,2,1,svitekpavel,7/19/2016 19:51 +11365535,EU wants to monitor Skype and Viber,http://neurope.eu/article/eu-prepares-floor-european-counter-terrorist-intelligence-service-will-start-controls-skype-viber/,1,1,XzetaU8,3/26/2016 13:10 +11889134,Open-source geo is really something right now,https://trackchanges.postlight.com/open-source-geo-is-really-something-right-now-f8e310c5f57a#.wbks9g5ea,128,14,japhyr,6/12/2016 17:20 +10957478,Yahoo accelerated stock options to retain employees,http://uk.businessinsider.com/yahoo-accelerated-its-stock-options-to-try-to-retain-employees-2016-1?op=1?r=US&IR=T,8,7,prostoalex,1/23/2016 6:55 +10225903,Asynchronous IO in Rust,https://medium.com/@paulcolomiets/asynchronous-io-in-rust-36b623e7b965,160,110,nercury,9/16/2015 11:49 +10688248,Some transcripts from the Scaling Bitcoin workshops,http://lists.linuxfoundation.org/pipermail/bitcoin-dev/2015-December/011862.html,29,7,kanzure,12/7/2015 6:54 +12202039,Show HN: Functional Programming for Kids: Interactive Tutorial,https://github.com/viebel/kids.klipse.tech,40,18,viebel,8/1/2016 13:06 +11578712,Snowden Debates CNNs Fareed Zakaria on Encryption,https://theintercept.com/2016/04/26/snowden-debates-cnns-fareed-zakaria-on-encryption/,19,2,etiam,4/27/2016 8:43 +11214992,BMW refusing to abide by terms of GNU Public License,https://twitter.com/duncan_bayne/status/705244093702471680,21,11,duncan_bayne,3/3/2016 4:15 +10566451,Deep Neural Decision Forests [pdf],http://research.microsoft.com/pubs/255952/ICCV15_DeepNDF_main.pdf,145,35,fitzwatermellow,11/14/2015 17:31 +12045923,The Strange Gaps in Hillary Clinton's Email Traffic,http://www.politico.com/magazine/story/2016/07/hillary-clinton-missing-emails-secretary-state-department-personal-server-investigation-fbi-214016,22,7,douche,7/6/2016 21:08 +11761545,"Pebble goes off wrist with Core, dedicated running gadget",https://backchannel.com/pebble-makes-a-run-for-it-c1da3db0f400#.eh3kjj4q7,69,51,steven,5/24/2016 14:01 +12274971,The 12 Most Retweeted Programming Quotes,https://medium.com/statuscode/the-12-most-retweeted-programming-quotes-2b039c45ca39#.w6xevnvub,11,1,mattiemass,8/12/2016 12:16 +10402131,Android app Motif Messenger,https://play.google.com/store/apps/details?id=com.motifapp,1,4,dretones,10/16/2015 21:31 +12142140,"Alcohol is a direct cause of seven ??forms of cancer, finds study",https://www.theguardian.com/society/2016/jul/22/alcohol-direct-cause-seven-forms-of-cancer-study,67,39,CarolineW,7/22/2016 6:59 +12087045,Shyft,https://myshyft.com/,2,1,petethomas,7/13/2016 15:39 +11909438,The fastest way to get started with GraphQL,https://medium.com/scaphold/the-fastest-way-to-get-started-with-graphql-2329a2857c56,29,12,vning93,6/15/2016 14:16 +10937277,SSH tunnelling for fun and profit: AutoSSH,http://www.everythingcli.org/ssh-tunnelling-for-fun-and-profit-autossh/,141,70,everythingcli,1/20/2016 11:10 +11510649,The Cuneiform Tablets of 2015 [pdf],http://www.vpri.org/pdf/tr2015004_cuneiform.pdf,147,34,akavel,4/16/2016 14:12 +11960163,Do you build from scratch or integrate open source?,,3,4,jjeaff,6/23/2016 11:20 +10648847,A 'Binary' System for Complex Numbers (1965) [pdf],https://www.nsa.gov/public_info/_files/tech_journals/A_Binary_System.pdf,36,13,espeed,11/30/2015 11:22 +10743207,DNS Terminology,https://tools.ietf.org/html/rfc7719,60,3,_jomo,12/16/2015 9:28 +11074648,Feds Eye the 'Internet of Things' as Next Frontier in Spying,"http://www.pcmag.com/article2/0,2817,2499109,00.asp",3,3,augb,2/10/2016 18:13 +12183719,Navy to Name Ship After Gay Rights Activist Harvey Milk,https://news.usni.org/2016/07/28/navy-name-ship-gay-rights-activist-harvey-milk,57,46,99_00,7/28/2016 22:37 +12322206,Show HN: List of coworking spaces in Berlin (and other cities),https://listmap.io/coworking-spaces/berlin-germany/,5,1,Kunix,8/19/2016 18:24 +10929365,Logging in with External Services,http://www.vertabelo.com/blog/technical-articles/database-design-logging-in-with-external-services,2,1,pai1009,1/19/2016 8:24 +11470342,Revisiting a 90-year-old debate: the advantages of the mean deviation (2004),http://www.leeds.ac.uk/educol/documents/00003759.htm,61,7,yconst,4/11/2016 8:45 +11575067,KDE is not the right place for Thunderbird,http://www.elpauer.org/2016/04/kde-is-not-the-right-place-for-thunderbid/,5,2,pgquiles,4/26/2016 19:55 +12502423,Functional Programming Doesn't Work (2009),http://prog21.dadgum.com/54.html,15,1,pkd,9/15/2016 0:16 +10910915,"Docker: migrating containers between hosts, portable environments",http://scene-si.org/2016/01/14/docker-portable-environment/,4,2,titpetric,1/15/2016 18:02 +12085280,Startup Technical Diligence Is a Waste of Time,http://codingvc.com/why-startup-technical-diligence-is-a-waste-of-time/,287,160,lpolovets,7/13/2016 11:11 +10559536,Show HN: ModelMod modify art in games,https://github.com/jmquigs/ModelMod,28,8,jmquigs,11/13/2015 12:55 +11271772,Show HN: Rendering black holes with Haskell,https://flannelhead.github.io/projects/blackstar.html,88,13,flannelhead,3/12/2016 7:51 +12284967,An introduction to Japanese,https://pomax.github.io/nrGrammar/,363,122,e-sushi,8/14/2016 9:24 +10396982,"Turris Omniaan open-source, open-hardware router by the Czech Internet registry",https://omnia.turris.cz/en/,25,4,throwaway000002,10/16/2015 1:15 +10859763,Show HN: Assertions and utils for testing React Components,https://github.com/producthunt/chai-enzyme,5,1,vesln,1/7/2016 18:34 +12159284,Danger Stop Saying 'You Forgot To' in Code Review,http://danger.systems,15,2,orta,7/25/2016 15:24 +12046950,Literate programming: presenting code in human order,http://www.johndcook.com/blog/2016/07/06/literate-programming-presenting-code-in-human-order/#.V32uxZvDTmQ.hackernews,95,73,cab1729,7/7/2016 1:22 +10532399,Five Technology Fundamentals That All Kids Need to Learn Now,http://www.forbes.com/sites/jordanshapiro/2015/10/31/five-technology-fundamentals-that-all-kids-need-to-learn-now/,2,1,wyclif,11/9/2015 11:22 +11392187,What are your unordinary/unusual suggestions for finding a technical co-founder?,,7,2,hahahello,3/30/2016 19:24 +10196945,More efficient memory-management could enable chips with thousands of cores,http://news.mit.edu/2015/first-new-cache-coherence-mechanism-30-years-0910,137,42,Libertatea,9/10/2015 9:17 +12387648,Multiple vulnerabilities in RPM and a rant,https://blog.fuzzing-project.org/52-Multiple-vulnerabilities-in-RPM-and-a-rant.html,4,1,ashitlerferad,8/30/2016 5:04 +12456062,SMPL A realistic 3D model of the human body,,1,1,sytelus,9/8/2016 18:51 +11989551,Show HN: Golang implementation of custom encoding in net/rpc vs. grpc.io,https://open.dgraph.io/post/rpc-vs-grpc/,10,3,mrjn,6/27/2016 21:14 +11480840,"A Visionary Project Aims for Alpha Centauri, a Star 4.37 Light-Years Away",http://www.nytimes.com/2016/04/13/science/alpha-centauri-breakthrough-starshot-yuri-milner-stephen-hawking.html?mabReward=A6&moduleDetail=recommendations-2&action=click&contentCollection=Americas®ion=Footer&module=WhatsNext&version=WhatsNext&contentID=WhatsNext&src=recg&pgtype=article,492,226,sravfeyn,4/12/2016 16:13 +12420943,The rise of Monero,https://cointelegraph.com/news/5-major-reasons-why-monero-has-spiked,2,1,Hellgy,9/3/2016 20:12 +11683676,EyeEm's new app finds your best photos for you,http://techcrunch.com/2016/05/12/eyeem-the-roll/,2,3,herval,5/12/2016 14:35 +10454010,COS has been released for the commodore 64,http://64jim64.blogspot.com/2015/09/cos-has-been-released-for-commodore-64.html,22,1,ingve,10/26/2015 19:59 +11198565,The Svbtle Promise,http://dcurt.is/svbtle-promise,102,88,sp332,2/29/2016 21:14 +11639862,The Verizon DBIR relies on questionable vulnerability data and poor analysis,http://blog.trailofbits.com/2016/05/05/the-dbirs-forest-of-exploit-signatures/,13,2,zerointerupt,5/5/2016 21:40 +10875190,Llvmpipe: The Jitted OpenGL software renderer inside Mesa,http://www.mesa3d.org/llvmpipe.html,38,22,vmorgulis,1/10/2016 13:13 +12237892,"Generate responsive, maintainable and unified email templates Using SASS and Pug",https://github.com/dhilipsiva/email-template-generator,2,1,dhilipsiva,8/6/2016 12:31 +12422504,Brazilian competition paying $150 for the best idea about How to colonize Mars,https://www.ideiasquevalem.us/,1,1,joaovitor2763,9/4/2016 3:21 +12400943,"Graduate Students, the Laborers of Academia",http://www.newyorker.com/business/currency/graduate-students-the-laborers-of-academia?mbid=rss,115,91,jseliger,8/31/2016 19:47 +12342178,Supercell first investors invest in developer container startup in Finland,http://arcticstartup.com/article/container-kontena-launch/,6,1,dsarle,8/23/2016 8:22 +10388325,"Show HN: MapMe.io, AR platform for IoT, primarily for transportation awareness",http://mapme.io,3,3,craigm26,10/14/2015 18:16 +11050288,Self Adjusting DOM,https://blogs.janestreet.com/self-adjusting-dom/,5,1,strmpnk,2/6/2016 22:33 +11259353,Ask HS: can TensorFlow be used for combinatorial optimization problems?,,4,2,bischofs,3/10/2016 14:28 +10441976,Technological evolution has a momentum of its own,http://www.wsj.com/articles/the-myth-of-basic-science-1445613954,30,22,anigbrowl,10/24/2015 0:46 +10633940,Show HN: Framepop Turn photos into framed prints,https://itunes.apple.com/us/app/framepop-turn-photos-into/id1053338426,15,5,tgoldberg,11/26/2015 17:42 +11909694,Why you can't be a good .NET developer,http://codeofrob.com/entries/why-you-cant-be-a-good-.net-developer.html,28,20,gh-lfneu28,6/15/2016 14:55 +10861045,CEO of T-Mobile asks EFF Who the f*** are you?,https://twitter.com/JohnLegere/status/685201130427531264,53,3,roymurdock,1/7/2016 21:46 +10216735,"Run-Command small, portable alternative to standard Windows Run-Dialog",http://www.softwareok.com/?seite=Microsoft/Run-Command,1,1,richardboegli,9/14/2015 18:51 +10786668,Slack Experiments with a Technological Solution to Work-Life Balance,http://www.theatlantic.com/business/archive/2015/12/slack-do-not-disturb/421716/?single_page=true,1,1,mrshoex,12/24/2015 1:52 +11669180,Redux-catalyst: A collection of ReactJS and Redux components,https://github.com/iotopia-solutions/redux-catalyst,1,1,Feneric,5/10/2016 17:59 +10495254,Log Forwarding with Filebeat [Will Replace Logstash Forwarder],https://www.elastic.co/blog/beats-beta4-filebeat-lightweight-log-forwarding,3,1,seanf,11/2/2015 21:08 +11381418,Testing your app on a budget,http://blog.runnable.com/post/141863901521/testing-your-app-on-a-budget,60,7,hiphipjorge,3/29/2016 13:50 +12072810,New user question,,1,4,alwaysslaying,7/11/2016 17:44 +11801093,Security challenges for the Qubes build process,http://blog.invisiblethings.org/2016/05/30/build-security.html,64,17,kkl,5/30/2016 13:03 +10898739,The hunt for a Microsoft Silverlight 0-day,https://securelist.com/blog/research/73255/the-mysterious-case-of-cve-2016-0034-the-hunt-for-a-microsoft-silverlight-0-day/,57,2,3JPLW,1/14/2016 0:18 +11817863,DeepText: Facebook's text understanding engine,https://code.facebook.com/posts/181565595577955/introducing-deeptext-facebook-s-text-understanding-engine/,407,136,adwmayer,6/1/2016 20:29 +11914532,With React Native its not all sugar and spice,https://blog.addjam.com/react-native-its-not-all-sugar-and-spice-cb5d6b25eae9#.kkwvjrg7h,72,42,mdhayes,6/16/2016 7:11 +11043594,US panel greenlights creation of male 'three-person' embryos,http://www.nature.com/news/us-panel-greenlights-creation-of-male-three-person-embryos-1.19290,3,1,Amorymeltzer,2/5/2016 18:42 +10452238,Airbnb to employees: 'We failed you' with controversial ads,http://www.cnet.com/news/airbnb-to-employees-we-failed-you-with-controversial-ads/,2,1,edward,10/26/2015 15:57 +10897146,"Nanodegree Plus: Get hired within six months of graduating, or tuition refund",https://www.udacity.com/nanodegree/plus,100,71,ingve,1/13/2016 20:17 +11288768,It's Possible to Get the Nexus 7 Running on a Mainline Linux Kernel,http://www.phoronix.com/scan.php?page=news_item&px=Nexus-7-On-Mainline,3,1,buserror,3/15/2016 11:10 +11427997,WhatsApp illegal in Europe,http://futurezone.at/netzpolitik/legale-whatsapp-verwendung-ist-praktisch-unmoeglich/189.971.340,2,2,vincent_s,4/5/2016 5:11 +11306524,Pop culture quotes written in first-order logic can you figure them out?,http://jdh.hamkins.org/famous-quotations-in-their-original-language/,3,1,AllTalk,3/17/2016 18:38 +10657251,Deep Lessons from Google and EBay on Building Ecosystems of Microservices,http://highscalability.com/blog/2015/12/1/deep-lessons-from-google-and-ebay-on-building-ecosystems-of.html,10,1,hepha1979,12/1/2015 17:38 +11747175,Facebook Admits Its Trending Section Includes Topics Not Actually Trending on FB,http://gizmodo.com/facebook-admits-its-trending-section-includes-topics-no-1776319308,15,2,lingben,5/22/2016 2:42 +10579343,OTCA metapixel (2010),http://www.conwaylife.com/wiki/OTCA_metapixel,14,2,jasoncrawford,11/17/2015 5:31 +10690606,Ask HN : Which job has the brightest futur? CRM consultant or BI consultant,,1,1,migthor,12/7/2015 16:49 +10977332,Why do people put on differing amounts of weight?,http://www.bbc.com/news/magazine-35193414,1,2,JohnHammersley,1/27/2016 0:20 +11578414,The Suicide of Venezuela,https://joelhirst.wordpress.com/2016/04/23/the-suicide-of-venezuela/,5,2,nkurz,4/27/2016 7:14 +12373421,Ask HN: Is there a programming language with embedded testing support?,,15,11,maramono,8/27/2016 18:05 +10680218,The Unluckiest Paragraphs Why Parts of Medium Sometimes Disappear,https://medium.com/medium-eng/the-unluckiest-paragraphs-751dd36d2d30,23,15,don_neufeld,12/5/2015 0:40 +10448632,Facebook secretly lobbying for CISA?,https://boingboing.net/2015/10/24/petition-facebook-betrayed-us.html,258,37,devhxinc,10/25/2015 22:00 +10802413,Stupid Patent of the Month: Microsofts Design Patent on a Slider,https://www.eff.org/deeplinks/2015/12/stupid-patent-month-microsofts-design-patent-slider,320,212,sinak,12/28/2015 18:09 +12415617,DOJ to Cruz: .Com Price Freeze Can Be Extended to 2024,http://www.internetcommerce.org/doj-to-cruz-com-price-freeze-can-be-extended-to-2024/,2,1,gist,9/2/2016 19:31 +10657034,Whale Fall,http://granta.com/whale-fall/,59,14,kawera,12/1/2015 17:12 +11444234,Apply HN: Edtrics -Intelligent Education,,3,2,JFB_adams,4/7/2016 2:28 +11391263,"SunEdison at risk of bankruptcy, unit says; shares plummet 60 percent",http://www.reuters.com/article/us-sunedison-inc-terraform-global-risk-idUSKCN0WV160,68,16,e15ctr0n,3/30/2016 17:39 +11187981,A love letter to jQuery,http://madebymike.com.au/writing/love-letter-to-jquery,173,71,joshmanders,2/27/2016 18:52 +11260228,Thought Experiment: GitHub Community View,https://www.pandastrike.com/posts/20150610-thought-experiment-github-community-view,52,14,dyoder,3/10/2016 16:42 +10593700,Ask HN: How to get US H1B visa when located abroad?,,1,4,zeusdx,11/19/2015 9:33 +10330335,Show HN: Someone.io Task management for teams made easy,http://www.someone.io,151,81,terjeto,10/5/2015 7:22 +10553932,"Did you just get a $500 freelance assignment? (L.A.) might bill you $30,000",http://www.laweekly.com/news/did-you-just-get-a-500-freelance-assignment-the-city-might-bill-you-30-000-6040715,30,1,DanielBMarkham,11/12/2015 16:01 +10756959,Sleeping Beauty problem,https://en.wikipedia.org/wiki/Sleeping_Beauty_problem,2,1,xyzzy4,12/18/2015 6:14 +12528544,How to Overthrow a Government [video],https://www.youtube.com/watch?v=m1lhGqNCZlA,242,44,eatbitseveryday,9/19/2016 3:01 +10791938,Reforms to Ease Students Stress Divide a New Jersey School District,http://www.nytimes.com/2015/12/26/nyregion/reforms-to-ease-students-stress-divide-a-new-jersey-school-district.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=photo-spot-region®ion=top-news&WT.nav=top-news&_r=0,23,23,pavornyoh,12/25/2015 18:49 +11456018,'Leaked' Burr-Feinstein Encryption Bill Is a Threat to American Privacy,http://motherboard.vice.com/read/leaked-burr-feinstein-encryption-bill-is-a-threat-to-american-privacy,4,1,sehugg,4/8/2016 16:45 +12434423,Revenge porn: More than 200 prosecuted under new law,http://www.bbc.co.uk/news/uk-37278264,36,66,cjg,9/6/2016 8:33 +10635936,A Design Flaw That Almost Wiped Out an NYC Skyscraper (2014),http://www.slate.com/blogs/the_eye/2014/04/17/the_citicorp_tower_design_flaw_that_could_have_wiped_out_the_skyscraper.html,31,8,Tomte,11/27/2015 5:05 +10864919,We need to start drinking recycled wastewater,http://www.bbc.com/future/story/20160105-why-we-will-all-one-day-drink-recycled-wastewater,46,81,nols,1/8/2016 14:12 +10326669,Is Twitter Seriously Removing Share Counts? Why Would They Do This?,http://warfareplugins.com/is-twitter-seriously-removing-share-counts-why-would-they-do-this/,3,1,rubikscube,10/4/2015 6:10 +10759781,Why Free Markets Make Fools of Us,http://www.nybooks.com/articles/2015/10/22/why-free-markets-make-fools-us/,51,74,jonathansizz,12/18/2015 17:58 +10205995,"Stop using difficult-to-guess passwords, UK's spying agency GCHQ recommends",http://www.independent.co.uk/life-style/gadgets-and-tech/news/stop-using-difficulttoguess-passwords-uks-spying-agency-gchq-recommends-10497048.html,4,1,elektromekatron,9/11/2015 20:26 +10380251,Laser Razor suspended by Kickstarter,http://www.bbc.com/news/technology-34516907#?utm_medium=twitter&utm_source=twitterfeed,181,124,aram,10/13/2015 13:25 +10564050,Discrete Differential Geometry: Helping Machines/People Think Clearly Abt. Shape,https://www.youtube.com/watch?v=Mcal5Cy7r4E,3,1,espeed,11/14/2015 2:11 +11861512,Boosting Sales with Machine Learning,https://medium.com/xeneta/boosting-sales-with-machine-learning-fbcf2e618be3,323,75,ingve,6/8/2016 11:37 +12443424,Xcode 8: Code Signing Configurations,http://pewpewthespells.com/blog/migrating_code_signing.html,3,1,milen,9/7/2016 14:02 +10642288,Why Julia's DataFrames Are Still Slow,http://www.johnmyleswhite.com/notebook/2015/11/28/why-julias-dataframes-are-still-slow/,60,21,johnmyleswhite,11/28/2015 20:27 +10572022,Telize is shutting down,http://www.cambus.net/adventures-in-running-a-free-public-api/,6,1,DiabloD3,11/16/2015 0:59 +12404283,Fool's gold rush: Blockchain initiatives for everybody. Especially the artists,http://rocknerd.co.uk/?p=6972,2,3,davidgerard,9/1/2016 10:54 +10453294,Law firm bosses envision Artificial Intelligence to replace young lawyers,http://arstechnica.com/tech-policy/2015/10/law-firm-bosses-envision-watson-type-computers-replacing-young-lawyers/,7,1,hvo,10/26/2015 18:22 +10388815,Study: Sitting is no worse than standing without moving,https://www.washingtonpost.com/news/to-your-health/wp/2015/10/14/sitting-for-long-periods-doesnt-make-death-more-imminent-study-suggests/,115,56,antimora,10/14/2015 19:28 +10937310,Ask HN: Couldn't HN Submit say a link was already submitted even if title gt 80?,,1,3,chris-at,1/20/2016 11:19 +11203308,Why Chinas Economy Will Be Hard to Fix,http://www.bloomberg.com/graphics/2016-changing-chinese-economy/,67,78,adventured,3/1/2016 15:42 +10649877,Show HN: Create smart invoices,http://parolu.de/free-online-invoice/,4,2,parolu,11/30/2015 15:36 +12451732,Ask HN: Google Analytics Realtime down for me,,15,10,the-dude,9/8/2016 10:28 +11655562,"Pirate Bay Termed as Deceptive Site by Google Chrome, Firefox and Safari",http://www.ibtimes.co.uk/pirate-bay-termed-deceptive-site-by-google-chrome-blocked-by-firefox-safari-well-1558881,2,2,wslh,5/8/2016 20:18 +10339062,Effective Cryptography in the JVM,https://tersesystems.com/2015/10/05/effective-cryptography-in-the-jvm/,71,10,pron,10/6/2015 14:22 +12318780,The best music player for Android,https://play.google.com/store/apps/details?id=com.music.smallplayer&hl=en,2,1,iamtrk,8/19/2016 9:03 +11484273,PLE: Reinforcement Learning Environment in Python,https://github.com/ntasfi/PyGame-Learning-Environment,5,1,nrmn,4/12/2016 22:51 +11233004,Geographic profiling proves Banksy is Robin Gunningham say scientists,http://www.independent.co.uk/news/people/banksy-geographic-profiling-proves-artist-really-is-robin-gunningham-according-to-scientists-a6909896.html,3,4,danboarder,3/6/2016 9:02 +10687913,ORWL The First Open Source Hardened Computer,https://www.kickstarter.com/projects/designshift/orwl-the-first-open-source-hardened-computer,2,1,mrb,12/7/2015 3:44 +12477891,Ask HN: How best to describe my service?,,7,5,ishener,9/12/2016 7:47 +11535629,Hamilton to stay on $10; Tubman replacing Jackson,http://www.politico.com/story/2016/04/treasurys-lew-to-announce-hamilton-to-stay-on-10-bill-222204,52,74,baehaus,4/20/2016 16:35 +12219090,ZingCam Where Text Comments Are a Thing of the Past,http://www.zingcam.com,2,1,ZingCam,8/3/2016 16:19 +10474653,"OberonStation, an Oberon RISC workstation",http://oberonstation.x10.mx,130,96,sinrostro,10/29/2015 21:58 +11789542,The E2 Dynamic Multicore System,http://research.microsoft.com/en-us/projects/e2/,32,3,luu,5/27/2016 22:36 +11211967,"Show HN: Convert strings (phone numbers, color hex, etc.) into memorable phrases",https://www.huffgram.com/,3,1,curryhoward,3/2/2016 18:41 +11589636,OwnCloud CTO leaves Company,http://karlitschek.de/2016/04/big-changes-i-am-leaving-owncloud-inc-today/,5,1,mmaedler,4/28/2016 15:36 +12530100,Ask HN: Where in European Union should I move to found a startup?,,8,7,cosmorocket,9/19/2016 9:45 +11257080,John Carmack on Idea Generation,http://amasad.me/2016/03/09/john-carmack-on-idea-generation/,123,20,amasad,3/10/2016 2:23 +11918950,Risky South Pole mission: retrieve sick scientists from research station,http://www.smh.com.au/world/risky-south-pole-mission-retrieve-sick-scientists-from-amundsenscott-research-station-20160616-gpl3hg.html,104,51,molecule,6/16/2016 21:19 +11854543,How to get funding for project/website,,1,2,andegre,6/7/2016 14:02 +11663369,Three Years in San Francisco,http://www.mikeindustries.com/blog/archive/2016/05/three-years-in-san-francisco,6,3,apress,5/9/2016 21:27 +10961124,Show HN: Coffee with me founder.im,http://founder.im/josh/,3,2,joshanthony,1/24/2016 2:01 +11994851,The Heterotopia of Facebook (2015),https://philosophynow.org/issues/107/The_Heterotopia_of_Facebook?utm_content=buffere29de&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer,20,3,pttrsmrt,6/28/2016 16:03 +11442698,"Apply HN: Rendezvoux Host an event whenever, wherever",https://medium.com/@ivanbrens/hello-we-are-rendezvoux-and-we-want-to-change-the-world-35cf1dc5d4fe#.9d1xjevv5,3,5,ivanbrens,4/6/2016 22:25 +12431806,Show HN: Comment Farmer for those who only read comments,http://commentfarmer.com/,5,2,wayofthesamurai,9/5/2016 19:14 +11479326,How to Avoid Boring Sunsets,https://fivethirtyeight.com/features/how-to-avoid-boring-sunsets/,2,2,Amorymeltzer,4/12/2016 13:26 +11666065,Theory and Techniques of Compiler Construction (2005) [pdf],http://www.ethoberon.ethz.ch/WirthPubl/CBEAll.pdf,80,4,Tomte,5/10/2016 9:50 +10420553,How an F Student Became Americas Most Prolific Inventor,http://www.bloomberg.com/features/2015-americas-top-inventor-lowell-wood/,7,1,happyscrappy,10/20/2015 17:37 +11389149,"Webtime Tracker discover your browsing habits, time tracking at its best",https://chrome.google.com/webstore/detail/webtime-tracker/ppaojnbmmaigjmlpjaldnkgnklhicppk,2,2,petasittek,3/30/2016 13:40 +10506328,Red Hat and Microsoft Reach Deal Red Hat Available on Microsoft Azure Cloud,http://www.wsj.com/articles/microsoft-and-red-hat-reach-linux-deal-1446642000,18,3,baldfat,11/4/2015 13:38 +10655142,Visual Hunt 354M Free Creative Commons Photos and CC0,http://visualhunt.com/,83,2,XKingKong,12/1/2015 13:33 +11180679,Gdb: Debugging with the natives,http://www.cl.cam.ac.uk/~srk31/blog/2016/02/25/#native-debugging-part-1,70,5,ingve,2/26/2016 10:10 +11518779,"Plenty of Passengers, but Where Are the Pilots?",http://www.nytimes.com/2016/04/17/opinion/sunday/plenty-of-passengers-but-where-are-the-pilots.html,31,57,danso,4/18/2016 10:14 +11498801,"A very useful tutorial about how to run Alluxio, Spark, and S3 together",http://www.alluxio.com/2016/04/getting-started-with-alluxio-and-spark/,11,1,sltz,4/14/2016 17:38 +12297609,Nanorobots That Can Travel Down the Bloodstream and Precisely Target Tumors,http://sciencenewsjournal.com/scientists-created-nanorobots-can-travel-bloodstream-precisely-target-cancerous-tumors/,204,88,azazqadir,8/16/2016 14:21 +11580893,JALI: Animator-Centric Procedural Lip Synch,https://www.youtube.com/watch?v=vniMsN53ZPI,2,1,rkevingibson,4/27/2016 14:51 +10321439,90% of People Don't Know How to Use Ctrl+F (2011),http://www.theatlantic.com/technology/archive/2011/08/crazy-90-percent-of-people-dont-know-how-to-use-ctrl-f/243840/?single_page=true,69,77,csense,10/2/2015 21:24 +12194213,iPad-only is the new desktop Linux,https://medium.com/@chipotlecoyote/ipad-only-is-the-new-desktop-linux-de88b61b6d99#.qqq1nzmnx,18,6,LaSombra,7/30/2016 19:03 +11321533,Ask HN: How do I become a Sales Engineer?,,17,7,tsax,3/20/2016 2:37 +10906063,Top Real Estate Investing Blogs for 2016,https://www.realtyshares.com/blog/top-real-estate-investing-blogs/,3,1,hsfried,1/15/2016 0:28 +10799064,A Letter to a Young Programmer Considering a Startup (2013),https://al3x.net/2013/05/23/letter-to-a-young-programmer.html,99,14,ktamura,12/27/2015 23:07 +10924599,Colognes aftershocks,http://www.economist.com/news/europe/21688418-ultimate-victim-sexual-assaults-migrants-could-be-angela-merkels-liberal-refugee,5,1,tormeh,1/18/2016 14:40 +11705034,IBM 5100,https://en.wikipedia.org/wiki/IBM_5100,24,15,mpweiher,5/16/2016 8:42 +10645787,Let's build React.js,http://neethack.com/2015/10/lets-build-react-dot-js/,11,1,jimchao,11/29/2015 19:46 +10316078,"You have a story, and Fly Messages has the mask / Anonymously Share",https://flymessages.com/,1,1,amjada,10/2/2015 1:36 +10287400,Starting your Startup,http://blog.getadmiral.com/starting-a-corporation/,1,1,tangled,9/27/2015 18:31 +11589340,Show HN: TinyRave SoundCloud for JavaScript Music,http://tinyrave.com,68,6,ed,4/28/2016 15:00 +11279391,Turkish government 'blocks Twitter and Facebook',http://www.independent.co.uk/news/world/europe/ankara-explosion-turkey-twitter-facebook-ban-a6929136.html,7,3,movielala,3/13/2016 21:15 +10579537,Tim Cook: Apple won't create 'converged' MacBook and iPad,http://www.independent.ie/business/technology/tim-cook-apple-wont-create-converged-macbook-and-ipad-34201986.html,1,2,richardboegli,11/17/2015 6:46 +10263682,"Yogi Berra, Master Yankee Catcher With Goofy Wit, Dies at 90",http://www.nytimes.com/2015/09/24/sports/baseball/yogi-berra-dies-at-90-yankees-baseball-catcher.html?hp&action=click&pgtype=Homepage&module=photo-spot-region®ion=top-news&WT.nav=top-news,173,47,pbhowmic,9/23/2015 7:08 +10361913,Great Molasses Flood,https://en.wikipedia.org/wiki/Great_Molasses_Flood,16,5,bloat,10/9/2015 17:42 +10436788,Tactical Cyber Rifle Is a Glimpse into the Future of Warfare,http://www.popularmechanics.com/military/weapons/a17802/cyber-capability-rifle-ausa-2015-demo/,7,6,bootload,10/23/2015 4:23 +10731023,Regression to the mean is the main reason ineffective treatments appear to work,http://www.dcscience.net/2015/12/11/placebo-effects-are-weak-regression-to-the-mean-is-the-main-reason-ineffective-treatments-appear-to-work/,137,55,Amorymeltzer,12/14/2015 14:10 +10466897,Why Is the NSA Moving Away from Elliptic Curve Cryptography?,https://www.schneier.com/blog/archives/2015/10/why_is_the_nsa_.html,17,1,stargrave,10/28/2015 19:53 +11712038,Why didn't Common Lisp fix the world?,https://www.quora.com/Where-did-we-go-wrong-Why-didnt-Common-Lisp-fix-the-world?share=1,83,124,weeber,5/17/2016 8:27 +10517569,I developed a superior Hamiltonian Cycle Problem solver,,2,5,hamcycle,11/6/2015 2:45 +10963749,Herzog's wild ride through the web,http://www.theguardian.com/film/2016/jan/24/lo-and-behold-reveries-of-the-connected-world-review-herzogs-wild-ride-through-the-web,74,13,bloat,1/24/2016 19:53 +10832150,Show HN: Basket- Amazing Bookmarking app for Android. True read later application,https://play.google.com/store/apps/details?id=net.basket.basketapp,16,7,johnsan,1/3/2016 20:20 +10761922,U.S. Eases 35-Year-Old Real Estate Tax on Foreign Investors,http://www.bloomberg.com/news/articles/2015-12-18/u-s-poised-to-lift-35-year-old-real-estate-tax-on-foreigners,3,4,dismal2,12/19/2015 0:13 +11321528,Thank you for ad blocking,http://thankyouforadblocking.com/,407,273,nichodges,3/20/2016 2:36 +11845999,Facebook Messenger Finally Bridges the Great Emoji Divide,http://www.wired.com/2016/06/facebook-messenger-emoji/,1,1,onmyway133,6/6/2016 11:43 +10245514,RocketSkates R8 giveaway campaign on SproutUp,http://www.sproutup.co/product/rocketskates-r8,1,2,taoni,9/19/2015 20:55 +12297754,"Reddit fighting Atlantic, trying identify Twenty One Pilots leakers IP address",http://www.completemusicupdate.com/article/reddit-hits-back-at-atlantics-bid-to-identify-track-leakers-ip-address/,2,1,6stringmerc,8/16/2016 14:43 +10461361,Fatal brain disease potentially affects five people in Massachusetts,http://www.cnn.com/2013/09/05/health/creutzfeldt-jakob-brain-disease/index.html,1,1,DrScump,10/27/2015 21:40 +10579542,Postgres high-availability cluster with auto-failover and cluster recovery,https://github.com/nanopack/yoke,215,55,tuyguntn,11/17/2015 6:47 +11656738,Autonomous Robot Surgeon Bests Humans,http://spectrum.ieee.org/the-human-os/robotics/medical-robots/autonomous-robot-surgeon-bests-human-surgeons-in-world-first#.Vy_WyXgg3Vo.hackernews,165,80,nima3rad,5/9/2016 0:16 +10553346,How Walter Murch Merged Apocalypse Now and Ride of the Valkyries,http://nautil.us/issue/30/identity/how-i-tried-to-transplant-the-musical-heart-of-apocalypse-now,53,5,pmcpinto,11/12/2015 14:39 +10633958,How is testing of encrypted chat apps like Signal or Telegram done?,,3,1,NN88,11/26/2015 17:46 +12151331,The Common Core Costs Billions and Hurts Students,http://www.nytimes.com/2016/07/24/opinion/sunday/the-common-core-costs-billions-and-hurts-students.html,41,70,prostoalex,7/23/2016 22:46 +11919149,The web developer making millions selling jQuery image slider plugins,http://juststartworking.com/the-web-developer-making-millions-with-jquery-image-slider/,2,2,maxencecornet,6/16/2016 21:51 +10565605,Suckless conference 2015,http://suckless.org/conference/,77,59,vezzy-fnord,11/14/2015 13:36 +10284065,Right versus pragmatic,http://www.marco.org/2012/02/25/right-vs-pragmatic,4,1,jimsojim,9/26/2015 18:59 +11080008,"Bacterial cells are small 'eyeballs', scientists discover",http://www.sciencealert.com/bacterial-cells-are-actually-the-world-s-smallest-eyeballs-scientists-discover-by-accident,94,29,Marinlemaignan,2/11/2016 13:41 +10609253,What did Upthere do to get this much users for their beta?,http://techcrunch.com/2015/11/21/uptheres-beta-users-have-uploaded-more-than-3-5m-files/,1,1,kevindeasis,11/22/2015 6:14 +10648693,Donate mozilla,https://donate.mozilla.org/en-US/,161,75,swcoders,11/30/2015 10:20 +10647552,Why do so many people hate US airports?,http://www.bbc.com/news/magazine-34704775,18,20,hvo,11/30/2015 3:40 +12091886,Show HN: World's Sexiest Video Search Engine Hits the Streets (YC W16),http://www.hoogley.com,19,19,stephensonsco,7/14/2016 5:44 +12350890,Why GNU grep is fast (2010),https://lists.freebsd.org/pipermail/freebsd-current/2010-August/019310.html,417,145,mozumder,8/24/2016 10:08 +11359731,In Search of good Indian food,https://www.springboard.com/blog/eat-rate-love-an-exploration-of-r-yelp-and-the-search-for-good-indian-food/,5,5,shankysingh,3/25/2016 12:53 +11471615,Deep learning for generating jazz,https://jisungk.github.io/deepjazz/,64,2,turingexam,4/11/2016 14:16 +10500010,Fedora 23 Released,http://fedoramagazine.org/fedora-23-released/,11,3,fresquab,11/3/2015 15:10 +11337999,"Comcast failed to install Internet for 10 months then demanded $60,000 in fees",http://arstechnica.com/business/2016/03/comcast-failed-to-install-internet-for-10-months-then-demanded-60000-in-fees/?platform=hootsuite,19,2,CrankyBear,3/22/2016 17:05 +10892643,Ask HN: How long did it take for you to get jaded in this industry?,,15,14,askafriend,1/13/2016 6:29 +12187621,Bitcoin; What could SegWit look like if it were a hardfork?,http://zander.github.io/posts/Flexible_Transactions/,2,1,thomaszander,7/29/2016 15:50 +11413681,Ask HN: How do you learn complex/difficult material online?,,1,1,impish19,4/2/2016 21:56 +12293720,"Army Vet Arrested for Hanging Flag Upside Down in Iowa, Charged with Desecration",https://photographyisnotacrime.com/2016/08/15/army-veteran-arrested-hanging-flag-upside-charged-desecrating-u-s-flag/,3,3,ourmandave,8/15/2016 21:44 +10551261,Show HN: Boss your leisure and have fun regardless of your busy schedule,http://funtoole.strikingly.com/,2,1,engageperpage,11/12/2015 4:14 +10954552,WebGL Off the Main Thread,https://hacks.mozilla.org/2016/01/webgl-off-the-main-thread/,83,21,madflame991,1/22/2016 18:23 +11212732,Seaside Developing Sophisticated Web Applications in Smalltalk,http://seaside.st/,91,35,nikolay,3/2/2016 20:25 +11084815,Pee-wees Big Comeback,http://www.nytimes.com/2016/02/14/magazine/pee-wees-big-comeback.html,117,36,aaronbrethorst,2/12/2016 1:57 +12353441,Planet Found in Habitable Zone Around Nearest Star,https://www.eso.org/public/news/eso1629/,1187,424,Thorondor,8/24/2016 17:00 +10410476,Consumerism in Health Care System Poses Threat to Insurers,http://www.hhnmag.com/articles/6626-consumerism-in-health-care-insurers?utm_source=daily&utm_medium=email&utm_campaign=HHN&eid=257879037&bid=1203208,3,2,kejohnson,10/19/2015 0:40 +11339117,"Ask HN: Publishing on personal vs. ""company"" blog",,5,6,mxmpawn,3/22/2016 19:07 +11812196,The Immutability of Math and How Almost Everything Else Will Pass,http://blog.hackerrank.com/the-immutability-of-math-and-how-almost-everything-else-will-pass/,96,67,signa11,6/1/2016 5:17 +11646822,Geocities Forever neural network generated geocities pages,http://www.geocitiesforever.com/,143,40,laacz,5/6/2016 21:26 +10849769,Microsofts Cortana Gets Baked into Cyanogens Forked Version of Android,http://techcrunch.com/2016/01/05/cortana-cyanogen/,109,52,digital_ins,1/6/2016 10:47 +11011541,Wake up: Robots are already stealing our Jobs,http://www.toinkwire.com/2016/02/wake-up-robots-are-already-stealing-our.html,2,1,feeppeep,2/1/2016 13:19 +11559666,The impossible yet important habit of living below your means,https://medium.com/@jasonadriaan/the-impossible-yet-important-habit-of-living-below-your-means-6250bb343d55#.a1u0vwteo,8,2,jasonadriaan,4/24/2016 13:47 +10240961,Whistleblower sent 50GB mails from Germanys #1 dating app claiming massive fraud,http://www.heise.de/newsticker/meldung/Verdacht-auf-Abzocke-bei-Dating-Plattform-Lovoo-2821077.html,3,1,glossyscr,9/18/2015 18:06 +10194154,Soylent: What Happened When I Went 30 Days Without Food,http://thehustle.co/soylent-what-happened-when-i-went-30-days-without-food,20,2,dmamills,9/9/2015 20:06 +12111545,What a Digital Afterlife Might Be Like,http://www.theatlantic.com/science/archive/2016/07/what-a-digital-afterlife-would-be-like/491105/?single_page=true,44,67,diodorus,7/17/2016 20:01 +10325360,Ask HN: Should Google acquire Evernote and merge it with their Google Keep?,,11,9,byaruhaf,10/3/2015 21:01 +12329611,Trans-Pacific Partnership Full Text,https://ustr.gov/trade-agreements/free-trade-agreements/trans-pacific-partnership/tpp-full-text,6,2,Analemma_,8/21/2016 5:54 +11253603,Pentagon admits it has deployed military spy drones over the U.S,http://www.usatoday.com/story/news/nation/2016/03/09/pentagon-admits-has-deployed-military-spy-drones-over-us/81474702/,474,172,jonbaer,3/9/2016 15:48 +10210423,Start-up investors are being extra-cautious thanks to some costly flops,http://www.businessinsider.com/r-high-profile-busts-signal-caution-in-start-up-investing-2015-9?op=1,7,1,blondie9x,9/13/2015 5:19 +10383984,How scientists fool themselves and how they can stop,http://www.nature.com/news/how-scientists-fool-themselves-and-how-they-can-stop-1.18517,96,24,DavidSJ,10/13/2015 22:43 +11724261,Karma-Duped: A Cautionary Tale About the Murky World of Venture Lending,http://www.huffingtonpost.com/greg-selkoe/karmaduped-a-cautionary-t_b_9860368.html,80,45,ascertain,5/18/2016 18:11 +11034492,Amazon Echo adds Spotify support,http://phx.corporate-ir.net/phoenix.zhtml?c=176060&p=irol-newsArticle&ID=2135731,2,1,ascorbic,2/4/2016 15:25 +12291596,"Show HN: Brooce, a language-agnostic job queue written in Go",https://github.com/SergeyTsalkov/brooce,6,2,Meekro,8/15/2016 16:47 +12071653,Upside of Tesla's Autopilot,http://diamandis.com/tech-blog,5,2,t23,7/11/2016 15:22 +10820788,"Show HN: Ply, a property list interrogator, subsetter, and converter",https://github.com/DHowett/go-plist/tree/master/ply,6,1,DHowett,1/1/2016 1:56 +11179215,The UK's Proposed Spy Law Would Force Apple to Secretly Hack its Phones Too,https://www.eff.org/deeplinks/2016/02/investigatory-powers-bill-and-apple,132,33,dannyobrien,2/26/2016 1:13 +10531374,"Our broken peer review system, in one saga",https://familyinequality.wordpress.com/2015/10/05/our-broken-peer-review-system-in-one-saga/,44,14,nkurz,11/9/2015 4:22 +11069618,"Days Before Losing Its CEO, Zenefits Lost Its Biggest Client",http://www.buzzfeed.com/williamalden/days-before-losing-its-ceo-zenefits-lost-its-biggest-client#.cyV4W6N3ZM,2,1,coloneltcb,2/9/2016 23:19 +12204642,Make Algorithms Accountable,http://www.nytimes.com/2016/08/01/opinion/make-algorithms-accountable.html,35,31,GCA10,8/1/2016 18:17 +10426607,Fruit-sorting robot will disrupt the industry,http://www.drivesncontrols.com/news/fullstory.php/aid/4938/Fruit-sorting_robot__91will_disrupt_the_industry_92.html,55,122,Futurebot,10/21/2015 16:39 +10545887,Chess Move Compression,https://triplehappy.wordpress.com/2015/10/26/chess-move-compression/,60,32,nreece,11/11/2015 10:31 +12433751,Show HN: Website for finding direct links to Software Engineering internships,http://www.intern.supply,5,2,bbauman,9/6/2016 4:57 +10555334,Google Presents Inside Abbey Road,https://insideabbeyroad.withgoogle.com,1,2,oneeyedpigeon,11/12/2015 19:02 +10390004,Email 101Free course to help you write more professional emails,http://masteringbusinessemail.com/email-101?ref=showhn,8,3,JoshDoody,10/14/2015 22:34 +10483478,Spectrum should be private property (2004),https://mises.org/library/spectrum-should-be-private-property-economics-history-and-future-wireless-technology,1,6,nileshtrivedi,10/31/2015 17:59 +10472110,Twisted way to earn money by broadcasting video games. should I trigger?,,1,1,mescalito2,10/29/2015 16:08 +12286547,Ask HN: How to prepare for a Front-end Developer interview?,,209,135,eesta,8/14/2016 17:50 +11398586,Cayzu Help desk any good?,http://www.cayzu.com,1,1,chapbrisk,3/31/2016 16:52 +12519116,Why open source matters to the IoT market,http://insights.ubuntu.com/2016/09/15/why-open-source-matters-to-the-iot-market/,7,1,ashitlerferad,9/17/2016 4:28 +12375981,Show HN: Msngr.js a simple messaging library that works in the server or browser,https://github.com/KrisSiegel/msngr.js,4,1,BinaryIdiot,8/28/2016 10:05 +12174635,YCs Summer Reading,http://themacro.com/articles/2016/07/yc-summer-reading/,323,180,craigcannon,7/27/2016 17:17 +10992758,An estimated $1 trillion left China in 2015,http://shanghaiist.com/2016/01/26/china_capital_outflow_1_trillion.php,6,1,sharetea,1/29/2016 1:00 +12211796,Tell your dentist to suck it: theres little evidence flossing works,http://www.theverge.com/2016/8/2/12353872/flossing-ineffective-medical-benefits-dentist,13,13,user_001,8/2/2016 18:02 +12039264,A Live-Coding Environment for VR,http://store.steampowered.com/app/458200/,3,1,lukexi,7/5/2016 20:20 +10233812,Show HN: Tweetify The Missing Content Automation Tool for Twitter,http://tweetify.io/#/,2,2,karanjthakkar,9/17/2015 15:18 +11610182,TTIP Leaks,http://ttip-leaks.org/,185,7,Shihan,5/2/2016 9:33 +11589110,The Next Big Deal,https://mastermind.atavist.com/the-next-big-deal,18,5,lpman,4/28/2016 14:32 +12431405,Warner Brothers reports own site as illegal,http://www.bbc.com/news/technology-37275603,29,5,adzicg,9/5/2016 17:44 +10704779,Show HN: A ratings visualizer for tv shows,http://www.showplots.com/,13,3,lukep423,12/9/2015 16:45 +10673323,"Apple's Federighi talks open source Swift, Objective-C and the next 20 years",http://thenextweb.com/apple/2015/12/03/qa-apples-craig-federighi-talks-open-source-swift-objective-c-and-the-next-20-years-of-development/,2,1,MaysonL,12/3/2015 22:50 +12055775,Welcome to the age of Big Software,http://www.wired.com/2016/07/entering-age-big-software/,6,2,replicatorblog,7/8/2016 14:32 +12057616,"Venezuela Refuses to Default, and Few People Seem to Understand Why",http://www.bloomberg.com/news/articles/2016-07-04/venezuela-refuses-to-default-few-people-seem-to-understand-why,194,139,wallflower,7/8/2016 18:20 +10357214,Tesla leaving rivals in the dust,http://www.wsj.com/articles/how-tesla-leaves-its-rivals-playing-catch-up-1444327842,1,2,SQL2219,10/8/2015 23:54 +11982057,Condition-Orientated Programming,https://medium.com/@gavofyork/condition-orientated-programming-969f6ba0161a,6,5,bpierre,6/26/2016 18:49 +12311404,with Program prefixing for continuous workflow using a single tool,https://github.com/mchav/with,3,1,ch,8/18/2016 10:14 +11079248,Show HN: How to add jitter to a plot using Python's matplotlib and seaborn,http://dataviztalk.blogspot.com/2016/02/how-to-add-jitter-to-plot-using-pythons.html,2,1,rooviz,2/11/2016 9:59 +10542903,SigOpt Fundamentals: Approximation of Data,http://blog.sigopt.com/post/132959177928/sigopt-fundamentals-approximation-of-data,1,1,mccourt,11/10/2015 22:01 +10917361,Ask HN: Do you work remotely? Would you use a robot?,,6,9,avr,1/16/2016 23:23 +12262267,"According to Marissa Mayer, long hours and weekend work will lead to success",https://m.signalvnoise.com/silicon-valley-arrogance-i-can-tell-you-which-startups-will-succeed-without-even-knowing-what-89aa8ea35d23#.l9nkcyqhc,23,12,muddyrivers,8/10/2016 15:02 +11036577,How do you document what you are learning at work?,,6,12,seeyes,2/4/2016 19:40 +12485383,New Space Apparel Store!,https://hubbleshirt.com/,2,1,SpaceIsAmazing,9/13/2016 3:06 +10676746,Monitoring Performance in Microservice Architectures,http://container-solutions.com/monitoring-performance-microservice-architectures/,3,1,Jamie_Dobson,12/4/2015 15:22 +11890756,A Guide to the Academic Writing Style,https://www.researchgate.net/publication/303882903_An_Introduction_to_the_Academic_Writing_Style,2,1,binki89,6/12/2016 23:04 +10739035,UN experts find level of discrimination against women in US shocking,http://www.euronews.com/2015/12/14/un-experts-find-level-of-discrimination-against-women-in-us-shocking,1,1,lkurtz,12/15/2015 17:29 +12496525,Ask HN: Is Swift worth learning if I'm not into iOS development?,,10,7,0x70run,9/14/2016 13:17 +11327321,How to Build an Online Community,https://www.feverbee.com/how-to-build-an-online-community/,3,1,samueladam,3/21/2016 11:20 +12269601,PyBridge - Reuse your Python code in native Android applications,https://github.com/joaoventura/pybridge,13,4,jventura,8/11/2016 16:30 +12200619,Demystifying Magic Leap: What Is It and How Does It Work?,http://uploadvr.com/magic-leap-how-it-works/,51,2,ghosh,8/1/2016 6:53 +10557394,Should Entrepreneurial College Students Go Big or Go Small After Graduation?,http://www.entrepreneur.com/article/252718,2,1,abarrettjo,11/13/2015 1:12 +12221423,Future of Programming meetup in Berkeley,http://2020salon.blogspot.com/,1,1,david927,8/3/2016 20:53 +10569463,Writing an OS in Rust: Allocating Frames,http://os.phil-opp.com/allocating-frames.html,128,14,ingve,11/15/2015 12:46 +12551863,Zuckerberg and Chan aim to tackle all disease by 2100,http://www.bbc.com/news/technology-37435425,258,232,timoth,9/21/2016 20:22 +10811572,Ask HN: How can I offline read the top 100 HN stories over the last week?,,5,1,vinnyglennon,12/30/2015 10:41 +10566776,Why New York Subway Lines Are Missing Countdown Clocks,http://www.theatlantic.com/technology/archive/2015/11/why-dont-we-know-where-all-the-trains-are/415152/#hn?single_page=true,102,21,jsomers,11/14/2015 19:10 +10956952,Measuring hourly snowfall with a webcam and PHP,http://www.boutell.com/boutell/jillsnow/,7,1,wyclif,1/23/2016 2:46 +10187147,Archaeologists chase melting ice in Yellowstone to collect artifacts,http://www.wyofile.com/column/archaeologists-chase-melting-ice-in-yellowstone-to-collect-artifacts/,26,7,diodorus,9/8/2015 17:42 +12169233,Olympic Runners Supplement Training with Brain-Stimulating Headphones,http://www.popsci.com/olympic-runners-supplement-training-with-brain-stimulating-headphones?src=SOC&dom=fb,2,1,brahmwg,7/26/2016 22:31 +10301964,A collection of cool GitHub projects posted on HN,http://ycloninator.herokuapp.com/,2,1,muricula,9/30/2015 5:25 +11477410,Apply HN: Gameplan Personal Learning Assistant for School Kids,,7,5,ganadiniakshay,4/12/2016 5:18 +12463905,Show HN: Chosenreich: Collect life stories (German),https://chosenreich.de,1,1,olav,9/9/2016 16:47 +11542995,"Implementers, Solvers, and Finders",https://rkoutnik.com/2016/04/21/implementers-solvers-and-finders.html,205,62,RKoutnik,4/21/2016 15:44 +11165838,"BeeGFS, the Parallel Cluster File System",http://www.beegfs.com/content/,56,44,randomname2,2/24/2016 10:56 +11115228,Immunotherapy could bring cancer treatment breakthrough [video],http://www.bbc.com/news/health-35585571,18,41,Perados,2/17/2016 4:11 +10957373,WeKan: Open-Source Meteor Kanban,https://wekan.io/,194,39,based2,1/23/2016 5:53 +11146548,The Unsuitability of English (2015),http://chronicle.com/blogs/linguafranca/2015/11/23/the-unsuitability-of-english/,171,313,r721,2/21/2016 21:09 +10863127,Argon2 for node,https://github.com/ranisalt/node-argon2,2,3,kevindeasis,1/8/2016 5:30 +12560452,"Ask HN: People who looked down upon Node.js/JS, has ES6/etc. changed your views?",,5,5,zuck9,9/22/2016 21:19 +10292089,iOS Engineers,,1,1,Z0rb,9/28/2015 18:30 +10518449,Urban Jungle Street View Post Apocalypse,http://inear.se/urbanjungle/,2,2,junto,11/6/2015 9:00 +10441002,New general-purpose optimization algorithm promises order-of-magnitude speedups,http://news.mit.edu/2015/faster-optimization-algorithm-1023,126,16,_pius,10/23/2015 20:07 +10572485,"Tech entrepreneur, diversity advocate Hank Williams has died",http://www.usatoday.com/story/tech/2015/11/15/tech-entrepreneur-diversity-advocate-hank-williams-dies-50/75841942/,82,10,loso,11/16/2015 3:38 +11605449,Avoiding a JavaScript Monoculture,http://www.sitepoint.com/javascript-monoculture,1,1,exception_e,5/1/2016 8:54 +10191540,Norris Numbers,http://www.teamten.com/lawrence/writings/norris-numbers.html,90,26,ingve,9/9/2015 14:12 +10951732,How to improve usability in software. Lots of tips,https://blog.serverdensity.com/how-to-improve-usability-in-software/,5,1,byrichardpowell,1/22/2016 9:29 +12544575,The Rise of MOS Technology and the 6502 (2003),http://www.commodore.ca/commodore-history/the-rise-of-mos-technology-the-6502/,3,2,bootload,9/21/2016 0:44 +12397708,Hardware Oracles: Bridging the Real World to the Blockchain,https://blog.ledger.co/hardware-oracles-bridging-the-real-world-to-the-blockchain-ca97c2fc3e6c,3,2,murzika,8/31/2016 12:21 +11381083,"Ask HN: Are specializations at udacity, coursera etc worth it?",,21,9,vijayr,3/29/2016 13:00 +10667359,clib C Package Manager-ish,https://github.com/clibs/clib,23,12,nikolay,12/3/2015 2:31 +11421974,The Problem with Electric Vehicles,http://jacquesmattheij.com/the-problem-with-evs,84,193,AndrewDucker,4/4/2016 14:12 +12321019,Dont you forget about me: Ready Player One for a nerdgasmic trip to the 80s,http://factordaily.com/dont-forget-ready-player-one-nerdgasmic-trip-eighties-via-future/,1,1,jayadevan,8/19/2016 16:06 +11289488,"Information Theory, Inference, and Learning Algorithms (2003) [pdf]",http://www.inference.phy.cam.ac.uk/itprnn/book.pdf,109,9,Tomte,3/15/2016 13:39 +10321272,"Microsoft buys Havok, the physics engine for pretty much every game ever",http://venturebeat.com/2015/10/02/microsoft-buys-havok-from-intel-promises-to-keep-licensing-physics-tech/,13,6,reimertz,10/2/2015 20:56 +11907891,Phrack Magazine #69 (May 2016),http://www.phrack.org/issues/69/1.html,1,1,jor-el,6/15/2016 8:29 +10248465,Elephants Shot with Poison Arrows Travel to Humans for Help,https://www.thedodo.com/elephants-travel-humans-help-1353631970.html#elephants-travel-humans-help-1353631970.html,221,72,ghosh,9/20/2015 18:27 +11127412,This Company Retains 95% of Its Employees Heres Its Secret,http://firstround.com/review/this-company-retains-95-percent-of-its-employees-heres-its-secret/,1,1,ca98am79,2/18/2016 17:20 +12208662,Tom Hanks on Typewriters,http://www.nytimes.com/2013/08/04/opinion/sunday/i-am-tom-i-like-to-type-hear-that.html,126,90,keiferski,8/2/2016 9:12 +10335793,Amazon pricing anecdote price decreases until purchase,,4,1,tuna-piano,10/5/2015 23:44 +12188318,The solution to (nearly) everything: working less,https://www.theguardian.com/commentisfree/2016/apr/18/solution-everything-working-less-work-pressure,84,55,csantini,7/29/2016 17:23 +10463238,Not Your Fathers FORTRAN,http://hackaday.com/2015/10/26/this-is-not-your-fathers-fortran/,39,17,pmarin,10/28/2015 7:53 +11964825,IKEA Is the Largest Charity in the World,http://www.insatiablefox.com/blog/2016/6/23/ikea-is-the-largest-charity-in-the-world,7,1,mike2477,6/23/2016 22:41 +11165561,Controlling vehicle features of Nissan LEAFs via vulnerable APIs,http://www.troyhunt.com/2016/02/controlling-vehicle-features-of-nissan.html,9,4,matthewwarren,2/24/2016 9:34 +11276759,Hans Rosling and the magic washing machine,http://www.ted.com/talks/hans_rosling_and_the_magic_washing_machine,2,1,andreapaiola,3/13/2016 8:30 +12528144,Music theory for nerds,https://eev.ee/blog/2016/09/15/music-theory-for-nerds/,761,377,hardmath123,9/19/2016 1:08 +10899798,DiY Fiber Optic Light Using ESP8266,http://adityatannu.com/blog/post/2016/01/13/Philips-Hue-Fiber-Optic-Light.html,59,15,adysan,1/14/2016 5:23 +12194589,Russia says spyware found in state computer networks,http://www.reuters.com/article/us-russia-cyber-attacks-idUSKCN10A0F0,34,12,djoldman,7/30/2016 20:35 +12303225,New Startup Aims to Commercialize a Brain Prosthetic to Improve Memory,http://spectrum.ieee.org/the-human-os/biomedical/bionics/new-startup-aims-to-commercialize-a-brain-prosthetic-to-improve-memory,80,47,temp,8/17/2016 8:48 +10437109,Decline in the labor share of income in the U.S.,http://www.vox.com/2015/1/8/7511281/labor-share-income,117,119,whocansay,10/23/2015 6:26 +10724951,The Greatest Unsolved Problem in Theoretical Physics: Why Gravity Is So Weak,http://www.forbes.com/sites/startswithabang/2015/12/11/the-greatest-unsolved-problem-in-theoretical-physics-why-gravity-is-so-weak/,90,71,signa11,12/13/2015 1:07 +12263850,6 HR Leaders Share Their Visions and Fears about HR Tech and Digital World,https://medium.com/@EBereziuk/6-hr-leaders-share-their-visions-and-fears-about-hr-tech-and-digital-world-4481a66cac1f#.hdtia9j1n,1,1,LenaTech,8/10/2016 18:31 +12010244,Baseline JIT and inline caches,https://blog.pyston.org/2016/06/30/baseline-jit-and-inline-caches/,53,12,zellyn,6/30/2016 17:36 +11228382,Some radical thoughts about Sci-Hub,https://blogs.library.duke.edu/scholcomm/2016/03/03/some-radical-thoughts-about-scihub/,110,38,chei0aiV,3/5/2016 4:11 +11097568,Trade Officials Sign the TPP but It's Still Up to Lawmakers to Reject It,https://www.eff.org/deeplinks/2016/02/trade-officials-sign-tpp-its-still-lawmakers-reject-it,88,24,walterbell,2/14/2016 8:14 +11125185,"Google Cloud Debugger: use local source, Go and Node.js support, IntelliJ plugin",http://googlecloudplatform.blogspot.com/2016/02/diagnose-problems-in-your-production-apps-faster-with-Google-Cloud-Debugger.html,145,28,steren,2/18/2016 12:11 +11439819,[Petition] Tell Microsoft to stop making browsers,https://www.change.org/p/tell-microsoft-to-stop-making-browsers?recruiter=522724148&utm_source=share_petition&utm_medium=copylink,2,1,ckubel,4/6/2016 16:27 +11228301,An OCaml/Mirage-friendly implementation of the Plan9 filesystem protocol,https://github.com/mirage/ocaml-9p,85,11,luu,3/5/2016 3:33 +11652454,Show HN: Phone verification at no cost,https://github.com/natsu90/dial2verify-twilio,147,62,natsu90,5/8/2016 3:12 +10580376,The Double Life of John Le Carré,http://www.theatlantic.com/magazine/archive/2015/12/the-double-life-of-john-le-carre/413152/?curator=MediaREDEF&single_page=true,79,6,sergeant3,11/17/2015 11:23 +10943649,"GM Unveils Maven, Its New Play in Car-Sharing Services",http://techcrunch.com/2016/01/20/gm-unveils-maven-its-big-play-in-car-sharing-and-other-new-ownership-models/,48,35,prostoalex,1/21/2016 6:03 +12078358,Ask HN: How to piss off a programmer?,,5,9,LukeFitzpatrick,7/12/2016 12:09 +11495972,Check\Compare assembly generated from C++ compilers,http://gcc.godbolt.org/,3,1,farious,4/14/2016 12:17 +12449441,Stealing login credentials from a locked PC or Mac just got easier,http://arstechnica.com/security/2016/09/stealing-login-credentials-from-a-locked-pc-or-mac-just-got-easier/,14,2,em3rgent0rdr,9/8/2016 1:07 +11765353,Automated trading strategies for Forex market,http://www.evestinforex.com,2,1,ivolux,5/24/2016 20:51 +11091946,The Used Bookstore Will Be the Last One Standing,http://www.theawl.com/2016/02/the-used-bookstore-will-be-the-last-one-standing?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheAwl+%28The+Awl%29,2,1,walterbell,2/13/2016 1:25 +10619956,A Cabinet of Infocom Curiosities,http://ascii.textfiles.com/archives/4834,194,72,bane,11/24/2015 9:53 +11862240,Ginkgo Bioworks (YC S14) raises $100M to buy a lot of synthetic DNA,http://techcrunch.com/2016/06/08/ginkgo-bioworks-grabs-100-million-in-financing-to-buy-a-whole-lot-of-synthetic-dna/,35,19,johnsocs,6/8/2016 13:50 +12492519,Ask HN: Can anyone recommend debt collection cloud software?,,2,1,marcamillion,9/13/2016 21:43 +10606767,Dormir en el limbo: radiografía de Airbnb EL ESPAÑOL,http://datos.elespanol.com/proyectos/airbnb/,1,1,malditojavi,11/21/2015 13:39 +11421655,Ask HN: No Profitability and Raises why the guilt?,,5,14,djmill,4/4/2016 13:25 +10786455,Automatically pause recurring subscription for inactive users,https://levels.io/subscriptions/,3,1,libovness,12/24/2015 0:34 +10482209,Rikers Drove My Innocent Patient to Plead Guilty,http://www.politico.com/magazine/story/2015/10/rikers-island-plea-bargains-213223,170,105,de_Selby,10/31/2015 9:05 +12460936,Python 3.6 dict becomes compact and keywords become ordered,https://mail.python.org/pipermail/python-dev/2016-September/146327.html,297,157,Buetol,9/9/2016 10:43 +10860701,Youtual.com a mutual YouTube experience,http://youtual.com,11,10,youtual,1/7/2016 20:57 +11541260,Tech Firms Dominate the Top-Paying Companies in U.S,http://www.wsj.com/articles/tech-firms-dominate-the-top-paying-companies-in-u-s-1461150004,3,2,adamqureshi,4/21/2016 11:45 +11945592,Why do some WebP Images appear upside down?,https://shkspr.mobi/blog/2016/06/why-do-some-webp-images-appear-upside-down/,3,1,edent,6/21/2016 13:56 +11137359,Shit I cannot believe we had to fucking writefilling Wikipedia's gender gap,https://en.wikipedia.org/wiki/Wikipedia:Wikipedia_Signpost/2016-02-17/Op-ed,4,1,The_ed17,2/19/2016 22:52 +11934517,Is This New Swim Stroke the Fastest Yet? (2015),http://nautil.us/issue/37/currents/is-this-new-swim-stroke-the-fastest-yet-rp,70,32,dnetesn,6/19/2016 20:26 +12521258,"Having fun with Go's nil, interfaces and errors",https://katcipis.github.io/2016/09/17/fun-with-nil-interfaces.html,86,51,katcipis,9/17/2016 16:54 +11229027,Reza Rahman: Why I Left Oracle,http://blog.rahmannet.net/2016/03/why-i-left-oracle.html,10,1,javinpaul,3/5/2016 10:00 +10595192,Drupal 8.0.0 Released,https://www.drupal.org/news/drupal-8.0.0-released,13,1,staticvar,11/19/2015 15:17 +11986593,Project Bloks: Making code physical for kids,https://research.googleblog.com/2016/06/project-bloks-making-code-physical-for.html,86,22,runesoerensen,6/27/2016 15:03 +11945082,How to Tell Someones Age When All You Know Is Her Name FiveThirtyEight,https://fivethirtyeight.com/features/how-to-tell-someones-age-when-all-you-know-is-her-name/,4,1,BeautifulData,6/21/2016 12:11 +12302492,Modern Dating: Excuses Incubator,https://medium.com/the-bird-nest/modern-dating-excuses-incubator-738ae4edc1b8,2,2,jonobird1,8/17/2016 4:22 +10468645,Don't include configs in your Git repos,http://blog.eatonphil.com/2015-10-27/dont-include-configs-in-your-git-repos,29,41,eatonphil,10/29/2015 1:28 +10250191,Is this the creepiest startup team page on the internet?,https://www.tawk.to/team,1,2,24x7,9/21/2015 3:29 +11551829,Silicon Valleys unicorn fantasy is collapsing in on itself,http://qz.com/666927/silicon-valleys-unicorn-fantasy-is-collapsing-in-on-itself/,11,2,dionidium,4/22/2016 19:12 +10279030,Google voice search: faster and more accurate,http://googleresearch.blogspot.com/2015/09/google-voice-search-faster-and-more.html,188,67,gok,9/25/2015 16:22 +10686995,Semiconductor Consolidations Aftermath,http://semiengineering.com/consolidations-aftermath/,29,3,craigjb,12/6/2015 22:36 +11525969,Elon Musk Ahead of Pace for $1.6B Tesla Motors Payday,http://www.bloomberg.com/news/articles/2016-04-18/elon-musk-ahead-of-pace-for-1-6-billion-tesla-motors-payday,3,2,antr,4/19/2016 10:20 +11461113,Linus Torvalds: The mind behind Linux,https://www.ted.com/talks/linus_torvalds_the_mind_behind_linux,30,5,dankohn1,4/9/2016 13:23 +10422976,Google employee lives in a truck in the company's parking lot,http://www.sfgate.com/technology/businessinsider/article/A-23-year-old-Google-employee-lives-in-a-truck-in-6579549.php,53,91,cpeterso,10/21/2015 1:16 +10822086,Ask HN: Has anyone found employment through Who wants to be hired threads?,,25,16,baccheion,1/1/2016 15:29 +10594586,DONT BEAT YOURSELF UP FOR Not BEING ABLE TO CODE,https://medium.com/@sarharibhakti/don-t-listen-to-those-who-think-coding-is-the-only-way-to-go-f9a381d4f5a0#.3feoy93t2,6,2,sarthakgh,11/19/2015 13:28 +11442546,Apply HN: Hairme Programmable Haircuts for Men,,21,29,theforceawakens,4/6/2016 22:04 +10331591,Flighty as a Bootstrap alternative,http://blog.shopful.me/flighty-as-a-bootstrap-alternative,2,1,eatonphil,10/5/2015 13:17 +10497874,How to build a full-scale quantum computer in silicon,http://www.kurzweilai.net/how-to-build-a-full-scale-quantum-computer-in-silicon,3,1,jonbaer,11/3/2015 6:05 +12209954,Awesome design methods set for solving problems from IDEO,http://www.designkit.org/,14,1,judauphant,8/2/2016 13:59 +11981761,Show HN: RedCall call multiple people at once,http://www.redcallapp.com/,5,1,RizkSaade,6/26/2016 17:50 +11261392,D.O.J. Loses Lindsey Graham in Encryption Fight,https://www.districtsentinel.com/doj-loses-lindsey-graham-encryption-fight/,2,1,jeo1234,3/10/2016 19:13 +11448377,How teens hack their phones (and what it means for the rest of us),https://blog.socratic.org/how-teens-hack-their-phones-and-what-it-means-for-the-rest-of-us-677a474eed63#.3b004je4u,2,1,ALee,4/7/2016 16:08 +10586297,New design points a path to the ultimate battery,http://www.cam.ac.uk/research/news/new-design-points-a-path-to-the-ultimate-battery,9,2,creamyhorror,11/18/2015 6:22 +12208509,"Alan Kay on AI, Apple and Future",http://factordaily.com/alan-kay-apple-steve-jobs/,198,107,pm2016,8/2/2016 8:28 +12047981,Apex memmove fast memcpy/memmove on x86/x64,http://www.codeproject.com/Articles/1110153/Apex-memmove-the-fastest-memcpy-memmove-on-x-x-EVE,77,42,Tatyanazaxarova,7/7/2016 7:30 +12429312,Academic Publishing without Journals: Publication mints coins/points,https://hack.ether.camp/#/idea/academic-publishing-without-journals,8,1,HairyGing3r,9/5/2016 10:29 +11452460,Creating $1.4M TSA App in 10 mins,https://www.youtube.com/watch?v=6GEpqmPL3bg,2,1,guessmyname,4/8/2016 3:50 +10736524,Opera for beginners (2001),http://www.taleofgenji.org/opera_for_beginners.html,10,7,Tomte,12/15/2015 7:56 +11838739,"Paul Lansky: The Music Composer, an IBM 360/91, and Radiohead's Kid A",http://paul.mycpanel.princeton.edu/radiohead.ml.html,2,1,oneeyedpigeon,6/4/2016 23:28 +10897319,A Deep Dive on Binge On,http://www.project-disco.org/telecom/011316-deep-dive-on-binge-on/,19,1,sinak,1/13/2016 20:40 +11010483,Show HN: Digest Reddit newsletter based on the subreddits you want to follow,https://getdigest.io,19,6,erroneousboat,2/1/2016 8:17 +11944769,Jasper The Issue Reader for GitHub,https://jasperapp.io,2,3,h13i32maru,6/21/2016 10:40 +11181474,A project to resurrect Unix on the PDP-7 from a scan of original assembly code,https://github.com/DoctorWkt/pdp7-unix,56,10,fforflo,2/26/2016 14:23 +11866389,The Four Newest Elements Now Have Names,http://www.smithsonianmag.com/smart-news/four-newest-elements-now-have-names-180959350/?no-ist,3,1,Mz,6/8/2016 23:03 +10391551,COZ: Finding Code That Counts with Causal Profiling [pdf],http://www.sigops.org/sosp/sosp15/current/2015-Monterey/printable/090-curtsinger.pdf,36,3,epsylon,10/15/2015 5:44 +10889855,Planetary Defense,http://www.nasa.gov/planetarydefense,107,53,cryptoz,1/12/2016 19:50 +11175604,Watch Tim Cook's full 30-minute interview on Apple's fight with the FBI,http://www.theverge.com/2016/2/24/11110802/apple-tim-cook-full-interview-fbi-iphone-encryption,16,1,jonbaer,2/25/2016 16:41 +11010337,Sarad generate code by clicking,https://github.com/abagames/sarad,22,3,polm23,2/1/2016 7:25 +12207727,Why working the night shift can pose a cancer risk,http://news.mit.edu/2016/night-shift-cancer-risk-0728,3,1,sndean,8/2/2016 3:43 +10413372,Modern life has not changed sleeping patterns as much as some believe,http://www.economist.com/news/science-and-technology/21674491-modern-life-has-not-changed-sleeping-patterns-much-some-believe-now-i-lay-me?fsrc=scn/tw/te/pe/ed/nowilaymedowntosleep,2,1,smk11,10/19/2015 15:10 +10845215,"Jack of all trades, but master of none. Are you an expert or a generalist?",https://blog.lelonek.me/jack-of-all-trades-but-master-of-none-2865d34a6442#.u6b14exno,2,2,squixy,1/5/2016 19:08 +11123665,Google Launches Fresh-Grocery Deliveries,http://blogs.wsj.com/digits/2016/02/17/google-launches-fresh-grocery-deliveries/,179,152,tacon,2/18/2016 4:07 +10902826,Evolving Proxy Detection as a Global Service,https://media.netflix.com/en/company-blog/evolving-proxy-detection-as-a-global-service,6,1,Aissen,1/14/2016 17:30 +11900370,Case Study Building .NET Startup from Scratch,http://startupmyway.com/building-saas-startup-from-scratch/?utm=hackernews,6,2,boboss,6/14/2016 7:31 +11639981,Finger-Aware Shortcuts: Trigger commands with the same key and different fingers,http://www.jingjiezheng.com/projects/finger-aware-shortcuts/,2,1,tsenmu,5/5/2016 22:01 +11011921,WP for nubes,http://bizanosa.com/wordpress-tutorial-for-beginners/,1,1,bznvideos,2/1/2016 14:37 +11798803,My Garbage Cat Wakes Me Up at 3AM Every Day (2015),https://grey2scale.itch.io/garbage-cat,2,1,j1vms,5/29/2016 23:48 +12081754,"Finding, retaining IT talent still a struggle",http://www.cio.com/article/3091860/hiring/finding-retaining-it-talent-still-a-struggle.html,1,1,JSeymourATL,7/12/2016 19:38 +10621698,"Shindig: An event discovery app built with Meteor.js, React.js, and Neo4j",https://medium.com/@chetcorcos/shindig-an-event-discovery-app-built-with-meteor-js-react-js-and-neo4j-602afb483ae6#.r1vou558l,30,10,chetcorcos,11/24/2015 16:28 +11582691,"Please Stop Geeking Out, help others understand and help simplify",http://www.daedtech.com/please-stop-geeking-out/,4,1,maxdesiatov,4/27/2016 17:46 +11278070,Dont Use MVP as an Excuse to Write Bad Software,http://thepracticaldev.com/@ben/dont-use-mvp-as-an-excuse-to-write-bad-software,4,1,mentioned_edu,3/13/2016 15:50 +11826031,Apple cloud services outage,https://www.apple.com/support/systemstatus/,242,119,DAddYE,6/2/2016 21:03 +12436936,Is Digital Ocean screwing you? You might be surprised,https://medium.com/@joshuapinter/digitalocean-vs-packet-3fbff37998be#.ca5exw1pf,5,2,ekryski,9/6/2016 15:59 +12479462,Balloon Hashing: A Function Providing Protection Against Sequential Attacks [pdf],http://eprint.iacr.org/2016/027.pdf,62,21,bqe,9/12/2016 13:28 +10201924,Ask HN: How does a TV show recording get to the networks?,,1,2,gavreh,9/11/2015 3:51 +10365418,Top Open-Source Static Site Generators,https://www.staticgen.com/,74,20,plurby,10/10/2015 13:25 +10789498,What Really Happened With the DNCs Datagate?,https://www.jacobinmag.com/2015/12/bernie-sanders-hillary-clinton-data-breach-president-debate/,193,95,idiotclock,12/24/2015 20:31 +11289022,Google Announces the Google Analytics 360 Suite,http://www.google.com/analytics/360-suite/,98,48,dpurp,3/15/2016 12:16 +11994428,Identifying North American Phone Switches,http://thoughtphreaker.omghax.ca/switchid.txt,96,46,doctorshady,6/28/2016 15:19 +10352487,Accelerated Mobile Pages Project,https://github.com/ampproject/amphtml,2,1,tnorthcutt,10/8/2015 13:10 +11606658,We've Found the Real Bastard Operator from Hell,http://www.theregister.co.uk/2016/04/29/it_helpdesk_creates_oh_hold_hell/,22,1,adzicg,5/1/2016 15:58 +11957697,"Mark Zuckerberg Covers His Laptop Camera and You Should, Too",http://www.nytimes.com/2016/06/23/technology/personaltech/mark-zuckerberg-covers-his-laptop-camera-you-should-consider-it-too.html,7,1,gk1,6/22/2016 22:56 +10785514,Why Google is set up perfectly to build an AI messaging app,http://www.networkworld.com/article/3018272/opensource-subnet/why-google-is-set-up-perfectly-to-build-an-ai-messaging-app.html,6,1,stevep2007,12/23/2015 20:40 +10245665,Dictater: Replacement for OS Xs built-in speech services,http://nosrac.github.io/Dictater/,10,3,arm,9/19/2015 21:58 +10413883,Lessons about Disconnecting,https://medium.com/swlh/offline-is-the-new-black-83d818a2eb6d,19,4,vinnyglennon,10/19/2015 16:22 +11317851,Social Share Privacy,http://panzi.github.com/SocialSharePrivacy/,19,6,samanchrani,3/19/2016 9:06 +10842621,Is Linux ready for desktop? tl;dr NO,http://itvision.altervista.org/why.linux.is.not.ready.for.the.desktop.current.html,21,53,maximveksler,1/5/2016 11:14 +10390752,VICAR (Video Image Communication and Retrieval) Open Source,http://www-mipl.jpl.nasa.gov/vicar_open.html,17,1,r721,10/15/2015 1:21 +11073230,Ask HN: Cheap Tablet?,,1,1,dyeje,2/10/2016 15:12 +11183970,"Wesley A. Clark, legendary computer engineer, dies at 88",http://www.techrepublic.com/article/wesley-a-clark-legendary-computer-engineer-dies-at-88/,231,26,ohjeez,2/26/2016 20:28 +10381818,Netgear router exploit detected,http://www.bbc.com/news/technology-34491583,1,1,IgorPartola,10/13/2015 17:05 +11489827,An Introduction to Redex with Abstracting Abstract Machines,http://dvanhorn.github.io/redex-aam-tutorial/#,53,6,jcr,4/13/2016 16:44 +11710444,AMD releases FireRays 2.0 ray-tracing library as open source,http://gpuopen.com/firerays-2-0-open-sourcing-and-customizing-ray-tracing/,140,22,SXX,5/16/2016 23:44 +11341407,How Tesla's Model 3 Could Conquer Low-End Luxury,http://www.bloomberg.com/news/features/2016-03-22/how-tesla-model-3-can-complete-its-take-over-of-the-u-s-luxury-market,79,130,rezist808,3/23/2016 1:24 +10813746,Ask HN: Struggling to pay rent this month. Can I help you with a gig?,,251,37,_whynow,12/30/2015 19:20 +12220463,Programming Languages as Boy Scouts,http://notes.willcrichton.net/programming-languages-as-boy-scouts/,53,84,wcrichton,8/3/2016 18:52 +11257260,Ask HN: Best Excel Export Module for Nodejs?,,2,1,dominhhai,3/10/2016 3:35 +11425604,Codepen code downloader,https://github.com/fredrb/codepen-downloader,2,1,pietromenna,4/4/2016 20:58 +11032921,NSA Plans to 'Act Now' to Ensure Quantum Computers Can't Break Encrytion,http://gizmodo.com/nsa-plans-to-act-now-to-ensure-quantum-computers-cant-b-1757038212,3,1,jonbaer,2/4/2016 9:48 +11080613,VCs who miss the point of open source shouldn't fund it,http://www.infoworld.com/article/3032120/open-source-tools/vcs-who-miss-the-point-of-open-source-shouldnt-fund-it.html,3,2,CrankyBear,2/11/2016 15:23 +10939927,Brendan is back to save the Web,http://andreasgal.com/2016/01/20/brendan-is-back-to-save-the-web/,4,2,cpeterso,1/20/2016 17:53 +10777433,Ask HN: What would it take to free TypeScript from the JavaScript shackles?,,2,1,cdnsteve,12/22/2015 12:54 +10892407,The President Wants Every Student to Learn Computer Science,http://www.npr.org/sections/ed/2016/01/12/462698966/the-president-wants-every-student-to-learn-computer-science-how-would-that-work,2,1,santaclaus,1/13/2016 5:03 +10248191,Memspector: Inspect memory usage of Python functions,https://github.com/asciimoo/memspector/,27,1,mstef,9/20/2015 17:03 +11841306,A Gentle Introduction to the Basics of Machine Learning,https://miguelgfierro.com/blog/2016/a-gentle-introduction-to-the-basics-of-machine-learning/,7,2,hoaphumanoid,6/5/2016 15:02 +11535564,Looking for a co-founder (biz dev) in fashion industry,,1,1,52074653,4/20/2016 16:27 +11913743,Avoid easy things,http://yosefk.com/blog/evil-tip-avoid-easy-things.html,4,1,wslh,6/16/2016 3:32 +11992582,Ask HN: Why is academic language so redundant?,,2,4,50CNT,6/28/2016 10:14 +10836812,Functional Programming Is Taking Over UIs with Pure Views,https://medium.com/@puppybits/the-revolution-of-pure-views-aed339db7da4,3,1,puppybits,1/4/2016 17:15 +10604890,"Free software that is impractical to redistribute, isn't (Canonical IP policy)",http://mjg59.dreamwidth.org/38467.html,3,5,csirac2,11/21/2015 0:45 +12073675,Tell HN: New features and a moderator,,2381,451,dang,7/11/2016 19:34 +11540065,Generic C++ delegates,https://nikitablack.github.io/2016/04/12/Generic-C-delegates.html,2,1,AndreyKarpov,4/21/2016 6:34 +10562011,Biohackers Insert LEDs into Their Hands,http://www.iflscience.com/chemistry/biohackers-insert-glowing-leds-their-hands,2,1,kator,11/13/2015 19:51 +11574753,"If you use Waze, hackers can stalk you",http://fusion.net/story/293157/waze-hack/,9,1,than,4/26/2016 19:19 +12092993,The HyperDev Tech Stack,https://hyperdev.com/blog/hyperdev-tech-stack/,4,1,GarethX,7/14/2016 11:50 +11059720,"SpaceX sets Launch Date for Later this month, sea landing likely",http://arstechnica.com/science/2016/02/spacex-sets-launch-date-for-later-this-month-sea-landing-likely/,3,1,ChuckMcM,2/8/2016 18:02 +10190114,Spec Markdown,http://leebyron.com/spec-md/,11,4,rayshan,9/9/2015 6:59 +11883948,Ask HN: Want to learn HTML and CSS and also get your code reviewed?,,1,1,manibatra,6/11/2016 16:08 +11019453,Show HN: Geobird Yet another location-first social network +More +AMA,https://www.geobird.com,4,7,soral,2/2/2016 14:05 +10980104,WhatsApp to Let User Account Data Be Shared with Facebook,http://trak.in/tags/business/2016/01/27/whatsapp-facebook-information-sharing,2,1,kshatrea,1/27/2016 14:25 +11205703,The 2015 predictions of mass layoffs at IBM were both wrong and right,http://staging.spectrum.ieee.org/view-from-the-valley/at-work/tech-careers/which-ibm-layoff-numbers-add-up,3,1,teklaperry,3/1/2016 20:14 +12100260,Home Free,http://www.newyorker.com/magazine/2016/06/20/derrick-hamilton-jailhouse-lawyer,118,33,luckysahaf,7/15/2016 11:38 +10769971,Enforced Error Handling,http://250bpm.com/blog:68,18,9,luu,12/21/2015 7:00 +10741148,Show HN: Free SSL Certificates,https://www.sslforfree.com/,27,16,etrackr,12/15/2015 23:09 +12326499,Systemd reinvents mount(8) with systemd-mount,https://github.com/systemd/systemd/commit/29272c04a73b00b5420ee686d73c3bc74d29d169,3,1,zx2c4,8/20/2016 13:31 +11655545,Bay Area leaders consider merging region (2013),http://www.mercurynews.com/ci_22549758/bay-area-leaders-consider-merging-region,43,9,panic,5/8/2016 20:15 +11133921,Two European Carriers to Adopt Ad-Blocking Technology,http://www.wsj.com/articles/two-european-carriers-to-adopt-ad-blocking-technology-1455858446,2,1,timthorn,2/19/2016 15:22 +10191109,What if states earned their Electoral College votes based on turnout?,https://medium.com/@hodgesmr/earned-electoral-allocation-a9e806fadf0e,22,59,hodgesmr,9/9/2015 12:59 +11628993,Official Angular 2 Style Guide Released,https://angular.io/styleguide,2,1,markthethomas,5/4/2016 15:23 +11079017,"Moralistic gods, supernatural punishment and the expansion of human sociality",http://www.nature.com/nature/journal/vaop/ncurrent/full/nature16980.html,3,1,MrBuddyCasino,2/11/2016 8:49 +12539457,Parents will leave if Hillary is elected. What country should they move to?,https://www.quora.com/Its-2016-Dad-says-that-he-and-Ma-will-leave-the-country-if-Hillary-is-elected-They-are-big-Republicans-What-conservative-country-should-they-move-to/answer/Tim-Romero?srid=lUd4&share=1,3,1,alykhalid,9/20/2016 13:51 +10698472,Dandelion - Semantic Text Analytics as a service,https://dandelion.eu/,4,1,fyskij,12/8/2015 18:52 +11842176,Vvvv a live-programming environment for easy prototyping and development,https://vvvv.org,187,36,talles,6/5/2016 18:01 +10490826,Storklancer.io FeedBack,,2,1,sylarruby,11/2/2015 9:17 +10465866,The Role of the Statistician: Scientist or Shoe Clerk (1974) [pdf],http://statlab.bio5.org/sites/default/files/fall2014/bross-shoe-clerk74.pdf,22,1,RA_Fisher,10/28/2015 17:19 +11291714,More code review tools,https://github.com/blog/2123-more-code-review-tools,624,145,Oompa,3/15/2016 18:09 +10298422,New from Mobilizer: Local Testing Capabilities on Macs and PCs,http://mobile1st.com/new-from-mobilizer-local-testing-capabilities-on-macs-pcs/,4,1,michaelguar,9/29/2015 18:26 +11372455,New Kid on the Blockchain,http://www.nytimes.com/2016/03/28/business/dealbook/ethereum-a-virtual-currency-enables-transactions-that-rival-bitcoins.html?_r=1,226,185,drcode,3/28/2016 2:51 +10210171,The Threat Coming by Land,http://www.bloombergview.com/articles/2015-09-09/the-threat-coming-by-land,72,82,bpolania,9/13/2015 2:43 +10420176,Amino Launches a Consumer Healthcare Search Platform,http://techcrunch.com/2015/10/20/amino/,32,1,carlsbaddev,10/20/2015 16:33 +10720176,Introducing OpenAI,https://openai.com/blog/introducing-openai/,1107,376,sama,12/11/2015 21:30 +10903158,Gigaclear trials the UKs first 5Gbps ultrafast broadband service,http://www.gigaclear.com/gigaclear-trials-the-uks-first-5gbps-ultrafast-broadband-service-for-home-owners-and-businesses/,2,2,georgerobinson,1/14/2016 18:11 +12497002,Spotify have reached 40M paying subscribers,http://www.thenordicweb.com/dealflow/spotify-have-reached-40-million-paying-subscribers,88,76,neilpeel,9/14/2016 14:11 +11697321,Archiving a Website for Ten Thousand Years,http://www.theatlantic.com/technology/archive/2016/05/archiving-a-website-for-ten-thousand-years/482385/?single_page=true,70,31,r721,5/14/2016 18:07 +12251382,NBC Olympics secure website cert expires on opening week,https://www.nbcolympics.com/,2,1,skurks,8/8/2016 22:57 +12463695,Channels adopted as an official Django project,https://www.djangoproject.com/weblog/2016/sep/09/channels-adopted-official-django-project/,159,22,AtroxDev,9/9/2016 16:26 +11443240,Apply HN: OrderTrip Crowdsourcing local people as private tour guide,,14,12,keioka,4/6/2016 23:30 +12033856,We built our website without CSS: the highs and the lows,https://medium.com/@david.gilbertson/building-a-website-without-css-trials-and-tribulations-5aa30499f57c#.801svtihx,2,1,bubble_boi,7/5/2016 1:09 +11192771,Some Kids Sell Lemonade. He Starts a Chain,http://www.nytimes.com/2016/02/28/business/young-entrepreneurs-sweeten-the-lemonade-stand-model.html,16,4,LukeB_UK,2/28/2016 22:49 +12240364,Codemoji,https://codemoji.org/#/welcome,59,10,doener,8/6/2016 23:31 +12351391,Ask HN: Why is there such high turnover among Designers,,1,2,lscore720,8/24/2016 12:07 +11155628,Google Trends: React.js Has Surpassed Angular.js,https://www.google.com/trends/explore#q=react.js%2C%20angular.js&cmpt=q&tz=Etc%2FGMT%2B3,1,2,tambourine_man,2/23/2016 0:56 +11910987,Ask HN: Are drones legal to fly indoors around people?,,2,1,sharemywin,6/15/2016 18:21 +10798338,"CloudRail A Universal API for Stripe, Facebook, Slack, Dropbox, Twilio and More",http://cloudrail.com/cr-product/,8,8,kwrt,12/27/2015 18:57 +12022800,Why No One Cares That Netflix's New Logo Is Bad,http://www.fastcodesign.com/3061525/why-no-one-cares-that-netflixs-new-logo-is-bad,3,1,esalazar,7/2/2016 15:05 +10436466,Ask HN: How can I tell if I have programming aptitude?,,49,101,canicode,10/23/2015 2:22 +10380357,"New Magic Keyboard, Magic Trackpad 2 and Magic Mouse 2",http://www.apple.com/shop/mac/mac-accessories,5,2,tbassetto,10/13/2015 13:40 +12261578,Don Batemans terrain mapping device,https://www.bloomberg.com/features/2016-bateman-airplane-safety-device/,92,27,forrest_t,8/10/2016 13:36 +10270792,A grand don't come for free a $1000 startup challenge,http://1000pound.tumblr.com/,2,1,cambridge,9/24/2015 10:19 +10192192,How to Use Mobile Analytics to Drive Conversion,http://mobile1st.com/how-to-use-mobile-analytics-to-drive-conversion/,5,1,michaelguar,9/9/2015 15:56 +12546441,How Cosmic Rays Cause Computer Downtime [pdf],http://www.ewh.ieee.org/r6/scv/rl/articles/ser-050323-talk-ref.pdf,2,1,licorna,9/21/2016 8:40 +12499603,Only 7% of Office Workers Are Productive,http://www.inc.com/brian-de-haaff/only-7-of-office-workers-are-productive-but-most-are-miserable.html,14,6,bdehaaff,9/14/2016 18:01 +10310700,Logswan Fast Web log analyzer using probabilistic data structures,https://github.com/fcambus/logswan,35,3,mulander,10/1/2015 12:40 +10785637,AWS-Shell An Integrated Shell for Working with the AWS CLI,https://github.com/awslabs/aws-shell,2,2,nikolay,12/23/2015 21:05 +10669587,Ask HN: What are some good android apps to encrypt files on android?,,4,2,enitihas,12/3/2015 14:07 +12194047,Debugging using system calls in Mac OS X,http://bryce.is/writing/code/macosx/debugging/udp/sockets/dtruss/dtrace/eaddrinuse/2016/07/30/debugging-using-system-calls.html,121,23,bryceneal,7/30/2016 18:19 +11217909,Show HN: ResumeFodder Go app for generating Word resumes from JSON Resume data,https://resumefodder.com/,53,38,StevePerkins,3/3/2016 16:31 +12131094,Self-Driving Car Engineer Nanodegree,https://www.udacity.com/course/self-driving-car-engineer-nanodegree--nd013#,3,1,olivercameron,7/20/2016 18:00 +10602093,Empire of Code is the first game for coders where you can win without any coding,https://empireofcode.com/game/,28,23,oduvan,11/20/2015 16:39 +11305652,Quantum computing: time for venture capitalists to put chips on the table?,http://www.nea.com/blog/quantum-computing-time-for-venture-capitalists-to-put-chips-on-the-table?utm_medium=email&utm_campaign=email&utm_source=cb_daily,3,1,kujjwal,3/17/2016 16:54 +12333197,Registered Replication Report Facial Feedback Hypothesis [pdf],https://www.psychologicalscience.org/pdf/StrackRRR_manuscript_accepted.pdf,124,43,Jerry2,8/21/2016 23:20 +11582515,Google Calendar for Android: Find a time for my meeting,https://gmail.googleblog.com/2016/04/google-calendar-for-android-find-time.html,120,48,Garbage,4/27/2016 17:29 +12244123,A Better Way to Learn Programming? Notes on the Odin Project,http://everydayutilitarian.com/essays/notes-on-the-odin-project/,2,1,iamjeff,8/7/2016 22:39 +10856996,Ehang 184 drone could carry you away one day,http://www.gizmag.com/ehang-184-aav-passenger-drone/41213/,4,1,tim333,1/7/2016 9:45 +11224438,Why do folks use Syntax Coloring in code examples in books and presentations?,http://dimsumthinking.com/Blog/2016/03/03-Colors.html,1,4,ingve,3/4/2016 15:43 +11475387,Chat.center and Facebook's Unique Chat ID,,4,8,kteare,4/11/2016 21:45 +10667763,Show HN: Looking for your insight!,http://www.interweve.com,1,3,gammafication,12/3/2015 4:33 +12461601,Louisiana Judges Issue Harsher Sentences When the LSU Football Team Loses,http://www.theatlantic.com/education/archive/2016/09/judges-issue-longer-sentences-when-their-college-football-team-loses/498980/?single_page=true,137,89,fraqed,9/9/2016 12:44 +11049375,Ask HN: Is it worth starting a SaaS in a niche that already has a clear leader?,,90,52,iDemonix,2/6/2016 19:39 +10620773,Show HN: Graph Commons a platform for collaborative network mapping,http://graphcommons.com,6,1,fatiherikli,11/24/2015 14:17 +10781548,Ask HN: Good courses on design?,,9,2,plet,12/23/2015 1:46 +11257333,Show HN: Open-source StackOverflow-like service,http://paizaqa.herokuapp.com,74,47,yoshiokatsuneo,3/10/2016 4:05 +11630457,Asymmetric numeral systems: entropy encoding (2013),http://arxiv.org/abs/1311.2540,36,9,_of,5/4/2016 18:22 +10568137,Atom 1.2,http://blog.atom.io/2015/11/12/atom-1-2.html,86,56,rayshan,11/15/2015 1:36 +12131234,PokemonGo-Map,https://github.com/AHAAAAAAA/PokemonGo-Map,1,1,madethemcry,7/20/2016 18:18 +10867342,Yahoo to Reconsider Sale of Web Business Instead of Spinoff,http://www.bloomberg.com/news/articles/2016-01-08/yahoo-said-to-reconsider-sale-of-web-business-instead-of-spinoff,48,52,w1ntermute,1/8/2016 19:08 +10818400,A social media site that is targeted towards sharing travel,http://Dev.wandrlust.co,3,5,wandrlust,12/31/2015 16:55 +10633066,Palestinian territories to get 3G in mid-2016,http://bigstory.ap.org/article/1be677b2fcec45f4b073597ed16de228/after-years-delays-palestinians-get-high-speed-mobile,72,37,selimthegrim,11/26/2015 14:23 +12064092,Show HN: Scrape Nasdaq stock prices with open source Pickaxe tool,https://github.com/bitsummation/pickaxe/blob/master/Examples/nasdaq.s,3,1,breeve,7/10/2016 1:04 +10179354,Surprisingly few tips for traveling have changed since medieval times,https://www.washingtonpost.com/lifestyle/travel/what-tips-for-traveling-have-changed-since-medieval-times-surprisingly-few/2015/09/03/39fa7194-482d-11e5-846d-02792f854297_story.html,35,6,Thevet,9/6/2015 22:40 +11140011,Show HN: Claudia.js deploy Node.js microservices to AWS more easily,https://github.com/claudiajs/claudia,56,18,adzicg,2/20/2016 13:49 +10344883,Show HN: Make it easy for your subscribers to forward to their friends,http://sharethisemail.com/,6,2,Swizec,10/7/2015 8:49 +10393452,Adobe confirms major Flash vulnerability,http://bgr.com/2015/10/15/adobe-flash-player-security-vulnerability-warning/,11,1,jordigh,10/15/2015 14:47 +11390967,Introducing Safari Technology Preview,https://webkit.org/blog/6017/introducing-safari-technology-preview/,431,165,rootinier,3/30/2016 17:12 +12354607,"Show HN: Work with Elixir Find the best Elixir/Phoenix jobs, worldwide",https://workwithelixir.com,12,2,kmf,8/24/2016 19:31 +10419406,Twitter and Facebook Are Turning Publishers into Ghost Writers,http://techcrunch.com/2015/10/15/smart-pipes-and-dumb-content/,3,1,davidbarker,10/20/2015 14:36 +10405569,8 embargoed Xen Security Advisory to be released on 2015-10-29,http://xenbits.xen.org/xsa/?asdf,6,3,kevinchen,10/17/2015 18:53 +12059443,Researchers Discover Tor Nodes Designed to Spy on Hidden Services,https://www.schneier.com/blog/archives/2016/07/researchers_dis.html,3,1,Jerry2,7/9/2016 0:15 +11925904,"DAOs, Hacks and the Law",https://medium.com/@Swarm/daos-hacks-and-the-law-eb6a33808e3e,216,149,ikeboy,6/17/2016 22:17 +10232505,Why Do We Admire Mobsters?,http://www.newyorker.com/science/maria-konnikova/why-do-we-admire-mobsters,77,178,pmcpinto,9/17/2015 10:24 +12088843,Ask HN: How to deal with family not supportive of you doing a startup?,,8,5,panicocats,7/13/2016 19:14 +11563827,Ideal HTTP Performance,https://www.mnot.net/blog/2016/04/22/ideal-http,5,2,josephscott,4/25/2016 12:47 +12091438,Valve Moves to Choke Off $7.4B Gambling Market,http://www.bloomberg.com/news/articles/2016-07-13/game-maker-valve-moves-to-choke-off-7-4-billion-gambling-market,3,2,danso,7/14/2016 3:19 +12105879,NTRU Prime [pdf],https://eprint.iacr.org/2016/461.pdf,31,3,EvgeniyZh,7/16/2016 10:27 +11791175,Ask HN: Why exactly do you dislike Oculus?,,7,12,max_,5/28/2016 10:33 +10303906,Uber Goes Unconventional: Using Driver Phones as a Backup Datacenter,http://highscalability.com/blog/2015/9/21/uber-goes-unconventional-using-driver-phones-as-a-backup-dat.html,2,1,jchrisa,9/30/2015 13:49 +12167484,FaRM: Fast Remote Memory,http://blog.carlosgaldino.com/farm-fast-remote-memory.html,48,2,carlosgaldino,7/26/2016 17:54 +10984724,The 1986 ACM Conference on the History of Personal Workstations,http://www.computerhistory.org/atchm/the-1986-acm-conference-on-the-history-of-personal-workstations/,49,2,jamesbowman,1/28/2016 0:15 +11314919,Silicon Valley Season 3 trailer,https://www.youtube.com/watch?v=LmqGH9qOszM,6,1,justinclift,3/18/2016 20:53 +10289230,Ask HN: Is there a pan-English accent?,,4,11,burritofanatic,9/28/2015 7:05 +11159217,1000 computers hacked by the virus Melissa,,1,1,Jacky_Boy,2/23/2016 14:56 +10327025,Encrypt and decrypt content with Nodejs,http://lollyrock.com/articles/nodejs-encryption/,3,1,alemhnan,10/4/2015 9:37 +11882194,SSGs Part 2: Modern Static Site Generators,https://about.gitlab.com/2016/06/10/ssg-overview-gitlab-pages-part-2/,4,1,neogenix,6/11/2016 5:16 +11097899,Argentine physicians claim Monsanto larvicide is true cause of microcephaly,http://www.examiner.com/article/argentine-physicians-claim-monsanto-larvicide-is-true-cause-of-microcephaly,20,1,eskimobloood,2/14/2016 11:38 +10462985,Things Every Programmer Should Know,http://programmer.97things.oreilly.com/wiki/index.php/Contributions_Appearing_in_the_Book,3,1,unmole,10/28/2015 5:32 +11036147,Installing TensorFlow with Python 3 on EC2 GPU Instances,http://eatcodeplay.com/installing-gpu-enabled-tensorflow-with-python-3-4-in-ec2/,52,6,chrisconley,2/4/2016 18:43 +12189110,Moving beyond semiconductors for next-generation electric switches,http://phys.org/news/2016-07-semiconductors-next-generation-electric.html,2,1,jonbaer,7/29/2016 19:02 +11207155,Please Scan My Towel,http://jerrygamblin.com/2016/03/01/please-scan-my-towel/,7,2,ah-,3/1/2016 23:55 +12363555,The State of JavaScript: Front-End Frameworks A Few Preliminary Results,https://medium.com/@sachagreif/the-state-of-javascript-front-end-frameworks-1a2d8a61510#.ehggz2ulo,6,2,33degrees,8/26/2016 0:42 +10790589,"ES6 Rest/Spread, Defaults and Destructuring",http://www.datchley.name/es6-rest-spread-defaults-and-destructuring/,26,1,tuxz0r,12/25/2015 6:37 +11444797,"Apply HN: Zippy, self driving sidewalk meal delivery robots",,22,27,tomjacobs,4/7/2016 4:47 +11772034,Search Bangs,https://duckduckgo.com/bang,123,77,brudgers,5/25/2016 18:36 +10942554,David G. Hartwell (1941-2016),http://www.locusmag.com/News/2016/01/david-g-hartwell-1941-2016/,5,1,coloneltcb,1/21/2016 0:34 +12334868,Under Construction (2015),http://www.codersnotes.com/notes/under-construction/,71,39,dmlhllnd,8/22/2016 8:30 +10462124,For your eyes only: The Times goes inside GCHQ,http://www.thetimes.co.uk/tto/news/uk/defence/article4598139.ece,2,2,p01926,10/28/2015 0:15 +11505596,Spotify Founders Blast Swedens Business Environment in Open Letter,http://www.wsj.com/articles/spotify-founders-blast-swedens-business-environment-in-open-letter-1460479684,3,3,rrdharan,4/15/2016 16:33 +11034964,Becoming a webhost resller,,1,1,darrelld,2/4/2016 16:20 +10615319,The algorithm that creates diets that work for you,http://www.theatlantic.com/science/archive/2015/11/algorithm-creates-diets-that-work-for-you/416583/?single_page=true,2,1,ValentineC,11/23/2015 16:06 +10908046,Bootylicious: What the pirates of yore tell us about modern counterparts (2009),http://www.newyorker.com/magazine/2009/09/07/bootylicious,25,1,Tomte,1/15/2016 8:54 +10754098,Open source project Mjolnir adds innovative Code of Conduct,https://github.com/sdegutis/mjolnir/blob/master/Code_of_Conduct.md,6,4,sdegutis,12/17/2015 20:03 +10351651,Recreating the Roland TR-808 Cowbell Sound with Web Audio,http://outputchannel.com/post/tr-808-cowbell-web-audio/,1,1,France98,10/8/2015 9:24 +12168709,Ask HN: What's the best material to learn Racket?,,14,5,pedrodelfino,7/26/2016 21:03 +11430111,Use the admin to manage drip campaign emails using querysets on Django,https://github.com/zapier/django-drip,1,1,areski,4/5/2016 13:22 +10259507,Backblaze B2 Cloud Storage,https://www.backblaze.com/blog/b2-cloud-storage-provider/,411,223,SudoAlex,9/22/2015 16:09 +10902906,"Pony is an open-source, actor-model, high performance programming language",http://www.ponylang.org/,95,57,kordless,1/14/2016 17:41 +11952268,This photo of the new Bentley Mulsanne is 53.1B pixels large,http://www.bentleymotors.com/en/apps/look-closer.html,5,2,mohanrajn84,6/22/2016 8:15 +10504146,MPAA: We Shut Down YTS/YIFY and Popcorn Time,https://torrentfreak.com/mpaa-we-shut-down-ytsyify-and-popcorn-time-151103/,6,3,frabrunelle,11/4/2015 2:16 +10586692,A daring lander for Jupiters icy moon,http://arstechnica.com/science/2015/11/attempt-no-landing-there-yeah-right-were-going-to-europa/,46,13,lisper,11/18/2015 8:56 +12042049,NPM has been partially down for a while now,,12,3,harrychenca,7/6/2016 9:28 +10466264,Show HN: Topl.io democratized lists of Web resources,http://www.topl.io,5,4,iatek,10/28/2015 18:19 +11229017,Ask HN: How do you split up the initial work on a complex project?,,9,3,bigblind,3/5/2016 9:56 +10325031,Google's driverless car is brilliant but so boring,http://www.bbc.com/news/technology-34423292,63,59,ComputerGuru,10/3/2015 19:21 +12327372,New Outlook.com confirmation dialog is well-designed,https://imgur.com/a/vUTEQ,6,3,oDot,8/20/2016 17:03 +10767293,Show HN: WebShell Bundle web apps to native OS X app,https://github.com/djyde/WebShell,27,6,djyde,12/20/2015 15:38 +10215049,The Rise and Fall of Quirky: The Startup That Bet on the Genius of Regular Folk,http://nymag.com/daily/intelligencer/2015/09/they-were-quirky.html#,50,25,nols,9/14/2015 13:55 +12470137,Deepin OS: Linux desktop distro developed in China,https://www.deepin.org/index.html,6,1,open-source-ux,9/10/2016 17:26 +10579363,Paris Attacks Blamed on Strong Cryptography and Edward Snowden,https://www.schneier.com/blog/archives/2015/11/paris_attacks_b.html,6,1,ooOOoo,11/17/2015 5:39 +11788854,Square releases API for taking payments in your own Android apps,https://corner.squareup.com/2016/05/introducing-squares-register-api-for-android.html,58,6,jrodbx,5/27/2016 20:43 +10498063,Spatial Data Models and Query Processing (1994) [pdf],http://www.cs.umd.edu/~hjs/pubs/kim2.pdf,7,1,espeed,11/3/2015 7:19 +10277402,The Future of Shipping Software on Ubuntu,https://daniel.holba.ch/blog/2015/09/the-future-of-shipping-software-is-coming-together/,43,11,fractalb,9/25/2015 10:59 +11353322,"Citus Unforks from PostgreSQL, Goes Open Source",https://www.citusdata.com/blog/17-ozgun-erdogan/403-citus-unforks-postgresql-goes-open-source,763,153,jamesheroku,3/24/2016 15:02 +11539763,How University Students Sleep,https://jawbone.com/blog/university-students-sleep/?clickid=UGNw8z3G5TkTSF7Q8oV65R7fUkSR5qW33WdX0Q0&ir_cid=2939&utm_source=10079&ir_affid=10079&utm_campaign=Affiliates&utm_medium=IR&ir_clickid=UGNw8z3G5TkTSF7Q8oV65R7fUkSR5qW33WdX0Q0,2,1,alokedesai,4/21/2016 4:46 +11900998,Theres a better way to get smarter than brain-training games,https://aeon.co/essays/there-s-a-better-way-to-get-smarter-than-brain-training-games,6,2,jonbaer,6/14/2016 10:33 +10516952,What causes autism? Environmental risks are hard to identify,http://www.slate.com/articles/health_and_science/medical_examiner/2015/11/what_causes_autism_environmental_risks_are_hard_to_identify.single.html,5,18,curtis,11/5/2015 23:51 +10796638,Chevrolet Volt Extends Its Appeal,http://www.consumerreports.org/cars/video-review-all-new-2016-chevrolet-volt-extends-its-appeal,61,47,jseliger,12/27/2015 6:24 +10188796,Decline of play and rise of sensory issues in preschoolers,http://www.washingtonpost.com/blogs/answer-sheet/wp/2015/09/01/the-decline-of-play-in-preschoolers-and-the-rise-in-sensory-issues/,192,126,nether,9/8/2015 23:27 +12019076,How Facebook Tries to Prevent Office Politics,https://hbr.org/2016/06/how-facebook-tries-to-prevent-office-politics,284,180,wallflower,7/1/2016 19:37 +10231881,An AI which is not so artificial,http://www.wired.com/2015/09/amy-ingram-ai-thats-not-artificial/,2,1,edem,9/17/2015 6:34 +12537052,PerfView- a perf-analysis tool that helps isolate CPU/memory/slow perf issues,https://github.com/Microsoft/perfview,1,1,hitr,9/20/2016 4:26 +10500068,On Misunderstanding Economics,http://stumblingandmumbling.typepad.com/stumbling_and_mumbling/2015/10/on-misunderstanding-economics.html,2,2,bpolania,11/3/2015 15:17 +11872806,Apple Rumored to Be Debuting iMessage for Android at WWDC,http://www.macrumors.com/2016/06/09/apple-imessage-for-android-wwdc/,8,4,anorborg,6/9/2016 22:19 +11253019,Image-Match: Open-source scalable reverse image search,https://github.com/ascribe/image-match,86,10,trentmc,3/9/2016 14:09 +10548547,Refactoring to an Adaptive Model,http://martinfowler.com/articles/refactoring-adaptive-model.html,6,3,lelf,11/11/2015 19:12 +11778754,Expandable space habitat fails to inflate in NASA's first test,http://www.reuters.com/article/us-space-habitat-idUSKCN0YH1RA,5,1,roymurdock,5/26/2016 15:37 +12314984,Ask HN: Website vs. mobile app for conference goers,,2,3,galazzah,8/18/2016 18:13 +11705456,Find-cmd.el: an elegant way to build up complex find(1) expressions,https://www.emacswiki.org/emacs/Find,9,2,wtbob,5/16/2016 10:44 +12511553,What I've learnt from this successful CEO who had only $3 left in his bank,,1,2,grantmojo,9/16/2016 2:57 +10539735,How Apple Is Giving Design a Bad Name,http://www.fastcodesign.com/3053406/how-apple-is-giving-design-a-bad-name,14,1,andyjohnson0,11/10/2015 15:12 +11626917,"Ask HN: What are your monitoring data retention policies, and why?",,3,1,movedx,5/4/2016 8:10 +11766319,How an underwater fantasy blockbuster turned into a legendary movie fiasco,https://read.atavist.com/sunk,96,28,seventyhorses,5/24/2016 23:08 +11889868,FINANCE PROFESSOR: Bitcoin Will Crash to $10 by Mid-2014 (2013),http://www.businessinsider.com/williams-bitcoin-meltdown-10-2013-12?IR=T,4,1,edward,6/12/2016 19:36 +11860717,A painstakingly crafted search for Hearthstone,http://searchstone.io/,4,7,vvoyer,6/8/2016 7:58 +10740493,"Uber doesnt want drivers to sue again, so it pushes them to arbitration",http://arstechnica.com/tech-policy/2015/12/uber-doesnt-want-drivers-to-sue-again-so-it-pushes-them-to-arbitration/#p3,2,1,deegles,12/15/2015 21:09 +11805641,My Failed Side Project,https://medium.com/@ux_app/a-side-project-tale-of-sour-grapes-187e732c18fa#.ukq693qk2sdfsdf,4,4,ux-app,5/31/2016 9:54 +11027577,Ask HN: How do you find early adopters?,,1,4,tixocloud,2/3/2016 16:55 +11875862,Coding snobs are not helping out children prepare for the future,http://qz.com/703335/coding-snobs-are-not-helping-our-children-prepare-for-the-future/,2,2,baron816,6/10/2016 12:26 +12235726,"Ask HN: What service do you wish exists, but doesn't?",,2,2,franze,8/5/2016 20:59 +12445228,"iPhone 7 announced with water resistance, dual cameras, and no headphone jack",http://www.theverge.com/2016/9/7/12758236/apple-iphone-7-announced-features-price-release-date,10,3,harryzhang,9/7/2016 17:18 +11732970,Keep your identity small (2009),http://www.paulgraham.com/identity.html,184,152,nostrademons,5/19/2016 19:22 +10519379,Square Takes an IPO Bullet for All of the Overpriced Unicorns,http://recode.net/2015/11/06/square-takes-an-ipo-bullet-for-all-of-the-overpriced-unicorns/,19,5,jackgavigan,11/6/2015 13:45 +11942778,Francisco Partners and Elliott Management to Acquire the Dell Software Group,http://software.dell.com/acquisitions/dsg.aspx,2,1,flurdy,6/21/2016 0:53 +10864709,The 'bogus boss' email scam costing firms millions,http://www.bbc.com/news/business-35250678,83,138,elthran,1/8/2016 13:39 +11541533,Congress is clueless about tech because it killed its tutor,http://www.wired.com/2016/04/office-technology-assessment-congress-clueless-tech-killed-tutor/,131,64,CarolineW,4/21/2016 12:31 +11871860,"I didn't get Redux, so I rewrote it, and this is what I learned",https://medium.com/@davedrew/lets-write-redux-975609b0358f#.n3hwt3id5,5,2,dclowd9901,6/9/2016 19:54 +11602326,T.J. Miller Really Hates 'Pretentious Rich A**holes' in the Real Silicon Valley,http://www.esquire.com/entertainment/tv/news/a44308/tj-miller-silicon-valley-interview/,3,1,w1ntermute,4/30/2016 16:27 +11186203,Ask HN: What linux distro would you love to have preinstalled in your new PC?,,5,7,ghoshbishakh,2/27/2016 5:33 +11772626,Ask HN: Where do you host your static site?,,2,3,Wonnk13,5/25/2016 19:59 +11352307,Microsoft chatbot is taught to swear on Twitter,http://www.bbc.com/news/technology-35890188,263,175,pacaro,3/24/2016 12:48 +11432006,WhatsApp Security Whitepaper [pdf],https://www.whatsapp.com/security/WhatsApp-Security-Whitepaper.pdf,92,9,frankpf,4/5/2016 16:49 +10800956,Printf is Turing-complete (repo from 32C3 talk),https://github.com/HexHive/printbf,2,1,ojno,12/28/2015 13:13 +10565577,"Beware of ads that use inaudible sound to link your phone, TV, tablet, and PC",http://arstechnica.com/tech-policy/2015/11/beware-of-ads-that-use-inaudible-sound-to-link-your-phone-tv-tablet-and-pc/,1,1,erikschoster,11/14/2015 13:25 +11004956,Founder of invitation only dating app The League responds to critics,https://www.facebook.com/pearlouise/posts/10100967984448249?ref=a,1,1,ben_franklin_2,1/31/2016 2:24 +10971836,Show HN: Chrome Extension to view any files in your browser,https://chrome.google.com/webstore/detail/docs-online-viewer/gmpljdlgcdkljlppaekciacdmdlhfeon,45,22,dallamaneni,1/26/2016 4:36 +11492486,"Facebook Launches Research Lab, Hires Google Executive to Helm It",http://www.wsj.com/articles/facebook-launches-research-lab-hires-google-executive-to-helm-it-1460580859,63,28,batguano,4/13/2016 21:43 +12377310,Linus Torvalds: [Ksummit-Discuss] GPL Defense Issues,https://lists.linuxfoundation.org/pipermail/ksummit-discuss/2016-August/003603.html,3,1,the_mitsuhiko,8/28/2016 17:07 +10631040,Erik Torenberg is starting a Silicon Valley fraternity,http://idlewords.com/silicon_frat.txt,14,5,chaghalibaghali,11/26/2015 3:04 +11330683,Apple's iPad Pro page missing transparencies on all images [video],http://quick.as/mv86s6zjk,2,3,ivanstegic,3/21/2016 18:49 +11931761,Limbo will be available for free for a limited time (Xbox One and Steam),http://www.gamespot.com/articles/limbo-devs-next-game-gets-xbox-one-and-pc-release-/1100-6440696/,1,1,0x54MUR41,6/19/2016 4:19 +12118057,The Fake Townhouses Hiding Mystery Underground Portals,http://www.messynessychic.com/2013/01/29/the-fake-townhouses-hiding-mystery-underground-portals/,64,19,vinnyglennon,7/18/2016 21:06 +11782075,Ask HN: 2FA hardware?,,17,13,MTemer,5/26/2016 22:09 +12281501,Simple question,,2,4,Programing_noob,8/13/2016 13:56 +11005317,"Were in a brave, new post open source world",https://medium.com/@nayafia/we-re-in-a-brave-new-post-open-source-world-56ef46d152a3#.vy3pxdip5,2,1,josephscott,1/31/2016 5:11 +11885406,Theranos CEO Elizabeth Holmes takes big gamble at conference,http://www.sfchronicle.com/business/article/Theranos-CEO-Elizabeth-Holmes-takes-big-gamble-at-8003887.php,2,1,kqr2,6/11/2016 21:26 +12562810,Reasoning about performance (in the context of search) by Dan Luu,https://www.youtube.com/watch?v=80LKF2qph6I,1,1,AnbeSivam,9/23/2016 6:55 +10721343,The Ethereum Computer Securing Your Identity and Your IoT with the Blockchain,https://blog.slock.it/we-re-building-the-ethereum-computer-9133953c9f02#.hvb6h73ja,5,1,grifffgreeen,12/12/2015 1:29 +10550528,Experts Still Think UBeams Through-The-Air Charging Tech Is Unlikely,http://spectrum.ieee.org/consumer-electronics/portable-devices/experts-still-think-ubeamrsquos-throughtheair-charging-tech-is-unlikely,53,42,apsec112,11/12/2015 0:45 +11129806,How Weve Optimized Remote Team Meetings for Ultimate Efficiency,https://www.groovehq.com/blog/how-to-optimize-remote-team-meetings,2,1,AliCollins,2/18/2016 22:21 +12185263,How Vector Space Mathematics Reveals the Hidden Sexism in Language,https://www.technologyreview.com/s/602025/how-vector-space-mathematics-reveals-the-hidden-sexism-in-language/,3,2,exolymph,7/29/2016 6:12 +10301582,Ask HN: What's stopping you from starting up?,,3,20,nikhildaga,9/30/2015 3:39 +10771734,SpaceX Launch Live Webcast and Explanation,http://waitbutwhy.com/2015/12/spacex-launch-live-webcast-and-explanation-1-21-15.html,4,1,adwn,12/21/2015 16:16 +11639626,Proof-of-Satoshi fails Proof-of-Proof,http://www.metzdowd.com/pipermail/cryptography/2016-May/029323.html,13,5,mbgaxyz,5/5/2016 20:58 +10771200,Excellent Article on United States New Visa Discrimination,http://techcrunch.com/2015/12/16/a-call-to-arms-against-mccarthy-2-0/,1,1,Amir6,12/21/2015 14:35 +10533215,Ask HN: OCR Solutions,,3,3,vinnyglennon,11/9/2015 14:36 +12401011,I would pay X for Y,,26,50,westonplatter0,8/31/2016 19:56 +11474098,A new divide in American death: Statistics show widening urban-rural health gap,http://www.washingtonpost.com/sf/national/2016/04/10/a-new-divide-in-american-death/,21,6,Libertatea,4/11/2016 18:47 +11950299,Make the most of the C/C++ static analysis tools,http://www.codergears.com/Blog/?p=1792,4,1,cpp86,6/21/2016 23:25 +11526991,CRISPR between the genes: how to experiment with enhancers and epigenomics,https://genomics.quiltdata.com/2016/04/18/crisper-between-the-genes-enhancers/,16,9,akarve,4/19/2016 14:02 +11589030,Is the $400B F-35's 'brain' broken?,http://www.cnn.com/2016/04/21/politics/f-35-software-system-gao-report/index.html,11,9,TravelTechGuy,4/28/2016 14:21 +10336406,Why women are turning to newsletters,http://nymag.com/thecut/2015/10/why-women-are-turning-to-newsletters.html,12,3,kawera,10/6/2015 2:22 +10903059,Security Challenges in Microservice Implementations,http://container-solutions.com/security-challenges-in-microservice-implementations/,6,1,mrmrcoleman,1/14/2016 18:00 +10804430,$250K a Year Is Not Middle Class,https://www.nytimes.com/2015/12/28/opinion/campaign-stops/250000-a-year-is-not-middle-class.html,39,68,applecore,12/29/2015 0:48 +11289808,Razer's New Hacker Development Kit Natively Supports CryEngine,http://www.engadget.com/2016/03/15/razers-new-hacker-development-kit-natively-supports-cryengine/,2,1,yitchelle,3/15/2016 14:24 +11571149,Vector Space Systems aims to launch satellites by the hundreds,http://techcrunch.com/2016/04/26/vector-space-systems-aims-to-launch-satellites-by-the-hundreds/,3,1,putdat,4/26/2016 12:13 +12370702,Ntfy: A utility for sending notifications,https://github.com/dschep/ntfy,226,45,snehesht,8/27/2016 2:57 +12442707,Peter Thiel: Trump has taught us this years most important political lesson,https://www.washingtonpost.com/opinions/peter-thiel-trump-has-taught-us-this-years-most-important-political-lesson/2016/09/06/84df8182-738c-11e6-8149-b8d05321db62_story.html?utm_term=.feea5a98f9c6,13,1,rkb555,9/7/2016 12:19 +12084497,Understanding Tesla Autopilot,https://marco.org/2016/07/06/tesla-autopilot/,1,1,felixbraun,7/13/2016 7:32 +10778951,MVC Podcast Episode 13: Tech Mentorship; MS Vis Studio; Bitcoin; Gigster; More,http://mvc-the-podcast.github.io/2015/12/22/episode-13-secret-santas-secret-identities-mentorship.html,1,1,martystepp,12/22/2015 17:20 +12484926,Weirdly broken Wi-Fi access points,http://www.kmjn.org/notes/broken_wifi_access_points.html,178,173,mjn,9/13/2016 0:50 +10450650,Django website along with it's documentation website down for hours now,https://docs.djangoproject.com/,3,2,mundanevoice,10/26/2015 11:18 +12312196,Show HN: WebGL Fire Simulation,http://ghostinthecode.net/2016/08/17/fire.html,143,23,jharsman,8/18/2016 13:11 +10675613,Swift got more stars than any other programming language on GitHub,https://github.com/showcases/programming-languages,2,1,dumindunuwan,12/4/2015 10:53 +10386989,Why We Open Sourced Our Documentation,https://blog.paymill.com/open-source-documentation/,6,2,kpgrio,10/14/2015 15:03 +12368136,Are Index Funds Eating the World?,http://blogs.wsj.com/moneybeat/2016/08/26/are-index-funds-eating-the-world/,171,156,petethomas,8/26/2016 18:13 +10228557,Agencies Say They Need Access to Americans Emails Without a Warrant,http://www.nationaljournal.com/s/73094/agencies-say-they-need-access-americans-emails-without-warrant,9,1,mdip,9/16/2015 18:05 +11109134,How should you deal with difficult team members?,https://www.techinasia.com/talk/deal-difficult-team-members,1,1,williswee,2/16/2016 11:17 +11340510,I've Just Liberated My Modules,https://medium.com/@azerbike/i-ve-just-liberated-my-modules-9045c06be67c,1573,495,chejazi,3/22/2016 22:40 +10833183,What Science Fiction Movie or Novel Is Most Prescient Today?,http://www.nytimes.com/roomfordebate/2015/12/29/what-science-fiction-movie-or-novel-is-most-prescient-today?action=click&pgtype=Homepage&clickSource=story-heading&module=opinion-c-col-right-region®ion=opinion-c-col-right-region&WT.nav=opinion-c-col-right-region,42,64,walterbell,1/3/2016 23:48 +11298735,Hackertyper Write code like on TV,http://hackertyper.net/,6,2,catfest,3/16/2016 16:50 +10363460,Significant card decline rate,,6,1,andrebrov,10/9/2015 21:47 +12098881,Purism builds a secure tablet with physical wi-fi and camera switches,https://techcrunch.com/2016/05/20/purism-builds-a-secure-tablet-with-physical-wi-fi-and-camera-switches/,104,88,jseliger,7/15/2016 4:06 +12150527,"Goodbye, Object Oriented Programming",https://medium.com/@cscalfani/goodbye-object-oriented-programming-a59cda4c0e53#.qexzwqsuh,3,1,mmphosis,7/23/2016 18:46 +11388698,How to create an AI startup convince some humans to be your training set,http://simplystatistics.org/2016/03/30/humans-as-training-set/,137,32,simplystats,3/30/2016 12:21 +12478055,"Ask HN: I'm 23, and I dislike my job as a software engineer",,38,45,sk14,9/12/2016 8:33 +12521022,Ask HN: What is your favourite Roald Dhall book?,,2,1,muzster,9/17/2016 15:58 +11841482,10 things I learned from looking at 600 pitch deck reviews,http://venturebeat.com/2016/06/05/10-things-i-learned-from-looking-at-600-pitch-deck-reviews/,5,1,t23,6/5/2016 15:36 +11436180,"Discovery of 1,000-year-old Viking site in Canada could rewrite history",http://www.independent.co.uk/news/world/world-history/discovery-vikings-newfoundland-canada-history-norse-point-rosee-l-anse-aux-meadows-a6965126.html,178,89,Thevet,4/6/2016 2:28 +10959290,Who Needs Assassins When Youve Got Hackers?,http://www.nytimes.com/2016/01/23/opinion/who-needs-assassins-when-youve-got-hackers.html,28,4,jeo1234,1/23/2016 18:20 +11330994,Ask HN: What laptop *do* I buy then?,,1,6,quii,3/21/2016 19:21 +11830317,Using Trello as CRM?,http://gregoiregilbert.com/blog/trello-to-manage-sales-pipeline/,2,1,sydneymartinie,6/3/2016 13:57 +11079864,SoundCloud could be forced to close after $44m losses,http://www.factmag.com/2016/02/11/soundcloud-financial-report-44m-losses/,620,339,neokya,2/11/2016 13:10 +11049400,Run a DHCP and DNS Server on Your Raspberry Pi,http://blog.grobinson.net/2016/02/07/run-a-dhcp-and-dns-server-on-your-raspberry-pi/,2,1,georgerobinson,2/6/2016 19:44 +11735397,"Redfin launches React Server, a React framework with server rendering",https://github.com/redfin/react-server,8,2,lacker,5/20/2016 3:29 +11846561,Inside McKinseys private hedge fund,http://www.ft.com/intl/cms/s/0/7c6700bc-2976-11e6-8b18-91555f2f4fde.html,2,1,r0n0j0y,6/6/2016 13:25 +11991529,Ask HN: How does your company manage passwords?,,4,4,westoque,6/28/2016 4:41 +10890736,How to play Powerball so you dont have to share the jackpot,https://www.washingtonpost.com/news/wonk/wp/2016/01/12/how-to-play-powerball-so-you-dont-have-to-share-the-jackpot/,38,57,b_emery,1/12/2016 21:58 +11377328,Show HN: Shaven 1.0.0,http://adriansieber.com/shaven,4,1,adius,3/28/2016 20:54 +11130209,Gig Work That Works,http://micheleincalifornia.blogspot.com/2016/02/gig-work-that-works.html,42,33,Mz,2/18/2016 23:23 +10327271,Coding is a Privilege,https://medium.com/@alishalisha/coding-is-a-privilege-5a592e7d94d7,3,3,impostervt,10/4/2015 11:46 +12137998,Burned by a Margarita,http://www.theatlantic.com/science/archive/2016/07/burned-by-a-margarita/492149/?single_page=true,10,3,muddyrivers,7/21/2016 16:35 +11257981,Opera: Introducing native ad-blocking feature for faster browsing,https://www.opera.com/blogs/desktop/2016/03/native-ad-blocking-feature-opera-for-computers/,137,107,riqbal,3/10/2016 8:41 +11197885,Are tech workers priced out of San Francisco?,http://www.sfgate.com/business/article/Are-tech-workers-priced-out-of-San-Francisco-6858557.php,1,1,scentoni,2/29/2016 19:53 +12213107,Ask HN: What do you use as a shell script replacement?,,2,4,ohgh1ieD,8/2/2016 20:27 +11565644,Ask HN: What do you think about or landing page?,,3,3,svirelka,4/25/2016 17:07 +12125112,Show HN: Lint for HTTP,https://github.com/vfaronov/httpolice,138,12,vfaronov,7/19/2016 21:34 +12103632,Samsung's Galaxy S7 Is Outselling Apple's iPhone 6S in the US,http://www.theverge.com/circuitbreaker/2016/7/13/12171604/galaxy-s7-iphone-6s-plus-sales-data-stats,13,6,vezycash,7/15/2016 20:31 +10878875,"Show HN: Metascreen, free digital signage that doesn't suck",http://metascreen.io,2,1,nkristoffersen,1/11/2016 4:49 +11475782,Deep Space Industries,https://deepspaceindustries.com/,72,25,setra,4/11/2016 22:52 +10825243,BlindTool: Phone App That Audibly Identifies Objects (with Neural Networks),http://laughingsquid.com/blindtool-a-smartphone-app-that-audibly-identifies-objects-using-the-phones-camera-and-a-neural-network/,4,1,rw,1/2/2016 5:45 +12119800,How to be a wizard programmer,https://twitter.com/b0rk/status/755020037979856896,113,62,knoxa2511,7/19/2016 4:58 +12289440,Theres a $200k reward for anyone who proves Microsoft ripped off MS-DOS source,http://thenextweb.com/insider/2016/08/08/theres-a-200k-reward-for-anyone-who-proves-microsoft-ripped-off-ms-dos-source-code/,102,69,bndr,8/15/2016 9:41 +10434713,Analyzing gender inequality with an Elasticsearch-powered API,https://www.elastic.co/blog/make-an-elasticsearch-powered-rest-api-for-any-data-with-ramses,2,1,jstoiko,10/22/2015 20:09 +12042265,Firefox Same-Origin Policy Bypass (CVE-2015-7188),http://blog.bentkowski.info/2016/07/firefox-same-origin-policy-bypass-cve.html,32,5,cujanovic,7/6/2016 10:48 +12260563,Out of office email handling,,1,1,deepGem,8/10/2016 10:02 +11644462,Panama Papers source issues statement,https://panamapapers.icij.org/20160506-john-doe-statement.html,376,138,p0ppe,5/6/2016 15:06 +11730420,Need to kill time? Why not play Pakyra?,https://www.pakyra.com/,3,1,tdubbs,5/19/2016 14:24 +12297885,Ask HN: AWS or bust? Support the AWS services or compete with them?,,2,1,xchaotic,8/16/2016 14:59 +11288302,AlphaGo Beats Lee Sedol in Final Game,https://gogameguru.com/alphago-5/,708,290,doppp,3/15/2016 9:01 +10894301,"Coders,do you still have problem naming things?",,5,14,devspaper,1/13/2016 14:07 +10453641,Escape from Mercator Maps,https://mapzen.com/blog/escape-from-mercator,30,4,jcolman,10/26/2015 19:05 +10554568,HMRC mulling 'one-month' nudge onto payrolls for UK contractors,http://www.theregister.co.uk/2015/11/12/it_contractors_raise_alarm_over_hmrc_mulling_onemonth_nudge_onto_payrolls/,3,1,Swinx43,11/12/2015 17:28 +10526396,Ask HN: How to keep overseas contractors aligned with non technical founders?,,6,17,mooreds,11/7/2015 21:58 +11550309,"Prince, a Master of Playing Music and Distributing It",http://www.nytimes.com/2016/04/23/arts/music/prince-music-technology-distribution.html,67,12,erickhill,4/22/2016 16:24 +11079527,"Show HN: Revealytics, the easiest way to calculate your SaaS unit economics",https://revealytics.com,6,1,Trof,2/11/2016 11:37 +11673032,Lets build compilers,http://compilers.iecc.com/crenshaw/,6,1,pvsukale1,5/11/2016 6:35 +11804727,6 Big European Cities Have Plans to Establish Car-Free Zones in Central Areas,http://www.citylab.com/cityfixer/2015/10/6-european-cities-with-plans-to-go-car-free/411439/,4,2,mpweiher,5/31/2016 5:11 +11343248,I Owe My Career to an Iraqi Immigrant,https://medium.com/@azerbike/i-owe-my-career-to-an-iraqi-immigrant-2c075a495b25#.cyz6a1dl5,4,1,shade23,3/23/2016 10:27 +10496246,Go Will Dominate the Next Decade,https://www.linkedin.com/pulse/go-dominate-next-decade-ian-eyberg,3,1,scapbi,11/2/2015 23:41 +10279864,Epistemic learned helplessness (2013),http://squid314.livejournal.com/350090.html,130,56,ikeboy,9/25/2015 18:36 +10593378,The Smithsonian is using 3D printing to copy artifacts,http://www.theatlantic.com/magazine/archive/2015/07/art-forgery/395282/?single_page=true,6,1,quickfox,11/19/2015 7:57 +10599006,"Virtual Planes, Virtual Airports: Inside the World of VATSIM",http://www.rockpapershotgun.com/2015/11/18/vatsim/,52,18,danso,11/20/2015 1:31 +12099342,How a word sparked a four-year saga of climate fact-checking,https://theconversation.com/how-a-single-word-sparked-a-four-year-saga-of-climate-fact-checking-and-blog-backlash-62174,61,59,nl,7/15/2016 7:01 +11561207,Proving that Javas and Pythons sorting algorithm is broken,http://envisage-project.eu/proving-android-java-and-python-sorting-algorithm-is-broken-and-how-to-fix-it/#sec3,4,2,fforflo,4/24/2016 20:23 +11458024,Ask HN: Anyone want to help me make a social network for frequent flyers?,,1,2,ahacker1,4/8/2016 21:13 +10251079,Show HN: DMach Drum Machine for Android with Pure Data Sound Synthesis,https://github.com/simonnorberg/dmach,11,1,simonnorberg,9/21/2015 8:41 +10663740,Ask HN: Assume the universe is a simulation. Why is c the speed of light?,,2,3,vinaybn,12/2/2015 16:05 +12143770,Arguments Against the DMCA Section 1201 Lawsuit by the EFF,https://medium.com/@6StringMerc/arguments-against-the-dmca-section-1201-lawsuit-by-the-eff-b8d760de3fdf#.v29o749x3,3,2,6stringmerc,7/22/2016 14:38 +11424181,Reading an iOS Stack Trace,https://www.apteligent.com/developer-resources/reading-an-ios-stack-trace/,35,1,andrewmlevy,4/4/2016 18:31 +11074036,Too Much Freedom Is Dangerous: Understanding IE 11 CVE-2015-2419 Exploitation,http://blog.checkpoint.com/2016/02/10/too-much-freedom-is-dangerous-understanding-ie-11-cve-2015-2419-exploitation/,2,1,omriher,2/10/2016 16:51 +11465583,Embed Everything,https://medium.com/@david_bryant/embed-everything-9aeff6911da0#.nukw8bqip,11,1,stilliard,4/10/2016 9:56 +10977320,Ask HN: Hacker News Slack channel?,,1,4,jfornear,1/27/2016 0:18 +10306025,OS X El Capitan on the Mac App Store,https://itunes.apple.com/app/os-x-el-capitan/id1018109117?mt=12,130,148,andreasley,9/30/2015 18:25 +10914635,Reflection on Brent Yorgey's Haskell Class,http://limdauto.github.io/posts/2015-12-13-reflections-brent-yorgey-haskell-class.html,45,3,luu,1/16/2016 7:37 +11928605,Vice Hires Giant Bombs Austin Walker to Run New Gaming Site,https://variety.com/2016/digital/news/vice-austin-walker-giant-bomb-1201797909/,1,1,SeanBoocock,6/18/2016 13:55 +11182824,HN Office Hours with Jared Friedman and Trevor Blackwell,,93,146,snowmaker,2/26/2016 17:55 +10398741,Show HN: Ek one app all cabs,http://ekapp.co,6,3,nav,10/16/2015 12:11 +12571521,HP outrages printer owners after it blocks the use of cheap ink cartridges,http://www.smh.com.au/business/consumer-affairs/hp-outrages-printer-owners-after-it-blocks-the-use-of-cheap-ink-cartridges-by-stealth-20160921-grl6ea.html,32,11,colinprince,9/24/2016 16:27 +12089818,Generation of Over a Million of Watts of Power in the Volume of a Coffee Cup,http://brilliantlightpower.com/news-release-july-11-2016/,3,2,pcarbonn,7/13/2016 21:32 +10869745,Japan Keeps This Defunct Train Station Running for Just One Passenger,http://www.citylab.com/commute/2016/01/japan-keeps-this-defunct-train-station-running-for-just-one-passenger/423273/,606,191,hudibras,1/9/2016 2:13 +11356246,NASA Graphics Standards Manual (1976) [pdf],https://www.nasa.gov/sites/default/files/atoms/files/nasa_graphics_manual_nhb_1430-2_jan_1976.pdf,44,8,benbreen,3/24/2016 20:41 +11854129,Tinder for a11y color palettes,http://www.randoma11y.com,2,1,mrmrs,6/7/2016 12:59 +10763454,Remote Teams Are the Future but They Require Real Managers,http://read.reddy.today/read/3/remote-teams-are-the-future-but-they-require-real-managers,2,2,r2dnb,12/19/2015 13:03 +11945033,Why Did San Francisco Schools Stop Teaching Algebra in Middle School?,http://priceonomics.com/why-did-san-francisco-schools-stop-teaching/,63,90,impostervt,6/21/2016 11:59 +10183657,"Angie, a module-based Node.js webapp framework in ES6, enters its 0.4.0 release",https://github.com/benderTheCrime/angie,1,1,jgrosecl49,9/8/2015 0:33 +10445165,How to Memorize a Random 60-Bit String [pdf],http://www.isi.edu/natural-language/mt/memorize-random-60.pdf,21,6,dmckeon,10/24/2015 22:44 +12086022,Skype for Web [beta],https://web.skype.com/,13,2,valera_rozuvan,7/13/2016 13:40 +10256622,Don't use BTRFS for OLTP,http://blog.pgaddict.com/posts/friends-dont-let-friends-use-btrfs-for-oltp,18,13,mercurial,9/22/2015 4:26 +11595539,Game of Torrents and Data leaks,https://blog.binaryedge.io/2016/04/29/game-of-torrents-and-data-leaks/,6,1,balgan,4/29/2016 13:27 +12222338,"The new Seattle, where everything looks the same",http://crosscut.com/2015/04/the-new-seattle-where-everything-looks-the-same/,68,54,jseliger,8/3/2016 23:36 +10689237,"Melvil Dewey, Compulsive Innovator (2014)",http://americanlibrariesmagazine.org/2014/03/24/melvil-dewey-compulsive-innovator/,15,2,srikar,12/7/2015 13:26 +11189971,What Its Really Like to Risk It All in Silicon Valley,http://www.nytimes.com/2016/02/28/upshot/what-its-really-like-to-risk-it-all-in-silicon-valley.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=second-column-region®ion=top-news&WT.nav=top-news,1,2,szermer,2/28/2016 5:15 +11963983,Ask HN: What has machine learning done for YOU?,,7,2,spdustin,6/23/2016 20:18 +12124722,Probabilistic Filters By Example: Cuckoo Filter and Bloom Filters,https://bdupras.github.io/filter-tutorial/,134,25,rpcope1,7/19/2016 20:40 +10465791,The $300 Million Button (2009),https://www.uie.com/articles/three_hund_million_button/,2,2,hammock,10/28/2015 17:09 +10876730,"In Praise of Idleness, by Bertrand Russell",http://harpers.org/archive/1932/10/in-praise-of-idleness/?single=1,55,25,cardigan,1/10/2016 19:26 +10598732,Ask HN: Best way to learn async development?,,9,3,staticautomatic,11/20/2015 0:25 +10637316,'Li-fi 100 times faster than wi-fi',http://www.bbc.co.uk/news/technology-34942685,74,70,grahamel,11/27/2015 14:02 +12210629,Summary of Donella Meadows' Thinking in Systems (2009),http://www.consciouscapitalism.typepad.com/conscious-capitalism/2009/10/summary-of-thinking-in-systems-by-donella-meadows.html,95,25,musha68k,8/2/2016 15:26 +10736918,MIST FPGA-Based Amiga and Atari ST,http://harbaum.org/till/mist/index.shtml,34,14,doener,12/15/2015 10:16 +10287890,Hackathon prize suggestions?,,1,2,raynesio,9/27/2015 20:42 +12433612,No Space Left on Device,https://carlmastrangelo.com/blog/no-space-left-on-device,66,74,morecoffee,9/6/2016 4:09 +12555773,Rethinking madness: inside the world's oldest mental asylum,http://s.telegraph.co.uk/graphics/projects/madness-worlds-oldest-mental-asylum/index.html,25,3,pmcpinto,9/22/2016 10:16 +11957012,Emails: State Dept. scrambled on trouble on Clinton's server,http://bigstory.ap.org/article/7006105d422740f0b4b8675c90f9a154/emails-key-security-features-disabled-clintons-server,71,35,eplanit,6/22/2016 21:03 +10971368,Glittering Blue [video],https://glittering.blue/,2,1,bradyat,1/26/2016 1:42 +11478633,"Introducing Anima Engine: lite, performance-oriented game engine",http://anima-engine.org/blog/introducing-anima-engine/,3,1,dragostis,4/12/2016 11:36 +12219789,Wallarm (YC S16) Uses Incoming Hacker Attacks to Reveal Security Flaws,http://themacro.com/articles/2016/08/wallarm/,70,17,stvnchn,8/3/2016 17:31 +10799572,React/JavaScript fatigue,https://medium.com/@ericclemmons/javascript-fatigue-48d4011b6fc4,174,183,pbhowmic,12/28/2015 2:37 +11797922,Putting Love to the Stress Test,http://www.nytimes.com/2016/05/29/fashion/modern-love-tech-relationship-trial.html,14,8,dwynings,5/29/2016 19:52 +12045982,Support.fm: Crowdfunding LGBTQ bail,http://www.support.fm/,1,1,sftcore,7/6/2016 21:23 +11988490,Official release of multi-platform .NET,http://www.wired.com/2016/06/microsofts-open-source-love-affair-reaches-new-heights/,2,1,peter303,6/27/2016 18:51 +11238655,New darkest material created,https://www.youtube.com/watch?v=O0CYc_mC3Uo,1,1,petewailes,3/7/2016 13:12 +12502421,Plaster Perspectives on Magical Gems: Rethinking the Meaning of Magic (2015),https://antiquities.library.cornell.edu/gems/plaster-perspectives-on-magical-gems,7,1,diodorus,9/15/2016 0:16 +10977117,Chief of China's Stats Bureau Under Investigation,http://www.usnews.com/news/articles/2016-01-26/chief-of-chinas-stats-bureau-under-investigation,2,1,tokenadult,1/26/2016 23:37 +11846108,Show HN: New calendar app idea,http://www.oneviewcalendar.com,825,197,petermolyneux,6/6/2016 12:02 +11653122,The Absolutely True Story of a Real Programmer Who Never Learned C,https://medium.com/@wilshipley/the-absolutely-true-story-of-a-real-programmer-who-never-learned-c-210e43a1498b#.8vw9jyjry,7,2,phodo,5/8/2016 7:50 +11599083,Hillary Clinton and Electoral Fraud,https://medium.com/@spencergundert/hillary-clinton-and-electoral-fraud-992ad9e080f6,22,13,ericras,4/29/2016 22:08 +12365491,A short introduction to the MVVM-C design pattern,http://tech.trivago.com/2016/08/26/mvvm-c-a-simple-way-to-navigate/,56,32,andygrunwald,8/26/2016 11:35 +11771142,Adding Meta Information to Git Branches,https://iinteractive.com/notebook/2016/05/25/git-mo-meta.html,13,4,drgenehack,5/25/2016 16:47 +10303543,Show HN: The easiest A/B testing tool with full Google Analytics integration,http://www.changeagain.me/,4,2,changeagain_me,9/30/2015 12:59 +12545966,Beware: Windows 10 Signature Edition Blocks Installing Linux,http://fossboss.com/2016/09/21/windows-10-signature-edition-blocks-installing-linux/,344,68,mhsabbagh,9/21/2016 6:55 +11595153,Why is Amazon all of a sudden not re-investing all its profits?,https://earlymoves.com/2016/04/29/why-is-amazon-all-of-a-sudden-not-re-investing-all-its-profits/,159,114,marcelweiss,4/29/2016 12:12 +10734938,Technical debt: probably the main roadblack for machine learning to medicine,http://andrewtmckenzie.com/2015/12/14/technical-debt-probably-the-main-roadblack-in-applying-machine-learning-to-medicine/,4,2,porejide,12/15/2015 0:00 +10787972,Open Letter to Mozilla: Bring Back Persona,http://www.stavros.io/posts/open-letter-mozilla-bring-back-persona/,905,237,StavrosK,12/24/2015 12:38 +10444201,Net neutrality in the EU is only a few amendments away,https://savetheinternet.eu/,127,16,sbnnrd,10/24/2015 17:13 +11369653,Show HN: On-Demand Secure Private Networks Documentation,https://wormhole.network/docs/,17,11,NetStrikeForce,3/27/2016 11:37 +10282313,Russian Mythbusters Shoots an RPG at 45 Layers of Bulletproof Glass,http://motherboard.vice.com/read/the-russian-mythbusters-shoots-an-rpg-at-45-layers-of-bulletproof-glass?utm_source=mbtwitter,2,1,fezz,9/26/2015 6:21 +11582229,Ask HN: How Much Reliance on 3rd Party Tech Is Too Much?,,10,10,charliesdad,4/27/2016 16:59 +12516878,"As our population ages, how can we rein in rising costs?",http://qz.com/730594/as-our-population-ages-how-can-we-rein-in-rising-costs/?sr_source=lift_facebook,1,1,ryan_j_naughton,9/16/2016 19:59 +11745682,Milo: interactive way for young children to stay in touch with absent loved ones,https://www.vmbvoom.com/pitches/milo-1,1,1,jacobwilson,5/21/2016 18:43 +11347099,GNOME 3.20 released,https://www.gnome.org/news/2016/03/gnome-3-20-released/,7,1,ronjouch,3/23/2016 18:42 +10774171,What would a manhattan-like project cryptographic backdoor look like?,,3,4,blhack,12/21/2015 22:55 +10376184,New era beckons for supersonic air travel,http://www.theguardian.com/world/2015/oct/11/new-era-supersonic-air-travel-concorde,2,1,dnetesn,10/12/2015 18:24 +10650266,Bomr is a script that automatically removes UTF-8 BOMs from your files,https://github.com/jamesqo/bomr,2,2,opensourcedude,11/30/2015 16:44 +11696005,Show HN: Neural Network Evolution Playground with Backprop NEAT,http://blog.otoro.net/2016/05/07/backprop-neat/,73,7,hardmaru,5/14/2016 13:28 +11356623,Show HN: Find quality startup jobs in other countries,http://www.nativedock.com/,4,5,alexkehr,3/24/2016 21:33 +11489422,Ask HN: Does anyone use CSS Flexbox in production?,,2,2,pattle,4/13/2016 16:06 +12356320,Show HN: Medium's URL generation causes dupe HN submissions,https://hn.algolia.com/?query=Tim%20Cook&sort=byPopularity&prefix&page=0&dateRange=last24h&type=story,2,1,MaysonL,8/25/2016 1:06 +12473813,Coding Challenge for MI5,https://www.mi5.gov.uk/careers/opportunities/coding-challenge,76,37,BerislavLopac,9/11/2016 15:26 +11955771,Blix,,4,5,jojodmo,6/22/2016 18:04 +11472834,Campuses are places for open minds not where debate is closed down,http://www.theguardian.com/commentisfree/2016/apr/10/students-censorship-safe-places-platforming-free-speech?CMP=share_btn_tw,5,1,jseliger,4/11/2016 16:37 +12311529,Ask HN: What is the most useful script for your business or startup?,,65,50,david90,8/18/2016 10:50 +10534394,Ask HN: What would you tell your 20 something years old self?,,24,47,meta_pseudo,11/9/2015 17:31 +11952649,Don't let anyone overpay you,https://m.signalvnoise.com/bigger-prices-bigger-problems-72820249456f#.t13l8i2fg,18,7,infodroid,6/22/2016 10:10 +11563674,Why it's hard to write a dupefinder,http://rmlint.readthedocs.org/en/latest/cautions.html,90,44,SXX,4/25/2016 12:02 +12300765,Why trains suck in America,https://www.youtube.com/watch?v=mbEfzuCLoAQ&feature=youtu.be,7,4,Aaronontheweb,8/16/2016 21:25 +11763067,"Twilio ramps up mobile play with programmable SIMs for IoT, handsets with T-Mo",http://techcrunch.com/2016/05/24/twilio-ramps-up-mobile-play-with-programmable-sims-for-iot-and-handsets-with-t-mobile/?ncid=rss,101,36,coloneltcb,5/24/2016 16:44 +10636088,JS: Try to guess the output,https://mobile.twitter.com/malyw/status/670011691950874625,3,2,fspeech,11/27/2015 6:06 +10431787,FCC Releasing Data to Support Robocall-Blocking Technologies,https://www.fcc.gov/document/fcc-releasing-data-support-robocall-blocking-technologies,2,1,gvb,10/22/2015 12:28 +10356659,Archos to give away 200k devices in Europe to create PicoWAN network for IoT,http://www.archos.com/us/picowan/,29,7,Tepix,10/8/2015 22:05 +10373471,Show HN: We want to make websites places to meet people,,5,3,DerKobe,10/12/2015 9:43 +11453524,Erlang 19.0 Garbage Collector,https://www.erlang-solutions.com/blog/erlang-19-0-garbage-collector.html,261,21,bandris,4/8/2016 9:26 +10204296,"FBI, intel chiefs decry deep cynicism over cyber spying programs",http://arstechnica.com/tech-policy/2015/09/fbi-intel-chiefs-decry-deep-cynicism-over-cyber-spying-programs/,3,3,dean,9/11/2015 15:43 +11183086,Don't let a single day pass without doing something towards your goal,https://www.nonzeroday.com/philosophy,201,96,nonzeroday,2/26/2016 18:33 +12373222,"In Mathematics, Mistakes Arent What They Used to Be (2015)",http://nautil.us/issue/24/error/in-mathematics-mistakes-arent-what-they-used-to-be,106,54,dnetesn,8/27/2016 17:18 +12560859,"Nearly 14,000 Uber and Lyft Drivers Sign Union Cards in New York",https://www.buzzfeed.com/coralewis/nearly-14000-uber-and-lyft-drivers-sign-union-cards?utm_term=.hoPWe0qYz#.fxW24QaO8,9,3,mrjaeger,9/22/2016 22:28 +12396801,Elsevier Awarded U.S. Patent for Online Peer Review System and Method,http://www.infodocket.com/2016/08/30/elsevier-awarded-u-s-patent-for-online-peer-review-system-and-method/,2,2,p4bl0,8/31/2016 8:26 +12099746,Instant product mockup generator without photoshop,https://getmocky.com,5,1,AlisterK,7/15/2016 9:23 +10632925,Show HN: HORU The age guessing game,http://horu.io,7,8,pezza3434,11/26/2015 13:44 +11921603,Ask HN: Resources for web design inspiration?,,1,1,sarreph,6/17/2016 9:45 +10774865,SpaceX launch webcast: Orbcomm-2 Mission [video],http://spacex.com/webcast/,1284,370,clessg,12/22/2015 0:58 +10278166,How your history knowledge can save you money,https://medium.com/@tripdelta/how-your-history-knowledge-can-save-you-money-97e4df93598d,3,1,dribel,9/25/2015 14:02 +12420147,People in Los Angeles Are Getting Rid Of Their Cars,https://www.buzzfeed.com/priya/people-in-los-angeles-are-getting-rid-of-their-cars,234,244,andrewfromx,9/3/2016 17:40 +10372988,Ask HN: Which open source projects are tackling social problems out there?,,2,2,gpestana,10/12/2015 7:17 +10978590,Wikipedia editors in no confidence vote,http://www.bbc.co.uk/news/technology-35411208,3,1,okasaki,1/27/2016 6:26 +12411282,"Hacker Guccifer, who exposed Clintons use of private e-mail, gets 52 months",http://arstechnica.com/tech-policy/2016/09/hacker-guccifer-who-exposed-clintons-use-of-private-e-mail-gets-52-months/,2,1,giis,9/2/2016 6:35 +11170637,Ghost Words and Mountweazels: Mistakes in Dictionaries and Encyclopedias,http://www.laphamsquarterly.org/roundtable/ghost-words-and-mountweazels,19,5,benbreen,2/24/2016 22:09 +10975454,Don't use the new prime number for RSA encryption,http://blogs.scientificamerican.com/roots-of-unity/psa-do-not-use-the-new-prime-number-for-rsa-encryption/,20,7,k4jh,1/26/2016 19:44 +10212132,Ask HN: How can I help others?,,4,5,boogdan,9/13/2015 17:44 +12496671,"I Was a CIA Whistleblower, Now I'm a Black Inmate",https://theintercept.com/2016/09/13/i-was-a-cia-whistleblower-now-im-a-black-inmate-heres-how-i-see-american-racism/,153,59,3chelon,9/14/2016 13:34 +11094142,Philosophies for Software Engineers,http://softwareengineeringdaily.com/2016/02/12/10-philosophies-for-developers/,79,86,crablar,2/13/2016 14:57 +11433099,Revenue on Medium,https://medium.com/the-story/revenue-on-medium-5e7e6218f70c#.ibkwilzmu,78,28,brandonlipman,4/5/2016 18:36 +11766337,What do you think of our website?,http://condorly.com/,2,5,Condorly,5/24/2016 23:11 +10338095,Show HN: Find rental flats based on commute time to your workplace (Switzerland),http://wonsch.ch/,78,50,pierre,10/6/2015 11:25 +11326316,Ask HN: What Are Good Product Manager Qualities,,4,1,m1117,3/21/2016 5:00 +11679464,The next hot job in Silicon Valley is for poets,https://www.washingtonpost.com/news/the-switch/wp/2016/04/07/why-poets-are-flocking-to-silicon-valley/,1,1,lahdo,5/11/2016 21:29 +10560557,"MicroPython 1.5 (small Python implementation for IoT, etc.)",https://mail.python.org/pipermail/python-list/2015-November/698784.html,5,7,pfalcon,11/13/2015 16:12 +12327917,Why on Earth Is Google Building a New Operating System from Scratch?,https://www.fastcompany.com/3063006/why-on-earth-is-google-building-a-new-operating-system-from-scratch,4,2,huac,8/20/2016 19:08 +10224065,Evernote Founder (and Former CEO) Phil Libin Joins General Catalyst Partners,http://blogs.wsj.com/digits/2015/09/15/former-evernote-ceo-phil-libin-heads-to-vc-firm-general-catalyst/,3,1,sahara,9/16/2015 0:54 +10533306,Ask HN: Is there a masterbation-free site where I can have random conversations?,,16,28,notetoself,11/9/2015 14:54 +10614073,The Hierarchical Asynchronous Circuit Kompiler Toolkit (HACKT),http://www.csl.cornell.edu/~fang/hackt/,25,1,ch,11/23/2015 11:52 +10886317,Show HN: Fisherman Plugin manager and CLI toolkit for fish shell,http://fisherman.sh/,39,7,bucaran,1/12/2016 9:12 +10799124,How bad are things?,http://slatestarcodex.com/2015/12/24/how-bad-are-things/,264,118,lkrubner,12/27/2015 23:33 +12153372,Recasting Silicon Valleys role in society,https://techcrunch.com/2016/07/23/recasting-silicon-valleys-role-in-society/,28,42,mathattack,7/24/2016 14:19 +10460145,Ask HN: Exciting things to study(in CS) to break out of plateau?,,2,1,rayalez,10/27/2015 18:37 +12492050,Biz guy with good idea looking for someone to do all the work,,2,10,sixQuarks,9/13/2016 20:43 +11716540,Building Database Driven RESTFUL API Applications with Flask and Angularjs,http://techarena51.com/index.php/how-to-build-database-driven-crud-applications-with-flask-api-and-angularjs-ng-resource/,4,2,leog7,5/17/2016 19:24 +12337707,"Show HN: Introducing Fr8, an Open-Source SaaS Integration Service",http://blog.fr8.co/2016/08/22/fr8-launches-as-an-open-source-project-2/,23,6,alexed,8/22/2016 17:03 +10345273,Reddit Is Working on a New Front Page Algorithm,http://motherboard.vice.com/read/reddit-admits-its-front-page-is-broken-is-working-on-an-entirely-new-algorithm?try=2,36,40,r721,10/7/2015 11:03 +10398635,"Record and share terminal sessions A lightweight, purely text-based approach",http://www.asciinema.org,58,14,dutchbrit,10/16/2015 11:36 +12163462,Ask HN: Building an email killer,,4,3,paekut,7/26/2016 5:11 +12558291,Show and Tell: Image captioning open sourced in TensorFlow,https://research.googleblog.com/2016/09/show-and-tell-image-captioning-open.html,135,26,runesoerensen,9/22/2016 17:04 +12480334,I recently became plus size. Shopping for clothes shouldn't be this miserable,http://www.vox.com/2016/9/12/12863526/plus-size-womens-clothes-tim-gunn-shopping-miserable,4,1,dwaxe,9/12/2016 15:10 +10474812,A Genocide in Colonial Africa Finally Gets Recognition,http://www.smithsonianmag.com/history/brutal-genocide-colonial-africa-finally-gets-its-deserved-recognition-180957073/,65,15,kafkaesq,10/29/2015 22:24 +11001160,Show HN: Space Shooter in QBasic,https://github.com/strathausen/qtrek.bas,79,26,Jean-Philipe,1/30/2016 8:54 +10397112,Something in space that looks like it could have been made by aliens,http://www.businessinsider.com/astronomers-have-found-a-mysterious-alien-object-near-a-distant-star-2015-10,5,2,ourmandave,10/16/2015 2:13 +11263742,America's High School Graduates Look Like Other Countries' High School Dropouts,http://wamc.org/post/americas-high-school-graduates-look-other-countries-high-school-dropouts,297,360,tokenadult,3/11/2016 0:36 +10757669,"Smears, Multiples and Other Animation Gimmicks",http://animationsmears.tumblr.com,6,1,GuiA,12/18/2015 10:10 +10777948,Understanding JVM Internals,http://www.cubrid.org/blog/dev-platform/understanding-jvm-internals/,8,1,ezhil,12/22/2015 14:39 +10470210,"This $5,900 desk lets you lay down while working",http://www.dailydot.com/technology/altwork-station-desk-laying-down/,2,3,m-i-l,10/29/2015 11:18 +10352002,Ask HN: Am I going to hell for doing this?,,1,1,amInvestigator,10/8/2015 11:31 +10923395,How to Profit from Rising Rents: Build Apartments,http://www.wsj.com/articles/how-to-profit-from-rising-rents-build-apartments-1452614388?mod=e2fb,37,28,prostoalex,1/18/2016 9:12 +10235347,Pay for Uber with Bitcoin,https://bitcoinbuilder.com/uber/,103,53,jschwartz11,9/17/2015 18:54 +10293490,FDA Phonetic and Orthographic Computer Analysis Program,http://www.fda.gov/Drugs/ResourcesForYou/Industry/ucm400127.htm,1,1,jcr,9/28/2015 21:56 +11626758,An elementary treatment of the Feynman sprinkler,http://fermatslibrary.com/p/38ba1a58,4,1,eusebio,5/4/2016 7:20 +11519651,Gentlest Introduction to Tensorflow,https://medium.com/@khor/the-gentlest-introduction-to-tensorflow-248dc871a224,2,1,nethsix,4/18/2016 13:19 +12346792,New Tesla Model S Now the Quickest Production Car,https://www.tesla.com/blog/new-tesla-model-s-now-quickest-production-car-world,269,209,obi1kenobi,8/23/2016 19:34 +10305936,IO Monad Realized in 1965 (2012),http://okmij.org/ftp/Computation/IO-monad-history.html,42,8,dgraunke,9/30/2015 18:15 +10343296,California Is Building the Largest Solar Desalination Plant in the U.S.,http://www.fastcoexist.com/3051087/california-is-building-the-countrys-largest-solar-desalination-plant,44,11,cryptoz,10/7/2015 0:03 +12415739,Destroy Windows Spying tool,https://github.com/Nummer/Destroy-Windows-10-Spying,99,99,walterbell,9/2/2016 19:45 +11042404,McDonald's giving away books in Happy Meals,http://www.usatoday.com/story/money/nation-now/2016/02/04/mcdonalds-happy-meals-toys-prize-books/79806266/,4,2,dnetesn,2/5/2016 16:21 +10418596,Agile Failure Patterns in Organizations,https://age-of-product.com/agile-failure-patterns-in-organizations/,58,83,swolpers,10/20/2015 11:50 +10183911,"Malware Found Pre-Installed on Xiaomi, Huawei, Lenovo Phones [pdf]",https://public.gdatasoftware.com/Presse/Publikationen/Malware_Reports/G_DATA_MobileMWR_Q2_2015_EN.pdf,146,19,howaboutit,9/8/2015 2:21 +10531833,Old Techies Never Die; They Just Cant Get Hired as an Industry Moves On (2012),http://www.nytimes.com/2012/01/29/us/bay-area-technology-professionals-cant-get-hired-as-industry-moves-on.html,124,132,luu,11/9/2015 8:00 +12095688,"Facebook is slightly less white, but not any darker",https://techcrunch.com/2016/07/14/facebook-diversity-report-code-org/,2,2,kartD,7/14/2016 17:25 +10553003,"Explorable Visual Analytics: Visualize, Understand Large Complex Datasets",http://www.cs.cmu.edu/news/web-tool-helps-people-visualize-make-sense-large-complex-datasets,20,4,fitzwatermellow,11/12/2015 13:36 +10345638,Cisco security researchers disable big distributor of ransomware,http://www.reuters.com/article/2015/10/06/us-ransomware-cisco-idUSKCN0S01F020151006,34,6,uptown,10/7/2015 12:49 +11688679,Coding fonts from FontLibrary.org,https://fontlibrary.org/en/search?category=monospaced,3,2,tatx,5/13/2016 4:43 +10747461,Who Will Choose AIs Ethical Code?,http://www.technologyreview.com/news/544556/what-will-it-take-to-build-a-virtuous-ai/,1,6,cpeterso,12/16/2015 21:24 +11308836,Silicon Valley May Want MBAs More Than Wall Street Do,http://www.bloomberg.com/news/articles/2016-03-17/silicon-valley-mba-destination,1,1,petethomas,3/18/2016 0:21 +11328143,Open-source bulk MTA for .Net,http://manta.io/,7,2,aidandelaney,3/21/2016 14:12 +12117792,Atom-sized storage could change the face of data and memory,http://mashable.com/2016/07/18/atomic-memory-study-nature/#UQXK3Z3vzuq6,3,1,jonbaer,7/18/2016 20:14 +10528791,Operating the Lisp Machine (1981) [pdf],http://bitsavers.informatik.uni-stuttgart.de/pdf/symbolics/LM-2/Operating_the_Lisp_Machine.pdf,116,41,vezzy-fnord,11/8/2015 15:53 +10998485,Fine Bros Entertainment attempting to trademark the word react,"http://www.tmfile.com/owner/fi/fine-brothers-properties,inc28.php",3,1,aerovistae,1/29/2016 21:03 +11635683,Everybody gets WebSockets,https://blog.cloudflare.com/everybody-gets-websockets/,193,63,jgrahamc,5/5/2016 13:04 +11772438,"Jessamyn West, Technology Lady (2015)",https://medium.com/@jessamyn/transcription-jessamyn-west-technology-lady-6c6f5fefa507#.s75d93ntw,1,1,Tomte,5/25/2016 19:33 +11429590,"Developers, Being Treated Poorly? You Are Not Alone",http://fredwu.me/post/142289849178/developers-being-treated-poorly-you-are-not,223,251,fredwu,4/5/2016 11:42 +11238859,Coffee Drip Printer,https://cias.rit.edu/faculty-staff/256/faculty/1186,180,27,duck,3/7/2016 13:59 +10215690,"Touring the Broad Art Museum, L.A.s Newest Architectural Wonder",http://www.bloomberg.com/news/photo-essays/2015-09-13/touring-the-broad-art-museum-l-a-s-newest-architectural-wonder,22,6,adventured,9/14/2015 15:57 +11241073,MaskedVByte: SIMD-accelerated VByte,http://maskedvbyte.org/,28,3,ingve,3/7/2016 19:44 +12277552,Introducing Quil: A Practical Quantum Instruction Set Architecture,https://medium.com/@rigetticomputing/introducing-quil-a-practical-quantum-instruction-set-architecture-a684f0590a0c#.vgbavkqvi,44,3,reikonomusha,8/12/2016 18:03 +10500087,Ask HN: In what order did the best and worst periods in your career come?,,30,22,vonklaus,11/3/2015 15:20 +10929562,Could this solve Elon's drone ship problems?,https://www.reddit.com/r/gifs/comments/41mehk/could_this_solve_elons_drone_ship_problems_xpost/,3,1,doczoidberg,1/19/2016 9:31 +12198876,Ask HN: Spending my free time in video games. It's eating me. Suggestions?,,18,41,riotvan,7/31/2016 21:09 +10270826,Open source Slack-alternative adopts markdown,http://www.mattermost.org/open-source-slack-alternative-adopts-markdown/,2,2,it33,9/24/2015 10:29 +11264005,Image Processing 101,https://codewords.recurse.com/issues/six/image-processing-101,367,41,abecedarius,3/11/2016 1:26 +10216987,Lavaboom is shutting down,https://lavaboom.com/,5,1,tu7001,9/14/2015 19:35 +10487622,Model S owners are already reporting that Teslas Autopilot is self-improving,http://electrek.co/2015/10/30/the-autopilot-is-learning-fast-model-s-owners-are-already-reporting-that-teslas-autopilot-is-self-improving/,19,3,swalsh,11/1/2015 19:02 +10626387,Vulkan API: Scaling to Multiple CPU Threads,http://blog.imgtec.com/powervr/vulkan-scaling-to-multiple-threads,3,1,alexvoica,11/25/2015 10:08 +10839519,Dropbox scores patent for peer to peer file syncing,https://torrentfreak.com/dropbox-scores-patent-for-peer-to-peer-syncing-160103/,2,1,bankim,1/4/2016 23:14 +12442217,The enigma machine takes a quantum leap,http://phys.org/news/2016-09-enigma-machine-quantum.html,2,1,dnetesn,9/7/2016 10:52 +12292074,Ask HN: How has your life changed since working remotely/digital nomading,,5,1,tsaprailis,8/15/2016 17:49 +10649016,The Timbre Podcast Reviews and Discussion,http://www.thetimbre.com,7,2,ch,11/30/2015 12:27 +11396626,Netpbm Program Directory,http://netpbm.sourceforge.net/doc/directory.html,2,1,pgtan,3/31/2016 12:25 +10647162,Vectr Ephemeral Q&A App,http://www.vectrapp.com,9,3,vectrapp15,11/30/2015 1:56 +10393509,We ran a private crowdfunding campaign and it worked,https://medium.com/@jerols/6-things-we-learned-from-running-a-private-crowdfunding-campaign-33ac835de4dd,2,1,jerols,10/15/2015 14:55 +10277245,BC Startups: The Government Is Not Your Friend,https://medium.com/@benjaminfox/bc-startups-the-government-is-not-your-friend-195ea432e40f,72,28,kiwidrew,9/25/2015 10:19 +10223771,Young people on antidepressants more likely to commit violent crime,http://www.telegraph.co.uk/news/health/11866077/Antidepressants-raise-risk-of-committing-violent-crime.html,2,2,001sky,9/15/2015 23:30 +12464820,Feinstein-Burr 2.0: The Crypto Backdoor Bill Lives On,https://www.justsecurity.org/32818/feinstein-burr-2-0-crypto-backdoor-bill-lives/,59,9,hackuser,9/9/2016 18:26 +12013398,Tesla's Autopilot involved in first autonomous car fatality: Factors explained,http://robohub.org/man-dies-while-driven-by-tesla-autopilot/,14,4,hallieatrobohub,7/1/2016 2:02 +11599055,Hillary Clinton and Electoral Fraud,https://medium.com/@spencergundert/hillary-clinton-and-electoral-fraud-992ad9e080f6#.nsfpqoq75,24,10,DamienSF,4/29/2016 22:02 +10326450,Web Fonts Collateral Damage of Ad Blockers,http://miranj.in/blog/2015/collateral-damage,127,147,morisy,10/4/2015 4:27 +11280278,Ask HN: What percent of your income do you spend at Amazon?,,2,1,peterchane,3/14/2016 0:51 +10181920,What Functional Programming Is and Why It Makes You Better,http://blog.functionalworks.com/2015/08/04/whatfpisandwhymakesbetter/,10,2,joshuaFW,9/7/2015 16:03 +10776970,Hackathon Announcement,http://hck.re/NVhYnG,2,1,syshac,12/22/2015 10:56 +10981220,Introducing Starry (ex-Aereo),https://starry.com,21,5,spmurrayzzz,1/27/2016 17:06 +10289484,"The GhostWriter, a JavaScript 2D Game with Canvas",http://codepen.io/marco-ponds/pen/gawVZY,10,6,marcoponds,9/28/2015 9:02 +10706896,MIT Alumni rival economic impact of Russia,http://news.mit.edu/2015/report-entrepreneurial-impact-1209,3,1,xstephen95x,12/9/2015 21:31 +12136042,5 simple GDB tricks that will change your life,http://undo.io/five-tricks/become-gdb-power-user/,1,1,DebugN,7/21/2016 11:05 +11527668,Azure Container Service is now generally available,https://azure.microsoft.com/en-us/blog/azure-container-service-is-now-generally-available/,148,32,CoreySanders,4/19/2016 15:33 +11058395,Barcode attack technique (Badbarcode),http://en.wooyun.io/2016/01/28/Barcode-attack-technique.html,5,1,dsr12,2/8/2016 14:56 +12295538,Economic Space Agency (ecsa.io) Software Engineer,,2,1,vzenn,8/16/2016 4:28 +10346811,Amazon QuickSight Business Intelligence by AWS,https://aws.amazon.com/quicksight/,344,147,polmolea,10/7/2015 16:05 +11536659,If Youre Building a Startup You Need to Move to Phoenix (Not Silicon Valley),http://thoughtcatalog.com/daehee-park-jt-marino/2016/04/if-youre-building-a-startup-you-need-to-move-to-phoenix-not-silicon-valley/,9,1,pepsimaxxx,4/20/2016 18:35 +10817088,How Outernet is bringing free internet to the world's poor,http://www.wired.co.uk/magazine/archive/2016/01/start/outernet-satellites-free-developing-world-content,25,5,elfalfa,12/31/2015 10:31 +10762153,Call Off the Bee-Pocalypse: US Honeybee Colonies Hit a 20 Year High,https://www.washingtonpost.com/news/wonk/wp/2015/07/23/call-off-the-bee-pocalypse-u-s-honeybee-colonies-hit-a-20-year-high/,3,1,JacobAldridge,12/19/2015 1:19 +12167136,How to search for restaurants along your route?,,3,7,smangayy,7/26/2016 17:10 +10923510,Cancer treatment for MS patients gives 'remarkable' results,http://www.bbc.co.uk/news/health-35065905,11,9,k-mcgrady,1/18/2016 9:52 +11503268,Apple found $40M in gold from used computers and phones,http://alexkehr.com/apple-gold/,4,1,alexkehr,4/15/2016 10:22 +11637430,AirBnBWhileBlack hashtag highlights potential racial bias on rental app,https://www.theguardian.com/technology/2016/may/05/airbnbwhileblack-hashtag-highlights-potential-racial-bias-rental-app,17,9,i3rdna,5/5/2016 16:20 +11470709,Cellebrite thinks it's close to hacking iPhone 6,http://www.cultofmac.com/422444/iphone-5c-hackers-think-theyre-close-to-cracking-iphone-6/?utm_campaign=iphone-5c-hackers-think-theyre-close-to-cracking-iphone-6&utm_medium=twitter&utm_source=twitter,1,1,sixstringtheory,4/11/2016 11:01 +11787228,The Life of a Lichenologist,http://www.theatlantic.com/science/archive/2016/05/life-of-a-lichenologist/482157/,39,10,objections,5/27/2016 16:48 +11459299,Perl 6 Is Slower Than My Fat Momma,http://blogs.perl.org/users/zoffix_znet/2016/04/perl-6-is-slower-than-my-fat-momma.html,16,16,bane,4/9/2016 0:47 +10801741,Ask HN: Arduino or Raspberry PI for teenager?,,3,1,tmaly,12/28/2015 16:05 +11016409,"Ask HN: What (obscure?) areas of tech are engaging, sane, and incredibly stable?",,6,4,i336_,2/1/2016 23:10 +10559090,Indoor Google Street View of the British Museum,https://www.google.com/culturalinstitute/u/0/asset-viewer/british-museum/AwEp68JO4NECkQ,74,18,DiabloD3,11/13/2015 10:45 +10265167,Ask HN: What Hard Problems in the World Still Need Solving?,,2,1,irl_zebra,9/23/2015 14:29 +10326944,Finding Good Engineers Isn't Hard,https://blog.orangecaffeine.com/finding-good-engineers-isn-t-hard-3ab47528b5aa,3,1,ceekay,10/4/2015 8:42 +11750003,TOTP SSH port fluxing,https://blog.benjojo.co.uk/post/ssh-port-fluxing-with-totp,133,58,benjojo12,5/22/2016 19:56 +12210475,Hove bar blocks mobile phone signal to be more social,http://www.bbc.co.uk/news/technology-36954687,1,1,grahamel,8/2/2016 15:07 +10258240,An open source Slack clone written in Golang and React,https://github.com/mattermost/platform,81,10,ghh,9/22/2015 13:01 +12327105,The Apple-Google shift,http://www.elliotjaystocks.com/blog/the-apple-google-shift/,1,1,ingve,8/20/2016 15:58 +11921828,Dennis Ritchie hated const and volatile with a passion,https://www.lysator.liu.se/c/dmr-on-noalias.html,1,1,ltcode,6/17/2016 10:43 +10368120,An Ecomodernist Manifesto,http://www.ecomodernism.org/manifesto-english/,38,31,dtawfik1,10/11/2015 4:56 +11846813,Singularity Is Near Full Documentary Michio Kaku Ray Kurzweil,https://www.youtube.com/watch?v=8CSNmrunCnA,27,7,t23,6/6/2016 14:03 +11140981,555 timer teardown: inside the world's most popular IC,http://www.righto.com/2016/02/555-timer-teardown-inside-worlds-most.html,318,59,dezgeg,2/20/2016 17:29 +10969447,"That Plane Overhead: Starring Our Friends SDR, ADS-B, I2C and KLGA",http://jeremybmerrill.com/blog/2016/01/flyover.html,100,16,bentaber,1/25/2016 19:48 +11572976,JavaScript has beguiled the current generation of software developers,https://medium.com/javascript-non-grata/the-lie-that-has-beguiled-a-generation-of-developers-1b33e82de94f#.pcxol3uhd,44,89,wodahs02,4/26/2016 16:01 +10424922,You should check e-mail on a schedule,https://www.linkedin.com/pulse/productivity-hacks-want-more-productive-never-touch-things-bradberry,2,1,ColinWright,10/21/2015 12:23 +12542701,Claude E. Shannon A Goliath Amongst Giants,https://www.bell-labs.com/claude-shannon/,28,2,zw123456,9/20/2016 19:47 +10447559,Urbit and the impatience principle,https://dividuals.wordpress.com/2015/10/23/urbit-and-the-impatience-principle/,3,1,urbit,10/25/2015 17:32 +11896385,MacOS Sierra Apple,http://www.apple.com/macos,15,1,benigeri,6/13/2016 19:01 +12125978,Ask HN: Great coding stories,,17,10,anfroid555,7/20/2016 0:25 +10699705,Twitter is monkeying with the order of tweets in timelines,http://techcrunch.com/2015/12/08/twitter-is-monkeying-around-with-the-order-of-tweets-in-your-timeline/,92,74,qzervaas,12/8/2015 21:32 +12414480,Photo of Football Star Sitting with Boy Eating Alone at School Charms Internet,http://www.nytimes.com/2016/09/02/us/photo-of-fsu-football-star-sitting-with-boy-eating-alone-at-florida-school-charms-internet.html,1,2,helloworld,9/2/2016 17:04 +11370435,"Safety Check turned on after Lahore explosion, for many people far from Pakistan",http://www.independent.co.uk/life-style/gadgets-and-tech/news/facebook-safety-check-turned-on-after-lahore-explosion-sending-notifications-to-many-people-far-from-a6955476.html,7,2,ncw96,3/27/2016 16:14 +12163857,The DAO attacker has withdrawn his funds,http://gastracker.io/addr/0x304a554a310c7e546dfe434669c62820b7d83490,5,2,TekMol,7/26/2016 7:14 +10653375,Proposal to build electrical pylons as statues,http://www.choishine.com/Projects/giants.html,34,16,bootload,12/1/2015 2:40 +11669768,Ask dang: How many HN comments per day do you read?,,118,99,andreygrehov,5/10/2016 19:15 +10655689,The Imperfect World of A/B Testing Selection,http://engineering.simondata.com/the-imperfect-world-of-ab-selection/,29,6,brensudol,12/1/2015 14:53 +10738057,Show HN: Build 3D CSS transforms visually with Webflow,http://3d-transforms.webflow.com/?hn,2,1,callmevlad,12/15/2015 15:00 +12454901,Were in the Middle of a Data Engineering Talent Shortage,https://blog.stitchdata.com/new-research-were-in-the-middle-of-a-data-engineering-talent-shortage-bdd59673608c,143,159,hankmh,9/8/2016 17:09 +11967054,The Surprising Relevance of the Baltic Dry Index,http://www.newyorker.com/business/currency/the-surprising-relevance-of-the-baltic-dry-index?¤tPage=all,69,46,kawera,6/24/2016 6:07 +10760788,Emacs Lisp Animations,http://dantorop.info/project/emacs-animation/,2,1,sea6ear,12/18/2015 20:42 +10364793,Dark Castle and Macintosh System 6 Emulator,https://jamesfriend.com.au/pce-js/macplus-darkcastle/,79,21,Bud,10/10/2015 7:18 +10892737,Ever been lonely working on a distributed startup team?,,7,1,msbowersox,1/13/2016 7:01 +10927934,PyVideo is closing down,http://bluesock.org/~willkg/blog/pyvideo/status_20160115.html,3,1,gamesbrainiac,1/18/2016 23:56 +12548488,"'Mr. Robot' may be fiction, but its hacking plots are all too real",http://www.recode.net/2016/9/20/12983780/mr-robot-may-be-fiction-but-its-hacking-plots-are-all-too-real,187,169,gvb,9/21/2016 14:34 +11570690,Why I'm addicted talking to my computer,https://medium.com/truth-labs/rethinking-voice-search-2496640fdec2#.k5dt61wnh,3,1,endymi0n,4/26/2016 10:28 +11446755,"Infographic: E-invoicing, a Beginners Guide",https://www.zervant.com/en/news/infographic-beginners-guide-e-invoicing/,3,1,juhani,4/7/2016 12:43 +10217486,Show HN: Dungeon generator in you browser,https://piotr-j.github.io/dungen/dungen/,6,1,piotr-j,9/14/2015 21:11 +12340017,Pros and Cons in Using JSON Web Tokens (JWT),https://medium.com/@rahulgolwalkar/pros-and-cons-in-using-jwt-json-web-tokens-196ac6d41fb4,2,1,rahulgolwalkar,8/22/2016 22:51 +10937693,A Guide to Seed Fundraising (Free 10 Day Email Course),http://gohighbrow.com/portfolio/a-guide-to-seed-fundraising/,3,2,gohighbrow,1/20/2016 12:53 +10982275,Early antibiotic use 'may predispose children to weight gain and asthma',http://www.theguardian.com/society/2016/jan/26/early-antibiotic-use-may-predispose-children-to-weight-gain-and-asthma,88,61,junto,1/27/2016 19:13 +11926841,Show HN: Decentralized Anonymous Court for TheDAO,http://orcarium.com/,4,2,ex3ndr,6/18/2016 3:05 +11919783,"Atom z8350 x86-64 SBC for embedded projects, $99",http://up-shop.org/up-boards/2-up-board-2gb-16-gb-emmc-memory.html,1,3,walrus01,6/16/2016 23:39 +11439441,Ask HN: Why are clickbait titles bad?,,1,5,luchadorvader,4/6/2016 15:34 +11461384,Qualcomm server chips now available to ARM developers through cloud service,http://www.infoworld.com/article/3041941/servers/qualcomm-server-chips-now-available-to-arm-developers-through-cloud-service.html,9,2,jbott,4/9/2016 14:34 +10711084,What to do when employees quit,https://www.groovehq.com/blog/what-to-do-when-employees-quit,65,55,AliCollins,12/10/2015 15:33 +11073966,Meatier A Meteor alternative,https://github.com/mattkrick/meatier,137,44,mikexstudios,2/10/2016 16:44 +10612720,On ad-supported websites from a developers perspective,https://medium.com/thoughts-on-media/how-ad-supported-websites-really-work-4bf3efb83fdd,42,7,awwstn,11/23/2015 3:31 +11203534,(Slide) Latest UI Trends and Best Practices,http://www.slideshare.net/UXAlive/2015-ui-trends,6,4,mtufekyapan,3/1/2016 16:05 +12104174,Pokemon Go and Digital Privacy,http://www.mikadosoftware.com/articles/PokemonGoAndPrivacy,2,1,lifeisstillgood,7/15/2016 22:15 +12262390,A Plan to Save a Man's Life by Head Transplant,http://www.theatlantic.com/magazine/archive/2016/09/the-audacious-plan-to-save-this-mans-life-by-transplanting-his-head/492755/?single_page=true,12,6,mimbs,8/10/2016 15:19 +11290227,Google to Urge Congress to Help Get Self-Driving Cars on Roads,http://www.nytimes.com/reuters/2016/03/14/technology/14reuters-google-selfdrivingcar-congress.html,1,1,decampj4,3/15/2016 15:14 +12188943,Obtaining Wildcard SSL Certificates from Comodo via Dangling Markup Injection,https://thehackerblog.com/keeping-positive-obtaining-arbitrary-wildcard-ssl-certificates-from-comodo-via-dangling-markup-injection/index.html,258,58,pfg,7/29/2016 18:41 +11229375,The Disney Lion King Disaster (2013),http://www.alexstjohn.com/WP/2013/01/04/the-disnesy-disaster/,35,10,sdrothrock,3/5/2016 13:02 +11754448,Shirky: Ontology is Overrated,http://shirky.com/writings/ontology_overrated.html,3,1,Tomte,5/23/2016 15:26 +12193398,Debian .onion services,https://onion.debian.org/,82,18,ashitlerferad,7/30/2016 15:36 +11343633,Akin's Laws of Spacecraft Design,http://spacecraft.ssl.umd.edu/akins_laws.html,240,70,khet,3/23/2016 12:01 +10529564,Missile in sky spooks California,http://www.bbc.co.uk/news/world-us-canada-34759177,5,1,gloves,11/8/2015 19:45 +12159242,The Psychology of Human Misjudgment (2005) [pdf],http://web.archive.org/web/20151004200748/http://law.indiana.edu/instruction/profession/doc/16_1.pdf,178,39,atomroflbomber,7/25/2016 15:17 +10248773,Show HN: Hacker News Simulator,http://news.ycombniator.com/,572,163,orf,9/20/2015 19:50 +10496721,"Be Suspicious of Online Movie Ratings, Especially Fandangos",http://fivethirtyeight.com/features/fandango-movies-ratings/?ex_cid=538twitter,3,1,aaronbrethorst,11/3/2015 1:19 +11591382,How Invoiceable is now invoicely (and how they baited and switched),,4,7,jrs235,4/28/2016 19:34 +10751833,Show HN: Jeopractice A Jeopardy flashcard game using 200k past clues,http://www.jeopractice.com,16,3,brensudol,12/17/2015 15:07 +10723856,Winston Churchill and Islam,http://www.telegraph.co.uk/news/religion/11314580/Sir-Winston-Churchill-s-family-feared-he-might-convert-to-Islam.html,25,31,ClintEhrlich,12/12/2015 19:38 +10215142,CSS Protips,https://github.com/AllThingsSmitty/css-protips,1,2,AllThingsSmitty,9/14/2015 14:15 +11301239,Ask HN: What's with the micro/tiny/minimal libraries trend?,,1,3,bgar,3/16/2016 22:40 +11599714,Show HN: TeachCraft Learning Python Through Minecraft,https://github.com/teachthenet/TeachCraft-Challenges?,129,26,emeth,4/30/2016 0:45 +12512417,Whatsapp changed their emoji styles: added gloss,http://imgur.com/gallery/WvvLC,2,2,abhas9,9/16/2016 7:18 +10715095,The Zebra firewall manager,https://blog.fastmail.com/2015/12/11/the-zebra-firewall-manager/,42,2,kevinchen,12/11/2015 2:13 +12353957,Taking stock of the new French-German encryption proposal,http://www.politico.com/tipsheets/morning-cybersecurity/2016/08/taking-stock-of-the-new-french-german-encryption-proposal-216051,51,22,taylorbuley,8/24/2016 18:03 +10293670,The Mini-App Predicament,http://lightsighter.org/posts/miniappredicament.html,13,1,themariachi,9/28/2015 22:38 +10244015,How Did Paul Krugman Get It So Wrong? (2011) [pdf],http://faculty.chicagobooth.edu/john.cochrane/research/papers/ecaf_2077.pdf,3,1,Tomte,9/19/2015 11:42 +10690482,Help us find the coolest educational apps,http://blog.zzish.com/post/134729113789/help-us-find-the-coolest-educational-apps,2,1,Zzish,12/7/2015 16:35 +10561478,CoreOS Introduces Clair: Open Source Vulnerability Analysis for Your Containers,https://coreos.com/blog/vulnerability-analysis-for-containers/,142,26,xfiler,11/13/2015 18:34 +10193144,Show HN: Get help from developers near you for your startup,http://trylime.com/,6,5,rukshn,9/9/2015 18:22 +10286437,Namecheap Account Panel updated,https://blog.namecheap.com/ready-to-roll-your-new-account-panel/,2,2,dewey,9/27/2015 13:36 +11718361,New AWS Community Heroes Announced,https://aws.amazon.com/blogs/aws/welcome-to-the-newest-aws-community-heroes-spring-2016/,11,2,IamStan,5/17/2016 23:05 +11400655,Update: Keeping Pinboard on IFTTT,,12,1,buro9,3/31/2016 21:23 +10227303,The user-friendly way to be a little drug lord: economic secrets of the dark web,http://qz.com/481037/dark-web,77,31,lermontov,9/16/2015 15:27 +11204017,Visual Logic Authoring vs. Code,http://blog.dominodatalab.com/visual-tools-vs-code/,32,13,gk1,3/1/2016 16:56 +10243151,Popular Chinese iOS apps compromised in malware attack,https://zh.greatfire.org/blog/2015/sep/popular-chinese-ios-apps-compromised-unprecedented-malware-attack,194,84,tomkwok,9/19/2015 3:17 +11479194,"Happening Platform: develop group apps for instant use on Android, iOS and the web",https://dev.happening.im/?hn,18,5,sssparkkk,4/12/2016 13:10 +10744237,12 Coders Get Naked for a Good Cause,http://coderswithoutclothes.org,71,37,valtsu,12/16/2015 13:57 +12223629,Solar-powered 3-D printer prints glass from sand,http://www.kurzweilai.net/solar-powered-3-d-printer-prints-glass-from-sand,2,1,jonbaer,8/4/2016 5:43 +11244528,Show HN: A super simple webcrawler framework written in Python,https://github.com/mrafayaleem/simple-crawler,2,2,iamspoilt,3/8/2016 10:36 +12074862,Ask HN: What to do after failing final interviews twice?,,103,147,uyoakaoma,7/11/2016 21:31 +11543438,Alex St. John: I Apologize,http://www.alexstjohn.com/WP/2016/04/21/i-apologize/,7,2,Finster,4/21/2016 16:40 +11366537,Show HN: WifiMask Public Wi-Fi security for everybody (on OS X),https://www.wifimask.com,1,2,juiced,3/26/2016 17:31 +11159451,The Madness of Airline Élite Status,http://www.newyorker.com/business/currency/the-madness-of-airline-elite-status,236,246,ohjeez,2/23/2016 15:22 +10946059,Here Comes Another Bubble (YouTube 2007),https://www.youtube.com/watch?v=I6IQ_FOCE6I,2,1,sosuke,1/21/2016 15:59 +10788063,Show HN: Hodor - a simple solution to localize your iOS App quickly,https://github.com/Aufree/Hodor,2,2,Aufree,12/24/2015 13:21 +10341482,Interledger Protocol: Payments across payment networks,http://interledger.org/,15,1,ReedR95,10/6/2015 19:05 +10895022,Call Pest Control: The Bug Problem at the US Embassy in Moscow,https://notevenpast.org/call-pest-control-the-bug-problem-at-the-us-embassy-in-moscow/,1,1,Sheaves,1/13/2016 15:37 +12362090,Mapping Manhattan's shuttered storefronts,http://www.vacantnewyork.com/,35,27,danso,8/25/2016 20:11 +11670621,Disney Infinity is over as company pulls out of console games,http://venturebeat.com/2016/05/10/the-disney-infinity-franchise-is-over-as-entertainment-company-pulls-out-of-console-games/,10,2,minimaxir,5/10/2016 21:00 +10938915,How Ionic Builds on GitHub,http://blog.ionic.io/how-ionic-uses-github-better/,75,5,jbrantly,1/20/2016 15:56 +10591174,"Hello Programmers without Masters degree, what are your future plans?",,5,24,pshyco,11/18/2015 22:16 +11351556,Homebrew Cray-1A,http://www.chrisfenton.com/homebrew-cray-1a/,4,2,CarolineW,3/24/2016 9:37 +10953889,The Totes Amazesh Way Millennials Are Changing the English Language,https://www.washingtonpost.com/news/wonk/wp/2016/01/13/the-totes-amazesh-way-millennials-are-changing-the-english-language/,39,63,nikolay,1/22/2016 16:57 +10619045,"SunVox: a small, fast and powerful modular synth with pattern-based sequencer",http://www.warmplace.ru/soft/sunvox/,3,1,pmoriarty,11/24/2015 3:51 +12019627,The Case of the Victorian Cat Ladies,https://mimimatthews.com/2016/06/30/the-case-of-the-victorian-cat-ladies/,17,5,Avawelles,7/1/2016 21:03 +11752395,Nokia to cut a thousand jobs,http://www.reuters.com/article/us-nokia-corp-redundancies-idUSKCN0YB2E8,2,1,vincent_s,5/23/2016 7:15 +11335687,BTC Producer,https://btcproducer.com/inv/56f1290e4de1b,1,2,hillmoo,3/22/2016 11:22 +12115348,NFV Platforms with MirageOS Unikernels,http://unikernel.org/blog/2016/unikernel-nfv-platform,38,17,amirmc,7/18/2016 14:48 +10344695,The uncertain future of emotion analytics,http://www.hopesandfears.com/hopes/now/internet/216523-the-uncertain-future-of-emotion-analytics,9,1,whocansay,10/7/2015 7:42 +11159115,Mossberg: Eero Makes Wi-Fi Simpler and Stronger,http://recode.net/2016/02/23/mossberg-eero-makes-wi-fi-simpler-and-stronger/,23,9,prostoalex,2/23/2016 14:44 +12190533,More Wrong Things I Said in Papers,http://www.scottaaronson.com/blog/?p=2854,97,33,ikeboy,7/29/2016 22:30 +10217889,Robo-journalism: How a computer describes a sports match,http://www.bbc.co.uk/news/technology-34204052,3,3,SimplyUseless,9/14/2015 22:18 +12569055,Oh Snap Looks like Snapchat could be rebranding,https://techcrunch.com/2016/09/23/oh-snap-looks-like-snapchat-could-be-rebranding/,14,13,daegloe,9/24/2016 1:42 +12540203,String theorys second life,https://www.quantamagazine.org/20160915-string-theorys-strange-second-life/,7,3,EastLondonCoder,9/20/2016 15:22 +10492494,Ask HN: BI software,,2,1,rgdzz3,11/2/2015 15:53 +10194546,Ask HN: Would you pay to use a good GIF encoder designed for iOS?,,2,1,giftoolbox,9/9/2015 20:59 +10369792,A $200M Shell Game in Seychelles,http://www.thedailybeast.com/articles/2015/10/10/a-billion-dollar-shell-game-in-seychelles.html,59,16,nols,10/11/2015 16:06 +11311834,Email reveals Clinton worked with Google CEOs to keep Benghazi video blocked,https://wikileaks.org/clinton-emails/emailid/16800#efmAUgAVkAdUAdnAePAe2,93,45,doener,3/18/2016 14:05 +11047144,Rust vs. C++: Fine-grained Performance,http://cantrip.org/rust-vs-c++.html,211,126,beshrkayali,2/6/2016 9:44 +11461473,Ask HN: What to do if the firewall removes all new HTTP response header fields?,,7,12,stesch,4/9/2016 14:52 +10410414,Edible Blob Is a Water Bottle Without the Plastic,http://www.fastcoexist.com/3028012/this-edible-blob-is-a-water-bottle-without-the-plastic,2,1,billconan,10/19/2015 0:16 +11033284,The Corporate Sovereignty Saga Involving Ecuador and Chevron,https://www.techdirt.com/articles/20160130/07171733469/incredible-corporate-sovereignty-saga-involving-ecuador-chevron-continues.shtml,25,5,walterbell,2/4/2016 11:28 +11529628,How Should the U.S. Fund Research and Development?,http://www.theatlantic.com/technology/archive/2016/04/us-research-and-development/477435/?single_page=true,18,21,tokenadult,4/19/2016 19:44 +11027326,?Why switch to Windows 10 or a Mac when you can use Linux Mint 17.3 instead?,http://www.zdnet.com/article/why-switch-to-windows-10-or-a-mac-when-you-can-use-linux-mint-17-3-instead/,4,7,CrankyBear,2/3/2016 16:23 +11516063,Developing small JavaScript components WITHOUT frameworks,https://jack.ofspades.com/developing-small-javascript-components-without-frameworks/,1,2,jacopotarantino,4/17/2016 20:05 +12138242,How to ditch your second phone in less than 5 mins,,1,1,costinm,7/21/2016 17:00 +10679413,Andreessen Horowitzs First Move in Biopharma,http://blogs.sciencemag.org/pipeline/archives/2015/12/04/andreessen-horowitzs-first-move-in-biopharma,30,8,srunni,12/4/2015 21:50 +10944462,Show HN: A fullscreen HSL color picker (mousemove/scroll),http://hsl.ruiramos.com/,6,4,ruiramos,1/21/2016 10:52 +11078637,What Little Babies See That We No Longer Can,http://blogs.scientificamerican.com/illusion-chasers/what-little-babies-see-that-you-no-longer-can/,85,35,walterbell,2/11/2016 7:00 +11284733,Show HN: Scalable reverse image search built on Kubernetes and Elasticsearch,https://github.com/pavlovml/match,139,13,alexkern,3/14/2016 19:00 +11623491,Ask HN: Where can I watch an Xcode Master at Work?,,10,5,SimplGy,5/3/2016 19:26 +11856359,Motion Stills Create Beautiful GIFs from Live Photos,https://research.googleblog.com/2016/06/motion-stills-create-beautiful-gifs.html,6,1,hektik,6/7/2016 18:07 +10512651,Bad answers on Stack Overflow,http://nedbatchelder.com/blog/201207/bad_answers_on_stack_overflow.html,21,2,Garbage,11/5/2015 10:47 +10271265,Google is missing in the photo with Chinese president Xi Jinping,http://www.pinganew.com/article/1443082411-Google-is-missing-in-the-photo-with-Chinese-president-Xi-Jinping,3,1,pingeast,9/24/2015 12:47 +11716522,The myth of the cheat proof digital exam,https://medium.com/@haspaker/the-myth-of-the-cheat-proof-digital-exam-dcbafcf62613#.1kuxzgd0q,2,1,kiyanwang,5/17/2016 19:22 +11591142,Mark Zuckerberg Gets to Control Facebook a While Longer,http://www.bloombergview.com/articles/2016-04-28/mark-zuckerberg-gets-to-control-facebook-a-while-longer,185,117,dsri,4/28/2016 18:58 +11426832,Predictions from the Father of Science Fiction (2012),http://www.smithsonianmag.com/history/predictions-from-the-father-of-science-fiction-61256664/?no-ist,17,1,Hooke,4/5/2016 0:13 +12226929,Show HN: Checkup Self-hosted health checks and status pages,https://sourcegraph.github.io/checkup/,9,1,mholt,8/4/2016 17:01 +10930794,Non-technical skills in teams competencies [pdf],http://www.iogp.org/pubs/502.pdf,3,1,johntaitorg,1/19/2016 14:07 +11791052,Blocklist of all Facebook domains,https://github.com/jmdugan/blocklists/blob/master/corporations/facebook/all,499,142,temp,5/28/2016 9:22 +12181038,Show HN: All Federal Reserve Statements from 1994-present on GitHub,https://github.com/fomc/statements,22,2,davebryand,7/28/2016 16:01 +12219748,Ask HN: Is there a public shaming list for websites with bad password policies?,,2,2,coreyp_1,8/3/2016 17:27 +10663486,Synthetic Meat May Be On The Market Sooner Than We Thought,http://bigthink.com/ideafeed/answering-how-a-sausage-gets-made-will-be-more-complicated-in-2020,2,1,jsnathan,12/2/2015 15:28 +11046625,Wood Shop Enters the Age of High-Tech,http://www.nytimes.com/2016/02/07/education/edlife/forward-tinkering-colleges-make-room-for-maker-spaces.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=photo-spot-region®ion=top-news&WT.nav=top-news&_r=0,37,22,pavornyoh,2/6/2016 5:03 +10317202,Peeple Character is Destiny,http://forthepeeple.com/,3,3,doppp,10/2/2015 7:38 +11777749,Higher Taxes Dont Cause Millionaires to Flee Their Homes,http://www.bloomberg.com/news/articles/2016-05-26/higher-taxes-don-t-scare-millionaires-into-fleeing-their-homes-after-all,25,48,terryauerbach,5/26/2016 13:33 +12391522,Born to Rest,http://harvardmagazine.com/2016/09/born-to-rest,153,149,paulpauper,8/30/2016 16:26 +12447264,Ask HN: New MacBook?,,7,3,mark_l_watson,9/7/2016 20:27 +12399843,Google reportedly dropping the Nexus brand name from its phones,http://www.theverge.com/2016/8/30/12712722/google-new-nexus-phones-brand-name-change,1,1,zeveb,8/31/2016 17:11 +10413618,Show HN: Goofys a faster s3fs written in Go,https://github.com/kahing/goofys,40,23,khc,10/19/2015 15:45 +10637565,Elon Musk's New Idea: Nuke Mars,http://edition.cnn.com/2015/09/11/us/elon-musk-mars-nuclear-bomb-colbert-feat/,6,1,tonteldoos,11/27/2015 15:04 +11972400,Why Does Software Rot?,http://www.overcomingbias.com/2016/06/why-does-software-rot.html,96,80,nhaliday,6/24/2016 18:52 +12216263,Shariff: Social media sharing buttons without compromising privacy,https://github.com/heiseonline/shariff,2,2,onli,8/3/2016 7:27 +10871222,Midori: A Tale of Three Safeties,http://joeduffyblog.com/2015/11/03/a-tale-of-three-safeties/,48,7,the_why_of_y,1/9/2016 13:49 +10609808,"In California, Stingy Water Users Are Fined in Drought, While the Rich Soak",http://www.nytimes.com/2015/11/22/us/stingy-water-users-in-fined-in-drought-while-the-rich-soak.html?ref=us,11,9,hvo,11/22/2015 11:43 +12487893,New polymer £5 note released in the UK today,http://www.thenewfiver.co.uk/,9,2,shazzy,9/13/2016 13:17 +10953369,AT&T CEO wont join Tim Cook in fight against encryption backdoors,http://arstechnica.com/tech-policy/2016/01/att-ceo-wont-join-tim-cook-in-fight-against-encryption-backdoors/,11,1,noarchy,1/22/2016 15:49 +11829501,Parallel and Concurrent Programming in Haskell (2013),http://chimera.labs.oreilly.com/books/1230000000929,2,1,erac1e,6/3/2016 10:48 +11480709,Social Mobility May Suffer as Income Fails to Keep Pace with Housing Costs,http://www.zillow.com/research/social-mobility-housing-costs-12138/,58,69,uptown,4/12/2016 16:00 +10472688,Canvid.js tiny library for playing video on canvas elements,http://gka.github.io/canvid/,66,30,callumlocke,10/29/2015 17:24 +10682749,When Formality Works,http://codahale.com/when-formality-works/,22,3,luu,12/5/2015 18:25 +10252210,Million Dollar iOS9 Bug Bounty,https://zerodium.com/ios9.html,95,75,FredericJ,9/21/2015 13:48 +11213722,"I did my wedding invitation website in Angular2 and TypeScript, check it out",https://github.com/amcdnl/angular2-demo,5,2,amcdnl,3/2/2016 22:54 +10813261,How to Disagree Intelligently at Work,http://cryoshon.co/2015/12/30/how-to-disagree-intelligently-at-work/,5,3,cryoshon,12/30/2015 17:55 +11877765,"Tased in the Chest for 23 Seconds, Dead for 8 Minutes, Now a Life of Recovery",https://theintercept.com/2016/06/07/tased-in-the-chest-for-23-seconds-dead-for-8-minutes-now-facing-a-lifetime-of-recovery/,57,23,llamataboot,6/10/2016 16:55 +11568314,AMD stock down 14%,https://www.google.com/finance?q=NASDAQ:AMD,2,1,taspeotis,4/25/2016 23:51 +11528189,New proof of a minimum property of the regular n-gon (1947),http://fermatslibrary.com/s/new-proof-of-a-minimum-property-of-the-regular-n-gon,41,17,mgdo,4/19/2016 16:42 +10274114,Google Play services 8.1,http://android-developers.blogspot.com/2015/09/google-play-services-81-get-ready-for.html,4,1,stanleydrew,9/24/2015 19:41 +11948666,Analysing 1.65M versions of Node.js modules in NPM,https://blog.nodeswat.com/what-i-learned-from-analysing-1-65m-versions-of-node-js-modules-in-npm-a0299a614318#.8f3ifd27r,56,11,coldcode,6/21/2016 19:24 +10299172,Create Telegram bot from command-line,https://github.com/msoap/shell2telegram,4,1,mpg123,9/29/2015 20:01 +11430962,State of Delaware launches blockchain using Symbiont smart contracts,http://www.ibtimes.co.uk/state-delaware-launches-blockchain-using-symbiont-smart-contracts-1553130,9,1,PhantomPhreak,4/5/2016 15:12 +11855787,Confirmshaming,http://confirmshaming.tumblr.com/,300,82,Sgt_Apone,6/7/2016 16:54 +11281334,Should an aborigine be arrested for murder?,http://www.nytimes.com/2016/03/14/world/asia/india-jarawas-child-murder.html,2,1,msravi,3/14/2016 6:12 +10933439,EFF Pries More Information on Zero Days from the Government,https://www.eff.org/deeplinks/2016/01/eff-pries-more-transparency-zero-days-governments-grasp,124,29,tghw,1/19/2016 19:52 +12410255,Why I Dont Hire Ex-Google Employees [2015],https://medium.com/@jerkyjew/why-i-don-t-hire-ex-google-employees-1748875b7e42,13,16,fagnerbrack,9/2/2016 1:51 +11907314,Shazam for Seafood Hopes to Catch Fraudulent Fish,http://www.popularmechanics.com/science/animals/a21234/shazam-for-fish-hopes-to-identify-fish-fraud/,2,1,jonbaer,6/15/2016 5:27 +10754194,Instagram's Million Dollar Bug,http://www.exfiltrated.com/research-Instagram-RCE.php,1562,514,infosecau,12/17/2015 20:16 +10282856,Did Dropbox and Evernote Heed the Lessons of Flip?,https://medium.com/@dhh/making-money-along-the-way-did-dropbox-and-evernote-heed-the-lessons-of-flip-f5a133fe00d4,46,11,impostervt,9/26/2015 12:03 +11747036,Monotonic Versioning Manifesto,http://blog.appliedcompscilab.com/monotonic_versioning_manifesto/,103,47,Freaky,5/22/2016 1:30 +12058929,Our nightmare on Amazon ECS,http://www.appuri.com/blog/-our-docker-nightmare-on-amazon-ecs/,270,127,maslam,7/8/2016 21:59 +10854478,Synthetic Network Monitoring on Debian/Raspberry Pi,https://netbeez.net/2016/01/06/synthetic-network-monitoring-on-debian/,9,1,panosv,1/6/2016 22:45 +11411020,Introducing React Storybook,https://voice.kadira.io/introducing-react-storybook-ec27f28de1e2,459,46,dsego,4/2/2016 10:38 +11861381,How to hack almost any toy quadcopter with a $5 NRF24L01+ module,http://dronegarageblog.wordpress.com/2016/06/07/deviationtx-with-nrf24l01-module-the-universal-drone-remote/,6,1,wolframio,6/8/2016 11:04 +11826006,Elon Musk: Chance we are not living in a computer simulation 'one in billions',http://www.independent.co.uk/life-style/gadgets-and-tech/news/elon-musk-ai-artificial-intelligence-computer-simulation-gaming-virtual-reality-a7060941.html,9,4,bonefishgrill,6/2/2016 20:59 +11753950,Provide Sharp Knives (DHH),https://m.signalvnoise.com/provide-sharp-knives-cc0a22bf7934?gi=f6b0f350c60,4,2,yonibot,5/23/2016 14:12 +12323187,Kubernetes the Hard Way,https://github.com/kelseyhightower/kubernetes-the-hard-way/blob/master/README.md,240,79,tantalor,8/19/2016 20:23 +10811570,Do the math on your stock options,http://jvns.ca/blog/2015/12/30/do-the-math-on-your-stock-options/,445,170,jackgavigan,12/30/2015 10:40 +11787398,Clintons e-mail scandal another case of the entitled executive syndrome,http://arstechnica.com/information-technology/2016/05/clintons-e-mail-scandal-another-case-of-the-entitled-executive-syndrome/,26,1,lisper,5/27/2016 17:14 +10243333,Facebooks Like Buttons Will Soon Track Your Web Browsing to Target Ads,http://www.technologyreview.com/news/541351/facebooks-like-buttons-will-soon-track-your-web-browsing-to-target-ads/,3,1,cpeterso,9/19/2015 4:48 +11578748,The growing importance of monopoly rents (2013),http://www.nytimes.com/2013/06/21/opinion/krugman-profits-without-production.html,1,1,bainsfather,4/27/2016 8:52 +10453121,Google's Nexus 6P boasts the future of Android smartphone cameras,http://www.networkworld.com/article/2997240/mobile-wireless/review-google-nexus-6p-smartphone-camera-android.html,2,1,stevep2007,10/26/2015 18:03 +11030163,Guess the Correlation: a game of statistics,http://guessthecorrelation.com/,1,1,Etheryte,2/3/2016 22:03 +11253649,Responsive Pixel Art,http://essenmitsosse.de/pixel/,1622,122,bpierre,3/9/2016 15:55 +10915732,The man who studies the spread of ignorance,http://www.bbc.com/future/story/20160105-the-man-who-studies-the-spread-of-ignorance?ocid=fbfut,5,1,HillRat,1/16/2016 16:42 +12284804,Y combinator real life application: recursive memoization in JavaScript,http://blog.klipse.tech/lambda/2016/08/10/y-combinator-app-javascript.html,2,1,viebel,8/14/2016 8:36 +10559164,Ask HN: Why the platform doesn't have a pinned tab icon for Safari?,,1,3,hugomano,11/13/2015 11:09 +12039371,Ask HN: CMS vs. no CMS statistics?,,1,2,userAW,7/5/2016 20:36 +10949076,Why do we need a new OS?,http://3lproject.org/blog/why-do-we-need-a-new-os,84,88,thecombjelly,1/21/2016 22:39 +11513029,Diep.io,http://diep.io/,4,54,Matheus28,4/17/2016 1:04 +11897049,Remove built-in apps from the Home screen on your iOS device with iOS 10 beta,https://support.apple.com/en-gb/HT204221,35,16,e1ven,6/13/2016 20:02 +10853201,North Korea makes more sense when you know its roots,http://www.vox.com/2016/1/6/10724334/north-korea-history,94,59,curtis,1/6/2016 19:53 +12178642,Show HN: Secure login distribution service,https://github.com/seletskiy/shadowd,68,13,kovetskiy,7/28/2016 6:09 +10340082,Breakthrough on chronic pain,http://news.harvard.edu/gazette/story/2015/01/breakthrough-on-chronic-pain/,2,2,jimsojim,10/6/2015 16:31 +11426849,FBI Says a Mysterious Hacking Group Has Had Access to US Govt Files for Years,http://motherboard.vice.com/read/fbi-flash-alert-hacking-group-has-had-access-to-us-govt-files-for-years,8,2,jonah,4/5/2016 0:18 +11393348,Show HN: Color Contrast,http://www.userlight.com/colorcontrast/,4,2,colorcontrast,3/30/2016 21:55 +11172288,Protonmail beta 3.1 released,https://protonmail.com/blog/protonmail-beta-v3-1-release-notes/,2,1,johnnycarcin,2/25/2016 3:58 +10801036,Writing the next chapter for Prismatic,http://prismatic.github.io/next-chapter/,3,1,espadrine,12/28/2015 13:48 +11687507,Rich people have access to high-speed Internet; many poor people still don't,https://www.publicintegrity.org/2016/05/12/19659/rich-people-have-access-high-speed-internet-many-poor-people-still-dont,9,5,coloneltcb,5/12/2016 23:14 +12408209,DraftKings raises $150M in new funding just in time for the NFL season,https://techcrunch.com/2016/09/01/draftkings-raises-150m-in-new-funding-just-in-time-for-the-nfl-season/,1,1,inputcoffee,9/1/2016 19:33 +10628457,Electric cars and the coal that runs them,https://www.washingtonpost.com/world/electric-cars-and-the-coal-that-runs-them/2015/11/23/74869240-734b-11e5-ba14-318f8e87a2fc_story.html,1,1,akg_67,11/25/2015 17:57 +12437567,VR on steam grew 0.06% in july and 0.02% in august,http://store.steampowered.com/hwsurvey/,20,20,aresant,9/6/2016 17:18 +11974533,Ask HN: What is the best way to whiteboard remotely?,,6,4,mey,6/25/2016 0:22 +10859586,How Headspace Onboards New Users,http://www.useronboard.com/how-headspace-onboards-new-users/,3,2,RKoutnik,1/7/2016 18:10 +11674899,Ask HN: How much equity should a lead developer joining a startup during YC get?,,3,3,whyceethrowaway,5/11/2016 13:08 +10494805,SGI screen fonts converted for OS X,http://njr.sabi.net/2015/11/01/sgi-screen-fonts-converted-for-os-x/,64,26,ingve,11/2/2015 20:10 +12201897,Ask HN: Has HN lost its tech startup community vibe?,,24,10,forgottenacc56,8/1/2016 12:45 +10816642,A social media platform targeted towards sharing travel,http://dev.wandrlust.co,2,1,wandrlust,12/31/2015 7:15 +12522021,Where Death Lies,http://www.themorningnews.org/article/where-death-lies,32,14,kawera,9/17/2016 19:31 +10857171,"The future: AI, VR, robots, cloud servers. Apples weaknesses",,5,1,forgottenacc56,1/7/2016 10:37 +11531712,Apply HN: RRR Channel-Based Anonymous Social App for Believers,,3,3,botw,4/20/2016 1:29 +11029031,Show HN: An app search engine that can filter out fake reviews,http://apprecs.com,7,3,verdantlabs,2/3/2016 19:34 +10606226,What is a coder's worst nightmare? (2014),https://www.quora.com/What-is-a-coders-worst-nightmare/answer/Mick-Stute?srid=RBKZ&share=1,476,224,oskarth,11/21/2015 8:51 +11707973,Ruby has been fast enough for 13 years,https://m.signalvnoise.com/ruby-has-been-fast-enough-for-13-years-afff4a54abc7,232,179,ingve,5/16/2016 17:36 +11836291,Is the Era of Free Streaming Music Coming to an End?,http://pitchfork.com/features/article/9896-is-the-era-of-free-streaming-music-coming-to-an-end/,47,60,tomkwok,6/4/2016 13:45 +12539734,"Bitcoin Is Real Money, Judge Rules in J.P. Morgan Hack",http://fortune.com/2016/09/20/judge-rules-bitcoin-is-money/,7,3,wslh,9/20/2016 14:24 +12469546,The antithesis of Monsanto?,https://hack.ether.camp/#/idea/s33d,9,1,merkleme,9/10/2016 15:02 +10345010,An introduction to computational semantics,http://www.akornilo.com/computational-semantics/,37,4,akornilo,10/7/2015 9:36 +11449767,Why Erlang Matters,https://sameroom.io/blog/why-erlang-matters,423,207,_oakland,4/7/2016 19:09 +11207769,"The IMF Confirms That Trickle-Down Economics Is, Indeed, a Joke",http://collectivelyconscious.net/articles/the-imf-confirms-that-trickle-down-economics-is-indeed-a-joke/,14,4,Jerry2,3/2/2016 2:35 +10574964,The Ultimate Guide to Using Visual Studio on a Mac,https://stormpath.com/blog/ultimate-guide-to-using-visual-studio-on-a-mac/,9,1,sconxu,11/16/2015 15:33 +10302584,Zachflower/resume-server,https://github.com/zachflower/resume-server,2,1,napolux,9/30/2015 8:47 +12008269,Extreme Methods for Breaking Bad Habits,https://medium.com/swlh/an-extreme-method-for-breaking-your-bad-habits-8d269b5302da#.5yyk1c5f1,55,19,shaunroncken,6/30/2016 13:18 +12057709,Japans first VR porn festival shutdown because too many people wanted to come,http://thenextweb.com/insider/2016/07/04/vr-porn-festival-people-cant-come/,10,2,monsieurpng,7/8/2016 18:34 +10915946,Why some Koreans make $10k a month to eat on camera,http://qz.com/592710/why-some-koreans-make-10000-a-month-to-eat-on-camera/,27,14,smalera,1/16/2016 17:32 +11821178,Generating Large Images from Latent Vectors Part Two,http://blog.otoro.net/2016/06/02/generating-large-images-from-latent-vectors-part-two/,18,5,hardmaru,6/2/2016 8:59 +10218716,Drone hobbyists find flaws in close call reports to FAA from other aircraft,http://www.usatoday.com/story/news/2015/09/13/drone-reports-faa-close-call-near-miss-academy-model-aeronautics-/72064388/?AID=10709313&PID=3836173&SID=iekr385peb0004o400dth,54,49,Varcht,9/15/2015 2:46 +10931018,Sigfox brings its IoT network to Antarctica,http://venturebeat.com/2016/01/19/frances-sigfox-brings-its-iot-network-to-antarctica/,4,1,nicolsc,1/19/2016 14:43 +11823902,Show HN: Full Stack Lisp A book in progress about writing Common Lisp apps,http://fullstacklisp.com/,338,100,pavelludiq,6/2/2016 16:36 +11109751,"Under-35s in the UK face becoming permanent renters, warns thinktank",http://www.theguardian.com/society/2016/feb/13/under-35s-in-the-uk-face-becoming-permanent-renters-warns-thinktank,142,289,temp,2/16/2016 13:52 +11959802,Gun-control protest sparks chaotic scenes in US Congress,http://www.bbc.co.uk/news/world-us-canada-36598736,29,135,marcosscriven,6/23/2016 9:44 +12523042,"Don Buchla, Electronic Music Maverick, Has Died",http://www.nytimes.com/2016/09/18/arts/music/don-buchla-dead.html,82,9,hackuser,9/17/2016 23:18 +12263980,Joel Test for Data Science,https://blog.dominodatalab.com/joel-test-data-science/?hn=1,54,21,gk1,8/10/2016 18:52 +10757576,"React Indie Bundle report, or how we made $31k in a week",http://swizec.com/blog/react-indie-bundle-report-or-how-we-made-31k-in-a-week/swizec/6762?dedup,17,1,Swizec,12/18/2015 9:40 +11088974,Ask HN: Best way to render latex equations in GitHub readme?,,2,5,chatmasta,2/12/2016 17:50 +12390993,Ask HN: Advice on failing company,,9,9,throwwaway,8/30/2016 15:27 +12085424,"Show HN: Anvil, Visual Basic reimagined for the web",https://anvil.works,7,1,meredydd,7/13/2016 11:54 +11694583,Maybe you can go back in time and kill your grandfather,http://www.popularmechanics.com/science/a20871/quantum-physics-grandfather-paradox/,2,2,jonbaer,5/14/2016 4:46 +11758034,"Spectre.css a lightweight, responsive and modern CSS framework",https://picturepan2.github.io/spectre/,224,52,picturepan2,5/24/2016 0:23 +10204844,"PostgreSQL, pg_shard, and what we learned from our failures",https://www.citusdata.com/blog/19-ozgun/265-postgresql-pgshard-and-what-we-learned-our-failures,108,18,craigkerstiens,9/11/2015 17:10 +10458062,Could Russia Cut American Submarine Telecom Cables and Internet,http://www.npr.org/sections/alltechconsidered/2015/10/26/451992422/what-would-it-take-to-cut-u-s-data-cables-and-halt-internet-access,1,1,evo_9,10/27/2015 14:10 +11059763,Stock App for Tracking High and Low Breakouts and Finding New Trades,http://www.mometic.com/,1,1,brentis,2/8/2016 18:07 +11214868,"Rappel: A REPL for x86, amd64, and armv7",https://github.com/yrp604/rappel,150,19,gbarboza,3/3/2016 3:35 +12137190,Pandora Quite Literally Bought the Quarter,https://sentieo.com/blog/bears-be-warned-pandora-p-quite-literally-bought-the-quarter/,2,1,ryougazilla,7/21/2016 14:46 +11308718,DeepExcel Deep learning in Excel,http://www.deepexcel.net/,209,31,utkarshsinha,3/18/2016 0:01 +10694932,Mechanical webpage hitcounter,http://spritesmods.com/?art=mechctr,32,8,bemmu,12/8/2015 5:11 +10635300,Silicon Valley professionals are taking LSD at work to increase productivity,http://www.telegraph.co.uk/news/newstopics/howaboutthat/12019140/Silicon-Valley-professionals-are-taking-LSD-at-work-to-increase-productivity.html,17,1,adventured,11/27/2015 0:22 +10554638,Elasticsearch as a Time Series Data Store,https://www.elastic.co/blog/elasticsearch-as-a-time-series-data-store,2,1,sciurus,11/12/2015 17:37 +10310602,Ask HN: Does anyone develop/hack while working in a completely separate field?,,2,2,teapot01,10/1/2015 12:15 +11128348,Upload files to your repositories,https://github.com/blog/2105-upload-files-to-your-repositories,276,88,Oompa,2/18/2016 19:06 +10691272,"The Ad Blocking Industry: Global, Large, Threatening",http://www.mondaynote.com/2015/12/06/the-ad-blocking-industry-global-large-threatening/,2,1,kawera,12/7/2015 18:08 +12379070,Show HN: HAgnostic News HN Reader for the Web and React Native App (Android/iOS),https://github.com/grigio/HAgnostic-News,6,1,grigio,8/28/2016 23:33 +11990176,"The very first GitHub commit, committed 10 days before the author joined GitHub",https://github.com/mojombo/grit/commit/634396b2f541a9f2d58b00be1a07f0c358b999b3,3,1,bokenator,6/27/2016 22:57 +10361047,Let's Buy Delphi,https://www.cybertribe.de/letsbuydelphi/,7,8,omnibrain,10/9/2015 16:12 +11555135,Ask HN: What would TV cop drama be about if drugs were legal?,,2,6,hoodoof,4/23/2016 11:43 +10204318,The Loss of Faith in American Institutions: The Key to Revival May Lie Next Door,http://www.theatlantic.com/politics/archive/2015/09/the-value-of-neighbors/404338/?single_page=true,3,1,dpflan,9/11/2015 15:45 +11046300,Twitter to Introduce Algorithmic Timeline as Soon as Next Week,http://www.buzzfeed.com/alexkantrowitz/twitter-to-introduce-algorithmic-timeline-as-soon-as-next-we#.nr4NMm4Kkr,8,1,davidbarker,2/6/2016 2:52 +11368948,Microsoft HoloLens delivers Star Wars holographic message we've been waiting for,http://mashable.com/2016/03/26/microsoft-hololens-holoportation/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Mashable+%28Mashable%29,1,1,e-sushi,3/27/2016 4:54 +12381598,Ask HN: Why is Google so bad at UI Design?,,2,6,vuyani,8/29/2016 13:13 +12224854,Amazon plans world domination with the help of AI and bots,http://factordaily.com/amazon-echo-future-prime-air-bots/,2,1,abhi3,8/4/2016 11:45 +10206466,Pure CSS Transitions in intercooler.js,http://intercoolerjs.org/docs.html#transitions,1,3,carsongross,9/11/2015 22:20 +12342840,Show HN: SecretCrypt Keeping secrets in plain sight,http://zemanta.github.io/2016/08/09/keeping-secrets-in-plain-sight/,75,35,nsaje,8/23/2016 11:35 +11699728,Module Hub The Redis Modules Marketplace,http://redismodules.com/,76,19,jonbaer,5/15/2016 6:16 +11287945,ScummVM ported to Raspberry Pi,http://www.scummvm.org/news/20160304/,1,1,jimmcslim,3/15/2016 6:51 +11661208,Facebook Confirms It Will Sponsor Trump's Republican National Convention,http://fortune.com/2016/05/07/facebook-confirms-it-will-sponsor-trumps-republican-national-convention/,13,7,of,5/9/2016 16:47 +11183348,PostgreSQL Indexes: First principles,http://eftimov.net/postgresql-indexes-first-principles,240,37,craigkerstiens,2/26/2016 19:13 +12556384,Show HN: Amazon review exporter,http://app.feedcheck.co/amazon-review-exporter,3,1,adibalcan,9/22/2016 12:43 +12319268,The Shadow Brokers EPICBANANAS and EXTRABACON Exploits,https://blogs.cisco.com/security/shadow-brokers,83,29,hwatson,8/19/2016 11:20 +10243966,Visualizing Editor Trends in Wikipedia,https://cosmiclattes.github.io/wikigraphs/data/wikis,2,3,cosmiclattes,9/19/2015 11:19 +11242621,Collective Memory Discovered in Bacteria,https://www.sciencedaily.com/releases/2016/03/160307153047.htm,137,55,nikolay,3/7/2016 23:46 +10901215,GNU on Smartphones,http://cascardo.eti.br/blog/GNU_on_Smartphones_part_II/,2,1,seba_dos1,1/14/2016 13:31 +12258048,RandomUUID.net,http://randomuuid.net/,1,1,diafygi,8/9/2016 22:04 +10468554,Six Problems with Our Democracy and Whos Working to Fix Them,http://techcrunch.com/2015/10/28/six-problems-with-our-democracy-and-whos-working-to-fix-them/,9,1,sethbannon,10/29/2015 1:00 +10573830,The IBM 3800 Continuous Forms Laser Printer (1976-1991),http://www.digplanet.com/wiki/IBM_3800,3,2,DrScump,11/16/2015 11:28 +11363757,Ask HN: An inexpensive way to find my father (with Alzheimers) if he gets lost,,2,3,elchief,3/26/2016 0:22 +10207410,Elite scientists are more likely to have a hobby in the arts and crafts,http://priceonomics.com/the-correlation-between-arts-and-crafts-and-a/,100,31,yarapavan,9/12/2015 5:56 +11372384,Show HN: Baqqer A crowdfunding community platform,http://baqqer.com,26,10,nathantross,3/28/2016 2:23 +11201725,Microsoft Hololens Developement edition specs,http://mspoweruser.com/microsoft-spec-hololens-developement-edition/,1,1,yread,3/1/2016 9:42 +10545975,"US banks attacked, manipulated and left (heart)bleeding",http://www.bbc.co.uk/news/technology-34783770,2,1,gloves,11/11/2015 10:59 +11595223,Infosec's Jerk Problem (2013),http://adversari.es/blog/2013/06/19/cant-we-all-just-get-along/,210,130,rfreytag,4/29/2016 12:26 +10275966,Electrifying flight: very different aircraft may end up taking to the sky,http://economist.com/news/science-and-technology/21664944-using-electric-and-hybrid-forms-propulsion-very-different-looking-aircraft?cid1=cust/ednew/n/n/n/20150917n/owned/n/n/nwl/n/n/NA/email,82,53,prostoalex,9/25/2015 1:34 +12260277,Show HN: Tourity - Instant custom-made travel plans,https://play.google.com/store/apps/details?id=com.tourity.travel,1,4,anoopmunshi,8/10/2016 8:31 +11577585,Show HN: Hindley-Milner Type Inference Algorithm in OCaml,https://github.com/prakhar1989/type-inference#hindley-milner-type-inference,136,28,krat0sprakhar,4/27/2016 3:05 +11417578,"Which is better, career wise? iOS or Android application development?",,5,10,greenlinux,4/3/2016 20:43 +10731396,The Formula That Killed Wall Street (2009),http://www.wired.com/2009/02/wp-quant/,9,1,zbravo,12/14/2015 15:12 +10523509,The man who made 'the world's first personal computer',http://www.bbc.com/news/business-34639183,33,6,kercker,11/7/2015 3:14 +10593836,Nigel Warburton on Introductions to Philosophy,http://fivebooks.com/interview/nigel-warburton-on-introductions-to-philosophy/,3,2,gpresot,11/19/2015 10:01 +11758977,Disney stops making video games in house insiders reveal what went wrong,http://www.techinsider.io/inside-disneys-messy-video-game-business-2016-5,129,59,nkurz,5/24/2016 4:24 +12563700,Meet the Winners of This Year's Ig Nobel Prizes,http://gizmodo.com/meet-the-winners-of-this-years-ig-nobel-prizes-1786983299,10,4,ourmandave,9/23/2016 11:15 +10200917,Shoelace knots,http://fieggen.com/shoelace/knots.htm,154,43,reviseddamage,9/10/2015 22:18 +10536262,HN now mostly readable on mobile,https://news.ycombinator.com,90,46,djanowski,11/9/2015 22:22 +10891879,My Last Day as a Surgeon,http://www.newyorker.com/books/page-turner/my-last-day-as-a-surgeon,88,2,hkmurakami,1/13/2016 2:07 +11618476,The Ad Agency of the Future,http://adage.com/article/print-edition/agency-future/303798/,16,8,bootload,5/3/2016 6:51 +11961599,Fans angry over 'missing' iPhone 7 headphone socket,http://www.bbc.co.uk/news/technology-36606220,2,1,edward,6/23/2016 15:16 +10965485,"After Every Mass Shooting, Americans Turn to Bogotá's 'Bulletproof Tailor'",http://motherboard.vice.com/read/after-every-mass-shooting-americans-turn-to-bogotas-bulletproof-tailor,16,10,aceperry,1/25/2016 3:59 +12534081,"Paved, but Still Alive: Taking Parking Lots Seriously, as Public Spaces",http://mobile.nytimes.com/2012/01/08/arts/design/taking-parking-lots-seriously-as-public-spaces.html?_r=0&referer=,2,1,jseliger,9/19/2016 19:37 +10691434,Is Barack Obama correct that mass killings don't happen in other countries?,http://www.politifact.com/truth-o-meter/statements/2015/jun/22/barack-obama/barack-obama-correct-mass-killings-dont-happen-oth/,4,5,jessaustin,12/7/2015 18:28 +12276361,Ask HN: A statically typed alternative to Python with batteries included,,3,3,sharmi,8/12/2016 15:17 +10972995,Debugging an Erlang system by connecting to the Erlang VM with gdb,https://www.erlang-solutions.com/blog/how-to-analyse-a-beam-core-dump.html,93,2,andradinu,1/26/2016 12:07 +11133012,CSS for Back end Developers,http://10clouds.com/blog/css-for-backend-developers-part-i/,16,1,uyasinov,2/19/2016 12:04 +10313915,Using a Custom Keyboard for CSS,http://codepen.io/tomhodgins/post/doing-the-68-key-shuffle,34,24,err4nt,10/1/2015 19:20 +11540989,The Hi-Tech Gift Economy (2005),http://firstmonday.org/article/viewArticle/1517/1432,4,1,putdat,4/21/2016 10:58 +12403111,Ask HN: What problems are solved best with Haskell?,,9,2,npguy,9/1/2016 4:31 +11436695,Let's Make a Voxel Engine (2013),https://sites.google.com/site/letsmakeavoxelengine/home,67,17,z3phyr,4/6/2016 4:53 +12241927,Show HN: Scrollanim CSS3 scroll animation,http://scrollanim.kissui.io/?hn,4,1,afshinmeh,8/7/2016 12:43 +12217830,Why arent we using SSH for everything?,https://medium.com/swlh/ssh-how-does-it-even-9e43586e4ffc,308,114,joshmanders,8/3/2016 13:44 +10497587,William Binney Explains Snowden Docs (2014),http://alexaobrien.com/archives/900,13,2,aburan28,11/3/2015 4:39 +11544988,FBI Paid More Than $1M to Hack San Bernardino iPhone,http://www.wsj.com/articles/comey-fbi-paid-more-than-1-million-to-hack-san-bernardino-iphone-1461266641,316,199,maibaum,4/21/2016 20:07 +12518125,"The House Intelligence Committees Terrible, Horrible, Very Bad Snowden Report",https://tcf.org/content/commentary/house-intelligence-committees-terrible-horrible-bad-snowden-report/,14,5,suprgeek,9/16/2016 23:26 +10443755,"For Offenders Who Cant Pay, Its a Pint of Blood or Jail Time",http://www.nytimes.com/2015/10/20/us/for-offenders-who-cant-pay-its-a-pint-of-blood-or-jail-time.html?_r=0,4,5,hwstar,10/24/2015 14:49 +11917492,Stirling engine,https://en.wikipedia.org/wiki/Stirling_engine,1,1,MarlonPro,6/16/2016 17:19 +11689354,SWIFT says second bank hit by malware attack,http://www.reuters.com/article/us-swift-heist-case-idUSKCN0Y332D,4,1,jackgavigan,5/13/2016 8:54 +10695352,Personal data of Dutch telecom providers poorly protected,http://sijmen.ruwhof.net/weblog/608-personal-data-of-dutch-telecom-providers-extremely-poorly-protected-how-i-could-access-12-million-records,67,5,nl5887,12/8/2015 8:20 +11831478,Dear Tech Industry: Please Stop Bullying Us,https://www.linkedin.com/pulse/dear-tech-industry-please-stop-bullying-us-greg-leffler,3,3,gregleffler,6/3/2016 16:53 +12046231,Growing Pains for Field of Epigenetics,http://www.nytimes.com/2016/07/02/science/epigenetic-marks-dna-genes.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=rank&module=package&version=highlights&contentPlacement=9&pgtype=sectionfront&_r=0,43,11,tosseraccount,7/6/2016 22:13 +12209171,Ask HN: JWT as a Currency?,,2,2,ncodes,8/2/2016 11:41 +12450825,Falsehoods Programmers Believe About Names (2010),https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/,37,43,somenomadicguy,9/8/2016 6:53 +10416183,Google Analytics alerts for Slack,http://alerts.ryanbrink.com/,5,1,ryno2019,10/19/2015 22:17 +11818745,Silicon Valley Finds Trumps Disruption Unwelcome,http://www.nytimes.com/2016/06/02/technology/silicon-valley-finds-trumps-disruption-unwelcome.html,2,3,my_first_acct,6/1/2016 22:25 +11518172,Ask HN: What do you use to manage Terminal commands?,,1,3,yoavanaki,4/18/2016 7:03 +11273388,The Sadness and Beauty of Watching Googles AI Play Go,http://www.wired.com/2016/03/sadness-beauty-watching-googles-ai-play-go/,40,15,shutterstock,3/12/2016 16:31 +10310878,Sup app see friends nearby without stalking,http://www.supme.co,2,1,richrxp,10/1/2015 13:17 +12216919,"LibreOffice 5.2 fresh Released, for Windows, Mac OS and GNU/Linux",https://blog.documentfoundation.org/blog/2016/08/03/libreoffice-5-2-fresh-released-for-windows-mac-os-and-gnulinux/,155,148,okket,8/3/2016 10:17 +10223373,"Hewlett Packard Expects Up to 30,000 More Job Cuts",http://www.wsj.com/articles/hewlett-packard-expects-up-to-30-000-more-job-cuts-1442351050,1,1,oulipian,9/15/2015 21:41 +10970880,Ask HN: Where can I get an orange YC vinyl sticker for Mac laptop?,,6,8,davidcoronado,1/25/2016 23:38 +11808743,GitHub new feature: write your bio in your profile page,https://github.com/settings/profile,3,1,dariubs,5/31/2016 18:19 +11294655,Show HN: Real mode demo inspired by CMatrix in 187 bytes,https://bitbucket.org/delan/matrix86/src/5b48331410e3e5071ebdf424da319887eaf89da6/matrix86.s,10,4,delan,3/16/2016 2:52 +10444695,COWL Confinement with Origin Web Labels,http://w3c.github.io/webappsec-cowl/,10,1,Oatseller,10/24/2015 20:11 +11655844,Is There an Artificial God? (1998),http://www.biota.org/people/douglasadams/,54,90,bigblind,5/8/2016 21:08 +11928957,Ask HN: What makes a technical interview crappy?,,2,4,amorphid,6/18/2016 15:15 +11877891,Google Street View banned in India due to security concerns,http://www.telegraph.co.uk/technology/2016/06/10/google-street-view-banned-in-india-due-to-security-concerns/,95,73,eplanit,6/10/2016 17:12 +10813660,Network visualization: mapping Shakespeares tragedies,http://www.martingrandjean.ch/network-visualization-shakespeare/,17,2,hunglee2,12/30/2015 19:07 +11246235,A Plan in Case Robots Take the Jobs: Give Everyone a Paycheck,http://mobile.nytimes.com/2016/03/03/technology/plan-to-fight-robot-invasion-at-work-give-everyone-a-paycheck.html?smprod=nytcore-iphone&smid=nytcore-iphone-share&_r=0&referer=http://kompakt.welt.de/1OmLYOIsO0o26ouEUigMM2/grundeinkommen,1,1,doener,3/8/2016 16:26 +10581889,The Rise of Worse Is Better (1991),https://www.jwz.org/doc/worse-is-better.html,2,1,momonga,11/17/2015 16:00 +11111659,The Vulkan Graphics API Is Hereand Your Nvidia GPU Is Ready,http://blogs.nvidia.com/blog/2016/02/16/vulkan-graphics-api/,6,1,doener,2/16/2016 17:45 +10839773,Amazon Is Capturing Bigger Slice of U.S. Online Holiday Spending,http://www.bloomberg.com/news/articles/2015-12-16/amazon-is-capturing-bigger-slice-of-u-s-online-holiday-spending,49,63,gmays,1/4/2016 23:50 +10835791,The Effects of Virtual Reality on Our Body and Mind?,https://unimersiv.com/post/the-effects-of-virtual-reality-on-our-body-and-mind-38/,2,1,BaptisteGreve,1/4/2016 14:38 +10282903,Fast Convolutional Nets with Fbfft: A GPU Performance Evaluation,https://research.facebook.com/publications/695244360582147/fast-convolutional-nets-with-fbfft-a-gpu-performance-evaluation/,27,6,fitzwatermellow,9/26/2015 12:24 +10614323,You're Not the Yuan That I Want,http://www.bloombergview.com/articles/2015-11-22/china-is-real-roadblock-to-the-yuan-s-emergence,1,2,vincent_s,11/23/2015 13:05 +11764121,Interactive Visualizations for Profiling R Code,http://rstudio.github.io/profvis/,45,4,wch,5/24/2016 18:15 +11753724,Wittgenstein's Beetle in the Box Analogy,https://aeon.co/videos/does-the-meaning-of-words-rest-in-our-private-minds-or-in-our-shared-experience,1,1,rfreytag,5/23/2016 13:35 +10459093,Gobot 0.10 released Golang framework for robotics and IoT,http://gobot.io/blog/2015/10/27/gobot-0.10-less-is-more/,46,2,deadprogram,10/27/2015 16:25 +10504142,Ask HN: Looking for a technical interview coach,,4,4,allsystemsgo,11/4/2015 2:15 +10957235,Show HN: License-up It's 2016. Update all outdated licenses from command line,https://github.com/sungwoncho/license-up,4,3,stockkid,1/23/2016 4:49 +11360064,"Scrutiny of 'Truthy', a university project that studies trends on Twitter (2014)",http://thehill.com/policy/technology/221565-five-things-to-know-about-truthy,41,12,diyorgasms,3/25/2016 13:56 +11691247,Petter Reinholdtsen: Debian Now with ZFS on Linux Included,http://people.skolelinux.org/pere/blog/Debian_now_with_ZFS_on_Linux_included.html,2,1,desiderantes,5/13/2016 16:17 +10758853,Show HN: HaVoc Build smart health apps powered by health vocabularies,https://github.com/chintanop/health-vocabulary-rest-api,7,3,chintan,12/18/2015 15:18 +10957415,"Google just published a free, three-month course on deep learning",http://www.theverge.com/2016/1/22/10813984/google-deep-learning-udacity,3,1,cgoodmac,1/23/2016 6:18 +11837831,Curbs on free speech are growing tighter. It is time to speak out,http://www.economist.com/news/leaders/21699909-curbs-free-speech-are-growing-tighter-it-time-speak-out-under-attack,251,147,paulpauper,6/4/2016 20:25 +10882409,Show HN: Rst2ansi a rst document renderer for your terminal,https://github.com/Snaipe/python-rst-to-ansi,1,5,Snaipe,1/11/2016 19:04 +10490240,Rails 5 allows setting custom HTTP Headers for assets,http://blog.bigbinary.com/2015/10/31/rails-5-allows-setting-custom-http-headers-for-assets.html,5,1,vipulam,11/2/2015 5:44 +11950386,Atlassian sponsors 50% course fees for CS courses on Coursera,https://blog.coursera.org/post/146265319957,4,1,jngiam1,6/21/2016 23:41 +12441308,400 Years of Equator Hazings: Surviving the Wrath of King Neptune's Court,http://www.collectorsweekly.com/articles/400-years-of-equator-hazings/,52,14,Thevet,9/7/2016 6:39 +11103040,Russia's improved ballistic missiles to be tested as asteroid killers,http://tass.ru/en/science/855968,54,51,rbanffy,2/15/2016 12:47 +12310820,Cross-Language Compiler Benchmarking,http://stefan-marr.de/papers/dls-marr-et-al-cross-language-compiler-benchmarking-are-we-fast-yet/,34,4,ingve,8/18/2016 6:56 +12067517,Ask HN: Does anybody have a list of HN story ids including 'dead' submissions?,,5,4,jacquesm,7/10/2016 22:15 +12030296,Felony An open-source PGP keychain,https://github.com/henryboldi/felony,469,229,henryboldi,7/4/2016 12:30 +10647287,Why Hackers Must Welcome Social Justice Advocates,https://medium.com/@coralineada/why-hackers-must-welcome-social-justice-advocates-1f8d7e216b00#.jyd01hyyi,3,7,chei0aiV,11/30/2015 2:36 +11868774,"Celery, non-blocking code and quest against coroutines",http://blog.domanski.me/how-celery-fixed-pythons-gil-problem/,129,130,mdomans,6/9/2016 11:55 +11303688,Creating a JSON API (spec) implementation from scratch,https://samurails.com/jutsu/jutsu-17-creating-the-yumi-library-a-json-api-implementation-from-scratch/,4,1,tn6o,3/17/2016 11:25 +12514664,A Solar Powered Backpack for Every Child Needing Light,https://www.thesoularbackpack.com/,13,7,khallil,9/16/2016 15:29 +10631176,Show HN: BYRD Bring Your Restricted Documents,https://byrd.io,5,2,sp0rkyd0rky,11/26/2015 3:55 +10931219,Announcing Our Worst Passwords of 2015,https://www.teamsid.com/worst-passwords-2015/,1,1,wuliwong,1/19/2016 15:10 +10852104,Stop Unit Testing Everything,https://medium.com/@puppybits/stop-unit-testing-everything-e1afb20a5ab3#.pp5ym2hq1,3,1,puppybits,1/6/2016 17:51 +11676417,"Ask HN: Do I have to go through recruiters nowadays, how do you find new jobs?",,185,144,minionslave,5/11/2016 15:52 +12573886,Talking to C Programmers about C++ [video],https://www.youtube.com/watch?v=D7Sd8A6_fYU,81,112,adamnemecek,9/25/2016 3:59 +10581740,Did the Soviets Actually Build a Better Space Shuttle? (2013),http://www.popularmechanics.com/space/rockets/a9763/did-the-soviets-actually-build-a-better-space-shuttle-16176311/,7,2,ohjeez,11/17/2015 15:41 +11716439,Every Document Published from the Snowden Archive,https://github.com/joshbegley/NSA-Stories,4,1,tater___tots,5/17/2016 19:11 +10630709,A Beer Placed on the Gun of a Moving Tank Sits Without Spilling,https://www.youtube.com/watch?v=zYI6gOc-3vQ,6,1,MarlonPro,11/26/2015 0:41 +12454729,Ale genomics: how humans tamed beer yeast,http://www.nature.com/news/ale-genomics-how-humans-tamed-beer-yeast-1.20552,7,1,philbo,9/8/2016 16:53 +11260344,"25% of Slack users say it's a distraction, though 95% see better communication",http://blog.bettercloud.com/real-time-enterprise-messaging-comparison-data/,4,1,booksnearme,3/10/2016 16:57 +11344792,"Why Dating Apps Are Unfixably Broken, and What We Can Do Instead",https://medium.com/@baronwilleford/why-dating-apps-are-unfixably-broken-227f730d5781#.ialw7ugr1,2,2,baron816,3/23/2016 14:34 +12209118,Mcdonalds copying cyriak cows cows cows in their new commercial?,https://twitter.com/cyriakharris/status/760435431943053312,4,2,itayadler,8/2/2016 11:28 +11973544,The New Nationalism,http://magarshak.com/blog/?p=250,1,3,EGreg,6/24/2016 21:17 +12474556,Accessurl Share accounts without giving away your password,https://accessurl.com/,5,2,lachgr,9/11/2016 17:45 +12396973,Thank HN: For saving me hours of reading,,7,1,oxplot,8/31/2016 9:08 +10410015,Rant: On the C++ std::experimental::variant to come,http://talesofcpp.fusionfenix.com/post-21/rant-on-the-stdexperimentalvariant-to-come,34,11,ingve,10/18/2015 22:07 +12523146,Ask HN: How relevant are Master's degrees in tech today?,,11,6,red_fox,9/17/2016 23:48 +11859807,When Haskell is Faster than C (2013),http://paulspontifications.blogspot.com/2013/01/when-haskell-is-faster-than-c.html,69,86,mightybyte,6/8/2016 3:31 +11726962,Book: Deep Learning with Python,http://www.datasciencecentral.com/forum/topics/book-deep-learning-with-python,3,1,vincentg64,5/18/2016 23:50 +10192928,Bibliotheca Anonoma,https://github.com/bibanon/bibanon/wiki,10,1,evilsimon,9/9/2015 17:54 +10390317,Unicorn bracketology which startup unicorn is the most undervalued?,https://www.cbinsights.com/research-unicorn-bracket,11,2,asanwal,10/14/2015 23:39 +10593947,"Show HN: Sqlata, the SQL builder I wanted",https://github.com/lethalman/sqlata,7,2,Lethalman,11/19/2015 10:29 +11986282,"AlphaGo taught itself to win, but without humans it would have run out of time",https://www.theguardian.com/technology/2016/jun/27/alphago-deepmind-ai-code-google,1,1,jonbaer,6/27/2016 14:21 +11088931,The New Power Dressing,http://www.nytimes.com/2016/02/11/t-magazine/fashion/the-new-dress-code.html,1,1,taylorbuley,2/12/2016 17:44 +10659531,Show HN: Wake Me Up When It Launches,http://wake-me-up-when-it-launches.com/,3,3,namuol,12/1/2015 22:54 +12140410,How a Guy from a Montana Trailer Park Overturned 150 Years of Biology,http://www.theatlantic.com/science/archive/2016/07/how-a-guy-from-a-montana-trailer-park-upturned-150-years-of-biology/491702/?single_page=true,5,1,kanamekun,7/21/2016 22:01 +11597727,I'm Writing a Book on Security,https://www.schneier.com/blog/archives/2016/04/im_writing_a_bo.html,120,16,CapitalistCartr,4/29/2016 18:29 +10851778,Magic Not so magical experience of an early adopter,http://www.davecraige.com/magic/,2,1,nebula,1/6/2016 17:15 +10771141,Docker Startup StackEngine Bought by Oracle,http://www.businessinsider.com/oracle-bought-stackengine-2015-12,17,6,karlkatzke,12/21/2015 14:22 +11910888,Ask HN: What payment company do you use that automatically apply EU VAT rates?,,14,11,cookiemonsta,6/15/2016 18:05 +11621553,"HP Unveils Premium Chromebook: 3K Display, Intel Core M, 16 GB of RAM and USB-C",http://www.anandtech.com/show/10291/hp-unveils-premium-chromebook-3k-display-intel-core-m3-16-gb-of-ram-and-usbc,229,229,msh,5/3/2016 15:36 +11981606,David versus Goliath A Tale About the Internet in Central London,http://www.prosyn.co.uk/david-versus-goliath-tale-internet-central-london/,3,1,bpierre,6/26/2016 17:15 +12022916,"Geoffrey Hill, 'one of the greatest English poets', dies aged 84",https://www.theguardian.com/books/2016/jul/01/geoffrey-hill-one-of-the-greatest-english-poets-dies-aged-84,22,3,tintinnabula,7/2/2016 15:48 +10415476,"Airing: the first hoseless, maskless, micro-CPAP",https://www.indiegogo.com/projects/airing-the-first-hoseless-maskless-micro-cpap#/story,7,1,jcslzr,10/19/2015 20:26 +10660941,"Show HN: A lightweight, framework-agnostic database migration tool",https://github.com/adrianmacneil/dbmate,3,3,adrianmacneil,12/2/2015 4:24 +10262872,Is another human living inside of you?,http://www.bbc.com/future/story/20150917-is-another-human-living-inside-you,8,1,jsonmez,9/23/2015 1:36 +10328686,Delayed_action: rails gem to queue long running actions and avoid timeouts,https://github.com/mvcodeclub/delayed_action,1,1,tarr11,10/4/2015 20:25 +10265836,Analyse Asia 61 SparkLabs and Startup Hubs with Bernard Moon,http://analyse.asia/2015/09/23/episode-61-sparklabs-startup-hubs-with-bernard-moon/,1,1,bleongcw,9/23/2015 16:00 +11593798,Flaws in Scrum and Agile,https://www.pandastrike.com/posts/20150304-agile,10,2,mjswensen,4/29/2016 4:40 +11222594,Henrietta Lacks: the mother of modern medicine,https://www.theguardian.com/science/2010/jun/23/henrietta-lacks-cells-medical-advances,3,1,sgift,3/4/2016 8:07 +10792529,Hospital on Airship May Sweep Patients Above Clouds in Quest of Sunlight (1930),http://blog.modernmechanix.com/hospital-on-airship-may-sweep-patients-above-clouds-in-quest-of-more-sunlight/,39,14,protomyth,12/25/2015 22:19 +10995055,Computer Museum bids farewell to Babbage engine,http://www.mv-voice.com/print/story/2016/01/29/computer-museum-bids-farewell-to-babbage-engine,126,53,jgrahamc,1/29/2016 13:34 +11229908,Subway Systems at the Same Scale,http://fakeisthenewreal.org/subway/,2,1,laen,3/5/2016 16:27 +10464219,Grafana 2.5 Released Cloudwatch support,http://grafana.org/blog/2015/10/28/Grafana-2-5-Released.html,14,2,eloycoto,10/28/2015 13:16 +11357354,Ask HN: Open source our multi-database indexing engine?,,10,9,ChrisDutrow,3/24/2016 23:24 +11159414,Justice Department Wants Apple to Extract Data from 12 Other iPhones,http://www.macrumors.com/2016/02/23/doj-vs-apple-12-court-orders/,1,1,abruzzi,2/23/2016 15:17 +11839207,The Shocking Secret About Static Types,https://medium.com/javascript-scene/the-shocking-secret-about-static-types-514d39bf30a3,6,2,ericelliott,6/5/2016 1:31 +12505615,A Pixel Artist Renounces Pixel Art (2015),http://www.dinofarmgames.com/a-pixel-artist-renounces-pixel-art/,356,114,bpierre,9/15/2016 12:46 +11084523,Twitter: Years After the Alphabet Acquisition,https://medium.com/@karan/twitter-years-after-the-alphabet-acquisition-3f5b5b168fb5#.c5dp4gntg,3,2,karangoeluw,2/12/2016 0:34 +10998178,Show HN: Biogra.Me Tell your life story,https://biogra.me,3,2,salparadi,1/29/2016 20:20 +11601423,The DAO Hub is now live,https://daohub.org/,8,3,jhildings,4/30/2016 12:25 +10412866,Even More Brainfuck Optimisations,http://www.wilfred.me.uk/blog/2015/10/18/even-more-bf-optimisations/,56,2,mmastrac,10/19/2015 13:49 +10467768,Phobias may be memories passed down in genes from ancestors,http://www.telegraph.co.uk/news/science/science-news/10486479/Phobias-may-be-memories-passed-down-in-genes-from-ancestors.html,6,1,kafkaesq,10/28/2015 22:04 +11543295,Male Practice: Gender Inequality in Orthopaedic Surgery,http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3706651/,1,1,douche,4/21/2016 16:20 +11105161,"VCs, don't compare me to your wife",https://medium.com/life-tips/vcs-don-t-compare-me-to-your-wife-just-don-t-9dc2c8c1ac93,102,141,hodgesmr,2/15/2016 18:56 +10629881,Ask HN: YCombinator's SAFE for UK?,,5,1,sameernoorani,11/25/2015 21:37 +11198159,I am writing a book about event-driven serverless apps: AWS Lambda in Action,https://eventdrivenapps.com,3,1,danilop,2/29/2016 20:26 +12081664,Ask HN: Is it advisable to develop a high-scale website using only AWS Lambda?,,9,4,demetriusnunes,7/12/2016 19:24 +10964408,Michael Lewis: The Scourge of Wall Street,http://www.theguardian.com/film/2016/jan/17/michael-lewis-big-short-wall-street-crash-book-film?CMP=share_btn_tw,62,84,pmcpinto,1/24/2016 22:46 +12568672,Ask HN: Do you subvocalize when reading code?,,7,6,anderspitman,9/23/2016 23:35 +12072030,ES6 Feature Complete,https://webkit.org/blog/6756/es6-feature-complete/,5,3,okket,7/11/2016 16:09 +10763416,An Open Letter to California Air Resources Board on VW Cheating Scandal,http://www.takepart.com/open-letter-to-california-air-resources-board-chairman-mary-nichols,90,67,bontoJR,12/19/2015 12:39 +10580299,Intel's 72-Core Knight's Landing Xeon Phi Chip Cleared for Takeoff,http://hothardware.com/news/intels-72-core-knights-landing-xeon-phi-supercomputer-chip-cleared-for-takeoff,84,48,taspeotis,11/17/2015 10:57 +11183195,The rechargeable revolution: A better battery,http://www.nature.com/news/the-rechargeable-revolution-a-better-battery-1.14815,2,1,jseliger,2/26/2016 18:51 +11238329,Ask HN: Computer Science university courses in the UK,,2,3,wjh_,3/7/2016 11:37 +11054791,"Sept. 13, 1833: Imported Ice Chills, Thrills India (2010)",http://www.wired.com/2010/09/0913calcutta-ice-ship/,26,5,bhaumik,2/7/2016 20:56 +11769378,Your words may predict your future mental health,https://www.ted.com/talks/mariano_sigman_your_words_may_predict_your_future_mental_health,3,1,wslh,5/25/2016 12:50 +10897460,Ask HN: Is Knuth's TAOCP worth the time and effort?,,205,131,QuadrupleA,1/13/2016 21:00 +12095684,Ash HN: new flag policy?,,2,3,dudul,7/14/2016 17:25 +11047575,Google DeepMinds Champion Go AI: A Sign of Growing AI Complexity?,https://alexdonaldsonmusings.wordpress.com/2016/02/05/google-deepminds-champion-go-ai-a-sign-of-growing-ai-complexity/,1,1,alexdonaldsonnz,2/6/2016 12:54 +11662614,In Silicon Valley S03E03 which data center was it that Richard was taken a tour?,,3,2,ForFreedom,5/9/2016 19:52 +10330276,RemoteStorage An open protocol for per-user storage,https://remotestorage.io/,33,4,reitanqild,10/5/2015 6:52 +11456849,U.S. demands Apple unlock phone in NYC drug case,http://www.usatoday.com/story/news/2016/04/08/justice-moving-forward-separate-apple-case/82788824/,29,4,ahochhaus,4/8/2016 18:38 +12155561,A Tiny Chip That Could Disrupt Exascale Computing (2015),http://www.nextplatform.com/2015/03/12/the-little-chip-that-could-disrupt-exascale-computing/,56,55,GUNHED_158,7/24/2016 23:45 +11894855,Ask HN: Are you still using Socket.IO?,,4,1,swineflu,6/13/2016 15:53 +10811806,"How to deploy node apps on Linux, 2016 edition",https://certsimple.com/blog/deploy-node-on-linux,7,2,nailer,12/30/2015 12:31 +12032343,Can Capitalism Be Redeemed?,https://hbr.org/2016/07/can-capitalism-be-redeemed,19,57,juanplusjuan,7/4/2016 18:52 +12255071,Copperhead OS: The startup that wants to solve Androids woeful security,http://arstechnica.co.uk/security/2016/08/copperhead-os-fix-android-security/,4,1,walterbell,8/9/2016 15:12 +12386348,"A Sneak Peek Comparison of x264, x265, and libvpx",http://techblog.netflix.com/2016/08/a-large-scale-comparison-of-x264-x265.html,156,54,babak_ap,8/29/2016 23:49 +12495929,Facebook Took 2 Weeks Figuring Out Difference Between War Photo and Kiddie Porn,http://www.huffingtonpost.com/entry/facebook-censorship-vietnam-photo-norwegian-paper_us_57d2c6b6e4b06a74c9f42fdb,2,1,CapitalistCartr,9/14/2016 11:54 +10516335,Why is Apple search so terrible on all their products?,,15,13,c-slice,11/5/2015 21:46 +11142694,The Koch Brothers New Brand,http://www.nybooks.com/articles/2016/03/10/koch-brothers-new-brand/,27,3,sasvari,2/21/2016 0:32 +11004328,A Chrome extension to quickly directly you to any page with a simple key,https://chrome.google.com/webstore/detail/redirect/ndmlefihodnjkipamdighnjjmiddafai,9,2,kritts,1/30/2016 23:35 +10347468,Waterstones to stop selling Kindle as book sales surge,http://www.theguardian.com/books/2015/oct/06/waterstones-stop-selling-kindle-book-sales-surge,2,1,e15ctr0n,10/7/2015 17:29 +10674278,Psychonauts 2,https://www.fig.co/campaigns/psychonauts-2,28,25,Doolwind,12/4/2015 2:49 +11027982,Ask HN: Interesting Online Communities?,,2,1,juandazapata,2/3/2016 17:44 +10845049,Show HN: Visualizing 9 years of relationships with instant message frequency,http://hipsterdatascience.com/messages,11,3,cbabraham,1/5/2016 18:39 +10975813,More evidence emerges for 'transmissible Alzheimer's' theory,http://www.nature.com/news/more-evidence-emerges-for-transmissible-alzheimer-s-theory-1.19229,171,33,randomname2,1/26/2016 20:33 +11756674,Zach Holman joins GitLab as advisor,https://twitter.com/holman/status/734842346278244352,342,69,mhfs,5/23/2016 20:28 +11287071,"Ask HN: Middle of project, side project raised money, what do I do?",,5,6,throwaway_1122,3/15/2016 2:36 +12329545,Nabokovs great gay comic novel,http://www.the-tls.co.uk/articles/public/80834/,13,3,samclemens,8/21/2016 5:29 +10639095,Internal Reprogrammability (2013),http://martinfowler.com/bliki/InternalReprogrammability.html,25,5,joeyespo,11/27/2015 22:18 +10739730,Angular 2 Beta released,http://angularjs.blogspot.com/,418,263,javajoshw,12/15/2015 19:10 +11866987,Microsoft Edge WebGL engine open-sourced,https://github.com/MicrosoftEdge/WebGL,361,97,aroman,6/9/2016 1:25 +10761370,"4 Months of serious coding, tutorial request site is finally complete (the beta)",https://wanted-tuts.com,1,1,tonechild,12/18/2015 22:19 +10886259,Google recommends inlining small CSS,https://developers.google.com/speed/docs/insights/OptimizeCSSDelivery,251,136,jayfk,1/12/2016 8:47 +11237522,"Demonstrations of sampling, quantization, bit-depth, and dither [video]",http://xiph.org/video/vid2.shtml,28,6,nathankot,3/7/2016 6:57 +11709078,"Hello, This Is London Rising: 3D Printing Maps from LIDAR Data",http://www.aeracode.org/2016/5/16/hello-london-rising/,140,41,andrewgodwin,5/16/2016 19:49 +11184510,Zero Knowledge Contingent Payment Executed on the Bitcoin Network,https://bitcoincore.org/en/2016/02/26/zero-knowledge-contingent-payments-announcement/,10,1,zmanian,2/26/2016 21:45 +10935898,"The Debate on Whether Americas Best Days Are Past, or Ahead",http://www.nytimes.com/2016/01/20/business/economy/a-somber-view-of-americas-pace-of-progress.html,3,1,augustocallejas,1/20/2016 3:34 +12396347,14 terabytes of code: Spaces or Tabs?,https://medium.com/@hoffa/400-000-github-repositories-1-billion-files-14-terabytes-of-code-spaces-or-tabs-7cfe0b5dd7fd,6,3,modeless,8/31/2016 6:19 +10870206,Carbon Black A Global Market Overview,http://industry-experts.com/verticals/chemicals-and-materials/carbon-black-a-global-market-overview#.VpCaIMLwLgk.hackernews,1,2,industryexperts,1/9/2016 5:27 +11768630,APIs.guru Wikipedia for Web APIs,http://swagger.io/apis-guru-wikipedia-for-web-apis/,6,5,IvanGoncharov,5/25/2016 9:36 +11753963,Clojure.spec Rationale and Overview,http://clojure.org/about/spec,474,153,SCdF,5/23/2016 14:14 +12397246,Tabs or spaces Parsing a 1B files among 14 programming languages,https://medium.com/@hoffa/400-000-github-repositories-1-billion-files-14-terabytes-of-code-spaces-or-tabs-7cfe0b5dd7fd#.ux86pwfmi,70,121,nikbackm,8/31/2016 10:23 +11334113,iPhone SE first look: 2012 meets 2016,http://www.macworld.com/article/3046615/iphone-ipad/iphone-se-first-look-its-2012-all-over-again.html,2,1,prostoalex,3/22/2016 2:53 +10910513,"A Pirates Life for Me, Part 3: Case Studies in Copy Protection",http://www.filfre.net/2016/01/a-pirates-life-for-me-part-3-case-studies-in-copy-protection/,62,17,NateLawson,1/15/2016 17:02 +10260263,You Don't Have What It Takes to Be a Founder,http://calacanis.com/2015/09/20/you-dont-have-what-it-takes,2,3,rjanoch,9/22/2015 17:45 +10346247,Dark Patterns User interfaces designed to trick people,http://darkpatterns.org/,4,1,adamzerner,10/7/2015 14:37 +11461697,Circuit Simulator Lets You Play Around with Electronics Components in Browser,http://lifehacker.com/circuit-simulator-lets-you-play-around-with-electronics-1769907355,11,2,joubert,4/9/2016 15:35 +10874190,For the first time the expected value of a lotto ticket is greater than its cost,http://www.theguardian.com/science/2016/jan/09/national-lottery-lotto-drawing-odds-of-winning-maths,2,4,tomkwok,1/10/2016 4:40 +11021271,Investigating the overhead cost of compiled ES2015,https://github.com/samccone/The-cost-of-transpiling-es2015-in-2016,83,12,tilt,2/2/2016 18:23 +12437126,"PiBakery, the easist way to set up a Raspberry Pi",http://www.pibakery.org/,3,1,AstroJetson,9/6/2016 16:23 +12043692,"Trym app help you view, optimize and convert SVG icons",http://kontentapps.com/trym,2,1,artnosenko,7/6/2016 15:27 +10266103,Stanford Encyclopedia of Philosophy shows a higher-quality internet is possible,http://qz.com/480741/this-free-online-encyclopedia-has-achieved-what-wikipedia-can-only-dream-of/,159,100,kp25,9/23/2015 16:40 +12083124,A Course in Machine Learning,http://ciml.info,402,19,spv,7/13/2016 0:08 +11195128,Code search for the open source,http://codevisually.com/cocycles-open-source-search-engine/,1,1,jonisar,2/29/2016 12:52 +11903921,"In New York City, Whats the Difference Between a $240 and a $6.95 Sushi Roll?",https://psmag.com/in-new-york-city-whats-the-difference-between-a-240-sushi-roll-and-a-6-95-sushi-roll-cd057bfa3a29#.e310bj5pt,3,1,MarlonPro,6/14/2016 17:58 +11458621,Un-spoken complexity of NoSQL,http://pjuu.github.io/pjuu/nosql/mongo/choices/2016/04/08/unspoken-complexity-nosql.html,7,1,pjuu,4/8/2016 22:33 +10182395,Google Chrome reportedly bypassing Adblock,http://www.neowin.net/news/google-chrome-reportedly-bypassing-adblock-forces-users-to-watch-full-length-video-ads,15,1,walterclifford,9/7/2015 18:10 +12281755,Streaming service Blab.im shutting down to reinvent itself,https://medium.com/@shaanvp/blab-is-dead-long-live-blab-d2f72449ddb8,3,1,nerdy,8/13/2016 15:09 +11104265,Leaving PHP is too expensive,http://sucky.ninja/leaving-php-is-too-expensive/,55,100,staticelf,2/15/2016 16:42 +12370393,Apple is under fire for excessive overtime and illegal working conditions,http://qz.com/767087/apple-is-under-fire-for-excessive-overtime-and-illegal-working-conditions-in-another-chinese-factory/,32,8,rakibtg,8/27/2016 1:16 +10943637,Ask HN: Best cross platform app development framework in 2016?,,3,4,nerva,1/21/2016 5:59 +11772404,Lifting a Million Pounds of Stainless Steel,http://www.npr.org/sections/thetwo-way/2016/05/20/477926381/how-do-you-lift-a-million-pounds-of-stainless-steel-very-carefully?,82,27,state_machine,5/25/2016 19:28 +10383108,Did your college educate students on popular languages or current events?,,5,7,drowninginnet,10/13/2015 20:09 +11649467,Show HN: Multi New Tab for Chrome Your favorite sites on new tab pages,http://getmulti.co/,1,1,jlft,5/7/2016 13:17 +11394985,"Uber finally breaks away from email, launches in-app support",http://techcrunch.com/2016/03/30/uber-switches-the-help-desk-to-in-app-support-for-parts-of-the-world-that-dont-believe-in-email/#comments,1,1,srikrishnan,3/31/2016 4:25 +12536871,Open Source Micro-Purchasing Forked in Singapore,https://gbuy.gds-gov.tech/,84,13,fieryeagle,9/20/2016 3:42 +10529802,Facebook won't let you type this,http://money.cnn.com/2015/11/05/technology/facebook-tsu/,27,14,jarcane,11/8/2015 20:42 +11220606,FTC CTO: Time to Rethink Mandatory Password Changes,https://www.ftc.gov/news-events/blogs/techftc/2016/03/time-rethink-mandatory-password-changes,3,1,hmahncke,3/3/2016 22:35 +10600184,Dont Blame Edward Snowden for the Paris Attacks,http://www.newyorker.com/news/amy-davidson/dont-blame-edward-snowden-for-the-paris-attacks,33,13,jeo1234,11/20/2015 8:02 +11527753,What is the value of a startup accelerator? A retrospective look,https://blog.sentinelmarine.net/what-is-the-value-of-a-startup-accelerator-a2dc0ed630bf,9,2,pedrokost,4/19/2016 15:45 +12366703,Linus Torvalds Excoriates Software Freedom Conservancy,https://lists.linuxfoundation.org/pipermail/ksummit-discuss/2016-August/003580.html,36,13,linuxstuff,8/26/2016 14:57 +10818804,"Hosting Survey: GoDaddy #1, CloudFlare #2",http://w3techs.com/blog/entry/new_surveys_on_web_hosting_and_reverse_proxy_services,3,2,coderholic,12/31/2015 18:14 +11337087,Do you know any book/study related with Database Migration topic?,,6,2,iqualisoni,3/22/2016 15:02 +10513241,"A mobile, desktop and website app with the same code",https://github.com/benoitvallon/react-native-nw-react-calculator,193,80,benoitvallon,11/5/2015 13:48 +11467747,Pwncloud Bad crypto in the Owncloud encryption module,https://blog.hboeck.de/archives/880-Pwncloud-bad-crypto-in-the-Owncloud-encryption-module.html,175,43,Artemis2,4/10/2016 19:32 +11831369,Leaked Documents Reveal ClassPasss Plan for World Domination,http://www.vanityfair.com/news/2016/06/leaked-documents-reveal-classpass-surprising-next-move,1,1,ALee,6/3/2016 16:39 +10422540,"Homan Square revealed: how Chicago police 'disappeared' 7,000 people",http://www.theguardian.com/us-news/2015/oct/19/homan-square-chicago-police-disappeared-thousands,2,1,prawn,10/20/2015 23:21 +10200593,Ellen Pao Speaks: I Am Now Moving On,http://recode.net/2015/09/10/ellen-pao-speaks-i-am-now-moving-on/,7,2,m_haggar,9/10/2015 21:12 +10408062,Show HN: Rawcode.io a place to find and store code snippets,http://rawcode.io/,3,2,BenMann_,10/18/2015 12:40 +12432418,"I work at a giant corporation, not a startup",https://medium.com/@ckdarby/why-not-found-a-startup-work-at-one-wait-you-work-at-a-giant-corporation-d740e91d9651#.4sec6owyr,3,2,ckdarby,9/5/2016 21:53 +12028317,How Smart Leaders Build Trust,https://www.gsb.stanford.edu/insights/how-smart-leaders-build-trust?utm_source=facebook&utm_medium=social&utm_content=07012016&utm_campaign=gsbbrand,46,4,ccvannorman,7/4/2016 0:38 +10586524,"In 1939, US citizens voted against immigration of 10k refugee kids from Germany",https://www.washingtonpost.com/news/worldviews/wp/2015/11/17/what-americans-thought-of-jewish-refugees-on-the-eve-of-world-war-ii/,13,4,thepoet,11/18/2015 7:49 +10823315,How Gawker Brings in Millions in Affiliate Sales,http://www.wsj.com/articles/how-gawker-brings-in-millions-selling-headphones-chargers-and-flashlights-1451579813,52,14,nichodges,1/1/2016 20:41 +10325847,How Can We Make Learning Social?,,4,4,FaisalAlTameemi,10/3/2015 23:37 +12376154,What it feels like to be the last gen to remember life before the internet,http://qz.com/252456/what-it-feels-like-to-be-the-last-generation-to-remember-life-before-the-internet/,84,95,wyclif,8/28/2016 11:49 +11075829,Hearing Heartbeat in Audio and Video: A Deep Learning Project,http://www.samcoope.com/posts/reading-faces,54,13,CaHoop,2/10/2016 20:44 +11305644,Ask HN: What's going to be the next big thing?,,17,16,livus,3/17/2016 16:53 +10714638,Soundboy My talk from YC startup school (2014),http://soundboy.tumblr.com/post/93314139065/my-talk-from-yc-startup-school,12,1,prostoalex,12/11/2015 0:17 +12079257,PyCon: Everybody Pays,http://jessenoller.com/blog/2011/05/25/pycon-everybody-pays,1,1,pmoriarty,7/12/2016 14:27 +10627039,"Show HN: NBLAS, Node C++ bindings to CBLAS",https://github.com/mateogianolio/nblas,13,2,megalodon,11/25/2015 13:28 +11901913,Show HN: Search the web like a ninja,https://SearchyApp.io/,4,1,AlexKaul,6/14/2016 13:35 +10322189,I met you in the rain on the last day of 1972,http://boston.craigslist.org/gbs/mis/5237173491.html,438,96,brandonmenc,10/3/2015 1:08 +11295530,"Islamic art inspires stretchy, switchable materials",http://www.bbc.com/news/science-environment-35818924,124,24,MichalSikora,3/16/2016 7:05 +12074879,AR is an MMO,http://www.raphkoster.com/2016/07/11/ar-is-an-mmo/,2,1,phodo,7/11/2016 21:34 +10308606,Tiny Core Linux,http://tinycorelinux.net/,56,10,Siecje,10/1/2015 1:10 +10970371,Internet Advertising Bureau head comments on adblocking,http://www.iab.com/news/rothenberg-says-ad-blocking-is-a-war-against-diversity-and-freedom-of-expression/,5,1,jimbobob,1/25/2016 22:11 +10505208,Guaranteed Basic Income A Crazy Idea?,http://www.cabot.net/issues/cwa/archives/2015/11/guaranteed-basic-income,11,6,imartin2k,11/4/2015 8:15 +11382722,It doesnt take a to be a good programmer,https://medium.com/@alexewerlof/it-doesn-t-need-a-penis-to-be-a-good-programmer-c3f426c1f1e7,2,1,hanifbbz,3/29/2016 16:36 +10587131,"Unimolecular Submersible Nanomachines. Synthesis, Actuation, and Monitoring",http://pubs.acs.org/doi/full/10.1021/acs.nanolett.5b03764,2,2,galaktor,11/18/2015 11:41 +12237539,Stack Computers: the new wave (1989),https://users.ece.cmu.edu/~koopman/stack_computers/,36,28,kercker,8/6/2016 8:48 +12175473,Dine Market Lays Off Staff,,1,1,esgourmet,7/27/2016 18:43 +11078533,"What 50,000 watts of RF energy sounds like through a jumper cable",https://www.facebook.com/W8MSU/videos/vb.210772745607630/1110939655590930,313,153,2bluesc,2/11/2016 6:19 +11573864,Ask HN: How will using containers save me money?,,1,4,sly010,4/26/2016 17:30 +11542509,The Bitcoin hash rate has increased by 28.2% over the last month,https://kaiko.com/statistics/hash-rate,76,95,arnauddri,4/21/2016 14:45 +10642655,Yedalog: Exploring Knowledge at Scale [pdf],http://research.google.com/pubs/archive/43462.pdf,24,3,espeed,11/28/2015 22:06 +11019965,CTO (equity) in Berlin,,1,1,agatakruszka,2/2/2016 15:25 +11257959,"Angular 2 coming to Java, Python and PHP",http://blog.jhades.org/angular-2-coming-to-java-python-the-first-multi-language-full-stack-platform/,3,2,vfc1,3/10/2016 8:35 +12460382,'Homo sapiens is an obsolete algorithm': Yuval Noah Harari,http://www.wired.co.uk/article/yuval-noah-harari-dataism,2,1,yarapavan,9/9/2016 8:11 +10364899,Ask HN: How do you find a cofounder for your project?,,5,2,iperez,10/10/2015 8:28 +11481720,Ask HN: Help with backups,,2,3,FreezerburnV,4/12/2016 17:39 +12167097,Making Sense of Everything with words2map,http://blog.yhat.com/posts/words2map.html,60,29,lmcinnes,7/26/2016 17:03 +10259008,Using Beacons as a timing solution (A GPS alternative),http://www.timecheck.in/?utm_source=hn&utm_medium=post&utm_campaign=beta,4,1,andrewgleave,9/22/2015 15:03 +12435826,Hong Kong unveils a digital hub to boost fintech startups and innovation,https://techcrunch.com/2016/09/06/hong-kong-fintech-hub/,1,1,endswapper,9/6/2016 13:30 +12484864,"Co-creator of 'Warcraft,' 'Diablo,' and 'StarCraft' is retiring at age 42",http://www.businessinsider.com/blizzard-senior-vp-chris-metzen-is-retiring-2016-9,4,5,minimaxir,9/13/2016 0:32 +10830158,Putins nuclear torpedo and Project Pluto,https://scottlocklin.wordpress.com/2015/12/31/putins-nuclear-torpedo-and-project-pluto/,104,40,cronjobber,1/3/2016 10:27 +12558589,Super Mario 64 1996 Developer Interviews,http://shmuplations.com/mario64/,335,96,Impossible,9/22/2016 17:38 +10836658,The 2 Types of Engineer,http://thinkfaster.co/2016/01/the-2-types-of-engineer/,7,2,wayofthesamurai,1/4/2016 16:56 +12319402,Lawsuit could be the beginning of the end for DRM,https://www.defectivebydesign.org/blog/lawsuit_could_be_beginning_end_drm,230,205,nomanisanisland,8/19/2016 11:54 +10861953,California's New Employment Laws for 2016,https://casetext.com/posts/californias-new-employment-laws-for-2016,5,1,lutesfuentes,1/8/2016 0:21 +12373236,Pair Programming has the potential for delivering software faster with lower cost,https://medium.com/@fagnerbrack/pair-programming-8cfbf2dc4d00,2,1,fagnerbrack,8/27/2016 17:22 +10242045,Autonomous Cars Break Uber,http://techcrunch.com/2015/09/18/autonomous-cars-break-uber/,17,19,kvee,9/18/2015 21:04 +10201230,Canada's secret plan to invade the U.S. in 1921,http://www.mprnews.org/story/2015/09/09/bcst-books-thread-canada-invasion,4,1,gruez,9/10/2015 23:43 +12255775,Knot DNS 2.3.0 release,https://lists.nic.cz/pipermail/knot-dns-users/2016-August/000918.html,2,2,okket,8/9/2016 16:34 +10288235,The Future of Language,https://www.washingtonpost.com/news/worldviews/wp/2015/09/24/the-future-of-language/,33,18,kafkaesq,9/27/2015 23:04 +12107664,Ask HN: How to get back a stolen car,,2,2,apa-sl,7/16/2016 20:03 +11436912,How Software Gets Bloated: From Telephony to Bitcoin,http://hackingdistributed.com/2016/04/05/how-software-gets-bloated/,179,54,bootload,4/6/2016 6:00 +12003678,Jamie Dimon Wants to Protect You from Innovative Startups,http://www.nytimes.com/2016/05/07/your-money/jamie-dimon-wants-to-protect-you-from-innovative-start-ups.html,1,1,adennis4,6/29/2016 18:43 +11340378,Hiring is broken,https://hibroken.com/,33,11,yitchelle,3/22/2016 22:18 +11679341,Betting Wrapper of Betfair API,https://github.com/Nyarum/betting,4,1,Nyarum,5/11/2016 21:13 +11543321,Pinterest Reinvents Itself to Prove Its Really Worth Billions,http://www.wired.com/2016/04/pinterest-reinvents-prove-really-worth-billions/,48,49,yurisagalov,4/21/2016 16:23 +10549559,Is President Obama Selling the Internet to Foreigners?,http://jerrickmedia.com/2015/president-obama-selling-internet-foreigners/,1,1,mrchickenhorse,11/11/2015 21:45 +10936836,Transcript of the parliamentary debate to ban Donald Trump from the UK,https://hansard.digiminster.com/commons/2016-01-18/debates/1601186000001/DonaldTrump,3,1,timlyo,1/20/2016 9:11 +11215618,"Adblocking is a 'modern-day protection racket', says culture secretary",http://www.theguardian.com/media/2016/mar/02/adblocking-protection-racket-john-whittingdale,4,1,anexprogrammer,3/3/2016 8:13 +11045270,"HN is in the same cluster as 2ch, not Techcrunch, on Twitter",https://www.hella.cheap/twitter-star-chart.html,197,46,rabidsnail,2/5/2016 22:50 +10500724,"Computer, Respond to This Email",http://googleresearch.blogspot.com/2015/11/computer-respond-to-this-email.html,562,194,dpf,11/3/2015 16:46 +12030255,"C14, the Secure Cold Storage Platform, for Free During the Summer",https://blog.online.net/2016/07/04/c14-the-secure-cold-storage-platform-for-free-during-the-summer/,68,36,tusbar,7/4/2016 12:18 +12372929,Google Cloud shut down this guy's business but now he's a fan for life,http://www.businessinsider.com/google-cloud-won-skeptic-after-shutting-site-down-2016-8,16,14,skybrian,8/27/2016 16:15 +10686836,Why I'm Excited About Native CSS Variables,http://philipwalton.com/articles/why-im-excited-about-native-css-variables/,129,31,clessg,12/6/2015 21:58 +11141003,Basic income may be needed to combat robot-induced unemployment,http://www.independent.co.uk/life-style/gadgets-and-tech/news/basic-income-artificial-intelligence-ai-robots-automation-moshe-vardi-a6884086.html,94,140,jonbaer,2/20/2016 17:38 +12233846,Can You Trademark a Hashtag?,http://www.thebrandprotectionblog.com/can-trademark-hashtag/,2,1,tantalor,8/5/2016 16:52 +12149338,The Majority Illusion in Social Networks,http://arxiv.org/abs/1506.03022,121,119,kurren,7/23/2016 12:54 +11009241,Core API Hypermedia Driven Web APIs,http://www.coreapi.org/,3,1,St-Clock,2/1/2016 2:15 +11824372,Carts without horses,http://www.aaronkharris.com/carts-without-horses,120,26,sctb,6/2/2016 17:29 +10327221,Is Open Source Open to Women?,http://www.toptal.com/open-source/is-open-source-open-to-women,2,1,knowbody,10/4/2015 11:17 +12309763,"The Wretched, Endless Cycle of Bitcoin Hacks",http://www.bloomberg.com/news/articles/2016-08-17/the-wretched-endless-cycle-of-bitcoin-hacks,2,1,petethomas,8/18/2016 1:08 +10346886,Building Web Applications with Make,http://www.smashingmagazine.com/2015/10/building-web-applications-with-make/,64,19,ingve,10/7/2015 16:17 +10424272,How an F Student Became Americas Most Prolific Inventor,http://www.bloomberg.com/features/2015-americas-top-inventor-lowell-wood/,15,10,pmcpinto,10/21/2015 8:31 +12293561,Lin-Manuel Miranda is now fighting ticket bots across the US,http://www.theverge.com/2016/8/15/12486238/bots-act-ticket-resale-fines-hamilton-chuck-schumer,8,1,jerryhuang100,8/15/2016 21:22 +12429076,Giant Panda no longer an endangered species,http://www.bbc.co.uk/newsround/37273632,202,58,justinv,9/5/2016 9:17 +10461289,Firms are wasting millions recruiting on only a few campuses,https://hbr.org/2015/10/firms-are-wasting-millions-recruiting-on-only-a-few-campuses,2,1,Futurebot,10/27/2015 21:29 +11651730,Cursors,http://cursors.io,6,1,Asseylum,5/7/2016 22:55 +11562582,Ask HN: Best books for understanding and training a cat,,5,2,SimplGy,4/25/2016 5:15 +12124904,[Promo Codes in Comments] Face Browse Control a Web Browser with Your Face,https://itunes.apple.com/us/app/face-browse-control-web-browser/id1126842590?ls=1&mt=8,1,1,AlexWulff,7/19/2016 21:06 +10775159,Google and Ford reportedly creating a new company to build self-driving cars,https://www.yahoo.com/autos/google-pairs-with-ford-to-1326344237400118.html,18,3,dshibarshin,12/22/2015 1:52 +12197197,Microsoft sued over Windows 10 update campaign,http://www.seattletimes.com/business/microsoft/microsoft-sued-over-windows-10-update-campaign/,174,198,rshx,7/31/2016 14:52 +11190008,"Pass a URL, Get Summarized Sentences in JSON",http://52.90.112.133/recommend/getSummary.html,4,1,meeper16,2/28/2016 5:37 +10234146,Facebook Tries to Lure Journalists Away from Twitter,http://www.wired.com/2015/09/facebook-gives-journalists-new-way-find-news-facebook/,5,1,Amorymeltzer,9/17/2015 16:06 +10260865,"If elected president, Jeb Bush will get rid of net neutrality rules",http://arstechnica.com/tech-policy/2015/09/if-elected-president-jeb-bush-will-get-rid-of-net-neutrality-rules/,28,2,pshin45,9/22/2015 19:06 +10218089,Google.com now unreachable on IE using Windows XP pre-SP3 (sha256),https://twitter.com/jvehent/status/643517302261026816,4,2,EwanToo,9/14/2015 23:14 +10710265,Show HN: PHP serialization/deserialization library in Go,https://github.com/lazyfunctor/gophpcereal,3,1,lazyfunctor,12/10/2015 12:23 +10651867,Readers Digest site has been attacking visitors for days,http://arstechnica.com/security/2015/11/hey-readers-digest-your-site-has-been-attacking-visitors-for-days/,2,1,pavornyoh,11/30/2015 21:18 +12563934,"The App Store is broken, long live apps",http://thenextweb.com/apps/2016/09/23/the-app-store-is-broken-long-live-the-apps/,8,3,nickreffitt,9/23/2016 12:08 +11925415,Show HN: UTClock Super Simple UTC Clock for Mac OS X Menu Bar,https://github.com/KNNCreative/UTClock,2,2,knncreative,6/17/2016 20:41 +11205244,Watch the House Judiciary Hearing of FBI vs. Apple Live,https://www.youtube.com/watch?v=g1GgnbN9oNw,5,1,Beowolve,3/1/2016 19:13 +10851143,SLOTH Security Losses from Obsolete and Truncated Transcript Hashes,http://www.mitls.org/pages/attacks/SLOTH,112,20,mukyu,1/6/2016 15:56 +11748092,Ask HN: Disabling paste in password boxes - why is it practiced?,,62,61,BIackSwan,5/22/2016 10:59 +11973840,"No, Brits aren't googling 'What is the EU?' because they don't know what EU is",http://www.geektime.com/2016/06/25/no-brits-are-not-googling-what-is-the-eu-because-they-dont-know-what-the-eu-is/,28,5,tekheletknight,6/24/2016 22:00 +12506958,Labels release cut-rate music streaming service amid shift to flexible pricing,http://www.reuters.com/article/us-music-streaming-labels-idUSKCN11L015,1,1,iamben,9/15/2016 15:27 +12406310,How to steal a developer's local database,http://bouk.co/blog/hacking-developers/,770,229,chachram,9/1/2016 15:53 +10406402,The Guru Meditation,https://www.youtube.com/channel/UCYt9E2d_GCrPzquW-5MZwmQ/featured,1,1,jthnews,10/17/2015 22:24 +11357816,China Government: China Needs Special Agents to Gather Secrets from the US,http://ipvm.com/forums/video-surveillance/topics/china-government-declares-china-needs-special-agents-to-gather-secrets-from-the-us,3,1,jhonovich,3/25/2016 1:02 +11326126,Here's what Americans don't understand about Nordic countries,http://www.businessinsider.com/what-americans-dont-understand-about-nordic-countries-2016-3,14,2,simonebrunozzi,3/21/2016 3:51 +11166852,Controlling vehicle features of Nissan LEAFs remotely via vulnerable APIs,http://www.troyhunt.com/2016/02/controlling-vehicle-features-of-nissan.html,139,29,marklubi,2/24/2016 14:17 +10737028,Watch today's Soyuz launch live (~11:00 GMT),http://livestream.com/esa/principia,2,1,shutton,12/15/2015 10:44 +12418891,How do you use HN?,https://docs.google.com/forms/d/e/1FAIpQLSfjXJ8stnCoCd1TRZIWIIadZA62sw9E5628PEtrQCPxdBMhCA/viewform,151,80,pvsukale3,9/3/2016 12:07 +10859383,The internet has made defensive writers of us all,https://pchiusano.github.io/2014-10-11/defensive-writing.html,257,174,dkarapetyan,1/7/2016 17:42 +10690126,Four Ways to Create a Mesh for a Sphere,https://gamedevdaily.io/four-ways-to-create-a-mesh-for-a-sphere-d7956b825db4#.5lzblag34,19,3,forrestthewoods,12/7/2015 15:49 +11070764,"Static, Ahead of Time Compiled Julia",http://juliacomputing.com/blog/2016/02/09/static-julia.html,112,84,Lofkin,2/10/2016 4:26 +10788116,Ask HN: The Struggles of Poverty and Trying to become a programmer from 0,,27,31,poveritysucks,12/24/2015 13:43 +11800195,Racial Fault Lines in Silicon Valley,https://blog.devcolor.org/racial-fault-lines-in-silicon-valley-390cd0e4a6dc#.m5yeca7q8,3,2,reubano,5/30/2016 8:11 +11730947,Node.js Async/Await in ES7,http://stackabuse.com/node-js-async-await-in-es7/,1,1,ScottWRobinson,5/19/2016 15:30 +10649782,Combine tags for social media cards markup,https://adactio.com/journal/9881,2,1,kingkool68,11/30/2015 15:17 +10447143,Open Science: Michael Nielsen TED Talk,https://www.youtube.com/watch?v=DnWocYKqvhw,2,1,amelius,10/25/2015 15:37 +10796398,What have we lost now that we can no longer read the sky?,https://aeon.co/essays/what-have-we-lost-now-we-can-no-longer-read-the-sky,53,29,benbreen,12/27/2015 4:22 +10287185,Computer Scientists Find Bias in Algorithms,http://spectrum.ieee.org/tech-talk/computing/software/computer-scientists-find-bias-in-algorithms,9,6,consciousbot,9/27/2015 17:21 +10697744,"No alcohol, no coffee for 15 months. This is what happened",https://medium.com/desk-of-van-schneider/no-alcohol-no-coffee-for-15-months-this-is-what-happened-1a2d052be9e7#.8j43wvt7i,2,2,Sealy,12/8/2015 17:14 +12561591,Why Im writing a 16-bit Windows Emulator,https://medium.com/@CantabileApp/win3mu-part-1-why-im-writing-a-16-bit-windows-emulator-2eae946c935d#.fqddlzmq6,13,1,redbluething,9/23/2016 1:01 +11163106,The peril of talking to normal people,http://www.math-chocolate-circus.com/the-peril-of-talking-to-normal-people/,156,109,mjirv,2/23/2016 23:08 +12199572,Ask HN: Are there any tech interview prep courses?,,4,3,MyDumbQuestions,8/1/2016 0:23 +11937748,CloudFlare Suffers Major European Outage,http://www.techweekeurope.co.uk/cloud/cloud-management/cloudflare-suffers-european-outage-194020,20,6,saq,6/20/2016 13:14 +11008851,Microsoft Plumbs Oceans Depths to Test Underwater Data Center,http://www.nytimes.com/2016/02/01/technology/microsoft-plumbs-oceans-depths-to-test-underwater-data-center.html,52,49,chewbacha,2/1/2016 0:25 +10422922,"Everything you've ever said to Siri has been recorded, and I get to listen to it",https://www.reddit.com/r/technology/comments/2wzmmr/everything_youve_ever_said_to_siricortana_has#HN,4,1,hammock,10/21/2015 0:57 +10318541,Mapzen Search: An open source geocoding api built on open data,https://mapzen.com/projects/search,150,12,riordan,10/2/2015 13:58 +10974604,"Ask HN: Uh, what's the thin black line across the top?",,1,2,dc2,1/26/2016 17:35 +12166703,"Drugs, sleeplessness, isolation: the downside of being a dance musician",https://www.theguardian.com/music/2016/jul/26/djs-touring-mental-health-drugs-sleeplessness-isolation,1,1,spking,7/26/2016 16:19 +11508267,Passbolt: oss password manager,https://www.passbolt.com/,3,2,based2,4/15/2016 23:03 +10812001,Palantir and Investors Spar Over How to Cash In,http://www.wsj.com/articles/palantir-and-investors-spar-over-how-to-cash-in-1451439352,4,2,jackgavigan,12/30/2015 13:47 +10374452,10 API tools released in 2015 you might have missed,https://medium.com/@orliesaurus/api-tools-for-every-occasion-10-api-tools-released-in-2015-i-can-t-live-without-d5947d9ca9c3,11,3,orliesaurus,10/12/2015 13:53 +12574869,How Giving Up Refined Sugar Changed My Brain,https://www.fastcompany.com/3050319/lessons-learned/how-giving-up-refined-sugar-changed-my-brain,30,26,sajid,9/25/2016 11:27 +11882172,Convert a Commodore 64 from NTSC to PAL Format,http://biosrhythm.com/?p=1420,79,8,erickhill,6/11/2016 5:10 +11436268,Handyman A Multiuser Puppeteering System for Motion Control (1991),http://web.ncf.ca/au829/Handyman/Thesis.html,11,1,seanmcdirmid,4/6/2016 2:50 +11922630,Ask HN: Comparing offer to current employment,,2,2,quantifiedCoder,6/17/2016 13:56 +11074046,The 3 Categories of SD-WAN Revealed Learn How to Choose,http://www.bigleaf.net/the-3-categories-of-sd-wan-revealed-learn-how-to-choose,3,1,joelm,2/10/2016 16:52 +10374343,New analysis of the impact of tech buses in San Francisco,http://www.citylab.com/commute/2015/10/tech-buses-are-not-to-blame-for-san-franciscos-housing-crisis/409141/?utm_source=SFFB,43,77,robotcookies,10/12/2015 13:34 +11238769,Show HN: Chevrotain Fault-Tolerant JavaScript Parsing DSL,https://github.com/SAP/chevrotain,42,16,bd82,3/7/2016 13:43 +12097209,Show HN: Tumblestone We're a team of 4 and just launched on Steam and consoles,http://tumblestonegame.com/,1,1,aschearer,7/14/2016 21:14 +11810176,"Probiotics Are Useless, GMOs Are Fine, and Gluten Is Necessary",http://motherboard.vice.com/read/probiotics-are-useless-gmos-are-fine-and-gluten-is-necessary-nutrition-science-fads-debunked?utm_content=buffer6b355&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer,4,4,ch4s3,5/31/2016 20:57 +11205374,Show HN: How we static site,https://makers.airware.com/open-source/this-blog/,5,1,edjboston,3/1/2016 19:30 +10937772,"Windows forced me to adopt Ubuntu, finally",https://medium.com/@sdiq77/windows-forced-me-to-adopt-ubuntu-5b5cc2895357#.t87zzn1ns,11,2,sdiq,1/20/2016 13:10 +11672786,Peachy Printer Theft of Kickstarter Raised Funds,http://www.peachyprinter.com/,46,18,LVB,5/11/2016 5:19 +10368147,The Guts of Spring,http://www.nybooks.com/blogs/nyrblog/2015/apr/18/guts-spring/,4,1,diodorus,10/11/2015 5:07 +11097615,Show HN: A foursquare client written entirely in kotlin,https://github.com/chemouna/Nearby,6,1,chemouna,2/14/2016 8:45 +11139793,BSI OSS Information Security Management System,http://verinice.org/,2,1,based2,2/20/2016 12:11 +11135678,Fastest-growing Airbnb market at risk as lodging-scarce Japan cracks down,http://www.japantimes.co.jp/news/2016/02/19/business/fastest-growing-airbnb-market-risk-lodging-scarce-japan-cracks/#.VsdlAbQrKt9,3,1,JSeymourATL,2/19/2016 19:01 +11027202,"Parse is shutting down, shall I migrate to another BaaS or Parse OSS offering?",http://parse-hosting.oursky.com/blog/2016-02-03-parse-shutdown,21,24,b123400,2/3/2016 16:05 +11752128,Somethings cooking in Apples India business,http://www.foundingfuel.com/article/somethings-cooking-in-apples-india-business/,20,9,krsree,5/23/2016 5:44 +10519181,Ask HN: How do I start a teleportation startup?,,4,5,thetmkay,11/6/2015 12:57 +12302128,What Great Listeners Actually Do,https://hbr.org/2016/07/what-great-listeners-actually-do,521,198,wallflower,8/17/2016 2:31 +10566869,Ask HN: How do I promote an app with little/no money?,,1,1,ldom22,11/14/2015 19:28 +10715298,Show HN: My site 15 years ago is still online on the original host,http://bluecat.stormpages.com/BlueCat.htm,5,4,apineda,12/11/2015 3:28 +11193152,You advocate a [blank] approach to calendar reform,http://qntm.org/calendar,29,15,apsec112,2/29/2016 0:56 +11143937,What happens when you pour molten aluminium into an anthill?,http://anthillart.com,31,81,jackgavigan,2/21/2016 9:48 +10958632,ZCash (formerly Zerocash/Zerocoin) technology preview,https://z.cash/blog/helloworld.html,2,1,malgorithms,1/23/2016 15:29 +10597321,Interpersonal skills vs. coding chops,,2,6,bigquestion,11/19/2015 20:20 +10625132,Realistic-Looking Images via Deep Convolutional Generative Adversarial Networks,https://github.com/Newmu/dcgan_code/,10,1,Radim,11/25/2015 3:07 +12413492,Chrome is warning users about insecure pages,https://certsimple.com/blog/your-connection-to-this-site-is-not-private,185,203,tombrossman,9/2/2016 15:05 +10469190,Legofy Python program to make an image to look as if it was created with Legos,https://github.com/JuanPotato/Legofy,131,39,jaxondu,10/29/2015 3:57 +10851743,Reverse Engineering a Real Candle,https://cpldcpu.wordpress.com/2016/01/05/reverse-engineering-a-real-candle/,172,37,liyanage,1/6/2016 17:11 +10615065,Reverse Engineering Code Completion,https://realm.io/news/jp-simard-reverse-engineering-code-completion/,3,1,ingve,11/23/2015 15:26 +10605792,How to fight back,http://www.economist.com/news/leaders/21678785-battle-against-islamic-state-must-be-waged-every-front-how-fight-back,2,1,danans,11/21/2015 5:36 +10252062,Time travel experiment,https://twitter.com/Machine1235/status/645948089388298240,1,1,xcodevn,9/21/2015 13:26 +11578771,SwiftExpress Web Application Server in Swift,http://rshankar.com/swiftexpress-web-application-server-in-swift/,2,1,sofijka,4/27/2016 8:59 +10555721,Why is January 1 being reported as the last week of the previous year?,http://blogs.msdn.com/b/oldnewthing/archive/2015/11/12/10653906.aspx,16,7,ingve,11/12/2015 20:05 +11350560,Ask HN: What is a service you would pay $10/month for?,,4,11,WannaBeFounder,3/24/2016 4:24 +11099055,What I Wish I Had Known Before Pitching LinkedIn to VCs (2013),https://www.linkedin.com/pulse/20131015161834-1213-what-i-wish-i-knew-before-pitching-linkedin-to-vcs?_mSplash=1&trk=mp-reader-card,101,17,marvel_boy,2/14/2016 17:24 +10751234,Chemical clears Alzheimer's protein and restores memory in mice,http://www.nature.com/ncomms/2015/151208/ncomms9997/full/ncomms9997.html,452,128,coris47,12/17/2015 13:09 +10281501,The Jocks of Computer Code Do It for the Job Offers,http://www.bloomberg.com/news/features/2015-09-25/the-jocks-of-computer-code-do-it-for-the-job-offers,5,1,Commodore,9/26/2015 0:11 +10388722,Real-Life Thor's 'Mjölnir' Hammer using a fingerprint scanner,https://www.inverse.com/article/6991-all-it-takes-to-build-thor-s-mj%C3%B6lnir-in-real-life-is-a-fingerprint-scanner-and-electromagnetism,25,25,paultannenbaum,10/14/2015 19:15 +11209608,Show HN: Another convenient web app for reading whoishiring,http://www.hnjobs.io,15,10,shanwang,3/2/2016 12:58 +11483165,Computer algorithm added 82 mill amendments to the Italian gov reformation bill,http://www.reuters.com/article/us-italy-politics-idUSKCN0X9217,1,1,dangayle,4/12/2016 20:13 +10509355,How to Build a Robot That Will Feed You Breakfast,http://motherboard.vice.com/read/how-to-build-a-robot-that-will-feed-you-breakfast,10,1,colund,11/4/2015 20:19 +11996842,Using Native Python Libraries in Lambda,http://codrspace.com/apeschel/using-native-python-libraries-in-lambda/,2,1,Apes,6/28/2016 19:38 +10339618,"Microsoft introduces Surface Book, a convertible for Surface fans",http://arstechnica.com/gadgets/2015/10/microsoft-introduces-surface-book-a-laptop-for-surface-fans/,3,1,MatthiasP,10/6/2015 15:40 +11674686,The Berlin Startup Salary Report,https://jobspotting.com/en/journal/berlin-startup-salary-report/,2,3,frb,5/11/2016 12:40 +11699773,Don Norman The Truth about Unix [pdf],http://www.bradleymonk.com/w/images/9/91/The_truth_about_Unix_Don_Norman.pdf,2,1,alirobe,5/15/2016 6:31 +12521582,Amazon Wind Farm Texas,https://smile.amazon.com/p/feature/ps9c2vfu7fcm4t6/,2,1,taeric,9/17/2016 17:58 +11655162,Tim Harford Article Could an income for all provide the ultimate safety net?,http://timharford.com/2016/05/could-an-income-for-all-provide-the-ultimate-safety-net/,5,2,lifeisstillgood,5/8/2016 18:41 +10231865,Keep Out A WebGL Game,http://www.playkeepout.com/,245,101,rinesh,9/17/2015 6:27 +10334447,Show HN: TVQue.com -a mailbox for TV. Send photos/videos to friend's TV,http://www.tvque.com/,12,1,jisagigi,10/5/2015 20:01 +12394339,Super Intelligence for the Stock Market,https://medium.com/@Numerai/invisible-super-intelligence-for-the-stock-market-3c64b57b244c?source=linkShare-d28db7a99006-1472586437?name=hn,25,3,rsamvit,8/30/2016 22:06 +12374538,Death of Satoshi Nakamoto [pdf],https://www.sec.gov/comments/sr-batsbzx-2016-30/batsbzx201630-3.pdf,75,25,pope_nope,8/27/2016 22:53 +11937072,Chinese supercomputer is the world's fastest - and without using US chips,http://www.theverge.com/2016/6/20/11975356/chinese-supercomputer-worlds-fastes-taihulight,3,1,gwent,6/20/2016 9:53 +12433365,When you change the world and no one notices,http://www.collaborativefund.com/blog/when-you-change-the-world-and-no-one-notices/,491,173,waqasaday,9/6/2016 2:44 +10834794,Tesla Delivered Just 208 Model X Last Quarter,http://recode.net/2016/01/03/tesla-delivered-just-208-of-its-model-x-crossovers-last-quarter/,4,1,doczoidberg,1/4/2016 10:22 +12220933,CryEngine bugs,http://www.viva64.com/en/b/0417/,22,3,AndreyKarpov,8/3/2016 19:49 +11135940,Test Report Points to F-35s Combat Limits,http://aviationweek.com/defense/test-report-points-f-35-s-combat-limits-0,4,4,mpweiher,2/19/2016 19:32 +11646710,Rust: learning how to share a queue between threads,http://dbeck.github.io/Learning-Rust-Sharing-My-Queue-Between-Threads/,27,6,dbeck74,5/6/2016 21:02 +10957210,Raising the Dead (Processes),http://googleprojectzero.blogspot.com/2016/01/raising-dead.html,40,1,dsr12,1/23/2016 4:37 +11906877,Latest update to my friend's 19 year side project,http://pegwars.blogspot.com/2016/06/screenshot-progress-update.html,301,34,redbluething,6/15/2016 2:41 +11217217,Fun Photoshop File Format Facts,https://posts.postlight.com/fun-photoshop-file-format-facts-edbc1374c715,57,25,robin_reala,3/3/2016 15:07 +11406505,Ask HN: What credit card do you use/recommend [USA]?,,3,2,chirau,4/1/2016 17:07 +10874961,"I went to join Isis in Syria,taking my four-year-old.It was a journey into hell",http://www.theguardian.com/world/2016/jan/09/sophie-kasiki-isis-raqqa-child-radicalised,16,5,dsr12,1/10/2016 11:16 +11837858,"Snails use 'two brain cells' to make decisions, Sussex University discovers",http://www.bbc.com/news/uk-england-sussex-36443264,4,6,xufi,6/4/2016 20:30 +10590329,Show HN: Trump content blocker for iOS,http://trumptrump.co,5,1,stressfree,11/18/2015 20:02 +12016463,"Show HN: Hypergolix: effortless, end-to-end encrypted IoT development",https://github.com/Muterra/py_hypergolix_demos/tree/master/echo-101,7,1,nbadg,7/1/2016 14:50 +10589489,AMPRNet: Amateur Packet Radio Network,https://en.wikipedia.org/wiki/AMPRNet,25,14,ch,11/18/2015 18:01 +10660197,What was data science before it was called data science?,http://www.win-vector.com/blog/2015/12/what-was-data-science-before-it-was-called-data-science/,1,2,jmount,12/2/2015 1:13 +12351155,My pragmatic decision on GNU Emacs versus vim for my programming,https://utcc.utoronto.ca/~cks/space/blog/programming/CodeEditingVimVsEmacs,2,2,vog,8/24/2016 11:16 +10589686,Fun with SVG: Embedding in CSS,http://collectiveidea.com/blog/archives/2015/11/18/fun-with-svg-embedding-in-css/,3,1,danielmorrison,11/18/2015 18:27 +12023505,Introduction to Matrix,https://www.ruma.io/docs/matrix/,14,2,Perceptes,7/2/2016 19:16 +11482220,"STIs may have driven ancient humans to monogamy, study says",https://www.theguardian.com/science/2016/apr/12/stis-may-have-driven-ancient-humans-to-monogamy-study-says,6,1,eplanit,4/12/2016 18:28 +10365909,Hacker 'Weev' Releases Prosecutor's Alleged Ashley Madison Data After Threats,http://motherboard.vice.com/read/hacker-weev-releases-prosecutors-alleged-ashley-madison-data-after-threats,8,4,davidgerard,10/10/2015 16:02 +12480146,Ask HN: Resources for software managers?,,7,3,devmgr,9/12/2016 14:52 +10654091,Unseen Art classical art paintings in 3D for the blind,http://www.unseenart.org/,43,8,danboarder,12/1/2015 7:43 +11253843,Universities Are Becoming Billion-Dollar Hedge Funds with Schools Attached,http://www.thenation.com/article/universities-are-becoming-billion-dollar-hedge-funds-with-schools-attached/,1,1,mgdo,3/9/2016 16:27 +11770557,Shopping online may not save you anything,http://www.chicagotribune.com/business/ct-shopping-online-savings-20160407-story.html,1,2,FrankyHollywood,5/25/2016 15:44 +11791182,"Euclid, the game",http://www.euclidthegame.com/Level19/,3,1,317070,5/28/2016 10:38 +10984616,The Landscape of Parallelism in C++ [video],https://www.youtube.com/watch?v=rrolR1BdTok?,34,10,adamnemecek,1/27/2016 23:57 +10659710,Forced-auth chip and PIN scam hitting high-end UK retailers will the US be next?,https://www.benthamsgaze.org/2015/12/01/forced-authorisation-chip-and-pin-hitting-high-end-retailers/,3,1,sjmurdoch,12/1/2015 23:28 +11509594,Ask HN: Is tradepub.com in anyway connected to HN?,,1,2,raddad,4/16/2016 6:51 +12120122,The Long and Epic Journey of LambdaCase (2012),https://unknownparallel.wordpress.com/2012/07/09/the-long-and-epic-journey-of-lambdacase-2/,3,1,JoshTriplett,7/19/2016 6:19 +12238945,AI Saves Womans Life by Identifying Her Disease,http://futurism.com/ai-saves-womans-life-by-identifying-her-disease-when-other-methods-humans-failed/,10,3,doener,8/6/2016 17:26 +11209443,OpenSSL still riddled with bugs,http://www.ubuntu.com/usn/usn-2914-1/,1,2,rkrzr,3/2/2016 12:09 +12525401,Ask HN: What has been your experiences with using a terminal on mobile phones?,,2,1,mkagenius,9/18/2016 14:20 +11694766,Why I Havent Fixed Your Issue Yet,http://www.michaelbromley.co.uk/blog/529/why-i-havent-fixed-your-issue-yet,247,99,s_severus,5/14/2016 6:25 +10595195,How to succeed in language design without really trying [video],https://www.youtube.com/watch?v=Sg4U4r_AgJU,110,15,ingve,11/19/2015 15:18 +10511688,Ask HN: I need legal advice,,4,12,anymys,11/5/2015 4:53 +10829476,Useful Resources for the Test Anything Protocol,https://github.com/sindresorhus/awesome-tap#awesome-tap--,22,1,ingve,1/3/2016 4:19 +12221523,Ask HN: Feeling trapped by the visa. Advice appreciated,,4,3,throwaway_askhn,8/3/2016 21:06 +10735045,Inside Netflixs Plan to Boost Streaming Quality,http://variety.com/2015/digital/news/netflix-better-streaming-quality-1201661116/,3,1,drdrey,12/15/2015 0:21 +10431853,Introducing the Plex Media Player,https://blog.plex.tv/2015/10/20/introducing-the-plex-media-player/,182,151,dtparr,10/22/2015 12:46 +12267243,"By 2030, 56 countries will have more people aged 65+ than children under 15",http://www.bloomberg.com/news/articles/2016-08-11/more-old-than-young-a-population-plague-spreads-around-the-globe,81,117,petethomas,8/11/2016 10:59 +10288693,Ask HN: How creepy are Google and Facebook wireless?,,9,7,username223,9/28/2015 2:42 +11286711,Students Protest GMO Banana,http://www.wsj.com/articles/anti-gmo-students-bruise-a-superbanana-1457998345,3,2,stillsut,3/15/2016 0:47 +11300893,Slashdot acquired by SourceForge,,10,3,LukeHoersten,3/16/2016 21:40 +10373857,Segways become illegal on public roads in UK,http://www.cps.gov.uk/legal/p_to_r/road_traffic_offences/#segway,2,1,nazwa,10/12/2015 11:37 +11407757,Python 8 will be the next major Python version,https://mail.python.org/pipermail/python-dev/2016-March/143603.html,56,18,echion,4/1/2016 19:22 +12265217,Amazon and Microsoft workers: No more special rental deals for you in Seattle,http://www.geekwire.com/2016/sorry-amazon-microsoft-workers-no-special-rental-deals-seattle/,9,3,ljk,8/10/2016 22:40 +10386160,Whats new in HAProxy 1.6,http://blog.haproxy.com/2015/10/14/whats-new-in-haproxy-1-6/,191,40,oldmantaiter,10/14/2015 12:21 +12361627,Optical Disk Drive Products Antitrust Settlement,https://www.opticaldiskdriveantitrust.com/,44,15,liareye,8/25/2016 19:13 +10387090,Show HN: Training and onboarding software for teams,http://tasytt.com,5,2,chrisbuttenham,10/14/2015 15:18 +11067776,It only took Uber 7 years to destroy Robert Noyces 60-year tech labor legacy,https://pando.com/2016/02/09/it-only-took-travis-kalanick-seven-years-destroy-robert-noyces-nearly-60-year-tech-labor-legacy/42d54a88f4d0d9480430010efbae7e2201ca94e0/,12,2,jackgavigan,2/9/2016 19:02 +11201467,"To Invent the Future, You Must Understand the Past (2015)",https://backchannel.com/why-silicon-valley-will-continue-to-rule-c0cbb441e22f#.8thpg4yly,61,14,rbanffy,3/1/2016 8:40 +10337202,A Criminal Mind Why did a respected psychiatrist became a drug dealer?,https://story.californiasunday.com/joel-dreyer-criminal-psychiatrist,74,27,fahimulhaq,10/6/2015 7:21 +10811953,Jupyter Notebook User Experience Survey,http://blog.jupyter.org/2015/12/22/jupyter-notebook-user-experience-survey/,70,23,po84,12/30/2015 13:29 +10752181,Tech and Banking Giants Ditch Bitcoin for Their Own Blockchain,http://www.wired.com/2015/12/big-tech-joins-big-banks-to-create-alternative-to-bitcoins-blockchain/,101,94,dankohn1,12/17/2015 15:57 +11427186,Hip tech startup Uber ditches hip tech startup Slack,http://www.theguardian.com/technology/2016/apr/04/slack-uber-apps-parting,10,2,bootload,4/5/2016 1:41 +11682676,Stop using JSON for configuration files,http://blog.altometrics.com/2015/09/stop-using-json-for-config/,5,3,dwighttk,5/12/2016 11:39 +10707079,Does this sentence seem friendly? Maybe not now,http://www.csmonitor.com/Technology/2015/1209/Does-this-sentence-seem-friendly-Maybe-not-now,2,1,cpeterso,12/9/2015 21:58 +10416419,Destroy all hiring processes,http://www.b-list.org/weblog/2015/oct/19/destroy-all-hiring-processes/,112,99,ubernostrum,10/19/2015 23:11 +10537890,Facebook M The Anti-Turing Test,https://medium.com/@arikaleph/facebook-m-the-anti-turing-test-74c5af19987c,438,156,arik-so,11/10/2015 6:27 +10539009,WorksheetWorks: Educational materials made to specification,http://www.worksheetworks.com/,9,1,znpy,11/10/2015 13:03 +12032852,Haskell ArgumentDo Proposal,https://ghc.haskell.org/trac/ghc/wiki/ArgumentDo,52,26,adamnemecek,7/4/2016 20:34 +11417174,Panama Papers: The Power Players,https://panamapapers.icij.org/the_power_players/,23,2,Turukawa,4/3/2016 19:03 +12193423,Why We Moved from Amazon Web Services to Google Cloud Platform?,https://lugassy.net/why-we-moved-from-amazon-web-services-to-google-cloud-platform-726c412fd667,3,2,mluggy,7/30/2016 15:42 +10584043,See seven years of a Detroit neighborhood unfold,https://makeloveland.com/blog/see-seven-years-of-a-detroit-neighborhood-unfold,18,3,rmason,11/17/2015 21:23 +10840218,What Didnt Happen,http://avc.com/2015/12/what-didnt-happen/,2,1,phodo,1/5/2016 1:08 +10751112,How Google enlisted congressmen it bankrolled to fight $6bn EU antitrust case,http://www.theguardian.com/world/2015/dec/17/google-lobbyists-congress-antitrust-brussels-eu,13,9,Libertatea,12/17/2015 12:41 +10805410,The Rise of Logical Punctuation (2011),http://www.slate.com/articles/life/the_good_word/2011/05/the_rise_of_logical_punctuation.single.html,61,50,anishathalye,12/29/2015 5:36 +11398052,Branch.co raises $9.2M to bring financial services where banks dont go,http://techcrunch.com/2016/03/30/branch-co-raises-9-2-million-to-bring-financial-services-where-banks-dont-go/,30,4,Osiris30,3/31/2016 15:52 +12568070,Thelonious Monk Creates a List of Tips for Playing a Gig (2012),http://www.openculture.com/2012/09/thelonious_monk_scribbles_a_list_of_tips_for_playing_a_gig.html,114,17,taylorbuley,9/23/2016 21:23 +10764449,The Strange Paradise of Paul Scheerbart,http://www.nybooks.com/daily/2015/12/16/strange-paradise-of-paul-scheerbart/,19,1,dnetesn,12/19/2015 18:57 +11871017,On Joining Microsoft Edge and Moving to Seattle,https://nolanlawson.com/2016/06/09/on-joining-microsoft-edge-and-moving-to-seattle/,4,2,nolanl,6/9/2016 17:49 +10748792,Google's Dumb Nexus 6P Policy,https://medium.com/@anandvc/google-s-dumb-nexus-6p-policy-94131caca96d#.ud2sj4ytu,4,1,anandvc,12/17/2015 1:17 +11424399,Open California: an archive of free high-quality satellite imagery,https://www.planet.com/open-california,107,22,danso,4/4/2016 18:56 +12303758,Why Funding can Kill Your Startup Fast Emerging Market,https://techpoint.ng/2016/08/17/funding-can-kill-business-faster/,53,15,wexcely,8/17/2016 11:08 +10252503,Show HN: Creators Log,http://creatorslog.com,2,1,iisbum,9/21/2015 14:31 +11664920,Gas Delivery Startups Want to Fill Up Your Car Anywhere. Is That Allowed?,http://www.bloomberg.com/news/articles/2016-05-02/gas-delivery-startups-want-to-fill-up-your-car-anywhere-is-that-allowed,6,7,tristanj,5/10/2016 3:09 +12104598,I Don't Give a Shit About Licensing,https://www.rdegges.com/2016/i-dont-give-a-shit-about-licensing/,6,1,craigkerstiens,7/16/2016 0:12 +12510588,How I gained access to TMobiles national network for free,https://medium.com/@jacobajit/how-i-gained-access-to-tmobiles-national-network-for-free-f9aaf9273dea,27,2,amluto,9/15/2016 23:02 +10708517,"NASA releases new composite image of Titan, showing Earth-like surface",http://mobile.abc.net.au/news/2015-12-10/nasa-releases-detailed-image-of-titan/7015678,6,1,evo_9,12/10/2015 2:41 +10762244,"Run, Hide, Fight Is Not How Our Brains Work",http://www.nytimes.com/2015/12/20/opinion/sunday/run-hide-fight-is-not-how-our-brains-work.html,18,23,aaronbrethorst,12/19/2015 1:49 +11944486,Russian bill requires encryption backdoors in all messenger apps,http://www.dailydot.com/politics/encryption-backdoor-russia-fsb/,1,1,th0br0,6/21/2016 9:05 +11852330,Sacrificial Architecture in Web Development,https://medium.com/@TheStrazz86/sacrificial-architecture-in-web-development-3926c0593fc8#.iyo51zc4y,1,1,harshasrinivas,6/7/2016 4:08 +10735525,From Alone to a Team: The Learning Curve,https://medium.com/dev-science/from-alone-to-a-team-the-learning-curve-754bc5431fad#.bc6ydewvo,1,1,jeanlucas,12/15/2015 2:25 +12483886,Deleted Scenes from HBOs Silicon Valley,https://techcrunch.com/2016/09/12/exclusive-deleted-scenes-from-hbos-silicon-valley/,29,2,davidbarker,9/12/2016 21:34 +10197839,Paper for iPhone,https://www.fiftythree.com/paper,8,1,uptown,9/10/2015 13:21 +10626504,My life after 44 years in prison,http://interactive.aljazeera.com/aje/shorts/life-after-prison/,200,125,doppp,11/25/2015 10:40 +11211961,Ask HN: How to fight copyright laws?,,2,1,ApplaudPumice,3/2/2016 18:40 +11216184,Tell HN: Get your app classified before Show HN,,12,1,gadders,3/3/2016 11:26 +10993224,Ask HN: Is there a game that teaches IP address subnetting and routing?,,3,4,andrewstuart,1/29/2016 3:06 +12240410,How Cannabis Helped Me Learn to Code,http://creatorsneverdie.com/how-cannabis-helped-me-learn-to-code/,4,2,dillonraphael,8/6/2016 23:48 +10904452,Why Kubernetes isn't using Docker's libnetwork,http://blog.kubernetes.io/2016/01/why-Kubernetes-doesnt-use-libnetwork.html,226,43,brendandburns,1/14/2016 21:02 +12219510,A Guide to Employee Equity,http://themacro.com/articles/2016/08/a-guide-to-employee-equity/,200,96,craigcannon,8/3/2016 17:03 +10520691,Urinals and Usability,http://www.propelics.com/ux-of-up-urinals-and-usability/,88,59,Brykman,11/6/2015 17:40 +10818521,How the Tech Press Forces a Narrative on Companies It Covers,https://medium.com/backchannel/how-the-tech-press-forces-a-narrative-on-companies-it-covers-5f89fdb7793e#.51vjvdpvs,2,1,tilt,12/31/2015 17:20 +10894019,Building a global IoT data network in 6 months,https://medium.com/@wienke/the-things-network-building-a-global-iot-data-network-in-6-months-adc2c0b1ae9b#.r7m9n8458,52,9,htdvisser,1/13/2016 13:19 +11770856,Show HN: TLS cert expiration dashboard,https://github.com/cmrunton/tls-dashboard,40,13,craine,5/25/2016 16:13 +10864352,Ask HN: Is TechZing podcast coming back?,,2,1,frankacter,1/8/2016 12:20 +10789911,Can technology do crisis hacking?,https://www.linkedin.com/pulse/can-philanthropy-part-corporate-profits-weerasundara-attorney-mba?trk=prof-post,1,1,shanikawee,12/24/2015 23:27 +10772580,Shield: The World's First Signal Proof Headwear,https://www.kickstarter.com/projects/shieldapparel/shield-the-world-s-first-signal-proof-headwear,3,1,smithclay,12/21/2015 18:38 +11348444,Code happy: Find out what a company is really like,http://codehappy.info,42,8,bshanks,3/23/2016 21:33 +10405208,Canon 250MP APS-H CMOS Sensor Demo,http://photorumors.com/2015/10/16/canon-250mp-aps-h-size-cmos-sensor-demo-video/,33,28,davidbarker,10/17/2015 17:25 +11851871,This is not a place of honor,"http://www.wipp.energy.gov/picsprog/articles/wipp%20exhibit%20message%20to%2012,000%20a_d.htm",450,280,erubin,6/7/2016 1:45 +12189188,"Here are the differences between attendees of the DNC and RNC, according to Yelp",http://www.businessinsider.com/difference-between-rnc-and-dnc-on-yelp-2016-7,2,2,jerryhuang100,7/29/2016 19:11 +11507234,Show HN: Quaint a statically typed language with seamless resumable functions,https://github.com/bbu/quaint-lang,4,3,bluetomcat,4/15/2016 20:05 +11536351,Chrome: 50 releases and counting,https://chrome.googleblog.com/2016/04/chrome-50-releases-and-counting.html,18,8,rayshan,4/20/2016 18:00 +10375967,Nobel in Economics Given to Angus Deaton for Studies of Consumption,http://www.nytimes.com/2015/10/13/business/angus-deaton-nobel-economics.html?_r=0,22,11,sonabinu,10/12/2015 17:40 +11564467,Show HN: BookStorm Speed Date Books,http://bookstormapp.com,6,1,m52go,4/25/2016 14:42 +10233631,Ask HN: iOS 9 is out with its ad-blocker support. How do you feel about that?,,1,1,kmfrk,9/17/2015 14:45 +11587946,Why can't San Francisco stop it's epidemic of window smashing?,http://www.theatlantic.com/politics/archive/2016/04/san-francisco-crime-policy/479880/?single_page=true,2,1,altotrees,4/28/2016 11:27 +12069434,Homebrew package recommends curling directly to shell via insecure website,http://brew.sh,4,7,mrmondo,7/11/2016 7:34 +12386585,Ask HN: Want to connect with Startup School attendees before the event?,,5,3,Nora_Kelleher,8/30/2016 0:49 +11081022,"Time Inc Acquires Viant, Owner of Myspace and a Vast Ad Tech Network",http://techcrunch.com/2016/02/11/time-inc-acquires-viant-owner-of-myspace-and-a-vast-ad-tech-network/,12,1,roymurdock,2/11/2016 16:15 +11455338,Show HN: Product Hunt for new products you can buy,https://www.discoverylist.com,17,2,levng,4/8/2016 15:27 +11372238,Ask HN: Career choice: Boutique consultancy or Big 5,,1,2,dev_throw,3/28/2016 1:28 +10416837,An evolutionary take on behavioral economics,http://evonomics.com/please-not-another-bias-the-problem-with-behavioral-economics/,40,3,axplusb,10/20/2015 1:02 +10743127,Emergence in Holographic Scenarios for Gravity,http://philsci-archive.pitt.edu/11669/4/Emergence_hol_gravity_July_2015.pdf?platform=hootsuite,33,2,ColinWright,12/16/2015 9:02 +12250411,Amazon Builds First Cargo Airplane,https://www.youtube.com/watch?time_continue=67&v=77OUxSW5Lcs,1,1,elijahmurray,8/8/2016 19:50 +11587684,Show HN: Rinocloud GitHub for data,https://rinocloud.com/,8,5,eoinmurray92,4/28/2016 10:26 +10911788,Inside the Eye: Nature's Most Exquisite Creation,http://ngm.nationalgeographic.com/2016/02/evolution-of-eyes-text,5,1,ebspelman,1/15/2016 20:14 +12454714,VotePlz The Easiest Way to Vote,https://voteplz.org,238,311,zachlatta,9/8/2016 16:51 +12008384,Ask HN: How did your Show HN post affect your website?,,11,6,perakojotgenije,6/30/2016 13:36 +11140313,CIA-backed rebels are now fighting Pentagon-backed militants in Syria,http://www.buzzfeed.com/mikegiglio/america-is-now-fighting-a-proxy-war-with-itself-in-syria#.tsmk91wjqz,50,9,huac,2/20/2016 15:10 +12443504,LLV8 An experimental top-tier compiler for V8,https://github.com/ispras/llv8,96,19,Jarlakxen,9/7/2016 14:11 +11791893,Valve Is Making All Their Games Free to Debian Developers,http://www.phoronix.com/scan.php?page=news_item&px=MTU3OTc,2,1,modinfo,5/28/2016 15:14 +11267443,TP-Link blocks open source router firmware to comply with new FCC rule,http://arstechnica.com/information-technology/2016/03/tp-link-blocks-open-source-router-firmware-to-comply-with-new-fcc-rule/,166,99,jhack,3/11/2016 16:15 +10683671,How 'computers' are depicted in the media,,1,2,NickHaflinger,12/5/2015 23:22 +10570447,The Disturbing Truth About How Airplanes Are Maintained Today,http://www.vanityfair.com/news/2015/11/airplane-maintenance-disturbing-truth?mbid=social_cp_facebook_wir,30,3,rock57,11/15/2015 18:19 +12515008,Homicides in America by Race,https://www.scedast.com/1/,3,3,scedast,9/16/2016 16:09 +10207398,Ask HN: Starting a porn startup,,4,2,abba_fishhead,9/12/2015 5:50 +10908789,Is Argentina's chaotic economy fertile ground for radical financial experiments?,http://thelongandshort.org/growth/argentina-bitcoin-financial-future,3,1,jeremynicolas,1/15/2016 12:16 +10917188,What do you think of a game application as a challenge?,,1,1,hacknight,1/16/2016 22:32 +11054089,Amplifying C (2010),http://voodoo-slide.blogspot.com/2010/01/amplifying-c.html,140,101,jhack,2/7/2016 18:43 +12063283,Realtime Data Processing at Facebook,http://muratbuffalo.blogspot.com/2016/07/realtime-data-processing-at-facebook.html,124,7,mad44,7/9/2016 20:56 +11666156,New JavaScript: ES7 and beyond,http://chrisnielsen.ws/whats-new-es7-and-beyond/,5,2,nielsencfm123,5/10/2016 10:28 +11489791,Post-Mortem for Google Compute Engines Global Outage on April 11,https://status.cloud.google.com/incident/compute/16007?post-mortem,799,351,sgrytoyr,4/13/2016 16:40 +11379450,Google Is Finally Redesigning Its Biggest Cash Cow: AdWords,http://www.fastcodesign.com/3058294/google-is-finally-redesigning-its-biggest-cash-cow-adwords,3,1,ohjeez,3/29/2016 4:13 +11255511,Ask HN: Why GitHub is downgrading its GitHub Pages?,,1,3,rohit6223,3/9/2016 20:27 +11350860,"95 years after disappearance, the USS Conestoga is found",http://www.cnn.com/2016/03/23/us/uss-conestoga-shipwreck-found-95-years-later/index.html,107,16,curtis,3/24/2016 5:59 +11254218,RIP Google PageRank score: A retrospective on how it ruined the web,http://searchengineland.com/rip-google-pagerank-retrospective-244286,282,125,adamcarson,3/9/2016 17:21 +11432644,A Simple Web Developer's Guide to Color,https://www.smashingmagazine.com/2016/04/web-developer-guide-color/,314,43,adamnemecek,4/5/2016 17:48 +11325334,Read the email the whole Xbox team at Microsoft just received about sexism,http://www.theverge.com/2016/3/18/11264930/xbox-gdc-2016-sexist-event-response?utm_campaign=theverge&utm_content=chorus&utm_medium=social&utm_source=twitter,1,1,BinaryIdiot,3/21/2016 0:05 +10259717,KVM creators open-source fast Cassandra drop-in replacement Scylla,http://www.zdnet.com/article/kvm-creators-open-source-fast-cassandra-drop-in-replacement-scylla/,18,4,dmarti,9/22/2015 16:37 +11122615,Curl -4 http://wttr.in/London,https://twitter.com/life_maniac/status/699531882925576192,24,10,harel,2/18/2016 0:02 +10884621,Scientists bust myth that our bodies have more bacteria than human cells,http://www.nature.com/news/scientists-bust-myth-that-our-bodies-have-more-bacteria-than-human-cells-1.19136,21,11,etiam,1/12/2016 0:01 +11732430,What Disturbed Glenn Beck About the Facebook Meeting,https://medium.com/@glennbeck/what-disturbed-me-about-the-facebook-meeting-3bbe0b96b87f#.ebyx96c5f,2,2,bhups,5/19/2016 18:25 +12015900,Eve: Unbeatable computer developed by online community,http://eve-tech.com,9,3,gshssh,7/1/2016 13:38 +12096837,Living Bacteria Can Now Store Data,http://gizmodo.com/living-bacteria-can-now-store-data-1781773517,1,1,urza,7/14/2016 20:12 +11591274,"The Mastermind, Episode 7: The Next Big Deal",https://mastermind.atavist.com/the-next-big-deal?src=longreads,60,12,jaxonrice,4/28/2016 19:18 +10868421,"Ask HN: How do I create a table in text (using hyphens, pipes and pluses)?",,2,4,jkuria,1/8/2016 21:27 +11533500,Flashback: Declassified 1970 DOD cybersecurity document still relevant,http://arstechnica.com/security/2016/04/flashback-declassified-1970-dod-cybersecurity-document-still-relevant/,52,2,jgrahamc,4/20/2016 11:01 +11649513,DOOM E1M1 music comparison on various sound cards Part 1,https://www.youtube.com/watch?v=YXFYWJ7dbz0,2,1,YngwieMalware,5/7/2016 13:31 +11791469,Masks Simulate How You Look to Facial Detection Algorithms,http://thecreatorsproject.vice.com/en_uk/blog/facial-recognition-sees-you-as-a-pattern-not-a-person,3,1,uptownfunk,5/28/2016 12:54 +10198837,$4M and counting for XTI's Aircraft that doesn't exist,http://Www.startengine.com/startup/xti,8,4,CatDogBntyHuntr,9/10/2015 16:07 +11994799,The Brexit Possibility,https://stratechery.com/2016/the-brexit-possibility/,113,141,thanatosmin,6/28/2016 15:59 +10179911,"Moores law may be running out of steam, but chip costs will continue to fall",http://www.economist.com/news/technology-quarterly/21662644-chipmaking-moores-law-may-be-running-out-steam-chip-costs-will-continue,18,5,tdaltonc,9/7/2015 3:16 +10957667,"How to Hire - Henry Ward, CEO of eShares",https://medium.com/swlh/how-to-hire-34f4ded5f176,2,1,slyall,1/23/2016 8:24 +12068803,Synth Collection heading for iPhone and iPad,http://raspberrypisynthesizer.blogspot.com/2016/07/synth-collection-heading-for-iphone-and.html,31,10,l8rlump,7/11/2016 4:01 +10513249,The Threat of Telecom Sabotage,http://research.dyn.com/2015/10/the-threat-of-telecom-sabotage/,40,3,hangars,11/5/2015 13:51 +12390537,Minister Noonan Disagrees Profoundly with the Commission on Apple,http://www.finance.gov.ie/news-centre/press-releases/minister-noonan-disagrees-profoundly-commission-apple,1,1,anotherhacker,8/30/2016 14:37 +11281579,Microsoft Stops Accepting Bitcoin in Windows Store,http://www.theregister.co.uk/2016/03/14/microsoft_stops_accepting_bitcoin_in_windows_store/,2,1,dinosaurs,3/14/2016 8:04 +12432327,Men willing to sacrifice 3 hypothetical men for every woman of reproductive valu,https://link.springer.com/article/10.1007/s40806-014-0003-3/fulltext.html,3,1,randomname2,9/5/2016 21:31 +12090775,"Major update of AutoSpotting, an AutoScaling-friendly EC2 spot market bidder",https://mcristi.wordpress.com/2016/07/14/autospotting-now-handles-complex-launch-configurations-when-replacing-your-ec2-instances-with-cheaper-spot-ones/,2,2,alien_,7/14/2016 0:08 +10884402,An incomplete list of classic papers every Software Architect should read,http://blog.valbonne-consulting.com/2014/06/09/an-incomplete-list-of-classic-papers-every-software-architect-should-read/,14,1,alanfranzoni,1/11/2016 23:20 +12120695,The Mythos of Model Interpretability,https://arxiv.org/abs/1606.03490,56,20,jboynyc,7/19/2016 9:09 +12014823,Google Shuts Down the Google Feed API,https://developers.googleblog.com/2016/06/announcing-turndown-of-google-feed-api.html,90,84,alanfranzoni,7/1/2016 9:45 +10751734,Interactive Interpreter Tab Completion in Python,http://stackoverflow.com/a/168270/3696619,1,1,jaybosamiya,12/17/2015 14:50 +12185995,LaunchKit: A set of web-based tools for mobile app developers,https://github.com/LaunchKit/LaunchKit,1,1,tilt,7/29/2016 11:03 +12025682,"Milk, orange juice, pedialyte more hydrating than water",http://mobile.nytimes.com/blogs/well/2016/06/30/milk-and-other-surprising-ways-to-stay-hydrated/,44,39,uptownfunk,7/3/2016 11:33 +12400741,"Show HN: Flowi.es, apps for an enhanced Workflowy experience",https://flowi.es/,1,1,fiatjaf,8/31/2016 19:18 +10482068,Protopiper: Physically Sketching Room-Sized Objects at Actual Scale,http://hpi.de/baudisch/projects/protopiper.html,172,16,fisherjeff,10/31/2015 7:09 +12132810,Alleged founder of worlds largest BitTorrent distribution site arrested,http://arstechnica.com/tech-policy/2016/07/kickasstorrents-alleged-founder-artem-vaulin-arrested-in-poland/,378,216,fcambus,7/20/2016 21:51 +12066549,What It Is Actually Like to Be in the Engine Room of the Startup Economy,http://www.nytimes.com/2016/07/10/books/review/chaos-monkeys-by-antonio-garcia-martinez.html,3,2,andrewl,7/10/2016 18:19 +12566130,Yahoo breach could threaten Verizon deal,http://www.bloomberg.com/news/videos/2016-09-23/does-yahoo-data-breach-put-verizon-deal-in-jeopardy,3,1,nmgsd,9/23/2016 17:03 +11522071,First Solar is making PV panels for less than Chinas biggest producer,http://www.bloomberg.com/news/articles/2016-04-14/first-solar-making-panels-more-cheaply-than-china-s-top-supplier,139,28,Osiris30,4/18/2016 18:26 +11380721,Eye tracking gives players a new experience in video games,https://theconversation.com/how-eye-tracking-gives-players-a-new-experience-in-video-games-54595,1,1,fitzwatermellow,3/29/2016 11:32 +11182292,Austin Just Scared Off 1 of Its 'Biggest Supporters' in Silicon Valley,http://austininno.streetwise.co/2016/02/25/austin-airbnb-ruling-tech-investors-city-council-vote/,1,1,dddrh,2/26/2016 16:35 +11927626,NoSQL Data Stores in Research and Practice [slides],http://de.slideshare.net/felixgessert/nosql-data-stores-in-research-and-practice-icde-2016-tutorial-extended-version,50,3,DivineTraube,6/18/2016 8:48 +11851027,Please Give Feedback on My Start-up Idea,,1,7,stomachfat,6/6/2016 22:36 +11784916,"A Cellphone's Missing Dot Kills Two People, Puts Three More in Jail(2008)",http://gizmodo.com/382026/a-cellphones-missing-dot-kills-two-people-puts-three-more-in-jail,2,1,krisgenre,5/27/2016 9:48 +11056124,Procrastination Is Mostly About Fear,http://lifehacker.com/this-video-explains-how-procrastination-is-mostly-about-1744606272,2,1,ourmandave,2/8/2016 2:46 +11020476,50 life lessons of an ordinary guy,https://medium.com/@shekhargulati/50-life-lessons-of-an-ordinary-guy-c80680b39554#.rz4ecxfxp,2,1,shekhargulati,2/2/2016 16:38 +11848010,Why I Quit My Job to Travel the World,http://www.newyorker.com/humor/daily-shouts/why-i-quit-my-job-to-travel-the-world,223,199,kawera,6/6/2016 16:31 +11063019,"Docker Releases Tutum, Rebranded as Docker Cloud",https://docs.docker.com/docker-cloud/release-notes/,9,1,notdonspaulding,2/9/2016 4:12 +11432853,"Ask HN: Cost/time/obstacles for developing a modern, fast MIPS64 board?",,4,1,lazyjones,4/5/2016 18:11 +12107615,"Move Over, Madagascar: Luzon Has the Most Unique Mammals",http://www.smithsonianmag.com/science-nature/philippines-island-unique-mammals-180959823/?no-ist,52,2,palmdeezy,7/16/2016 19:46 +11422192,On screening senior engineers,http://blog.hackerrank.com/step-0-before-you-do-anything/,3,3,lobo_tuerto,4/4/2016 14:39 +11960712,Elon Musk said we're living in a computer simulation. This cartoon explains,http://www.vox.com/technology/2016/6/23/12007694/elon-musk-simulation-cartoon?utm_campaign=vox&utm_content=chorus&utm_medium=social&utm_source=twitter,5,1,mjirv,6/23/2016 13:32 +11275838,A better offer letter,https://medium.com/@henrysward/a-better-offer-letter-4e9bf61a7365,152,72,rdl,3/13/2016 2:24 +11969169,iOwnIt a quick intro,https://timleland.com/iownit-share-what-you-own/,3,2,TimLeland,6/24/2016 12:22 +12328993,Python on Pebble,https://gist.github.com/hiway/cd237eb1040c38e7ab5306a63575ded5,74,11,nhumrich,8/21/2016 1:00 +10533560,The State of JavaScript on Android in 2015 Is Poor (Jeff Atwood),https://meta.discourse.org/t/the-state-of-javascript-on-android-in-2015-is-poor,18,5,vyrotek,11/9/2015 15:35 +12205953,Ask HN: Any way to read a 9-track 1/2 tape in Silicon Valley?,,14,10,Animats,8/1/2016 21:03 +10898209,Return of incandescent light bulbs as MIT makes them more efficient than LEDs,http://www.telegraph.co.uk/news/science/science-news/12093545/Return-of-incandescent-light-bulbs-as-MIT-makes-them-more-efficient-than-LEDs.html,16,1,jchoong,1/13/2016 22:41 +11848219,Swift has a special category of starter bugs for newcomers,https://bugs.swift.org/browse/SR-1691?jql=resolution%20%3D%20Unresolved%20AND%20labels%20%3D%20StarterBug,4,1,munchor,6/6/2016 16:57 +10635075,An Interactive Guide to the Fourier Transform,http://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/,156,18,Schiphol,11/26/2015 22:41 +10651368,Fast screen space particles in WebGL,https://c1.goote.ch/6dd8e26422ea46eda14a057802b36de0.scene/,4,1,hccampos,11/30/2015 19:58 +11034356,Ask HN: Why is My Bathroom Mirror is Smarter Than Yours being posted so much?,,6,8,davelnewton,2/4/2016 15:09 +11889935,It's a good day to display the black bar,,3,2,jvoorhis,6/12/2016 19:54 +11842464,Redux state management for React components,https://github.com/download13/react-updater-component,2,1,download13,6/5/2016 18:58 +10218343,Erlang Garbage Collection Details and Why They Matter,https://hamidreza-s.github.io/erlang%20garbage%20collection%20memory%20layout%20soft%20realtime/2015/08/24/erlang-garbage-collection-details-and-why-it-matters.html,115,23,byaruhaf,9/15/2015 0:39 +11627998,Show HN: Microblogging for Outdoor Adventurers,https://outsideways.com/about/,3,2,dtougas,5/4/2016 13:03 +12538876,Human skeleton found on famed Antikythera shipwreck,http://www.nature.com/news/human-skeleton-found-on-famed-antikythera-shipwreck-1.20632,53,6,jdnier,9/20/2016 12:14 +11113462,Safeguarding against social engineering attacks on live chat,https://blog.olark.com/guarding-against-social-engineering-attacks,10,1,karlpawlewicz,2/16/2016 22:01 +11062361,New Ways into the Brains Music Room,http://www.nytimes.com/2016/02/09/science/new-ways-into-the-brains-music-room.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=mini-moth®ion=top-stories-below&WT.nav=top-stories-below&mtrref=www.nytimes.com,51,15,sew,2/9/2016 1:21 +10901307,PHAP: Mobile Apps in PHP,http://phap.landingpage.io/,4,8,conner_bw,1/14/2016 13:46 +10214156,Show HN: 3D browser based multiplayer game,http://biome3d.com,7,4,highjohn,9/14/2015 8:47 +10399825,Adobe confirms major Flash vulnerability,http://bgr.com/2015/10/15/adobe-flash-player-security-vulnerability-warning/,62,15,happyscrappy,10/16/2015 15:12 +12027108,The Chemical History of a Candle,http://www.engineerguy.com/faraday/,55,5,beefman,7/3/2016 18:37 +10351883,Data Transfer Pact Between U.S. And Europe Is Ruled Invalid,http://www.nytimes.com/2015/10/07/technology/european-union-us-data-collection.html,1,1,tibz,10/8/2015 10:57 +11650712,Feynman: Simulating Physics with Computers (1981) [pdf],https://www.cs.berkeley.edu/~christos/classics/Feynman.pdf,187,22,merrier,5/7/2016 18:25 +12450141,Home Is Where the Parking Lot Is [video],http://www.nytimes.com/2016/09/06/opinion/long-term-parking.html,75,28,wdr1,9/8/2016 3:39 +11386318,50 years of Batman on film: how has his physique changed?,http://www.economist.com/blogs/prospero/2016/03/shape-shifter?fsrc=scn%2Ftw%2Fte%2Fbl%2Fed%2Fshapeshifter50yearsofbatmanonfilmhowhashisphysiquechanged,6,1,electic,3/30/2016 1:23 +11534403,A Wine Mogul Says Fidelity Cheated Him Out of Millions,http://www.bloomberg.com/news/features/2016-04-20/the-wine-mogul-vs-fidelity,8,2,minimax,4/20/2016 13:58 +10936424,Neil deGrasse Tyson and futurist Ray Kurzweil on what will happen to our brains,http://www.businessinsider.com.au/neil-degrasse-tyson-interview-ray-kurzweil-innovators-2016-1,3,1,mparlane,1/20/2016 6:44 +11682820,Does it make business sense to create a HN type site for a vertical market?,,1,5,TimMeade,5/12/2016 12:23 +12461691,Facebook deletes Norway PM's post as 'napalm girl' row escalates,https://www.theguardian.com/technology/2016/sep/09/facebook-deletes-norway-pms-post-napalm-girl-post-row,488,431,mmariani,9/9/2016 12:56 +12405136,SpaceX's Falcon 9 explodes on Florida launch pad,http://www.theverge.com/2016/9/1/12748752/spacex-launch-site-explosion-cape-canaveral-florida,14,1,espadrine,9/1/2016 13:40 +12567254,The state of privacy in post-Snowden America,http://www.pewresearch.org/fact-tank/2016/09/21/the-state-of-privacy-in-america/,3,1,walterbell,9/23/2016 19:22 +10822792,Replication Prohibited 3D printed key attacks [video],https://www.youtube.com/watch?v=a_85S1rIjNM,37,10,flexterra,1/1/2016 18:48 +11472890,"Moxa vulns won't be fixed until August, others won't be patched",https://ics-cert.us-cert.gov/alerts/ICS-ALERT-16-099-01,2,1,nerdy,4/11/2016 16:43 +10834722,Linux ate my RAM,http://www.linuxatemyram.com/,4,4,dutchbrit,1/4/2016 9:49 +10613100,SR-71 Blackbird used the stars to correct navigation,https://en.wikipedia.org/wiki/Lockheed_SR-71_Blackbird#Astro-Inertial_Navigation_System,2,1,deeths,11/23/2015 5:53 +11454224,How three connected hardware companies killed their devices,https://medium.com/@gigastacey/memo-to-nest-how-3-connected-hardware-companies-killed-their-devices-7f2368a5710b,61,28,OberstKrueger,4/8/2016 12:48 +12339919,Yet More Proof Things Keep Getting Better for the Top 10%,http://www.bloomberg.com/news/articles/2016-08-22/yet-more-proof-things-keep-getting-better-for-the-top-10,2,1,rezist808,8/22/2016 22:30 +10246662,"Symantec issues lame apology, fires wrong people in cert screwup",http://www.symantec.com/connect/blogs/tough-day-leaders,2,2,mikecarlton,9/20/2015 5:30 +11337244,The Web Is a Customer Service Medium (2011),http://www.ftrain.com/wwic.html,8,1,sebg,3/22/2016 15:24 +10735374,Top Voices by LinkedIn,https://lists.linkedin.com/2015/top-voices,1,1,brandonlipman,12/15/2015 1:30 +10722072,Ask HN: What free photo hosting service should I use for my GitHub projects?,,3,8,aviaryan,12/12/2015 7:15 +11691512,Seattle's Tech Growth Fueling Local Sex Trade,http://crosscut.com/2016/05/how-the-tech-industry-is-fueling-the-local-sex-trade/,4,3,beachbound,5/13/2016 16:53 +11711565,D online tour,http://tour.dlang.org/,5,3,chmike,5/17/2016 5:50 +12508884,Why a Hacker Who Exposed Rapists Faces More Jail Than the Rapists,https://www.inverse.com/article/20876-steubenville-rape-case-deric-lostutter,5,1,chunkyslink,9/15/2016 19:07 +11047511,Commander Sublime Text/Atom-Like Command Palette for Chrome,http://ssundarraj.me/commander/,3,3,ssundarraj,2/6/2016 12:34 +12003614,The Mill BLACKBIRD,https://vimeo.com/171939943,2,1,g4k,6/29/2016 18:34 +10777087,Status of Sails.js,https://github.com/balderdashy/sails/issues/3429,5,1,esistgut,12/22/2015 11:27 +12237733,China is flooding Silicon Valley with cash. Heres what can go wrong,https://www.washingtonpost.com/business/economy/new-wave-of-chinese-start-up-investments-comes-with-complications/2016/08/05/2051db0e-505d-11e6-aa14-e0c1087f7583_story.html,4,1,jhonovich,8/6/2016 11:10 +11209413,The absolute horror of WiFi light switches,https://shkspr.mobi/blog/2016/03/the-absolute-horror-of-wifi-light-switches/,89,86,edent,3/2/2016 12:02 +12329272,Public Transit Unions,https://pedestrianobservations.wordpress.com/2016/07/16/public-transit-unions/,5,4,apsec112,8/21/2016 3:40 +11433682,Show HN: Linux Diagnostic Tool,https://www.acksin.com/strum/,4,2,abhiyerra,4/5/2016 19:42 +11620247,Uber and Apple maps mayhem,https://dhariri.com/posts/5726be6bd1befa66e7b8e0c3,4,6,davidhariri,5/3/2016 13:09 +12506045,Ask HN: Most impressive SaaS landing page?,,3,1,fratlas,9/15/2016 13:46 +11266244,"Job start date delayed by a year by the company, what can I do?",,4,8,kaptell,3/11/2016 12:42 +10793675,'All of a sudden being a CTO at a bank is sexy' Tech could revolutionize finance,http://www.businessinsider.in/All-of-a-sudden-being-a-CTO-at-a-bank-is-sexy-This-technology-could-revolutionize-finance/articleshow/50234909.cms,1,1,edward,12/26/2015 8:34 +11918632,Ask HN: How often do you get contacted via HN?,,9,7,ryanlm,6/16/2016 20:25 +11808758,Ask HN: What small websites do you frequently use/visit?,,49,34,curiousgal,5/31/2016 18:22 +11946155,"Clash of Clans Creator Supercell Sold to Chinese Tencent for 6,4B Euro",http://metropolitan.fi/entry/clash-of-clans-creator-supercell-sold-to-chinese-tencent-for-6-4-billion-euro,1,1,velmu,6/21/2016 15:07 +11949593,The US weather model is now the fourth best in the world,http://arstechnica.com/science/2016/06/the-us-weather-model-is-now-the-fourth-best-in-the-world/,2,1,Twirrim,6/21/2016 21:35 +10605135,I do not fear,http://changelog.complete.org/archives/9422-i-do-not-fear,2,1,chei0aiV,11/21/2015 1:58 +11956884,Faceted search with ElasticSearch,https://amsterdam.luminis.eu/2016/06/21/faceted-search-with-elasticsearch/,4,2,tarunsapra,6/22/2016 20:48 +11325691,Deciding on which ideas to pursue,http://sameernoorani.com/deciding-on-which-ideas-to-pursue/,8,3,sixtoothsameer,3/21/2016 1:51 +11551946,Engineering the Simple Postcard with Twilio,https://www.twilio.com/blog/2016/04/engineering-the-simple-postcard.html,7,1,bavidar,4/22/2016 19:26 +11137268,"To Keep America Safe, Embrace Drone Warfare",http://www.nytimes.com/2016/02/21/opinion/sunday/drone-warfare-precise-effective-imperfect.html,2,1,JamilD,2/19/2016 22:39 +10787321,"The True Purpose of Microsoft Solitaire, Minesweeper, and FreeCell",http://mentalfloss.com/uk/technology/32106/the-true-purpose-of-solitaire-minesweeper-hearts-and-freecell,49,12,pykello,12/24/2015 6:15 +10307677,Firm 'hides' university when recruits apply,http://www.bbc.co.uk/news/education-34384668,73,54,tankenmate,9/30/2015 21:57 +10569989,Hello Barbie Security Concerns,http://kernelmag.dailydot.com/issue-sections/features-issue-sections/15018/hello-barbie-security-concerns/,31,9,apo,11/15/2015 16:20 +11964478,Artificial Intelligence: March of the Machines,http://www.economist.com/news/leaders/21701119-what-history-tells-us-about-future-artificial-intelligenceand-how-society-should,1,1,nopinsight,6/23/2016 21:37 +10946577,Robots Could Make the Supreme Court More Transparent,http://www.theatlantic.com/technology/archive/2016/01/one-step-closer-to-a-robot-supreme-court/424800/?hootPostID=9e4b7fbaee9a27fea35636e8978a6ee0&single_page=true,8,1,DaveWalk,1/21/2016 17:08 +10441902,"dang, can we get a collapse threads function?",,27,7,debacle,10/24/2015 0:12 +11721456,Awesome Elixir A community driven list of useful Elixir libraries,https://elixir.libhunt.com/,8,4,jbernardo95,5/18/2016 12:43 +10725274,How Radioactive Poison Became the Assassins Weapon of Choice,https://medium.com/matter/how-radioactive-poison-became-the-assassins-weapon-of-choice-6cfeae2f4b53#.hax0s8sm4,11,1,NN88,12/13/2015 3:18 +12076331,Friends are as genetically similar as fourth cousins,http://www.pnas.org/content/111/Supplement_3/10796.long,281,133,gwern,7/12/2016 2:26 +12378001,The Fall of a High-End Wine Scammer,https://www.bloomberg.com/features/2016-premier-cru-john-fox/,100,57,kspaans,8/28/2016 19:16 +10641604,Real-Time Strategy Game AI: Problems and Techniques [pdf],http://webdocs.cs.ualberta.ca/~cdavid/pdf/ecgg15_chapter-rts_ai.pdf,193,3,tosh,11/28/2015 17:06 +12310522,The Secret Lives of Cadavers,http://news.nationalgeographic.com/2016/07/body-donation-cadavers-anatomy-medical-education/,24,4,shawndumas,8/18/2016 5:08 +12238878,Bitfinex Interim Update,http://blog.bitfinex.com/uncategorized/bitfinex-interim-update/,48,36,Heliosmaster,8/6/2016 17:13 +11835944,Show HN: Falcon A markdown based note-taking app for iOS and OS X,http://falcon.star-lord.me,4,6,ChintanGhate,6/4/2016 11:32 +11078436,Walgreens Threatens to End Theranos Agreement,http://www.wsj.com/articles/walgreens-threatens-to-end-theranos-agreement-1455156503,2,1,w1ntermute,2/11/2016 5:40 +10479842,Review Board 2.5 released with many improvements for code and document review,https://www.reviewboard.org/news/2015/10/28/review-board-2-5-is-here/,8,3,gtewallace,10/30/2015 19:06 +12464461,Show HN: Simple in-memory key/value store written in Elixir using Shards,https://github.com/cabol/kvx,80,9,candresbolanos,9/9/2016 17:46 +12447071,"Based on LHC data, scientists predict new boson that interacts with dark matter",https://www.wits.ac.za/news/latest-news/research-news/2016/2016-09/wits-scientists-predict-the-existence-of-a-new-boson-.html,1,1,bokononon,9/7/2016 20:09 +10897368,Whatever happened to the laptop computer? (1985),http://www.nytimes.com/1985/12/08/business/the-executive-computer.html?,48,53,vdfs,1/13/2016 20:48 +10729812,Its OK not to use tools,https://m.signalvnoise.com/it-s-ok-not-to-use-tools-f39fbb9b6995,7,1,4684499,12/14/2015 7:24 +11536542,Front end tooling is borked big time,,8,8,tostitos1979,4/20/2016 18:21 +12394433,How to cook food using your car,https://www.yourmechanic.com/article/how-to-cook-food-using-your-car-by-alex-leanse,2,1,zabielski,8/30/2016 22:20 +10401990,"Oymyakon, the coldest inhabited place on Earth",http://www.atlasobscura.com/places/oymyakon-arctic-circle,1,1,yitchelle,10/16/2015 21:03 +12519591,Mozilla plans Firefox fix for same malware vulnerability that bit Tor [updated],http://arstechnica.com/security/2016/09/mozilla-checks-if-firefox-is-affected-by-same-malware-vulnerability-as-tor/,3,1,based2,9/17/2016 7:53 +10669106,Ask HN: Database Design Templates (or Best Practice Examples),,19,10,jmakaa,12/3/2015 11:50 +11899941,The First Rule of Prioritization: NO Snacking,https://blog.intercom.io/first-rule-prioritization-no-snacking/,1,1,dc17,6/14/2016 5:17 +12285136,Ask HN: How much you increase your salary for a new job?,,2,1,trtobe,8/14/2016 11:02 +10531788,EditorConfig,http://editorconfig.org/,235,46,chei0aiV,11/9/2015 7:40 +12528298,Amazon's lead in Cloud infrastructure is over - Larry Ellison,http://venturebeat.com/2016/09/18/larry-ellison-says-amazons-lead-is-over-as-oracle-unveils-new-cloud-infrastructure/,3,1,neofrommatrix,9/19/2016 1:59 +11844570,Foreign Students Seen Cheating More Than Domestic Ones,http://www.wsj.com/articles/foreign-students-seen-cheating-more-than-domestic-ones-1465140141,54,83,jimsojim,6/6/2016 4:01 +11865661,1999.io: Blogging like it's 1999,http://1999.io/,148,107,gk1,6/8/2016 21:04 +10641304,SceneNet: Understanding Real World Scenes with Synthetic Data,http://arxiv.org/abs/1511.07041,5,1,Katydid,11/28/2015 15:35 +10784325,Hard Truths about Equity,https://whilewest.com/4-hard-truths-about-equity-dfa2f24b3a6d#.pphh8235x,145,79,ptbrodie,12/23/2015 17:16 +12086510,Show HN: Hydra OMS First open-source order management system,http://www.hydra-oms.com/,13,1,dkoplovich,7/13/2016 14:45 +12400310,[pdf] Ninth Circuit Decision on AT&T Throttling,http://www.commlawmonitor.com/wp-content/uploads/sites/512/2016/08/ATT-Ninth-Circuit-Decision-Throttling.pdf,1,1,petethomas,8/31/2016 18:18 +10713064,A Practical Cryptanalysis of the Telegram Messaging Protocol [pdf],http://cs.au.dk/~jakjak/master-thesis.pdf,87,3,tptacek,12/10/2015 20:06 +11263991,Natural History Museums Are Teeming with Undiscovered Species,http://www.theatlantic.com/science/archive/2016/02/the-unexplored-marvels-locked-away-in-our-natural-history-museums/459306/?single_page=true,33,3,Hooke,3/11/2016 1:23 +11218404,"Dwolla fined $100,000 for misrepresenting its data-security practices",http://techcrunch.com/2016/03/02/dwolla-fined-100000-for-misrepresenting-its-data-security-practices/,5,4,pbreit,3/3/2016 17:37 +12290266,A programmers and testers mind,http://ideqa.blogspot.com/2016/08/a-programmers-mind-and-testers-mind.html,2,1,ideqa,8/15/2016 13:29 +10188290,The lost genius of Mozart's sister,http://www.theguardian.com/music/2015/sep/08/lost-genius-the-other-mozart-sister-nannerl,42,11,tetraodonpuffer,9/8/2015 21:24 +11999811,Why elections are bad for democracy,http://www.theguardian.com/politics/2016/jun/29/why-elections-are-bad-for-democracy,4,1,jboy,6/29/2016 6:08 +11605221,Is Snapchat worth more than Twitter?,http://www.barrons.com/articles/snapchat-keeps-climbing-1461990757?tesla=y&mod=bol-social-fb,1,1,chirau,5/1/2016 7:02 +10284604,"The Secret Structure of the S-Box of [GOST] Streebog, Kuznechik and Stribob",https://eprint.iacr.org/2015/812,61,7,tptacek,9/26/2015 22:14 +10536010,Bob Dylan and the 'Hot Hand',http://www.newyorker.com/culture/cultural-comment/bob-dylan-and-the-hot-hand,16,2,tintinnabula,11/9/2015 21:37 +10665788,Czech Artists Radical Book Designs of the Early 20th Century,http://hyperallergic.com/250851/czech-artists-radical-book-designs-of-the-early-20th-century/,40,4,prismatic,12/2/2015 21:03 +11643771,"What happened to the Europe of humanism, human rights, democracy and freedom?",http://www.reuters.com/article/us-europe-pope-idUSKCN0XX107,1,1,YeGoblynQueenne,5/6/2016 13:25 +12153137,Ask HN: Do we really need performance feedback?,,35,43,ali_ibrahim,7/24/2016 12:28 +11724560,Firebase expands to become a unified app platform,https://firebase.googleblog.com/2016/05/firebase-expands-to-become-unified-app-platform.html,14,1,seedifferently,5/18/2016 18:39 +10897724,PRIVET,http://myprivet.com,1,2,PRIVETapp,1/13/2016 21:36 +11718937,Hiring Hurdle: Finding Workers Who Can Pass a Drug Test,http://www.nytimes.com/2016/05/18/business/hiring-hurdle-finding-workers-who-can-pass-a-drug-test.html,30,56,aaronbrethorst,5/18/2016 0:58 +10606684,Ask HN: Tips for overheating laptop running linux,,2,9,giis,11/21/2015 12:57 +10242253,How Nature Does TDD (Eigen's Paradox),https://en.wikipedia.org/wiki/Error_threshold_(evolution),2,2,ThatMightBePaul,9/18/2015 21:48 +12281129,Is anyone working on social radio app idea yet?,,2,1,nalesmake,8/13/2016 11:52 +10375858,"Show HN: Tiny C runtime Linux (rt0), HelloWorld 0.6k (i386), sbrk example added",https://github.com/lpsantil/rt0/blob/65b4d966409ee24ddae0d4915368542537035c81/STATS.md,49,10,oso2k,10/12/2015 17:19 +11473793,Have people started receiving their YC invitations summer 2016?,,5,3,virginteez,4/11/2016 18:11 +10487590,More Apple Car Thoughts: Software Culture,http://www.mondaynote.com/2015/11/01/more-apple-car-thoughts-software-culture/,58,77,subnaught,11/1/2015 18:56 +10301962,Ymagine: a fast native image decoding and processing library,https://github.com/yahoo/ygloo-ymagine,14,1,tilt,9/30/2015 5:24 +10958881,List your accomplishments,http://blog.timrpeterson.com/2016/01/23/list-your-accomplishments.html,41,19,untilHellbanned,1/23/2016 16:38 +10367297,The 727 that Vanished (2010),http://www.airspacemag.com/history-of-flight/the-727-that-vanished-2371187/,49,4,jackgavigan,10/10/2015 22:49 +12060759,Mail-in-a-Box helps individuals take back control of their email,https://github.com/mail-in-a-box/mailinabox,4,1,pkaeding,7/9/2016 9:21 +12058823,When police use robots to kill people,http://www.bloomberg.com/news/articles/2016-07-08/when-police-use-robots-to-kill-people,28,36,anigbrowl,7/8/2016 21:37 +12538665,WTF is OpenResty?,http://www.theregister.co.uk/2016/09/20/wtf_is_openresty_the_worlds_fifthmostused_web_server_thats_what/,3,1,garyclarke27,9/20/2016 11:32 +10590227,"In Wake of Paris, FCC Seeks Power to Monitor, Shutter Websites",http://www.insidesources.com/in-wake-of-paris-fcc-seeks-power-to-monitor-shutter-websites/,3,1,wesd,11/18/2015 19:47 +11019020,Ask HN: How should I start with modern JS?,,3,4,Peradine,2/2/2016 12:25 +12391439,Announcing TypeScript 2.0 RC,https://blogs.msdn.microsoft.com/typescript/2016/08/30/announcing-typescript-2-0-rc/,59,5,sagadotworld,8/30/2016 16:17 +10271028,Vim setup for Markdown,http://www.swamphogg.com/2015/vim-setup/,131,32,resonator,9/24/2015 11:38 +11763661,Show HN: Citadela Essential travel information,http://citadela.io,4,1,lev-miseri,5/24/2016 17:37 +10636273,TCP Over IP Anycast Pipe Dream or Reality?,http://engineering.linkedin.com/network-performance/tcp-over-ip-anycast-pipe-dream-or-reality,81,30,r4um,11/27/2015 7:33 +11893164,Hints of an unexpected new particle could be confirmed within days,http://blogs.scientificamerican.com/guest-blog/is-particle-physics-about-to-crack-wide-open,183,70,s9w,6/13/2016 12:36 +11643088,Uber's China Rival Close to Raising $2B in New Funding,http://www.bloomberg.com/news/articles/2016-05-06/uber-china-rival-said-close-to-raising-2-billion-in-new-funding,54,49,davidiach,5/6/2016 11:19 +10743130,Apple Open Secret Production Laboratory in Taiwan,http://instabets.net/apple-open-secret-production-laboratory-in-taiwan/,1,1,jennyeve,12/16/2015 9:02 +11240402,Big News for ZFS on Linux,http://dtrace.org/blogs/ahl/2016/03/07/big-news-for-zfs-on-linux/,222,138,bcantrill,3/7/2016 18:13 +10991989,Facebook Shutting Down Parse,http://techcrunch.com/2016/01/28/facebook-shutters-its-parse-developer-platform/,10,2,pearlsteinj,1/28/2016 22:35 +12055722,Project Malmö A platform for AI experimentation and research in Minecraft,https://github.com/Microsoft/malmo,72,14,sixhobbits,7/8/2016 14:26 +12533895,"AWS CloudFormation Update YAML, Cross-Stack References, Substitution",https://aws.amazon.com/blogs/aws/aws-cloudformation-update-yaml-cross-stack-references-simplified-substitution/,19,9,Kaedon,9/19/2016 19:10 +11245420,Bug in Facebook login system,http://m.indiatimes.com/news/india/bengaluru-teen-gets-10-lakh-rupees-for-finding-a-bug-in-facebook-login-system-251724.html,15,1,technological,3/8/2016 14:34 +12121518,New Research Project BitCluster Tracks Sloppy Bitcoin Usage,https://news.bitcoin.com/bitcluster-tracks-bitcoin-usage/,1,1,posternut,7/19/2016 13:16 +10998649,18F Is Testing Micro-Purchase Auctions,https://micropurchase.18f.gov/,43,17,anton_tarasenko,1/29/2016 21:31 +11570575,Show HN: Dropproxy Dropbox public folder hosting experiment (2013),http://dropproxy.com/birthday,2,1,timvdalen,4/26/2016 9:55 +10716765,"SHA1 sunset will block millions from encrypted net, Facebook warns",http://arstechnica.com/security/2015/12/sha1-sunset-will-block-millions-from-encrypted-net-facebook-warns/,42,57,pavornyoh,12/11/2015 12:49 +12000729,Ask HN: How do I reverse engineer my country's Smart ID Card,,1,1,amingilani,6/29/2016 10:50 +10477411,Self driving cars crash five times as much as regular ones,http://fortune.com/2015/10/29/self-driving-cars-crash/,6,14,abhianet,10/30/2015 12:39 +10636818,The Triumph of Stupidity (1933),http://russell-j.com/0583TS.HTM,392,269,mutor,11/27/2015 11:13 +12559753,How to Get a Job in Deep Learning,http://blog.deepgram.com/how-to-get-a-job-in-deep-learning/,308,85,stephensonsco,9/22/2016 19:50 +12218253,The Sexual Is Political,http://thephilosophicalsalon.com/the-sexual-is-political/,29,55,sridca,8/3/2016 14:44 +11075952,JavaScript's new Date() causing 90% of Alibaba's internal compatibility issues,http://www.mrrrgn.com/20/,36,27,mrrrgn,2/10/2016 21:02 +12431245,TLS stats from 1.6B connections to mozilla.org,https://jve.linuxwall.info/blog/index.php?post/2016/08/04/TLS-stats-from-1.6-billion-connections-to-mozilla.org,71,4,jgrahamc,9/5/2016 17:05 +11558607,Schools are helping police spy on kids social media activity,https://www.washingtonpost.com/news/the-switch/wp/2016/04/22/schools-are-helping-police-spy-on-kids-social-media-activity/,102,75,raddad,4/24/2016 5:01 +11121319,EFF to Support Apple in Encryption Battle,https://www.eff.org/deeplinks/2016/02/eff-support-apple-encryption-battle,3,1,tambourine_man,2/17/2016 20:57 +11037942,Road Unpricing,https://medium.com/@daedalus3000/road-unpricing-6539c2a34691,32,13,jamesbowman,2/4/2016 22:54 +10332236,The Rise and Fall of the Operating System [pdf],http://www.fixup.fi/misc/usenix-login-2015/login_oct15_02_kantee.pdf,49,29,jsnell,10/5/2015 15:04 +10912212,Hacking inclusion by customizing a Slack bot,https://18f.gsa.gov/2016/01/12/hacking-inclusion-by-customizing-a-slack-bot/,27,37,Symbiote,1/15/2016 21:18 +12441618,Flightradar24 ADS-B Receivers On-board a Surface Ocean Robot,https://blog.flightradar24.com/blog/setting-sail-for-global-coverage-flightradar24-ads-b-receivers-on-board-a-surface-ocean-robot/,138,61,dewey,9/7/2016 8:18 +11980866,Ask HN: How to measure if it is worth it to accept a job with less coding?,,4,1,throwinitafter,6/26/2016 14:16 +11217901,400Gbps: Winter of Whopping Weekend DDoS Attacks,https://blog.cloudflare.com/a-winter-of-400gbps-weekend-ddos-attacks/,6,1,jgrahamc,3/3/2016 16:30 +11513043,The End of the American Empire,http://www.strategic-culture.org/news/2016/04/15/the-end-american-empire.html,14,5,Jerry2,4/17/2016 1:12 +10668866,Download full Coursera course from command line,https://github.com/coursera-dl/coursera-dl,12,2,_1009,12/3/2015 10:29 +12002854,Show HN: Dexecure Optimize images in your webpage with a single line of code,https://dexecure.com/image.html,31,2,inian,6/29/2016 16:47 +10889622,Voxel Quest January 2016 Update?,http://www.voxelquest.com/news/voxel-quest-january-2016-update,303,128,shawndumas,1/12/2016 19:14 +11137950,Even Google is abandoning Google+,http://www.theregister.co.uk/2016/02/19/even_google_is_abandoning_google/,5,1,Sami_Lehtinen,2/20/2016 0:42 +11844532,Founder lead public companies outperform others by 3 to 1,https://hbr.org/2016/03/founder-led-companies-outperform-the-rest-heres-why,3,1,rmason,6/6/2016 3:49 +10669740,Fleye Your Personal Flying Robot,https://www.kickstarter.com/projects/gofleye/fleye-your-personal-flying-robot,9,2,LaurentVB,12/3/2015 14:36 +11300711,Apple Is Now Planning to Boost iCloud Encryption,http://www.imritz.com/it-news/apple-is-now-planning-to-boost-icloud-encryption/,3,1,0942v8653,3/16/2016 21:10 +12254244,The Lynx Queue,http://www-dyn.cl.cam.ac.uk/~tmj32/wordpress/the-lynx-queue/,35,8,jsnell,8/9/2016 13:16 +12005105,Red Programming Language: 0.6.1: Reactive Programming,http://www.red-lang.org/2016/06/061-reactive-programming.html,19,3,arash_milani,6/29/2016 21:52 +11273241,Breaking homegrown crypto,https://kivikakk.ee/cryptography/2016/02/20/breaking-homegrown-crypto.html,282,18,tdurden,3/12/2016 15:49 +11147957,Huawei launches Matebook,http://consumer.huawei.com/minisite/worldwide/matebook/,63,57,qkhhly,2/22/2016 2:16 +11157634,London ranks 39th in the world for quality of living,http://www.hitc.com/en-gb/2016/02/23/london-ranks-39th-in-the-world-for-quality-of-living/,2,3,neverminder,2/23/2016 9:25 +11204959,One More Reason Not to Be Scared of Deep Learning,http://www.lab41.org/one-more-reason-not-to-be-scared-of-deep-learning/,91,25,amplifier_khan,3/1/2016 18:42 +11503410,"Ask HN: Not yet published should it be at all, HN?",https://medium.com/@neroux/417c7fdab282,3,3,datalist,4/15/2016 11:07 +10481525,Ask HN: Real odds of making a living off a web app,,35,25,nicholas73,10/31/2015 2:06 +12038062,I quit Instagram,https://inbound.org/discuss/i-quit-instagram,4,1,bgun,7/5/2016 17:29 +11636016,Why Republican Voters Decided on Trump Nate Silver,http://fivethirtyeight.com/features/why-republican-voters-decided-on-trump/,4,14,pgrote,5/5/2016 13:48 +11286101,"Short men and fat women 'get fewer chances in life', research says",http://www.express.co.uk/news/uk/650785/Short-men-fat-women-less-chances-life,34,61,MollyR,3/14/2016 22:42 +10922162,How Measurement Fails Doctors and Teachers,http://www.nytimes.com/2016/01/17/opinion/sunday/how-measurement-fails-doctors-and-teachers.html,33,53,e15ctr0n,1/18/2016 2:15 +10701633,Neuroscientists find new support for Chomskys internal grammar thesis,http://www.nyu.edu/about/news-publications/news/2015/12/07/chomsky-was-right-nyu-researchers-find-we-do-have-a-grammar-in-our-head.html,182,91,tompark,12/9/2015 2:56 +12500998,When Did Charts Become Popular?,https://priceonomics.com/when-did-charts-become-popular/,66,13,Stratoscope,9/14/2016 20:34 +10995802,Some OS X Applications Vulnerable to MITM Attacks,https://vulnsec.com/2016/osx-apps-vulnerabilities/,108,27,yakshaving_jgt,1/29/2016 15:45 +12128558,Super-Fast Numeric Input with HTML Ranges Part 1,https://spin.atomicobject.com/2016/07/20/numeric-input-html-ranges-part-1/#.V49ym7utlR4.hackernews,10,6,philk10,7/20/2016 12:46 +10329877,Neural Artistic Captions,http://www.cs.toronto.edu/~rkiros/adv_L.html,46,10,tim_sw,10/5/2015 3:47 +11411056,Ask HN: When will YC publicly announce which companies got in Summer '16 class?,,3,1,tomas_interests,4/2/2016 10:53 +10189677,Intel to End Sponsorship of Science Talent Search,http://www.nytimes.com/2015/09/09/technology/intel-to-end-sponsorship-of-science-talent-search.html?partner=rss&emc=rss,63,21,pbhowmic,9/9/2015 4:29 +10293920,"Your 'Microbial Cloud' Is Like a Floating, Invisible Fingerprint",http://motherboard.vice.com/read/your-microbial-cloud-is-like-a-floating-invisible-fingerprint,23,4,dpflan,9/28/2015 23:47 +11550305,San Francisco Is Requiring Solar Panels on All New Buildings,https://nextcity.org/daily/entry/san-francisco-require-solar-panels-buildings,317,348,uptown,4/22/2016 16:24 +10528689,Star Citizen has raised $94M where is it?,https://www.yahoo.com/tech/s/the-most-ambitious-space-game-in-history-has-raised--94-million--so-where-is-it-213831707.html?nf=1,75,69,jkaljundi,11/8/2015 15:20 +12264597,OneReceipt Shutting Down 8/24/16,http://blog.onereceipt.com/post/148753258030/onereceipt-shutting-down-82416,1,2,bdcravens,8/10/2016 20:36 +11821932,Elon Musk: we are probably characters in some advanced civilization's video game,http://www.vox.com/2016/6/2/11837608/elon-musk-simulation-argument,9,2,kensai,6/2/2016 12:33 +12020106,ArXiv preprint server plans multimillion-dollar overhaul,http://www.nature.com/news/arxiv-preprint-server-plans-multimillion-dollar-overhaul-1.20181?WT.mc_id=TWT_NatureNews,80,21,micaeloliveira,7/1/2016 22:19 +10583910,Ask HN: Is there something akin to agents in the software industry?,,3,2,lsc,11/17/2015 21:00 +10398563,"William Gibson, the Art of Fiction No. 211 (2011)",http://www.theparisreview.org/interviews/6089/the-art-of-fiction-no-211-william-gibson,67,14,dnetesn,10/16/2015 11:08 +11189719,Im Part of SFConservancys GPL Compliance Project for Linux,http://groveronline.com/2016/02/im-part-of-sfconservancys-gpl-compliance-project-for-linux/,5,1,chei0aiV,2/28/2016 3:43 +10202355,The US Marines tested all-male squads against mixed-gender ones,http://qz.com/499618/the-us-marines-tested-all-male-squads-against-mixed-gender-ones-and-the-men-came-out-ahead/,35,69,velodrome,9/11/2015 7:08 +10593172,"Obama's drone war a 'recruitment tool' for Isis, say US air force whistleblowers",http://www.theguardian.com/world/2015/nov/18/obama-drone-war-isis-recruitment-tool-air-force-whistleblowers,3,1,ant6n,11/19/2015 6:53 +10960411,"When doctors, psychologists, and drug makers can't rely on each other's research",https://reason.com/archives/2016/01/19/broken-science/print,67,16,nkurz,1/23/2016 22:27 +11152706,Show HN: VeryAnts: Probabilistic Integer Arithmetic for Ruby,https://github.com/saghm/very-ants,45,6,saghm,2/22/2016 17:50 +11765207,Live stream starting: Artificial Intelligence: Law and Policy,http://www.law.uw.edu/events/artificial-intelligence-law-and-policy,1,1,T-A,5/24/2016 20:29 +10651085,"More Apple Car Thoughts: Money, Design UI, Distribution",http://www.mondaynote.com/2015/11/30/more-apple-car-thoughts/,35,31,subnaught,11/30/2015 19:12 +11972759,You don't need to put tape on your webcam,https://medium.com/@billychasen/you-dont-need-to-put-tape-on-your-webcam-b137e39edaa5#.6pagrdabf,2,1,billychasen,6/24/2016 19:35 +10619995,50 Shades of NULL,http://www.vertabelo.com/blog/technical-articles/50-shades-of-null-or-how-a-billion-dollar-mistake-has-been-stalking-a-whole-industry-for-decades,2,2,mariuz,11/24/2015 10:09 +10932949,Why do tourists love to rub the balls of Wall Street's charging bull statue?,http://www.atlasobscura.com/articles/tourists-love-to-rub-the-bronze-balls-of-wall-streets-charging-bull-statue-why,4,1,Facemelters,1/19/2016 18:54 +10250517,U.S. Soldiers Told to Ignore Afghan Allies Abuse of Boys,http://www.nytimes.com/2015/09/21/world/asia/us-soldiers-told-to-ignore-afghan-allies-abuse-of-boys.html,140,88,koevet,9/21/2015 5:26 +12327148,Why I got Fired from Facebook (a $100M dollar lesson) (2012),http://okdork.com/2012/09/29/why-i-got-fired-from-facebook-a-100-million-dollar-lesson/,68,63,yarapavan,8/20/2016 16:07 +12562971,Facial Performance Capture with Deep Neural Networks,http://arxiv.org/abs/1609.06536,3,1,metafunctor,9/23/2016 7:41 +10640336,Ask HN: Advise for a self-taught budding programmer,,9,9,sdiq,11/28/2015 7:17 +11775267,Unlocking an Early Modern Account Book,http://collation.folger.edu/2016/05/early-modern-account-book/,15,1,pepys,5/26/2016 3:54 +11610283,Show HN: Workspaced A weekly newsletter featuring creative workspaces,http://workspaced.com,3,3,ryangilbert,5/2/2016 10:05 +11321631,Online rating systems are broken,https://medium.com/@datashovel/online-rating-systems-are-broken-bf1f6adeb6f#.466995awl,13,1,datashovel,3/20/2016 3:16 +10682439,Tests on skull fragment cast doubt on Adolf Hitler suicide story,http://www.theguardian.com/world/2009/sep/27/adolf-hitler-suicide-skull-fragment,64,23,ohjeez,12/5/2015 16:59 +10626116,Booting Linux in One Second [pdf],http://elinux.org/images/9/97/Boot_one_second_altenberg.pdf,201,108,tomkwok,11/25/2015 8:41 +10301800,Paris city centre goes car-free for a day,http://www.theguardian.com/cities/2015/sep/27/all-blue-skies-in-paris-as-city-centre-goes-car-free-for-first-time,233,214,hliyan,9/30/2015 4:36 +12161907,Why and How to Use Ring Instead of Skype on Linux,https://www.linux.com/learn/why-and-how-use-ring-instead-skype-linux,3,1,jeena,7/25/2016 21:55 +11127273,Microsoft Sells U.S. Defense Dept. On Windows 10,http://blogs.wsj.com/digits/2016/02/17/microsoft-sells-u-s-defense-dept-on-windows-10/?mod=trending_now_3,2,1,USNetizen,2/18/2016 17:08 +10339529,Netflix now worth 900x the price they offered to sell to Blockbuster for in 2000,http://exstreamist.com/netflix-is-now-worth-over-900x-the-50-million-price-tag-blockbuster-rejected/,1,1,sharkweek,10/6/2015 15:30 +10711461,A free-pass for skilled migrants to live and work in selected countries,http://hackmove.com/,33,21,humbertomn,12/10/2015 16:29 +11798636,"Google's upcoming Allo messaging app is 'dangerous', Edward Snowden claims",http://www.independent.co.uk/life-style/gadgets-and-tech/news/google-allo-unsafe-dangerous-edward-snowden-app-release-date-a7052746.html,16,2,JumpCrisscross,5/29/2016 23:02 +11047566,Free Money (Sarah Perry on Basic Income),http://www.ribbonfarm.com/2016/02/04/free-money/,3,1,networked,2/6/2016 12:51 +10732819,Cluefire and Damnation,http://www.cluefire.net/,1,1,reitanqild,12/14/2015 18:32 +12412877,Twitter Stock Jumps After Co-Founder Says It Should Consider Selling,http://fortune.com/2016/09/01/twitter-stock-jumps/,2,1,jdavid,9/2/2016 13:30 +12467860,Ants are destroying plants by nurturing perfect aphid colonies,http://arstechnica.com/science/2016/09/ants-are-destroying-your-plants-by-nurturing-perfect-aphid-colonies/,84,22,em3rgent0rdr,9/10/2016 5:35 +11953400,"Imageflow: Respect the pixels, accelerate the web",https://www.kickstarter.com/projects/njones/imageflow-respect-the-pixels-a-secure-alt-to-image,5,1,ts330,6/22/2016 12:43 +11593327,Science Considered Harmful (2013) [pdf],https://pdfs.semanticscholar.org/1528/db5fbf573f64004c4515173a2bc85966b5b4.pdf,1,1,panic,4/29/2016 2:04 +12390739,Show HN: Hellobox.org Company gear for remote teams,https://hellobox.org/,9,8,hellobox,8/30/2016 15:01 +10320829,30 years a sysadmin,http://www.itworld.com/article/2987198/operating-systems/30-years-a-sysadmin.html,104,30,jlg23,10/2/2015 19:46 +11384988,Stanford researchers show fracking's impact to drinking water sources,http://news.stanford.edu/news/2016/march/pavillion-fracking-water-032916.html,320,131,rezist808,3/29/2016 21:23 +10909868,Is Sharing Economy to Robot Economy Exploitative?,,4,2,sharemywin,1/15/2016 15:36 +10305102,A/B test Facebook posts with Spark,http://techcrunch.com/2015/09/30/naytev-wants-to-bring-a-buzzfeed-style-social-tool-to-every-publisher-with-spark/,69,14,etr71115,9/30/2015 16:31 +12327033,This 24-Hour Aphex Twin Megamix Is Mind Blowing,http://www.edmsauce.com/2016/08/19/24-hour-aphex-twin-megamix/,2,1,e-sushi,8/20/2016 15:40 +11454811,Why youll always need more Data Scientists and thats a bad thing,https://medium.com/@hesenpeng/why-you-ll-always-need-more-data-scientists-and-that-s-a-bad-thing-7a7067271e47,3,2,flygoogle,4/8/2016 14:24 +10944183,"Google saw more downloads than iOS App Store, but Apple generated more revenue",http://venturebeat.com/2016/01/20/app-annie-2015-google-play-saw-100-more-downloads-than-the-ios-app-store-but-apple-generated-75-more-revenue/,58,81,signor_bosco,1/21/2016 9:24 +12001925,Ask HN: What is your best advice for a developer to write better code?,,146,190,gdaz,6/29/2016 14:43 +11104019,Ask HN: Why do dev communities still use mailing lists?,,6,11,kevinSuttle,2/15/2016 16:01 +10189065,Broke,http://www.everydayshouldbesaturday.com/2015/9/8/9249681/broke,181,45,joe5150,9/9/2015 0:52 +12257579,Bayesian Optimization for Collaborative Filtering with MLlib,http://blog.sigopt.com/post/148703071378/sigopt-for-ml-bayesian-optimization-for,42,30,Zephyr314,8/9/2016 20:44 +10319255,Terrorism is not about terror,http://www.gwern.net/Terrorism%20is%20not%20about%20Terror,2,1,Artistry121,10/2/2015 15:45 +12124689,Ask HN: Nowhere to go from here?,,6,4,old_young_guy,7/19/2016 20:35 +10362433,Elon Musk on the Apple Car,https://global.handelsblatt.com/edition/271/ressort/companies-markets/article/all-charged-up-in-berlin,3,2,hartator,10/9/2015 18:47 +11308842,Resume Done Right,http://nuuneoi.com/profile,2,1,akras14,3/18/2016 0:21 +10541748,Extending the MIPS Warrior CPU Family,http://blog.imgtec.com/mips-processors/extending-the-mips-warrior-cpu-family,2,1,protomyth,11/10/2015 19:31 +10730235,Australia pulls some Nurofen products over misleading claims,http://www.bbc.co.uk/news/business-35090087,30,27,DanBC,12/14/2015 10:08 +12147225,Show HN: Gold Laces Conference for Bootstrappers and Side Hustles,https://www.eventbrite.com/e/gold-laces-conf-for-bootstrappers-and-side-hustlers-tickets-26124654545,2,1,sachinag,7/22/2016 22:27 +11944399,CVE-2016-2177 OpenSSL,https://access.redhat.com/security/cve/CVE-2016-2177,2,1,emilburzo,6/21/2016 8:45 +11829269,Carte Blanche isolated development space with integrated fuzz testing,https://github.com/carteb/carte-blanche,94,8,tilt,6/3/2016 9:51 +10542809,Ask HN: How do you test for analytical skills?,,10,9,neilsharma,11/10/2015 21:48 +11505180,Introducing Spash,https://github.com/nerdammer/spash,2,1,nibbio84,4/15/2016 15:41 +11675508,Jrnl- the Command Line Journal,https://maebert.github.io/jrnl/index.html,2,1,alchemical,5/11/2016 14:22 +11525086,China's Crowded Smartphone Market Heads for an Epic Shakeout,http://www.bloomberg.com/news/articles/2016-04-18/china-s-crowded-smartphone-market-heads-for-an-epic-shakeout,1,1,adventured,4/19/2016 5:40 +10711476,Rovios CEO Steps Down After Just Over a Year,http://recode.net/2015/12/09/rovios-ceo-steps-down-after-just-over-a-year/,1,3,mauriziodaniele,12/10/2015 16:31 +10358132,New York inmates defeat Harvard debate team,http://www.cnn.com/2015/10/07/living/harvard-debate-team-loses-to-prison-inmates-feat/,12,1,tokenadult,10/9/2015 4:18 +11167324,The Most Detailed Analysis of Burger King Selling Hot Dogs Youll Ever Read,http://www.wired.com/2016/02/the-most-detailed-analysis-of-burger-king-selling-hot-dogs-youll-ever-read/,47,24,esalazar,2/24/2016 15:18 +12375296,Changing the Culture of Python at Facebook [video],https://www.youtube.com/watch?v=nRtp9NgtXiA,81,31,sandGorgon,8/28/2016 4:23 +10723510,The Painful Truth About Affirmative Action,http://www.theatlantic.com/national/archive/2012/10/the-painful-truth-about-affirmative-action/263122/?single_page=true,3,1,roarktoohey,12/12/2015 18:04 +12553445,A study on human behavior has identified four basic personality types,http://www.uc3m.es/ss/Satellite/UC3MInstitucional/en/Detalle/Comunicacion_C/1371223155576/1371215537949/A_study_on_human_behavior_has_identified_four_basic_personality_types,70,66,T-A,9/22/2016 0:38 +11049745,National Archives releases coloring book of 'favorite' patents,http://aotus.blogs.archives.gov/2016/02/04/colorourcollections/,5,1,anigbrowl,2/6/2016 20:43 +12197880,"Skydiver jumps from 25,000ft without a parachute, lands in a net",https://www.youtube.com/watch?v=nVQKW6qV3fA,11,5,obi1kenobi,7/31/2016 17:35 +12183813,Putin Issues Desperate Warning of WWIII,https://www.youtube.com/watch?v=RMMscY7Btus,4,1,valera_rozuvan,7/28/2016 22:57 +12201243,Australia's Entire GPS Navigation Is Off by 5 Feet,http://www.atlasobscura.com/articles/australias-entire-gps-navigation-is-off-by-5-feet,24,19,ghosh,8/1/2016 10:09 +10895872,Ffmpeg vulnerability allows the attacker to get files from your server or PC,https://translate.google.com/translate?sl=ru&tl=en&u=http%3A%2F%2Fhabrahabr.ru%2Fcompany%2Fmailru%2Fblog%2F274855%2F,14,5,ChALkeR,1/13/2016 17:19 +12571595,Bitcoin Wealth Distribution,https://blog.lawnmower.io/the-bitcoin-wealth-distribution-69a92cc4efcc,103,51,jackgavigan,9/24/2016 16:49 +11675663,Ask HN: When you are learning a new PL what do you create as your first project?,,1,1,warriorkitty,5/11/2016 14:36 +10757893,"Martin Shkreli is the symptom, not the problem",http://www.vox.com/2015/12/17/10447984/martin-shkreli-arrest,2,1,nns,12/18/2015 11:19 +10713444,How Walmart's launch of Walmart Pay could change the mobile payments game,http://www.zdnet.com/article/how-walmarts-launch-of-walmart-pay-could-change-the-mobile-payments-game/,2,1,Mz,12/10/2015 21:03 +11697800,Fifty Shades of Open,http://www.ojphi.org/ojs/index.php/fm/article/view/6360/5460,36,2,hargup,5/14/2016 20:00 +10300165,Twitter is ditching the 140 character limit,http://thenextweb.com/twitter/2015/09/29/twitter-is-reportedly-ditching-the-140-character-limit/,1,1,mandeepj,9/29/2015 22:12 +12424214,Falling for Haiku OS,http://blog.leahhanson.us/post/haiku-falling-for.html,15,3,wtetzner,9/4/2016 13:28 +11402656,A Primer on Bézier Curves (2011),https://pomax.github.io/bezierinfo/,190,43,ant6n,4/1/2016 4:36 +10692681,Kotlin 1.0 Beta 3 is Out,http://blog.jetbrains.com/kotlin/2015/12/kotlin-1-0-beta-3-is-out/,5,1,cryptos,12/7/2015 21:03 +12410839,Project Ara: Google shelves plan for phone with interchangeable parts,http://uk.reuters.com/article/uk-google-smartphone-exclusive-idUKKCN118065,5,1,Jerry2,9/2/2016 4:29 +11475968,Lytro to launch 755 megapixel Cinema light field camera,http://techcrunch.com/2016/04/11/lytro-cinema-is-giving-filmmakers-400-gigabytes-per-second-of-creative-freedom/,17,3,aaronbrethorst,4/11/2016 23:26 +12267674,Lyft gives $5 Starbucks gift card with every $20 Lyft gift card,https://blog.lyft.com/posts/lyft-x-starbucks,1,1,tedmiston,8/11/2016 12:34 +10574778,"Drug Resistance: Worse, and Still a Lot to Learn",http://phenomena.nationalgeographic.com/2015/11/16/amr-weeks/,23,1,Amorymeltzer,11/16/2015 15:04 +11713109,Wartime Radio: The Secret Listeners (1979) [video],http://www.eafa.org.uk/catalogue/5108,24,7,noyesno,5/17/2016 12:46 +10919435,Ask HN: Fun and interesting Python things to do or learn?,,1,1,thecuriousone,1/17/2016 13:49 +10321857,The Zombie Preacher of Somerset (2009),http://lesswrong.com/lw/69/the_zombie_preacher_of_somerset/,19,8,gwern,10/2/2015 23:06 +11859388,"Google involved with Clinton campaign, controls information flow Assange",https://www.rt.com/usa/345749-assange-us-google-clinton/,9,1,sjreese,6/8/2016 1:31 +11046574,Ask HN: Is anyone working on an Intellij alternative?,,1,2,notinreallife,2/6/2016 4:38 +11701949,Minecraft shows how bedroom programmers can create global hits (2013),https://www.technologyreview.com/s/516051/the-secret-to-a-video-game-phenomenon/?,13,18,espeed,5/15/2016 18:00 +10865420,How I took control of my personal finances. Simplicity in money saving,https://medium.com/@tomkoszyk/how-i-took-control-of-my-personal-finances-simplicity-in-money-saving-d7315830a758#.hfghbuyqj,36,51,koshyk,1/8/2016 15:18 +10731137,Amazon full of sponsored reviews,https://www.amazon.com/gp/vine/help?ie=UTF8&*Version*=1&*entries*=0,35,28,modzu,12/14/2015 14:28 +10667041,Kickstarter is Debt,https://blog.bolt.io/kickstarter-is-debt-e3b6a70ce180,254,58,proee,12/3/2015 1:00 +10432014,Tesla self-drive mode filmed 'endangering passengers',http://www.bbc.co.uk/news/technology-34603364,5,1,stehat,10/22/2015 13:23 +11580954,Snowden: Official Trailer,https://www.youtube.com/watch?v=QlSAiI3xMh4,6,1,kushti,4/27/2016 14:58 +11759591,"Dell's 43-inch, 4K monitor supports four clients on one screen",http://www.engadget.com/2016/05/23/dell-43-inch-quad-monitor/,11,5,petepete,5/24/2016 7:31 +10663365,Who cleans up after war?,http://www.hopesandfears.com/hopes/now/question/214593-war-cleanup-damage,37,26,snake117,12/2/2015 15:11 +11888685,Ask HN: Stop builtwith.com from exposing my stack ?,,2,6,max_,6/12/2016 16:03 +11308221,"Ask HN: If you were writing Git now, what would you change?",,2,2,prmph,3/17/2016 22:41 +12416350,Pyongyang (restaurant chain),https://en.wikipedia.org/wiki/Pyongyang_(restaurant_chain),2,1,thrden,9/2/2016 21:17 +10561064,Ne: the nice editor,http://ne.di.unimi.it/,130,51,znpy,11/13/2015 17:33 +10539029,Clojure and the technology adoption curve,http://blog.juxt.pro/posts/clojure-curve.html,98,62,Ernestas,11/10/2015 13:09 +12344771,Show HN: Trailbot Monitor Your Data and Act Upon Unwanted Modifications,https://github.com/trailbot/client,18,5,adansdpc,8/23/2016 16:00 +11196093,Mozilla Gives a Security Pass to the People It Shouldn't,http://news.softpedia.com/news/mozilla-gives-a-security-pass-to-the-people-it-shouldn-t-500986.shtml,8,1,cellover,2/29/2016 15:47 +12481685,Making a classroom discussion an actual discussion,http://crookedtimber.org/2016/09/12/making-a-classroom-discussion-an-actual-discussion/,26,11,benbreen,9/12/2016 17:25 +10205271,The Cold War nuke that fried satellites,http://www.bbc.com/future/story/20150910-the-nuke-that-fried-satellites-with-terrifying-results,35,16,Audiophilip,9/11/2015 18:13 +10841385,Dell Computers Has Been Hacked,http://www.10zenmonkeys.com/2016/01/04/dell-computers-has-been-hacked/,537,209,MilnerRoute,1/5/2016 5:25 +10234389,2 keyboard halves 20 meters apart and still operational,https://ultimatehackingkeyboard.com/blog/2015/09/17/2-keyboard-halves-20-meters-apart,5,1,nikolaii,9/17/2015 16:35 +10241731,"Llgo A Go frontend for LLVM, written in Go",http://llvm.org/viewvc/llvm-project/llgo/trunk/,18,3,Somasis,9/18/2015 20:05 +11894825,Ask HN: Co-founder? Seeking co-founder?,,4,1,kirk21,6/13/2016 15:50 +10395300,Ask HN: How do you find remote jobs?,,27,11,vijayr,10/15/2015 19:16 +10319841,Calipers: The Fastest Way to Measure Image Dimensions in Node,https://lob.com/blog/introducing-calipers-the-fastest-way-to-measure-images-and-pdfs-in-node/,16,6,dzhao,10/2/2015 17:14 +10204870,Exhibit 8: Excerpts from AirBed and Breakfasts Application to Y Combinator,http://i.imgur.com/55yP1CZ.jpg,2,1,tristanj,9/11/2015 17:13 +10538417,Imitators take note Steve Jobs was more than a showman,http://www.ft.com/cms/s/0/3a55dafa-86e1-11e5-90de-f44762bf9896.html,13,9,jackgavigan,11/10/2015 9:52 +11783974,Why the Best Companies and Developers Give Away Almost Everything They Do,http://www.themacro.com/articles/2016/05/why-the-best-give-away/,7,1,yarapavan,5/27/2016 4:53 +11042130,How to write like a reporter from The Economist,http://www.economist.com/styleguide/introduction,33,8,squeakywheel,2/5/2016 15:47 +10365355,Qualcomm enters server CPU market with 24-core ARM chip,http://www.pcworld.com/article/2990868/qualcomm-enters-server-cpu-market-with-24-core-arm-chip.html,40,26,stefantalpalaru,10/10/2015 12:56 +12162290,Nexus phones now identify suspected spam callers,https://plus.google.com/+Nexus/posts/PLsxmDRUd4K,303,238,bishnu,7/25/2016 23:17 +12157317,Putin Weaponized Wikileaks to Influence the Election of an American President,http://www.defenseone.com/technology/2016/07/how-putin-weaponized-wikileaks-influence-election-american-president/130163/,7,1,vinnyglennon,7/25/2016 8:49 +10603848,Anyone use https://lowlatencyservers.com/ as a VPS?,,2,2,ahoooooooooo,11/20/2015 20:59 +12222856,Ask HN: Quitting from a small startup?,,3,3,shadowycoder,8/4/2016 1:56 +11748201,The fastest-growing cities in America,http://www.marketwatch.com/story/the-11-fastest-growing-cities-in-america-2016-05-19,29,12,walterbell,5/22/2016 11:38 +11699187,Ask HN: What's your workflow for simple side projects?,,29,16,fratlas,5/15/2016 3:01 +12170912,Australia's big banks say Apple Pay is anti-competitive,http://m.imore.com/australias-big-banks-say-apple-pay-anti-competitive,4,2,qzervaas,7/27/2016 6:26 +11513045,Apply HN: Robin Banking for Children Focused on Education,,4,4,roger-vg,4/17/2016 1:13 +11529086,David Foster Wallace on iPhone 4's FaceTime (2010),http://kottke.org/10/06/david-foster-wallace-on-iphone-4s-facetime,3,1,tshtf,4/19/2016 18:33 +12201299,Real Time Personalization with Permutive (YC S14),http://blog.permutive.com/live-chat-demo/,4,2,chendriksen,8/1/2016 10:29 +10462019,Show HN: PhoneNumberKit a Swift take on libphonenumber,http://github.com/marmelroy/phonenumberkit,4,2,marmelroy,10/27/2015 23:48 +12439517,Resolving Merge Conflicts from the GitLab UI,https://about.gitlab.com/2016/09/06/resolving-merge-conflicts-from-the-gitlab-ui/?,1,1,sytse,9/6/2016 21:49 +10608547,Baffling Web Trackers by Obfuscating Your Movements Online,http://www.wired.com/2015/11/clive-thompson-10/,131,43,Jerry2,11/22/2015 0:11 +11906882,Apple will require HTTPS connections for iOS apps by the end of 2016,http://techcrunch.com/2016/06/14/apple-will-require-https-connections-for-ios-apps-by-the-end-of-2016/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29&utm_content=FaceBook&sr_share=facebook,4,1,dingdongding,6/15/2016 2:42 +10791567,7 out of 10 most influential people on GitHub writing in JavaScript,http://githubstats.lip.is/people/?limit=10&order=followers,2,1,lipis,12/25/2015 16:31 +11130681,Apple Has Not Unlocked 70 iPhones for Law Enforcement,http://techcrunch.com/2016/02/18/no-apple-has-not-unlocked-70-iphones-for-law-enforcement/,137,63,augb,2/19/2016 0:50 +11839762,Show HN: A timer shell script to practice timeboxing,https://github.com/susam/timebox,9,2,susam,6/5/2016 5:29 +11204253,Brazil arrests Facebook executive in row over police access to data,http://news.yahoo.com/brazil-arrests-facebook-executive-row-over-police-data-155215319.html,97,53,mauricioc,3/1/2016 17:20 +10571822,"The computer virus is born, November 10, 1983",http://www.edn.com/electronics-blogs/edn-moments/4437117/The-computer-virus-is-born--November-10--1983,15,4,eplanit,11/16/2015 0:00 +11005821,Ask HN: What are your itches with your current to-do app?,,3,1,zebra,1/31/2016 9:20 +12358292,I Love Go; I Hate Go,https://medium.com/@ahl/i-love-go-i-hate-go-3356ee6b169c,2,1,b3h3moth,8/25/2016 11:51 +11703659,Tips for benchmarking a compressor,http://cbloomrants.blogspot.com/2016/05/tips-for-benchmarking-compressor.html,33,3,deverton,5/16/2016 1:17 +10730852,What academic research caught the public imagination in 2015,http://www.altmetric.com/top100/2015/,27,3,matthewmacleod,12/14/2015 13:26 +12344655,Full Resolution Image Compression with Recurrent Neural Networks,http://arxiv.org/abs/1608.05148,3,1,laudney,8/23/2016 15:48 +11956782,"Red Hat acquires API management company 3scale, will open-source the code",http://venturebeat.com/2016/06/22/red-hat-acquires-api-management-company-3scale-will-open-source-the-code/,16,2,coloneltcb,6/22/2016 20:33 +11213877,This tools tells you if it snowed more when you were a kid,http://braid.io/tile/MoreSnow,2,1,pcharged,3/2/2016 23:20 +11070518,Not Everyone Needs to Learn How to Program,http://dooskington.com/not-everyone-needs-to-learn-how-to-program/,5,2,dooskington,2/10/2016 3:10 +11291415,"Show HN: WebGL Insight, a Debugging Toolkit for Chrome",https://github.com/3Dparallax/insight/,72,7,blisse,3/15/2016 17:35 +10527166,Oldest Animal-Built Reef Found in Namibia,http://news.discovery.com/animals/oldest-animal-built-reef-found-in-namibia-140627.htm,5,1,DrScump,11/8/2015 2:34 +10251293,Skype is down in Europe,,6,1,reddotX,9/21/2015 9:56 +11307991,The First convertible All-Road-Bike,https://www.kickstarter.com/projects/8barbikes/the-8bar-mitte-the-1st-convertible-all-road-bike,1,1,dsego,3/17/2016 22:03 +11034644,How to Make Your Own NSA Bulk Surveillance System,http://www.wired.com/2016/01/how-to-make-your-own-nsa-bulk-surveillance-system/,63,9,lisper,2/4/2016 15:44 +10776177,The Barometer Story (1964),http://www.mrao.cam.ac.uk/~steve/astrophysics/webpages/barometer_story.htm,11,2,lolptdr,12/22/2015 6:16 +12394787,"Vesper Sync Shutdown Tonight, Open Source Plans",http://inessential.com/2016/08/30/vesper_sync_shutdown_tonight_open_sourc,2,1,8ig8,8/30/2016 23:28 +11223261,Speed up your development with these Node.js resources,https://www.noodl.io/market/search/Nodejs,5,1,noodlio,3/4/2016 12:16 +12279927,Ask HN: What's your favorite outline editor which supports Markdown?,,2,1,snaga,8/13/2016 2:19 +10372898,Pilots who risk their lives flying tiny planes over the Atlantic,http://www.bbc.com/news/magazine-34484972,125,48,herendin,10/12/2015 6:47 +11908225,Android-Complete-Reference,https://github.com/amitshekhariitbhu/Android-Complete-Reference,4,1,mohitkumar0571,6/15/2016 9:59 +12512528,"If you do self driving cars, you do not need a lot of CSS",https://github.com/commaai/web/blob/master/positions.html#L4-L7,1,1,ChrisCinelli,9/16/2016 7:47 +11528703,Americans are abandoning wired home Internet,https://www.washingtonpost.com/news/the-switch/wp/2016/04/18/new-data-americans-are-abandoning-wired-home-internet/,3,1,prostoalex,4/19/2016 17:44 +11673130,ProperInvoice - Life is Short. Don't waste time Invoicing,https://www.ProperInvoice.com,1,1,russellgodinho,5/11/2016 6:58 +10311460,How Steve Jobs Fleeced Carly Fiorina with HP iPod,https://medium.com/backchannel/how-steve-jobs-fleeced-carly-fiorina-79d1380663de,133,45,steven,10/1/2015 14:44 +11096189,Why millennial women dont want to call themselves feminists,http://www.pbs.org/newshour/making-sense/column-why-millennial-women-dont-want-to-call-themselves-feminists/,14,16,walterclifford,2/13/2016 23:16 +12085863,U.S. judge throws out cell phone 'stingray' evidence,http://www.reuters.com/article/us-usa-crime-stingray-idUSKCN0ZS2VI,46,49,jswny,7/13/2016 13:15 +10562507,Sylvia Earle and her work to protect the oceans,http://www.outsideonline.com/2030946/marine-biologist-sylvia-earle-profile,22,1,sergeant3,11/13/2015 21:26 +11056606,Kids who played shoot-em-up games in the 90s were probably (mostly) OK,http://arstechnica.com/science/2016/02/kids-who-played-shoot-em-up-games-in-the-90s-were-probably-mostly-ok/,2,1,sprucely,2/8/2016 6:12 +11623584,Ask HN: Where's the best place to find devs?,,1,1,traviswingo,5/3/2016 19:40 +10923719,Zlib in serious danger of becoming obsolete,http://richg42.blogspot.com/2016/01/zlib-in-serious-danger-of-becoming.html,26,2,pettou,1/18/2016 11:08 +11506918,Show HN: Convert Django Admin to a REST API,https://github.com/erdem/django-admino,12,1,ekinertac,4/15/2016 19:19 +11424876,Startups in Montréal,http://builtinmtl.com/,44,58,jordigh,4/4/2016 19:47 +12373183,Ask HN: End of the rope at 42- Thinking Coder School-Does it make sense?,,1,1,DiversityinSV,8/27/2016 17:07 +11922821,"Beamery, the Salesforce of recruiting",http://venturebeat.com/2016/06/16/beamery-closes-2-million-round-to-grow-its-recruiting-software-business/,15,3,ahmadassaf,6/17/2016 14:31 +11360593,Peachpie vs. PHP microbenchmark - Computing Pi,,11,2,pchp,3/25/2016 15:28 +11721051,Finnish startup to re-launch Nokia phones Android this time,http://yle.fi/uutiset/finnish_start-up_to_re-launch_nokia_phones__android_this_time/8890128,4,1,Nokinside,5/18/2016 11:05 +11906327,"Beyond Movie Material, Is Theranos Worth Anything?",http://www.forbes.com/sites/petercohan/2016/06/14/beyond-movie-material-is-theranos-worth-anything,4,2,kqr2,6/14/2016 23:56 +10498678,Apple iMessage attachments transfer = always unencrypted connection,http://i.imgur.com/sNYb0d1.png,2,2,ladino,11/3/2015 10:47 +11509374,Smart Kids Should Skip High School,http://sonyaellenmann.com/2015/09/why-skip-high-school.html,42,65,exolymph,4/16/2016 4:51 +11426605,Source code for Lua 5.3,http://www.lua.org/source/5.3/,75,25,vmorgulis,4/4/2016 23:27 +11820569,"The Story of Mel, a Real Programmer (1983)",https://www.cs.utah.edu/~elb/folklore/mel.html,9,4,rdegges,6/2/2016 5:28 +11615271,Scientists discover potentially habitable planets,http://news.mit.edu/2016/scientists-discover-potentially-habitable-planets-0502,172,52,stillsut,5/2/2016 20:27 +11019970,Steven Penny is forcefully claiming ownership of MIT code,,15,2,hagbarddenstore,2/2/2016 15:26 +11899111,Heres how Apple plans to protect privacy and still compete on AI,http://www.recode.net/2016/6/13/11925660/apple-differential-privacy,17,1,po,6/14/2016 1:21 +10346147,The limits of physics (Margaret Wertheim),http://aeon.co/magazine/science/margaret-wertheim-the-limits-of-physics/,1,1,robocaptain,10/7/2015 14:19 +11696802,Frontiers in language learning tech how to learn Chinese today,https://medium.com/@p_e/frontiers-in-language-learning-tech-or-how-to-learn-chinese-today-9f32022fff4f#.jkoqute9b,1,1,Peteris,5/14/2016 16:28 +11081132,"U.S. can't ban encryption because it's a global phenomenon, Harvard study finds",http://www.dailydot.com/politics/worldwide-survey-of-encryption-products/,130,186,chewymouse,2/11/2016 16:31 +10947145,How Zano Raised Millions on Kickstarter and Left Most Backers with Nothing,https://medium.com/kickstarter/how-zano-raised-millions-on-kickstarter-and-left-backers-with-nearly-nothing-85c0abe4a6cb,1,1,RockyMcNuts,1/21/2016 18:22 +11792687,How the Profound Changes in Economics Make Left versus Right Debates Irrelevant,https://evonomics.com/the-deep-and-profound-changes-in-economics-thinking/,6,2,ultrasociality,5/28/2016 18:21 +11630906,Master spec-repo rate limiting postmortem,http://blog.cocoapods.org/Master-Spec-Repo-Rate-Limiting-Post-Mortem/,55,5,anujbahuguna,5/4/2016 19:15 +11095056,Ask HN: How do you handle white-labeling product from a technical perspective?,,6,7,bradleyjoyce,2/13/2016 18:30 +11832136,How essential is Maths?,,6,4,jackson_1,6/3/2016 18:16 +12510512,Event frequency analysis without arbitrary windows,http://databozo.posthaven.com/deep-in-the-weeds-event-frequency-analysis-without-arbitrary-windows,4,2,darkxanthos,9/15/2016 22:48 +10436020,Big listed firms earnings have hit a wall of deflation and stagnation,http://www.economist.com/news/business/21676803-big-listed-firms-earnings-have-hit-wall-deflation-and-stagnation-age-torporation,10,8,Futurebot,10/23/2015 0:02 +11698378,Can we make consciousness into an engineering problem?,https://aeon.co/essays/can-we-make-consciousness-into-an-engineering-problem?href,3,1,jonbaer,5/14/2016 22:39 +12170089,Transit App: They have lots of resources. But then again we have Anton.,https://medium.com/@transitapp/transit-maps-apple-vs-google-vs-us-cb3d7cd2c362#.d7g9rth7t,3,2,peterbonney,7/27/2016 2:17 +10812065,Soft Kitty Copyright Lawsuit Hits Big Bang Theory,http://boozooz.com/big-bang-theory-producers-sued-over-use-of-soft-kitty-song,1,1,AstroJetson,12/30/2015 14:07 +10341538,Employer unable to provide any feedback about interview process,,1,3,bobloblaw02,10/6/2015 19:12 +12310671,"Ask HN: Hey recruiters, do you look at my personal website?",,39,21,dudeget,8/18/2016 6:05 +10502549,Good JavaScript front end libraries?,,3,3,mercurial,11/3/2015 20:51 +10925679,Adblock Plus un-invited from IAB conference,http://uk.businessinsider.com/adblock-plus-un-invited-from-iab-conference-2016-1?r=US&IR=T,9,1,SimplyUseless,1/18/2016 17:45 +12121359,Ask HN: Does your company practice daily reporting?,,5,2,tuyguntn,7/19/2016 12:41 +11118310,Sulong: Fast LLVM IR Execution on the JVM with Truffle and Graal,https://github.com/graalvm/sulong,5,1,pron,2/17/2016 15:13 +11478961,"Magnitogorsk, Russia's steel city",http://www.theguardian.com/cities/2016/apr/12/story-of-cities-20-the-secret-history-of-magnitogorsk-russias-steel-city,76,22,l33tbro,4/12/2016 12:40 +11173534,Show HN: World's easiest email hosting,https://migadu.com?s=hn,15,28,dejan,2/25/2016 10:28 +10659902,Cosmic Microwave Background Radiation Power Spectrum as a Random Bit Generator,http://arxiv.org/abs/1511.02511,36,26,aburan28,12/2/2015 0:06 +10941233,How to sell programming/hacking articles online?,,4,4,nightnewton,1/20/2016 20:50 +10427773,Detecting Fraud Using Benford's Law,http://blog.cluster-text.com/2015/10/20/detecting-fraud-using-benfords-law-mathematical-details/,16,1,Bill_Dimm,10/21/2015 19:06 +11639775,Should Prostitution Be a Crime?,http://www.nytimes.com/2016/05/08/magazine/should-prostitution-be-a-crime.html?_r=0,164,314,jseliger,5/5/2016 21:25 +11070805,Why I fought for open source in the Air Force,https://opensource.com/life/16/2/why-i-fought-for-open-source-in-the-air-force?sc_cid=701600000011jJVAAY,112,29,signa11,2/10/2016 4:40 +10547432,Ask HN: Why don't geeks care about climate change?,,12,35,mijustin,11/11/2015 16:28 +10580448,BabelBox Minimal internationalization library,http://javascript-kurse-berlin.de/labs/babelbox.html,17,11,yasserf,11/17/2015 11:42 +12529729,"Decentralized platform for photo sales and photo sharing, built on Ethereum",https://hack.ether.camp/idea/photobook-decentralized-getty-image--instagram--flickr,112,49,lamitoto,9/19/2016 8:06 +11448401,Apply HN: Native Web Browser,,6,9,ShirsenduK,4/7/2016 16:11 +11387424,Linux at 25: Q&A with Linus Torvalds,http://spectrum.ieee.org/computing/software/linux-at-25-qa-with-linus-torvalds,304,155,Jerry2,3/30/2016 6:56 +11368127,Morning seems to be the best time to post on Reddit,https://i.imgur.com/iF2msED.png,1,2,kusanagiblade,3/27/2016 0:05 +12207890,"GhostMail going enterprise-only, losing free tier",https://www.ghostmail.com/,13,4,cjslep,8/2/2016 4:49 +10272351,The Journal That Couldnt Stop Citing Itself,http://chronicle.com/article/The-Journal-That-Couldn-t/233313,7,6,benbreen,9/24/2015 16:00 +12109625,CrossOver for Android Runs on ChromeBooks,https://www.codeweavers.com/about/blogs/jramey/2016/7/14/crossover-for-android-runs-on-chromebooks,74,7,doener,7/17/2016 10:08 +10270415,Netflix Data Reveals When TV Shows Hook Viewers,http://variety.com/2015/digital/news/netflix-tv-show-data-viewer-episode-study-1201600746/,65,48,waterlesscloud,9/24/2015 8:05 +10216717,Let's All Go to Mars: Books about the Wright Brothers and Elon Musk,http://www.lrb.co.uk/v37/n17/john-lanchester/lets-all-go-to-mars,26,2,flannery,9/14/2015 18:49 +10940602,Ask HN: Is it feasible to ask not to talk while coding during interview?,,1,4,muddyrivers,1/20/2016 19:22 +11209148,Plane a social icebreaker to connect people in new places,http://tryplane.com/,2,2,listentojohan,3/2/2016 10:42 +10479340,Source of AmigaOS 4 Firefox port Timberwolf now open to the public,http://www.amigans.net/modules/xforum/viewtopic.php?topic_id=7095&forum=3,62,12,doener,10/30/2015 17:52 +12088787,Ring My Phone,https://jelly-flasher.hyperdev.space/,1,1,download13,7/13/2016 19:08 +11576527,Xi editor: A modern editor with a backend written in Rust,https://github.com/google/xi-editor,274,177,ivank,4/26/2016 23:11 +10683214,A Peek at the First Sodium-Ion Rechargeable Battery,http://spectrum.ieee.org/energywise/energy/renewables/a-first-prototype-of-a-sodiumion-rechargeable-battery,5,3,simonebrunozzi,12/5/2015 20:45 +11181191,Canadians dont live as far north as you think,https://whiteboxgeospatial.wordpress.com/,124,133,binki89,2/26/2016 13:21 +10900413,Nginx has been removed from Debian Stable,,5,6,fuzz_junket,1/14/2016 9:51 +11629754,Cheap Solar Power,http://www.keith.seas.harvard.edu/blog-1/cheapsolarpower,174,96,SushiMon,5/4/2016 17:05 +11440992,How Secure is TextSecure?,http://eprint.iacr.org/2014/904,80,21,kushti,4/6/2016 19:05 +12028746,Compiler autism,http://www.scriptcrafty.com/compiler-autism/,2,1,dkarapetyan,7/4/2016 3:21 +10512091,Mobile App Developers Are Suffering,https://medium.com/swlh/mobile-app-developers-are-suffering-a5636c57d576,96,51,ingve,11/5/2015 7:26 +10562917,Ive been delivering for Postmates and DoorDash,https://medium.com/backchannel/your-pizza-s-cold-blame-your-food-app-not-your-courier-9d1d123ad2e8,67,52,steven,11/13/2015 22:51 +12073011,Yoshi (YC S16) launches set it and forget it vehicle re-fueling service in SF,https://techcrunch.com/2016/07/11/yoshi-launches-set-it-and-forget-it-vehicle-re-fueling-service-in-san-francisco/,156,269,katm,7/11/2016 18:11 +11044480,Usborne 1980s Computer Books for Free,http://www.usborne.com/catalogue/feature-page/computer-and-coding-books.aspx,3,1,kushti,2/5/2016 20:46 +11370340,Intermediate Vim: Sessions,http://rkd.me.uk/intermediate-vim-sessions.html,4,1,rkday,3/27/2016 15:48 +10491354,Ask HN: How do you focus and track your goals?,,7,2,vsergiu,11/2/2015 11:51 +10308411,Can Y Combinator find its next $1B company in a hardware startup?,http://fortune.com/2015/09/30/y-combinator-hardware-unicorn/,3,1,jumpyjack,10/1/2015 0:25 +10336707,Snowden just contradicted himself in a big way and it highlights a crucial mystery,http://www.businessinsider.com/snowden-and-information-to-american-journalists-2015-10,3,1,NN88,10/6/2015 4:04 +11851267,Resignations at Cisco hint at internal power struggle,http://www.recode.net/2016/6/6/11871550/cisco-mpls-team-resigns,144,51,petethomas,6/6/2016 23:14 +11085507,Ask HN: Slow paying client and how do you deal with them?,,7,16,zenincognito,2/12/2016 5:34 +10625839,Software Freedom Conservancy Fundraiser,https://sfconservancy.org/blog/2015/nov/24/faif-carols-fundraiser/,40,9,chei0aiV,11/25/2015 7:16 +11322188,Ask HN: Looking for Feedback on Replacing Your DVD Library Online,,2,8,Richallen1,3/20/2016 7:52 +11582557,A strange Firefox address bar behavior,http://hexatomium.github.io/2016/04/26/gogoogle/,12,12,svenfaw,4/27/2016 17:33 +10668386,The Emerging Neuroscience of Social Media,http://www.sciencedirect.com/science/article/pii/S1364661315002284,16,2,vincent_s,12/3/2015 7:50 +10357254,Netflix Will Charge One Dollar More for Its Standard Plan,http://www.wired.com/2015/10/netflix-will-charge-one-dollar-standard-plan/,4,2,chipperyman573,10/9/2015 0:03 +12219217,Hacker compromises Fosshub to distribute MBR-hijacking malware,http://news.softpedia.com/news/hacker-compromises-fosshub-to-distribute-mbr-hijacking-malware-506932.shtml,9,5,PascLeRasc,8/3/2016 16:33 +10767839,F*ck This Shit,https://achievistapp.com/site/blog/fuck-this-shit/,6,1,altern8,12/20/2015 18:48 +10503985,"Show HN: Vitabee list your favorite products, get paid when people buy",https://www.getvitabee.com/,7,1,tzier,11/4/2015 1:26 +11917448,Ottawa vows to cut wait times for foreign workers joining tech firms,http://www.theglobeandmail.com//report-on-business/ottawa-vows-to-cut-wait-times-for-foreign-workers-joining-tech-firms/article30458187/?cmpid=rss1&click=sf_globe,2,2,drpgq,6/16/2016 17:13 +11887574,How bad is the Windows command line really?,http://blog.nullspace.io/batch.html,135,104,momo-reina,6/12/2016 11:08 +11067896,Would you subscribe to a newsletter about developer lifestyle?,,2,1,oscarvgg,2/9/2016 19:17 +11343611,RFC7763: The text/markdown Media Type,https://www.rfc-editor.org/info/rfc7764,2,1,_jomo,3/23/2016 11:57 +11039402,Dollar tumbles as Fed rescues China in the nick of time,http://www.telegraph.co.uk/finance/economics/12141369/Dollar-tumbles-as-Fed-rescues-China-in-the-nick-of-time.html,27,10,walterbell,2/5/2016 4:22 +12094320,Ask HN: Review my Freeciv HTML5 version again,https://play.freeciv.org/?civ=1,4,1,roschdal,7/14/2016 14:54 +10794098,"In Sweden, a Cash-Free Future Nears",http://www.nytimes.com/2015/12/27/business/international/in-sweden-a-cash-free-future-nears.html,41,50,ncw96,12/26/2015 13:41 +10575320,What the world eats (2014),http://www.nationalgeographic.com/what-the-world-eats/,50,21,oxplot,11/16/2015 16:29 +12072459,Police: Armed robbers used Pokemon Go app to target victims WTOP,http://wtop.com/national/2016/07/police-armed-robbers-used-pokemon-go-app-to-target-victims/,1,1,leephillips,7/11/2016 17:04 +11622186,Supersingular elliptic curve isogeny Diffie-Hellman 101,https://www.lvh.io/posts/supersingular-isogeny-diffie-hellman-101.html,130,8,lvh,5/3/2016 16:40 +10489422,How I Learned to Stop Worrying and Love Civil Procedure (2011),http://btlj.org/2011/11/google-and-the-sherman-act-or-how-i-learned-to-stop-worrying-and-love-civil-procedure/,19,3,iso8859-1,11/2/2015 1:34 +11822375,Ask HN: How do you provide your Python dependencies in production in 2016?,,4,2,inlineint,6/2/2016 13:44 +11357172,Microsoft deletes 'teen girl' AI after it became a Hitler-loving sex robot (),http://www.telegraph.co.uk/technology/2016/03/24/microsofts-teen-girl-ai-turns-into-a-hitler-loving-sex-robot-wit/,90,33,e12e,3/24/2016 22:57 +11181360,"How to Kill a Supercomputer: Dirty Power, Cosmic Rays, and Bad Solder",http://spectrum.ieee.org/computing/hardware/how-to-kill-a-supercomputer-dirty-power-cosmic-rays-and-bad-solder,25,16,tambourine_man,2/26/2016 14:00 +10317868,"TTNT: Test This, Not That",https://github.com/Genki-S/ttnt,92,30,vinnyglennon,10/2/2015 11:44 +10579948,Show HN: ShowCase An open source PHP web app to show your projects with ease,https://github.com/shanehoban/ShowCase,2,5,h_o,11/17/2015 9:05 +11823083,Jasper van Woudenberg: Side channel analysis and fault injection [video],https://www.youtube.com/watch?v=bu59ya8nOBM,2,1,rdl,6/2/2016 15:12 +10355972,Announcing Weave Scope 'Cloud': hosted Docker visualisation early access program,http://blog.weave.works/2015/10/08/weave-the-fastest-path-to-docker-on-amazon-ec2-container-service/,9,1,netingle,10/8/2015 20:33 +12470615,RadPad Rent Checks Bouncing Beginning of the End?,https://medium.com/@paulwithap/radpad-rent-checks-bouncing-beginning-of-the-end-dcc01662b7f3#.72m3cop7p,20,16,pauljaworski,9/10/2016 19:47 +10841177,Dan Boneh's Crypto II Course Starts Jan. 11,https://www.coursera.org/course/crypto2,2,2,calvins,1/5/2016 4:21 +10771610,Gephi 0.9 released: Graph visualization software for networks,https://gephi.wordpress.com/2015/12/21/gephi-0-9-released-play-with-network-data-again/,77,9,mbastian,12/21/2015 15:50 +11011420,Show HN: Hint.css v2.0 Pure CSS tooltip library,http://kushagragour.in/lab/hint/,253,63,chinchang,2/1/2016 12:47 +11541287,EU science cloud aims to give Europe a global lead in big data,https://connect.innovateuk.org/web/high-performance-computing/article-view/-/blogs/eu-science-cloud-aims-to-give-europe-a-global-lead-in-big-data?_33_redirect=https%3A%2F%2Fconnect.innovateuk.org%2Fweb%2Fhigh-performance-computing%2Farticles%3Fp_p_id%3D101_INSTANCE_okNCIW6dT09i%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26p_p_col_id%3Dcolumn-1%26p_p_col_count%3D1%26_101_INSTANCE_okNCIW6dT09i_currentURL%3D%252Fweb%252Fhigh-performance-computing%252Farticles%26_101_INSTANCE_okNCIW6dT09i_portletAjaxable%3D1,4,1,probotika,4/21/2016 11:49 +11553292,Ask HN: Does code style matter to you?,,3,5,rtfpessoa,4/22/2016 23:33 +12009909,Neural Networks in iOS 10 and macOS,https://www.bignerdranch.com/blog/neural-networks-in-ios-10-and-macos/,152,25,ingve,6/30/2016 16:57 +11608379,The Feed Is Dying,http://nymag.com/selectall/2016/04/the-feed-is-dying.html,125,92,jonbaer,5/1/2016 23:44 +10485018,Refal programming language,https://en.wikipedia.org/wiki/Refal,33,12,networked,11/1/2015 1:21 +11608899,How this IoT startup is competing with GE and winning,https://www.techinasia.com/flutura-indian-iot-startup-beating-ge,5,2,schakraberty,5/2/2016 2:31 +12410328,Ask HN: Good resources for new immigrants on how to settle?,,4,8,mus1cfl0w,9/2/2016 2:08 +11443914,Apply HN: Placewire,,2,10,slowernet,4/7/2016 1:22 +12250035,"Start Your Own Tech Company Humble Book Bundle: 19+ e-books, $15, 24hrs",https://www.humblebundle.com/books/start-your-own-tech-company-book-bundle,1,1,j_s,8/8/2016 18:55 +11352182,Do you trust npm?,https://github.com/npm/npm/issues/12045,10,1,jamesjnadeau,3/24/2016 12:19 +11794175,One Time Pad Encryption Over Radio,https://github.com/w8rbt/padder,15,7,w8rbt,5/29/2016 0:12 +10294526,Ask HN: Google recruiting Asking for current compensation,,24,33,Nemant,9/29/2015 3:21 +10226127,Blazing fast app development with formular database,http://blog.dataflows.io/vision/2015/08/25/blazing-fast-apps.html,3,1,filipstachura,9/16/2015 12:48 +11935086,By creating automated tools we have changed the way of application development,http://snaphy.com/,1,1,robinskumar73,6/19/2016 22:46 +12170755,Manul the madness vendoring utility for Go with Git submodules,https://github.com/kovetskiy/manul,97,59,kovetskiy,7/27/2016 5:43 +11268270,Import Evernote to OneNote finally,https://blogs.office.com/2016/03/11/make-the-move-from-evernote-to-onenote-today/,9,2,eibrahim,3/11/2016 17:59 +10218224,Why Search is broken and how we intend to fix it,https://www.tawk.to/blurts/why-search-is-broken-and-how-we-intend-to-fix-it/,2,1,zipz,9/14/2015 23:56 +10857650,STEM Employment: Enter at Your Own Risk,http://www.eggplant.pro/blog/enter-at-own-risk/,4,1,jstewartmobile,1/7/2016 13:01 +11272399,90 percent of U.S. bills carry traces of cocaine (2009),http://edition.cnn.com/2009/HEALTH/08/14/cocaine.traces.money/,60,38,networked,3/12/2016 11:25 +11526532,"Apples MacBook Gets Faster Chips, Better Battery Life, Rose-Gold Finish",http://www.wsj.com/articles/apples-macbook-gets-faster-chips-better-battery-life-rose-gold-finish-1461069592,1,1,uptown,4/19/2016 12:47 +11344404,StartCom will log all issued SSL certificates to public CT log servers,https://www.startssl.com/NewsDetails?date=20160323,74,53,pfg,3/23/2016 13:53 +11084984,Ask HN: Do I really hear my CPU/GPU or am I getting crazy?,,4,8,tarikozket,2/12/2016 2:50 +11913868,"Ask HN: Who in Austin, TX has a tech stack in Go?",,5,10,SamWhited,6/16/2016 4:01 +11256219,Ask HN: Ordinary user focus groups re: perception of regular SSL cert vs. EV SSL,,5,1,walrus01,3/9/2016 22:44 +11787941,"Tell HN: The Economist is still blocking Lynx, 2 months after contacting support",,2,2,rahimnathwani,5/27/2016 18:34 +11502808,Maven Release Plugin: Dead and Buried,https://axelfontaine.com/blog/dead-burried.html,5,1,axelfontaine,4/15/2016 7:41 +10474099,Show HN: API Spec Converter Convert between different API definition formats,http://lucybot.github.io/api-spec-converter/,12,4,bbrennan,10/29/2015 20:38 +11199153,How One Dairy Stock Became a Cash Cow,http://www.bloomberg.com/news/articles/2016-02-29/the-milk-you-ve-never-heard-of-that-s-rocking-the-dairy-world,42,4,phantom_oracle,2/29/2016 22:24 +10627061,Show HN: Fastest and Most Accurate Google Search Ranking,https://www.accuranker.com/,3,1,krystianszastok,11/25/2015 13:34 +10209903,University of California Sells $200M Fossil Fuel Holdings,http://www.bloomberg.com/news/articles/2015-09-10/university-of-california-sells-200-million-fossil-fuel-holdings,5,1,dtawfik1,9/13/2015 0:28 +11277891,AVX2 faster than native popcnt instruction on Haswell/Skylake,http://0x80.pl/articles/sse-popcount.html,147,38,ingve,3/13/2016 14:59 +12433182,"GDD: a lazy, naive, false design method",https://amoveablebeast.neocities.org/2016-09-03-gdd-graph-driven-development.html,3,1,jonny_storm,9/6/2016 1:41 +12335597,Webpack from First Principles,https://www.youtube.com/watch?v=WQue1AN93YU,6,1,geelen,8/22/2016 11:50 +10243388,Show HN: Developer Who A Three.js Tribute to Doctor Who,http://developerwho.com/,1,1,carbeewo,9/19/2015 5:25 +10466096,Ask HN: I need a serious critique of the UX of this hiring app?,,2,2,Morgan17,10/28/2015 17:53 +12566343,Erlang Installer Beta: A Better Way To Use Erlang On OS X,https://www.erlang-solutions.com/blog/erlang-installer-a-better-way-to-use-erlang-on-osx.html,67,18,_nato_,9/23/2016 17:26 +10909609,Yahoo to close it search api BOSS on 31 March,https://developer.yahoo.com/boss/search/,3,1,japaw,1/15/2016 14:51 +11108993,[video] a new tool to make your workflow as a front-end developer a lot better,http://blog.debugme.eu/check-out-our-new-video/,1,1,SLaszlo,2/16/2016 10:38 +12576661,Why Vue.js is poised to become the next jQuery,https://vuejsfeed.com/blog/why-i-believe-vue-js-is-poised-to-be-the-next-jquery-peter-jang,2,1,rmason,9/25/2016 18:40 +10610258,Using and abusing Renoise as a demosequencer,http://soledadpenades.com/files/ASM2010/,10,4,pmoriarty,11/22/2015 15:13 +12213336,Flossing Might Be a Giant Scam,http://nymag.com/scienceofus/2016/08/flossing-might-be-a-giant-scam.html,4,3,tshtf,8/2/2016 20:57 +11357779,Neural Turing Machine in Tensorflow,https://github.com/carpedm20/NTM-tensorflow,99,1,carpedm20,3/25/2016 0:53 +11126767,Working Remotely and Getting Weird,http://s12k.com/2016/02/18/working-remotely-and-getting-weird/,3,1,essayoh,2/18/2016 16:15 +12149313,Show HN: Python 3 pyGtk graphical curve and surface fitter,https://github.com/zunzun/pyGtkFit,3,1,zunzun,7/23/2016 12:42 +10338328,A contender for the most effective development program in history,http://chrisblattman.com/2015/09/24/is-this-the-most-effective-development-program-in-history/,44,19,nols,10/6/2015 12:24 +10261985,Ask HN: Are big budget projects losing you money?,,4,2,workshop_leads,9/22/2015 21:55 +11084580,Anti-Adblock Killer,http://reek.github.io/anti-adblock-killer/,27,12,enzoavigo,2/12/2016 0:48 +12571620,Australia Is Drifting So Fast GPS Can't Keep Up,http://news.nationalgeographic.com/2016/09/australia-moves-gps-coordinates-adjusted-continental-drift/,19,9,wanderer42,9/24/2016 16:57 +12101849,React Is a Terrible Idea,https://www.pandastrike.com/posts/20150311-react-bad-idea,61,37,Zelphyr,7/15/2016 15:53 +10758260,Scala Tutorials Part #2 Type Inference and Types in Scala Madusudanan,http://madusudanan.com/blog/scala-tutorials-part-2-type-inference-in-scala/#kudo,22,2,madhusudhan000,12/18/2015 13:20 +10361326,Ask HN: What do you really think about docker?,,9,5,jaisingh,10/9/2015 16:41 +11155250,A smarter kind of password manager,https://github.com/libeclipse/visionary,5,9,libeclipse,2/22/2016 23:35 +10735163,Developer claims 'PS4 officially jailbroken',http://www.networkworld.com/article/3014714/security/developer-claims-ps4-officially-jailbroken.html,57,76,thebeardisred,12/15/2015 0:43 +12083912,"Posing as ransomware, Windows malware just deletes victims files",http://arstechnica.com/security/2016/07/posing-as-ransomware-windows-malware-just-deletes-victims-files/,4,1,ghosh,7/13/2016 4:40 +12079826,A Mathematical Theory of Communication (1948) [pdf],http://worrydream.com/refs/Shannon%20-%20A%20Mathematical%20Theory%20of%20Communication.pdf,169,53,maverick_iceman,7/12/2016 15:29 +10615918,The Story Behind the New WordPress.com,https://developer.wordpress.com/2015/11/23/the-story-behind-the-new-wordpress-com/,260,84,lloydde,11/23/2015 17:46 +11931068,Reweaving the web: A slew of startups is trying to decentralise the online world,http://www.economist.com/news/business/21700642-slew-startups-trying-decentralise-online-world-reweaving-web?fsrc=scn/tw/te/pe/ed/reweavingtheweb,142,70,vasaulys,6/18/2016 23:16 +11593293,"Blendle: Radical Experiment with Micropayments in Journalism, 365 Days Later",https://medium.com/on-blendle/blendle-a-radical-experiment-with-micropayments-in-journalism-365-days-later-f3b799022edc#.dnnp06sjn,12,2,obi1kenobi,4/29/2016 1:55 +11902768,Where the hell are the new MacBooks?,http://gizmodo.com/where-the-hell-are-the-new-macbooks-1781910047,48,51,Stamy,6/14/2016 15:46 +10295102,One Irish China Expert Is Taking the Hard Out of Hardware,http://www.bloomberg.com/news/articles/2015-09-28/liam-casey-s-pch-international-helps-startups-crack-china,12,7,cheatdeath,9/29/2015 8:07 +10408126,React Desktop React UI Components for OS X El Capitan and Windows 10,https://github.com/gabrielbull/react-desktop,6,3,dalailambda,10/18/2015 13:08 +10927261,Nikola Tesla Statue Unveiling in Silicon Valley,https://www.youtube.com/watch?v=S1SdJFpSVaY,7,1,eplanit,1/18/2016 21:52 +12292949,Qubeship.io 10 minutes to go from Code to Containers to production,http://qubeship.io,2,1,qubeship,8/15/2016 19:56 +10194576,Microsoft case: DoJ says it can demand every email from any US-based provider,http://www.theguardian.com/technology/2015/sep/09/microsoft-court-case-hotmail-ireland-search-warrant,8,1,tim333,9/9/2015 21:02 +11945086,"The Quality, Popularity, and Negativity of 5.6M Hacker News Comments",http://minimaxir.com/2014/10/hn-comments-about-comments/,1,1,BeautifulData,6/21/2016 12:11 +11005637,How to Raise a Creative Child. Step One: Back Off,http://www.nytimes.com/2016/01/31/opinion/sunday/how-to-raise-a-creative-child-step-one-back-off.html?smid=fb-nytimes&smtyp=cur&_r=0,275,145,prostoalex,1/31/2016 7:36 +12578556,"OpenMW, Open Source Elderscrolls III: Morrowind Reimplementation",https://openmw.org/en/,32,3,rocky1138,9/26/2016 1:24 +11591743,Why Misunderstanding Startup Metrics Can Cost You Your Business,https://bothsidesofthetable.com/why-misunderstanding-startup-metrics-can-cost-you-your-business-352923a53dcb?_hsenc=p2ANqtz-_YixWur9ZgyHjHNzLer3ZUwEcvpGN5JJBdIivRUwXQq8JAn0mFfRoVmoAds3Wzp9lM7QfA2NRJ__eV0I1cgriCTif8LA&_hsmi=29010063#.41354c6gb,4,2,taylorwc,4/28/2016 20:39 +10292068,How a two-day sprint moved an agency twenty years forward,https://18f.gsa.gov/2015/09/09/how-a-two-day-spring-moved-an-agency-twenty-years-forward/,120,72,danso,9/28/2015 18:28 +10742328,Show HN: ProductVote.co a product hunting alternative perhaps,http://productvote.co,7,6,tim333,12/16/2015 4:13 +11688061,What happened when a professor built a chatbot to be his teaching assistant,https://www.washingtonpost.com/news/innovations/wp/2016/05/11/this-professor-stunned-his-students-when-he-revealed-the-secret-identity-of-his-teaching-assistant/,10,1,uptown,5/13/2016 1:34 +11777308,Apple executive proposed bid for Time Warner,http://www.ft.com/cms/s/0/a3bf618a-22ec-11e6-9d4d-c11776a5124d.html,2,1,jackgavigan,5/26/2016 12:15 +11466787,Ask HN: Best resources to get started with WebGL for VR?,,2,1,kbouw,4/10/2016 16:12 +10866268,Ask HN: Which Universities Have Free Engineering Master Programme in English?,,1,5,alibeybey,1/8/2016 16:56 +10672276,"Machine learning works spectacularly well, but mathematicians arent sure why",https://www.quantamagazine.org/20151203-big-datas-mathematical-mysteries/,403,132,retupmoc01,12/3/2015 20:17 +11570911,Agile is Dead,https://www.linkedin.com/pulse/agile-dead-matthew-kern,121,99,dsego,4/26/2016 11:28 +10881766,Sleazier sounds: electric guitar solos are descended from saxophone solos,http://www.lrb.co.uk/blog/2016/01/08/alex-abramovich/sleazier-sounds/,38,19,tintinnabula,1/11/2016 17:29 +10476333,Bridge the Gap Between San Francisco and Berlin,,7,5,dansman,10/30/2015 5:51 +10405131,The Making of John Wayne,http://www.buzzfeed.com/annehelenpetersen/making-of-john-wayne?utm_term=.gn1l04Wjyk#.jdRq30ZVjr,29,9,coloneltcb,10/17/2015 17:11 +10626699,FunctionalPlus helps you write concise and readable C++ code,https://github.com/Dobiasd/FunctionalPlus,57,32,Dobiasd,11/25/2015 11:44 +12143713,Docker Storage: An Introduction,https://deis.com/blog/2016/docker-storage-introduction/,102,35,nslater,7/22/2016 14:30 +10615958,Apple Pencil Review Written with an Apple Pencil,http://s3.amazonaws.com/asymco.pixxa.com/asymco-apple-pencil-review.png,5,3,reimertz,11/23/2015 17:51 +11333155,Bit twiddling hacks (2005),https://graphics.stanford.edu/~seander/bithacks.html,2,1,lgessler,3/21/2016 23:37 +11247368,Ask HN: Moving Out of Silicon Valley because of housing? Where to?,,191,383,Apocryphon,3/8/2016 18:35 +10209966,Could Neighboring Skyscrapers Cancel Out Each Others Shadows?,http://www.slate.com/blogs/the_eye/2015/03/27/no_shadow_tower_by_nbbj_uses_algorithms_to_cancel_out_the_shadows_cast_by.html,5,2,snake117,9/13/2015 1:01 +12175685,Science has found a way to extend the shelf life of cold milk 300%,http://qz.com/740959/science-has-found-a-way-to-extend-the-shelf-life-of-cold-milk-300/,21,3,prostoalex,7/27/2016 19:11 +11175958,New Node.js logo,https://nodejs.org/en/blog/weekly-updates/weekly-update.2016-02-22/#new-official-node-js-logo,4,1,HeinZawHtet,2/25/2016 17:22 +10993349,SourceForge and Slashdot Have Been Sold,http://fossforce.com/2016/01/sourceforge-and-slashdot-have-been-sold/,174,91,JohnTHaller,1/29/2016 3:48 +11240373,Drone Shield: A different take on gun defense,https://medium.com/@rob_lh/drone-shield-concept-fc1acd9cb8f6,2,1,rob_lh,3/7/2016 18:08 +12422420,In defence of Douglas Crockford,http://atom-morgan.github.io/in-defense-of-douglas-crockford,683,419,ramblerman,9/4/2016 2:50 +10439415,Hiring and Retention Problem,https://medium.com/@hiren/hiring-and-retention-problem-7ace6888751c#.ay91c5h9h,2,5,hna0002,10/23/2015 15:58 +11558015,An Introduction to Model Oriented Programming,http://download.imatix.com/mop/introduction.html,9,1,cookrn,4/24/2016 0:27 +10580097,Ask HN: Best practice for test and production environments for your company,,12,3,jollychang,11/17/2015 9:55 +11621064,"Arc: A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell",https://github.com/horst3180/arc-theme,3,1,somecoder,5/3/2016 14:38 +10561576,"Node: List all connected drives in your computer, in all major operating systems",https://github.com/resin-io/drivelist,3,2,jviotti,11/13/2015 18:45 +10844612,On the dangers of a blockchain monoculture,https://tonyarcieri.com/on-the-dangers-of-a-blockchain-monoculture,195,63,bascule,1/5/2016 17:38 +10245809,Please Don't Block Our Ads. Here's How to Block Ads in iOS 9,http://www.wired.com/2015/09/content-blocking-apps/,2,2,shawndumas,9/19/2015 22:50 +12127202,Visual Studio 15 Preview 3 for C# and Visual Basic,https://blogs.msdn.microsoft.com/dotnet/2016/07/13/visual-studio-15-preview-3-for-c-and-visual-basic/,3,1,kristianp,7/20/2016 6:17 +11988657,Project Triforce: Run AFL on Everything,https://www.nccgroup.trust/us/about-us/newsroom-and-events/blog/2016/june/project-triforce-run-afl-on-everything/,72,16,mytummyhertz,6/27/2016 19:13 +10673385,Being a Resident at the Recurse Center,http://marijnhaverbeke.nl/blog/recurse-center.html,46,9,luu,12/3/2015 23:02 +10415824,Segway technology for wheelchairs,https://www.youtube.com/watch?v=zgat4a1TrEM,1,1,alvinktai,10/19/2015 21:14 +10593617,Chuck Forsberg has died author of Zmodem,http://www.anewtradition.com/obituaries/obituary/12060_Charles_Alton_Forsberg,233,69,jacquesm,11/19/2015 9:09 +11159805,Ask HN: What Makes an Ordinary Programmer a Great Programmer?,,1,2,acidfreaks,2/23/2016 16:05 +11345764,Apple Policy on Bugs May Explain Why Hackers Would Help F.B.I,http://mobile.nytimes.com/2016/03/23/technology/apple-policy-on-bugs-may-explain-why-hackers-might-help-fbi.html?emc=edit_dlbkam_20160323&nl=dealbook&nlid=65508833&referer=,4,2,JumpCrisscross,3/23/2016 16:15 +10181339,Reproducible builds in Debian: preventing compiler backdoors,http://motherboard.vice.com/read/how-debian-is-trying-to-shut-down-the-cia-and-make-software-trustworthy-again,88,27,Tsiolkovsky,9/7/2015 13:29 +11999128,Ask HN: What is that code snippet / command that you Google every single time?,,2,1,guillegette,6/29/2016 2:31 +12312819,"Using Create-React-app with React Router, Express.js and Docker",https://medium.com/@patriciolpezjuri/using-create-react-app-with-react-router-express-js-8fa658bf892d,1,1,mrpatiwi,8/18/2016 14:39 +12416852,"Walmart to cut 7,000 jobs due to cash automation",http://www.usatoday.com/story/money/2016/09/01/walmart-jobs/89716862/,11,4,hourislate,9/2/2016 22:59 +11940144,Ask HN: Does the design of a programming language includes writing its compiler?,,3,4,basicscholar,6/20/2016 18:35 +10850205,"Idris, a language that will change the way you think about programming (2015)",http://crufter.com/2015/01/01/idris-a-language-which-will-change-the-way-you-think-about-programming/,118,100,kenshiro_o,1/6/2016 12:54 +11803895,How to print things,https://byorgey.wordpress.com/how-to-print-things/,103,10,colinprince,5/31/2016 0:13 +11239304,The sad state of the backbone ecosystem,http://benmccormick.org/2016/03/07/the-sad-state-of-the-backbone-ecosystem/,2,1,azsromej,3/7/2016 15:15 +11004124,Platform building growth strategies and economics,https://medium.com/@smitty/what-i-learned-from-100-s-of-hours-studying-platform-businesses-platform-growth-tactics-part-2-aa140a5dd3d4#.trdt5wod4,2,1,chriscls,1/30/2016 22:34 +11555313,The Heart of Deterrence (2012),http://blog.nuclearsecrecy.com/2012/09/19/the-heart-of-deterrence/,181,187,vezycash,4/23/2016 12:44 +10850113,Supercharging Android Apps with TensorFlow (Google's Open Source ML Library),https://jalammar.github.io/Supercharging-android-apps-using-tensorflow/,6,3,jalammar,1/6/2016 12:29 +10688420,Creedoo presentation software,,1,1,hugodav,12/7/2015 8:27 +10375792,Your company is not too far along for YC,https://medium.com/@jdotjdotf/your-company-is-not-too-far-along-for-yc-4183344adbc,69,39,katm,10/12/2015 17:08 +10252462,Partially evaluating a bytecode interpreter using C++ templates,http://www.cl.cam.ac.uk/~srk31/blog/2015/09/16/#c++-partial-evaluating-interpreter,15,1,mrry,9/21/2015 14:26 +10903994,License to not drive: Googles autonomous car testing center,https://medium.com/backchannel/license-to-not-drive-6dbea84b9c45#.os2lwoe8b,70,22,davidcgl,1/14/2016 19:58 +10313425,SlideMail 2.0 An open experiment to create a better email client,http://blog.slidemailapp.com/slidemail-2-0-an-open-experiment-to-create-a-better-email-client/,15,4,vu0tran,10/1/2015 18:27 +10870801,LogWizard a Log Viewer that is easy and fun to use (Windows only for now),https://github.com/jtorjo/logwizard,4,6,jtorjo,1/9/2016 10:46 +11323777,Academic Publishing Is a Goddamned Exploitative Farce,https://medium.com/age-of-awareness/academic-publishing-is-a-goddamned-exploitative-farce-75930d3ce3d0#.3lp6xrxvb,3,2,Chinjut,3/20/2016 17:33 +11785168,Pre-sale of Cyborg implant for sensing North,http://www.cyborgnest.net,88,84,secfirstmd,5/27/2016 11:05 +12177747,What Makes Work Meaningful or Meaningless,http://sloanreview.mit.edu/article/what-makes-work-meaningful-or-meaningless,208,68,bootload,7/28/2016 1:23 +11406054,Engineering You: On Being a Good Engineer [video],http://www.infoq.com/presentations/engineer-practices-techniques,24,1,tim_sw,4/1/2016 16:25 +11681023,America's middle class is shrinking almost everywhere,http://money.cnn.com/2016/05/11/news/economy/middle-class-shrinking/,6,3,e15ctr0n,5/12/2016 2:55 +10406261,U.S. Will Require Drones to Be Registered,http://www.nbcnews.com/news/us-news/u-s-will-require-drones-be-registered-n446266,171,152,davidbarker,10/17/2015 21:45 +11777225,Warwalking WiFi Networks with ESP8266 IoT Module,https://phasenoise.livejournal.com/2870.html,72,49,demouser7,5/26/2016 11:58 +11520917,Deep Learning Robot,https://www.autonomous.ai/deep-learning-robot,54,9,nikolay,4/18/2016 15:57 +10914336,On-Chip Maxwell's Demon as an Information-Powered Refrigerator,http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.115.260602,20,14,tsutomun,1/16/2016 5:08 +11532459,The Psychological Cost of Boring Buildings,http://nymag.com/scienceofus/2016/04/the-psychological-cost-of-boring-buildings.html,83,56,whocansay,4/20/2016 5:38 +12326665,What if some female Olympians have high testosterone?,https://theconversation.com/so-what-if-some-female-olympians-have-high-testosterone-62935,2,2,havella,8/20/2016 14:08 +12397513,"Aurora massacre survivors sued, and four ended up owing the theater $700k",http://www.latimes.com/nation/la-na-batman-shooting-lawsuit-20160822-snap-story.html,24,85,smacktoward,8/31/2016 11:39 +10495288,Gateway Inc. co-founder Mike Hammond dies at age 53,https://finance.yahoo.com/news/gateway-inc-co-founder-mike-hammond-dies-age-152923375.html,13,10,MarlonPro,11/2/2015 21:12 +11446289,Content is dead,http://veekaybee.github.io/content-is-dead/,75,109,vkb,4/7/2016 11:02 +12348573,Ask HN: Java or .NET for a new big enterprise system?,,4,6,vitoralmeida,8/23/2016 23:22 +10243890,Ad blocking,http://sethgodin.typepad.com/seths_blog/2015/09/ad-blocking.html,12,2,mooreds,9/19/2015 10:46 +11136951,Apples Latest Product Is Privacy (2015),http://recode.net/2015/06/12/apples-latest-product-is-privacy/,2,1,cryptoz,2/19/2016 21:57 +12441608,The Unbelievable Story of a Facebook Impostor,http://the-ken.com/the-unbelievable-story-of-a-facebook-impostor/?t=2317a310-7348-11e6-8807-3d27b63a55b2-db643261-252a-4e7e-95a6-f89a72c14fcc&utm_campaign=The%20Ken&utm_source=Email&utm_medium=Newsletter#,1,2,yugoja,9/7/2016 8:16 +11960644,Vim vs. emacs minus the religion,http://feoh.org/vim-versus-emacs-minus-the-religion.html,2,1,wtbob,6/23/2016 13:23 +10727062,John Carmack on Code Shaming vs. Coder Shaming,https://disqus.com/home/discussion/varianceexplained/a_million_lines_of_bad_code_variance_explained_20/#comment-1974419008,10,4,joshka,12/13/2015 17:45 +10254667,The FCC Might Ban Specific Operating Systems,http://prpl.works/2015/09/21/yes-the-fcc-might-ban-your-operating-system/,240,131,dsr_,9/21/2015 19:43 +12449062,Ask HN: What's the fastest way to deploy a blog?,,3,3,thirstysusrando,9/7/2016 23:57 +10421858,Eternity Wall: the public registry underneath Bitcoin,http://eternitywall.it/,3,1,luck87,10/20/2015 21:15 +11659474,Software Update Destroys $286M Japanese Satellite,http://hackaday.com/2016/05/02/software-update-destroys-286-million-japanese-satellite/,156,114,stevekemp,5/9/2016 13:03 +11771266,Fable: F# to JavaScript Transpiler,http://fsprojects.github.io/Fable/,90,18,Nelkins,5/25/2016 17:01 +11064739,Not Counting Chemistry: How We Misread the History of 20th-Century Science,http://www.chemheritage.org/discover/media/magazine/articles/26-1-not-counting-chemistry.aspx,27,13,coderdude,2/9/2016 12:09 +11203020,FOHO: Fear of Helping out in the Philly tech scene,http://areatech51.com/foho-fear-of-helping-out-in-the-philly-tech-scene/,9,1,jsherman76,3/1/2016 15:09 +12491711,How many testers should you have?,https://www.reddit.com/r/programming/comments/52kzlm/the_ideal/,3,1,ideqa,9/13/2016 20:02 +10907573,A brief introduction to C++'s model for type- and resource-safety [pdf],http://www.stroustrup.com/resource-model.pdf,79,110,signa11,1/15/2016 6:18 +11352761,How to Work a 100-Hour Work Week And Not Die [With Infographic],http://www.fastcompany.com/3058175/lessons-learned/how-ive-learned-to-get-through-a-100-hour-workweek-in-one-piece,6,2,wmharris101,3/24/2016 13:55 +12167335,"Koding open-sources its cloud IDE, integrates it into GitLab",http://venturebeat.com/2016/07/26/koding-gitlab/,22,2,usirin,7/26/2016 17:37 +10177103,"GM crops created superweed, say scientists (2005)",http://www.theguardian.com/science/2005/jul/25/gm.food,58,27,x5n1,9/6/2015 8:24 +10213303,"Microsoft paid NFL $400M to use Surface, announcers still call them iPads",http://www.businessinsider.com/microsoft-nfl-surface-tablets-ipads-2015-9,5,3,wglb,9/14/2015 1:15 +10269167,A social Experiment,,4,2,rehmanh88,9/24/2015 0:24 +10958723,"Internet of Things security is so bad, theres a search engine for sleeping kids",http://arstechnica.com/security/2016/01/how-to-search-the-internet-of-things-for-photos-of-sleeping-babies/,208,109,nikbackm,1/23/2016 15:54 +11715146,I reimplemented tj/co in 15 lines of code,https://gist.github.com/huytd/ae44fa2f83fc797b8f12da527ac1516c,4,2,huydotnet,5/17/2016 16:51 +10319722,The Evolution of a Software Engineer,https://medium.com/@webseanhickey/the-evolution-of-a-software-engineer-db854689243,5,1,Bocker,10/2/2015 17:00 +11173254,Making GitLab Faster,https://about.gitlab.com/2016/02/25/making-gitlab-faster/,10,3,nearlythere,2/25/2016 9:10 +10317016,Mobirise Bootstrap Theme Generator v2.0 is out!,http://mobirise.com,1,1,Mobirise,10/2/2015 6:24 +10817287,"I'm a pedophile, but not a monster",http://www.salon.com/2015/12/29/im_a_pedophile_but_not_a_monster_2/,43,29,zabramow,12/31/2015 12:09 +10604522,Cheap DNA Sequencing Is Here Writing DNA Is Next,http://www.wired.com/2015/11/making-dna/,81,67,pavornyoh,11/20/2015 23:16 +11973888,"Is your personality fixed, or can you change who you are?",http://www.npr.org/sections/health-shots/2016/06/24/481859662/invisibilia-is-your-personality-fixed-or-can-you-change-who-you-are,206,124,BDGC,6/24/2016 22:09 +11842251,What I use for 1:1s with software engineers and UX/UI designers,https://medium.com/@chadwittman/what-i-use-for-1-1s-with-software-engineers-ux-ui-designers-13d7d02e3699#.yr3wpp73j,2,1,chadwittman,6/5/2016 18:14 +12265626,DEA regularly mines Americans' travel records to seize millions in cash,http://www.usatoday.com/story/news/2016/08/10/dea-travel-record-airport-seizures/88474282/,7,1,llamataboot,8/11/2016 0:32 +12450099,Five Myths about Economic Inequality in America,http://www.cato.org/publications/policy-analysis/five-myths-about-economic-inequality-america?utm_content=bufferca7e8&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer,2,2,mbostleman,9/8/2016 3:30 +11810150,Samsung Announces 512GB NVMe SSD That's Smaller Than a Stamp,http://www.macrumors.com/2016/05/31/samsung-ultra-small-nvme-512gb-ssd/,20,4,aaronbrethorst,5/31/2016 20:54 +10592775,Comcast injects JavaScript into webpages to show copyright notices to customers,https://gist.github.com/Jarred-Sumner/90362639f96807b8315b,645,392,Jarred,11/19/2015 4:38 +11012797,IBM Watson: Building a Cognitive App with Concept Insights,http://www.primaryobjects.com/2016/02/01/ibm-watson-building-a-cognitive-app/,3,1,primaryobjects,2/1/2016 16:35 +10755477,Http-decision-diagram,https://github.com/for-GET/http-decision-diagram,2,2,ShaneWilton,12/17/2015 23:29 +11166129,"Show HN: Microsoft Garage, Microsofts sideprojects hub",https://www.microsoft.com/en-us/garage/#garage-workbench,9,3,NicoJuicy,2/24/2016 12:14 +11909652,ASCII art diagrams,http://www.johndcook.com/blog/2016/06/14/ascii-art-diagrams/,1,1,wtbob,6/15/2016 14:48 +10943074,Advanced Closure Compiler vs. UglifyJS2,http://www.peterbe.com/plog/advanced-closure-compiler-vs-uglifyjs2,10,4,peterbe,1/21/2016 3:01 +11584776,Ask HN: How to proceed?,,7,2,tort_artificer,4/27/2016 21:37 +12032754,Anatomy of a World War I Artillery Barrage,https://angrystaffofficer.com/2016/07/01/anatomy-of-a-world-war-i-artillery-barrage/,144,111,vinnyglennon,7/4/2016 20:12 +11828161,A few questions for the Slack engineering team,,14,2,andrewfromx,6/3/2016 3:46 +11748771,When does moderation become censorship?,https://blog.disqus.com/when-does-moderation-become-censorship,28,57,tomkwok,5/22/2016 14:46 +12421804,"Show HN: Mobi.css A lightweight, flexible CSS framework that focuses on mobile",https://github.com/xcatliu/mobi.css,91,32,xcatliu,9/3/2016 23:37 +11777562,Put your website to sleep,https://www.nightnight.xn--q9jyb4c,6,3,jpaulneeley,5/26/2016 13:02 +12574438,Git Paid make code contributions and get paid,https://hack.ether.camp/idea/git-paid---make-code-contributions-and-get-paidA,7,1,compil3r,9/25/2016 8:22 +11310533,Is Node.js overrated?,https://hashnode.com/post/is-nodejs-overrated-lets-find-out-what-the-community-said-cilw0oxtf005sh253q3bavj5o,8,1,webcc,3/18/2016 8:19 +11510074,"Consciousness occurs in 'time slices' lasting only milliseconds, study suggests",http://www.sciencealert.com/consciousness-occurs-in-time-slices-lasting-only-milliseconds-study-suggests,14,1,kevbin,4/16/2016 10:36 +12254705,America's First Medal at the Nazi Olympics Was for Town Planning,http://www.atlasobscura.com/articles/americas-first-medal-at-the-nazi-olympics-was-fortown-planning,70,33,samclemens,8/9/2016 14:30 +11983398,Internal irc-log of the tor-project reveals debate about hiring an ex-CIA agent,http://pastebin.com/WPAmqkW8,82,54,mercuryIntox,6/26/2016 23:43 +10682504,Improving user support requests using GitHub's API,http://archetyped.com/know/guided-github-reports/,11,1,Amorymeltzer,12/5/2015 17:13 +11572181,Homebrew betrayed us all to Google,http://chr4.org/blog/2016/04/26/homebrew-betrayed-us-all-to-google/,49,19,chr4,4/26/2016 14:34 +10424006,Theorists Draw Closer to Perfect Coloring,https://www.quantamagazine.org/20151020-perfect-graph-coloring/,37,7,signa11,10/21/2015 6:35 +10619929,Naive Bayesian Text Classification (2005),http://www.drdobbs.com/architecture-and-design/naive-bayesian-text-classification/184406064,1,1,jgrahamc,11/24/2015 9:45 +12447996,Apple Releases MacOS Sierra Golden Master to Developers,http://www.macrumors.com/2016/09/07/macos-sierra-golden-master/,2,1,bootload,9/7/2016 21:37 +11573830,What Do You Do with 120-Sided Dice?,http://www.newyorker.com/tech/elements/the-dice-you-never-knew-you-needed,107,88,anthotny,4/26/2016 17:27 +10792756,What is a Procedure? [pdf],http://www.cs.toronto.edu/~hehner/WiaP.pdf,17,6,bumbledraven,12/25/2015 23:55 +11285113,David Ogilvys unconventional rules for getting clients,https://medium.com/@letsworkshop/david-ogilvy-s-20-unconventional-rules-for-getting-clients-319f9abed7d5,4,1,weaksauce,3/14/2016 19:56 +11809621,Ask HN: How important is pictures on your online personas?,,2,3,holaboyperu,5/31/2016 19:53 +11202208,London vs San Francisco back and forth,http://jh47.com/2016/03/01/london-vs-san-francisco/,112,129,edfryed,3/1/2016 12:42 +11569474,Ask HN: Is Paul Graham still doing Y Combinator interviews?,,17,8,berpasan,4/26/2016 4:37 +12389330,A Tiny Amazonian City That Supplies Aquarium Fish to the World,http://www.atlasobscura.com/articles/the-tiny-amazonian-city-that-supplies-aquarium-fish-to-the-world,39,2,endswapper,8/30/2016 12:23 +10603818,LivingSocial Offers a Cautionary Tale to Todays Unicorns,http://mobile.nytimes.com/2015/11/22/technology/livingsocial-once-a-unicorn-is-losing-its-magic.html,69,43,mikek,11/20/2015 20:55 +12499745,Introducing OpenType Variable Fonts,https://medium.com/@tiro/https-medium-com-tiro-introducing-opentype-variable-fonts-12ba6cd2369#.q01n35hmn,1,1,dougfelt,9/14/2016 18:16 +12117924,Geoff Hinton's Neural Networks for Machine Learning Is Being Offered Again,https://www.coursera.org/learn/neural-networks,20,4,modeless,7/18/2016 20:37 +10668546,Trojan found in Filezilla downloaded from SourceForge,https://forum.filezilla-project.org/viewtopic.php?t=36762,332,209,yitchelle,12/3/2015 8:39 +10565641,What Can You Put in a Refrigerator?,http://prog21.dadgum.com/212.html,122,86,rnicholson,11/14/2015 13:48 +11712580,The Rise of Artificial Intelligence and the End of Code,http://www.wired.com/2016/05/the-end-of-code/,48,63,AJRF,5/17/2016 11:09 +10947501,Startup or Shutup A talk I gave for people thinking of beginning a startup,,9,5,tdondich,1/21/2016 19:11 +12194983,Tomorrow Corporation: Human Resource Machine Game,https://tomorrowcorporation.com/humanresourcemachine,1,1,saganus,7/30/2016 22:46 +11029570,Sublime Text Dev Build 3100 Released,https://forum.sublimetext.com/t/dev-build-3100/,10,2,OberstKrueger,2/3/2016 20:38 +10808409,So long Sidecar and thanks,https://medium.com/@SunilPaul/so-long-sidecar-and-thanks-74c8a0955064#.fv9fvrl5y,93,52,jayzalowitz,12/29/2015 19:07 +10572768,Biography of a Face,http://nymag.com/daily/intelligencer/2015/11/patrick-hardison-face-transplant.html,12,1,Hooke,11/16/2015 5:21 +11220242,The Cluetrain Manifesto (1999),http://www.cluetrain.com/?platform=hootsuite,64,31,ohjeez,3/3/2016 21:38 +11352377,Numerical cognition,,3,5,rtplasma,3/24/2016 13:00 +11976289,Golo a lightweight dynamic language for the JVM,http://golo-lang.org/,25,3,Immortalin,6/25/2016 13:44 +10812621,Weve already reached the tipping point on global warming. Ive seen it,https://maptia.com/camilleseaman/stories/the-tipping-point,11,3,jonnymiller,12/30/2015 16:13 +10546348,Suppose We Have an Algorithm for an NPC Problem,http://www.solipsys.co.uk/new/SupposeWeHaveAnAlgorithmForAnNPCProblem.html?HN_20151111,4,1,ColinWright,11/11/2015 12:41 +10215313,Mt. Gox CEO charged with embezzling £1.7m worth of Bitcoin,http://www.theguardian.com/technology/2015/sep/14/bitcoin-mt-gox-ceo-mark-karpeles-charged-embezzling,12,3,edward,9/14/2015 14:47 +10305680,Spoofing Fitness Trackers,https://www.schneier.com/blog/archives/2015/09/spoofing_fitnes.html,3,1,CapitalistCartr,9/30/2015 17:41 +12346593,Show HN: BASIC Interpreter in under 500 LOC of Swift,https://github.com/jdmoreira/foobarbas,1,1,jdmoreira,8/23/2016 19:12 +11120341,The Ruby Code of Conduct,https://www.ruby-lang.org/en/conduct/,14,9,mrstorm,2/17/2016 19:08 +10365447,Male Engineering Student Explains Why Female Classmates Aren't His Equals,http://www.huffingtonpost.com/entry/women-men-engineers-arent-equal-jared-mauldin-letter_561699b9e4b0e66ad4c6bee5?ncid=fcbklnkushpmg00000063,4,1,awjr,10/10/2015 13:32 +12511695,iPhone 7 Plus Teardown,https://www.ifixit.com/Teardown/iPhone+7+Plus+Teardown/67384,29,1,tambourine_man,9/16/2016 3:50 +11731069,Offer rescind after gpa drop,,1,4,tfish,5/19/2016 15:45 +12270171,Js-joda Immutable date and time library for JavaScript,https://github.com/js-joda/js-joda,2,2,joekrie,8/11/2016 17:35 +10277101,iOS at Facebook [pdf],https://static1.squarespace.com/static/5463eca4e4b09c644a61f99a/t/55fa801ae4b008853e3de038/1442480154751/SimonWhitaker.pdf,160,109,GarethX,9/25/2015 9:29 +11338552,"Scientists Warn of Perilous Climate Shift Within Decades, Not Centuries",http://mobile.nytimes.com/2016/03/23/science/global-warming-sea-level-carbon-dioxide-emissions.html,13,2,Osiris30,3/22/2016 18:06 +10424623,"Guys, here's what it's actually like to be a woman",http://observer.com/2015/10/guys-heres-what-its-actually-like-to-be-a-woman/,18,16,BatFastard,10/21/2015 10:40 +12411924,Unrest in Gabon leads to Internet shutdown,https://blog.cloudflare.com/unrest-in-gabon-leads-to-internet-shutdown/,33,16,okket,9/2/2016 9:43 +11047133,Another Vietnam Unseen images of the war from the winning side,http://mashable.com/2016/02/05/another-vietnam-photography/#TBVXB4fMGkqN,243,169,dnqthao,2/6/2016 9:37 +12439865,Ask HN: How to comunicate more clearly my project idea?,,1,3,singold,9/6/2016 22:59 +10226236,Texas Student Is Under Police Investigation for Building a Clock,http://www.nytimes.com/2015/09/17/us/texas-student-is-under-police-investigation-for-building-a-clock.html,269,77,tomek_zemla,9/16/2015 13:08 +11727504,Npm isntall Issue #2933 npm/npm,https://github.com/npm/npm/issues/2933,8,2,lladnar,5/19/2016 2:23 +10436316,Jack gives 1% of equity to Twitter employees,https://twitter.com/jack/status/657351519461707776?ref_src=twsrc%5Etfw,10,1,madmike,10/23/2015 1:36 +11959781,Mir Spacecraft: Worst collision in the history of space flight [video],http://www.bbc.com/news/magazine-36549109,136,38,ZeljkoS,6/23/2016 9:37 +10270062,How Many People Can You Remember?,http://fivethirtyeight.com/features/how-many-people-can-you-remember/,46,26,ryan_j_naughton,9/24/2015 5:54 +10676510,"Ask HN: First time US employment, does the company pays the taxes or me?",,1,6,validuserfr,12/4/2015 14:36 +11615216,Amazing free trading indicators by LazyBear,,1,1,btc_trader,5/2/2016 20:21 +10272556,Facebook was down,https://www.facebook.com/?down=true,101,54,jonny_eh,9/24/2015 16:30 +11774312,Microsoft U-turn on 'nasty trick' pop-up,http://www.bbc.com/news/technology-36376962,8,1,cryptoz,5/26/2016 0:35 +10710670,The first plasma: the Wendelstein 7-X fusion device is now in operation,http://www.ipp.mpg.de/3984226/12_15,383,94,aurhum,12/10/2015 14:17 +11344580,Julie Rubicon,https://www.facebook.com/notes/robin-sloan/julie-rubicon/985697811525170,784,131,ISL,3/23/2016 14:12 +10931025,New book: Mastering ROS for robotics programming,http://robohub.org/mastering-ros-for-robotics-programming/,4,1,hallieatrobohub,1/19/2016 14:44 +11199575,Ask HN: Why can't I copy and paste into HTML fields?,,1,1,danmccorm,2/29/2016 23:24 +11985143,Ask HN: Good software for interactive exploration of quantum/particle physics?,,86,24,Fr0styMatt88,6/27/2016 10:02 +11869374,Another Calculus Limerick,http://blog.drscottfranklin.net/2009/01/13/another-calculus-limerick/,3,1,jellyksong,6/9/2016 13:56 +12405699,Ask HN: Freelancer? Seeking freelancer? (September 2016),,72,85,whoishiring,9/1/2016 15:00 +12188372,Hacking imgur for fun and profit,https://medium.com/@nmalcolm/hacking-imgur-for-fun-and-profit-3b2ec30c9463?source=linkShare-a2421a6d437c-1469813421,21,2,valarauca1,7/29/2016 17:30 +12314119,Difference Between GET and POST Method,http://testingalert.com/difference-between-get-and-post-method/,2,1,testingalert,8/18/2016 16:49 +11790919,2014s JavaScript versus todays How things were before and how they are now,http://ejb.github.io/2016/05/09/how-my-code-has-changed-since-2014.html,5,2,fagnerbrack,5/28/2016 7:42 +11626686,Xcode 7.3.1 Released,https://developer.apple.com/go/?id=xcode-7.3.1-rn,2,2,chrisamanse,5/4/2016 6:57 +12491763,Crazy Wireless Range in San Francisco. (LoRa Radio Tests),http://blog.beepnetworks.com/2016/09/loras-wireless-range-is-bananas-a-first-look-at-cellular-for-iot-in-san-francisco/,3,1,dconrad,9/13/2016 20:07 +12335619,Emulating a 6502 in JavaScript [video],https://www.youtube.com/watch?v=7WuRq-Wmw5o,21,2,mattgodbolt,8/22/2016 11:54 +12007969,US border control could start asking for social media accounts on landing forms,https://www.theguardian.com/technology/2016/jun/28/us-customs-border-protection-social-media-accounts-facebook-twitter,1,1,gregdoesit,6/30/2016 12:18 +10610741,Show HN: New competitor to cratejoy,http://jointhebox.com/,1,1,jointhebox,11/22/2015 17:39 +10765494,A rare interview with the mathematician who cracked Wall Street,https://www.ted.com/talks/jim_simons_a_rare_interview_with_the_mathematician_who_cracked_wall_street?language=en,2,2,Descarte,12/20/2015 0:23 +11982342,Passive TCP/IP Geo-Location,http://geoloc.foremski.pl/,184,86,blaskov,6/26/2016 19:48 +11994350,Racism is spreading like arsenic in the water supply,https://www.theguardian.com/commentisfree/2016/jun/28/racism-neo-nazis-britain,5,1,gedrap,6/28/2016 15:09 +12471856,How to teach computational thinking,https://backchannel.com/how-to-teach-computational-thinking-29e45c8a2664#.b4hdqhocd,130,44,deepakkarki,9/11/2016 3:13 +11645574,Show HN: Cyberpunk novel where inequality/surveillance push Oakland to civil war,https://www.amazon.com/Cumulus-Eliot-Peper-ebook/dp/B01E4L5L6S,6,1,eliotpeper,5/6/2016 18:01 +11089199,Are there any examples for running Docker applications on vSphere?,,5,2,khanam,2/12/2016 18:19 +11450683,Bang Bang Control,https://en.wikipedia.org/wiki/Bang%E2%80%93bang_control,30,24,dedalus,4/7/2016 21:01 +10899642,MH370 search team finds second shipwreck,http://www.bbc.com/news/business-35302512,168,92,Cyberdog,1/14/2016 4:29 +12065287,RIP: BlackBerry kills its Classic phone,http://money.cnn.com/2016/07/05/technology/blackberry-classic-phone-qwerty/index.html?iid=surge-story-summary,3,2,e-sushi,7/10/2016 11:26 +10207981,Obama: China cyber attacks 'unacceptable',http://www.bbc.com/news/world-us-canada-34229439,2,1,snowy,9/12/2015 13:08 +11202704,OpenSSL security advisory 2016-03-01,https://mta.openssl.org/pipermail/openssl-announce/2016-March/000066.html,139,11,kpcyrd,3/1/2016 14:23 +12137831,EFF is suing the US government to invalidate the DMCA's DRM provisions,https://boingboing.net/2016/07/21/eff-is-suing-the-us-government.html,11,1,ashitlerferad,7/21/2016 16:16 +12116859,"Chelsea Manning: Moving On, Reflecting on My Identity",https://medium.com/@xychelsea/moving-on-c78c37079aa6#.wdg3v2gd6,29,1,_of,7/18/2016 17:57 +11028132,Why did Facebook decide to shut down Parse?,https://medium.com/@s2o/they-never-wanted-to-host-your-app-the-real-reasons-why-parse-shut-down-6ec3d7d5c53c#.h9jgsb29c,190,87,sashthebash,2/3/2016 18:00 +12162347,The Hobbit in 3 Hours How It Should Have Been,https://ahobbitsholiday.wordpress.com/,8,1,neilellis,7/25/2016 23:34 +11869105,No internet for Singapore's public service workstations,http://www.bbc.com/news/world-asia-36476422,1,1,fengwick3,6/9/2016 13:09 +11619899,"Claude Shannon: Tinkerer, Prankster, and Father of Information Theory",http://spectrum.ieee.org/computing/software/claude-shannon-tinkerer-prankster-and-father-of-information-theory,166,29,fauria,5/3/2016 12:23 +12056230,Corrode: C to Rust translator written in Haskell,https://github.com/jameysharp/corrode,387,122,adamnemecek,7/8/2016 15:33 +11335804,Show HN: My Startup Is Taking on Tesla in Home Energy Storage,https://electriqpower.com,3,2,traviswingo,3/22/2016 11:53 +10972862,Building side projects,http://cheeaun.com/blog/2016/01/building-side-projects/,18,2,ValentineC,1/26/2016 11:21 +12568991,Bay Area Deep Learning School will be live streamed this weekend,http://www.bayareadlschool.org/#live,3,2,modeless,9/24/2016 1:16 +10239986,The Muen Separation Kernel,http://muen.codelabs.ch/,1,1,mrbig4545,9/18/2015 16:06 +12005754,"Home Computers Connected to the Internet Aren't Private, Court Rules",http://www.eweek.com/security/home-computers-connected-to-the-internet-arent-private-court-rules.html,2,1,doctorshady,6/30/2016 0:02 +11948421,Composing Contracts Using Haskell [pdf],http://research.microsoft.com/en-us/um/people/simonpj/Papers/financial-contracts/contracts-icfp.pdf,3,1,mvaliente2001,6/21/2016 19:00 +12327553,A Map Showing Every Single Cargo Ship in the World,http://digg.com/2016/every-ship-in-the-world,4,2,nzp,8/20/2016 17:41 +11001463,Show HN: A simple todo list manager,http://github.com/thewhitetulip/Tasks,19,7,thewhitetulip,1/30/2016 11:08 +10323650,Microsoft agrees to stop suing Asus in return for pre-installing Office,http://thenextweb.com/microsoft/2015/10/02/microsoft-agrees-to-stop-suing-asus-in-return-for-pre-installing-office-on-android-devices/,4,1,r0h1n,10/3/2015 12:45 +10731002,How I wrote a self-hosting C compiler in 40 days,http://www.sigbus.info/how-i-wrote-a-self-hosting-c-compiler-in-40-days.html,429,120,rui314,12/14/2015 14:07 +10362788,Google Drive seems to be down,,17,7,bholdr,10/9/2015 19:42 +11752638,Show HN: I made a tracker for the 2016 presidential election,http://www.gopimplosion.com,3,1,foxhedgehog,5/23/2016 8:49 +10270014,CodeFights thinks competitive programming could be popular,http://www.businessinsider.com/codefights-thinks-competitive-programming-can-be-a-spectator-sport-2015-9,32,11,Tiks,9/24/2015 5:36 +11095443,"Show HN: Statixite, a management solution for static websites",https://statixite.com,7,7,rlafranchi,2/13/2016 20:03 +11009621,SnooCode: addressing and routefinding in a country without street addresses,http://www.bbc.com/news/world-africa-35385636,23,10,blahedo,2/1/2016 3:46 +12158740,Show HN: All-in-One Messenger for Chrome - all messengers in one place,https://chrome.google.com/webstore/detail/all-in-one-messenger/lainlkmlgipednloilifbppmhdocjbda,6,2,ladino,7/25/2016 14:07 +10237804,Interface abusers,http://scraps.benkuhn.net/2015/09/17/ui.html,62,51,luu,9/18/2015 6:43 +10667550,Ask HN: Would this be legal?,,2,3,askQuestion,12/3/2015 3:27 +11030355,Show HN: npm addict Your daily injection of npm packages,https://npmaddict.com/,5,4,mvila,2/3/2016 22:26 +11412468,Silicon Valleys unicorns have regulators worried,https://www.washingtonpost.com/news/the-switch/wp/2016/04/01/why-silicon-valleys-unicorns-have-regulators-worried/,60,56,tosseraccount,4/2/2016 17:56 +10823437,"How to get a 10,000 points StackOverflow reputation",http://vladmihalcea.com/2015/01/16/how-to-get-a-10000-points-stackoverflow-reputation/,2,1,leksak,1/1/2016 21:05 +11788766,Robert Mugabe has pardoned all female prisoners in Zimbabwe,https://www.newsday.co.zw/2016/05/26/mugabe-empties-female-prisons/,11,2,chirau,5/27/2016 20:31 +11443889,"Apply HN: Qbix, Inc Aims to Do for Social What Bitcoin Did for Money",,14,10,EGreg,4/7/2016 1:17 +11235537,Advanced Tor Browser Fingerprinting,http://jcarlosnorte.com/security/2016/03/06/advanced-tor-browser-fingerprinting.html,135,29,hachiya,3/6/2016 21:06 +10455114,SXSW cancels panels on overcoming harassment in games,http://www.sxsw.com/news/2015/sxsw-statement-hugh-forrest,48,7,ollieglass,10/26/2015 23:01 +11706248,Warren Buffett's Berkshire Hathaway Takes $1B Position in Apple,http://www.wsj.com/articles/buffetts-berkshire-takes-1-billion-position-in-apple-1463400389,358,252,stevenj,5/16/2016 13:55 +10524996,Show HN: Random Peek Check random Periscope streams from your computer,http://randompeek.com,1,2,onuryilmaz,11/7/2015 15:20 +12424413,Gay men tend to be shorter than heterosexual men,http://link.springer.com/article/10.1007/s10508-016-0800-9,24,14,randomname2,9/4/2016 14:10 +10751129,Accessing Amazon Alexa via the browser,http://sammachin.com/hacks-and-projects/alexa-in-the-browser/,27,2,sammachin,12/17/2015 12:45 +12141157,Ask HN: How to Peacock my Resume,,1,1,thirstysusrando,7/22/2016 1:26 +11854642,"I finally finished this awesome game called Photoshop, let me send you a video",https://blogs.msdn.microsoft.com/oldnewthing/20160607-00/?p=93605,138,60,ikeboy,6/7/2016 14:14 +11427316,Ask HN: How do you build a service?,,5,6,NetOpWibby,4/5/2016 2:13 +11754795,Will 90 Become the New 60?,http://nautil.us/issue/36/aging/will-90-become-the-new-60,3,1,dnetesn,5/23/2016 16:16 +12239117,High-Fidelity Quantum Logic Gates,http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.117.060504,64,10,gk1,8/6/2016 18:09 +10676736,Why Do We Have Sister Cities?,http://priceonomics.com/why-do-we-have-sister-cities/,34,12,bpolania,12/4/2015 15:20 +11922094,FasterPath: Faster Pathname Handling for Ruby Written in Rust,https://github.com/danielpclark/faster_path,131,22,wofo,6/17/2016 12:01 +10925314,Ask HN: Cold hands?,,1,1,scottndecker,1/18/2016 16:38 +12447203,Intel sells McAfee,http://www.wsj.com/articles/intel-nears-deal-to-sell-mcafee-security-unit-to-tpg-1473277803,21,2,nickhould,9/7/2016 20:22 +10713595,"How Pfizer set the cost of its new drug at $9,850 a month",https://finance.yahoo.com/news/pfizer-set-cost-drug-9-050100023.html,2,1,MarlonPro,12/10/2015 21:25 +11976509,Build Your First Thing with WebAssembly,http://cultureofdevelopment.com/blog/build-your-first-thing-with-web-assembly/,195,56,NickLarsen,6/25/2016 14:58 +12370957,"DealBert online deals, all in one place",http://dealbert.net,5,1,chenster,8/27/2016 4:22 +10950267,Parsing JSON in Swift,http://roadfiresoftware.com/parsing-json-in-swift/,1,1,jtbrown,1/22/2016 2:06 +11171839,I bought some awful light bulbs so you don't have to,https://mjg59.dreamwidth.org/40397.html,270,84,compsciphd,2/25/2016 1:52 +11028216,Goldman Sachs May Be Forced to Fundamentally Question Capitalism,http://www.bloomberg.com/news/articles/2016-02-03/goldman-sachs-says-it-may-be-forced-to-fundamentally-question-how-capitalism-is-working?cmpid=google&google_editors_picks=true,6,6,kohito,2/3/2016 18:08 +11089465,"Zekai, a coffee-like programming language in 150 lines",https://github.com/lucazd/zekai,3,1,lucazd,2/12/2016 18:52 +11774120,Show HN: Member management made easy ( demo below),http://www.ledenboek.be/,1,1,NicoJuicy,5/25/2016 23:54 +11455123,Apply HN: Eat My Dust - Home testing for dangerous materials,,96,69,hagope,4/8/2016 15:06 +12260849,"WikiLeaks offers $20,000 for information on former DNC staffer's murder",http://www.businessinsider.com/wikileaks-20000-seth-rich-dnc-2016-8,199,228,adamnemecek,8/10/2016 11:32 +11256850,10M Concurrent Websockets with Golang,http://goroutines.com/10m,1,1,dcu,3/10/2016 1:19 +11037423,DNA evidence uncovers major upheaval in Europe near end of last Ice Age,http://www.phys.org/news/2016-02-dna-evidence-uncovers-major-upheaval.html,44,2,JacobAldridge,2/4/2016 21:33 +12192703,Dem-owned-crats: Now its congressional committee is hacked,http://www.theregister.co.uk/2016/07/29/democrat_congressional_committee_breach/,4,2,tooba,7/30/2016 12:36 +10916621,Growgram,,1,2,nomadicgeek_,1/16/2016 20:08 +10483892,Academias Rejection of Diversity,http://www.nytimes.com/2015/10/31/opinion/academias-rejection-of-diversity.html?_r=1,57,43,rmason,10/31/2015 19:41 +10685256,The man who made Bond,http://www.intelligentlifemagazine.com/culture/the-daily/the-man-who-made-bond,32,1,kawera,12/6/2015 13:55 +11647165,Tell HN: Apply HN apology and revision,,653,206,dang,5/6/2016 22:27 +10550940,Ask HN: Non-localized email addresses OK?,,1,3,BrandonM,11/12/2015 2:37 +12460877,"With the iPhone 7, Apple Changed the Camera Industry Forever",http://www.newyorker.com/business/currency/with-the-iphone-7-apple-changed-the-camera-industry-forever,3,2,runesoerensen,9/9/2016 10:29 +11192391,Its actually easy to force people to be evil,http://arstechnica.com/science/2016/02/its-actually-easy-to-force-people-to-be-evil/,2,2,Evolved,2/28/2016 21:10 +10222584,11 cool things Magic Leap says its device will do,http://www.bizjournals.com/southflorida/news/2015/09/09/heres-11-cool-things-magic-leap-says-its-secret.html?,1,1,fezz,9/15/2015 19:14 +11073482,Are Pets Really Good for Us?,http://www.psmag.com/health-and-behavior/maybe-not-but-cmon-take-a-look-at-these-hounds,2,1,pseudolus,2/10/2016 15:50 +10512148,A Kitchen That Cooks by Itself,http://www.wired.com/2015/11/innit-future-kitchen/,25,21,prostoalex,11/5/2015 7:47 +11754274,Audio Fingerprinting,http://themerkle.com/audio-fingerprinting-may-become-the-new-norm-to-breach-browsing-privacy/,30,7,Sami_Lehtinen,5/23/2016 15:00 +12267347,A cerebral voyage to improve your logic skills,http://treksit.com/?logical,2,1,hdegrate,8/11/2016 11:31 +12118173,"Show HN: Anonymous location-based chat, with emojis",https://www.cow.chat/,1,1,captainbenises,7/18/2016 21:32 +12535252,Debunking the Cul-de-Sac,http://www.citylab.com/design/2011/09/street-grids/124/,92,112,misnamed,9/19/2016 22:20 +10745291,DataGrip 1.0 (formerly 0xDBE): A New IDE for DBs and SQL,http://blog.jetbrains.com/datagrip/2015/12/16/datagrip-1-0-formerly-0xdbe-a-new-ide-for-dbs-and-sql/,84,39,andrey_cheptsov,12/16/2015 16:28 +12007308,How to use empathy in design (without killing millions of women),https://medium.com/fluxx-studio-notes/how-to-use-empathy-in-design-without-killing-millions-of-women-5a9e84b2e424#.rmljxuukc,3,1,ruperttebb,6/30/2016 8:39 +11956319,PG&E Announces Closure of California's Last Nuclear Power Plant,http://www.smithsonianmag.com/smart-news/last-nuclear-power-plant-california-will-shut-down-180959527/?no-ist,12,2,DorintheFlora,6/22/2016 19:23 +11214585,A Plan in Case Robots Take the Jobs: Give Everyone a Paycheck,http://www.nytimes.com/2016/03/03/technology/plan-to-fight-robot-invasion-at-work-give-everyone-a-paycheck.html,3,1,kdazzle,3/3/2016 2:05 +12002653,FTSE 100 closes above pre-Brexit level,http://www.bbc.co.uk/news/business-36660133,5,4,UK-AL,6/29/2016 16:18 +11691757,Video chips in microcomputers,https://plus.google.com/108984290462000253857/posts/D5trsYSsLfm,30,1,ingve,5/13/2016 17:24 +10206836,Apache OpenOffice is insecure,http://reddragdiva.tumblr.com/post/128873352708/urgent-get-the-hell-off-apache-openoffice-its,100,17,davidgerard,9/12/2015 0:35 +11229448,Donald Trump's voicemails hacked by Anonymous,http://www.independent.co.uk/news/world/americas/us-elections/donald-trumps-voicemails-hacked-by-anonymous-a6913861.html,9,1,dineshp2,3/5/2016 13:30 +10392539,"Rape of the Mind Psychology of Thought Control, Menticide, Brainwashing (1956)",https://archive.org/stream/RapeOfTheMind-ThePsychologyOfThoughtControl-A.m.MeerlooMd/RapeOfTheMind-ThePsychologyOfThoughtControl-A.m.MeerlooMd_djvu.txt,4,1,Oatseller,10/15/2015 11:41 +10419746,Show HN: WebRPC Cross-platform RPC over HTTP,https://github.com/gk-brown/WebRPC,2,1,gk_brown,10/20/2015 15:24 +10712047,Atlassian gets IPO share price of $27,http://www.businessinsider.com/atlassian-gets-ipo-share-price-2015-12?op=1,285,149,prostoalex,12/10/2015 17:48 +11104838,Compare Local Contractors,http://www.projectquote.com,1,1,tytyguy,2/15/2016 18:03 +11967928,Ask HN: An engineer's perspective on healthcare,,4,3,rangerunseen,6/24/2016 8:46 +12564421,How to Fetch Market Data in Excel Like a Pro,https://www.zoomeranalytics.com/blog/how-to-fetch-market-data-in-excel-like-a-pro,3,1,fzumstein,9/23/2016 13:31 +10392295,Agile Is the New Waterfall,https://medium.com/swlh/agile-is-the-new-waterfall-f7baef5d026d,20,5,janvdberg,10/15/2015 10:16 +10435984,A Disadvantaged Start Hurts Boys More Than Girls,http://www.nytimes.com/2015/10/22/upshot/a-disadvantaged-start-hurts-boys-more-than-girls.html?ref=business,126,93,pavornyoh,10/22/2015 23:54 +12005552,Assessment of Antiretroviral Effects of a Synthetic Aluminum-Magnesium Silicate,http://sciencedomain.org/abstract/2831,6,2,vezycash,6/29/2016 23:18 +11348469,"Etch-A-SDR: Odroid C1, Teensy 3.1 and RTL-SDR",https://github.com/devnulling/etch-a-sdr,53,3,tlrobinson,3/23/2016 21:36 +11153757,Draft.js Rich Text Editor Framework for React,http://facebook.github.io/draft-js/,592,112,tilt,2/22/2016 19:57 +11401330,"Wow, Perl 6 [video]",https://www.youtube.com/watch?v=paa3niF72Nw,320,228,donaldihunter,3/31/2016 23:11 +12084414,SYN Flood Mitigation with synsanity,http://githubengineering.com/syn-flood-mitigation-with-synsanity/,67,17,alanfranzoni,7/13/2016 7:13 +12356357,"Ask HN: I'm 28yo. Should I start college now, or get real world experience?",,20,42,Calist0,8/25/2016 1:17 +10184324,Homotopy Type Theory for Dummies (2013) [pdf],http://www.cs.nott.ac.uk/~txa/talks/edinburgh-13.pdf,41,9,kushti,9/8/2015 6:33 +12520321,The Difference Between Rationality and Intelligence,http://www.nytimes.com/2016/09/18/opinion/sunday/the-difference-between-rationality-and-intelligence.html,136,96,frostmatthew,9/17/2016 13:06 +10381613,Blocks Modular Smartwatch Now On Kickstarter,http://techcrunch.com/2015/10/13/blocks-kickstarter/,12,1,funkyy,10/13/2015 16:38 +10428589,Theranos CEO: Company Is in a Pause Period,http://www.wsj.com/articles/theranos-ceo-company-is-in-a-pause-period-1445455992,3,2,vanderfluge,10/21/2015 20:50 +10483936,Public XMPP Server Directory,https://xmpp.net/directory.php,48,24,tshtf,10/31/2015 19:53 +11668326,The Historical Development of Computer Chess and Its Impact on AI (1997),http://fermatslibrary.com/s/the-historical-development-of-computer-chess-and-its-impact-on-artificial-intelligence,28,2,joaobatalha,5/10/2016 16:20 +10190975,HTree Upto 57% faster data indexing,,2,2,hemen,9/9/2015 12:26 +11962096,Docker container usage growing,http://www.eweek.com/enterprise-apps/docker-container-usage-growing.html,4,1,alxsanchez,6/23/2016 16:11 +10847279,Why You Should Think Twice Before Promoting Your Next Employee,http://www.fastcompany.com/3055025/lessons-learned/why-you-should-think-twice-before-promoting-your-next-employee,6,1,misframer,1/6/2016 0:14 +11877935,Gawker Media Files for Chapter 11 Bankruptcy,http://www.hollywoodreporter.com/thr-esq/gawker-media-files-chapter-11-901536,12,1,Jerry2,6/10/2016 17:17 +12168650,Mobileye split with Tesla spurs debate on self-driving tech,http://www.reuters.com/article/us-mobileye-tesla-idUSKCN1061VF,30,12,wibr,7/26/2016 20:51 +11922887,Bolivia rejects 'offensive' chicken donation from Bill Gates,http://www.theverge.com/2016/6/16/11952200/bill-gates-bolivia-chickens-refused,1,1,neverminder,6/17/2016 14:43 +12191421,Intel Programmable Systems Group takes step towards FPGA based system in package,http://www.newelectronics.co.uk/electronics-technology/intels-programmable-systems-group-takes-its-first-step-towards-an-fpga-based-system-in-package-portfolio/142701/,43,16,zxv,7/30/2016 2:56 +12196917,Ask HN: Cofounder and CTO of a Hardware Startup asking how to leave gracefully,,5,6,hippychap,7/31/2016 13:38 +12283784,Cable TV Revenue to Drop by $2.7B in Next 10 Years as Broadband Booms,https://variety.com/2016/biz/news/cable-tv-revenue-decline-broadband-cord-cutting-1201836417/,11,5,misnamed,8/14/2016 0:44 +10904245,UCL Cyber Security for Startups,http://www.cs.ucl.ac.uk/computer_science_news/article/spherical-defence-labs-all-set-to-fight-cyber-crime/,8,1,dishants,1/14/2016 20:33 +11491383,"Apply HN: Simitless: Custom business apps for intelligence, no code",,8,2,fafournier,4/13/2016 19:26 +11601131,The sad state of VoIP from browsers,https://www.mizu-voip.com/Support/Blog/tabid/100/EntryID/12/Default.aspx,3,2,fenesiistvan,4/30/2016 10:08 +12504306,The fishy ingredient in beer that bothers vegetarians,http://www.bbc.co.uk/news/uk-england-37350233,31,59,bhum,9/15/2016 8:20 +10463195,Why Software Outsourcing Doesn't Work Anymore,http://www.yegor256.com/2015/10/27/outsourcing-doesnt-work.html,379,311,nkurz,10/28/2015 7:28 +11873351,Movie written by algorithm turns out to be hilarious and intense,http://arstechnica.com/the-multiverse/2016/06/an-ai-wrote-this-movie-and-its-strangely-moving/?href=,3,1,jonbaer,6/10/2016 0:12 +10249471,"Why open source has reach, but no influence",http://steveburge.com/blog/open-source-communities-are-asking-the-wrong-questions/,2,2,gmays,9/20/2015 22:39 +11845563,"Voice Assistant? Yes please, but not in public",http://creativestrategies.com/voice-assistant-anyone-yes-please-but-not-in-public/,79,79,Gys,6/6/2016 9:40 +10721244,Stop using gzip,http://imoverclocked.blogspot.com/2015/12/for-love-of-bits-stop-using-gzip.html,432,254,imoverclocked,12/12/2015 0:58 +10608672,"Web search 30M rows sub-second, cheaply",https://quantblog.wordpress.com/2015/02/10/web-search-30-million-rows-sub-second-cheaply/,75,33,jgord,11/22/2015 1:13 +11840548,Could artificial intelligence achieve consciousness? A philosophical analysis,https://ayearofai.com/rohan-7-can-artificial-intelligence-achieve-human-intelligence-b0c95e23ca4b#.9d1pzjwye,6,4,mckapur2,6/5/2016 12:15 +11020777,A Reimplementation of NetBSD Using a Microkernel,https://talks.discoverbsd.com/2016/01/31/a-reimplementation-of-netbsd-using-a-microkernel.html,49,4,protomyth,2/2/2016 17:18 +10787227,Asm.thi.ng open-source bare-metal coding resources for ARM Cortex-M,http://asm.thi.ng/,36,2,dgellow,12/24/2015 5:26 +10891771,Entitled Web Developers,https://medium.com/@unakravets/the-sad-state-of-entitled-web-developers-e4f314764dd,16,1,Gigablah,1/13/2016 1:42 +11490763,Cruise v. Guillory,https://www.scribd.com/doc/308408168/Cruise-v-Guillory-Complaint,1,1,vbv,4/13/2016 18:16 +10951275,Create your own HN or community with HelloBox,http://www.hellobox.co/,6,3,davidpelayo,1/22/2016 7:19 +10238619,The future of programming is visual,https://medium.com/inside-the-bubble/what-the-fuck-is-bubble-a919ef59a2f1,1,7,adamlagreca,9/18/2015 11:50 +12482832,Mobile Development or Machine Learning?,,2,1,slyfer,9/12/2016 19:24 +12045611,"Verizon Revamps Plans with More Data, Carryover Data, Unlimited 2G, and Higher $",http://www.macrumors.com/2016/07/06/verizon-new-data-plans-and-carryover/,1,1,protomyth,7/6/2016 20:19 +10760084,The Upward Redistribution of Income: Are Rents the Story?,http://cepr.net/publications/reports/working-paper-the-upward-redistribution-of-income-are-rents-the-story,79,152,vezzy-fnord,12/18/2015 18:42 +10410449,MEGA is genius,https://blog.setec.io/articles/2015/10/18/mega.html,97,30,hlieberman,10/19/2015 0:33 +10236184,ListenBrainz: Open-Data AudioScrobbler,http://listenbrainz.org/,4,1,pronik,9/17/2015 21:28 +12249157,Version 11 of Mathematica,http://blog.wolfram.com/2016/08/08/today-we-launch-version-11/,146,99,NoXReX,8/8/2016 16:55 +11798734,"This is what it's like to grow up in the age of likes, lols and longing",https://www.washingtonpost.com/g00//sf/style/wp/2016/05/25/2016/05/25/13-right-now-this-is-what-its-like-to-grow-up-in-the-age-of-likes-lols-and-longing/,29,6,zavulon,5/29/2016 23:32 +10890713,Teenager invents system to stop bacteria traveling around planes,http://www.independent.co.uk/news/science/teenager-invents-system-to-stop-germs-travelling-around-planes-a6807041.html,1,1,kafkaesq,1/12/2016 21:55 +10901130,Ask HN: Simplest Explanation of YouTube Content ID for a Child? (in Japanese),,4,6,hysan,1/14/2016 13:12 +12551207,Show HN: Python program to clean up handwritten notes,https://mzucker.github.io/2016/09/20/noteshrink.html,79,4,mzucker,9/21/2016 19:01 +11651904,Why you can't copy-paste WeChat into the West,https://medium.com/@kipsearch/why-the-future-of-bots-will-be-multi-platform-67c503afaa7#.br0705lj,3,1,alyxmxe,5/7/2016 23:43 +10513143,Software developers describing their work in 1973,https://www.youtube.com/watch?v=AxSdWhkMB_A,3,1,metafunctor,11/5/2015 13:26 +12399825,A new algorithm for smoother 360 video viewing,https://code.facebook.com/posts/697469023742261/360-video-stabilization-a-new-algorithm-for-smoother-360-video-viewing/,119,16,jamesgpearce,8/31/2016 17:09 +10223446,Ask HN: How does email tracking work?,,11,16,markwaldron,9/15/2015 22:01 +10611678,PhoSho Do Friendship Differently,https://itunes.apple.com/ai/app/phosho-do-friendship-differently/id959065952?mt=8,1,1,PhoSho,11/22/2015 22:06 +10967990,Dalai Lama on the Art of Happiness,https://micaelwidell.com/dalai-lama-on-the-art-of-happiness/,1,1,mwidell,1/25/2016 16:19 +11719944,Competitive equity % for a well funded startup?,,1,1,for_a_friend,5/18/2016 5:21 +10202961,How to Cheat on Taxes in China,http://www.nytimes.com/2015/09/11/opinion/how-to-cheat-on-taxes-in-china.html,3,1,MarkMc,9/11/2015 10:45 +12176179,Facebook Posts Strong Profit and Revenue Growth,http://www.wsj.com/articles/facebook-posts-strong-profit-and-revenue-growth-1469650289,171,194,kartD,7/27/2016 20:18 +12563436,Ask HN: What are you using for integration testing?,,2,1,nenadg,9/23/2016 9:58 +11514023,Apply HN: Tutorack Find teachers and courses for everything you want to learn,,3,5,udayj,4/17/2016 10:00 +10693703,Eric Schmidt on How to Build a Better Web,http://www.nytimes.com/2015/12/07/opinion/eric-schmidt-on-how-to-build-a-better-web.html,5,1,pgodzin,12/7/2015 23:46 +10458325,Customer Friendship as a Service,http://www.dixa.com,1,1,julia_dixa,10/27/2015 14:53 +11385941,Show HN: Catslack,https://github.com/influxdata/catslack,9,3,mjdesa,3/29/2016 23:56 +10564825,Does Apple deliberately slow its old iPhones before a new release?,http://www.dailymail.co.uk/sciencetech/article-2709502/Does-Apple-deliberately-slow-old-models-new-release-Searches-iPhone-slow-spike-ahead-launches.html,13,1,angadsg,11/14/2015 7:14 +12284846,SW-delta: an incremental cache for the web,https://github.com/gmetais/sw-delta,139,28,instakill,8/14/2016 8:50 +11092542,"Were in a brave, new post open source world",https://medium.com/@nayafia/we-re-in-a-brave-new-post-open-source-world-56ef46d152a3#.e1gf78t22,5,2,chewymouse,2/13/2016 4:27 +11452105,"LogZoom: A fast, lightweight substitute for Logstash/Fluentd in Go",https://packetzoom.com/blog/logzoom-a-fast-and-lightweight-substitute-for-logstash.html,149,39,whost49,4/8/2016 1:53 +10438937,Dechoker medical device could end deaths by choking,http://insiderlouisville.com/startups/cool-stuff/game-changer-dechoker-medical-device-end-deaths-choking/,215,104,alvinktai,10/23/2015 14:54 +11506853,"Thanks, Obama: TV will never be the same, and consumers will love it",http://www.networkworld.com/article/3056800/home-tech/thanks-obama-tv-will-never-be-the-same-and-consumers-will-love-it.html#tk.twt_nww,1,1,stevep2007,4/15/2016 19:10 +10738979,Lexmark fires Mexico factory workers demanding $0.35 raise,http://www.theguardian.com/business/2015/dec/15/printer-giant-lexmark-fires-juarez-factory-workers-demanding-raise,142,82,benologist,12/15/2015 17:21 +12352717,Edward Snowden: Its Only Getting Better (HITRECORD X ACLU) [video],https://www.youtube.com/watch?v=ysCQfx-UEpA,2,1,thevibesman,8/24/2016 15:27 +10545438,Generating images from their descriptions,http://www.cs.toronto.edu/~emansim/cap2im.html,23,7,cocoflunchy,11/11/2015 8:26 +10327130,Femtosecond lasers allow physicists to directly observe zero point energy,http://motherboard.vice.com/read/femtosecond-lasers-allow-physicists-to-directly-observe-zero-point-energy,2,1,zw123456,10/4/2015 10:25 +12433283,Show HN: App uses GIFs to improve your health,https://itunes.apple.com/us/app/simple-steps-eat-better-one/id1039731803?mt=8,1,1,Solomonrajput1,9/6/2016 2:16 +11040791,Mastercard API,https://developer.mastercard.com/,4,1,ksred,2/5/2016 11:30 +10498318,Why is hi-tech Japan using cassette tapes and faxes?,http://www.bbc.co.uk/news/business-34667380,4,4,rwmj,11/3/2015 9:01 +12273173,Ask HN: Why did you stop learning to code?,,40,44,beekums,8/12/2016 3:05 +10565247,The Great Statistical Schism,http://quillette.com/2015/11/13/the-great-statistical-schism/,49,46,Schiphol,11/14/2015 10:52 +11687548,Tech layoffs more than double in Bay Area,http://www.mercurynews.com/business/ci_29880696/tech-layoffs-more-than-double-bay-area,494,342,akg_67,5/12/2016 23:28 +10670618,Why a German billionaire says that pledges like Mark Zuckerbergs are really bad,https://www.washingtonpost.com/news/wonk/wp/2015/12/02/why-some-people-feel-billionaire-pledges-like-mark-zuckerbergs-are-really-bad/,94,216,nkurz,12/3/2015 16:51 +12216466,The Infinite Set: On '2001: A Space Odyssey',http://reverseshot.org/symposiums/entry/2013/space_odyssey,64,24,prismatic,8/3/2016 8:22 +10798791,"The secret to a happier, healthier life: Just retire",http://www.marketwatch.com/story/the-secret-to-a-happier-healthier-life-just-retire-2015-07-27,2,3,eplanit,12/27/2015 21:16 +11643473,Where the FBI's top cybercrime agents go after quitting the force,http://www.dailydot.com/politics/brg-cybersecurity-silk-road-fbi-poached/,61,12,chkuendig,5/6/2016 12:32 +10385840,Apple facing huge chip patent bill after losing case,http://www.bbc.com/news/technology-34524785,156,141,jnord,10/14/2015 10:20 +12222379,Turkey coup plotters' use of 'amateur' app helped unveil their network,https://www.theguardian.com/technology/2016/aug/03/turkey-coup-gulen-movement-bylock-messaging-app,141,134,scandox,8/3/2016 23:49 +12260491,Jacob Appelbaum: Inconsistencies in Rape Allegations,http://www.zeit.de/kultur/2016-08/jacob-appelbaum-rape-allegations-contradictions,15,8,treigerm,8/10/2016 9:39 +11654155,Show HN: S3io.com File sharing and note-taking tool based on Amazon S3 buckets,https://www.s3io.com,6,2,iliaznk,5/8/2016 14:24 +11036097,"The Grid??Over Promise, Under Deliver, and the Lies Told by AI Startups",https://medium.com/@seibelj/the-grid-over-promise-under-deliver-and-the-lies-told-by-ai-startups-40aa98415d8e#.77d37yd26,21,4,seibelj,2/4/2016 18:34 +10428186,"Thoughts on Campus, a Failed Housing Startup",http://rossgarlick.com/2015/07/14/thoughts-on-campus-the-failed-startup-that-almost-reinvented-how-we-live/,53,23,edward,10/21/2015 19:56 +11599346,"Introducing Facebook, Messenger, and Instagram Windows Apps",http://newsroom.fb.com/news/2016/04/introducing-facebook-messenger-and-instagram-windows-apps/,78,44,asp2insp,4/29/2016 23:15 +12202293,Show HN: Bouncy Ball A TodoMVC for web animation,http://sparkbox.github.io/bouncy-ball/,85,16,bryanbraun,8/1/2016 13:45 +11572441,Show HN: Personalize Every Article for Every Reader,http://sahadeva.com/interactive-article-experiment.html,3,2,sahadeva,4/26/2016 15:01 +10402177,Document Clustering with Python,http://brandonrose.org/clustering,125,3,sytelus,10/16/2015 21:41 +10898922,Ask HN: Effect of SDNs on internet network topology and freedom,,4,2,gioscarab,1/14/2016 1:02 +10609379,Heroic: Spotify's time series database for monitoring,http://spotify.github.io/heroic/,16,4,mhausenblas,11/22/2015 7:40 +11800234,HackIDE Open-Source Online Code Editor/Compiler/Interpreter,http://hackide.herokuapp.com,4,2,sahil2305dua,5/30/2016 8:23 +11193371,The Bloatware Debate (1999),http://blu.org/faq/bloat.html,13,2,userbinator,2/29/2016 2:47 +12301809,Ask HN: Has anyone read the AdBlockPlus source code to check for integrity?,,3,6,godot,8/17/2016 1:05 +11915309,Rules for Writing Technical Documentation (2009),http://www.developer.com/tech/article.php/3848981/The-7-Rules-for-Writing-World-Class-Technical-Documentation.htm,74,7,Tomte,6/16/2016 11:01 +11762203,Software Info,,1,1,enazhat,5/24/2016 15:10 +10415091,Airbnb could disrupt the broker business model,https://medium.com/@alexcmeyer/why-airbnb-can-be-the-one-to-finally-disrupt-the-broker-business-model-7604493546f9,34,25,acmeyer9,10/19/2015 19:30 +10803631,Irish DNA originated in Middle East and eastern Europe,http://www.theguardian.com/science/2015/dec/28/origins-of-the-irish-down-to-mass-migration-ancient-dna-confirms?CMP=share_btn_fb,59,11,hunglee2,12/28/2015 21:57 +11377394,A Hackers Guide to Bending the Universe,https://backchannel.com/a-hacker-s-guide-to-bending-the-universe-86a5636b04da#.pqjo9zioo,4,1,enzoavigo,3/28/2016 21:05 +11200102,RFC 7725 An HTTP Status Code to Report Legal Obstacles,https://tools.ietf.org/html/rfc7725,3,1,_jomo,3/1/2016 1:05 +11694466,Letter of Recommendation: U.S.G.S. Topographical Maps,http://www.nytimes.com/2016/05/15/magazine/letter-of-recommendation-usgs-topographical-maps.html,13,1,prismatic,5/14/2016 3:39 +11553317,Sort an array using only one local variable,http://patrickmichaelsen.com/blog/one-var-sort,50,18,nkurz,4/22/2016 23:40 +11732757,"Blue Feed, Red Feed",http://graphics.wsj.com/blue-feed-red-feed/,91,55,some-guy,5/19/2016 18:59 +10841246,Is this the future of electric vehicles?,http://www.theverge.com/2016/1/4/10711164/faraday-future-ffzero1-concept-car-announced-photos-ces-2016,4,1,FreedomToCreate,1/5/2016 4:44 +12392081,AWS S3 open source alternative written in Go,https://minio.io,405,131,krishnasrinivas,8/30/2016 17:31 +11204706,The Sign Up with Google Mistake You Can't Fix,https://maltheborch.com/2016/03/the-sign-up-with-google-mistake-you-can%27t-fix.html,332,155,mborch,3/1/2016 18:12 +10411924,Scientists Create Artificial 'Skin' for Prosthetics That Senses Touch,http://www.bbc.co.uk/news/science-environment-34539056,38,2,JohnHammersley,10/19/2015 9:28 +11879504,Why Americas gas stations are running out of time,http://www.slate.com/articles/business/the_juice/2016/06/why_america_s_gas_stations_are_running_out_of_time.html,4,3,jseliger,6/10/2016 19:55 +10675228,"Saudi Arabia to execute 52 prisoners, including juveniles, en masse",http://www.reprieve.org.uk/press/saudi-arabia-to-execute-52-prisoners-including-juveniles-en-masse/,60,26,randomname2,12/4/2015 8:16 +10812453,Quick test to see how well you know popular digital products,https://www.producthunt.com/games/frozen-products,2,2,outfoxer,12/30/2015 15:41 +11671030,Trumps Floating Cities: Solving Immigration with the Help of Silicon Valley,https://medium.com/@noncanonic/trumps-floating-cities-solving-immigration-with-the-help-of-silicon-valley-part-1-8cb082ea9cde#.qw8wwkkrm,2,1,noncanonic,5/10/2016 22:00 +10893204,Ack is designed as a replacement for 99% of the uses of grep,http://linux.die.net/man/1/ack,23,13,thefox,1/13/2016 9:28 +10567256,Show HN: Gains Truly simple weightlifting/bodybuilding logging for iPhone,http://gainstheapp.com,5,1,bemaniac,11/14/2015 21:06 +10726187,"Hi, Im from the games industry. Governments, please stop us",http://positech.co.uk/cliffsblog/2015/12/13/hi-im-from-the-games-industry-governments-please-stop-us/,344,229,smacktoward,12/13/2015 12:36 +10673418,NSA OS X hardening tips (2005) [pdf],https://www.nsa.gov/ia/_files/factsheets/macosx_hardening_tips.pdf,5,2,pelim,12/3/2015 23:08 +12486775,Show HN: Dutch app helps you find a Döner place for your after party cravings,https://nudoner.nl/?ref=fndz,12,11,wiemee,9/13/2016 10:16 +10589634,Ask HN: Microsoft PR machine unleashed on HN?,,2,3,idibidiart,11/18/2015 18:20 +10639616,Caffeine could limit damage of chronic stress,http://arstechnica.com/science/2015/06/caffeine-could-point-the-way-to-limiting-damage-of-chronic-stress/,83,25,mkagenius,11/28/2015 1:14 +10293565,Does draft beer give you a worse hangover?,http://www.click2houston.com/news/does-draft-beer-give-you-a-worse-hangover/31037044,1,1,SQL2219,9/28/2015 22:12 +10803473,'Twas the Night Before Startup (Vint Cerf - 1985),https://web.archive.org/web/20080428140957/http://www.ietf.org/rfc/rfc968.txt,3,1,SocksCanClose,12/28/2015 21:24 +11185557,Categories: From Zero to Infinity,http://inference-review.com/article/categories-from-zero-to-infinity,25,3,jsprogrammer,2/27/2016 1:13 +10177702,"Linux-insides: System calls in the Linux kernel, Part 3",https://github.com/0xAX/linux-insides/blob/master/SysCall/syscall-3.md,73,1,0xAX,9/6/2015 14:18 +11284523,MongoDB: The Frankenstein Monster of NoSQL Databases,https://www.linkedin.com/pulse/mongodb-frankenstein-monster-nosql-databases-john-de-goes,54,7,buffyoda,3/14/2016 18:26 +11842531,Ask HN: Do you keep a journal/diary?,,8,4,curiousgal,6/5/2016 19:08 +10988814,Timezone updates need to be fixed,http://www.creativedeletion.com/2015/12/03/timezone-updates-need-fixing.html,27,58,laut,1/28/2016 15:43 +10489817,How to Study and Take Notes from a Textbook Using the Cornell Note Taking Method,http://whinkapp.com/how-to-effectively-study-a-textbook-using-cornell-note-taking-techniques/,54,4,whinkapp,11/2/2015 3:28 +11206438,Malformed private keys lead to heap corruption in OpenSSL's b2i_PVK_bio,https://guidovranken.wordpress.com/2016/03/01/public-disclosure-malformed-private-keys-lead-to-heap-corruption-in-b2i_pvk_bio/,25,10,jlgaddis,3/1/2016 21:58 +10858338,Uber Settles with New York Attorney General Over God View Tracking Program,http://www.buzzfeed.com/johanabhuiyan/uber-settles-godview#.lirPrE5gbm,2,1,JumpCrisscross,1/7/2016 15:19 +11477356,Apply HN: Natch Localized Farmers and Artisans Marketplace,,4,5,omarhegazyy,4/12/2016 4:57 +12172035,Adults Have Become Shorter in Many Countries,http://www.nytimes.com/2016/07/26/health/average-height-peaked.html,3,3,dpflan,7/27/2016 11:54 +11343844,Ask HN: How can Slack be disrupted?,,40,73,bossx,3/23/2016 12:38 +10653965,Bulk Call Details Records Collection Ends: What That Means,https://www.eff.org/deeplinks/2015/11/bulk-call-details-records-collection-ends-what-means,4,2,DiabloD3,12/1/2015 6:41 +10883878,The New Republics Next Chapter,https://medium.com/@chrishughes/the-new-republic-s-next-chapter-69f6772606#.2iuzbr286,1,1,emilyn,1/11/2016 21:52 +10228014,Sparkle Motion Paging Animation Framework for Android,http://engineering.ifttt.com/android/2015/09/16/sparkle-motion/,17,1,devinfoley,9/16/2015 16:55 +10228333,Ask HN: Which CSS/HTML frameworks should I consider for modern web development?,,20,6,SeanAnderson,9/16/2015 17:33 +10275851,Technology-Enabled Blitzscaling: Class Notes,https://medium.com/@mccannatron/reid-hoffman-john-lilly-and-allen-blue-s-cs183c-technology-enabled-blitzscaling-class-1-notes-a93b119a51b9?_hsenc=p2ANqtz-8nyrEcSDZCukzJdFyRaj66H15G2XQcD9g27oGT4oGyaMBSFus6YW3bwLehCOSSMOMhSV89dh2pKTrom4L93RZkrVCRCg&_hsmi=22290608,3,1,prostoalex,9/25/2015 0:54 +12577857,Amazon Fined for Shipping Lithium Batteries on Passenger Planes,http://www.wired.co.uk/article/amazon-fine-batteries-plane,23,5,JboyOzette,9/25/2016 22:44 +12168294,Useful online tool determines if men are talking too much,http://www.avclub.com/article/useful-online-tool-determines-if-men-are-talking-t-240158,1,1,6stringmerc,7/26/2016 19:50 +12241422,PS4 hack: PS4 3.55 OFW unsigned code execution PoC released (webkit exploit),https://github.com/Fire30/PS4-3.55-Code-Execution-PoC,17,4,loppers92,8/7/2016 7:49 +10710240,Is there any huge web application built using Redux?,,6,5,demetriusnunes,12/10/2015 12:14 +10900333,Internship Choices,,1,4,faceofprogress,1/14/2016 9:22 +12113598,Ask HN: What is the best monitor for people with failing eyesight?,,8,6,stevewilhelm,7/18/2016 7:09 +12498899,Gmail is down,https://twitter.com/GoogleforWork/status/776079823773044736?ref_src=twsrc%5Etfw,2,1,bado,9/14/2016 16:54 +11328163,"WayUp, YC W15, is now charging for excel exports",http://imgur.com/SsC9Tn2,5,2,miken110,3/21/2016 14:15 +12288828,Tavishs excessively long programmer biography,https://github.com/tarmstrong/longcv/blob/master/bio.md,137,48,ingve,8/15/2016 5:26 +11048087,Silicon Valley Should Join the War on Terrorism,http://www.bloombergview.com/articles/2016-02-05/silicon-valley-should-join-the-war-on-terrorism,4,2,adventured,2/6/2016 15:28 +11608573,How I watched a Brooklyn startup sellout: The downfall of MakerBot from inside,http://brokelyn.com/makerbot-sells-out-as-seen-from-the-inside/,3,1,wallflower,5/2/2016 0:43 +11873806,Transfer Style but Not Color,http://blog.deepart.io/2016/06/04/color-independent-style-transfer/,118,16,ot,6/10/2016 2:02 +11834643,Here Is the Powerful Letter the Stanford Victim Read Aloud to Her Attacker,https://www.buzzfeed.com/katiejmbaker/heres-the-powerful-letter-the-stanford-victim-read-to-her-ra,14,2,maxerickson,6/4/2016 2:32 +11313476,Atlas and Cuba,https://stripe.com/blog/atlas-cuba?ref=hn,141,65,lx,3/18/2016 17:42 +11198002,The Silicon Valley Hustle,http://www.nytimes.com/interactive/2016/02/28/technology/silicon-valley-photo-essay.html?smid=tw-nytimesbusiness&smtyp=cur&_r=0,35,19,Futurebot,2/29/2016 20:07 +10941280,Show HN: Tripsak Plan your next trip with the best travel tools in one place,http://tripsak.com,1,1,delsol,1/20/2016 20:58 +11959427,Code and Graphics: C++ (Core) Coding Guidelines,http://www.bfilipek.com/2016/06/c-core-coding-guidelines.html,2,1,Tatyanazaxarova,6/23/2016 7:43 +11697135,U.S. concern grows over possible Venezuela meltdown,http://www.reuters.com/article/us-venezuela-usa-idUSKCN0Y42MT,17,7,randomname2,5/14/2016 17:28 +11469877,Show HN: High-performant low-level API for access to cursor in terminal (JS),https://github.com/ghaiklor/terminal-canvas,2,1,submitted,4/11/2016 5:58 +12451653,List of interventions being considered by Google Chrome,https://www.chromestatus.com/features#intervention,3,1,jonnyscholes,9/8/2016 10:08 +11889528,Distributed Systems in Haskell,http://yager.io/Distributed/Distributed.html,171,18,philippelh,6/12/2016 18:33 +11695904,A cool way to use natural language in JavaScript,https://github.com/nlp-compromise/nlp_compromise,517,186,oori,5/14/2016 13:00 +10465454,Ask HN: Why do legal documents sometimes use caps?,,8,3,chejazi,10/28/2015 16:32 +10661225,How Dave Chappelle Is Creating a No-Phone Zone for His Chicago Shows,http://www.hollywoodreporter.com/news/how-dave-chappelle-is-creating-844886,39,63,fudgy73,12/2/2015 5:47 +10883786,Ask HN: What tool do you use for Code Analysis?,,3,1,microsby0,1/11/2016 21:36 +10228508,Obama just tweeted the perfect message for Ahmed Mohamed,http://www.vox.com/2015/9/16/9338229/ahmed-mohamed-obama-tweet,12,4,dankohn1,9/16/2015 17:58 +11165600,Employees: looking for the great boss who cares about their development,http://www.gallup.com/opinion/chairman/171302/employee-satisfaction-doesn-matter.aspx,173,165,ioanarebeca,2/24/2016 9:46 +11167602,Free CCTV for your website,https://peekin.io,5,3,kullar,2/24/2016 15:50 +10547429,Global majority want autonomous weapons banned: New report,http://robohub.org/global-majority-want-autonomous-weapons-banned-new-report/,1,2,probotika,11/11/2015 16:27 +11882789,Chrome about to get huge performance boost,https://docs.google.com/document/d/1vKNGim07lvPCYL1ctiNss1BqhjfE49t6LwZkwoTkeXU/edit,27,9,hccampos,6/11/2016 9:25 +10524184,Puzzle: squirrel's first attempt with the pull-rods on different sides,https://youtu.be/KFEDeOcnmlo,2,1,sodnpoo,11/7/2015 8:37 +11829186,"Early startup pitches are like movie pitches, not business pitches",http://also.roybahat.com/post/141207062911/early-startup-pitches-are-like-movie-pitches-not,2,2,scandox,6/3/2016 9:18 +12225108,Bitfinex bitcoin exchange hacker offers 1000BTC giveaway,https://bitcointalk.org/index.php?topic=1574127.0,3,2,deanclatworthy,8/4/2016 12:45 +12072877,Elon Musk Teases Second Part of Top Secret Tesla Masterplan,https://techcrunch.com/2016/07/11/elon-musk-teases-second-part-of-top-secret-tesla-masterplan/,3,2,Errorcod3,7/11/2016 17:51 +10802823,How Big Was the Universe When It Was Born,http://www.forbes.com/sites/startswithabang/2015/12/26/ask-ethan-how-big-was-the-universe-when-it-was-first-born/,2,1,billconan,12/28/2015 19:25 +10581857,Microsoft's plan to port Android apps to Windows proves too complex,http://www.networkworld.com/article/3005670/microsoft-subnet/microsofts-plan-to-port-android-apps-to-windows-proves-too-complex.html,68,58,stevep2007,11/17/2015 15:55 +10494842,The web is becoming unusable,,16,50,byron_fast,11/2/2015 20:14 +10898533,U.S. demands iMessage backdoor in secret court,http://www.zdnet.com/article/apple-in-refusing-backdoor-access-to-data-faces-huge-fines/,18,2,zmanian,1/13/2016 23:35 +12424110,Ask HN: What are best ways to prepare for RHCA/RHCE,,3,3,marmot777,9/4/2016 12:59 +12186435,N. Korea hacked Korean online shopping site for Bitcoin,http://www.businessinsider.com/r-south-korea-says-north-hacked-online-shopping-site-2016-7,2,1,mosesofmason,7/29/2016 12:45 +10540371,Show HN: Modern Hacker News with custom userstyles,https://github.com/oskarkrawczyk/hackernews-userstyles,21,10,wassago,11/10/2015 16:43 +11223033,Startup bank Mondo raised £1m crowdfunding in 96 seconds,https://getmondo.co.uk/blog/2016/03/03/crowdfunded/,83,74,obeattie,3/4/2016 11:07 +11693703,Ask HN: How can I seek out successful mentors who I can connect to?,,11,5,thakobyan,5/13/2016 22:51 +11600457,CDNs aren't just for caching,http://jvns.ca/blog/2016/04/29/cdns-arent-just-for-caching/,24,4,iamtechaddict,4/30/2016 5:06 +11286342,Ask YC: How Big Is the HN Team?,,1,2,Kinnard,3/14/2016 23:23 +10245450,82 Maxims About Life That Made Alejandro Jodorowsky the Filmmaker He Is Today,http://nofilmschool.com/2015/09/82-maxims-life-made-alejandro-jodorosky-filmmaker-he-is-today?utm_content=bufferdca04&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,2,1,phprida,9/19/2015 20:27 +11139853,"Judge Rules FBI Must Reveal Malware It Used to Hack Over 1,000 Computers",http://motherboard.vice.com/read/judge-rules-fbi-must-reveal-malware-used-to-hack-over-1000-computers-playpen-jay-michaud,234,77,56k,2/20/2016 12:41 +10344712,Former NSA Chief Disagrees with Current NSA Chief on Encryption,http://motherboard.vice.com/read/former-nsa-chief-strongly-disagrees-with-current-nsa-chief-on-encryption,100,10,howsilly,10/7/2015 7:51 +12304324,Using Feature Queries in CSS,https://hacks.mozilla.org/2016/08/using-feature-queries-in-css/,70,17,dwaxe,8/17/2016 13:04 +11355673,Justin Time,https://blog.ycombinator.com/justin-time,163,51,melvinmt,3/24/2016 19:26 +12069450,Show HN: Is Pokémon GO Available?,http://is-pokemon-go-available.com/,4,8,Eun,7/11/2016 7:39 +11648342,"Ask HN: I need to specialize. Web, or iOS?",,3,7,esob3,5/7/2016 4:03 +11887365,The OpenType Cookbook,http://opentypecookbook.com/,4,1,ashitlerferad,6/12/2016 9:29 +11075737,Popcorn Time Online,http://popcorntime-online.io/,34,3,tilt,2/10/2016 20:31 +10372846,Ask HN: How can we fight the pesticide issue in my state,,6,1,imakesnowflakes,10/12/2015 6:27 +10738607,A Day in the Life of Americans,http://flowingdata.com/2015/12/15/a-day-in-the-life-of-americans/,63,19,WestCoastJustin,12/15/2015 16:20 +12164909,Techcrunch hacked by OurMine,,51,23,p0la,7/26/2016 11:49 +11458666,Ask HN: What's most important when creating software?,,2,5,baccheion,4/8/2016 22:39 +10944486,"If being too clean makes us sick, why isnt getting dirty the solution?",https://theconversation.com/if-being-too-clean-makes-us-sick-why-isnt-getting-dirty-the-solution-50572?utm_medium=email&utm_campaign=Newsletter%20for%20Sunday%20January%2017%202016&utm_content=Newsletter%20for%20Sunday%20January%2017%202016+CID_458a2368e784f399b1f1105283ab13b1&utm_source=campaign_monitor_us&utm_term=If%20being%20too%20clean%20makes%20us%20sick%20why%20isnt%20getting%20dirty%20the%20solution,97,73,neverminder,1/21/2016 10:57 +11891404,Dead Could Be Brought 'Back to Life' in Groundbreaking Project,http://www.telegraph.co.uk/science/2016/05/03/dead-could-be-brought-back-to-life-in-groundbreaking-project/,2,1,ytNumbers,6/13/2016 2:34 +10224414,"How we built a world class engineering team in Jakarta, Indonesia",https://medium.com/@laironald/how-we-built-a-world-class-engineering-team-in-jakarta-indonesia-97de603106b5,9,2,laironald,9/16/2015 2:59 +12320288,"NBCs $12B Olympics Bet Stumbles, Thanks to Millennials",http://www.bloomberg.com/news/articles/2016-08-19/nbc-s-12-billion-olympics-bet-stumbles-thanks-to-millennials,3,1,petethomas,8/19/2016 14:37 +12136983,"The Strange Politics of Peter Thiel, Trumps Most Unlikely Supporter",http://www.bloomberg.com/news/articles/2016-07-21/the-strange-politics-of-peter-thiel-trump-s-most-unlikely-supporter,94,167,spking,7/21/2016 14:16 +10821293,Newly found TrueCrypt flaw allows full system compromise,http://www.itworld.com/article/2987438/data-protection/newly-found-truecrypt-flaw-allows-full-system-compromise.html,19,1,laurencei,1/1/2016 6:51 +11547394,Predicting Churn,http://swanintelligence.com/predicting-churn.html,24,2,baseraid,4/22/2016 6:25 +10706695,"Modern Perl 4th Edition is out, ebook version is free",https://pragprog.com/book/swperl/modern-perl-fourth-edition,183,94,ingve,12/9/2015 20:58 +11929441,The Money Letter That Every Parent Should Write,http://www.nytimes.com/2016/06/18/your-money/the-money-letter-that-every-parent-should-write.html?ref=business&_r=0,104,75,pavornyoh,6/18/2016 17:04 +12571791,Why the silencing of KrebsOnSecurity opens a troubling chapter for the Net,http://arstechnica.com/security/2016/09/why-the-silencing-of-krebsonsecurity-opens-a-troubling-chapter-for-the-net/,13,2,vezycash,9/24/2016 17:39 +12175848,Photos from the Korean War,http://www.theatlantic.com/photo/2016/07/remembering-the-korean-war/493235/?single_page=true,49,15,curtis,7/27/2016 19:34 +11375285,Building My Connected Shower,https://medium.com/@drewry/building-my-connected-shower-31d148b03539#.8gz7diu1u,24,18,viacoffee,3/28/2016 16:34 +12496937,Show HN: Learn Modern Cloud Infrastructure Using AWS,https://badgerops.net/learn-modern-cloud-infrastructure-with-aws.html,8,6,badgerops,9/14/2016 14:03 +10472329,Ask HN: Do recruiters follow up emails ever work?,,7,5,dudul,10/29/2015 16:37 +11636932,"Who Has Your Back? Government Data Requests 2016, Sharing Economy Edition",https://www.eff.org/who-has-your-back-2016,96,15,sinak,5/5/2016 15:28 +11455031,"Forbes Site, After Begging You Turn Off Adblocker, Serves Up Malware 'Ads'",https://www.techdirt.com/articles/20160111/05574633295/forbes-site-after-begging-you-turn-off-adblocker-serves-up-steaming-pile-malware-ads.shtml,606,271,jackgavigan,4/8/2016 14:56 +10524619,Autoprefixer 6.1 is out with CSS-in-JS and :read-only support,https://github.com/postcss/autoprefixer/releases/tag/6.1.0,44,18,iskin,11/7/2015 12:38 +10513985,Show HN: GitMark Your GitHub Report Card,http://www.gitmark.me/,15,15,jicooo,11/5/2015 15:53 +10457584,From product design to virtual reality,https://medium.com/@jmdenis/from-product-design-to-virtual-reality-be46fa793e9b#.9ddoc1heg,28,3,sebg,10/27/2015 12:42 +10177716,Alda: A music programming language,http://daveyarwood.github.io/alda/2015/09/05/alda-a-manifesto-and-gentle-introduction/,276,75,daveyarwood,9/6/2015 14:21 +11026959,An awesome set of JavaScript snippets for VIM with support of ES2015 and Node.js,https://grvcoelho.github.io/vim-javascript-snippets,4,1,grvcoelho,2/3/2016 15:34 +12268716,Go Walkthrough: bytes and strings packages,https://medium.com/@benbjohnson/go-walkthrough-bytes-strings-packages-499be9f4b5bd#.1yoizkvo7,2,1,state_machine,8/11/2016 14:58 +11618444,Are We Reaching the Limits of Silicon Valleys Venture Model?,https://medium.com/@bryce/are-we-reaching-the-limits-of-silicon-valleys-venture-model-f7b7f3708a50#.tmp1sm3u2,2,1,ot,5/3/2016 6:44 +10750039,McCarthy 2.0?,http://techcrunch.com/2015/12/16/a-call-to-arms-against-mccarthy-2-0/,10,2,dannylandau,12/17/2015 6:58 +12303066,The worst predicted impacts of climate change are starting to happen (2015),http://www.rollingstone.com/politics/news/the-point-of-no-return-climate-change-nightmares-are-already-here-20150805?print=true,112,24,kawera,8/17/2016 7:48 +12477090,"What Happened After Portugal Decriminalized All Drugs, from Weed to Heroin",https://news.vice.com/article/ungass-portugal-what-happened-after-decriminalization-drugs-weed-to-heroin,59,11,prawn,9/12/2016 3:56 +11450720,Patent: machine-to-machine instant messaging,http://www.uspto.gov/web/patents/patog/week15/OG/html/1413-2/US09009230-20150414.html,23,11,rgbrgb,4/7/2016 21:05 +10531945,9.22337E+18,https://en.wikipedia.org/wiki/9223372036854775807,9,1,lolo_,11/9/2015 8:44 +11526813,The effect of [coffee] bean origin and temperature on grinding roasted coffee,http://www.nature.com/articles/srep24483,4,1,jdnier,4/19/2016 13:40 +12428068,Amazon Unveils Online Education Service for Teachers,http://www.nytimes.com/2016/06/28/technology/amazon-unveils-online-education-service-for-teachers.html,2,1,nature24,9/5/2016 4:16 +11359067,Magic is often used to describe confusing code,http://www.quii.co.uk/Magic,76,56,quii,3/25/2016 8:47 +10443525,Ask HN: Suggestions for my master's degree dissertation,,1,3,chencs,10/24/2015 13:28 +11230080,"Amazon Reverses Course, Encryption Returning for Fire Devices",http://www.bloomberg.com/news/articles/2016-03-05/amazon-reverses-course-encryption-returning-for-fire-devices,110,35,adventured,3/5/2016 17:21 +10248151,Promisees JavaScript Promises Visualization,https://github.com/bevacqua/promisees,64,15,bevacqua,9/20/2015 16:50 +12536342,Computer Vision: On the Way to Seeing More,http://www.nytimes.com/interactive/2016/09/20/science/computer-vision-imsitu.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=stream&module=stream_unit&version=latest&contentPlacement=7&pgtype=sectionfront&_r=0,51,1,dnetesn,9/20/2016 1:37 +12501350,Fantasy Land 1.0,https://github.com/fantasyland/fantasy-land/releases/tag/1.0.0,103,33,porsager,9/14/2016 21:28 +11102051,Cordless Telephones: Bye Bye Privacy (1991),http://readtext.org/hamradio/cordless-telephones-privacy/,43,9,tux,2/15/2016 8:05 +10528483,The Java Deserialization Bug,http://fishbowl.pastiche.org/2015/11/09/java_serialization_bug/,80,29,ingve,11/8/2015 13:59 +10388688,Africa's Food Security Relies on Adoption of New Technologies,http://www.iafrikan.com/2015/10/14/africas-food-security-relies-on-adoption-of-new-technologies/,2,2,tefo-mohapi,10/14/2015 19:11 +12486322,Dva 1.0 a lightweight framework based on react and redux,https://medium.com/@chenchengpro/dva-1-0-a-lightweight-framework-based-on-react-redux-and-redux-saga-eeeecb7a481d#.a7hy8vlfa,4,1,sorrycc,9/13/2016 8:00 +12574260,EQ-Radio: Emotion Recognition Using Wireless Signals,http://eqradio.csail.mit.edu/,45,5,achanda358,9/25/2016 6:31 +11346147,Tay Microsoft A.I. chatbot,https://tay.ai/,154,130,Wookai,3/23/2016 16:52 +10436182,Airbnb doubles down on douchebaggery,https://www.jwz.org/blog/2015/10/airbnb-doubles-down-on-douchebaggery/,35,5,aaronbrethorst,10/23/2015 0:48 +12445994,iPhone 7,http://www.apple.com/iPhone7,756,1733,benigeri,9/7/2016 18:52 +10905160,Show HN: Fosite OAuth2 framework for Go,https://github.com/ory-am/fosite?a,38,5,arekkas,1/14/2016 22:22 +10223317,What makes you choose Hacker News over other sites?,https://surveys.mcgill.ca/limesurvey/index.php?sid=97446&lang=en&97446X8879X361722=hackernewsone,1,1,netdynamics1,9/15/2015 21:28 +10929488,Twitter Web has been down for over 20 mins. Are you affected?,,15,14,OoTheNigerian,1/19/2016 9:12 +10824149,Are Movie Theaters Actually Fueling Piracy?,https://medium.com/@MarcHustvedt/are-movie-theaters-actually-fueling-piracy-f35cc48ac0ca#.viac16kvp,2,1,marchustvedt,1/1/2016 23:46 +10350461,Ask HN: How long did it take you to launch?,,2,1,smcguinness,10/8/2015 2:07 +11304529,Managing heterogeneous environments with ManageIQ,https://lwn.net/SubscriberLink/680060/c0650cff2e612670/,49,7,tenderlove,3/17/2016 14:30 +11526661,Exclusive Footage of What Its Like to See Through Magic Leap,http://www.wired.com/2016/04/exclusive-footage-like-see-magic-leap/,1,1,sunsu,4/19/2016 13:10 +10953359,The New York Times Introduces a Web Site (1996),http://www.nytimes.com/1996/01/22/business/the-new-york-times-introduces-a-web-site.html,218,94,danso,1/22/2016 15:48 +10450055,$68B California bullet train project likely to overshoot budget and deadline,http://www.latimes.com/local/california/la-me-bullet-train-cost-final-20151025-story.html,38,69,chambo622,10/26/2015 8:08 +10825304,The price of dissent,https://www.youtube.com/watch?v=c7tzxHOSfss&feature=youtu.be,1,1,cup,1/2/2016 6:12 +11854931,Ask HN: What's the right subset of the C++ language?,,2,2,uptownfunk,6/7/2016 14:59 +10470959,The Internet is getting less and less free,https://www.washingtonpost.com/news/the-switch/wp/2015/10/28/the-internet-is-getting-less-and-less-free/,2,1,cryoshon,10/29/2015 13:55 +12040425,The Codeless Code The Falling and the Rising Rain,http://thecodelesscode.com/case/233,1,1,Forge36,7/6/2016 0:15 +10721876,Self-hosting Firefox Sync 1.5,https://known.phyks.me/2015/self-hosting-firefox-sync-15,80,20,walterbell,12/12/2015 5:14 +10381524,Ask HN: Showcasing side projects on resume,,9,11,_spoonman,10/13/2015 16:25 +12207258,A Fully Concurrent Garbage Collector for Functional Programs on Multicore CPUs,http://www.pllab.riec.tohoku.ac.jp/papers/icfp2016UenoOhori-preprint.pdf,2,2,cm3,8/2/2016 1:18 +11862223,Introducing Virgil: We make every developer an applied cryptologist,https://medium.com/@VirgilSecurity/introducing-virgil-security-216468775529#.g4a0fd9eg,3,1,randomr,6/8/2016 13:46 +10440886,Popcorntime is dead,http://status.popcorntime.io/,37,16,BatFastard,10/23/2015 19:47 +10419726,Ask HN: So two tiny and speedy browsers today. which?,,1,1,uptownhr,10/20/2015 15:21 +10628212,Macbook charger teardown: surprising complexity inside Apple's power adapter,http://www.righto.com/2015/11/macbook-charger-teardown-surprising.html,556,315,robin_reala,11/25/2015 17:15 +10743551,ISIS Twitter Accounts Run from British Government IP Addresses,http://www.haktuts.in/2015/12/isis-twitter-accounts-run-from-british-Government-IP-Addresses.html,3,1,kalilinux,12/16/2015 11:20 +11929331,Recognizing Bad Advice,http://themacro.com/articles/2016/06/startup-school-radio-48/,76,5,craigcannon,6/18/2016 16:43 +11931157,StartSSL vs. Let's encrypt,http://pastebin.com/GbsBB3My,3,2,darklajid,6/18/2016 23:50 +10627316,Venmo Scammers Know Something You Dont,http://www.slate.com/articles/business/moneybox/2015/09/venmo_scam_and_fraud_why_it_s_easy_to_get_ripped_off_through_the_mobile.html,2,1,daegloe,11/25/2015 14:32 +11751776,India is set to launch a scale model of a reusable spacecraft on Monday,http://www.bloomberg.com/news/articles/2016-05-22/modi-s-mini-shuttle-set-to-blast-into-elon-musk-s-race-for-space,147,53,adventured,5/23/2016 4:00 +10244254,Facebook has collected your web browsing habits to target you with ads,http://mashable.com/2015/09/19/facebook-advertisers-likes,2,1,jgalt212,9/19/2015 13:40 +11161119,Cash: a cross-platform implementation of Unix shell commands in JavaScript,http://github.com/dthree/cash/#,173,71,dc2,2/23/2016 18:35 +10709469,"The more bits you use, the more you pay: Comcast CEO justifies data caps",http://arstechnica.com/business/2015/12/the-more-bits-you-use-the-more-you-pay-comcast-ceo-explains-data-caps/,1,1,mengjiang,12/10/2015 8:03 +10610696,HTTP Live Streaming in JavaScript,https://blog.peer5.com/http-live-streaming-in-javascript/,141,32,shacharz,11/22/2015 17:27 +10528757,The Uberization of Money,http://www.wsj.com/articles/the-uberization-of-finance-1446835102?mod=trending_now_2,4,2,prostoalex,11/8/2015 15:41 +11084032,Synthetic Chemistry: The Rise of the Algorithms (2012),http://blogs.sciencemag.org/pipeline/archives/2012/07/31/synthetic_chemistry_the_rise_of_the_algorithms,38,4,nabla9,2/11/2016 23:03 +11653698,Tell HN: Recruitment ads for TheMuse every other week gives negative impression,,3,1,mynewtb,5/8/2016 12:12 +12138138,Why you should avoid TFS version control,https://devblog.dymel.pl/2016/07/21/why-you-should-not-use-tfs/,2,1,mdymel,7/21/2016 16:50 +10824669,10 Most Recommended JavaScript Scene Articles of 2015,https://medium.com/javascript-scene/10-most-recommended-javascript-scene-articles-of-2015-292be655d6cc,3,1,ericelliott,1/2/2016 2:28 +10215458,Billion Dollar Startup Pitch Decks,https://www.cbinsights.com/blog/billion-dollar-startup-pitch-decks/,8,1,jedberg,9/14/2015 15:15 +10917089,Inside the Eye: Nature's Most Exquisite Creation,http://ngm.nationalgeographic.com/2016/02/evolution-of-eyes-text,66,7,fitzwatermellow,1/16/2016 22:10 +10977077,"Artists, Developers, Entrepreneurs",http://sendachi.com/join-us,2,1,albertsendachi,1/26/2016 23:29 +12370245,What Slack might learn from its Open Source alternative,https://www.mattermost.org/what-slack-might-learn-from-its-open-source-alternative/,219,94,caio1982,8/27/2016 0:28 +11018456,How to Build a TimesMachine,http://open.blogs.nytimes.com/2016/02/01/how-to-build-a-timesmachine/?ref=technology,36,12,hvo,2/2/2016 9:29 +12340794,Show HN: Vitality A reminder of life with each new tab,https://chrome.google.com/webstore/detail/vitality/ofnbjjlogningakpjgphhiidgkbjgcch,5,1,aeto,8/23/2016 1:48 +10620147,Garden path sentence,https://en.wikipedia.org/wiki/Garden_path_sentence#Examples,1,1,Syrup-tan,11/24/2015 11:10 +12002689,Building Serverless Apps with Webtask.io,https://auth0.com/blog/2016/06/28/building-serverless-apps-with-webtask/,24,8,edtechdev,6/29/2016 16:23 +11232426,Netflix attacks VPNs,http://teaz.me/netflix-attacks-vpns/,2,1,teaneedz,3/6/2016 4:02 +12162882,Why most clients will not get a scalable server for just $100,https://medium.com/@p0larboy/why-most-clients-will-not-get-a-scalable-server-for-just-100-299d3b3003bf#.eq6ji7fdy,6,2,p0larboy,7/26/2016 1:50 +11356173,MathBox2 does Algebra and Fourier Analysis,https://acko.net/files/gltalks/toolsforthought/,11,1,mpalme,3/24/2016 20:32 +10726453,"Accelerate your Instagram for more targeted likes, comments and follows",http://www.instagress.com,1,1,mkaroumi,12/13/2015 14:48 +11136877,Uber CEO Travis Kalanick Says Company Is Profitable in U.S,http://techcrunch.com/2016/02/18/uber-ceo-travis-kalanick-says-company-is-profitable-in-u-s/,1,1,azanar,2/19/2016 21:44 +11026117,Popcorn Time makes a comeback with new open source Web version,http://thenextweb.com/insider/2016/02/03/popcorn-time-makes-a-comeback-with-new-open-source-web-version/,3,1,bndr,2/3/2016 12:39 +10990322,Dell XPS 15 review: A bigger version of the best PC laptop,http://arstechnica.com/gadgets/2016/01/dell-xps-15-review-a-bigger-version-of-the-best-pc-laptop/,53,132,ingve,1/28/2016 18:56 +11550474,China shuts Apple's film and book services,http://www.bbc.com/news/technology-36110425,2,1,tommoor,4/22/2016 16:45 +11922261,Ask HN: Brexit Should I vote in or out?,,2,8,vain,6/17/2016 12:42 +10595255,Scientists Grow Human Vocal Cords in the Lab,http://www.buzzfeed.com/danvergano/scientists-grow-human-vocal-cords,7,2,adventured,11/19/2015 15:29 +11030042,Ask HN: Do you use an alternative keyboard layout like Dvorak?,,8,7,cranium,2/3/2016 21:48 +11082299,"Airbnb allegedly purged more than 1,000 New York listings to rig survey",http://www.theguardian.com/technology/2016/feb/10/airbnb-new-york-city-listings-purge-multiple-apartment-listings,7,1,jflowers45,2/11/2016 19:07 +10253395,Ask HN: Templates for startup legal agreements,,1,1,pravint,9/21/2015 16:34 +11211344,Show HN: Sensible Bash: An attempt at saner Bash defaults,https://github.com/mrzool/bash-sensible,173,70,mrzool,3/2/2016 17:20 +10268525,Tinnitus Remedy: How to Stop Ringing in the Ears,http://health.learninginfo.org/tinnitus.htm,6,7,monort,9/23/2015 21:54 +10306494,Ive Looked at Airbnb and Its Way Worse Than You Think,https://medium.com/@sfhousingrightscommittee/an-open-letter-to-airbnb-emey-about-housing-and-prop-f-8d1bfb84356,17,3,justizin,9/30/2015 19:34 +12128968,Ask HN: How would you improve Twitter?,,4,6,lj3,7/20/2016 13:51 +11851648,Lua 5.3.3 released,https://www.lua.org/home.html,32,1,ewmailing,6/7/2016 0:51 +10641693,Holberton Wants to Be a Different Kind of Coding School,http://techcrunch.com/2015/11/27/holberton-wants-to-be-a-different-kind-of-coding-school/?hn=true,15,5,julien421,11/28/2015 17:32 +11173239,Ubuntu shows off a hybrid handset,http://www.bbc.com/news/technology-35655342,38,10,jessecred,2/25/2016 9:05 +12501665,Introducing OpenType Variable Fonts,https://medium.com/@tiro/https-medium-com-tiro-introducing-opentype-variable-fonts-12ba6cd2369,100,26,3ds,9/14/2016 22:16 +11140632,Write your own,http://www.federicopereiro.com/write/,2,2,fpereiro,2/20/2016 16:13 +11917141,New paper claims that the EmDrive doesn't violate conservation of momentum,http://scitation.aip.org/content/aip/journal/adva/6/6/10.1063/1.4953807,15,4,virgil_disgr4ce,6/16/2016 16:26 +11017941,UX: How MSN went for beauty and got it dead wrong,,1,2,danjayh,2/2/2016 6:40 +11001389,Flying a plane with flight simulator experience only,http://forumserver.twoplustwo.com/34/other-other-topics/prop-bet-can-i-land-plane-first-try-1200028/#post32862445,4,4,myztic,1/30/2016 10:30 +11233877,400Gbps: Winter of Whopping Weekend DDoS Attacks,https://blog.cloudflare.com/a-winter-of-400gbps-weekend-ddos-attacks/,109,61,riqbal,3/6/2016 14:32 +11822514,Minecraft sales top 100M,http://www.theverge.com/2016/6/2/11838036/minecraft-sales-100-million,98,81,chang2301,6/2/2016 14:05 +10915301,Show HN: A prototype app based on the StateX architecture,https://github.com/lilac/statex-demo,2,3,jdeng,1/16/2016 14:16 +11499787,Why programmers cant make any money,https://web.archive.org/web/20151221082425/https://michaelochurch.wordpress.com/2014/06/06/why-programmers-cant-make-any-money-dimensionality-and-the-eternal-haskell-tax/,5,1,shawndumas,4/14/2016 19:47 +10634774,Williams tube cathode ray tube used as computer memory,https://en.wikipedia.org/wiki/Williams_tube,57,16,silent90,11/26/2015 21:16 +11089865,How Artsy Did a Company Re-Org,https://artsy.net/article/robert-lenne-the-secret-s-to-company-re-orgs,71,6,sethbannon,2/12/2016 19:38 +10580159,Gaption launches platform to earn royalties from content and social activities,https://www.gaption.com/rewards,5,2,gaption,11/17/2015 10:12 +10354921,BAbI tasks: Task generation for testing text understanding and reasoning,https://github.com/facebook/bAbI-tasks,7,1,clessg,10/8/2015 18:30 +12510639,SolarSinter: Using Solar and Sand for 3D printing on site,http://www.markuskayser.com/work/solarsinter/,81,16,bifrost,9/15/2016 23:13 +11755390,Death zone,https://simple.wikipedia.org/wiki/Death_zone,2,1,mromanuk,5/23/2016 17:34 +10205067,Is Tech a Meritocracy?,http://istechameritocracy.com/,13,9,snake117,9/11/2015 17:40 +10635631,Statistical Modeling: The Two Cultures (2001) [pdf],http://projecteuclid.org/download/pdf_1/euclid.ss/1009213726,35,4,sonabinu,11/27/2015 2:59 +10551231,Why the Tor attack matters,http://blog.cryptographyengineering.com/2015/11/why-tor-attack-matters.html,279,58,pmh,11/12/2015 4:05 +12334270,The Elegance of Deflate,http://www.codersnotes.com/notes/elegance-of-deflate/,251,82,ingve,8/22/2016 5:19 +12458055,Live coverage of the 7:05pm launch of OSIRIS-REx asteroid sample return mission,http://www.nasa.gov/nasatv,1,1,r721,9/8/2016 22:39 +10752256,You don't need jQuery,https://github.com/oneuijs/You-Dont-Need-jQuery,2,1,andruby,12/17/2015 16:08 +11874309,Open News Digest,,3,3,ikariot,6/10/2016 4:30 +12255282,Show HN: Book for new Computer Science graduates,https://itunes.apple.com/us/book/id1139490631,2,1,hvd,8/9/2016 15:33 +10366444,The Cello Music of the Spheres: Mathematical Beauty and Symmetry,http://nautil.us/issue/29/scaling/the-cello-music-of-the-spheres,26,3,dnetesn,10/10/2015 18:36 +12285406,Show HN: I've made a spinner for Elm,http://package.elm-lang.org/packages/damienklinnert/elm-spinner/latest/,2,3,jownwayne,8/14/2016 13:00 +12037930,F.B.I. Recommends No Charges Against Hillary Clinton for Use of Personal Email,http://www.nytimes.com/2016/07/06/us/politics/hillary-clinton-fbi-email-comey.html,49,15,samsolomon,7/5/2016 17:10 +10317488,Show HN: TheJackStack An easier way to develop and deploy static sites,https://github.com/jackwreid/thejackstack,1,1,jackwreid,10/2/2015 9:20 +11436670,Building and Shipping Functional CSS,https://blog.colepeters.com/building-and-shipping-functional-css/,1,1,cjcenizal,4/6/2016 4:44 +11081042,Gravitational Waves Exist: The Story of How Scientists Finally Found Them,http://www.newyorker.com/tech/elements/gravitational-waves-exist-heres-how-scientists-finally-found-them,83,9,donohoe,2/11/2016 16:19 +12190287,Google Maps Reverts to Soviet-Era Place Names in Crimea,http://www.rferl.org/content/ukraine-crimea-google-maps-soviet-names/27888523.html,7,3,markmassie,7/29/2016 21:48 +10573485,What talent wants,https://visible.vc/blog/what-talent-wants/,6,1,workintransit,11/16/2015 9:42 +12296165,"Nvidias GeForce GTX 10-Series for Notebooks Unveiled, Launching Today",http://www.anandtech.com/show/10564/nvidias-geforce-gtx-10series-for-notebooks-unveiled-launching-today,8,1,altstar,8/16/2016 8:18 +10752795,Tesla 'corrects' claim that anyone can make a self driving car,http://www.engadget.com/2015/12/17/tesla-vs-bloomberg-over-george-hotz/,2,1,sosuke,12/17/2015 17:25 +10462223,Pentagon Memo Acknowledges 1000s of Cyber Breaches That Compromised DOD Systems,http://www.natlawreview.com/article/pentagon-s-dc3i-memo-acknowledges-thousands-cyber-breaches-compromised-dod-systems,1,1,Oatseller,10/28/2015 0:44 +10415457,The Caffeinated Lives of Bees,http://www.nytimes.com/2015/10/19/science/the-caffeinated-lives-of-bees.html?action=click&contentCollection=science®ion=rank&module=package&version=highlights&contentPlacement=1&pgtype=sectionfront,22,13,dnetesn,10/19/2015 20:24 +11330253,Reduce Technical Debt with Gradle,http://gradle.org/evaluating-devops-tools-reduce-technical-debt-with-gradle/,5,1,EmilieCJ,3/21/2016 18:08 +11190075,The Manifesto of the Futurist Programmers (1991),http://www.graficaobscura.com/future/futman.html,2,3,kenOfYugen,2/28/2016 6:17 +10487899,Please Use Slack for FOSS Projects,https://medium.com/@kumarharsh/please-use-slack-for-foss-projects-bf9d53ce3f7d#.ea6xotd8m,3,4,kumarharsh,11/1/2015 19:58 +10821869,C++ Interlude,http://talesofcpp.fusionfenix.com/post-23/interlude,33,2,ingve,1/1/2016 13:51 +12101699,Ask HN: Do Valley VC's ever lose money?,,2,1,lilcarlyung,7/15/2016 15:33 +11939859,Ask HN: How do you keep your (always online) Windows pc safe?,,1,3,jozydapozy,6/20/2016 18:05 +11703596,The MOnSter 6502,http://tubetime.us/?p=346,383,74,mmastrac,5/16/2016 0:57 +12441331,8080 Simulator for 6502,,2,1,creatr,9/7/2016 6:48 +11160542,US flying over Russia to take photos under Open Skies treaty [2014],http://www.stripes.com/news/us-flying-over-russia-to-take-photos-under-open-skies-treaty-1.315012,1,1,jonah,2/23/2016 17:27 +12429130,Ask HN: API for determining aesthetics in photos?,,2,2,jgotti92,9/5/2016 9:32 +10655098,Unnoticed leak answers and raises questions about operation Eikonal,http://electrospaces.blogspot.com/2015/11/unnoticed-leak-answers-and-raises.html,63,3,aburan28,12/1/2015 13:27 +10695909,Ask HN: I am sitting on a Gold mine. Need help,,3,2,techcorner,12/8/2015 12:04 +10651193,What we learned from building custom analytics over Amazon Redshift,https://www.alooma.com/blog/custom-analytics-amazon-redshift,53,25,itamarwe,11/30/2015 19:31 +11648286,Show HN: Easiest UTM Tags Builder,https://utmbuilder.net,17,5,shubhamjain,5/7/2016 3:41 +10334528,A Writers Haunting Trip Through the Horrors of Indonesian History,http://www.newyorker.com/books/page-turner/a-writers-haunting-trip-through-the-horrors-of-indonesian-history,17,2,Thevet,10/5/2015 20:11 +11388134,AYLIEN News API Launch,http://blog.aylien.com/post/141613472883/aylien-news-api-launch,4,1,afshinmeh,3/30/2016 9:52 +12134328,Mormon Tycoon Wants to Build Mega-Utopia in Vermont,http://www.bloomberg.com/features/2016-newvistas-mormon-utopia/,178,210,mkempe,7/21/2016 3:03 +10686552,Panic in iOS Land,http://www.mondaynote.com/2015/12/06/panic-in-ios-land/,3,1,mattkevan,12/6/2015 20:54 +12094142,Show HN: Critics Video Movie Reviews,https://critics.io/,5,1,iisbum,7/14/2016 14:35 +11026010,60+ recordings of Satie's Gymnopedie One played simultaneously,http://cookingwithsound.com/whats-even-more-beautiful-than-saties-gymnopedies/,54,17,iamben,2/3/2016 12:10 +12224654,"Jesse Willms, the Dark Lord of the Internet (2014)",http://www.theatlantic.com/magazine/archive/2014/01/the-dark-lord-of-the-internet/355726/?single_page=true,53,21,bond,8/4/2016 10:42 +11050848,More white women does not equal tech diversity,http://www.usatoday.com/story/tech/columnist/2015/02/12/women-of-color-diversity-tech-silicon-valley-nicole-sanchez/23298945/,2,5,bootload,2/7/2016 0:31 +11216484,"New Drag and Drop Voice IVR, SMS and Business Critical Email Platform",http://www.upwire.com/?hn-001,1,1,kieranhackshall,3/3/2016 12:47 +12016626,Does More Security at Airports Make Us Safer or Just Move the Targets?,http://www.nytimes.com/interactive/2016/07/01/world/airport-security-around-the-world.html,72,93,dankohn1,7/1/2016 15:05 +11803347,Ask HN: How to improve technical writing skills?,,10,5,CiPHPerCoder,5/30/2016 21:35 +12372242,Movfuscator A single-instruction C compiler,https://github.com/xoreaxeaxeax/movfuscator/blob/master/README.md,191,53,vasili111,8/27/2016 13:23 +10656047,"Mortgages, Layoffs and Bribes",http://www.bloombergview.com/articles/2015-12-01/mortgages-layoffs-and-bribes,3,1,pliny,12/1/2015 15:32 +10302118,How to Make an SVG Lava Lamp,http://codepen.io/chrisgannon/blog/how-to-make-an-svg-lava-lamp,114,34,chrisgannon,9/30/2015 6:21 +11474006,"Ahead of Google I/O, Google previews new Android N Multi-Window support",http://www.networkworld.com/article/3054585/android/ahead-of-google-io-google-previews-new-android-n-multi-window-support.html,1,1,stevep2007,4/11/2016 18:37 +12174823,No more excuses Learn to podcast this week,http://blog.officehours.io/no-more-excuses-learn-to-podcast-this-week/,2,1,karjaluoto,7/27/2016 17:33 +12303185,Are open offices actually more effective?,http://www.rexsoftware.com/open-offices-actually-effective/,1,1,oldmate,8/17/2016 8:30 +11594804,Capistrano maintainers add new dependency to promote paid service,https://github.com/capistrano/capistrano/issues/1655,60,42,yeasayer,4/29/2016 10:36 +12384295,Zuckerberg donates €500k for Italy earthquake in ad credits,http://www.siliconbeat.com/2016/08/29/facebook-ceo-mark-zuckerberg-wife-priscilla-chan-meet-pope-francis/,3,2,kurren,8/29/2016 19:01 +11846387,The Top 3 JavaScript Mistakes Youre Making Right Now (and How to Fix Them),https://blog.devmastery.com/the-top-3-javascript-mistakes-you-re-making-right-now-and-how-to-fix-them-8512369e1e00#.fgdp0dwr3,2,1,billsparks,6/6/2016 12:53 +10624163,Amazon backtracks after covering NYC subway car in Nazi symbols,http://arstechnica.com/the-multiverse/2015/11/amazon-backtracks-after-covering-nyc-subway-car-in-nazi-symbols/,2,1,astaroth360,11/24/2015 22:54 +10809714,Ask HN: Should paywall links get upvoted?,,1,4,daveloyall,12/29/2015 23:19 +12362684,Why the High Cost of Big-City Living Is Bad for Everyone,http://www.newyorker.com/business/currency/why-the-high-cost-of-big-city-living-is-bad-for-everyone,94,129,lafay,8/25/2016 21:33 +10253010,Enough with the Salts: Updates on Secure Password Schemes,https://www.nccgroup.trust/us/about-us/newsroom-and-events/blog/2015/march/enough-with-the-salts-updates-on-secure-password-schemes/,129,77,Jonhoo,9/21/2015 15:42 +11494355,The Future of Web Startups,http://paulgraham.com/webstartups.html,3,1,badboyboyce,4/14/2016 4:45 +11081232,Show HN: Ricey Cross platform system information tool,https://rubenrocha.github.io/ricey/,4,2,RADSR,2/11/2016 16:44 +10612321,Transgender children and gender dysphoria,http://www.theguardian.com/society/2015/sep/12/transgender-children-have-to-respect-who-he-is,36,53,nsgi,11/23/2015 1:18 +10662193,Argument: Static typing is better than dynamic typing in programming languages,http://en.arguman.org/static-typing-is-better-than-dynamic-typing-in-programming-languages,1,1,fatiherikli,12/2/2015 10:47 +11956814,"Blame Canada, Or, the Myth of the Shallow Talent Pool",https://medium.com/@lucyleid/blame-canada-or-the-myth-of-the-shallow-talent-pool-6d706b588054,8,3,wslh,6/22/2016 20:38 +11731777,Five things I learned from counting 900 engineers at Google I/O,http://obsessionwithregression.blogspot.com/2016/05/five-things-i-learned-from-counting-900.html,3,1,diamond_cheetah,5/19/2016 17:16 +12180274,The Man Who Invented Intelligent Traffic Control a Century Too Early,http://spectrum.ieee.org/geek-life/history/the-man-who-invented-intelligent-traffic-control-a-century-too-early,75,39,boramalper,7/28/2016 14:10 +10738086,Backend for games goes essentially free,http://www.clanofthecloud.com/,3,1,weddpros,12/15/2015 15:04 +11007037,Chemical-Induced Conversion of Amniotic Fluid Stem Cells into Pluripotent State,http://www.nature.com/mt/journal/v20/n10/full/mt2012192a.html,2,1,amelius,1/31/2016 17:20 +11075656,Show HN: Highcharts JavaScript charts in one line,https://avdaredevil.github.io/highcharts-chart/,6,1,max0563,2/10/2016 20:19 +10816800,Ask HN: Why my question about Ian death was removed from Ask HN?,,4,5,kiloreux,12/31/2015 8:19 +11792875,The fall of Salon.com,http://www.politico.com/media/story/2016/05/the-fall-of-saloncom-004551,40,11,morgante,5/28/2016 19:00 +12179098,Tarsnap outage report: 2016-07-24 10:15:19--11:40:04,https://gist.github.com/onli/4feb522c6d4088cca3e9f3fa13aa7d9e,9,5,onli,7/28/2016 8:42 +10334833,There is no God and computers will overtake humans in the next 100 years,https://uk.news.yahoo.com/stephen-hawking-no-god-computers-102114199.html,9,2,jaoued,10/5/2015 20:50 +12085844,Harmony Explained: Progress Towards a Scientific Theory of Music,https://arxiv.org/abs/1202.4212,213,148,colund,7/13/2016 13:12 +12493739,Ask HN: How do you validate business ideas before investing work,,1,2,m4nu,9/14/2016 1:50 +11610518,Patent defendants wont receive a Get out of East Texas free card,http://arstechnica.com/tech-policy/2016/04/patent-appeals-court-rejects-challenge-to-venue-rules/,2,1,chris_wot,5/2/2016 11:22 +10246161,Ask HN: What's your favorite ruby HTTP client?,,3,3,thinkingserious,9/20/2015 1:07 +11598245,"ES6, ES7, and beyond",http://v8project.blogspot.com/2016/04/es6-es7-and-beyond.html,243,73,gsathya_hn,4/29/2016 19:43 +10956982,Free SSL with Amazon's AWS Certificate Manager (ACM),https://dpron.com/ssl-with-aws-certificate-manager/,23,4,datadriven,1/23/2016 2:58 +11409720,RestCommander: Fast Parallel Async HTTP Client as a Service,https://github.com/eBay/restcommander,35,9,nikolay,4/2/2016 1:08 +12370802,Close My Tax Loophole,http://www.nytimes.com/2016/08/27/opinion/close-my-tax-loophole.html,45,82,jstreebin,8/27/2016 3:28 +11831545,Show HN: Affirm Improved error messages for Python assert statements,https://github.com/gooli/affirm,2,1,zoozla,6/3/2016 17:00 +10201535,"Travelling to work 'is work', European court rules",http://www.bbc.com/news/uk-34210002,232,135,wj,9/11/2015 1:33 +12051721,A developer's journey to create 100 games in five years,http://www.gamasutra.com/view/news/276511/A_developers_journey_to_create_100_games_in_five_years.php,83,30,Impossible,7/7/2016 19:57 +12094704,"Whitewater, a new encoding system for playing inline videos on the mobile web",https://samiare.github.io/whitewater-mobile-video/,3,1,brettbergeron,7/14/2016 15:33 +11512322,"If birds descended from dinosaurs, why are they warm-blooded? (2010)",http://www.abc.net.au/science/articles/2010/11/23/3073903.htm,53,19,networked,4/16/2016 21:29 +12479728,Why We Should Stop Grading Students on a Curve,http://www.nytimes.com/2016/09/11/opinion/sunday/why-we-should-stop-grading-students-on-a-curve.html?src=me,2,1,hvo,9/12/2016 14:03 +10396045,HITCON CTF 2015,https://ctf2015.hitcon.org/,1,1,ShaneWilton,10/15/2015 21:15 +11249107,SSH TRON,https://github.com/zachlatta/sshtron,10,1,dcschelt,3/8/2016 22:01 +12020043,Ubiquiti AirFiber Sets New World Record for Long Range Wireless Broadband,http://www.nasdaq.com/press-release/ubiquiti-airfiber-sets-new-world-record-for-long-range-wireless-broadband-20160629-00972,3,1,alternize,7/1/2016 22:06 +10837807,Why Are 20-Somethings Retiring?,http://www.bloomberg.com/news/articles/2016-01-04/yellen-s-job-puzzle-why-are-20-somethings-retiring-,57,91,breitling,1/4/2016 19:20 +11846303,NoScript is harmful and promotes Malware,https://liltinkerer.surge.sh/noscript.html,10,13,angry-hacker,6/6/2016 12:40 +10511110,Ancient DNA dispute raises questions about wheat trade in prehistoric Britain,http://www.nature.com/news/ancient-dna-dispute-raises-questions-about-wheat-trade-in-prehistoric-britain-1.18702,12,1,DrScump,11/5/2015 1:53 +10620442,A plan to make money grow on trees,http://www.theguardian.com/world/2015/nov/24/redd-papua-new-guinea-money-grow-on-trees,15,3,oska,11/24/2015 13:09 +10873471,Advanced Algebra textbooks,http://www.math.stonybrook.edu/~aknapp/download.html,129,38,efm,1/10/2016 0:06 +12461156,Stunning Videos of Evolution in Action,http://www.theatlantic.com/science/archive/2016/09/stunning-videos-of-evolution-in-action/499136/?single_page=true,6,2,sjcsjc,9/9/2016 11:31 +10294361,Agrep approximate grep for fast fuzzy string searching,https://github.com/Wikinaut/agrep,12,1,colinprince,9/29/2015 2:06 +12082699,Arrangedly Task Management Made Elegant,http://www.arrangedly.com/,1,1,ericchristopher,7/12/2016 22:28 +11368960,Shakespeare in the Bush (1966),http://www.naturalhistorymag.com/picks-from-the-past/12476/shakespeare-in-the-bush,58,4,dmurray,3/27/2016 4:57 +10751242,"The Security, Usability and Multi-Device-Problem of Messaging Apps",https://www.tazj.in/en/1450354078,57,31,tazjin,12/17/2015 13:11 +10343435,Amazing Street View Imagery of a desolated Svalbard (perfect for zombie movie),http://www.mapillary.com/map/im/t9GtlYxeWrFZRHnf0puXsg/photo,3,2,gyllen,10/7/2015 0:37 +10294729,Futuristic Laser-Razor Has Been Kickstarted,http://mashable.com/2015/09/28/skarp-razor-kickstarter/,2,1,jsnathan,9/29/2015 5:06 +10248647,FBI considers your retweets to be endorsements. Could land you in jail,http://techcrunch.com/2015/09/19/reminder-dont-retweet-isis-or-you-could-go-to-jail/,4,1,occult,9/20/2015 19:17 +12531111,Predictions from early stage bot investors,http://venturebeat.com/2016/09/16/7-predictions-from-early-stage-bot-investors/,57,12,shaunroncken,9/19/2016 13:09 +10701274,2015 to Be Hottest Year on Record,http://news.nationalgeographic.com/2015/11/151124-2015-hottest-year-record-global-warming-climate-change-science/?utm_source=Twitter&utm_medium=Social&utm_content=link_tw20151125news-hottestyear&utm_campaign=Content&sf16002700=1,3,1,cryptoz,12/9/2015 1:31 +12113273,Falcon 9 first stage has landed at LZ-1,https://twitter.com/SpaceX/status/754901995970973696,40,1,jerryhuang100,7/18/2016 4:56 +10317420,Show HN: Automated Bundle Update with Descriptive Pull Request for Ruby Projects,https://www.deppbot.com/,14,2,winstonyw,10/2/2015 9:02 +10232161,Peace App developer I cant believe I made a #1 top-paid app,https://twitter.com/marcoarment/status/644359302237548544,3,1,fahimulhaq,9/17/2015 8:04 +10332218,Apollo missions photo stream,https://www.flickr.com/photos/projectapolloarchive/,8,1,fgeorgy,10/5/2015 15:00 +10467666,Performance in Big Data Land: Every CPU cycle matters,http://eng.localytics.com/performance-in-big-data-land-every-cpu-cycle-matters-part-1/,66,50,ptothek2,10/28/2015 21:46 +12345107,Proxy (YC S16) Is Digitizing Your Presence,http://themacro.com/articles/2016/08/proxy/,25,10,stvnchn,8/23/2016 16:44 +11555863,Apply HN: Hacking Mental Health,,4,7,tcj_phx,4/23/2016 15:14 +10320842,"Proterra, an electric bus that can travel farther than a typical city bus",http://www.fastcoexist.com/3051475/meet-the-electric-bus-that-could-push-every-other-polluting-bus-off-the-road?partner=hackernews,6,4,annelise,10/2/2015 19:49 +11228388,Plain water consumption in relation to energy intake and diet quality,http://onlinelibrary.wiley.com/enhanced/doi/10.1111/jhn.12368,2,1,alok-g,3/5/2016 4:13 +12297851,What Exactly Is End-To-End Encryption?,https://medium.com/ink-different/what-exactly-is-end-to-end-encryption-d43752476e44,27,4,abgoldberg,8/16/2016 14:55 +12464179,VW engineer pleads guilty to diesel emissions scandal,http://www.detroitnews.com/story/business/autos/foreign/2016/09/09/vw-charges/90118226/,187,151,oxryly1,9/9/2016 17:14 +11781887,Goldman Sachs Dumps Numerical-Ranking System for Employees,http://www.wsj.com/articles/goldman-sachs-dumps-employee-ranking-system-1464272443,62,79,edtrudeau,5/26/2016 21:39 +11507188,"Introducing Tera, a template engine in Rust",https://blog.wearewizards.io/introducing-tera-a-template-engine-in-rust,89,21,adamnemecek,4/15/2016 19:58 +12495614,Gaia space telescope plots a billion stars,http://www.bbc.com/news/science-environment-37355154,118,26,okket,9/14/2016 10:54 +10251686,Show HN: Turn a Google Spreadsheet into an API,http://sheetsu.com,357,98,michaeloblak,9/21/2015 12:22 +10742314,Ask HN: What is the best online resource for Objective-C to Swift?,,3,2,kexari,12/16/2015 4:09 +10407083,The Psychological Case Against Tipping,http://nymag.com/scienceofus/2015/10/psychological-case-against-tipping.html,3,2,shawndumas,10/18/2015 3:13 +11525377,HackBack a DIY Guide,http://pastebin.com/raw/0SNSvyjJ,3,1,moviuro,4/19/2016 7:24 +12085211,Headphones Everywhere,http://www.newyorker.com/culture/cultural-comment/headphones-everywhere,62,99,pmcpinto,7/13/2016 10:48 +11872188,"Deis Workflow, Now Stable",https://deis.com/blog/2016/workflow-stable/,24,2,nslater,6/9/2016 20:37 +12164938,Power in the Age of the Feudal Internet,http://en.collaboratory.de/w/Power_in_the_Age_of_the_Feudal_Internet,158,62,zby,7/26/2016 11:55 +10313489,Why Fogbugz lost to Jira,http://movingfulcrum.com/why-fogbugz-lost-to-jira/,312,243,pdeva1,10/1/2015 18:35 +11209516,The smart home freak show stops here,http://www.thememo.com/2016/03/02/the-smart-home-freak-show-stops-here/,98,132,alexwoodcreates,3/2/2016 12:29 +12501232,Three by Kafka,http://www.theparisreview.org/blog/2016/09/14/three-by-kafka/,76,22,benbreen,9/14/2016 21:10 +11478467,Awesome Ruby,http://ruby.libhunt.com/,4,2,stanislavb,4/12/2016 10:54 +10494512,Object.observe withdrawn from TC39,https://mail.mozilla.org/pipermail/es-discuss/2015-November/044684.html,173,100,smasher164,11/2/2015 19:35 +10396225,SQLite 3.9.0 Released with JSON support,https://www.sqlite.org/releaselog/3_9_0.html,79,11,conductor,10/15/2015 21:44 +11103016,FFmpeg 3.0 released,https://ffmpeg.org/download.html,454,91,vivagn,2/15/2016 12:42 +12497965,Kids is the best what can happen to your career,https://medium.com/@buger/why-having-kids-is-the-best-what-can-happen-with-your-career-9264b9dba275,4,1,LeonidBugaev,9/14/2016 15:31 +10679276,Physicists Hope to Be Wrong About the Higgs Boson,http://www.wired.com/2015/11/physicists-are-desperate-to-be-wrong-about-the-higgs-boson/,51,17,qubitcoder,12/4/2015 21:28 +10653277,"In a Global Market for Hacking Talent, Argentines Stand Out",http://www.nytimes.com/2015/12/01/technology/in-a-global-market-for-hacking-talent-argentines-stand-out.html,10,2,wslh,12/1/2015 2:12 +11174815,Show HN: CuriosityStream Netflix for non-fiction,http://Curiositystream.com,129,113,MPetitt,2/25/2016 14:58 +10429240,The coming era of unlimited and free clean energy,https://www.washingtonpost.com/news/innovations/wp/2014/09/19/the-coming-era-of-unlimited-and-free-clean-energy/?tid=trending_strip_4,8,2,cryptoz,10/21/2015 22:28 +10333602,Unit-testing embedded C applications with Ceedling,http://dmitryfrank.com/blog/2015/1005_unit-testing_embedded_c_applications_with_ceedling,22,6,dimonomid,10/5/2015 18:07 +12052423,Renaming our company Dato is now Turi,http://blog.turi.com/renaming-our-company-dato-is-now-turi,5,3,ReedJessen,7/7/2016 22:16 +10511694,Ask HN: Performance benchmarks of NLP engines?,,4,1,codyguy,11/5/2015 4:57 +10814470,"In Silicon Valley Now, Its Almost Always Winner Takes All",http://www.newyorker.com/tech/elements/in-silicon-valley-now-its-almost-always-winner-takes-all?intcid=mod-latest,105,77,sew,12/30/2015 21:26 +10293084,Rephone lets you hack a cellular radio into anything,http://www.theverge.com/2015/9/27/9404303/rephone-lets-you-hack-a-cellular-radio-into-anything,52,7,chris-at,9/28/2015 20:48 +10397023,OkBuck: 10 lines config to use BUCK from Gradle,https://github.com/Piasy/OkBuck,1,1,Piasy,10/16/2015 1:39 +11009809,In Solidarity with Library Genesis and Sci-Hub,http://custodians.online/,176,25,atondwal,2/1/2016 4:39 +11386381,Change Sets for AWS CloudFormation,https://aws.amazon.com/blogs/aws/new-change-sets-for-aws-cloudformation/,45,24,wallflower,3/30/2016 1:40 +11109645,The reason why we get sick when mixing alchohol,https://news.yahoo.com/real-reason-why-mixing-different-000000936.html?nf=1,5,9,TheAuditor,2/16/2016 13:32 +12562945,The Use of Artificial Intelligence in the Artistic Creation,https://estranhosidade.wordpress.com/2016/02/20/the-automation-of-the-technical-part-of-art-the-use-of-artificial-intelligence-in-the-artistic-creation/,2,1,estranhosidade,9/23/2016 7:34 +10600897,"Passwords at NS&I (still, 2015) stored in plaintext (2013)",http://avaragado.org/2013/07/06/tumbling-through-nsi-hoops/,2,1,murkle,11/20/2015 12:48 +10622079,The Desktop is Outdated,http://lennartziburski.com/the-desktop-is-outdated,1,1,ziburski,11/24/2015 17:19 +12169610,Saturn's hexagon in motion,https://www.reddit.com/r/space/comments/4up9cw/saturns_hexagon_in_motion/,3,1,awqrre,7/26/2016 23:50 +11676978,"Play Daybreak, the 60-second daily game and predict the news",https://itunes.apple.com/us/app/daybreak-today/id1104660932?mt=8,1,1,lynncwang,5/11/2016 16:53 +10213202,XKCD I Could Care Less,http://xkcd.com/1576/,4,2,elwell,9/14/2015 0:15 +11717010,My wife has complained that OpenOffice will never print on Tuesdays (2009),https://bugs.launchpad.net/ubuntu/+source/cupsys/+bug/255161/comments/28,419,155,hardmath123,5/17/2016 20:15 +12002856,Virtual reality startup aimed at the elderly,http://www.npr.org/sections/health-shots/2016/06/29/483790504/virtual-reality-aimed-at-the-elderly-finds-new-fans,3,1,rmason,6/29/2016 16:47 +12008965,FAQ from Guccifer 2.0,https://guccifer2.wordpress.com/2016/06/30/faq/,70,92,koolba,6/30/2016 14:58 +11906063,Feds sue Seattle to keep FBI surveillance camera program secret,http://www.seattlepi.com/local/crime/article/Feds-sue-Seattle-to-keep-FBI-surveillance-camera-8107443.php?google_editors_picks=true,6,1,JumpCrisscross,6/14/2016 23:03 +11098907,Raspberry Pi httpd micro benchmark,https://gist.github.com/msoap/7060974#file-raspberry-pi-httpd-benchmark-md,8,1,mpg123,2/14/2016 16:42 +12054675,Kubernetes the Hard Way,https://github.com/kelseyhightower/kubernetes-the-hard-way,6,1,hazbo,7/8/2016 11:07 +11883279,Elon Musk provides new details on his mind blowing mission to Mars,https://www.washingtonpost.com/news/the-switch/wp/2016/06/10/elon-musk-provides-new-details-on-his-mind-blowing-mission-to-mars/,58,46,ghosh,6/11/2016 12:56 +11461172,Apply HN: RoomEase Ease and organise flat sharing,,4,5,kostas_f,4/9/2016 13:41 +12260828,Mom macro set for groff,http://www.schaffter.ca/mom/momdoc/toc.html,35,9,Tomte,8/10/2016 11:26 +11206077,Wozniak Chastises His Apple / Biggest blunder was not sharing its OS,http://www.sfgate.com/business/article/ON-TECHNOLOGY-Wozniak-Chastises-His-Apple-3024337.php,3,1,williamle8300,3/1/2016 21:10 +11603078,Experienced Programmers Use Google Frequently,http://codeahoy.com/2016/04/30/do-experienced-programmers-use-google-frequently/,291,173,perseus323,4/30/2016 19:11 +10221269,Adrian Frutiger has died,http://www.swissinfo.ch/eng/master-of-the-univers_swiss-font-legend-adrian-frutiger-dies/41659284,254,53,acdanger,9/15/2015 15:43 +10854913,Pay Off Student Loans with BrowseU,http://mypocketjingles.blogspot.com/2015/11/pay-off-student-loans-with-browseu.html,1,1,browseu,1/6/2016 23:56 +10663298,Show HN: LaTeX Boilerplates Plain-Text Document Production System,http://mrzool.cc/tex-boilerplates/,104,43,mrzool,12/2/2015 15:01 +10253968,A Zipcar a day gets stolen in SF here's how they stole mine,http://advice.interviewed.com/somebody-stole-my-zipcar/,22,22,darrennix,9/21/2015 17:57 +12368476,Show HN: Sourcegraph Chrome extension - review code on GitHub like in an IDE,https://chrome.google.com/webstore/detail/sourcegraph-for-github/dgjhfomjieaadpoljlnidmbgkdffpack,5,1,beliu,8/26/2016 18:59 +10461606,CSSgram: CSS library for Instagram filters,https://github.com/una/CSSgram,176,40,gotchange,10/27/2015 22:23 +12256750,Christoph Hellwig's case against VMware dismissed,http://lwn.net/Articles/696764/,1,1,gghh,8/9/2016 18:30 +12557777,Restoring YC's Xerox Alto day 7: experiments with disk and Ethernet emulators,http://www.righto.com/2016/09/restoring-ycs-xerox-alto-day-7.html,88,14,dwaxe,9/22/2016 16:00 +10293368,Apparatus: graphics editor and programming environment for interactive diagrams,http://aprt.us/,133,14,jarmitage,9/28/2015 21:33 +12294155,YC Tech Stacks,http://themacro.com/articles/2016/08/yc-tech-stacks/,336,99,bootload,8/15/2016 22:57 +12074401,Your MAC Address Randomization attempts are futile [pdf],http://papers.mathyvanhoef.com/asiaccs2016.pdf,5,1,ashitlerferad,7/11/2016 20:44 +12481316,"Ask HN: If you had only 10^N dollars for a cause, what would you choose and why?",,1,1,thr0waway1239,9/12/2016 16:51 +11627553,"Moores Law Running Out of Room, Tech Looks for a Successor",http://www.nytimes.com/2016/05/05/technology/moores-law-running-out-of-room-tech-looks-for-a-successor.html,54,54,ingve,5/4/2016 11:22 +10178337,What Really Killed Homejoy? It Couldn't Hold on to Its Customers,http://www.forbes.com/sites/ellenhuet/2015/07/23/what-really-killed-homejoy-it-couldnt-hold-onto-its-customers/,1,1,antimora,9/6/2015 17:37 +10224294,Easy Way to View Job Postings on HN,https://news.ycombinator.com/from?site=lever.co,1,1,mrdrozdov,9/16/2015 2:10 +11418742,FreeBSD 10.3,https://lists.freebsd.org/pipermail/freebsd-announce/2016-April/001713.html,202,101,jlgaddis,4/4/2016 1:00 +11668658,Google Announced their D-Wave 2X Quantum Computer Works (2015),http://www.popularmechanics.com/technology/gadgets/a18475/google-nasa-d-wave-quantum-computer/,63,21,ajessup,5/10/2016 16:57 +10585356,"In Wake of Paris, FCC Seeks Power to Shutter Websites",http://www.insidesources.com/in-wake-of-paris-fcc-seeks-power-to-monitor-shutter-websites/,11,5,Kinnard,11/18/2015 1:40 +12450629,"Soon, teams will define and deliver software in a VR/AR, supported by AI agents",,1,1,petermuryshkin,9/8/2016 6:03 +11625883,Craig Wright will publish extraordinary proof that he is Satoshi,http://techcrunch.com/2016/05/03/craig-wright-will-publish-extraordinary-proof-that-he-is-satoshi/,9,10,chris_overseas,5/4/2016 3:12 +10581992,Fuck you YC,,14,21,websitescenes,11/17/2015 16:14 +10418876,Adam Draper: Investors Don't Want to Hear the Word Bitcoin,http://www.coindesk.com/adam-draper-investors-bitcoin-blockchain/,1,1,davidgerard,10/20/2015 13:10 +11685615,The Personal Software Process (2000) [pdf],http://www.sei.cmu.edu/reports/00tr022.pdf,21,4,Tomte,5/12/2016 18:26 +11952927,Lenin was a mushroom,https://en.wikipedia.org/wiki/Lenin_was_a_mushroom,574,178,Smaug123,6/22/2016 11:24 +10858187,"Ask HN: How much bigger is Google than other co's Twitter, snapchat, Facebook?",,3,6,meeper16,1/7/2016 14:54 +11376818,Stop ads without adblock,https://github.com/Jermorin/adstop,3,3,azertyuiopok,3/28/2016 19:48 +10300373,Ask HN: What do you want in a text editor?,,13,23,fizzbucket,9/29/2015 22:51 +12106294,Show HN: 5 Minute Resumé of Your GitHub Contributions,https://github.com/beneills/cv,6,6,beneills,7/16/2016 13:44 +10913124,Unix Sockets for Jetty 9.4?,https://webtide.com/unix-sockets-for-jetty-9-4/,3,1,based2,1/15/2016 23:34 +10977064,Lyft Partners with Waze,http://consumerist.com/2016/01/26/lyft-partners-with-waze-in-effort-to-be-faster-more-efficient-than-the-competition/,2,1,ktamura,1/26/2016 23:27 +10177077,The Hitler at Home stories of the pre-WWII American press,http://www.atlasobscura.com/articles/the-american-medias-awkward-fawning-over-hitlers-taste-in-home-decor,75,75,aaronbrethorst,9/6/2015 8:05 +10745477,Erlang/OTP 18.2 has been released,http://www.erlang.org/news/97,7,1,jparise,12/16/2015 16:51 +10337345,Safe Harbour Declared Invalid in Europe: Tech Giants' Data-Sharing Under Threat,http://www.forbes.com/sites/emmawoollacott/2015/09/23/safe-harbour-declared-invalid-in-europe-tech-giants-data-sharing-under-threat/,2,1,Quanttek,10/6/2015 8:02 +10824209,Ask HN: What book changed your life in 2015?,,2,1,michalu,1/1/2016 23:56 +12305598,"With Windows 10, Microsoft Disregards User Choice and Privacy",https://www.eff.org/deeplinks/2016/08/windows-10-microsoft-blatantly-disregards-user-choice-and-privacy-deep-dive,465,398,DiabloD3,8/17/2016 15:53 +11039424,Is AI an existential threat to humanity? answers by prominent AI researchers,https://www.quora.com/Is-AI-an-existential-threat-to-humanity?share=1,3,1,dskrvk,2/5/2016 4:25 +10818808,Try diffoscope online: one of the tools behind reproducible builds,https://try.diffoscope.org/,28,3,r0muald,12/31/2015 18:15 +12353704,Microsoft's Open Management Infrastructure for Linux Now on GitHub,https://github.com/Microsoft/omi,3,1,moby,8/24/2016 17:33 +11175290,How Did Slack Grow So Fast?,https://www.leadboxer.com/blog/how-did-slack-grow-so-fast/,5,2,alexkehr,2/25/2016 16:06 +10779053,Ask HN: How to get involved with AI as a non-AI programmer?,,30,8,hndatapagan,12/22/2015 17:38 +10511885,It Turns Out Cancer Can Be Killed After All,https://medium.com/@jeffwitzeman/so-it-turns-out-cancer-can-be-killed-after-all-32764ac8d6db,7,2,bagelicious,11/5/2015 6:06 +10408563,War on talent,http://www.ft.com/intl/cms/s/0/c53a9282-735e-11e5-bdb1-e6e4767162cc.html,4,2,nobsyo,10/18/2015 16:00 +12075493,A hot potato game for Slack,https://hot-potato-slack.herokuapp.com,4,1,RoyalGecko,7/11/2016 23:07 +12105656,.NET Core Roadmap,https://blogs.msdn.microsoft.com/dotnet/2016/07/15/net-core-roadmap/,4,1,edvbld,7/16/2016 8:08 +10626681,Real-time cinematic graphics,https://uberact.com/blog/2015/11/24/real-time-cinematic-motion-graphics,1,1,barcoder,11/25/2015 11:38 +10501861,Five Algorithms Every Web Developer Can Use and Understand,https://www.gitbook.com/book/lizrush/algorithms-for-webdevs-ebook/details,3,1,mkiser,11/3/2015 19:21 +12277834,Needle A modular framework to streamline security assessments of iOS apps,http://seclist.us/needle-is-an-open-source-modular-framework-to-streamline-the-process-of-conducting-security-assessments-of-ios-apps.html,27,2,jhon-wu,8/12/2016 18:42 +11391329,Ethereum Solidity Available in Microsoft Visual Studio [pdf],http://consensys.net/static/MSVS.pdf,95,30,ConsenSys,3/30/2016 17:44 +12054424,Vulners Vulnerability Data Base,https://vulners.com,58,8,vkorsunov,7/8/2016 9:33 +12310032,All Olympic gold medal winners in the 100m sprint compared in one race,http://interaktiv.tagesanzeiger.ch/2016/100meter/en/,183,94,andrewfromx,8/18/2016 2:25 +10551059,Founder of Simple Warns Silicon Valley Pals: Dont Ruin Portland,http://www.wweek.com/2015/11/11/tech-entrepreneur-alex-payne-warns-his-silicon-valley-pals-dont-ruin-portland/,2,1,kareemm,11/12/2015 3:08 +11580709,How to use conditions to dynamically manipulate images,http://cloudinary.com/blog/how_to_use_conditions_to_dynamically_manipulate_images,4,1,nadavs,4/27/2016 14:29 +12301012,Univision is buying Gawker Media for $135M,http://www.recode.net/2016/8/16/12504008/univision-is-buying-gawker-media-for-135-million,11,1,ssclafani,8/16/2016 22:11 +11925900,"140M Streaming, Geovized Tweets = Data Geeks Dream",http://www.mapd.com/blog/2016/06/17/our-latest-tweetmap-innovation-streaming-content/?utm_source=hacker%20news&utm_medium=social&utm_content=160617%20blog%20live%20tweetmap&utm_campaign=blog%20post,4,1,jtsymonds,6/17/2016 22:16 +12284503,"Read to know How to implement a singleton pattern in C#, on mantratocode.com",http://www.mantratocode.com/pattern/how-to-implement-a-singleton-pattern-in-c/,2,1,sagarsonawane,8/14/2016 6:28 +12415786,Were winding down Starfighter,https://twitter.com/tqbf/status/771533037666390017,112,32,j_s,9/2/2016 19:51 +11295944,New Photoshop UI has become a major problem on the official feedback forum,https://feedback.photoshop.com/photoshop_family/topics/adobe-just-ruined-the-photoshop-cc-user-interface?topic-reply-list[settings][filter_by]=all,44,60,vladdanilov,3/16/2016 9:10 +12067422,Robbers Are Using Pokémon Go to Target Victims,http://www.slate.com/blogs/the_slatest/2016/07/10/criminal_are_using_pok_mon_go_to_target_victims.html,3,3,my_first_acct,7/10/2016 21:50 +10234071,Top Colleges Doing the Most for Low-Income Students,http://www.nytimes.com/interactive/2015/09/17/upshot/top-colleges-doing-the-most-for-low-income-students.html,7,5,Amorymeltzer,9/17/2015 15:56 +11215642,Ola and Uber Launch Bike Taxi Services in Bengaluru India,http://gadgets.ndtv.com/apps/news/ola-and-uber-announce-bike-taxis-pilot-in-bengaluru-809332,1,1,itprofessional4,3/3/2016 8:22 +11650369,Facebook is trying to build AI algorithms that can help build AI algorithms,https://www.wired.com/2016/05/facebook-trying-create-ai-can-create-ai/,94,20,frostmatthew,5/7/2016 17:09 +10763471,Literate SQL,https://modern-sql.com/use-case/literate-sql,68,36,based2,12/19/2015 13:12 +10297707,Twitter Plans to Go Beyond Its 140-Character Limit,http://recode.net/2015/09/29/twitter-plans-to-go-beyond-its-140-character-limit/,43,22,coloneltcb,9/29/2015 17:07 +11077103,How Repulsive: On the merits of disturbing literature,http://www.theparisreview.org/blog/2016/02/10/how-repulsive/,46,15,samclemens,2/10/2016 23:35 +10637489,Fixing Education with Technology,,4,9,CaiGengYang,11/27/2015 14:42 +10667725,How to do customer development?,,1,1,aml183,12/3/2015 4:18 +10813343,Why arent app permissions reflected in app classifications?,https://medium.com/@PuzzleBoss/why-aren-t-app-permissions-reflected-in-app-classifications-44f27ff7d651,56,27,benologist,12/30/2015 18:09 +11297779,The law is clear: FBI can't make Apple rewriter its OS,https://medium.com/@scrawford/the-law-is-clear-the-fbi-cannot-make-apple-rewrite-its-os-9ae60c3bbc7b#.1n6t5ebl0,3,2,steven,3/16/2016 14:53 +10795309,The power of Luthers printing press,https://www.washingtonpost.com/opinions/the-power-of-luthers-printing-press/2015/12/18/a74da424-743c-11e5-8d93-0af317ed58c9_story.html,34,7,allthebest,12/26/2015 21:03 +12109488,Tesla working on Autopilot radar changes after crash,http://phys.org/news/2016-07-tesla-autopilot-radar.html,5,2,vadmeste,7/17/2016 8:40 +12530659,"I quit my job, bought an army truck, and spent 19 months circumnavigating Africa",http://imgur.com/gallery/bSOKf,485,248,lornemalvo,9/19/2016 12:03 +11215064,Awesome-GitHub: Better use GitHub,https://github.com/AntBranch/awesome-github,3,3,flyicarus,3/3/2016 4:42 +11893368,Twilio S-1 Amendment,http://www.sec.gov/Archives/edgar/data/1447669/000104746916013776/a2228886zs-1a.htm,147,45,coloneltcb,6/13/2016 12:59 +11542237,Product Hunt for Mac,https://www.producthunt.com/apps/mac,1,1,stephenr,4/21/2016 14:10 +12333895,Go and Save Productivity Tools,http://www.krten.com/~rk/coding/gosave.html,1,1,Ivoah,8/22/2016 3:20 +11578709,Where are the best bank holiday Monday deals on the high street and online?,,1,1,JulieFrank,4/27/2016 8:42 +12228954,"Why Marissa Mayer's 130-Hour Work Week Idea Is Completely, Totally Wrong",http://www.inc.com/john-brandon/why-marissa-mayers-130-hour-work-week-idea-is-completely-totally-wrong.html,17,9,jrs235,8/4/2016 22:38 +12283614,Richard Feynman and the Connection Machine,http://longnow.org/essays/richard-feynman-connection-machine/,225,32,jonbaer,8/13/2016 23:43 +11334908,Two Explosions at Brussels Airport,http://www.bbc.com/news/world-europe-35869254,175,66,hccampos,3/22/2016 7:27 +10724991,Apktool A tool for reverse engineering Android apk files,https://ibotpeaches.github.io/Apktool/,85,14,johninsfo,12/13/2015 1:19 +10694182,Sssgen: Make static websites simple again,https://ehuber.info/blog/why-sssgen.html,59,34,edmundhuber,12/8/2015 1:30 +12420487,Ask HN: Parents how do you limit your kids time playing the computer?,,1,1,omilu,9/3/2016 18:45 +10559357,Microsoft Open Sources Distributed Machine Learning Toolkit,http://www.dmtk.io/index.html,129,15,kostandin_k,11/13/2015 12:04 +11320292,My conversation on secrecy with a Super Spook,http://blog.nuclearsecrecy.com/2016/03/18/conversation-with-a-super-spook/,4,1,archgoon,3/19/2016 20:31 +10533198,Man tells devastating story of his dad's death at an Airbnb,http://mashable.com/2015/11/08/airbnb-death/?utm_cid=mash-com-fb-pete-link#5ox8xASfGZqV,9,8,zeeshanm,11/9/2015 14:34 +11992368,This Week In Servo 69,http://blog.servo.org/2016/06/27/twis-69/,212,65,simondelacourt,6/28/2016 9:01 +11759071,Ask HN: What does a region/city need to encourage startups?,,4,4,teapot01,5/24/2016 4:56 +12230689,Ask HN: How do you manage your backups?,,4,3,whyasker,8/5/2016 7:54 +12015911,Kotlin 1.0.3 Is Here,https://blog.jetbrains.com/kotlin/2016/06/kotlin-1-0-3-is-here/,43,14,belovrv,7/1/2016 13:40 +11425336,"No revolution, just basic black socks delivered to your door",https://bulkblacksocks.com,1,1,kolemcrae,4/4/2016 20:31 +10317408,Singapores radical new public transport plan,https://govinsider.asia/smart-gov/exclusive-singapores-radical-new-transport-plan/,2,1,evolve2k,10/2/2015 8:58 +10559776,Five years of Scala and counting: debunking some myths,http://manuel.bernhardt.io/2015/11/13/5-years-of-scala-and-counting-debunking-some-myths-about-the-language-and-its-environment/,250,151,logician_insa,11/13/2015 13:45 +11410972,"Show HN: Vue-Awesome (Font Awesome Component for Vue.js, Using Inline SVG)",https://justineo.github.io/vue-awesome/demo/,4,1,Justineo,4/2/2016 10:13 +11247598,Hidden motors for road bikes,http://cyclingtips.com/2015/04/hidden-motors-for-road-bikes-exist-heres-how-they-work/,179,143,soundsop,3/8/2016 19:01 +10592712,Biohackers Creating Open-Source Insulin,http://www.popsci.com/these-biohackers-are-making-open-source-insulin,190,65,pavornyoh,11/19/2015 4:17 +11229487,Btrfs is supported by ReactOS from now,https://jira.reactos.org/browse/CORE-10892,3,1,jeditobe,3/5/2016 13:47 +10967719,The Villain of CRISPR,http://www.michaeleisen.org/blog/?p=1825,227,103,texthompson,1/25/2016 15:40 +12526717,Instant.io Streaming file transfer over WebTorrent,https://instant.io/,349,67,zerognowl,9/18/2016 19:20 +11899657,A Happy Life May Not Be a Meaningful Life,http://www.scientificamerican.com/article/a-happy-life-may-not-be-a-meaningful-life/,4,2,brahmwg,6/14/2016 3:56 +11745532,Budget Home Arcade Machine,http://jsante.net/home-arcade-project,104,32,eightfold,5/21/2016 18:04 +12409485,"Microsoft cuts 3,000 jobs in smartphone division, sales",http://arstechnica.com/business/2016/07/microsoft-2850-job-cuts-windows-phone-sales-nokia/,6,2,joeyrideout,9/1/2016 23:00 +10398177,"Show HN: Relish, discover new places to eat, invite friends to join you",http://relishwith.us,2,1,jadebyfield89,10/16/2015 8:54 +10193109,Thousands overdosing on caffeine as coffee crisis sparks call for urgent action,http://www.independent.co.uk/life-style/health-and-families/health-news/thousands-overdosing-on-caffeine-as-coffee-crisis-sparks-call-for-urgent-action-10491259.html,2,2,spking,9/9/2015 18:18 +11729499,The brain is not a computer,https://aeon.co/essays/your-brain-does-not-process-information-and-it-is-not-a-computer,131,161,dkucinskas,5/19/2016 11:59 +10898401,Auto-sklearn: automatic parameter tuning,https://github.com/automl/auto-sklearn,1,1,nickhuh,1/13/2016 23:10 +10621081,Show HN: An API for where are you now?,http://pinlogic.co,7,14,cillian,11/24/2015 15:06 +11359921,Ask HN: How do computers 'know' when they've used the right encryption key?,,15,9,jc_811,3/25/2016 13:36 +12367457,"Screw Passive Income, I Want Active Income",,46,25,vi1rus,8/26/2016 16:45 +11913557,Japan student held for making Puzzle and Dragons hack,http://www.tokyoreporter.com/2016/06/16/japan-student-held-for-making-puzzle-dragons-hack/,83,47,rtpg,6/16/2016 2:33 +11896598,Show HN: TCP/UDP over sound,https://github.com/quiet/quiet-lwip,186,77,brian-armstrong,6/13/2016 19:22 +10526403,My college is forcing me to install their SSL certificate,http://security.stackexchange.com/questions/104576/my-college-is-forcing-me-to-install-their-ssl-certificate-how-to-protect-my-pri,26,2,mikegirouard,11/7/2015 22:02 +12466490,"Dell-EMC to Lay Off 3,000 US Workers After Requesting 5,000 H-1B Visas",http://wolfstreet.com/2016/09/09/dell-emc-lay-off-2000-3000-u-s-workers-after-requesting-5000-h1b-visas-green-cards-to-import-foreign-workers/,64,11,openmosix,9/9/2016 22:26 +11403152,A Victorian Flea Circus: The Smallest Show on Earth,https://mimimatthews.com/2016/03/31/a-victorian-flea-circus-the-smallest-show-on-earth/,21,4,Avawelles,4/1/2016 6:56 +10256649,"JSONlite A self-contained, serverless, zero-configuration, JSON document store",https://github.com/nodesocket/jsonlite,94,32,nodesocket,9/22/2015 4:40 +12158117,MaxCDN Joins StackPath,https://www.maxcdn.com/blog/maxcdn-joins-stackpath/,4,1,timdorr,7/25/2016 12:20 +10568672,English is not normal,https://aeon.co/essays/why-is-english-so-weirdly-different-from-other-languages,56,66,nkurz,11/15/2015 6:06 +12360446,The Olympics didnt stumble because of Millennials. It stumbled because of NBC,https://medium.com/@brentonhenry/no-bloomberg-the-olympics-didnt-stumble-because-of-millenials-it-stumbled-because-of-nbc-17435801e8,1,1,eamann,8/25/2016 16:44 +11335766,Autocomplete from Stack Overflow,https://emilschutte.com/stackoverflow-autocomplete/,672,145,monort,3/22/2016 11:44 +10425388,Show HN: WebRPC a simple alternative to REST and SOAP,https://github.com/gk-brown/WebRPC,19,13,gk_brown,10/21/2015 13:53 +11263074,Ask HN: How do you measure bug report quality?,,1,6,takmusashi,3/10/2016 22:35 +11338434,Biking to work is more expensive than I thought,https://medium.com/life-learning/the-economics-of-biking-to-work-ae0f15a36636,15,12,dontmitch,3/22/2016 17:52 +11990137,I Am Retiring at 32. Shouldve Done It Years Ago,http://danielscocco.com/i-am-retiring-at-32-shouldve-done-it-years-ago/,19,25,Envec83,6/27/2016 22:49 +10191271,High quality main reason to develop software in Poland,http://www.schibsted.pl/2015/09/high-quality-main-reason-to-develop-software-in-poland/,3,1,Sandvand,9/9/2015 13:28 +10242355,This is a scale model of the solar system like you've never seen before,Http://phys.org/news/2015-09-scale-solar-youve.html,3,1,Mz,9/18/2015 22:12 +10298005,Data Driven Product Design,http://slides.com/jandwiches/deck#/,5,1,Elof,9/29/2015 17:43 +12019376,OpenLTE: An open source 3GPP LTE implementation,https://sourceforge.net/projects/openlte/,219,64,sinak,7/1/2016 20:25 +12003570,3 SF supervisors move to put tech tax on November ballot,http://www.sfgate.com/politics/article/3-SF-Supervisors-move-to-put-tech-tax-on-November-8330876.php,24,29,ChrisBland,6/29/2016 18:26 +11681453,LispY C,https://github.com/eratosthenesia/lispc,184,44,signa11,5/12/2016 5:12 +10763260,What if we ditched CSS?,,2,6,relfor,12/19/2015 11:08 +11720558,Kanye Wests Tidal Flop,http://priceonomics.com/kanye-wests-tidal-flop/,2,2,nautical,5/18/2016 8:36 +10788952,How to increase serotonin in the human brain without drugs,http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2077351/,6,2,amelius,12/24/2015 17:48 +11885633,Russian Top Secret Hypersonic Glider Can Penetrate Any Missile Defense,http://sputniknews.com/politics/20160611/1041185729/russia-hypersonic-glider.html,1,1,arcanus,6/11/2016 22:22 +12175194,A Belch in Gym Class. Then Handcuffs and a Lawsuit,http://www.bloomberg.com/view/articles/2016-07-27/a-belch-in-gym-class-then-handcuffs-and-a-lawsuit,34,11,anonu,7/27/2016 18:09 +11533095,PVS-Studio: Static Code Analysis of UE4 (Part 1),http://coconutlizard.co.uk/blog/ue4/pvs-studio-static-code-analysis-of-ue4-part-1/,16,1,DmitryNovikov,4/20/2016 8:57 +10955660,Dotcloud Is Shutting Down on February 29,http://venturebeat.com/2016/01/22/dotcloud-the-cloud-service-that-gave-birth-to-docker-is-shutting-down-on-february-29/,97,15,HardyLeung,1/22/2016 21:15 +11779897,"Show HN: EncryptUs, usable and free email encryption",http://www.firetrust.com/products/encryptus-secure-email-encryption,3,1,mingabunga,5/26/2016 17:36 +11850096,Watch a chick develop and hatch outside of the egg,http://www.sciencealert.com/watch-a-chick-develop-and-hatch-outside-of-the-egg,1,1,e12e,6/6/2016 20:34 +12067916,The Secret Rules of the Drone War,http://www.nytimes.com/2016/07/10/opinion/sunday/the-secret-rules-of-the-drone-war.html,2,2,davidf18,7/11/2016 0:06 +11325787,Scientists use adult skin cells to regenerate functional human heart tissue,http://www.popsci.com/scientists-grow-transplantable-hearts-with-stem-cells,188,35,prostoalex,3/21/2016 2:17 +11879589,"Kasperksy Ad: Be the MAN, show the ladies your smarts",https://twitter.com/orless/status/741359220763832324,4,1,orless,6/10/2016 20:07 +11628080,Programming by poking: why MIT stopped teaching SICP,http://www.posteriorscience.net/?p=206,478,232,brunoc,5/4/2016 13:20 +10984833,Shan-Zhen: How a Small Irish Town Influenced the Mega-City Shenzhen,http://www.archdaily.com/780950/shan-zhen-the-unlikely-influence-of-a-small-irish-town-on-mega-city-shenzhen,60,15,jackgavigan,1/28/2016 0:31 +10212857,Sift a fast and powerful open source alternative to grep,http://sift-tool.org/info.html,10,5,bpierre,9/13/2015 21:31 +12164563,3 Ways to Get Open Office Benefits Without Wall Demolition,https://medium.com/@hibox/3-ways-to-get-open-office-benefits-without-wall-demolition-abed33dc6db8#.ve4509bxe,2,1,Hibox,7/26/2016 10:22 +10552490,Firefox web browser (iOS),https://itunes.apple.com/ie/app/firefox-web-browser/id989804926?mt=8,1,1,JamesBaxter,11/12/2015 11:20 +11634953,6 ways on how to build brand and brand awareness,https://brandcloud.pro/blog-en/6-simple-steps-how-to-increase-brand-awareness,1,1,BrandCloud,5/5/2016 10:20 +11035394,Pytest assert magic,http://pythontesting.net/podcast/pytest-assert-magic/,2,1,variedthoughts,2/4/2016 17:12 +11753630,Hacking AngelList: Third Party Signaling in Equity Crowdfunding,http://scholarworks.gsu.edu/cgi/viewcontent.cgi?article=1066&context=bus_admin_diss,3,1,turkeybird,5/23/2016 13:19 +11858391,Heres the thing about debt: Its not nearly as bad as everyone says it is,https://www.washingtonpost.com/posteverything/wp/2016/06/07/heres-the-thing-about-debt-its-not-nearly-as-bad-as-everyone-says-it-is/,6,2,avyfain,6/7/2016 22:10 +10657913,"The CEO Paying Everyone $70,000 Salaries Has Something to Hide",http://www.bloomberg.com/features/2015-gravity-ceo-dan-price/,118,88,whatok,12/1/2015 19:09 +10319874,The Language Strangeness Budget,http://words.steveklabnik.com/the-language-strangeness-budget,6,1,cpeterso,10/2/2015 17:18 +12404520,The king of smokers,http://www.thomas-morris.uk/the-king-of-smokers/,64,90,mrtndavid,9/1/2016 11:54 +11498874,React Native could succeed where other cross-platform frameworks have failed,http://www.networkworld.com/article/3056565/mobile-apps/facebooks-react-native-could-succeed-where-other-cross-platform-frameworks-have-failed.html#tk.twt_nww,2,1,stevep2007,4/14/2016 17:45 +10636417,How the French Revolution Created the Internet to Undo the French Revolution,https://github.com/Emblem21/janus/blob/master/README.md#the-janus-engine,2,1,emblem21,11/27/2015 8:22 +10486533,How Hospitals Coddle the Rich,http://www.nytimes.com/2015/10/26/opinion/hospitals-red-blanket-problem.html?_r=1,20,8,pavornyoh,11/1/2015 14:54 +10732449,Sweaterify,http://kosamari.github.io/sweaterify/,28,5,ingve,12/14/2015 17:35 +12332140,Fedora 25 to Run Wayland by Default,https://www.phoronix.com/scan.php?page=news_item&px=Fedora-25-Wayland-Default,60,28,XzetaU8,8/21/2016 18:44 +10576531,A new look for repositories,https://github.com/blog/2085-a-new-look-for-repositories,176,76,obilgic,11/16/2015 19:28 +11325044,"The man deficit is real, but Tinder is not the only answer (2015)",http://qz.com/495013/the-man-deficit-is-real-but-tinder-is-not-the-only-answer/,10,3,prostoalex,3/20/2016 22:40 +10466457,Hard decisions for a sustainable platform,https://blog.twitter.com/2015/hard-decisions-for-a-sustainable-platform,2,1,smacktoward,10/28/2015 18:50 +10550076,Show HN: Vesper Your World Class Personal Aide,http://www.vesper.ai,1,1,js4,11/11/2015 23:11 +11098990,We Are Hopelessly Hooked,http://www.nybooks.com/articles/2016/02/25/we-are-hopelessly-hooked/,92,51,sergeant3,2/14/2016 17:05 +11396045,This should never happen,https://github.com/search?q=This+should+never+happen&type=Code&utf8=%E2%9C%93,626,205,Rygu,3/31/2016 10:03 +12301483,Tell/ask HN: vimtutor teaches vim basics. Is there something similar for Emacs?,,8,2,mettamage,8/16/2016 23:41 +10222017,Neighborly Raises $5.5M to Transform the Municipal Debt Market,http://techcrunch.com/2015/09/15/neighborly/,1,1,snowmaker,9/15/2015 17:45 +10261911,One in Three Farms Is Using FarmLogs,http://techcrunch.com/2015/09/22/one-in-three-farms-are-using-farmlogs-to-power-their-yields-with-big-data/,198,63,rodly,9/22/2015 21:41 +10560995,"Show HN: IT Jobs (US, UK and Canada)",https://www.staticjobs.com,1,1,programmer01,11/13/2015 17:22 +12235068,Ask HN: What Is the Equivalent of These API and Protocols for Non-Browsers?,,3,3,kevindeasis,8/5/2016 19:18 +11431451,Looking for co-founder to work on new business model in sales vertical,,1,1,mykolahj,4/5/2016 15:58 +10208931,Adrian Frutiger: 1928-2015,http://graffica.info/adrian-frutiger-fallece/,1,1,citizenk,9/12/2015 18:59 +12499606,Ask HN: Stay in touch with professional friends or former colleagues,,15,27,recmend,9/14/2016 18:02 +12007706,Apple Patents Tech That Could Prevent You from Filming/Photographing at Concerts,http://pitchfork.com/news/66471-apple-patents-technology-that-could-prevent-you-from-filming-taking-photos-at-concerts/,1,2,nightcracker,6/30/2016 11:01 +11912365,Ask HN: Is Samsung becoming the new Apple?,,6,4,sixQuarks,6/15/2016 21:40 +10647364,Raspberry Pi Zero Conserve power and reduce draw to 30mA,http://www.midwesternmac.com/blogs/jeff-geerling/raspberry-pi-zero-conserve-energy,178,89,geerlingguy,11/30/2015 2:56 +10834802,[Map] Watch as the US grows over time,https://www.washingtonpost.com/blogs/govbeat/wp/2014/03/03/watch-the-united-states-grow-before-your-eyes/,4,1,skyhatch1,1/4/2016 10:28 +11611001,Student invention grows hundreds of mini-brains at once,https://spectrumnews.org/news/student-invention-grows-hundreds-of-mini-brains-at-once/,79,24,chc2149,5/2/2016 13:11 +10466567,Data in Policy Debate: What *Isn't* Gerrymandering?,http://somethingtoconsidermovement.com/something-to-consider/data-in-policy-debate-what-isnt-gerrymandering,3,1,nkurz,10/28/2015 19:08 +12202865,Ask HN: Who is hiring? (August 2016),,534,947,whoishiring,8/1/2016 15:01 +12270000,Ask HN: Examples of exceptional Git repo wikis?,,7,2,lukeHeuer,8/11/2016 17:14 +10215758,Burning Man founder: 'Black folks don't like to camp as much as white folks',http://www.theguardian.com/culture/2015/sep/04/burning-man-founder-larry-harvey-race-diversity-silicon-valley,9,3,davidgerard,9/14/2015 16:07 +10384388,Self-tiling tile set,https://en.wikipedia.org/wiki/Self-tiling_tile_set,139,21,vinchuco,10/14/2015 0:36 +11823258,Google's Magenta Creates Machine-Generated Music,https://cdn2.vox-cdn.com/uploads/chorus_asset/file/6577761/Google_-_Magenta_music_sample.0.mp3,1,1,6stringmerc,6/2/2016 15:29 +11144189,Follower is a service that grants you a real life Follower for a day,http://follower.today,6,2,achairapart,2/21/2016 12:04 +11310802,From a startup in Vietnam: Asking for feedback on our prouct,https://antbuddy.com/,3,6,anha,3/18/2016 10:03 +11188822,8Core-48GB-2TB-1Gbps-5IP for $59 a month? Am I missing something?,https://www.gorillaservers.com/dedicated_standard.php,4,1,ausjke,2/27/2016 22:38 +11145312,Popcorntime.sh site owned by MPAA to track movie pirates,https://www.reddit.com/r/PopcornTimeCE/comments/46acve/warning_popcorntimech_owned_by_mpaa_to_track/,3,1,SteveBash,2/21/2016 17:11 +10451019,Writing programs using ordinary language MIT News,http://news.mit.edu/2013/writing-programs-using-ordinary-language-0711,1,1,Immortalin,10/26/2015 12:49 +11334306,Blitzscaling,https://hbr.org/2016/04/blitzscaling,3,1,runesoerensen,3/22/2016 3:49 +12507065,Website Feedback Request,,4,8,JabariHolloway,9/15/2016 15:41 +12498982,Five Months of Kubernetes,http://danielmartins.ninja/posts/five-months-of-kubernetes.html,263,36,dreampeppers99,9/14/2016 17:01 +11136891,Google to Stop Showing Ads on Right Side of Desktop Search Results,http://searchengineland.com/google-no-ads-right-side-of-desktop-search-results-242997,6,1,sagivo,2/19/2016 21:46 +12489079,Ask HN: Should you tell the story behind your work?,,2,1,espitia,9/13/2016 15:25 +10487741,BetaFEC,https://beta.fec.gov/,108,26,Amorymeltzer,11/1/2015 19:27 +11430556,Ask HN: Disk based caching server?,,1,2,83457,4/5/2016 14:21 +10320046,Hemingway in Love,http://www.smithsonianmag.com/arts-culture/ernest-hemingway-in-love-180956617/?no-ist,36,14,ableal,10/2/2015 17:42 +11233117,"Ask HN: Modern, self-hosted software dev infrastructure",,3,1,isoos,3/6/2016 9:58 +11703018,Svalbard Global Seed Vault,https://en.wikipedia.org/wiki/Svalbard_Global_Seed_Vault,63,11,gilles_bertaux,5/15/2016 22:14 +10341625,Motorists are using video cams to avoid disputed accident claims,http://www.economist.com/news/technology-quarterly/21662646-dash-cams-small-video-cameras-film-road-ahead-are-being-used-motorists,45,55,svepuri,10/6/2015 19:24 +11293191,Walk Through the Safest Cities for Women,http://blog.mapillary.com/2016/03/08/safest-cities.html,4,1,mapneard,3/15/2016 21:34 +11959936,"Farewell to Person of Interest, one of the best shows about spy tech ever made",http://arstechnica.com/the-multiverse/2016/06/person-of-interest-left-us-with-a-fascinating-new-way-of-looking-at-ai/,2,1,tosh,6/23/2016 10:28 +10243101,Hit Charade,http://www.theatlantic.com/magazine/archive/2015/10/hit-charade/403192/hn-repost?single_page=true,312,144,tokenadult,9/19/2015 2:48 +10323701,Show HN: Codetainer A Docker container in your browser,http://github.com/codetainerapp/codetainer,42,9,jenandre,10/3/2015 12:59 +10534318,"A decade into a project to digitize U.S. immigration forms, just 1 is online",https://www.washingtonpost.com/politics/a-decade-into-a-project-to-digitize-us-immigration-forms-just-1-is-online/2015/11/08/f63360fc-830e-11e5-a7ca-6ab6ec20f839_story.html?2,2,1,aaronharnly,11/9/2015 17:21 +10739632,Where do DevOps guys hang out?,,6,12,misternyce,12/15/2015 18:55 +10679844,Hacker News Highlights,http://themacro.com/articles/2015/12/hacker-news-highlights-2/,2,1,kevin,12/4/2015 23:10 +12541630,MacOS Sierra,http://www.apple.com/macos/sierra/,56,58,clumsysmurf,9/20/2016 17:57 +11276599,Stop Using the Daylight Savings Time,https://stopdst.com/,301,153,pbkhrv,3/13/2016 7:17 +10676268,Prisoners and Hats Puzzle,https://en.wikipedia.org/wiki/Prisoners_and_hats_puzzle,1,1,vinchuco,12/4/2015 13:52 +12327982,Bag of Tricks for Efficient Text Classification,https://research.facebook.com/publications/bag-of-tricks-for-efficient-text-classification/,11,4,danso,8/20/2016 19:29 +10253157,Big Australian banks stun Bitcoin companies by closing their accounts,http://www.afr.com/technology/big-banks-cut-off-accounts-of-bitcoin-companies-in-battle-for-the-future-of-payments-20150921-gjr7hu,4,1,edward,9/21/2015 16:04 +12432464,The Plant Encyclopedia: The Global Guide to Cultivated Plants,http://jugad2.blogspot.com/2016/09/the-plant-encyclopedia-global-guide-to.html,1,3,vram22,9/5/2016 22:04 +12272583,"Vinay Gupta (Ethereum, Hexayurt) is starting a new VC that cares for founders",http://hexayurt.com/capital,15,7,Rdbartlett,8/11/2016 23:53 +12502936,"Suicide Bomibng or Drone, for it's the same, a Pakistani got killed",http://pakistanbodycount.org/,4,2,amingilani,9/15/2016 2:39 +10688201,E-Prime: English without the verb 'to be',https://en.wikipedia.org/wiki/E-Prime,221,152,thameera,12/7/2015 6:30 +11042508,Show HN: BlueOak Server Maximizes the Value of Swagger API for Node.js Devs,https://github.com/BlueOakJS/blueoak-server,6,4,seanpk8,2/5/2016 16:35 +10457257,"SixTripz 6 travel ideas, real quick",http://sixtripz.com/,1,1,travelindicator,10/27/2015 10:56 +10715344,"Show HN: mTECH, a ResearchKit app studying the effects of energy drinks",http://mtechstudy.com,6,2,sunnynagra,12/11/2015 3:51 +12308769,Equation Group Initial Impressions,https://www.cs.uic.edu/~s/musings/equation-group/,9,4,tptacek,8/17/2016 21:52 +11621403,Show HN: Sesame Lock Screen quick launches anything (learning bot and intents),https://play.google.com/store/apps/details?id=ninja.sesame.app,5,2,philwall192,5/3/2016 15:19 +11734973,What disturbed me about the Facebook meeting,https://medium.com/@glennbeck/what-disturbed-me-about-the-facebook-meeting-3bbe0b96b87f#.gkeoczfvd,9,1,rtpg,5/20/2016 0:53 +12014716,Ask HN: Is Swift mature enough for server-side use?,,10,1,filleokus,7/1/2016 9:06 +10315673,'Two new rooms found' in Tutankhamun tomb,http://www.bbc.com/news/world-middle-east-34410720,8,2,goodcanadian,10/1/2015 23:56 +10471428,Is it time for a front end pipeline as a service?,http://pipez.io/blog/1-tool-hell.html,5,1,sly010,10/29/2015 14:52 +11418065,"Netool, the pocket remote Network Engineer breaks 50% funded for cloud feature",http://netool.io/,2,1,NetoolPat,4/3/2016 22:23 +11373561,Application architectures with persistent storage,http://firstclassthoughts.co.uk/Articles/Design/ApplicationArchitecturesWithPersistentStorage.html,64,2,kbilsted,3/28/2016 10:52 +11098618,[JavaScript] to promise or to callback? This is the problem,http://loige.co/to-promise-or-to-callback-this-is-the-problem/,4,1,loige,2/14/2016 15:36 +10267989,Facebook: there are signs when someone might be dead,,4,4,hoodoof,9/23/2015 20:37 +11648110,NVIDIA Announces the GeForce GTX 1000 Series,http://anandtech.com/show/10304/nvidia-announces-the-geforce-gtx-1080-1070,408,221,paulmd,5/7/2016 2:37 +12068461,Ask HN: Is there enough video content out there today to learn cs & programming?,,3,4,Onixelen,7/11/2016 2:19 +10293964,Jeff Atwood: Learning to code is Not overrated,https://www.leaseweb.com/labs/2015/09/jeff-atwood-learning-to-code-is-not-overrated/,1,1,maus80,9/28/2015 23:58 +11396718,"Opera browser built-in ad blocking, now in beta",http://www.opera.com/blogs/desktop/2016/03/opera-built-ad-blocking-now-beta/,108,80,riqbal,3/31/2016 12:47 +11743207,Windows 10 goes full malware,https://slashdot.org/submission/5878755/windows-10-goes-full-malware,26,1,mysterypie,5/21/2016 4:28 +11212589,Show HN: My new CLI homepage,http://www.cundd.net/,3,5,cundd,3/2/2016 20:04 +11026593,Ask HN: Why does Java continue to dominate?,,7,22,augb,2/3/2016 14:33 +11854848,"FBI wants access to browser history without a warrant in terrorism, spy cases",https://www.washingtonpost.com/world/national-security/fbi-wants-access-to-internet-browser-history-without-a-warrant-in-terrorism-and-spy-cases/2016/06/06/2d257328-2c0d-11e6-9de3-6e6e7a14000c_story.html,266,145,edgall,6/7/2016 14:47 +11985120,Stop managing mail filters. Your Inbox organized by humans,https://www.formalapp.com,3,2,gkr,6/27/2016 9:56 +12452009,Don't Blame a 'Skills Gap' for Lack of Hiring in Manufacturing,http://fivethirtyeight.com/features/dont-blame-a-skills-gap-for-lack-of-hiring-in-manufacturing/,75,62,_delirium,9/8/2016 11:26 +10894031,Ask HN: What is your company's development process?,,2,2,a_lifters_life,1/13/2016 13:20 +11181455,Modified laser cutter prints 3-D objects from powder,http://news.rice.edu/2016/02/22/modified-laser-cutter-prints-3-d-objects-from-powder-2/,15,1,ph0rque,2/26/2016 14:19 +10466239,What makes good code,http://ericasadun.com/2015/10/28/what-makes-good-code/,3,2,ingve,10/28/2015 18:16 +12064491,Why have yoga teacher salaries frozen since the 90s?,,3,3,thechhaya,7/10/2016 3:45 +12550597,Ask HN: What products have you used regularly for years?,,6,5,neilsharma,9/21/2016 17:56 +10878926,ES6 is Over-Engineering JavaScript,http://designbymobi.us/341/,5,17,akamaozu,1/11/2016 5:06 +10540268,References and Borrowing,https://doc.rust-lang.org/book/references-and-borrowing.html,39,7,brudgers,11/10/2015 16:30 +12547084,Is CSS or HTML a programming language,http://naijafixer.com/webmaster/is-css-or-html-a-programming-language/msg84/?topicseen#new,3,2,abula,9/21/2016 11:15 +11737748,The Computer Language Benchmarks Game: Pidigits,http://benchmarksgame.alioth.debian.org/u64q/performance.php?test=pidigits,2,1,BooneJS,5/20/2016 13:51 +10618458,Richard Dawkins: Did Ahmed intend to get arrested for his clock?,http://www.independent.co.uk/news/people/richard-dawkins-defends-ahmed-mohamed-comments-and-dismisses-islamophobia-as-a-non-word-10515389.html,9,16,mgalka,11/24/2015 0:55 +12477493,Ask HN: What are most inherently secure OS's and why? The opposite and why?,,7,7,marmot777,9/12/2016 5:57 +10898868,"CloudFront Update HTTPS and TLS v1.1/v1.2 to the Origin, Add/Modify Headers",https://aws.amazon.com/blogs/aws/cloudfront-update-https-tls-v1-1v1-2-to-the-origin-addmodify-headers/,2,1,joedrew,1/14/2016 0:47 +11044632,Semi-Automatic Gun 95% 3D Printed,http://techcrunch.com/2016/02/03/this-semi-automatic-machine-gun-is-95-percent-3d-printed/,3,1,vskarine,2/5/2016 21:08 +10874199,Socialize Uber,http://www.thenation.com/article/socialize-uber/,2,2,chockablock,1/10/2016 4:43 +11071683,Kill Your Dependencies,http://www.mikeperham.com/2016/02/09/kill-your-dependencies/,6,2,StreamBright,2/10/2016 10:04 +11229368,Web Devs Arent Learning the Basics. Does That Matter?,https://www.futurehosting.com/blog/web-devs-arent-learning-the-basics-does-that-matter/,1,1,stemuk,3/5/2016 13:00 +10809216,A native Python IDE built for data science,https://www.yhat.com/products/rodeo,201,44,coris47,12/29/2015 21:34 +11500467,"How Toy Story 2 Got Deleted Twice, Once on Accident, Again on Purpose",http://thenextweb.com/media/2012/05/21/how-pixars-toy-story-2-was-deleted-twice-once-by-technology-and-again-for-its-own-good/,5,1,dankohn1,4/14/2016 21:26 +12538645,In defense of Apple owning the concept of a paper bag,http://www.theverge.com/2016/9/19/12981950/apple-paper-bag-elegant-simple-refined,4,1,endswapper,9/20/2016 11:27 +11039418,Voter Records for 2M Iowans Exposed on GOP Site,http://www.wsj.com/articles/voter-records-for-2-million-iowans-exposed-on-gop-site-1454602565,45,23,plorg,2/5/2016 4:24 +10450815,Fontself: the font creation tool for the 99%,https://www.kickstarter.com/projects/franzhoffman/fontself-make-your-own-fonts-in-photoshop-and-illu?ref=hn&utm_source=hackernews&utm_medium=post&utm_campaign=post_26_10_2015,13,5,joelgaleran,10/26/2015 12:07 +10728551,UK Movie Pirates Facing Shocking Prison Sentences,https://torrentfreak.com/movie-pirates-facing-shocking-prison-sentences-151213/,2,2,Gladdyu,12/13/2015 23:59 +11558625,"Bill Gates' worst decisions as CEO, according to a longtime Microsoft exec",http://www.businessinsider.com/bill-gates-worst-decisions-as-ceo-2016-4,39,33,davidst,4/24/2016 5:09 +11125896,"SF tech bro: I shouldnt have to see the pain, struggle, despair of homeless",https://www.washingtonpost.com/news/morning-mix/wp/2016/02/18/s-f-tech-bro-writes-open-letter-to-mayor-i-shouldnt-have-to-see-the-pain-struggle-and-despair-of-homeless-people/?hpid=hp_no-name_morning-mix-story-f-duplicate%3Ahomepage%2Fstory,305,499,gallerytungsten,2/18/2016 14:24 +10199232,How do I reply to a thread?,,1,6,JonFParis,9/10/2015 17:05 +10511179,Pentagon Farmed Out Its Coding to Russia,http://www.thedailybeast.com/articles/2015/11/04/pentagon-farmed-out-its-coding-to-russia.html,5,3,NN88,11/5/2015 2:11 +10831181,Ranking poems in the English canon,http://michaeldalvean.com/index.php/2016/01/03/a-poison-tree-is-the-greatest-poem-in-the-english-canon/,4,1,mdlincoln,1/3/2016 16:47 +12463847,Ask HN: Dropbox alternative with best UX?,,2,2,tnorthcutt,9/9/2016 16:41 +10888457,Cinema 3D Perspective Seat Preview Experiment,http://tympanus.net/Development/SeatPreview/,2,1,sp3n,1/12/2016 16:49 +11291403,12 Slack Bots to Superpower Your Team,https://medium.com/stats-and-bots/12-slack-bots-to-superpower-your-team-e022a9692174?source=latest---,2,1,jsgrokker,3/15/2016 17:34 +12368236,Utilizing contrived scarcity to drive demand,http://www.foxnews.com/leisure/2016/08/26/what-deal-with-food-at-tj-maxx/,1,1,jrs235,8/26/2016 18:28 +12474581,Show HN: CaliforniaBirthIndex.org look up people born in California,http://www.californiabirthindex.org,5,1,pw,9/11/2016 17:49 +11423636,"Ask HN: What are the biggest problems we should tackle, right now?",,8,12,_fabio,4/4/2016 17:23 +11943704,An interactive way of blogging about JavaScript,http://blog.klipse.tech/javascript/2016/06/20/blog-javascript.html,137,32,viebel,6/21/2016 5:37 +10197007,John McAfee for President,https://mcafee16.com/,123,48,miket,9/10/2015 9:33 +11012815,This is actually what America would look like without gerrymandering,https://www.washingtonpost.com/news/wonk/wp/2016/01/13/this-is-actually-what-america-would-look-like-without-gerrymandering/,7,2,hippich,2/1/2016 16:37 +12008024,Ways to maximize your cognitive potential,http://blogs.scientificamerican.com/guest-blog/you-can-increase-your-intelligence-5-ways-to-maximize-your-cognitive-potential/,326,146,brahmwg,6/30/2016 12:30 +12556140,The Pleasures of Eating (2009),https://www.ecoliteracy.org/article/wendell-berry-pleasures-eating,17,1,Tomte,9/22/2016 11:49 +12532993,The Tower of Programming Babel,https://medium.com/p/a5f8e680160c/referrers,1,1,philondrejack,9/19/2016 17:17 +10805494,Foursquare's Valuation Is Getting Chopped in Half,http://www.inc.com/jeff-bercovici/foursquare-down-round.html,53,33,dannylandau,12/29/2015 6:06 +11737851,Ask HN: We built a product that nobody wants. Whats next?,,12,15,mrtsepelev,5/20/2016 14:06 +10477978,"Flipboard, Once-Hot News Reader App, Flounders Amid Competition",http://www.wsj.com/articles/flipboard-once-hot-newsreader-app-flounders-amid-competition-1446075404,4,3,uptown,10/30/2015 14:26 +11653238,Ask HN: Near 100% remote development setup?,,1,1,itchynosedev,5/8/2016 8:39 +12178098,Ask HN: Unsanitized query string on donaldjtrump.com,,2,2,dkaoster,7/28/2016 3:10 +11821903,How to assign partial credit on an exam of true-false questions?,https://terrytao.wordpress.com/2016/06/01/how-to-assign-partial-credit-on-an-exam-of-true-false-questions/,169,83,one-more-minute,6/2/2016 12:26 +10642588,Holocene Calendar; a calendar with birth of civilisation as year one,https://en.wikipedia.org/wiki/Holocene_calendar,2,1,gkya,11/28/2015 21:50 +12162323,Highest-Paid CEOs Run Some of the Worst-Performing Companies,http://fortune.com/2016/07/25/ceo-pay-total-shareholder-return/,19,1,frostmatthew,7/25/2016 23:27 +12294467,"Machine-Learning Algorithm Mines Rap Lyrics, Then Writes Its Own",https://www.technologyreview.com/s/537716/machine-learning-algorithm-mines-rap-lyrics-then-writes-its-own/,6,3,ceocoder,8/15/2016 23:51 +11036813,Show HN: Slaask.com A simple customer chat tool for Slack,https://slaask.com,8,1,slaask,2/4/2016 20:13 +10899048,Suing Spammers for Fun and Profit (2004) [pdf],http://www.guanotronic.com/~serge/login.pdf,28,4,greggarious,1/14/2016 1:36 +11287473,3D XPoint Steps into the Light,http://www.eetimes.com/document.asp?doc_id=1328682,1,1,krishna2,3/15/2016 4:35 +10225278,"Reviens, Leon",http://www.bbc.com/news/world-europe-34243967,2,2,buserror,9/16/2015 8:07 +11674304,"Miller = sed, awk, cut, join, sort for CSV and tabular JSON",https://github.com/johnkerl/miller,2,1,yarapavan,5/11/2016 11:36 +11875103,HTC vive available now,http://store.steampowered.com/app/358040/,2,1,rafadc,6/10/2016 8:52 +11163438,Show HN: Polly: A templating language for Rust,https://gitlab.com/Polly-lang/Polly,47,21,Aaronepower,2/24/2016 0:05 +10311204,Zhao Bowen and Chinese Science Startups,https://foreignpolicy.com/2015/09/29/beijings-test-tube-baby-china-science-zhao-bowen-bgi-start-up-gene-mapping-dropout/,1,1,jellyksong,10/1/2015 14:06 +11293580,Your Middle-Aged Brain Is Not on the Decline,http://www.npr.org/2016/03/15/469822325/forget-about-it-your-middle-aged-brain-is-not-on-the-decline,7,2,evo_9,3/15/2016 22:40 +11426629,Tabletop Gaming Has a White Male Terrorism Problem,http://latining.tumblr.com/post/141567276944/tabletop-gaming-has-a-white-male-terrorism-problem,39,15,prawn,4/4/2016 23:32 +11575129,What Google should make instead of their OpenPGP extension,https://medium.com/@octskyward/email-is-like-a-fine-wine-2f362dc5b6e0,2,1,apo,4/26/2016 20:03 +11133070,It's a fact: Robots replace humans nearly in every professional field,http://failedevolution.blogspot.com/2015/09/its-fact-robots-replace-humans-nearly.html,1,1,nomoba,2/19/2016 12:24 +11364562,Vulnerability #319816 npm responds,http://blog.npmjs.org/post/141702881055/package-install-scripts-vulnerability,6,1,BenjaminCoe,3/26/2016 5:26 +10513295,Lytro announces light field VR video camera,http://uploadvr.com/lytro-immerge-vr-light-field-video-camera/,156,72,ryandamm,11/5/2015 14:00 +10241786,EC2Instances.info Easy Amazon EC2 Instance Comparison,http://www.ec2instances.info/,3,1,ingve,9/18/2015 20:13 +11087754,Provenance whitepaper 7 mins read version,https://medium.com/@provenancehq/building-brands-to-trust-with-the-blockchain-227436fbe40#.a2aegf4ty,4,1,jessibaker,2/12/2016 15:20 +10568705,The Birth of ZFS [video],https://www.youtube.com/watch?v=dcV2PaMTAJ4,152,58,bcantrill,11/15/2015 6:22 +10396308,Show HN: Timesweet Time tracking in pure JavaScript,http://putsjoe.github.io/,3,1,putsjoe,10/15/2015 22:04 +10304683,New Campaign to Help Surveillance Agents Quit NSA or GCHQ,http://www.wired.com/2015/09/campaign-help-surveillance-agents-quit-nsa-gchq/,176,90,jobu,9/30/2015 15:33 +12169600,Ask HN: What do it take to be a full stack developer?,,2,1,ninja_to_be,7/26/2016 23:48 +11343935,UbuntuBSD: Unix for Human Beings,http://news.softpedia.com/news/meet-ubuntubsd-unix-for-human-beings-501959.shtml,3,2,k4jh,3/23/2016 12:53 +12371508,Benchmarking State-Of-the-Art Deep Learning Software Tools,http://arxiv.org/abs/1608.07249,57,11,cerisier,8/27/2016 8:04 +10643242,Why Epicurus Matters Today,http://www.mantlethought.org/philosophy/why-epicurus-matters-today,42,20,diodorus,11/29/2015 0:49 +10233126,Show HN: Hiring? Post a bounty to crowdsource your recruiting,,1,1,osetinsky,9/17/2015 13:14 +10531111,Letter to a Young Woman in Engineering,https://medium.com/@carbonrobotics/letter-to-a-young-woman-in-engineering-600fe4479937,4,1,infinite8s,11/9/2015 2:43 +11305878,Some thoughts on when NYC last opened new subway stations,http://secondavenuesagas.com/2016/03/15/brief-note-opening-new-subway-stations/,21,23,jseliger,3/17/2016 17:21 +10384129,Judge: NYC Seizing Thousands of Cars Without Warrants Is Unconstitutional,http://www.amny.com/news/taxi-and-limousine-commission-seizing-of-cars-is-unconstitutional-federal-judge-rules-1.10911628,278,102,bane,10/13/2015 23:22 +10550043,Did the FBI Pay a University to Attack Tor Users?,https://blog.torproject.org/blog/did-fbi-pay-university-attack-tor-users,482,131,ikeboy,11/11/2015 23:05 +11037621,Artisanal Integers,http://www.neverendingbooks.org/artisanal-integers,49,31,erehweb,2/4/2016 21:58 +11843376,"Can a Neuroscientist Understand Donkey Kong, Let Alone a Brain?",http://www.theatlantic.com/science/archive/2016/06/can-neuroscience-understand-donkey-kong-let-alone-a-brain/485177/?single_page=true,5,2,tdaltonc,6/5/2016 22:02 +11980977,An audio engineer explains NPRs signature sound,http://current.org/2015/06/a-top-audio-engineer-explains-nprs-signature-sound/,392,237,adamnemecek,6/26/2016 14:40 +12271493,How I got tech support scammers infected with Locky,https://blog.kwiatkowski.fr/?q=en%2Fnode%2F30,16,1,techaddict009,8/11/2016 20:59 +10364168,DigitalOcean on-track to reach $100m ARR by end of year,http://www.bloomberg.com/news/articles/2015-10-08/cloud-computing-finally-gets-some-startups,2,1,mappingbabeljc,10/10/2015 1:57 +11368693,Show HN: Pycraft learn Python with Minecraft,,3,1,emeth,3/27/2016 3:15 +10286848,Ask HN: How do I jump from iOS dev to firmware/embedded software engineering,,2,3,jdmoreira,9/27/2015 15:36 +10464487,What Should I Know About (Insert Container Project Here),https://youtu.be/jB3pi2knSFM,2,1,metral,10/28/2015 14:04 +12017788,Ask HN: How feasible are manufacturing startups?,,1,1,cdupiton,7/1/2016 16:58 +12492829,The Most Popular Color on the Internet Is,https://www.wired.com/2016/09/popular-color-internet,1,1,starshadowx2,9/13/2016 22:39 +10785725,Court orders Google to pay $115k damages for defamatory search engine results,http://www.adelaidenow.com.au/news/south-australia/sa-court-orders-google-pay-dr-janice-duffy-115000-damages-for-defamatory-search-engine-results/news-story/6713798257490c7c36c15e393880ea44,43,45,qzervaas,12/23/2015 21:18 +10519590,Building a Game Boy Link Cable Breakout Board,http://obskyr.io/lanette/devlog/making-a-game-boy-link-cable-breakout-board/,19,7,mmastrac,11/6/2015 14:28 +11942910,Welcome to Mongolia's New Postal System: An Atlas of Random Words,http://www.npr.org/2016/06/19/482514949/welcome-to-mongolias-new-postal-system-an-atlas-of-random-words,4,4,wainstead,6/21/2016 1:32 +11745349,BeatFinder Chrome extension GitHub in description,https://chrome.google.com/webstore/detail/beatfinder/ndenpgejcjbklgdhdhimhdbfbcnbknpg,1,1,shrekie,5/21/2016 17:11 +11097514,Clojure Compilation: Parenthetical Prose to Bewildering Bytecode (2014),http://blog.ndk.io/clojure-compilation.html,93,2,turbohz,2/14/2016 7:43 +11699337,Jumio Investors and Facebook Co-Founder/ Investor in Spat,http://on.wsj.com/1TeilWK,6,1,blockchainprot,5/15/2016 3:54 +11264733,Ask HN: Selling a modestly profitable SaaS,,7,6,yourabi,3/11/2016 4:58 +11540031,Lyft's Nice-Guy Strategy Leaves It Struggling to Catch Uber,http://www.nytimes.com/reuters/2016/04/21/technology/21reuters-lyft-ubertech.html?partner=IFTTT,38,43,msoad,4/21/2016 6:21 +12058822,The Joy of Hex or Why I'm So Happy When I Program,http://terse.com/thejoy.htm,4,1,jasim,7/8/2016 21:37 +12331605,Signs That a Job Is Due to Be Automated,http://www.fastcompany.com/3062739/the-future-of-work/six-very-clear-signs-that-your-job-is-due-to-be-automated,51,38,jonbaer,8/21/2016 16:56 +12116890,Sublime Text plugin review: GitGutter,https://dbader.org/blog/sublime-text-gitgutter-review,3,1,dbader,7/18/2016 18:01 +10973526,Why Are Hundreds of Harvard Students Studying Ancient Chinese Philosophy?,http://www.theatlantic.com/education/archive/2013/10/why-are-hundreds-of-harvard-students-studying-ancient-chinese-philosophy/280356/?single_page=true,2,3,gbaygon,1/26/2016 14:35 +12094038,Why don't you provide a Windows build?,http://www.darktable.org/2015/07/why-dont-you-provide-a-windows-build/,2,3,bane,7/14/2016 14:25 +12480863,"Show HN: 1Poshword, cross-platform PowerShell client for 1Password",https://github.com/latkin/1poshword,66,15,latkin,9/12/2016 16:05 +11850770,Bitcoin now computes more hashes in 6secs than there are grains of sand on Earth,https://seebitcoin.com/2016/06/understanding-bitcoin-the-childhood-game-that-rules-the-network/,11,7,seebitcoin,6/6/2016 21:59 +11954004,Spotify Down?,https://twitter.com/SpotifyStatus/status/745618521992925184,4,1,lumannnn,6/22/2016 14:07 +11769863,Show HN: Slack Deletron A tool to delete files from your Slack team,http://www.slackdeletron.com/,1,2,drewminns,5/25/2016 14:11 +11069999,Unsafe Lead Levels in Tap Water Not Limited to Flint,http://www.nytimes.com/2016/02/09/us/regulatory-gaps-leave-unsafe-lead-levels-in-water-nationwide.html,184,141,DiabloD3,2/10/2016 0:38 +10510372,SystemML: Machine learning made easier (open source),https://developer.ibm.com/open/systemml/,97,9,neilmack,11/4/2015 22:48 +11786859,Pulsed terawatt lasers have surprising effects when shone through the air (2006),http://www.americanscientist.org/issues/feature/2006/2/filaments-of-light/99999,73,30,kungfudoi,5/27/2016 15:58 +12354896,"No, Bloomberg, the Olympics didnt stumble because of Millennials",https://medium.com/@brentonhenry/no-bloomberg-the-olympics-didnt-stumble-because-of-millenials-it-stumbled-because-of-nbc-17435801e8#.9e2thx5po,8,3,orf,8/24/2016 20:15 +10778068,"Responsive images with 'srcset', 'sizes', and Cloudinary",http://cloudinary.com/blog/responsive_images_with_srcset_sizes_and_cloudinary,7,2,nadavs,12/22/2015 15:01 +10692451,Pearl Harbor in Retrospect (1948),http://www.theatlantic.com/magazine/archive/1948/07/pearl-harbor-in-retrospect/305485/?single_page=true,7,1,Jtsummers,12/7/2015 20:30 +10894401,Show HN: Help me crowdsource a definition of Americanness,http://america.joshuasnider.com,2,2,jsnider3,1/13/2016 14:21 +12277016,World's Oldest Gold Object May Have Just Been Unearthed in Bulgaria,http://www.smithsonianmag.com/smart-news/oldest-gold-object-unearthed-bulgaria-180960093/?no-ist,60,18,ranit,8/12/2016 16:46 +11472988,Microsofts inspired new workspaces boost creativity and collaboration,https://blogs.microsoft.com/blog/2016/04/11/how-microsofts-inspired-new-workspaces-boost-creativity-and-collaboration/#sm.0001jrblqc8idcxuvm61vwh0s3h3b,3,3,protomyth,4/11/2016 16:52 +10508958,Linux Kernel Library,http://lkml.iu.edu/hypermail/linux/kernel/1511.0/01898.html,31,5,throwaway000002,11/4/2015 19:28 +10706102,What's the best database for an analyst?,https://blog.modeanalytics.com/best-database-for-analysts/,49,7,steerex,12/9/2015 19:31 +11063432,Linear Regression Proof,http://www.eggie5.com/63-linear-regression-proof,11,1,eggie5,2/9/2016 5:58 +12187851,Electoral Fraud in the 2016 Democratic Primaries,http://democracyintegrity.org/ElectoralFraud/just-doing-the-math.html,4,1,ethanhunt_,7/29/2016 16:16 +10639113,Ketrew: Keep Track of Experimental Workflows,http://seb.mondet.org/software/ketrew/doc.2.0.0/index.html,5,1,edwintorok,11/27/2015 22:24 +11501636,New research shows brain is directly connected to the immune system,https://news.virginia.edu/illimitable/discovery/theyll-have-rewrite-textbooks,199,35,Phithagoras,4/15/2016 2:15 +11767227,Ask HN: What Is the Best Way to Tune Hyper Parameters for a Deep Neural Network?,,3,1,hemapani,5/25/2016 2:16 +11696800,"The dismal science has too much junk science, says Russ Roberts",http://www.wsj.com/articles/when-all-economics-is-political-1463178093,1,1,nanis,5/14/2016 16:28 +10833008,The Evils of the `For` Loop (2009),http://graysoftinc.com/early-steps/the-evils-of-the-for-loop,6,3,taylorbuley,1/3/2016 23:02 +10347599,"Show HN: Cryptomove security via data concealment, last-line data defense",http://www.cryptomove.com,31,19,bburshteyn,10/7/2015 17:48 +11182080,How Harvey Mudd College increased the ratio of women in CS,https://backchannel.com/at-harvey-mudd-college-the-ratio-of-women-in-cs-increased-from-10-to-40-in-5-years-4bb72e909fbd#.yqq538plu,56,75,steven,2/26/2016 16:07 +11846520,Ask HN: How do I save stories on HN?,,1,4,winteriscoming,6/6/2016 13:17 +10908702,Ask HN: Website Obesity Crisis,,2,6,tmaly,1/15/2016 11:57 +11688118,New Sublime Text update,https://www.sublimetext.com/3,338,229,pyed,5/13/2016 1:52 +11110021,People who block ads are the actual targets for marketers,http://www.theguardian.com/media/2016/feb/16/ad-blocking-advertisers?CMP=Share_AndroidApp_twicca,10,2,stardotstar,2/16/2016 14:34 +12462170,Elon Musk on SpaceX failure: Engines off and no apparent heat source,http://www.bloomberg.com/news/articles/2016-09-09/elon-musk-calls-spacex-explosion-most-vexing-failure-in-14-years,16,9,rrggrr,9/9/2016 13:52 +10263936,Summary of the Amazon DynamoDB Service Disruption,https://aws.amazon.com/message/5467D2/,190,83,spew,9/23/2015 8:44 +12425877,Ask HN: Random email generator?,,2,1,franciscop,9/4/2016 18:23 +12105409,The Mystery of Urban Psychosis,http://www.theatlantic.com/health/archive/2016/07/the-enigma-of-urban-psychosis/491141/?single_page=true,58,23,wallflower,7/16/2016 6:02 +11959173,How I invented VoIP,http://www.poldon.com/2016/06/23/how-i-invented-voice-over-ip/,4,1,nick_name,6/23/2016 6:15 +12464349,When'll we see theoretical and mathematical foundation for deep learning?,https://www.quora.com/When-will-we-see-a-theoretical-background-and-mathematical-foundation-for-deep-learning-1?share=1,7,1,billconan,9/9/2016 17:32 +11054134,Mistakes Reviewers Make,https://sites.umiacs.umd.edu/elm/2016/02/01/mistakes-reviewers-make/,50,10,sjrd,2/7/2016 18:49 +11968120,Subversive-C: Abusing and Protecting Dynamic Message Dispatch [pdf],https://www.usenix.org/system/files/conference/atc16/atc16_paper-lettner.pdf,4,2,frozenice,6/24/2016 9:21 +11037182,Epic shows off editing VR while in VR (2 min vid),https://www.youtube.com/watch?v=JKO9fEjNiio,2,1,corysama,2/4/2016 20:59 +10617699,Starship Troopers: One of the Most Misunderstood Movies Ever,http://www.theatlantic.com/entertainment/archive/2013/11/-em-starship-troopers-em-one-of-the-most-misunderstood-movies-ever/281236/?single_page=true,14,6,fezz,11/23/2015 22:11 +12450218,Show HN: Mctextbin live preview editor for minecraft text formatting,https://mctextbin.gitlab.io,5,1,lasercar,9/8/2016 3:58 +11861711,Why Nests woes are typical of the smart home industry,https://www.bostonglobe.com/business/2016/06/06/why-nest-woes-are-typical-smart-home-industry/MtFn5h1v6ZvirKTpJiTyfI/story.html,6,1,tdrnd,6/8/2016 12:25 +11294164,Apple: U.S. founders would be 'appalled' by DOJ iPhone request,http://www.reuters.com/article/us-apple-encryption-idUSKCN0WH2UI,150,157,callmevlad,3/16/2016 0:44 +12258880,Inbox.com announces it will end its free email service,https://proveitwithaunittest.wordpress.com/2016/08/10/inbox-com-announces-it-will-end-its-free-email-service/,1,1,theandrewbailey,8/10/2016 1:23 +11950632,"NIST Draft: The KMAC, TupleHash, and FPH Functions [pdf]",https://www.ietf.org/mail-archive/web/saag/current/pdfxrzR9rycq3.pdf,26,13,niftich,6/22/2016 0:23 +10544943,Specific Problems with Other RNGs,http://www.pcg-random.org/other-rngs.html,36,38,nkurz,11/11/2015 5:16 +11407261,Tell HN: Comments and submissions with replies can no longer be deleted,,10,11,minimaxir,4/1/2016 18:28 +12028693,Ask HN: Tiling Window Manager for Windows?,,7,4,blue--,7/4/2016 2:57 +11426859,Organizations can now block abusive users,https://github.com/blog/2146-organizations-can-now-block-abusive-users,75,47,mparlane,4/5/2016 0:20 +10782969,'New' Python modules of 2015,http://blog.rtwilson.com/my-top-5-new-python-modules-of-2015/,591,131,ColinWright,12/23/2015 12:16 +12272544,The Ultimate Game Freak Interview With Pokemon's Creator,"http://content.time.com/time/magazine/article/0,9171,2040095,00.html",1,1,oli5679,8/11/2016 23:47 +12486363,Ask HN: Run discovery of hypermedia APIs,,1,1,imjacobclark,9/13/2016 8:10 +10388221,Things I wish someone told me when I started with Go,https://github.com/monsooncommerce/golang-tripping-hazards,11,2,mikhaill,10/14/2015 18:00 +10817239,Pod Castaway: My Search for Podcasting Fame and Fortune,http://geni.us/podcastaway,2,1,brandonuttley,12/31/2015 11:46 +10873843,Ask HN: What is your viable aka money making startup or side project idea?,,19,20,uibkend,1/10/2016 2:17 +12035877,The Urban Legend of the Government's Mind-Controlling Arcade Game,http://www.atlasobscura.com/articles/the-urban-legend-of-the-governments-mindcontrolling-arcade-game,3,2,ArtDev,7/5/2016 12:24 +11930120,Why the US never fully adopted the metric system,http://www.theatlantic.com/education/archive/2016/06/why-the-metric-system-hasnt-failed-in-the-us/487040/,28,88,miraj,6/18/2016 19:12 +11399397,Out of context game development changelogs,https://twitter.com/TheStrangeLog,3,1,setra,3/31/2016 18:28 +10772206,Facebook is a living computer nightmare,http://ascii.textfiles.com/archives/3086,8,1,brakmic,12/21/2015 17:34 +11125556,Debunking the myths about parsing JSON in Swift,http://roadfiresoftware.com/2016/02/debunking-the-myths-about-parsing-json-in-swift/,23,14,jtbrown,2/18/2016 13:30 +11624890,Ruby Bug: SecureRandom should try /dev/urandom first,https://bugs.ruby-lang.org/issues/9569,161,135,JBiserkov,5/3/2016 22:53 +11401817,iOS UIKit Dynamics demo with 11 example,https://github.com/xiaofei86/UIKitDynamics,2,1,xuyafei86,4/1/2016 0:57 +11748547,What Laibach Learned in North Korea,http://www.rollingstone.com/culture/news/cannabis-and-the-sound-of-music-what-laibach-learned-in-north-korea-20150825,1,1,Kristine1975,5/22/2016 13:46 +11945141,Australian 'Satoshi' filing hundreds of Bitcoin patents,http://theage.com.au/technology/technology-news/australian-bitcoin-founder-craig-wright-filing-for-hundreds-of-patents-related-to-blockchain-20160621-gpo6lk.html,2,2,Gatsky,6/21/2016 12:26 +10941132,Ask HN: Has anyone updated an Android app from free to having in-app purchases?,,5,1,qwer,1/20/2016 20:34 +11803812,Ask HN: Does anyone use DB normal forms in their job?,,2,3,bbcbasic,5/30/2016 23:40 +10888096,H.265/HEVC vs. H.264/AVC: 50% bit rate savings verified,http://www.bbc.co.uk/rd/blog/2016/01/h-dot-265-slash-hevc-vs-h-dot-264-slash-avc-50-percent-bit-rate-savings-verified,187,107,kungfudoi,1/12/2016 15:55 +10968306,Reverse-Engineering Google Nest Devices,http://experimental-platform.tumblr.com/post/137835649425/reverse-engineering-google-nest-devices,115,84,jelveh,1/25/2016 17:02 +11681819,Free static aplication security testing tool for open-source code,https://srcclr.com/,12,1,geromek,5/12/2016 6:52 +10363730,Ask HN: How come blogs/magazines never get accepted into YC?,,1,3,kkt262,10/9/2015 22:57 +10557211,What is character limit on a hacker news comment?,,1,3,greggarious,11/13/2015 0:28 +11927636,Europe had human zoos in 1958,http://www.theplaidzebra.com/human-zoos-one-europes-shameful-secrets-ended-50s/,12,8,babuskov,6/18/2016 8:51 +12440359,Ask HN: What compensation should a Series-A company give to an advisor,,4,5,michaeldunworth,9/7/2016 1:02 +12211108,Improvements in Firefox for Desktop and Android,https://blog.mozilla.org/blog/2016/08/02/exciting-improvements-in-firefox-for-desktop-and-android/,67,49,ehPReth,8/2/2016 16:31 +12259475,California Court Cannot Lasso Texas Resident into DVD Case,https://www.eff.org/press/releases/california-court-cannot-lasso-texas-resident-dvd-case,2,1,DiabloD3,8/10/2016 4:16 +12541750,Japans Newest Technology Innovation: Priest Delivery,http://www.nytimes.com/2016/09/23/business/international/amazon-japan-delivers-priest.html,61,31,daegloe,9/20/2016 18:08 +10550453,AWS Webinars for November 2015 Learn About New Services and Best Practices,https://aws.amazon.com/blogs/aws/aws-webinars-for-november-2015-learn-about-new-services-and-best-practices/,1,1,Oatseller,11/12/2015 0:27 +12121739,Ask HN: How did NASA make reliable software if they didn't invent unit tests?,,98,91,sebastianconcpt,7/19/2016 13:52 +10180543,An audio format for creative DJing,http://www.stems-music.com/,34,23,ahq,9/7/2015 8:22 +10296395,A React custom renderer to build user interfaces for the terminal using blessed,https://github.com/Yomguithereal/react-blessed,12,2,rouxrc,9/29/2015 14:11 +12404898,Results: Offer HN Free logo designs for open source projects,https://medium.com/@fairpixelsco/making-open-source-look-beautiful-60130f3c9456#.vddmo7o6k?hh,3,1,fairpx,9/1/2016 13:04 +10743598,Putins 2013 plea for caution in Syria,http://www.nytimes.com/2013/09/12/opinion/putin-plea-for-caution-from-russia-on-syria.html?pagewanted=all&_r=2,2,1,runarb,12/16/2015 11:34 +12102535,Ask HN: How can I become a technology consultant/contractor?,,3,2,devjuice,7/15/2016 17:27 +10537435,Support setting up solar power lights for rural villages,https://www.indiegogo.com/projects/light-up-the-lives-of-50-families-for-christmas/x/11090378#/,3,2,adamjin,11/10/2015 3:25 +12512534,Type Erasure Magic in Swift,https://realm.io/news/altconf-hector-matos-type-erasure-magic/,61,8,ulhas_sm,9/16/2016 7:50 +10574300,Anonymous declares war on Islamic State,http://www.mirror.co.uk/news/world-news/anonymous-declares-war-islamic-state-6839030,2,4,lelf,11/16/2015 13:35 +11907584,Lock-free programming for the masses,http://kcsrk.info/ocaml/multicore/2016/06/11/lock-free/,188,29,antouank,6/15/2016 6:53 +11551216,How We Use Asana to Build Products at Flatbook,https://medium.com/@Flatbook/how-we-use-asana-to-build-products-at-flatbook-ef8f63483380#.1uia0qxc3,5,1,isouweine,4/22/2016 18:12 +11429740,Legend of Zelda 3D remake,http://zelda30tribute.com/,3,1,reimertz,4/5/2016 12:17 +10319138,The Trouble with Theories of Everything,http://nautil.us/issue/29/scaling/the-trouble-with-theories-of-everything,32,12,dnetesn,10/2/2015 15:28 +10555971,The Secret to Building a Vibrant Startup Culture,https://medium.com/@edward.sweater/the-secret-to-building-a-vibrant-startup-culture-526bdb2f2d64,3,1,romanchukenator,11/12/2015 20:43 +10346828,The Building That's in Two Countries at Once,http://www.npr.org/sections/money/2012/08/09/158375183/the-building-thats-in-two-countries-at-once,1,1,iamcurious,10/7/2015 16:07 +10520597,I Am Hiring. Without Resumes or Puzzles,https://blog.leantaas.com/i-am-hiring-without-resumes-or-puzzles-2ac6f11002c0,4,1,samaysharma,11/6/2015 17:26 +11464513,Why Material Design Didn't Achieve a Grand Unification,http://www.xda-developers.com/has-material-design-achieved-the-unification-it-originally-aimed-for/,2,1,lladnar,4/10/2016 2:09 +11254755,Facebook's new front-end server design,https://code.facebook.com/posts/1711485769063510/facebook-s-new-front-end-server-design-delivers-on-performance-without-sucking-up-power/,210,43,banderon,3/9/2016 18:33 +11043503,Compiling a Static Web Site Using the C Preprocessor,http://ithare.com/compiling-a-static-web-site-using-the-c-preprocessor/,15,6,davidthib,2/5/2016 18:29 +10911466,Ask HN: Are H1-B visas more likely to be obtained by big tech companies?,,5,7,simonebrunozzi,1/15/2016 19:23 +10182272,Your Next Computer Should Be a Desktop,http://www.wsj.com/articles/your-next-computer-should-be-a-desktop-1439316558,12,9,wslh,9/7/2015 17:40 +12251553,"People Don't Fail, Processes Do",http://www.lean.org/LeanPost/Posting.cfm?LeanPostId=480,3,2,ohjeez,8/8/2016 23:37 +11602856,"Java Memory Model Examples: Good, Bad and Ugly (2007) [pdf]",http://groups.inf.ed.ac.uk/request/jmmexamples.pdf,30,7,avz,4/30/2016 18:23 +11228323,"If not Scrum, then what?",https://medium.com/@ard_adam/the-nature-of-computer-programming-7526789b3af1,4,5,aard,3/5/2016 3:46 +11861830,10 ways for Continuous Performance Evaluation and feedback,https://grosum.com/blogs-10_ways_for_Continuous_Performance_Evaluation_and_Feedback,2,1,the_bong_one,6/8/2016 12:45 +11457272,UW team stores digital images in DNA and retrieves them perfectly,http://www.washington.edu/news/2016/04/07/uw-team-stores-digital-images-in-dna-and-retrieves-them-perfectly/,11,1,MichaelAO,4/8/2016 19:36 +11740617,It should be noted and its cousins are the new wasteful phrase of the decade,https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=%22It+should+be+noted%22+site%3Aycombinator.com,1,1,hellofunk,5/20/2016 19:14 +11268049,The Future of Marijuana Is Mobile,http://www.thekindland.com/the-future-of-marijuana-is-mobile-1082,3,1,silasisonhacker,3/11/2016 17:30 +10381530,Divshot acquired by Firebase/Google,https://divshot.com/,15,3,mackmcconnell,10/13/2015 16:27 +11083550,Gender bias in open source: Pull request acceptance of women versus men [pdf],https://peerj.com/preprints/1733.pdf,3,1,malandrew,2/11/2016 21:47 +12319063,The Cuban CDN,https://blog.cloudflare.com/the-cuban-cdn/,832,136,shdon,8/19/2016 10:24 +12024593,Louis Rossmanns Repair Videos Might Get Taken Down After Legal Threat,http://ifixit.org/blog/8210/rossmann-repair-legal-threat/,93,18,sverige,7/3/2016 2:31 +12241492,Ask HN: Which blogging platform do you use?,,9,42,rajeshmr,8/7/2016 8:37 +11209513,Google's New A.I. Can Tell Exactly Where a Photo Was Taken,http://www.smithsonianmag.com/smart-news/google-new-ai-can-tell-exactly-where-photo-was-taken-180958246/?no-ist,3,3,henriquemaia,3/2/2016 12:27 +11946674,Apple launches coding camps for kids in its retail stores,https://techcrunch.com/2016/06/21/apple-launches-coding-camps-for-kids-in-its-retail-stores/,250,171,pavornyoh,6/21/2016 15:59 +10768545,Idea to prevent drinking and driving,,4,11,freeride,12/20/2015 22:26 +10516993,The Burning Man of Birding: Inside Iceland's Puffin Festival,https://www.audubon.org/magazine/november-december-2015/the-burning-man-birding-inside,21,5,nkurz,11/5/2015 23:58 +10505213,Details of UK website visits 'to be stored for year',http://www.bbc.com/news/uk-politics-34715872,238,221,eosis,11/4/2015 8:16 +11725977,Firebase,https://firebase.google.com/,2,1,taigeair,5/18/2016 21:08 +11994611,Digital Disruption in Insurance,http://pebblecode.com/blog/disruption-in-insurance/,2,1,shapeshed,6/28/2016 15:40 +10988101,The Last Honky-Tonk,http://clatl.com/atlanta/southern-comfort-the-last-local-honky-tonk/Content?oid=16858453&showFullText=true,2,1,samsolomon,1/28/2016 13:53 +12201685,The Stillbirth of the Soviet Internet,,42,8,kurrawong,8/1/2016 11:57 +11664403,LPs are feeling the pressure of startups not finding exits,http://techcrunch.com/2016/05/09/lps-are-feeling-the-pressure-of-startups-not-finding-exits/,7,5,tim_sw,5/10/2016 0:31 +12061852,The Tunguska Event,http://www.bbc.com/earth/story/20160706-in-siberia-in-1908-a-huge-explosion-came-out-of-nowhere,138,119,jackgavigan,7/9/2016 15:57 +11103274,Moving to Singapore,https://blog.ghost.org/moving-to-singapore/,23,5,Isofarro,2/15/2016 13:33 +10869665,What are the best JavaScript IDEs and editors?,http://www.slant.co/topics/1686/~javascript-ides-and-editors,4,4,robocat,1/9/2016 1:48 +10614573,The End of Dynamic Languages,http://elbenshira.com/blog/the-end-of-dynamic-languages/,72,29,elbenshira,11/23/2015 13:57 +11066952,"Openbsd router, can it run on arm?",http://securityrouter.org,15,8,asddas,2/9/2016 17:24 +11666491,Lauri Love and the potential civil law backdoor for obtaining encryption keys,http://jackofkent.com/2016/05/lauri-love-and-the-potential-civil-law-backdoor-for-obtaining-encryption-keys/,2,1,YeGoblynQueenne,5/10/2016 11:42 +12233554,Complaint about Amazon's free delivery claims upheld,https://www.asa.org.uk/Rulings/Adjudications/2016/8/Amazon-Europe-Core-Sarl/SHP_ADJ_304089.aspx#.V6S9elQrK00,2,1,DanBC,8/5/2016 16:24 +11920431,What a $347B conglomerate holding company's web site looks like,http://www.berkshirehathaway.com/,43,32,logicallee,6/17/2016 2:56 +12547107,Stanford Expert Explains Antibacterial Soap Ban,https://woods.stanford.edu/news-events/news/stanford-expert-explains-antibacterial-soap-ban,206,83,CapitalistCartr,9/21/2016 11:19 +11613876,How to #stopTrump with A/B testing,http://blog.naytev.com/test-to-stop-trump/,18,7,zackliscio,5/2/2016 18:07 +12560234,Show HN: Super Simple Worker Queue in Go,https://github.com/Xeoncross/goworkqueue,6,7,Xeoncross,9/22/2016 20:46 +11175182,Google has a new website,https://www.google.kz/?gfe_rd=cr&ei=6CLPVrTiBoTHYLqCrcgM&gws_rd=ssl,1,5,hackerfrommars,2/25/2016 15:52 +12414500,How the startup economy is replacing the traditional resume,https://techcrunch.com/2016/08/31/how-the-startup-economy-is-replacing-the-traditional-resume/,1,1,jazzdev,9/2/2016 17:06 +11081569,Ask HN: Seen my stolen truck in the Bay Area?,,8,6,gs7,2/11/2016 17:36 +10961076,Silicon Valleys $585B Problem,http://fortune.com/silicon-valley-tech-ipo-market/,7,1,prostoalex,1/24/2016 1:41 +10186013,Show HN: Should I automate this task? (Time ROI Calculator),https://mackross.net/blog/time-savings-calculator/,13,4,mackross,9/8/2015 14:52 +10247543,Show HN: Undo send mail for Apple Mail,https://github.com/lichtschlag/undosendmail/,13,1,lichtschlag,9/20/2015 14:08 +12072218,Avoiding SMS vendor lock-in with SMPP,https://danielpocock.com/avoiding-sms-vendor-lock-in-with-smpp,4,1,ashitlerferad,7/11/2016 16:33 +12103436,US Propaganda Failure on why they're arming terrorists,http://21stcenturywire.com/2016/07/14/syria-propaganda-shambles-the-us-state-department-moderate-rebel-comedy-routine/,1,1,ZainRiz,7/15/2016 20:00 +10678498,Starbucks Prospers by Keeping Pace with the Coffee Snobs,http://www.nytimes.com/2015/12/04/business/starbucks-prospers-by-keeping-pace-with-the-coffee-snobs.html,30,44,zbravo,12/4/2015 19:30 +12382222,Reabble RSS Reader for E-ink Amazon Kindle,https://reabble.com/?utm_source=ynews&utm_medium=post&utm_campaign=product,69,37,weijarz,8/29/2016 14:55 +11247013,Learn SQL on Your Company's Data For Free,https://www.teamleada.com/?ref=hn,3,1,brianliou91,3/8/2016 17:52 +10631967,Driving in the US is making a big comeback,http://www.vox.com/2015/11/25/9800614/peak-car-driving-rebound,21,38,pmcpinto,11/26/2015 8:42 +10531322,Coliving: Dorms for Grownups,http://www.theatlantic.com/business/archive/2015/11/coliving/414531/?single_page=true,80,52,kareemm,11/9/2015 4:06 +10275159,Apples assault on advertising and Google,http://calacanis.com/2015/09/24/apples-brilliant-assault-on-advertising-and-google/,44,56,tswartz,9/24/2015 22:18 +12384656,"Mark Zuckerberg meets Pope Francis in Rome, gives him miniature Facebook drone",http://uk.businessinsider.com/mark-zuckerberg-meets-pope-francis-gives-him-facebook-drone-photo-2016-8,1,1,Walkman,8/29/2016 19:42 +12437196,Consciousness Is Made of Atoms,http://nautil.us/blog/consciousness-is-made-of-atoms-too,2,3,dnetesn,9/6/2016 16:30 +10276526,Mobile phones are the greatest poverty-reducing tech EVER,http://www.theregister.co.uk/2015/09/23/mobile_phones_greatest_poverty_reducing_tech_ever/,4,1,edward,9/25/2015 5:35 +10812458,"Builders will follow Millennials, not Founders",http://www.forbes.com/sites/theopriestley/2015/12/30/why-the-next-generation-after-millennials-will-be-builders-not-founders/,3,1,stanfordnope,12/30/2015 15:42 +10576068,Zenefits launches free payroll software for small businesses,https://www.zenefits.com/payroll/?hn,187,62,henryl,11/16/2015 18:25 +10448563,Facebook Meets Skepticism in Bid to Expand Internet in India,http://www.nytimes.com/2015/10/26/technology/facebook-meets-skepticism-in-bid-to-expand-internet-in-india.html,45,21,Futurebot,10/25/2015 21:44 +11114669,Twitter censoring conservative voices,http://www.breitbart.com/tech/2016/02/16/exclusive-twitter-shadowbanning-is-real-say-inside-sources/,4,2,cpr,2/17/2016 2:06 +10300212,The Post-Amazon Challenge and the New Stack Model,http://thenewstack.io/post-amazon-challenge-new-stack-model/,3,1,fons,9/29/2015 22:21 +11436116,Pfizer to Terminate $160B Merger with Allergan,http://www.bloomberg.com/news/articles/2016-04-06/pfizer-to-terminate-160-billion-merger-with-allergan,132,83,Amorymeltzer,4/6/2016 2:15 +11525510,Best Lawyers for Credit Card Skimming Lawsuit,http://gasstationfraud.blogspot.com/2016/04/best-lawyers-for-credit-card-skimming.html,2,2,gasstationfraud,4/19/2016 7:58 +11224851,California Prisons Are Deleting Records of Social Media Censorship,https://www.eff.org/deeplinks/2016/03/california-prison-officials-are-deleting-records-inmate-social-media-censorship,49,3,DiabloD3,3/4/2016 16:34 +10225096,Why WhatsApp Only Needs 50 Engineers for Its 900M Users,http://www.wired.com/2015/09/whatsapp-serves-900-million-users-50-engineers/,337,248,ghosh,9/16/2015 7:08 +11412088,Scalable and resilient Django with Kubernetes,https://harishnarayanan.org/writing/kubernetes-django/,96,54,hnarayanan,4/2/2016 16:23 +11452944,Glance smart wall clock can save you from notifications tsunami,https://www.youtube.com/watch?v=cSO1vTeQ-Cg,8,1,nikolaii,4/8/2016 6:38 +11488703,"Ask HN: If one works over 40hrs/week, can they claim more years of experience?",,8,22,bobisme,4/13/2016 14:59 +10630565,Ask HN: Do you think self-driving cars are feasable at all?,,8,29,alexandrerond,11/25/2015 23:57 +11281659,ExoMars launch scheduled for 09:31 GMT (10:31 CET),http://www.esa.int/Our_Activities/Space_Science/ExoMars/Watch_ExoMars_launch,68,14,jpatokal,3/14/2016 8:32 +11248373,Why the poor pay more for toilet paper and just about everything else,https://www.washingtonpost.com/news/wonk/wp/2016/03/08/why-the-poor-pay-more-for-toilet-paper-and-just-about-everything-else/,125,154,e15ctr0n,3/8/2016 20:34 +12324350,Is Bandcamp the Holy Grail of Online Record Stores?,http://www.nytimes.com/2016/08/20/arts/music/bandcamp-shopping-for-music.html,195,119,joshjkim,8/20/2016 0:02 +11354886,Generalizing JSX: Delivering on the Dream of Curried Named Parameters,http://tolmasky.com/2016/03/24/generalizing-jsx/,104,28,tolmasky,3/24/2016 17:57 +10529565,ROMhacking a Japanese game for an English translation,http://www.twitch.tv/effinslowbeef/v/24639788,1,1,minimaxir,11/8/2015 19:46 +10444267,"In 1983 war scare, Soviet leadership feared nuclear surprise attack by U.S",https://www.washingtonpost.com/world/national-security/in-1983-war-scare-soviet-leadership-feared-nuclear-surprise-attack-by-us/2015/10/24/15a289b4-7904-11e5-a958-d889faf561dc_story.html,25,3,smacktoward,10/24/2015 17:38 +12426267,Warner Bros. Flags Its Own Website as a Piracy Portal,https://torrentfreak.com/warner-bros-flags-website-piracy-portal-160904/,42,2,_jomo,9/4/2016 19:31 +10899675,VLC for Apple TV Now Available on TvOS App Store,http://www.macrumors.com/2016/01/12/vlc-apple-tv-app-tvos-app-store/,2,1,shawndumas,1/14/2016 4:39 +11216885,TDD: How to use Math to get into it,http://nelsonsar.github.io/2016/02/23/How-I-practice-TDD.html,2,1,eriksencosta,3/3/2016 14:11 +10467074,"If you could have a Q&A with a tech entrepreneur, or brand, who would it be?",,2,4,bromelus2013,10/28/2015 20:16 +12052284,The war in Iraq was not a blunder or a mistake. It was a crime,https://www.theguardian.com/commentisfree/2016/jul/07/blair-chilcot-war-in-iraq-not-blunder-crime,5,1,ladydi,7/7/2016 21:48 +11401403,The World May Have Too Much Food,http://www.bloomberg.com/news/articles/2016-03-31/the-world-may-have-too-much-food,8,3,petethomas,3/31/2016 23:27 +12497795,Dumb Rules That Make Your Best People Want to Quit,http://www.inc.com/lolly-daskal/10-dumb-rules-that-make-your-best-people-want-to-quit.html,3,1,jrs235,9/14/2016 15:18 +10744301,How I Interconnected AWS VPCs with VyOS,http://tech.stylight.com/howto-interconnect-aws-vpcs-with-vyos/,7,1,romefort,12/16/2015 14:08 +12230831,Ask HN: Engineer working with rLoop needs place to crash in Bay area,,14,9,erbdex,8/5/2016 8:41 +10467442,PayPal Reports a 29% Jump in Earnings,http://www.nytimes.com/2015/10/29/technology/paypal-reports-a-29-jump-in-earnings.html,1,1,dduugg,10/28/2015 21:11 +11288030,"Encryption, Privacy Are Larger Issues Than Fighting Terrorism",http://www.npr.org/2016/03/14/470347719/encryption-and-privacy-are-larger-issues-than-fighting-terrorism-clarke-says,647,177,Osiris30,3/15/2016 7:22 +11894534,"Failsafe A lightweight, zero-dependency library for handling failures",https://github.com/jhalterman/failsafe,14,2,javinpaul,6/13/2016 15:17 +11392885,Resources on Diversity in Tech,https://modelviewculture.com/resources,4,2,zorpner,3/30/2016 20:50 +10177477,Microservices without the Servers,https://aws.amazon.com/blogs/compute/microservices-without-the-servers/,273,136,alexbilbie,9/6/2015 12:46 +10909007,Take a few easy steps to get SmartOn surveillance,https://www.mozilla.org/en-US/teach/smarton/surveillance/,2,1,tajen,1/15/2016 13:00 +11369885,Ive Seen the Greatest A.I. Minds of My Generation Destroyed by Twitter,http://www.newyorker.com/tech/elements/ive-seen-the-greatest-a-i-minds-of-my-generation-destroyed-by-twitter?intcid=mod-most-popular,119,86,jonathansizz,3/27/2016 13:29 +11282749,Peculiar pattern found in 'random' prime numbers,http://www.nature.com/news/peculiar-pattern-found-in-random-prime-numbers-1.19550,85,37,Amorymeltzer,3/14/2016 13:33 +11713100,There's No Such Thing as Free Will,http://www.theatlantic.com/magazine/archive/2016/06/theres-no-such-thing-as-free-will/480750/?single_page=true,16,11,dhimant,5/17/2016 12:44 +11181848,Mental health survey for people in startups,https://jamesroutledge.typeform.com/to/K4lCc9,1,1,jd_routledge,2/26/2016 15:32 +12028766,Ask HN: Whats the ratio of people clicking forgot my password on a login form?,,3,1,midhem,7/4/2016 3:29 +11372886,Required update to Pacman 5.0.1 before 23/04/2016,https://www.archlinux.org/news/required-update-to-pacman-501-before-2016-04-23/,6,3,Enindu,3/28/2016 5:34 +12225340,"Manual Testing, the Art That Cannot Be Lost",http://ideqa.blogspot.com/2016/08/manual-testing-art-that-cannot-be-lost.html,67,25,ideqa,8/4/2016 13:32 +10927484,Babbage Difference Engine No.2 at CHM Going Off Line,http://www.computerhistory.org/exhibits/babbage/,1,1,rootbear,1/18/2016 22:29 +10447844,"Oakland landlord who owns 3,600 properties raises $1080 rent to $3870/month",http://blog.oaklandxings.com/2015/06/lakeshore-avenue-landlord-raises-monthly-rent-from-1080-to-3870-to-force-tenants-out/,18,30,doctorshady,10/25/2015 18:44 +10933524,The Unreasonable Effectiveness of Dynamic Typing for Practical Programs,http://games.greggman.com/game/dynamic-typing-static-typing/,133,158,greggman,1/19/2016 20:02 +12061453,Prefer duplication over the wrong abstraction,http://www.sandimetz.com/blog/2016/1/20/the-wrong-abstraction?duplication,204,96,hyperpallium,7/9/2016 14:48 +10359142,Large movie distributor grabs Popcorn Time trademark,https://torrentfreak.com/large-movie-distributor-grabs-popcorn-time-trademark-151008/,1,1,janjongboom,10/9/2015 10:25 +10322389,How Much Power Does the Volkswagen TDI Lose in Cheater Mode?,http://www.tflcar.com/2015/10/how-much-power-does-the-vw-tdi-lose-in-cheater-mode-video-report/,67,46,danso,10/3/2015 2:38 +10669131,Hot code reloading with Erlang,https://medium.com/@kansi/hot-code-loading-with-erlang-and-rebar3-8252af16605b#.985ei76fw,73,29,kansi,12/3/2015 11:58 +11325653,Non-nullable types for TypeScript,https://github.com/Microsoft/TypeScript/pull/7140,185,32,muraiki,3/21/2016 1:34 +10595085,Relativity and Faster Than Light Travel (1992) [repost],http://readtext.org/science/relativity-flt/,1,1,tux,11/19/2015 14:56 +10446101,Guangzhou streetcars powered by supercapacitors that charge in 20 seconds,http://www.npr.org/2015/10/22/450583840/in-d-c-and-china-two-approaches-to-a-streetcar-unconstrained-by-wires,4,1,dailo10,10/25/2015 5:36 +10456746,Physicists uncover novel phase of matter,http://phys.org/news/2015-10-physicists-uncover-phase.html,53,4,mica,10/27/2015 7:49 +12188984,White Dwarf Lashes Red Dwarf with Mystery Ray,http://www.eso.org/public/news/eso1627/,57,9,friederbluemle,7/29/2016 18:46 +10298682,Implementing a random number generator for games,http://blog.yargies.com/post/130146906769/implementing-a-random-number-generator,3,1,kwellman,9/29/2015 19:03 +12319738,"As Gawker learned, media corporations are't above the law",http://www.nationalreview.com/article/439157/gawker-hulk-hogan-lawsuit-press-isnt-exempt-privacy-laws,20,35,wtbob,8/19/2016 13:19 +12538861,"Ask HN: I created a scraper, now I think how to utilize scraped data",,3,1,gorer,9/20/2016 12:11 +12115942,What do you guys think about my startup?,,1,13,swipecity,7/18/2016 16:11 +12248173,First Power from Rosatoms VVER-1200 Generation III+ Nuclear Reactor,http://www.ee.co.za/article/first-power-rosatoms-vver-1200-generation-iii-nuclear-reactor.html,1,1,yread,8/8/2016 14:45 +10894521,mParticle Raises $15M to Help Mobile Marketers Manage Their Data,http://techcrunch.com/2016/01/13/mparticle-series-a/,14,5,mkatz0630,1/13/2016 14:36 +10305174,The challenging task of sorting colours,http://www.alanzucconi.com/2015/09/30/colour-sorting/,4,1,signa11,9/30/2015 16:38 +11849785,480i mode for Atari 800 (2009),http://atariage.com/forums/topic/144629-new-demo-release-memopad-480i/,1,1,jhallenworld,6/6/2016 19:53 +11240350,Ask HN: Is the Hacker News Team Actively Developing Arc?,,20,11,Kinnard,3/7/2016 18:04 +12319197,Reach in and touch objects in videos with Interactive Dynamic Video,http://news.mit.edu/2016/touching-objects-in-videos-with-interactive-dynamic-video-0802,2,1,triplesec,8/19/2016 11:04 +11026074,Broken screen? How to backup your data from a broken Android,http://www.hostilejourney.com/how-to-backup-your-photos-from-a-broken-android/,2,1,antonio-R,2/3/2016 12:29 +10812951,Ask HN: What problem in 2016 will be potential startup?,,5,2,mirap,12/30/2015 16:59 +10454656,Ask HN: Any examples of APIs in production using JWT?,,2,1,blooberr,10/26/2015 21:34 +10297271,Solving the the Monty-Hall-Problem in Swift,http://www.thomashanning.com/swift-playground-the-monty-hall-problem/,3,1,ingve,9/29/2015 16:06 +11964763,"Telephony, SMS, and MMS APIs",https://docs.google.com/spreadsheets/d/1BshonTqZfYcSBRA7bs4DsQ6PChdAeNRn9LV4tMgwEeo/edit?pref=2&pli=1#gid=0,122,46,Glibaudio,6/23/2016 22:27 +12049464,Show HN: LetsEncrypt Dns-01 Support for the Linode DNS API,https://github.com/IdeaSynthesis/letsencrypt-dns01-hooks,2,1,fomojola,7/7/2016 14:21 +10552712,How DNSSEC Works,https://www.cloudflare.com/dnssec/how-dnssec-works/,1,1,jgrahamc,11/12/2015 12:34 +10888755,On Vietnamese Writing,http://limdauto.github.io/posts/2015-11-15-on-vietnamese-writing.html,59,21,luu,1/12/2016 17:24 +12185904,"The Colonization of Space, by Gerard K. O'Neill",http://www.nss.org/settlement/physicstoday.htm,6,1,gosub,7/29/2016 10:33 +10900883,Ask HN: Non-trivial data intensive angularjs apps,,5,2,ojbrien,1/14/2016 12:14 +12403983,Ask HN: Submitting HN comments,,1,2,Tomte,9/1/2016 9:44 +10989560,TBOX: A Multi-Platform C Library,https://github.com/waruqi/tbox.git,130,34,TongKuo,1/28/2016 17:21 +11382269,Personal Thoughts on the LambdaConf Controversy,http://degoes.net/articles/lambdaconf-controversy,19,3,saryant,3/29/2016 15:41 +10250025,If there is an online platform that,,1,1,waroc,9/21/2015 2:09 +11368599,Authors see dark side of tech's advances,http://www.seattletimes.com/business/economy/authors-see-dark-side-of-techs-advances/,2,5,mooreds,3/27/2016 2:30 +11861558,Nim Programming Language 0.14.0 released,http://nim-lang.org/news/2016_06_07_version_0_14_0_released.html?hn=1,173,55,dom96,6/8/2016 11:54 +11202519,Host your own Cryptonomicon's tombstone on a Raspberry PI,https://github.com/Mathieu-Desrochers/Linux-Notebook/blob/master/procedures/self-hosting.md,8,2,mdesroch2,3/1/2016 13:49 +11376439,Oracle seeks $9.3B for Googles use of Java in Android,http://www.networkworld.com/article/3048814/oracle-seeks-93-billion-for-googles-use-of-java-in-android.html,76,83,Sindisil,3/28/2016 18:55 +10471025,You're Eight Times More Likely to Be Killed by a Police Officer Than a Terrorist,http://www.cato.org/blog/youre-eight-times-more-likely-be-killed-police-officer-terrorist,265,190,cryoshon,10/29/2015 14:03 +10346133,PAPRIKA Potentially all pairwise rankings of all possible alternatives,https://en.wikipedia.org/wiki/Potentially_all_pairwise_rankings_of_all_possible_alternatives,8,1,ThomPete,10/7/2015 14:17 +11578841,A majority of millennials now reject capitalism,https://www.washingtonpost.com/news/wonk/wp/2016/04/26/a-majority-of-millennials-now-reject-capitalism-poll-shows/?utm_source=nextdraft&utm_medium=email,51,146,yusufp,4/27/2016 9:17 +12454830,Will Uber deal in Quebec set precedent for other juridictions,http://www.cantechletter.com/2016/09/will-quebecs-uber-deal-mean-jurisdictions/,1,1,alexandre_m,9/8/2016 17:03 +10207919,"Paper UI kit(the elements are not WOW, but the examples are looking pretty good)",http://demos.creative-tim.com/paper-kit,4,1,axelut,9/12/2015 12:35 +10452257,Ask HN: Algorithm for Scheduling appointments by location,,1,3,tmaly,10/26/2015 16:01 +11373283,Google breaks through Chinas Great Firewall but only for just over an hour,http://www.scmp.com/tech/china-tech/article/1931301/google-breaks-through-chinas-great-firewall-only-just-over-hour,73,26,jacquesm,3/28/2016 8:49 +11216841,Google is testing a payments app that works with your phone in your pocket,http://www.theverge.com/2016/3/2/11147234/google-hands-free-android-pay-mobile-payments-app,1,1,mathattack,3/3/2016 14:04 +12211583,GoGoGrandparent (YC S16) Gives Older Adults Independence and Autonomy,http://themacro.com/articles/2016/08/gogograndparent/,5,1,stvnchn,8/2/2016 17:35 +11019922,Show HN: 3D Vector Graphics,https://github.com/fogleman/ln,441,56,fogleman,2/2/2016 15:20 +11008630,Ask HN: Evernote alternatives for research?,,62,49,Spooky23,1/31/2016 23:15 +10698432,Pixel C,https://store.google.com/product/pixel_c,68,75,pdknsk,12/8/2015 18:46 +12241662,The Glassmaker Who Sparked Astrophysics (2014),http://nautil.us/issue/11/light/the-glassmaker-who-sparked-astrophysics,28,4,dnetesn,8/7/2016 10:20 +11053204,YouTube removes all_comments feature,https://productforums.google.com/d/topic/youtube/lZayXDopTXw,67,51,userbinator,2/7/2016 15:41 +10634162,Ask HN: What are you thankful for?,,3,2,japhyr,11/26/2015 18:39 +10422197,"In the Battle of Amazon vs. The New York Times, Who Wins? You Do",http://fortune.com/2015/10/19/amazon-nyt-medium-carney/?xid=nl_termsheet,4,1,cryptoz,10/20/2015 22:14 +11960121,The Director of Helvetica Is Making a Documentary on Dieter Rams,http://www.wired.com/2016/06/director-helvetica-making-dieter-rams-documentary/,2,1,f_allwein,6/23/2016 11:09 +11708987,Is absolutely any server crackable?,,1,3,id122015,5/16/2016 19:36 +11299756,Show HN: Shazam in Java,https://github.com/wsieroci/audiorecognizer,6,1,wsieroci,3/16/2016 18:49 +12490914,"Buzzfeed reviews the iPhone 7, and nails it",https://www.buzzfeed.com/nicolenguyen/iphone-7-review?utm_term=.pwKjvEwQ4#.sfzx4Wy29,9,3,arjun27,9/13/2016 18:22 +11428055,Ask HN: Why is there no strict HTML 5 DTD?,,1,2,kaishiro,4/5/2016 5:26 +12258428,"Angular 2 RC5 NgModules, Lazy Loading and AoT Compilation",http://angularjs.blogspot.com/2016/08/angular-2-rc5-ngmodules-lazy-loading.html,4,1,rayshan,8/9/2016 23:37 +10859020,Human-carrying drone debuts at CES,http://money.cnn.com/2016/01/06/technology/ces-2016-ehang-drone/index.html,12,4,benologist,1/7/2016 16:54 +12490592,iOS 10 update bricking iPhones and iPads for some users,https://9to5mac.com/2016/09/13/ios-10-update-bricking-iphones-and-ipads-for-some-users-requires-itunes-to-restore/,23,17,JoshGlazebrook,9/13/2016 17:46 +10478927,Ask HN: Do you want to be interviewed about programming?,,4,3,chess,10/30/2015 16:49 +12294346,Ten things we know to be true,https://www.google.com/intl/en/about/company/philosophy/,2,1,nreece,8/15/2016 23:28 +10411146,Steel Open-source command-line password manager,http://www.steelpasswordmanager.org/,69,43,nvr82,10/19/2015 4:37 +10690750,Ask HN: Mailbox alternatives for OS X?,,5,11,cjbarber,12/7/2015 17:06 +12573173,"Am I Introverted, or Just Rude?",http://www.nytimes.com/2016/09/25/opinion/sunday/am-i-introverted-or-just-rude.html?ref=opinion,227,229,hvo,9/24/2016 23:57 +11719648,Kotlin meets Gradle,https://gradle.org/blog/kotlin-meets-gradle/,8,4,amake,5/18/2016 4:05 +11715511,Show HN: Plottico Tracker extension plot numbers from any site in real-time,https://chrome.google.com/webstore/detail/plottico-tracker-pro/hjfkpgknlchgabgfhknaedgodmnhieep,3,1,grandrew,5/17/2016 17:30 +11620619,Bitcoin Outlook Is Sunny as Creator Emerges from Shadows,http://www.bloomberg.com/news/articles/2016-05-02/bitcoin-outlook-is-sunny-as-creator-emerges-from-shadows-chart,1,1,_Codemonkeyism,5/3/2016 13:53 +11506226,Ask HN: What are your disciplines to keep sharp between contracts?,,1,1,kleer001,4/15/2016 17:45 +12033618,Compare frames per second,https://frames-per-second.appspot.com/,1,1,joubert,7/4/2016 23:52 +11744531,"Eat, sleep, code, repeat is such bullshit",https://m.signalvnoise.com/eat-sleep-code-repeat-is-such-bullshit-c2a4d9beaaf5,357,179,ingve,5/21/2016 13:05 +10963568,Amazon's customer service backdoor,https://medium.com/@espringe/amazon-s-customer-service-backdoor-be375b3428c4#.lqxcfockn,1447,154,grapehut,1/24/2016 19:11 +10929102,General Motors Salvages Ride-Hailing Company Sidecar for Parts,http://www.bloomberg.com/news/articles/2016-01-19/general-motors-salvages-ride-hailing-company-sidecar-for-parts,13,6,coloneltcb,1/19/2016 6:04 +10658622,Security of UK net firms under scrutiny (BBC),http://www.bbc.co.uk/news/technology-34972760,1,1,CM30,12/1/2015 20:47 +10810224,Apple ][ Watch,http://www.instructables.com/id/Apple-II-Watch/,134,24,braythwayt,12/30/2015 1:32 +12404750,What is the biggest mistake that a big company has made?,https://www.quora.com/What-is-the-biggest-mistake-that-a-big-company-has-made?share=1,53,73,sidcool,9/1/2016 12:34 +10325111,What Makes Containers at Scale So Difficult,http://www.theplatform.net/2015/09/29/why-containers-at-scale-is-hard/,26,11,orrsella,10/3/2015 19:50 +10685090,Winners: Kantar Information Is Beautiful Awards 2015,http://www.informationisbeautiful.net/2015/information-is-beautiful-awards-winners-2015/,16,2,ingve,12/6/2015 12:28 +11222329,Advanced iOS Core Data Framework,https://engineering.garena.com/advanced-core-data/,6,1,singjie,3/4/2016 6:16 +10449662,Robots to the rescue: Lessons from emergency robot deployments,http://www.nsf.gov/discoveries/disc_summ.jsp?cntn_id=136160&org=ENG,25,1,Oatseller,10/26/2015 4:48 +12153929,Bible-Regal. I'd kickstart the heck out of this,https://www.youtube.com/watch?v=9ylmBmQILvU,1,1,gardano,7/24/2016 17:27 +11683306,PostgreSQL 9.6 Beta 1 Released,http://www.postgresql.org/about/news/1668/,174,40,linuxhiker,5/12/2016 13:47 +12260823,Ask HN: ReadBoard User Onboarding Process Review,,3,2,abhishekdesai,8/10/2016 11:25 +11068685,The chips are down for Moores law,http://www.nature.com/news/the-chips-are-down-for-moore-s-law-1.19338,80,55,Stefan333,2/9/2016 20:56 +11605960,"The ""Wizzards"" of Adware",http://blog.talosintel.com/2016/04/the-wizzards-of-adware.html,68,9,based2,5/1/2016 12:40 +11258675,Show HN: Mnemonic url shortener,http://longener.herokuapp.com/,3,1,nyddle,3/10/2016 12:03 +12048623,UK Bill Introduces 10 Year Prison Sentence for Online Pirates,https://torrentfreak.com/uk-bill-introduces-10-year-prison-sentence-for-online-pirates-160706/,15,7,chewymouse,7/7/2016 11:21 +12099586,Will someone please tell WeWork were in a downturn?,https://pando.com/2016/03/10/will-someone-please-tell-wework-were-downturn/ee045fd20a33c9690115743c493ea4b5fbc8ce18/,2,1,JackPoach,7/15/2016 8:32 +11790978,Awesome Ideas,https://github.com/checkraiser/awesome-ideas,6,4,revskill,5/28/2016 8:36 +10288686,"Facebook Ads Are All-Knowing, Unblockable, and in Everyones Phone",http://www.bloomberg.com/news/articles/2015-09-28/facebook-ads-are-all-knowing-unblockable-and-in-everyone-s-phone,59,57,tim_sw,9/28/2015 2:39 +12241157,Mroonga: Fast fulltext search for all languages on MySQL,https://github.com/mroonga/mroonga,1,1,guifortaine,8/7/2016 5:16 +11322583,Curl is 18 years old tomorrow,https://daniel.haxx.se/blog/2016/03/19/curl-is-18-years-old-tomorrow/,149,30,donohoe,3/20/2016 11:40 +11436459,Supernatural Sound: Science and Shamanism in the Arctic (2013),http://theappendix.net/issues/2013/7/supernatural-sound-science-and-shamanism-in-the-arctic,8,1,benbreen,4/6/2016 3:41 +10591250,Police Civil Asset Forfeitures Exceed All Burglaries in 2014,http://www.armstrongeconomics.com/archives/39102,447,129,ccvannorman,11/18/2015 22:31 +10895113,Show HN: Lottery Can you beat the odds?,http://pizzascripters.com/lottery/game/,9,7,solson,1/13/2016 15:47 +10749153,StackOverflow to switch to modified MIT License,http://meta.stackexchange.com/questions/271080/the-mit-license-clarity-on-using-code-on-stack-overflow-and-on-the-stack-excha,7,1,mixedmath,12/17/2015 2:47 +11481831,The San Francisco Bay Area in the Second Gilded Age,https://medium.com/@kimmaicutler/slidedeck-the-san-francisco-bay-area-in-the-second-gilded-age-ae28ea9d3c91#.jl9yfvu9b,6,1,Futurebot,4/12/2016 17:50 +10426998,"Meet YouTube Red, the Ultimate YouTube Experience",http://youtube-global.blogspot.com/2015/10/red.html,14,4,tucif,10/21/2015 17:33 +10407893,Future of health tech The diagnostics revolution in India,,1,1,medd-in,10/18/2015 11:18 +11596072,How to choose your video media engine,https://blog.streamroot.io/how-to-choose-your-media-engine/,6,2,eldod,4/29/2016 14:51 +10771054,"Go/types, the Go type checker: a tutorial",https://github.com/golang/example/tree/master/gotypes,107,3,pella,12/21/2015 13:59 +12137576,A practical proposal for migrating to safe long sessions on the web,https://developers.google.com/web/updates/2016/06/2-cookie-handoff,101,78,kinlan,7/21/2016 15:41 +12085516,Tell HN: Gmail on Chrome eating battery,,3,3,3pt14159,7/13/2016 12:16 +12042338,AP FACT CHECK: Clinton email claims collapse under FBI probe,http://bigstory.ap.org/article/6ee62bc1899d45b1980f09fe750a7105/ap-fact-check-clinton-email-claims-collapse-under-fbi-probe,4,1,msh,7/6/2016 11:15 +11696978,An Unintended Side Effect of Transparency,https://www.propublica.org/article/an-unintended-side-effect-of-transparency,3,1,danso,5/14/2016 16:56 +11432969,The Kik Bot Platform,http://avc.com/2016/04/the-kik-bot-platform/,60,51,kkouddous,4/5/2016 18:21 +10881545,"Reinvented email solution for free, helps to send videos, 1 GB mails and more",https://www.indiegogo.com/projects/mailsoc-reinventing-email-after-44-years/x/12596828#/,55,2,baskar115,1/11/2016 16:53 +11627312,Everything makes sense if David Kleiman was Satoshi Nakamoto. Heres why,https://seebitcoin.com/2016/05/everything-makes-sense-if-david-kleiman-was-satoshi-nakamoto-heres-why/,56,39,hmsln,5/4/2016 10:09 +11977532,Whats wrong with in-browser cryptography?,https://tonyarcieri.com/whats-wrong-with-webcrypto,4,1,mikecarlton,6/25/2016 19:06 +10668088,Computer Science Circles,http://cscircles.cemc.uwaterloo.ca/,26,12,csense,12/3/2015 6:23 +11937076,"Canonical asks OVH to pay €1-2/mo/VPS. Else, prohibited to use the mark Ubuntu",https://twitter.com/olesovhcom/status/744611505140797440,123,67,hbogert,6/20/2016 9:54 +11087815,Are YC W15 Microsoft Incentives Working?,https://www.gra.pe/state-of-infrastructure-yc-w15/,3,1,grape_,2/12/2016 15:28 +10913671,Show HN:Build your own voice/text-powered travel bot,https://www.leova.io,7,2,digital_ins,1/16/2016 1:19 +10291372,"Less Money, Mo' Music and Lots of Problems: A Look at the Music Biz",http://redef.com/original/less-money-mo-music-lots-of-problems-the-past-present-and-future-of-the-music-biz,33,19,beardless_sysad,9/28/2015 16:43 +11492203,Atom text editor 1.7.0 released,https://github.com/atom/atom/releases/tag/v1.7.0,170,139,alanfranzoni,4/13/2016 21:05 +12030403,America Expands Its Freedom of Information Act,https://yro.slashdot.org/story/16/07/04/0326207/america-expands-its-freedom-of-information-act,3,1,MilnerRoute,7/4/2016 12:52 +10192974,Do you like agar.io? what about Ninja agar?,,6,2,jfrez,9/9/2015 17:58 +10379124,Reading About the Financial Crisis: A 21-Book Review (2012) [pdf],http://www.argentumlux.org/documents/JEL_6.pdf,27,7,dave446,10/13/2015 8:17 +11856979,Show HN: WebGL viewshed demo,https://www.monkeybrains.net/viewshed/,1,1,MonkeyDan,6/7/2016 19:16 +11322588,How much oxygen for a person to survive in an air-tight enclosure? (2004),http://members.shaw.ca/tfrisen/how_much_oxygen_for_a_person.htm,87,62,galfarragem,3/20/2016 11:42 +11274094,Ask HN: Should we give a discount to a billion dollar startup?,,21,21,sec_throwaway,3/12/2016 19:23 +11807861,Data Models and Word Size,https://nickdesaulniers.github.io/blog/2016/05/30/data-models-and-word-size/,11,1,nkurz,5/31/2016 17:03 +11031664,What's Your Secondary Language?,http://prog21.dadgum.com/215.html,1,1,surfaceTensi0n,2/4/2016 2:55 +10559397,"If you've had problems getting things done on chat, you might like this.",https://medium.com/cubeit-curate-your-content/don-t-read-this-d9b06e245b55,1,3,mythun,11/13/2015 12:17 +12542095,The 5 Stages of NoSQL,https://sookocheff.com/post/opinion/the-five-stages-of-nosql/,33,19,soofaloofa,9/20/2016 18:43 +12171156,Reverse engineering and exploiting a critical Little Snitch vulnerability,https://reverse.put.as/2016/07/22/shut-up-snitch-reverse-engineering-and-exploiting-a-critical-little-snitch-vulnerability/,2,1,Tatyanazaxarova,7/27/2016 7:35 +11610329,My tablet has stickers,https://medium.com/learning-by-shipping/my-tablet-has-stickers-8f7ab9022ebd,4,2,mooreds,5/2/2016 10:21 +11017688,Google to Take Top-To-Bottom Apple-Like Control Over Nexus Line,http://www.droid-life.com/2016/02/01/report-google-to-take-more-control-over-nexus-line/,5,1,josephscott,2/2/2016 4:56 +11983140,Change your wallpaper to top image of the day on /r/wallpapers on startup,https://github.com/ssimunic/Daily-Reddit-Wallpaper,2,1,ssimunic,6/26/2016 22:41 +11225579,The 1980s Media Panic Over Dungeons and Dragons,http://www.atlasobscura.com/articles/the-1980s-media-panic-over-dungeons-dragons,162,130,samclemens,3/4/2016 18:02 +10813314,Feeding Graph databases a third use-case for modern log management platforms,https://medium.com/@henrikjohansen/feeding-graph-databases-a-third-use-case-for-modern-log-management-platforms-d5dac8a80d53,101,21,lennartkoopmann,12/30/2015 18:03 +11557583,Americas flyers cant expect both cheaper fares and more legroom,http://www.economist.com/blogs/gulliver/2016/04/how-squeeze-your-customers?fsrc=scn/fb/te/bl/ed/howtosqueezeyourcustomersamericasflyerscantexpectbothcheaperfaresandmorelegroom,4,2,edward,4/23/2016 21:54 +11994839,War and Planets: Astronomical Tables in the History of Science,https://blogs.royalsociety.org/history-of-science/2016/06/07/war-and-planets/,28,3,Petiver,6/28/2016 16:02 +10814278,Show HN: Search Engine That Pays Your Student Loans for FREE. Over 1000 Users,http://browseu.com,2,3,browseu,12/30/2015 20:48 +10776770,Latest Ransomware Attacks: End of Year Payments,https://www.netfort.com/blog/latest-ransomware-attacks-end-of-year-payments/,2,1,netfortnews,12/22/2015 9:53 +10214359,Etsy Welcomes Manufacturers to Artisanal Fold,http://www.nytimes.com/2015/09/14/business/etsy-welcomes-manufacturers-to-artisanal-fold.html,24,18,kanamekun,9/14/2015 10:04 +12127923,NWM: Window Manager for X11 Written with Node.js,http://mixu.net/nwm/,2,1,tangue,7/20/2016 10:14 +10682327,Atari Punk Console,https://en.wikipedia.org/wiki/Atari_Punk_Console,24,5,outputchannel,12/5/2015 16:28 +10519979,The Single Biggest Mistake Programmers Make Every Day,https://medium.com/javascript-scene/the-single-biggest-mistake-programmers-make-every-day-62366b432308,1,1,lujim,11/6/2015 15:40 +10275789,5000 Years of Interest Rates,http://www.businessinsider.com/chart-5000-years-of-interest-rates-2015-9,49,35,okfine,9/25/2015 0:34 +10278217,Greenkeeper: Always up-to-date npm dependencies,http://greenkeeper.io/,52,21,ingve,9/25/2015 14:08 +11825343,Top Software Books Every Software Engineer Should Read,http://aioptify.com/top-software-books.php?utm_source=hackernews,2,1,jahan,6/2/2016 19:28 +12015918,Crinkles: A short Sci-Fi story,http://compellingsciencefiction.com/stories/crinkles.html,5,1,sharmi,7/1/2016 13:41 +12202163,Guile-lips: Scheme as a generic macro language,https://rbryan.github.io/posts/guile-lips-scheme-as-a-generic-macro-language.html,40,32,ruste,8/1/2016 13:25 +11245126,KH-12 Kennan Keyhole Secret Military Spy Satellite Photos,http://www.spacesafetymagazine.com/space-debris/astrophotography/view-keyhole-satellite/,41,6,tacon,3/8/2016 13:43 +10776733,The SK8 Multimedia Authoring Environment,http://sk8.dreamhosters.com/sk8site/sk8.html,2,2,ingve,12/22/2015 9:43 +10586735,Learning UX design: where do I start,https://schneide.wordpress.com/2015/11/09/learning-ux-design-where-do-i-start/,1,1,lukesan,11/18/2015 9:12 +10380018,MH17 Report,http://www.bbc.co.uk/news/live/world-europe-34514727,190,140,nns,10/13/2015 12:51 +10207963,The ethical case for eating oysters and mussels,http://sentientist.org/2013/05/20/the-ethical-case-for-eating-oysters-and-mussels/,15,7,jeffreyrogers,9/12/2015 13:02 +11555009,FreeBSD GPIO Benchmark,https://www.bidouilliste.com/blog/2016/04/22/FreeBSD-GPIO-Benchmark/,15,2,bidouilliste,4/23/2016 10:49 +10946133,Second largest mobile operator in Nepal has run out of fuel,http://thehimalayantimes.com/business/fuel-shortage-hits-ncells-services/,1,1,beilabs,1/21/2016 16:08 +10916951,Ask HN: How can the U.S. fix the problems with the police?,,2,4,forgottenacc56,1/16/2016 21:35 +12490175,Why doesn't Amazon deliver to this one street in Northern Ireland?,https://www.quora.com/unanswered/Why-doesnt-Amazon-offer-express-delivery-to-this-particular-street-in-Northern-Ireland?share=1,1,1,hywel,9/13/2016 17:03 +11485918,Google Calendar now uses machine learning to help you accomplish your goals,http://techcrunch.com/2016/04/12/google-calendar-goals/,123,70,gils,4/13/2016 5:16 +11768817,Swiss to Vote on Universal Basic Income,http://www.acting-man.com/?p=44981,3,3,jes,5/25/2016 10:35 +12016227,How to record your browser window in Google Chrome,http://www.techrepublic.com/article/how-to-record-your-browser-window-in-google-chrome/,2,1,ohjeez,7/1/2016 14:22 +11165933,The end of the establishment?,http://www.baltimoresun.com/news/opinion/bal-the-end-of-the-establishment-20160223-story.html,113,105,l33tbro,2/24/2016 11:28 +11864289,San Francisco retracts program to pay to reserve park's lawn areas amid outrage,http://www.theguardian.com/us-news/2016/may/24/san-francisco-dolores-park-reservation-policy-retracted,3,1,edward,6/8/2016 18:14 +11207575,Start building real-time apps with these Firebase templates and components,https://www.noodl.io/market/search/Firebase,6,1,noodlio,3/2/2016 1:37 +10927177,Fantastic Contraption Video Mixes Reality and Virtual,https://www.rockpapershotgun.com/2016/01/18/fantastic-contraption-video/,3,1,aqme28,1/18/2016 21:39 +11262037,Microsoft embeds nagware into IE patch,http://www.businessinsider.com/microsoft-embeds-nagware-into-ie-patch-2016-3?utm_source=twitterfeed&utm_medium=twitter,120,138,coloneltcb,3/10/2016 20:30 +11403193,Magic Lantern Blue Screen of Death April Fools' Prank Bypass,,1,2,marinabercea,4/1/2016 7:05 +10243514,Ask HN: Will adblockers kill js widget products/startups?,,5,4,markyc,9/19/2015 6:39 +10493620,Smart Fishing Float Indiegogo,https://www.indiegogo.com/projects/smartfloat-smart-fishing-float-with-mobile-app/x/8746035#/,1,1,standingstill,11/2/2015 17:54 +10463606,"Wrote a Gist in Git about CSS Media Queries for Desktops, Tablets and Mobiles",https://gist.github.com/gokulkrishh/242e68d1ee94ad05f488,1,1,gokulkrishh09,10/28/2015 10:22 +10971561,"His essay on Income Inequality,Paul Graham credited me for- -feedback",https://medium.com/the-wtf-economy/in-his-essay-on-income-inequality-paul-graham-credited-me-for-pre-publication-feedback-ff8a0b295a1b#.4rhw55k0f,3,1,taivare,1/26/2016 2:50 +10725707,Chris Lattner on Swift and dynamic dispatch,https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20151207/001948.html,183,81,gbugniot,12/13/2015 7:38 +10446310,Obfuscation: how leaving a trail of confusion can beat online surveillance,http://www.theguardian.com/technology/2015/oct/24/obfuscation-users-guide-for-privacy-and-protest-online-surveillance,4,1,walterbell,10/25/2015 8:04 +10212471,Was Rasputin murdered by MI6? (2014),http://spartacus-educational.com/spartacus-blogURL2.html,54,11,snake117,9/13/2015 19:15 +11548406,AI researchers get ready for a deathmatch with Doom gaming challenge,http://www.theverge.com/2016/4/22/11486164/ai-visual-doom-competition-cig-2016,1,1,jonbaer,4/22/2016 11:45 +12266408,DHT Spider Build Your Own BTDigg,https://github.com/shiyanhui/dht,3,1,lime66,8/11/2016 5:27 +12338990,It Makes No Sense That Word Processors Are Still Designed for the Printed Page,http://motherboard.vice.com/read/it-makes-no-sense-that-word-processors-are-still-designed-for-the-printed-page,8,1,nols,8/22/2016 20:00 +10215684,Feedback for MapOnShirt.com,http://maponshirt.com,1,1,lindsejs,9/14/2015 15:56 +11394283,Ask HN: Which IoT gadgets do you use in your AirBNB rentals?,,10,3,baus,3/31/2016 1:03 +12201297,Fitbit blaze VS Pebble Time (customer reviews),https://feedcheck.co/blog/fitbit-blaze-vs-pebble-time/,2,1,adibalcan,8/1/2016 10:28 +10800817,How Blue Lights on Train Platforms Combat Tokyos Suicide Epidemic,https://nextcity.org/daily/entry/how-blue-lights-on-train-platforms-combat-tokyos-suicide-epidemic,102,100,bemmu,12/28/2015 12:25 +11510176,Saudi Arabia Warns of Economic Fallout If Congress Passes 9/11 Bill,http://www.nytimes.com/2016/04/16/world/middleeast/saudi-arabia-warns-ofeconomic-fallout-if-congress-passes-9-11-bill.html,238,218,signa11,4/16/2016 11:24 +11396281,"npm-check: Check for outdated, incorrect, and unused dependencies",https://github.com/dylang/npm-check,5,1,tilt,3/31/2016 11:12 +11757015,Ask HN: Is CouchDB dead?,,11,3,y0ghur7_xxx,5/23/2016 21:09 +11753373,Astronomers do not Date Sapphos Midnight Poem,http://dhayton.haverford.edu/blog/2016/05/20/astronomers-do-not-date-sapphos-midnight-poem/,29,7,srikar,5/23/2016 12:25 +10733436,Seattle Considers Measure to Let Uber and Lyft Drivers Unionize,http://www.nytimes.com/2015/12/14/technology/seattle-considers-measure-to-let-uber-and-lyft-drivers-unionize.html?smid=fb-nytimes&smtyp=cur&_r=0,122,162,deegles,12/14/2015 20:06 +11030196,JavaScript and Immutability -?How fast is fast enough?,https://medium.com/outsystems-engineering/javascript-and-immutability-how-fast-is-fast-enough-27790cda4e9e,11,1,mmv,2/3/2016 22:07 +10813390,Does YCombinator have to use Google for captcha?,,5,3,dayon,12/30/2015 18:19 +11732946,Better filler text,,1,1,chairmanwow,5/19/2016 19:20 +10477187,Does China Need Facebook?,http://www.bloombergview.com/articles/2015-10-28/does-china-even-need-facebook-,3,2,gedrap,10/30/2015 11:23 +12292325,Ask HN: Which self hosted cloud solution you use and why?,,1,1,enitihas,8/15/2016 18:20 +11945656,Tech Companies Fight Back After Years of Being Deluged with Secret FBI Requests,https://theintercept.com/2016/06/21/tech-companies-fight-back-after-years-of-being-deluged-with-secret-fbi-requests/,263,73,uptown,6/21/2016 14:04 +12289256,The future of jobs and employment,https://2600hertz.wordpress.com/2016/08/15/the-secret-reason-for-jobs-and-employment/,2,1,cvs268,8/15/2016 8:15 +10608575,e^19709930078 = 0xdeadbeef,http://hardmath123.github.io/a-balance-of-powers.html,14,3,hardmath123,11/22/2015 0:26 +11315078,GCHQ intervenes to secure smart meters against hackers,http://www.ft.com/cms/s/0/ca2d7684-ed15-11e5-bb79-2303682345c8.html,4,5,cm2187,3/18/2016 21:11 +12432835,What if we had mutex revocation lists?,https://www.josephkirwin.com/2016/09/05/mutex-revocation-list/,33,22,iou,9/5/2016 23:43 +11457902,SpaceX lands first stage on Drone Ship,https://twitter.com/spacex/status/718542066041532416,57,2,neverminder,4/8/2016 21:00 +10529278,PuTTY 0.66 fixes security vulnerability,http://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/vuln-ech-overflow.html,115,52,geococcyxc,11/8/2015 18:21 +10523939,"Ultimate Hacking Keyboard Why you need to buy one, Ultimate configurability",https://www.crowdsupply.com/ugl/ultimate-hacking-keyboard/updates/1911,8,17,richardboegli,11/7/2015 6:09 +10853573,"Show HN: Review my startup project: CardPi, life in digital cards",https://www.cardpi.com,14,26,ajeet_dhaliwal,1/6/2016 20:38 +11232724,A struggle within MITs IT department over its future,http://tech.mit.edu/V136/N3/istfeature.html,102,65,chei0aiV,3/6/2016 6:21 +10886966,Introducing Uber Trip Experiences API,https://newsroom.uber.com/trip-experiences-api/,19,6,shade23,1/12/2016 12:24 +12279618,Meme pages plan mass revolt against alleged Facebook bias,http://www.dailydot.com/unclick/meme-pages-revolt-against-facebook/,59,65,adamnemecek,8/13/2016 0:22 +10273485,Syrian civil war forces first withdrawal from Arctic seed bank,http://www.wired.co.uk/news/archive/2015-09/23/syrian-war-leads-to-doomsday-bank-withdrawal,3,1,pazrul,9/24/2015 18:18 +12100753,K Schema Level 0,http://ontology2.com/the-book/k-schema-level-0.html,2,2,PaulHoule,7/15/2016 13:26 +11762211,45 years since its creation. The C language still very popular,http://www.javadepend.com/Blog/?p=2372,170,206,kiyanwang,5/24/2016 15:11 +10928472,"Six-Legged Giant Finds Secret Hideaway, Hides for 80 Years",http://www.npr.org/sections/krulwich/2012/02/24/147367644/six-legged-giant-finds-secret-hideaway-hides-for-80-years,493,81,sabya,1/19/2016 2:14 +10621756,Power Law and the Long Tail,http://avc.com/2015/11/power-law-and-the-long-tail/,6,1,wslh,11/24/2015 16:35 +11797585,The World's Emptiest International Airport,http://www.forbes.com/sites/wadeshepard/2016/05/28/the-story-behind-the-worlds-emptiest-international-airport-sri-lankas-mattala-rajapaksa/#77fa67162fdf,35,19,kyloren,5/29/2016 18:35 +11071070,Ask HN: But are MY shares actually worth something?,,2,3,alreadytrashed,2/10/2016 6:24 +11918241,Computer model matches humans at predicting how objects move,http://news.mit.edu/2016/csail-computer-model-matches-humans-predicting-how-objects-move-0104,63,31,tekromancr,6/16/2016 19:19 +11963482,"Dont Just Boost Social Media Engagement, Scale It",https://dustn.tv/boost-social-engagement/,2,1,dustinwstout,6/23/2016 18:52 +12124683,A major iOS/OS X vulnerability comparable to Android Stagefright,http://www.forbes.com/sites/thomasbrewster/2016/07/19/apple-iphone-ios-9-vulnerabilities-like-stagefright/#6695b1f33947,108,30,willlll,7/19/2016 20:34 +10226128,"Ask HN: Mobile, social, geo all saturated what's next?",,1,2,forkandwait,9/16/2015 12:48 +10961900,How to Cover the One Percent,http://www.nybooks.com/articles/2016/01/14/how-to-cover-the-one-percent/,52,21,xoher,1/24/2016 8:07 +11944384,Cognitive Services Computer Vision API: Adult Content Detection,https://www.microsoft.com/cognitive-services/en-us/computer-vision-api,1,1,barhun,6/21/2016 8:42 +11989068,Dear Science: Why arent apes evolving into humans?,https://www.washingtonpost.com/news/speaking-of-science/wp/2016/06/27/dear-science-why-arent-apes-evolving-into-humans/?tid=pm_national_pop_b,4,1,jwebb99,6/27/2016 20:09 +12050151,A16z AI podcast touches on cultural challenge in tech,http://a16z.com/2016/06/29/feifei-li-a16z-professor-in-residence/,1,1,bodecker,7/7/2016 16:02 +12192501,The Limits of Satire (2015),http://www.nybooks.com/daily/2015/01/16/charlie-hebdo-limits-satire/,37,46,Tomte,7/30/2016 11:11 +11936170,Shenzhen Documentary Part 2 The Maker Movement Wired,https://www.youtube.com/watch?v=C3r4kdHxdcE,3,2,neolefty,6/20/2016 5:10 +10749206,"SymbOS: preemptive multitasking OS that can play mp3s, video on 8-bit Z80 PCs",http://www.symbos.de/,106,36,sedachv,12/17/2015 3:02 +12054739,This is what happened when Australia introduced tight gun controls,http://edition.cnn.com/2015/06/19/world/us-australia-gun-control/,3,4,cel1ne,7/8/2016 11:24 +11648816,Introduction to Latent Dirichlet Allocation(2011),http://blog.echen.me/2011/08/22/introduction-to-latent-dirichlet-allocation/,8,2,kercker,5/7/2016 8:12 +12008149,How Not to F*** Up Your App Store Video,http://blog.veed.me/importance-of-app-store-video/,2,1,yoavush,6/30/2016 12:54 +11757673,NotABug.org: Free code hosting,https://notabug.org/,6,1,ycmbntrthrwaway,5/23/2016 22:55 +10875075,The Seven Deadly Sins of Microservices (Follow Up Blog Post),https://www.opencredo.com/2016/01/08/the-seven-deadly-sins-of-microservices-redux/,7,1,danielbryantuk,1/10/2016 12:18 +12344575,The Nature of the Firm (1937),http://onlinelibrary.wiley.com/doi/10.1111/j.1468-0335.1937.tb00002.x/full,61,14,maverick_iceman,8/23/2016 15:38 +10405122,Show HN: ScriptObservatory.org How much malicious JavaScript goes unnoticed?,https://scriptobservatory.org/,1,1,andy112,10/17/2015 17:11 +12244108,No Empirical Evidence for Thomas Pikettys Inequality Theory,http://blogs.wsj.com/economics/2016/08/05/no-empirical-evidence-for-thomas-pikettys-inequality-theory-imf-economist-argues/?mod=WSJBlog,42,88,davidklemke,8/7/2016 22:35 +12179427,12 Signs You Are with the Wrong Partner,http://inspiresavvy.blogspot.com.ng/2015/12/12-signs-you-are-with-wrong-partner.html,1,1,Inspiresavvy,7/28/2016 10:30 +10430966,Collabora gives initial demo of LibreOffice in the browser [video],https://plus.google.com/+Libreoffice-from-collabora/posts/J1vWyQoq6vX,30,4,chris_wot,10/22/2015 8:06 +11704394,A Ukrainian Hacker Who Became the FBIs Best Weapon and Worst Nightmare,https://www.wired.com/2016/05/maksym-igor-popov-fbi/,5,1,rmason,5/16/2016 5:20 +11068976,RHUL: Particle Accelerator Modelling Tool,https://twiki.ph.rhul.ac.uk/twiki/bin/view/PP/JAI/BdSim,2,1,atti7,2/9/2016 21:38 +10464519,Give It a Rest. Abenomics Is Doing Fine,http://www.bloombergview.com/articles/2015-10-28/give-it-a-rest-abenomics-is-doing-fine-so-far-,3,1,Amorymeltzer,10/28/2015 14:11 +12265413,Bitcoin Is More Useful Than Fiat Currency in Zimbabwe,http://thedashtimes.com/2016/08/10/bitcoin-useful-fiat-currency-zimbabwe/,3,1,elishagh1,8/10/2016 23:29 +10432875,"Googlers Living at Google: Tiny Spaces, Probably No Sex",http://recode.net/2015/10/20/googlers-living-at-google-tiny-spaces-probably-no-sex/,11,3,vishnuks,10/22/2015 15:47 +12532691,Why We Can Send to Gmail in China,https://xiaolongtongxue.com/articles/2016/why-we-can-send-to-gmail-in-china/,69,41,longkai,9/19/2016 16:37 +11889862,Hollywood's Millennial Problem,http://www.theatlantic.com/business/archive/2016/06/hollywood-has-a-huge-millennial-problem/486209/?single_page=true,29,53,SonicSoul,6/12/2016 19:35 +10248528,Futures for C++11 at Facebook,https://code.facebook.com/posts/1661982097368498/futures-for-c-11-at-facebook/,16,3,mseri,9/20/2015 18:44 +12577024,Proprietary versus open instruction sets [pdf],http://research.cs.wisc.edu/multifacet/papers/ieeemicro16_card_isa.pdf,21,7,jsnell,9/25/2016 19:44 +11253438,3-D Depth Reconstruction from a Single Still Image (2007) [pdf],http://www.cs.cornell.edu/~asaxena/learningdepth/ijcv_monocular3dreconstruction.pdf,96,28,Jasamba,3/9/2016 15:21 +10297212,Ask HN: What's the most impactful business book you've read?,,5,11,karamazov,9/29/2015 15:58 +10871260,Basketapp.net Smart Bookmarks for chrome,https://basketapp.net/apps/chrome,13,1,ronnsan,1/9/2016 14:03 +12048613,"Cops Shot Her Boyfriend, She Streamed the Horrific Aftermath on Facebook",http://www.thedailybeast.com/articles/2016/07/07/cops-shot-her-boyfriend-she-livestreamed.html,3,1,reirob,7/7/2016 11:18 +10715570,Meet the Oculus Audio SDK,https://developer.oculus.com/blog/meet-the-oculus-audio-sdk/,1,1,wildpeaks,12/11/2015 5:11 +11797140,Cheap TOR Vanity Addresses,https://vanitydns.github.io/,3,4,cryptologs,5/29/2016 17:14 +10331718,Ask HN: What is the 1 attribute colleagues should have to make workplace better?,,3,2,nethsix,10/5/2015 13:41 +12438119,Show HN: Angular 2 HN A responsive Hacker News client built with Angular 2,https://angular2-hn.firebaseapp.com,40,30,MrAwesomeSauce,9/6/2016 18:25 +11700906,Vim-vertical: Get around 2-dimensionally in vim,https://github.com/rbong/vim-vertical,102,39,rbongers,5/15/2016 13:57 +11843477,Panama Papers Reveal How Wealthy Americans Hid Millions Overseas,http://www.nytimes.com/2016/06/06/us/panama-papers.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=first-column-region®ion=top-news&WT.nav=top-news&_r=0,189,137,hvo,6/5/2016 22:28 +11085395,"Airbnb purged 1,000 ""entire home"" listings days before preparing data snapshot",http://insideairbnb.com/how-airbnb-hid-the-facts-in-nyc,245,65,w1ntermute,2/12/2016 4:54 +12074600,How does one value a company?,,1,1,justinzollars,7/11/2016 21:04 +10978760,On the Viability of Conspiratorial Beliefs,http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0147905,9,7,espeed,1/27/2016 7:29 +11985341,Asking yourself hard questions,https://sanctus.io/hard-questions-tough-conversations-7e95d945b875#.99b773gqx,3,1,jd_routledge,6/27/2016 10:55 +10318729,Surprisingly Turing-Complete,http://www.gwern.net/Turing-complete,160,61,kushti,10/2/2015 14:24 +12080156,Is there a publication bias in behavioral oxytocin research on humans? [pdf],http://www.gwern.net/docs/statistics/2016-lane.pdf,42,14,gwern,7/12/2016 16:01 +10713632,YC Open Office Hours,http://blog.ycombinator.com/yc-open-office-hours,200,87,dshankar,12/10/2015 21:30 +11405602,Can a Dress Shirt Be Racist?,https://backchannel.com/can-a-dress-shirt-be-racist-6b74244446e9,29,44,sssilver,4/1/2016 15:38 +11519806,How to deal with the rising threat of ransomware,http://techcrunch.com/2016/04/16/how-to-deal-with-the-rising-threat-of-ransomware/,2,5,andrewfromx,4/18/2016 13:46 +10181411,Hackers can trick self-driving cars into taking evasive action,http://www.theguardian.com/technology/2015/sep/07/hackers-trick-self-driving-cars-lidar-sensor,3,1,ikeboy,9/7/2015 13:52 +10538970,Show HN: Marketing for Developers A book about getting your first 100 users,http://devmarketing.xyz,12,6,mijustin,11/10/2015 12:48 +10830899,Facebook's Free Basics Shuts Down in Egypt,http://gizmodo.com/a-week-after-india-banned-it-facebooks-free-basics-s-1750299423,87,58,tdaltonc,1/3/2016 15:31 +10998163,Payment Processor to Stop Working with Daily Fantasy Sports Clients,http://www.nytimes.com/2016/01/30/sports/draftkings-fanduel-vantiv-daily-fantasy.html,69,68,Judson,1/29/2016 20:18 +10795809,The MTHFR Gene Mutation and How to Rewire Your Genetics,https://www.bulletproofexec.com/the-mthfr-gene-mutation-and-how-to-rewire-your-genetics/,5,1,amelius,12/27/2015 0:15 +10570278,Mike OBrien on Account Security,https://www.guildwars2.com/en/news/mike-obrien-on-account-security/,2,1,slavik81,11/15/2015 17:34 +11819048,Most For-Profit Students Wind Up Worse Off Than If They Had Never Enrolled,http://www.theatlantic.com/business/archive/2016/06/for-profit-earnings/485141/?single_page=true,5,1,Futurebot,6/1/2016 23:12 +11703021,Codebase Search Results with TF-IDF for diversity and conciseness [pdf],http://www.ics.uci.edu/~lmartie/msr_preprint.pdf,1,1,techbio,5/15/2016 22:14 +12001550,Let's not stop at Brexit. It's time London declared independence,http://www.telegraph.co.uk/news/2016/06/28/lets-not-stop-at-brexit-its-time-london-declared-independence/,4,4,koralatov,6/29/2016 13:40 +12301736,Intel Unveils Project Alloy Merged Reality Headset,http://hothardware.com/reviews/intel-unveils-project-alloy-merged-reality-headset-and-partnership-with-microsoft-for-windows-holographic-shell,1,1,davesque,8/17/2016 0:45 +12578975,Saving the Hassle of Shopping,https://blog.menswr.com/2016/09/07/whats-new-with-your-style-feed/,1,1,bdoux,9/26/2016 3:13 +12037787,Bored People Quit (2011),http://randsinrepose.com/archives/bored-people-quit/,14,1,qubitcoder,7/5/2016 16:53 +12112714,Forget the cool kids. Geeks are now shaping new products and services,http://www.economist.com/news/business/21702183-forget-cool-kids-geeks-are-now-shaping-new-products-and-services-be-nice-nerds,2,1,CPAhem,7/18/2016 1:09 +10638381,Ask HN: Any Black Friday deals offered by YC-backed startups?,,5,3,startupsorter,11/27/2015 18:53 +10713408,Can Theranos CEO Elizabeth Holmes Fend Off Her Critics?,http://www.bloomberg.com/news/articles/2015-12-10/can-theranos-ceo-elizabeth-holmes-fend-off-her-critics-,78,59,adventured,12/10/2015 20:58 +12414687,Ghosts of White People Past: Witnessing White Flight from an Asian Ethnoburb,https://psmag.com/ghosts-of-white-people-past-witnessing-white-flight-from-an-asian-ethnoburb-b550ba986cdb,9,2,domador,9/2/2016 17:31 +10812961,"Survival in Space Unprotected Is Possible, Briefly (2008)",http://www.scientificamerican.com/article/survival-in-space-unprotected-possible/,36,37,Thevet,12/30/2015 17:00 +10346805,Show HN: Hackerbuzz Simple HN trends,"http://hackerbuzz.net/#react,ember",4,2,ethan_sutin,10/7/2015 16:05 +11291060,Ask Us Anything: Y Combinator Hardware Companies Crowdfunding,,89,135,liseman,3/15/2016 16:56 +12521347,Startup School Livestream,http://www.startupschool.org/live/,99,36,mtviewdave,9/17/2016 17:13 +12484823,The first 7000 Telstra iPhone 7 preorders,https://docs.google.com/spreadsheets/d/1sbvc05jLmmU6CDEbnLbRnB6aoMmdUY0h5EfJ0xbNFrw/edit#gid=1751116763,1,1,robbiet480,9/13/2016 0:23 +10835933,SmartWatcher the ultimate personal safety app,http://www.smartwatcher.com,1,1,smartwatcher,1/4/2016 15:09 +11144376,CoeLux: Artificial Sunlight Thats Real Enough to Trick Your Camera and Brain,http://petapixel.com/2015/02/09/coelux-artificial-sunlight-thats-good-enough-fool-cameras-brain/,276,81,trefn,2/21/2016 13:18 +10938813,Three year old privilege escalation bug compromises millions of Android phones,http://arstechnica.com/security/2016/01/linux-bug-imperils-tens-of-millions-of-pcs-servers-and-android-phones/,5,2,indus,1/20/2016 15:45 +11250686,"Jeff Bezos Lifts Veil on His Rocket Company, Blue Origin",http://www.nytimes.com/2016/03/09/science/space/jeff-bezos-lifts-veil-on-his-rocket-company-blue-origin.html,275,115,rcurry,3/9/2016 3:27 +11020975,"Spend the Money for the Good Boots, and Wear Them Forever",http://www.nytimes.com/2016/02/02/your-money/spend-the-money-for-the-good-boots-and-wear-them-forever.html?ref=business,1,1,mgav,2/2/2016 17:45 +12038641,Winbuntu Blurring the Lines Between Linux and Windows,http://www.hackeradam17.com/2016/07/05/blurring-the-lines-between-linux-and-windows-with-winbuntu/,19,6,hackeradam17,7/5/2016 18:47 +10908384,The fight to get my countrys language back,http://log.ahmedsaoudi.com/post/131543775748/the-fight-to-get-my-countrys-language-back,3,1,ahmedfromtunis,1/15/2016 10:32 +10308029,The Paper Planes of New York,http://www.newyorker.com/project/portfolio/the-paper-airplane-collector?mbid=social_facebook,16,5,anathebealo,9/30/2015 22:58 +11927885,My Experience Busking in San Francisco,https://stevetjoa.com/busking/,126,52,stevetjoa,6/18/2016 10:42 +10220155,Doing Something About the Impossible Problem of Abuse in Online Games,https://recode.net/2015/07/07/doing-something-about-the-impossible-problem-of-abuse-in-online-games/,9,3,vinnyglennon,9/15/2015 12:15 +11065006,Negative 1.5 Mandelbox,https://sites.google.com/site/mandelbox/negative-mandelbox,74,9,pantalaimon,2/9/2016 13:13 +10871946,Code-Switching to Improve Your Writing and Productivity,https://chroniclevitae.com/news/1242-code-switching-to-improve-your-writing-and-productivity,42,9,ingve,1/9/2016 17:07 +12118253,WADA Report: Russian State Implicated in Athlete Doping,https://www.wada-ama.org/en/media/news/2016-07/wada-statement-independent-investigation-confirms-russian-state-manipulation-of,2,1,pfooti,7/18/2016 21:49 +10638778,Mdast.js AST-based parser for GFM/(Common)Mark(down),https://github.com/wooorm/mdast,3,1,rhythmvs,11/27/2015 20:48 +10498492,Hypit app Hype the things you love,http://hypit.co,1,1,willhypit,11/3/2015 9:50 +10620725, new ArrayBuffer(3*1024*1024*1024) crashes the page in Google Chrome,https://twitter.com/nektra/status/669155335739940869,14,4,wslh,11/24/2015 14:08 +10757953,The last new subway line in Japan,http://gyrovague.com/2015/12/18/the-last-subway-line-in-japan/,125,92,jpatokal,12/18/2015 11:46 +12539522,L4 microkernels: The lessons from 20 years of research and deployment,https://ts.data61.csiro.au/publications/nictaabstracts/Heiser_Elphinstone_16.abstract.pml,218,95,snvzz,9/20/2016 14:00 +11141587,TTIP update I.I,http://opendotdotdot.blogspot.com,1,1,based2,2/20/2016 19:45 +11282948,Dropboxs Exodus from the Amazon Cloud,http://www.wired.com/2016/03/epic-story-dropboxs-exodus-amazon-cloud-empire,671,240,moviuro,3/14/2016 14:07 +10694285,Ask HN: Anyone recommend any _weekly_ news sources?,,7,6,EleventhSun,12/8/2015 1:58 +10909920,Show HN: Pangaea Text preprocessing with JavaScript,https://github.com/matryer/pangaea,7,2,matryer,1/15/2016 15:43 +12529310,Ask HN: In what areas are NoSQL Databases beneficial over Relational Databases?,,74,73,rochak,9/19/2016 6:06 +11520576,Ask HN: Top univ offering an online graduate degree in pure/abstract maths?,,2,3,soulbadguy,4/18/2016 15:19 +11721446,"The f.lens, first optical light collimator for smartphones",http://flens.co/ks,1,1,bozma88,5/18/2016 12:41 +10318620,Ask HN: What YouTube channels are you subscribed to? (Linux servers),,1,1,heike,10/2/2015 14:09 +12078052,Why is VC such a terrible customer experience?,https://maxniederhofer.com/why-is-vc-such-a-terrible-customer-experience-1cb54b455a0#.ss82q54si,4,3,maxniederhofer,7/12/2016 10:59 +10936508,Principles of Design: Cathedral Effect (2012),http://www.doctordisruption.com/design/principles-of-design-45-cathedral-effect/,26,2,nreece,1/20/2016 7:25 +10347546,The government steered millions away from whole milk. Was that wrong?,http://www.washingtonpost.com/news/wonkblog/wp/2015/10/06/for-decades-the-government-steered-millions-away-from-whole-milk-was-that-wrong/,3,3,viggity,10/7/2015 17:40 +10982219,OpenSSH and the dangers of unused code,http://lwn.net/SubscriberLink/672465/4c0bced62cb3e625/,4,1,corbet,1/27/2016 19:05 +10339369,How the World's Most Difficult Bouldering Problems Get Made,http://www.outsideonline.com/2017711/path-beta-flash-resistance-route-setters,116,58,sergeant3,10/6/2015 15:08 +12308832,Louisiana Loses Its Boot to Floods and Rising Oceans,https://medium.com/matter/louisiana-loses-its-boot-b55b3bd52d1e#.i6768r9fy,9,1,jseliger,8/17/2016 22:03 +10227686,"With Virtual Machines, Getting Hacked Doesn't Have to Be That Bad",https://theintercept.com/2015/09/16/getting-hacked-doesnt-bad/,4,2,englishm,9/16/2015 16:17 +12121946,Hints for Computer System Design (1983),http://research.microsoft.com/en-us/um/people/blampson/33-Hints/WebPage.html,69,9,martincmartin,7/19/2016 14:25 +10787764,Perl 6 release announcement,https://perl6advent.wordpress.com/2015/12/24/an-unexpectedly-long-expected-party/,9,1,lazyloop,12/24/2015 10:39 +11575608,Hubble Discovers Moon Orbiting the Dwarf Planet Makemake,https://www.nasa.gov/feature/goddard/2016/hubble-discovers-moon-orbiting-the-dwarf-planet-makemake,122,33,japaget,4/26/2016 21:03 +12205546,Show HN: Klipse code evaluator pluggable on a web page clojure/ruby/JavaScript,https://github.com/viebel/klipse,2,1,viebel,8/1/2016 20:15 +11780635,Elevated Bus Rides Over Traffic to Avoid Congestion,http://laughingsquid.com/chinese-engineers-debut-an-elevated-model-bus-that-rides-over-other-vehicles-to-avoid-traffic/,2,1,powvans,5/26/2016 19:07 +11900653,Ask HN: Which IDE handles very large projects the best?,,3,5,sanjeetsuhag,6/14/2016 8:42 +12541494,Icelands psychedelic Stonehenge,http://www.bbc.com/travel/story/20160916-icelands-psychedelic-stonehenge,29,11,hwayern,9/20/2016 17:47 +12571101,Dripcap - modern packet analyzer based on Electron,https://dripcap.org/,8,1,jonbaer,9/24/2016 14:45 +11821684,Introducing owncloud foundation,https://owncloud.com/blog-introducing-owncloud-foundation/,4,1,programLyrique,6/2/2016 11:29 +12193375,Restoring an unusual vintage clock display,https://tinkerings.org/2016/05/21/restoring-an-unusual-vintage-clock-display/,70,14,mmastrac,7/30/2016 15:33 +10880692,Federal government employees publish their IT projects,https://openopps.digitalgov.gov/tasks,6,1,anton_tarasenko,1/11/2016 13:44 +11477469,The Untouchables Why its getting harder to stop multinational corporations,https://foreignpolicy.com/2016/04/11/the-untouchables-zimbabwe-green-fuel-multinational-corporations/,150,66,AndrewKemendo,4/12/2016 5:40 +10259136,The origin of 99% of DDoS against residential users is Call of Duty,,3,1,SFjulie1,9/22/2015 15:19 +11066618,Amazon Is Building Global Delivery Business to Take on Alibaba,http://www.bloomberg.com/news/articles/2016-02-09/amazon-is-building-global-delivery-business-to-take-on-alibaba-ikfhpyes,5,1,sharathrao,2/9/2016 16:50 +11894094,Considerations when setting up deep learning hardware,http://www.pyimagesearch.com/2016/06/13/considerations-when-setting-up-deep-learning-hardware/,50,13,ingve,6/13/2016 14:21 +11807463,Is license-free a good idea?,,3,2,weinzierl,5/31/2016 16:21 +12060805,Linux Signals Internals,http://sklinuxblog.blogspot.com/2015/05/linux-signals-internals.html,90,30,ingve,7/9/2016 9:52 +10385385,"Usefulness of mnesia, the Erlang built-in database",http://erlang.org/pipermail/erlang-questions/2015-October/086429.html,140,36,motiejus,10/14/2015 7:24 +11822415,Show HN: Automagic billable time tracking generated using open-source plugins,http://itimetrack.com/automagic,27,4,itimetrack,6/2/2016 13:51 +11450270,NASA Is Facing a Climate Change Countdown,http://www.nytimes.com/2016/04/05/science/nasa-is-facing-a-climate-change-countdown.html,116,79,cryptoz,4/7/2016 20:13 +10309752,Optical rectenna' converts light directly into a DC current,http://phys.org/news/2015-09-optical-rectennacombined-rectifier-antennaconverts-dc.html,6,2,chris-at,10/1/2015 7:35 +11725365,The Amorality of Self-Driving Cars,https://nplusonemag.com/online-only/online-only/the-amorality-of-self-driving-cars/,44,69,benbreen,5/18/2016 20:00 +12120065,WebGL Julia Set,https://jonathan-potter.github.io/webgl-shaders/,70,22,roombarampage,7/19/2016 6:06 +10532835,Go IDE in a Docker container,https://medium.com/google-cloud/my-ide-in-a-container-49d4f177de,9,1,nnx,11/9/2015 13:19 +10431627,GitLab 8.1 released,https://about.gitlab.com/2015/10/22/gitlab-8-1-released/,1,1,jobvandervoort,10/22/2015 11:44 +10979092,Let's migrate to Omnibus Gitlab,http://blog.froehlichundfrei.de/2016/01/25/lets-migrate-to-omnibus-gitlab.html,3,4,toxsick,1/27/2016 9:22 +12233336,"Please note, the hashtag is for our paying advertisers",https://twitter.com/EdmondActive/status/761404345908736000,160,58,dogecoinbase,8/5/2016 16:02 +11885987,"The OPEN Government Data Act Would, Uh, Open Government Data",https://www.eff.org/deeplinks/2016/06/open-government-data-act-would-uh-open-government-data,11,1,DiabloD3,6/12/2016 0:01 +12233685,This Image Is Also an HTML Webpage,https://dev.to/ben/this-image-is-also-an-html-webpage,43,2,bhalp1,8/5/2016 16:37 +10270650,Mathematical model suggests London Underground may be 'too fast',http://www.bbc.com/news/science-environment-34334794,32,28,uxhacker,9/24/2015 9:32 +10329400,"Sex, Whipping, and Pottage in Stepney",https://thesocialhistorian.wordpress.com/2015/06/06/sex-whipping-and-pottage-in-stepney/,57,16,benbreen,10/5/2015 0:35 +12402606,Eve Online will be free to play soon,http://www.theverge.com/2016/8/31/12729104/eve-online-free-to-play,9,3,JWLong,9/1/2016 1:23 +10467494,Y Combinator emails are out,,8,4,lettergram,10/28/2015 21:18 +11448930,Austin Startup Sees a Big Future for Little Homes,http://austininno.streetwise.co/2016/01/15/micro-living-austin-kasita-homes-offer-affordable-urban-housing-option/,119,148,alexjray,4/7/2016 17:21 +11481702,Apply HN: utiliz.co revolutionizing how consumers buy electricity,,9,14,magthor,4/12/2016 17:37 +12103523,Purism's 15 Librem Linux laptop with a 4K screen passes pre-production tests,https://puri.sm/posts/4k-at-last-purism-librem-15-rev2-4k/,7,1,jseliger,7/15/2016 20:15 +11803225,How Compaq Cloned IBM and Created an Empire,http://www.internethistorypodcast.com/2014/05/the-incredible-true-story-behind-amcs-halt-and-catch-fire-how-compaq-cloned-ibm-and-created-an-empire/,65,45,jonbaer,5/30/2016 21:12 +10585585,Apple's iTunes Is Alienating Its Most Music-Obsessed Users,http://www.wired.com/2015/11/itunes-alternatives/,81,108,adam,11/18/2015 2:45 +10317457,Estimating Pi with the Mandelbrot Set [video],https://www.youtube.com/watch?v=d0vY0CKYhPY&feature=youtu.be,4,1,ColinWright,10/2/2015 9:12 +12488461,"Show HN: One Glove, a not for profit mission to reclaim missing gloves",http://oneglove.love/,6,4,senoroink,9/13/2016 14:21 +10872370,"Money doesnt kill people, but it changes the fabric of daily life",http://www.theguardian.com/books/2016/jan/02/luc-sante-books-interview,38,5,mazsa,1/9/2016 18:54 +10919253,"Embedded data storage engines, papers and benchmarking",http://engine.so,5,2,pmwkaa,1/17/2016 12:17 +10873175,"Benfords law, Zipfs law, and the Pareto distribution (2009)",https://terrytao.wordpress.com/2009/07/03/benfords-law-zipfs-law-and-the-pareto-distribution/,30,4,dpflan,1/9/2016 22:38 +12413875,66 out of the 100 most cited papers are paywalled,https://www.authorea.com/users/8850/articles/125400/_show_article,2,2,jmnicholson,9/2/2016 15:54 +10469591,"Drone carrying drugs, hacksaw blades crashes at Oklahoma prison",http://www.reuters.com/article/2015/10/27/us-oklahoma-prison-idUSKCN0SL22220151027,39,30,corndoge,10/29/2015 6:37 +10223764,Ask HN: Is webgl a good idea that will never quite make it?,,2,4,forgotAgain,9/15/2015 23:29 +11028426,Looking ahead: Microsoft Edge for developers in 2016,https://blogs.windows.com/msedgedev/2016/02/03/2016-platform-priorities/,3,1,bpierre,2/3/2016 18:27 +10360733,A simple puzzle to tell whether you know what people are thinking,http://www.washingtonpost.com/graphics/business/wonkblog/majority-illusion/,131,35,bemmu,10/9/2015 15:37 +12396035,DANE and DNSSEC Monitoring tools,https://github.com/siccegge/dane-monitoring-plugins,1,1,ashitlerferad,8/31/2016 4:31 +11094923,Long-Lost Mozart-Salieri Collaboration Found in Prague,"http://www.abc.net.au/news/2016-02-13/mozart,-salieri-composition-found-in-prague/7165566",48,20,adamnemecek,2/13/2016 18:03 +11421211,The Secret Lives of Tumblr Teens,https://newrepublic.com/article/129002/secret-lives-tumblr-teens,71,24,samsolomon,4/4/2016 12:13 +11894173,How The Commodore 64 Memory Map Worked [video],https://www.youtube.com/watch?v=qibJpjJ0sdM,91,9,lefticus,6/13/2016 14:35 +12089022,On Being a Black Man,https://blog.devcolor.org/on-being-a-black-man-42ecb7946fe0#.fe75utkuy,370,311,coloneltcb,7/13/2016 19:37 +11724585,Natural language processing of Federal Open Market Committee meeting minutes [pdf],https://www.twosigma.com/uploads/SV_05_16.pdf,2,1,jerryhuang100,5/18/2016 18:42 +12126253,Silicon Valley's Peter Pan Syndrome vs. The Aging of Aquarius,http://fortune.com/2016/07/10/silicon-valley-google-age-bias-discrimination/,1,1,mavelikara,7/20/2016 1:31 +11351919,What Would It Take to Disrupt a Platform Like Facebook?,https://hbr.org/2016/03/what-would-it-take-to-disrupt-a-platform-like-facebook,2,1,mathattack,3/24/2016 11:18 +10463290,Cerebral cortex in rats' brains is set up like the Internet,http://news.usc.edu/79313/study-reveals-internet-like-networks-in-cerebral-cortex-of-rats/,28,19,Oatseller,10/28/2015 8:16 +12373818,Ask HN: Accuracy of ip to geo location?,,3,5,tmaly,8/27/2016 19:38 +11960657,Rise of Darknet Stokes Fear of the Insider,http://krebsonsecurity.com/2016/06/rise-of-darknet-stokes-fear-of-the-insider/,79,20,snowy,6/23/2016 13:24 +12180569,$5 World's Smallest Linux Server. With Wi-Fi,https://onion.io/kickstarter,8,2,bokenator,7/28/2016 14:53 +10740305,To predict the future 1/3 of you need to be crazy,http://steveblank.com/2015/12/15/blanks-rule-to-predict-the-future-13-of-you-need-to-be-crazy/,135,40,rmason,12/15/2015 20:38 +11282352,James Neill: An Introduction to Neural Networks with Kdb+,https://www.youtube.com/watch?v=lqvactClDNQ,1,1,StreamBright,3/14/2016 12:17 +12559100,Chinese teen starves mom to death in fury at brutal Internet addiction boot camp,https://www.washingtonpost.com/news/worldviews/wp/2016/09/22/chinese-teen-starves-mother-to-death-in-fury-at-brutal-internet-addiction-boot-camp/?hpid=hp_hp-more-top-stories_wv-china-starve-1050am%3Ahomepage%2Fstory,11,4,pbhowmic,9/22/2016 18:42 +10925059,Bizarre GitHub Account,https://github.com/pra85,3,1,e-dard,1/18/2016 15:54 +10237625,A high performance caching library for Java 8,https://github.com/ben-manes/caffeine,2,1,shagunsodhani,9/18/2015 5:33 +12240869,StackOverflow languages on weekdays vs. weekends,https://exploratory.io/viz/Hidetaka-Ko/ac88ad801e7d,3,1,huntermeyer,8/7/2016 3:09 +10402312,Show HN: Logcoin Toy crypto-currency based on a zero-knowledge protocol,https://github.com/vpostman/logcoin/blob/master/README.md,25,15,synapticrelease,10/16/2015 22:05 +11942408,Lemmings playable in the Browser,http://bombsite.org/jslems/,2,1,doener,6/20/2016 23:25 +11255206,How [much] to bill out a Junior developer,,1,2,softwarefounder,3/9/2016 19:36 +12557014,Monitoring Microservices (Part I) Discovery: Putting the Puzzle Together,https://www.instana.com/blog/monitoring-microservices-part-i-discovery-putting-the-puzzle-together/,1,1,enricobruschini,9/22/2016 14:31 +11414609,Awesome Chatbot A collection of Chatbot resources,https://github.com/shaohua/awesome-chatbot,5,1,shaohua,4/3/2016 2:14 +12122710,Show HN: NotePlan Markdown task calendar and notes (Public Beta),http://noteplan.co,2,2,EduardMe,7/19/2016 16:34 +10339468,The Black Hole of Software Engineering Research,http://blogs.uw.edu/ajko/2015/10/05/the-black-hole-of-software-engineering-research/,52,69,azhenley,10/6/2015 15:22 +10366907,Intel-Micron 3D XPoint at Xroads,"http://www.tomshardware.com/reviews/intel-micron-3d-xpoint-updates,4286.html",35,3,nkurz,10/10/2015 20:39 +12323231,Ask HN: Why there is no any successful auto based messaging application?,,1,7,ceyhunkazel,8/19/2016 20:30 +12113751,Sort compressed tar archives to make them smaller,https://nctritech.wordpress.com/2010/11/27/sort-compressed-tar-archives-to-make-them-smaller-20-percent-smaller/,3,1,alanfranzoni,7/18/2016 7:59 +12470851,Ask HN: How to deal with a founder that won't leave his job (maybe)?,,2,2,burgund,9/10/2016 20:57 +12241402,TIOBE Index for August 2016: C at an all time low in the TIOBE index,http://www.tiobe.com/tiobe-index/,3,2,denfromufa,8/7/2016 7:38 +10451339,"Show HN: 1000 Angels, a members only investor network",https://www.1000angels.com/,1,1,wf902,10/26/2015 13:45 +12520377,Elon Musk Is Wrong. We Aren't Living in a Simulation,http://motherboard.vice.com/read/we-dont-live-in-a-simulation,5,2,stevenmays,9/17/2016 13:21 +12083550,Virtual Box 5.1,https://www.virtualbox.org/wiki/Changelog,158,63,spv,7/13/2016 2:21 +12512121,Passive investment funds create headaches for antitrust authorities,http://www.economist.com/news/finance-and-economics/21707191-passive-investment-funds-create-headaches-antitrust-authorities-stealth,2,1,vvvv,9/16/2016 5:54 +11813069,Adrian Kosmaczewski Being a Developer After 40 [video],http://blog.appbuilders.ch/2016/05/26/adrian-being-developer-after-40.html,19,1,bontoJR,6/1/2016 9:21 +11719047,SSRN sold to Elsevier,http://www.professorbainbridge.com/professorbainbridgecom/2016/05/ssrn-sold-to-elsevier-from-open-access-to-the-worst-legacy-publisher.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+professorbainbridge%2FsheN+%28ProfessorBainbridge.com+%C2%AE%29,212,47,kristianc,5/18/2016 1:23 +10639861,Ask HN: What will happen when her majesty Queen Elizabeth II passes away?,,5,7,zerocrat,11/28/2015 3:12 +11165191,13 Blog Articles with Database Design Tips and Best Practices,http://www.vertabelo.com/blog/notes-from-the-lab/13-blog-articles-with-database-design-tips-and-best-practices,1,1,pai1009,2/24/2016 7:44 +11283994,Ask HN: Ask them to pay/schedule or handle it myself?,,5,1,tonym9428,3/14/2016 17:12 +11558850,Our preoccupation with gender identity is a cultural step backwards,http://www.prospectmagazine.co.uk/features/gender-good-for-nothing,68,39,nkurz,4/24/2016 6:57 +11354021,Show HN: Watch movies with the freedom to filter,https://github.com/delight-im/MovieContentFilter?hn=2016-03-24,125,143,marco1,3/24/2016 16:16 +10744223,Slack launches app store and an $80M fund to invest in new integrations,http://www.theverge.com/2015/12/15/10235114/slack-app-directory-80-million-fund,1,1,bko,12/16/2015 13:55 +10591245,Show HN: Search for an Instagram user's most liked pictures,http://instagramtoppics.herokuapp.com/,8,3,yongelee,11/18/2015 22:30 +10403633,Formula for an ellipse in 12 dimensions?,,1,2,kingzulu,10/17/2015 6:53 +10627781,Systemd and predictable SSH host keys on raspbian,https://www.raspberrypi.org/forums/viewtopic.php?f=66&t=126892,13,3,moviuro,11/25/2015 16:00 +12237774,Avalonia Alpha 4 A cross-platform .NET UI framework,http://grokys.github.io/avalonia/avalonia-alpha4/,95,18,grokys,8/6/2016 11:34 +11181504,SensorTape: Sensor network in the form factor of a tape,https://www.fastcodesign.com/3057157/mit-has-invented-the-crazy-sensor-loaded-duct-tape-of-the-future,13,1,uptown,2/26/2016 14:28 +11630375,European Central Bank to withdraw €500 note,http://www.bbc.com/news/business-36208146,26,52,tetraodonpuffer,5/4/2016 18:14 +12564736,Django replaced occurrences of master/slave terminology with leader/follower,https://github.com/django/django/pull/2692,3,11,BinaryIdiot,9/23/2016 14:11 +11374105,Webfont Drama March 2016 Edition,https://martinwolf.org/blog/2016/03/webfont-drama-march-2016-edition,2,1,martinwolf,3/28/2016 13:28 +10309013,Amazon Most Wished For,http://www.amazon.com/gp/most-wished-for/ref=zg_bsnr_tab?tag=facebookoffer15-20,5,1,new_light,10/1/2015 3:15 +12127494,Do there exist interest oriented job boards?,,6,1,ZephyrP,7/20/2016 8:03 +11895062,"45 years after the Pentagon Papers, a new challenge to government secrecy",https://www.washingtonpost.com/opinions/45-years-after-the-pentagon-papers-a-new-challenge-to-government-secrecy/2016/06/12/dbbaad20-2ce6-11e6-b5db-e9bc84a2c8e4_story.html,35,25,hackuser,6/13/2016 16:18 +10323025,How Hacker News could help save an innocent man from life in prison,,14,8,ClintEhrlich,10/3/2015 7:50 +10759981,UBeam Crowdfunds $2.6M: Losing Investment Power?,http://labusinessjournal.com/news/2015/dec/18/maker-wireless-charger-losing-investment-power/?page=2,1,1,jazon,12/18/2015 18:28 +11420139,Turkish Citizenship Database Leaked,http://www.ibtimes.co.uk/turkey-political-hacktivist-leaks-citizen-database-containing-50-million-personal-records-1553123,664,259,ponyous,4/4/2016 7:59 +11495019,Turbo Encabulator,https://www.youtube.com/watch?v=rLDgQg6bq7o,2,2,DanielBMarkham,4/14/2016 8:11 +12493822,Swift 3.0 Released,https://swift.org/blog/swift-3-0-released/,210,90,olenhad,9/14/2016 2:16 +12058253,Ask HN: How do you handle transferring large files over the internet?,,8,33,lucasch,7/8/2016 20:04 +11245354,Advanced Guide to Online Publicity Campaigns,https://moz.com/blog/advanced-guide-online-publicity-campaigns,36,3,sjscott80,3/8/2016 14:23 +10414011,Ask HN: Should I incorporate as a freelancer?,,1,4,smockman36,10/19/2015 16:42 +12379646,"Warned of a Crash, Startups in Silicon Valley Narrow Their Focus",http://www.nytimes.com/2016/08/29/technology/warned-of-a-crash-start-ups-narrowed-their-focus.html,230,174,my_first_acct,8/29/2016 2:40 +12025421,The Price of a Child (2013),http://priceonomics.com/the-price-of-a-child/,50,30,oli5679,7/3/2016 9:53 +11226676,The Notebooks of Anton Chekhov,http://jacket2.org/commentary/twenty-six-items-special-collections-r,50,1,lermontov,3/4/2016 20:33 +10410316,"The One Interview Question You Should Always Ask, but No One Ever Does",http://www.inc.com/minda-zetlin/the-deeply-revealing-interview-question-no-one-ever-asks-but-you-should.html?cid=cp01002quartz,3,3,mdariani,10/18/2015 23:37 +11402321,April Fool's day links,,79,51,msoad,4/1/2016 3:18 +12186808,The chip card transition in the US has been a disaster,http://qz.com/717876/the-chip-card-transition-in-the-us-has-been-a-disaster/,7,1,smalera,7/29/2016 13:57 +11454127,What the iPhone has done to cameras is completely insane,https://www.washingtonpost.com/news/wonk/wp/2016/04/07/what-the-iphone-has-done-to-cameras-is-completely-insane/,30,21,Libertatea,4/8/2016 12:30 +12257923,Here's what Yahoo CEO Marissa Mayer said that really made me angry,http://finance.yahoo.com/news/heres-yahoo-ceo-marissa-mayer-204754971.html,33,30,Hansi,8/9/2016 21:45 +10357047,4M missing workers dropped out of the labor force,http://www.epi.org/publication/missing-workers/,2,1,hwstar,10/8/2015 23:12 +11344221,Ask HN: Your job satisfaction?,,12,10,rvpolyak,3/23/2016 13:34 +10669727,The Independent Consulting Manual,http://independentconsultingmanual.com/,17,2,tnorthcutt,12/3/2015 14:34 +11638509,vLine acquired by Airtime,http://blog.vline.com/post/143878881303/vline-has-joined-airtime,9,3,tomtheengineer,5/5/2016 18:17 +10724544,Show HN: Backblaze-b2 is a simple java library for Backblaze B2,https://github.com/Alelak/backblaze-b2,5,2,b2library,12/12/2015 23:02 +10700710,Threat to Detroits Rebound Is the Mortgage Industry,https://nextcity.org/features/view/detroit-bankruptcy-revival-crime-economy-mortgage-loans-redlining,28,31,rmason,12/8/2015 23:44 +11352511,Downvoting posts that prompt significant debate,,8,7,SagelyGuru,3/24/2016 13:26 +11360958,Can you fundraise in Silicon Valley while pregnant?,https://spice.getsourcery.com/can-you-fundraise-in-silicon-valley-while-pregnant-ca0118aa959d,84,121,drpp,3/25/2016 16:27 +11557760,All the special pages of Hacker News,https://github.com/antontarasenko/smq/blob/master/reports/hackernews-special-links.md,2,2,anton_tarasenko,4/23/2016 22:51 +11662582,"A.I. wins the Superfecta at the Kentucky Derby, turns $20 bet into $11k",http://unu.ai/unu-superfecta-11k/,26,20,hbrid,5/9/2016 19:48 +11142645,Evidence that fish have feelings,http://www.bbc.com/earth/story/20160220-do-fish-have-feelings,108,145,JohnHammersley,2/21/2016 0:16 +11922486,Connected cities and unintended consequences,http://us12.campaign-archive2.com/?u=475676e92306092c075e1fbd5&id=1e0875935d&e=7ef49902bf,1,1,nfriedly,6/17/2016 13:25 +10933173,How Valeant Went from Wall St. Darling to Pariah,http://nymag.com/daily/intelligencer/2016/01/valeant-wall-st-darling-to-pariah.html,77,14,chollida1,1/19/2016 19:20 +10367783,There Is No .bro in Brotli: Google/Mozilla Engineers Nix File Type as Offensive,http://tech.slashdot.org/story/15/10/10/2212233/there-is-no-bro-in-brotli-googlemozilla-engineers-nix-file-type-as-offensive,5,3,theodpHN,10/11/2015 2:26 +12238388,"Americans Don't Care About Prison Phone Exploitation, Says FCC Official",http://motherboard.vice.com/read/fcc-official-most-americans-dont-care-about-prison-phone-exploitation,102,87,dsr12,8/6/2016 15:21 +11713721,Software is too important to be left to programmers,http://www.ganssle.com/tem/tem303.html#article2,2,1,muhic,5/17/2016 14:07 +10216467,A Simple Proof That Pi Is Irrational,http://fermatslibrary.com/p/607b76ca,80,71,mgdo,9/14/2015 18:06 +12110767,Whats Behind the Ballooning Upper Middle Class? Education,http://www.bloomberg.com/news/articles/2016-07-14/what-s-behind-the-ballooning-upper-middle-class-education,87,125,adventured,7/17/2016 16:52 +10238528,The Hardest chess problem in the world?,http://hebdenbridgechessclub.blogspot.com/2011/02/hardest-chess-problem-in-world.html,242,129,ColinWright,9/18/2015 11:23 +11860531,How to Qualify Sales Leads with Natural Language Processing,https://medium.com/xeneta/boosting-sales-with-machine-learning-fbcf2e618be3#.be1m9qw2a,2,1,mrborgen,6/8/2016 7:02 +12456312,Arachne WWW Browser for Linux Screenshot,http://www.glennmcc.org/aralinux/arlinux1.gif,1,1,vmorgulis,9/8/2016 19:14 +11277896,The Little Book of Semaphores [pdf],http://www.greenteapress.com/semaphores/downey08semaphores.pdf,226,11,rspivak,3/13/2016 15:00 +10551344,Where Flight Search Engines Fail,https://medium.com/@theorm/where-flight-search-engines-fail-48076f04c226,27,13,flystein,11/12/2015 4:42 +11849397,Ask HN: How are you handling your privacy/security?,,10,4,lnalx,6/6/2016 19:06 +12341815,An Australian skilled independent visa will cost you 3812 USD in 2016,http://www.lasselaursen.com/post/an-australian-skilled-independent-visa-will-cost-you-3812-usd-in-2016,2,2,Gazoo101,8/23/2016 6:33 +10522148,Recreational Maths in Python,http://www.alanzucconi.com/2015/11/03/recreational-maths-python/,36,4,nkurz,11/6/2015 21:25 +11760469,Study monitors programmers' stress levels to predict the quality of their code,https://boingboing.net/2016/05/23/monitoring-programmers-stres.html,67,32,dhotson,5/24/2016 11:04 +12196473,Joys of Noise,http://nautil.us/issue/38/noise/joys-of-noise-rp,52,8,dnetesn,7/31/2016 11:19 +11418630,Go database/sql walkthrough,http://go-database-sql.org,3,1,minaandrawos,4/4/2016 0:31 +11345304,Ask HN: Do you hate social media? and does this app fix that?,,6,2,WithDom,3/23/2016 15:25 +11254621,Trump's biggest enemy: Google,http://edition.cnn.com/2016/02/16/opinions/donald-trump-presidential-obeidallah/,3,1,vincent_s,3/9/2016 18:18 +11945448,My Tests Are Slow,https://truveris.github.io/articles/my-tests-are-slow/,1,1,drewhenson,6/21/2016 13:34 +11524383,Sense.io exits,http://blog.sense.io/sense-joins-cloudera/,1,1,williamstein,4/19/2016 1:45 +10451417,Want a landing page that sells your product?,https://www.landingpagescribes.com,2,1,zenscribes,10/26/2015 13:57 +10625900,So you want to reform democracy,https://medium.com/@joshuatauberer/so-you-want-to-reform-democracy-7f3b1ef10597#.qiniyefdh,3,1,Turukawa,11/25/2015 7:35 +11723091,Ask HN: Best First Steps for a Startup?,,11,8,alistproducer2,5/18/2016 16:26 +11741909,Ask HN: What are the most popular non-English programming languages?,,9,16,holaboyperu,5/20/2016 22:07 +10963686,A Story of a Fuck Off Fund,https://thebillfold.com/a-story-of-a-fuck-off-fund-648401263659#.zdu88diz5,7,1,robin_reala,1/24/2016 19:37 +11527840,"Islet transplantation may correct type 1 diabetes, study says",http://www.upi.com/Health_News/2016/04/18/Islet-transplantation-may-correct-type-1-diabetes-study-says/8751460996474/?spt=hs&or=hn,48,10,aethertap,4/19/2016 15:56 +10870256,How Will Technology Change Criminal Justice?,http://www.rand.org/blog/rand-review/2016/01/how-will-technology-change-criminal-justice.html,16,20,bootload,1/9/2016 5:50 +10489564,Ask HN: Is hacker news now responsive?,,1,1,usaphp,11/2/2015 2:16 +10368321,These Enormous Fans Suck CO2 Out of the Air and Turn It into Fuel,http://www.fastcoexist.com/3051240/these-enormous-fans-suck-co2-out-of-the-air-and-turn-it-into-fuel,3,3,rmason,10/11/2015 6:39 +10444668,Andy Kaufman and Redd Foxx to tour years after death as holograms,http://www.nytimes.com/2015/10/24/arts/andy-kaufman-and-redd-foxx-to-tour-years-after-death.html?_r=1,13,5,rmason,10/24/2015 20:01 +10468943,Medication errors found in half of surgeries,http://news.harvard.edu/gazette/story/2015/10/medication-errors-found-in-1-out-of-2-surgeries/,100,31,DrScump,10/29/2015 2:53 +11950664,"Show HN: A secure, open source U2F token you can make with $4.5 worth of parts",https://github.com/conorpp/u2f-zero,267,92,conorpp,6/22/2016 0:28 +10913549,"Lell.js FRP, State Model, No Boilerplate, Built on Rx",https://github.com/arkverse/lell,37,26,zd,1/16/2016 0:50 +11791415,American Schools Are Teaching Our Kids How to Code All Wrong,http://qz.com/691614/american-schools-are-teaching-our-kids-how-to-code-all-wrong/,3,2,ShaneBonich,5/28/2016 12:38 +11516405,Why Is This Matzo Different from All Other Matzos? An Unintended Side Effect,http://www.nytimes.com/2016/04/17/opinion/sunday/why-is-this-matzo-different-from-all-other-matzos.html,2,1,davidf18,4/17/2016 21:29 +12047732,Show HN: Flasher.js Easily Install JavaScript on ESP8266 WiFi IoT Devices,http://forefront.io/a/introducing-flasher-js/,8,1,achalkley,7/7/2016 6:09 +10548399,Java Tops TIOBE's Popular-Languages List,http://insights.dice.com/2015/11/11/java-tops-tiobes-popular-languages-list/,2,1,SunTzu55,11/11/2015 18:51 +12573378,Phone Makers Could Cut Off Drivers. So Why Dont They?,http://www.nytimes.com/2016/09/25/technology/phone-makers-could-cut-off-drivers-so-why-dont-they.html?_r=0,12,57,msabalau,9/25/2016 1:13 +11638086,Ford Pours $182M into Pivotal,http://fortune.com/2016/05/05/pivotal-ford-microsoft-funding/,3,1,walterclifford,5/5/2016 17:30 +10360135,Fear and sadness in Silicon Valley,http://fortune.com/2015/10/09/fear-loathing-silicon-valley/,5,2,egusa,10/9/2015 14:15 +10263162,"E-Book Sales Slip, and Print Is Far From Dead",http://www.nytimes.com/2015/09/23/business/media/the-plot-twist-e-book-sales-slip-and-print-is-far-from-dead.html,3,3,sinak,9/23/2015 3:20 +11351389,Clinton Calls for 'Intelligence Surge' to Fight ISIS NYT,http://www.nytimes.com/politics/first-draft/2016/03/23/hillary-clinton-calls-for-intelligence-surge-to-fight-isis/,1,1,crocowhile,3/24/2016 8:49 +10287342,"Variety Jones: A Corrupt FBI Agent Is Hunting Me, So I'm Turning Myself In",http://motherboard.vice.com/read/variety-jones-a-corrupt-fbi-agent-is-hunting-me-so-im-turning-myself-in,6,1,herendin,9/27/2015 18:15 +11232679,"Ray Tomlinson, creator of e-mail, has passed away",http://joshrowe.com/2016/03/06/rip-largest-social-media-network-founder/?utm_content=buffer638d2&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,6,1,hccampos,3/6/2016 6:03 +11418277,Object-Oriented Programming is Bad,https://www.youtube.com/watch?v=QM1iUe6IofM,28,2,Fr0styMatt88,4/3/2016 23:12 +11080091,Show HN: Pull-to-action gestures for angular,https://github.com/FDIM/ng-pull,2,1,fdim,2/11/2016 13:56 +10399854,Google Wins Appeals Court Approval of Book-Scanning Project,http://www.bloomberg.com/news/articles/2015-10-16/google-wins-appeals-court-approval-of-book-scanning-project-iftpwxl3,374,85,ghukill,10/16/2015 15:16 +11466514,Algorithmically generated prior art,http://allpriorart.com/about/,127,35,dirkk0,4/10/2016 15:23 +11589894,The other white powder that can kill you,http://www.thedailybeast.com/articles/2016/04/28/the-other-white-powder-that-can-kill-you.html?utm_source=fark&utm_medium=website&utm_content=link,7,2,13of40,4/28/2016 16:11 +11941739,Twitch Sues Over Bots Artificially Inflating Broadcasters' Popularity,http://www.hollywoodreporter.com/thr-esq/video-game-streamer-twitch-sues-904113,2,1,spenczar5,6/20/2016 21:31 +11139589,Does anyone else experience Sky traffic shaping SSH,,7,3,mrmattyboy,2/20/2016 10:09 +10674955,Japanese researchers created holograms you can touch,http://www.businessinsider.com/japanese-researchers-create-holograms-you-can-touch-2015-12,1,1,cjdulberger,12/4/2015 6:08 +12289246,"OSTIF, QuarksLab, and VeraCrypt E-mails Are Being Intercepted",https://ostif.org/ostif-quarklab-and-veracrypt-e-mails-are-being-intercepted/,18,5,y0ghur7_xxx,8/15/2016 8:10 +10807801,San Francisco's Self-Defeating Housing Activists,http://www.theatlantic.com/politics/archive/2015/12/san-francisco-is-confused-about-the-villain-thats-making-it-unaffordable/422091/?single_page=true,30,2,selleck,12/29/2015 17:32 +12242096,I Have No Confidence So This Is What I Do,http://www.jamesaltucher.com/2016/07/i-have-no-confidence/,11,7,rspivak,8/7/2016 14:01 +11254300,Amazon to start air delivery network with leasing deal,http://in.reuters.com/article/air-transport-sr-amazon-com-idINKCN0WB1PK,29,19,antr,3/9/2016 17:32 +11888662,Show HN: Tablesaw: A Java data-frame for 500M-row tables,https://github.com/lwhite1/tablesaw,6,1,ljw1001,6/12/2016 15:59 +11414951,Ask HN: Scientific pursuits that are feasible on your own?,,10,9,Ehrlich,4/3/2016 4:40 +11917524,"'Funny for Thee, but Not for Me', ISIS, Activists, and Unintended Consequences",http://brandon.zeroqualms.net/funny-for-thee-but-not-for-me-ISIS/,2,1,tenkabuto,6/16/2016 17:23 +10233464,How GOG.com Saves and Restores Classic Videogames,http://www.rockpapershotgun.com/2015/09/16/how-gog-com-save-and-restore-classic-videogames/,270,84,danso,9/17/2015 14:19 +10796026,Unix on a PDP-11 emulator on the Game Boy Advance (2004),http://www.kernelthread.com/publications/gbaunix/,67,5,soundsop,12/27/2015 1:28 +11253698,Lets Encrypt client will transition to a new name and a new home at EFF,https://letsencrypt.org/2016/03/09/le-client-new-home.html,321,44,riqbal,3/9/2016 16:01 +10925843,"Sensors Slip into the Brain, Then Dissolve When Their Job Is Done",http://spectrum.ieee.org/view-from-the-valley/biomedical/devices/siliconbased-sensors-slip-into-the-brain-then-dissolve-when-their-jobs-are-done,3,1,teklaperry,1/18/2016 18:12 +10391585,"So, *this* is what the Army thinks #futurewar is going to look like",http://smallwarsjournal.com/jrnl/art/net-assessment-threats-to-future-army-acquisitions,3,1,SocksCanClose,10/15/2015 6:00 +11158746,LINKD Game Changing Dating App for London?,http://linkd.co,1,1,zatd,2/23/2016 13:45 +11701126,Its OK Not to Use a Smartphone,http://www.wsj.com/articles/its-ok-not-to-use-a-smartphone-1461780160,4,2,skbohra123,5/15/2016 14:56 +10319681,World map of the difference between solar and clock time,http://blog.poormansmath.net/the-time-it-takes-to-change-the-time/,219,39,gmac,10/2/2015 16:54 +11432324,60M People Are Now Slated to Get $15 Minimum Wage,https://theintercept.com/2016/04/05/skeptics-said-15-minimum-wage-movement-was-unrealistic-60-million-people-are-now-slated-to-get-it/,15,9,nomoba,4/5/2016 17:18 +10902272,Linus is just an engineer,https://git.kernel.org/cgit/devel/sparse/chrisl/sparse.git/tree/FAQ#n30,3,1,vmorgulis,1/14/2016 16:19 +10736600,A simple explanation of Chinese characters,https://medium.com/@adrieng/a-simple-explanation-of-chinese-characters-50f922ebe4e6#.hykxyoal9,127,76,agrand,12/15/2015 8:24 +10788854,Unix toolchain and CLI on Windows: current state of the art?,,2,3,dmd,12/24/2015 17:29 +11512400,Federation Is the Future for an Open Web,http://beza1e1.tuxen.de/federation_future.html,3,2,qznc,4/16/2016 21:49 +10531287,Comcast leak shows that data caps aren't about congestion,http://consumerist.com/2015/11/06/leaked-comcast-doc-admits-data-caps-have-nothing-to-do-with-congestion/,3,1,finnn,11/9/2015 3:51 +10376733,Should bike helmets be compulsory? Lessons from Seattle and Amsterdam,http://www.theguardian.com/cities/2015/oct/12/bike-helmets-compulsory-seattle-amsterdam-cycling-safety,18,70,chowyuncat,10/12/2015 20:18 +11117377,Alert HN: X.org suddenly isn't resolving,,4,4,i336_,2/17/2016 12:32 +12125141,Russia Asks for the Impossible with Its New Surveillance Laws,https://www.eff.org/deeplinks/2016/07/russia-asks-impossible-its-new-surveillance-laws,43,9,dwaxe,7/19/2016 21:40 +11160492,The first TV show about competitive video gaming,http://www.latimes.com/business/technology/la-fi-la-tech-20160213-story.html,2,1,laurex,2/23/2016 17:22 +11194779,Morrisons signs deal to sell food to Amazon customers,http://www.bbc.co.uk/news/business-35684829,3,1,yomly,2/29/2016 11:14 +11927775,Open access: All human knowledge is thereso why cant everybody access it?,http://arstechnica.com/science/2016/06/what-is-open-access-free-sharing-of-all-human-knowledge/,3,1,edward,6/18/2016 9:50 +11359663,UTF-8 Encoding Debugging Chart,http://www.i18nqa.com/debug/utf8-debug.html,116,11,tard,3/25/2016 12:33 +11454096,Millennials Are Out-Reading Older Generations (2014),http://www.theatlantic.com/technology/archive/2014/09/millennials-are-out-reading-older-generations/379934/?single_page=true,3,1,winterismute,4/8/2016 12:24 +10179467,India's Forgotten Stepwells,http://www.archdaily.com/395363/india-s-forgotten-stepwells,295,36,juanplusjuan,9/6/2015 23:14 +10419120,Tech Startups Feel an IPO Chill,http://on.wsj.com/1GftiDt,2,1,vanderfluge,10/20/2015 13:56 +11021563,"New European, U.S. data transfer pact agreed",http://www.reuters.com/article/us-eu-dataprotection-usa-accord-idUSKCN0VB1RN,104,40,Sami_Lehtinen,2/2/2016 18:59 +11854615,Bots: Use for Job Search,,1,1,IntoBot,6/7/2016 14:11 +10541450,Updates to Chrome platform support,http://chrome.blogspot.com/2015/11/updates-to-chrome-platform-support.html,97,86,cleverjake,11/10/2015 18:54 +11839943,The J1 Forth CPU (2010),http://excamera.com/sphinx/fpga-j1.html,64,54,panic,6/5/2016 6:52 +12507448,411 An Alert Management Web Application,https://fouroneone.io/,86,30,ApsOps,9/15/2016 16:23 +10690498,Ask HN: Can I use TensorFlow without knowing even Elementary Algebra?,,4,2,sanosuke,12/7/2015 16:37 +11102588,The Independent: first victim of a confounding digital future,http://www.theguardian.com/media/2016/feb/14/independent-first-victim-confounding-digital-future,56,37,nkurz,2/15/2016 10:27 +11472232,The Swedish Number Talk with a Random Swede,http://theswedishnumber.com,273,204,iriche,4/11/2016 15:37 +11384586,"New NASA Launch Control Software Late, Millions Over Budget",http://abcnews.go.com/Technology/wireStory/nasa-launch-control-software-late-millions-budget-37981857,1,1,zeristor,3/29/2016 20:26 +10336637,What Taking On Google Taught Me About Startup Traction,https://www.fastcompany.com/3051613/lessons-learned/what-taking-on-google-taught-me-about-startup-traction,36,10,kareemm,10/6/2015 3:41 +12034200,Data Mining Reveals the Crucial Factors That Determine When People Make Blunders,https://www.technologyreview.com/s/601774/data-mining-reveals-the-crucial-factors-that-determine-when-people-make-blunders/,19,7,adamnemecek,7/5/2016 3:08 +11871689,Ask HN: What would you change about the App Store?,,1,2,Aqua_Geek,6/9/2016 19:27 +10967401,Ask HN: Is Google Adsense worth it for a small website?,,2,4,tablock,1/25/2016 14:45 +11733449,Arbitrage Discovered (2015),http://www.bloomberg.com/view/articles/2015-02-27/arbitrage-discovered,159,35,Tomte,5/19/2016 20:19 +10775505,"Lets continue to build Product Hunt, together",https://medium.com/@rrhoover/let-s-continue-to-build-product-hunt-together-fd5bed490bfe#.bhhlc2h4y,94,83,csmajorfive,12/22/2015 2:58 +12001378,Using Animation to Design Better User Experiences,http://www.callumhart.com/blog/using-animation-to-design-better-user-experiences,1,1,callum_hart,6/29/2016 13:09 +11802386,Flappy Bird Bot Reinforcement Learning AI,https://github.com/chncyhn/flappybird-qlearning-bot,2,2,indatawetrust,5/30/2016 18:11 +10587465,Ask HN: Can I be a good operations manager solely based on logic,,2,2,Technomaniacz,11/18/2015 13:12 +10825332,Apple is going to have a tough year,http://www.businessinsider.com/apple-is-going-to-have-a-tough-year-2015-12?op=1,26,36,prostoalex,1/2/2016 6:27 +12539860,Peter Thiel is wrong about the cities spearheading startup success,http://www.recode.net/2016/9/19/12973152/peter-thiel-wrong-about-chicago-midwest-entrepreneurs-silicon-valley,3,1,tedmiston,9/20/2016 14:41 +10509332,Humans of New York and the Cavalier Consumption of Others,http://www.newyorker.com/books/page-turner/humans-of-new-york-and-the-cavalier-consumption-of-others,35,17,prismatic,11/4/2015 20:17 +12095313,DQN for Beginners in 200 lines of python code to play Flappy Bird with Keras,https://yanpanlau.github.io/2016/07/10/FlappyBird-Keras.html,5,1,yanpanlau,7/14/2016 16:40 +11411449,BOX-256: a tiny game about writing assembly code to pass the graphics tests,http://juhakiili.com/box256/,91,40,ingve,4/2/2016 13:37 +10805902,"Apparently, zero divided by zero equals 2",,2,1,sdiq,12/29/2015 9:20 +11388807,Apple Supplier Foxconn Agrees to $3.5B Takeover of Sharp,http://www.macrumors.com/2016/03/30/foxconn-sharp-acquisition-finalized/,2,1,japaget,3/30/2016 12:44 +11214354,Why Garbage Collection Is Not Necessary and Actually Harmful,http://mortoray.com/2011/03/30/why-garbage-collection-is-not-necessary-and-actually-harmful/,2,1,piokuc,3/3/2016 1:08 +11470144,Denmarks spy agency is creating a training academy for hackers,http://qz.com/657357/denmarks-spy-agency-is-creating-a-training-academy-for-hackers/,3,1,tonybeltramelli,4/11/2016 7:41 +10804910,Twitter Hires New VP of Diversity and Inclusion from Apple,http://techcrunch.com/2015/12/28/twitter-hires-new-vp-of-diversity-and-inclu-from-apple/,2,1,dsr12,12/29/2015 2:59 +10263787,The license is the license,http://www.boldport.com/blog/2015/9/22/the-license-is-the-license,61,4,detaro,9/23/2015 7:42 +11579714,Facebook as Neo-Feudalism,http://www.novelog.com/facebook-as-neo-feudalism/,7,8,thatusertwo,4/27/2016 12:22 +12441379,Scala 2.12.0-RC1 released,https://issues.scala-lang.org/projects/SI/versions/11503,59,15,pedrorijo91,9/7/2016 7:05 +11526458,Ask HN: Where to find e-commerce software developers communities?,,10,6,sedzia,4/19/2016 12:32 +11121534,Popehat Signal: Urologist Threatens Forum,https://popehat.com/2016/02/17/popehat-signal-urologist-threatens-penis-enhancement-forum/,2,1,protomyth,2/17/2016 21:24 +11077816,"Caffeine Doesn't Give You Heart Palpitations, Study Finds",http://www.nbcnews.com/health/heart-health/caffeine-doesn-t-give-you-heart-palpitations-study-finds-n504741,6,1,hectorxp,2/11/2016 2:17 +11086808,Trilobites Were Stone-Cold Killers,http://www.livescience.com/53682-trilobites-were-savvy-killers.html,1,1,kurthamm,2/12/2016 12:46 +11716914,This is your brain on mathematics,https://anthonybonato.com/2016/04/20/this-is-your-brain-on-mathematics/,45,23,greydius,5/17/2016 20:05 +11852262,7 Reasons Why European Cities Will Be Better Innovation Hubs,http://www.fastcoexist.com/3060446/world-changing-ideas/7-reasons-why-european-cities-are-going-to-beat-us-cities-as-hubs-for-i,1,1,jkmcf,6/7/2016 3:44 +10578711,A case for microservices,http://peter.bourgon.org/a-case-for-microservices/,15,2,pje,11/17/2015 1:56 +12563718,Parents Behind Bars,http://www.ua-magazine.com/us-incarceration/,17,50,unitedacademics,9/23/2016 11:19 +12118439,Ask HN: Good options for next career?,,6,2,hadenough,7/18/2016 22:41 +11693735,Warren Buffett Bidding for Yahoo Assets with Quicken Loans Founder,http://www.cnbc.com/2016/05/13/warren-buffett-bidding-for-yahoo-assets-with-quicken-loans-founder.html,35,16,geoffwoo,5/13/2016 22:58 +10552504,Manhattan Project National Historical Park,http://www.energy.gov/management/office-management/operational-management/history/manhattan-project/manhattan-project-0,16,3,Oatseller,11/12/2015 11:22 +12140755,What is the better way to start my career: Uber or Zenefits? (2014),https://www.quora.com/What-is-the-better-way-to-start-my-career-Uber-or-Zenefits?share=1,1,1,yuhong,7/21/2016 23:27 +10676127,Ebooks for All: Building Digital Libraries in Ghana with Worldreader,http://craigmod.com/sputnik/worldreader/,5,1,Tomte,12/4/2015 13:21 +11019733,"Bank Tellers, with Access to Accounts, Pose a Rising Security Risk",http://www.nytimes.com/2016/02/02/nyregion/bank-tellers-with-access-to-accounts-pose-a-rising-security-risk.html?ref=business,2,2,pavornyoh,2/2/2016 14:56 +10239285,Ask HN: Can you name companies (5+ employees) with distributed/nomadic teams?,,20,25,traviagio,9/18/2015 14:11 +11424313,From Leading the Egyptian Revolution to Making Minimum Wage in San Francisco,http://priceonomics.com/how-i-went-from-leading-the-egyptian-revolution-to/,135,59,pmcpinto,4/4/2016 18:47 +12440559,House of keys: 9 Months later... 40% Worse,http://blog.sec-consult.com/2016/09/house-of-keys-9-months-later-40-worse.html,2,1,robotdad,9/7/2016 2:02 +11701618,"The Appropriate Weight of Grief Men, Cats, and the Writing Life",https://medium.com/@michaelzadoorian/the-appropriate-weight-of-grief-ff7f597d41ba,39,9,iamben,5/15/2016 16:52 +12264700,Ninja VPN,,4,1,joelpendleton,8/10/2016 20:57 +10979303,Why Im not speaking at CPDP: Its the privacy-washing,https://ar.al/notes/why-im-not-speaking-at-cpdp/,219,59,detaro,1/27/2016 10:28 +10266507,Go Will Dominate the Next Decade,https://www.linkedin.com/pulse/go-dominate-next-decade-ian-eyberg,13,10,bsg75,9/23/2015 17:34 +11249876,That Thumbprint Thing on Your Phone Is Useless Now,http://www.defenseone.com/technology/2016/03/so-thumbprint-thing-your-phone-useless-now/126523/,29,21,rbc,3/9/2016 0:13 +11239927,India Initiates WTO Complaint Against U.S. Over H-1Bs,http://cis.org/cadman/india-initiates-dispute-against-us-world-trade-organization,5,1,griff1986,3/7/2016 17:00 +11416284,How to install Docker/Kubernetes from scratch on OS X,https://gist.github.com/Nikkau/8f4badc0d87871b5feb4,10,2,mfburnett,4/3/2016 14:47 +12050955,How to Put Machine Learning in Your Machine Learning,https://blog.bigml.com/2016/07/07/how-to-put-machine-learning-in-your-machine-learning/,2,1,aficionado,7/7/2016 17:50 +10430276,Car and Driver's Review of the 1981 De Lorean (1981),http://www.caranddriver.com/reviews/1981-de-lorean-archived-first-drive-review,64,49,benbreen,10/22/2015 3:38 +11109638,Show HN: What the status code? Find out what status code you should use,http://alexmeah.com/what-the-status-code,9,2,pezza3434,2/16/2016 13:31 +11840406,Mean of two floating point numbers can be dangerous,http://blog.honzabrabec.cz/2016/06/05/mean-of-two-floating-point-numbers-can-be-dangerous/,79,45,Scea91,6/5/2016 11:03 +11374446,Ask HN: How did you settle on a Linux distro?,,1,2,AdmiralAsshat,3/28/2016 14:32 +10930871,LastPass mitigates phishing flaw in its password management software,https://blogs.csc.com/2016/01/18/lastpass-mitigates-phishing-flaw-in-its-password-management-software/,2,1,crneff,1/19/2016 14:19 +11328397,"How Anonymous Just Fooled Donald Trump, the Secret Service, and the FBI",http://anonhq.com/anonymous-just-fooled-donald-trump-secret-service-fbi/?utm_campaign=shareaholic&utm_medium=reddit&utm_source=news,9,4,BinaryIdiot,3/21/2016 14:45 +10900493,Cinema Seating Preview,http://tympanus.net/Development/SeatPreview/,5,2,hising,1/14/2016 10:20 +10349611,Ask HN: How to keep up?,,7,9,AbdulBahajaj,10/7/2015 22:34 +10841565,Show HN: GICN Crunchbase for Global Indian Business Leaders,http://www.gicn.in/,2,1,ravimevcha,1/5/2016 6:09 +12108280,UK Man Found Not GUILTY of Sex Offense Must Give Cops 24h Notice Before Sex,http://www.freerangekids.com/man-found-not-guilty-of-sex-offense-must-give-cops-24-hour-notice-before-he-has-sex/,3,1,gkya,7/16/2016 23:28 +12024217,Mount Improbable: Play With Evolution,http://www.mountimprobable.com/,61,13,gwern,7/2/2016 23:45 +11572123,Drawbridge Windows Containers 5 years ago?,https://channel9.msdn.com/Shows/Going+Deep/Drawbridge-An-Experimental-Library-Operating-System,1,1,itaysk,4/26/2016 14:27 +11334619,GitLab Enterprise Edition price change,https://about.gitlab.com/2016/03/21/gitlab-enterprise-edition-price-change/,120,33,EspadaV9,3/22/2016 5:38 +10764492,Ask HN: Should I drop out of my second bachelors?,,6,7,orange_county,12/19/2015 19:08 +11203150,Swift Web Application Framework Swift Express,http://swiftexpress.io/,6,1,sofijka,3/1/2016 15:25 +10664708,Ask HN: Who is firing?,,3,2,ychandler,12/2/2015 18:16 +10647943,Show HN: An open-source top-down action-adventure game,http://nicole.express/?games/as2,6,1,nicole_express,11/30/2015 5:36 +12051270,The macOS Sierra public beta comes out later today,http://arstechnica.com/apple/2016/07/psa-the-macos-sierra-public-beta-comes-out-later-today/,2,1,mpweiher,7/7/2016 18:40 +11522571,Googles Surprising Role as Privacy Watchdog in Europe,http://www.nytimes.com/2016/04/19/technology/google-europe-privacy-watchdog.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=second-column-region®ion=top-news&WT.nav=top-news&_r=0,40,9,hvo,4/18/2016 19:39 +11894974,Java StringBuffer and StringBuilder performance,http://alblue.bandlem.com/2016/04/jmh-stringbuffer-stringbuilder.html,54,53,ingve,6/13/2016 16:06 +10786858,Make Your Own Gmail,https://scriptermail.com/,12,3,mikecarlton,12/24/2015 3:02 +10623112,Airline Baggage Fees Are a Good Deal for Travelers,https://www.flexport.com/blog/airline-baggage-fees-are-a-good-deal-for-travelers/,13,33,negrit,11/24/2015 19:46 +10880443,Four young engineers bring free Wi-Fi in Indian villages,http://mashable.com/2016/01/11/free-wifi-indian-villages,3,2,ChrisCinelli,1/11/2016 12:41 +11965738,I need some advise about honesty,,8,13,dirty-ex-smoker,6/24/2016 1:58 +10763322,An Unusual Proof of the Doodle Theorem,http://www.solipsys.co.uk/new/AnotherProofOfTheDoodleTheorem.html?HN_20151219,17,7,ColinWright,12/19/2015 11:42 +11437243,Traffic analysis WhatsApp's end-to-end encryption (2015),http://www.heise.de/ct/artikel/Keeping-Tabs-on-WhatsApp-s-Encryption-2630361.html,3,1,whyagaindavid,4/6/2016 7:34 +10247497,"The Rise and Fall of Quirky, a Startup That Bet on the Genius of Regular Folks",http://nymag.com/daily/intelligencer/2015/09/they-were-quirky.html,15,2,kanamekun,9/20/2015 13:52 +12494998,Pardon Snowden,https://www.pardonsnowden.org/,2553,781,erlend_sh,9/14/2016 8:31 +11200997,Samsung is building 256GB memory chips for smartphones,http://www.engadget.com/2016/02/25/samsung-is-building-256gb-memory-chips-for-smartphones/,4,1,dmmalam,3/1/2016 5:51 +11221131,How Snapchat makes money,http://www.bloomberg.com/features/2016-how-snapchat-built-a-business/,7,2,iwonagr,3/4/2016 0:31 +11201680,Ask HN: At what age did you obtain your PhD?,,2,1,8sigma,3/1/2016 9:29 +12020084,"Miguel de Icaza: As of today, I am officially miguelMicrosoft.com",https://twitter.com/migueldeicaza/status/748991444321525760,4,1,rbanffy,7/1/2016 22:15 +11712511,Hledger entries with Haskell and Elm,https://github.com/narendraj9/hledger-serve,3,2,narendraj9,5/17/2016 10:50 +11725048,Bots Are Hot (1996),http://www.wired.com/1996/04/netbots/,121,47,vincvinc,5/18/2016 19:31 +11960329,Ask HN: How should an Entrepreneur meetup be?,,2,1,event_noob,6/23/2016 12:11 +12103471,J-core Open Processor,http://j-core.org/,35,2,lisper,7/15/2016 20:06 +11348396,Report: Apple building its own servers to prevent snooping,http://9to5mac.com/2016/03/23/apple-cloud-infrastructure-servers-snooping/,231,107,dankohn1,3/23/2016 21:26 +10958027,Is Uber the Next Webvan? Will Uber Go Bankrupt?,http://siliconangle.com/blog/2016/01/22/is-uber-the-next-webvan-will-uber-go-out-of-bankrupt/,6,3,miralabs,1/23/2016 11:21 +12359438,Ask HN: How do you feel about the future prospects of Rust?,,2,1,AsyncAwait,8/25/2016 14:51 +10438437,Half of Black Cabs Will Go Electric in 5 Years,http://www.thememo.com/2015/10/22/as-environmental-fears-soar-london-black-cabs-ditch-diesel-as-they-go-electric/,2,1,alexwoodcreates,10/23/2015 13:40 +11292778,Amazon Wants Patent for Paying with a Selfie Photo,http://recode.net/2016/03/14/amazon-wants-the-patent-for-pay-by-selfie/,3,1,cpeterso,3/15/2016 20:36 +10408381,OpenBSD 5.8 released,http://www.openbsd.org/58.html,171,34,protomyth,10/18/2015 14:57 +11193488,How Amazon Web Services Uses Formal Methods,http://cacm.acm.org/magazines/2015/4/184701-how-amazon-web-services-uses-formal-methods/fulltext,6,6,tim_sw,2/29/2016 3:45 +10632419,Simpler syndication,http://leancrew.com/all-this/2015/11/simpler-syndication/,5,4,ingve,11/26/2015 11:00 +10971698,How Microsoft Plans to Beat Google and Facebook to the Next Tech Breakthrough,http://www.bloomberg.com/features/2016-microsoft-research/,94,72,Qworg,1/26/2016 3:43 +10203237,English as a programming language,https://github.com/pannous/english-script/,4,6,dave_chenell,9/11/2015 12:25 +10733370,Why the U.S. Navy's new $362M ship broke down,http://www.businessinsider.com/why-navy-uss-milwaukee-broke-down-2015-12,19,13,MarlonPro,12/14/2015 19:58 +10976993,Golden rules for becoming a better programmer,http://www.codeshare.co.uk/blog/10-golden-rules-for-becoming-a-better-programmer/,84,78,piess,1/26/2016 23:13 +10400730,Solu: The world's smallest general-purpose computer #1 on Product Hunt,https://www.producthunt.com/tech/solu,1,1,juhani,10/16/2015 17:21 +10479569,Ask HN: Feedback on design?,,2,1,tmaly,10/30/2015 18:25 +11396686,Show HN: File Upload Hacking Challenges,https://github.com/breakthenet/file-upload-exercises,36,2,emeth,3/31/2016 12:40 +10506038,Rain and Water Effect Experiments,http://tympanus.net/codrops/2015/11/04/rain-water-effect-experiments/,161,30,antouank,11/4/2015 12:32 +12071559,Happy ManhattanHenge,http://abc7ny.com/news/manhattanhenge-returns-monday-lighting-up-streets-from-east-to-west/1421677/,46,22,brudgers,7/11/2016 15:09 +12531873,Possible algorithm to detect duplicate text in a string?,,1,2,waqasshabir,9/19/2016 14:55 +10776426,Facebooks Save Free Basics in India Campaign Provokes Controversy,http://techcrunch.com/2015/12/17/save-free-basics/,63,58,potench,12/22/2015 7:49 +12276206,Ask HN: Recommendations for Expert Level JavaScript Classes,,3,1,needjshelp,8/12/2016 14:57 +10579915,How to Win a Hackathon: Experiences from a Mobile Developer,https://medium.com/@lucasfarah/how-to-win-a-hackathon-experiences-from-a-mobile-developer-d26fb3461b5a,2,2,troydo42,11/17/2015 8:53 +10280512,Study: Retiring later may be good for your health,http://www.cdc.gov/pcd/issues/2015/15_0040.htm,29,18,tinalumfoil,9/25/2015 20:32 +12491935,Marc Andreessen on the atomization of AI,https://techcrunch.com/2016/09/13/marc-andreessen-on-the-atomization-of-ai/,100,44,sdebrule,9/13/2016 20:28 +10495033,Somebody Just Claimed a $1M Bounty for Hacking the iPhone,http://motherboard.vice.com/read/somebody-just-won-1-million-bounty-for-hacking-the-iphone,115,30,bko,11/2/2015 20:39 +10201744,On psychedelics: researchers are heading into the world of psychedelics,http://aeon.co/magazine/psychology/erik-davis-psychedelics/,3,2,prostoalex,9/11/2015 2:49 +11073299,Sacramento Bee Puts Google Self-Driving Cars to the Test,http://www.sacbee.com/news/local/transportation/back-seat-driver/article58899473.html,1,1,ocdtrekkie,2/10/2016 15:23 +11149963,"Show HN: Lewis, a new Android Linter",http://inaka.net/blog/2016/02/15/presenting-lewis-our-own-android-lint-extension/,6,1,elbrujohalcon,2/22/2016 11:00 +11828732,"Functional Core, Reactive Shell",http://www.mokacoding.com/blog/functional-core-reactive-shell,89,19,mokagio,6/3/2016 6:39 +10564720,Ask HN: What investment insturments will correlate with AI breakthroughs?,,3,1,siavosh,11/14/2015 6:19 +12126203,"Volkswagen Scandal Reaches All the Way to the Top, Lawsuits Say",http://www.nytimes.com/2016/07/20/business/international/volkswagen-ny-attorney-general-emissions-scandal.html,4,2,jonknee,7/20/2016 1:15 +11963379,Federal Court: The Fourth Amendment Does Not Protect Your Home Computer,https://www.eff.org/deeplinks/2016/06/federal-court-fourth-amendment-does-not-protect-your-home-computer,28,11,disposition2,6/23/2016 18:39 +12502506,How do I land my next gig? or Should I change Careers?,,13,4,indio-jr,9/15/2016 0:35 +11048634,Tech's Most Unlikely Venture Capitalist,https://medium.com/@pejmannozad/tech-s-most-unlikely-venture-capitalist-bb002488f297#.i0as6zadl,3,2,juanplusjuan,2/6/2016 17:24 +10646989,Activate power mode for Atom,https://atom.io/packages/activate-power-mode,3,1,julee04,11/30/2015 1:00 +11186914,How America Made Donald Trump Unstoppable,http://www.rollingstone.com/politics/news/how-america-made-donald-trump-unstoppable-20160224,14,2,douche,2/27/2016 12:25 +12153146,The Insect Portraits of Levon Biss,http://microsculpture.net,15,6,Luyt,7/24/2016 12:35 +10454098,Genetic Chimera: Man Who Was Never Born Fathers a Child,http://www.neatorama.com/2015/10/24/Man-Who-Was-Never-Born-Fathers-a-Child/?utm_medium=social&utm_campaign=postplanner&utm_source=facebook.com,17,2,KerryJones,10/26/2015 20:10 +12052048,Optimal Tip-to-Tip Efficiency a model for male audience stimulation [pdf],http://people.duke.edu/~etm7/optimal_tip_to_tip_efficiency.pdf,8,2,chirau,7/7/2016 21:01 +11150444,Samson and JavaScript,https://medium.com/p/samson-and-javascript-3ff39a4f836d,2,1,horrido,2/22/2016 12:51 +11026148,Building Powerful Frameworks in Python,http://migrateup.com/python-frameworks/,2,1,CarolineW,2/3/2016 12:46 +10692086,Obama Wants Silicon Valley's Help to Fight Terror Online,http://www.bloomberg.com/politics/articles/2015-12-07/obama-wants-silicon-valley-s-help-as-terrorists-embrace-social,3,1,bko,12/7/2015 19:40 +10356539,"Facebook, Like button evolved",https://www.facebook.com/zuck/videos/vb.4/10102413019800771/?type=2&theater,7,9,leonvonblut,10/8/2015 21:47 +10782118,"TSA Announces It Will Decide Who Goes Through the Body Scanner, Thank You",https://www.inverse.com/article/9535-tsa-can-make-you-go-through-body-scanners-noW,24,5,apo,12/23/2015 5:23 +10444919,React team drops Slack for Discord chat instead,https://facebook.github.io/react/blog/2015/10/19/reactiflux-is-moving-to-discord.html,2,2,drudru11,10/24/2015 21:25 +12177303,How to Build a Powerful Data Science Team Without a Data Scientist,http://www.forbes.com/sites/theyec/2016/03/01/how-to-build-a-powerful-data-science-team-without-a-data-scientist/#813ac203f410,4,2,ismdubey,7/27/2016 23:32 +10908043,Musical twin towns,http://www.bbc.co.uk/news/resources/idt-446211a5-003b-45e3-9211-cdc7d75c5407,10,7,okhan,1/15/2016 8:52 +10803085,Helping Fliers Avoid Change Fees for a Modest Fee,http://www.nytimes.com/2015/12/28/business/helping-fliers-avoid-change-fees-for-a-modest-fee.html,12,7,e15ctr0n,12/28/2015 20:13 +11583898,Kraken: 3x faster decompression than zlib,http://www.radgametools.com/oodlewhatsnew.htm,147,68,dahjelle,4/27/2016 19:49 +12217877,How to prepare your fresh Mac for software development,https://medium.com/@mtkocak/how-to-prepare-your-fresh-mac-for-software-development-b841c05db18#.gzc8lctm7,28,36,mtkocak,8/3/2016 13:53 +10644637,"Implementing a sort of generic, sort of type-safe array in C",http://kirbyfan64.github.io/posts/implementing-a-sort-of-generic-sort-of-type-safe-arrayin-c.html,20,10,ingve,11/29/2015 14:27 +11549852,It's getting bot in here botcamp,http://techcrunch.com/2016/04/11/betaworks-botcamp-wants-to-give-10-chatbot-startups-100k/,8,5,matthart,4/22/2016 15:23 +12283446,This Student Invented a Stepper Motor Organ,https://www.youtube.com/watch?v=--sH0071ZDc#,15,2,mfburnett,8/13/2016 22:47 +10822228,What Do You Consider the Most Interesting Recent News? What Makes It Important?,http://edge.org/annual-question/what-do-you-consider-the-most-interesting-recent-scientific-news-what-makes-it,3,1,r721,1/1/2016 16:20 +11373589,Show HN: Movie-dialog-summarizer,https://github.com/vackosar/movie-dialog-summarizer,4,3,vackosar,3/28/2016 11:05 +11008726,If you go near the Super Bowl you will be surveilled hard,http://www.wired.com/2016/01/govs-plan-keep-super-bowl-safe-massive-surveillance/,42,40,callmeed,1/31/2016 23:47 +11587242,Computershare and SETL Demonstrate Australias First Working Blockchain Solution,http://www.mondovisione.com/media-and-resources/news/computershare-and-setl-demonstrate-australias-first-working-blockchain-solution/,3,1,insulanian,4/28/2016 8:24 +12552474,New Version of Benchmarking State-Of-the-Art Deep Learning Software Tools,,4,2,justnikos,9/21/2016 21:35 +10782890,Indian Regulator Temporarily Suspends Facebooks Free Basics,http://timesofindia.indiatimes.com/tech/tech-news/Put-FBs-Free-Basics-service-on-hold-TRAI-tells-Reliance-Communications/articleshow/50290490.cms,98,53,krisgenre,12/23/2015 11:27 +10787190,PixelBlock Block email open tracking in Gmail (v 0.0.17 released),https://chrome.google.com/webstore/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem/ycl,4,1,ramoq,12/24/2015 5:06 +11548191,Twenty Seconds Curriculum Vitae in LaTex,https://github.com/spagnuolocarmine/TwentySecondsCurriculumVitae-LaTex,1,1,carspa,4/22/2016 10:35 +10535532,A brief and partial review of Haskell in the browser,http://blog.jenkster.com/2015/02/a-brief-and-partial-review-of-haskell-in-the-browser.html,3,1,bradcomp,11/9/2015 20:21 +10978270,Precipitous Rents in Ski Country Push Workers to Edges,http://www.nytimes.com/2016/01/25/us/precipitous-rents-in-ski-country-push-workers-to-edges.html,16,8,e15ctr0n,1/27/2016 4:46 +11001820,Furnish JavaScript - Let the classes on DOM elements generate the CSS for you,https://github.com/Idnan/furnish-js,30,29,kamranahmedse,1/30/2016 14:03 +11371048,Windows-Like ReactOS Is Getting ReiserFS Support (in Add. To Ext2\3\4 and Btrfs),http://www.phoronix.com/scan.php?page=news_item&px=ReiserFS-For-ReactOS,3,1,jeditobe,3/27/2016 19:04 +12219270,Language Acquisition Triangle,https://medium.com/@sova.kuliana/language-acquisition-triangle-bf7763a7fe20#.5gty22uzz,1,1,sova,8/3/2016 16:37 +10961626,Enough Is Enough: Stop Wasting Money on Vitamin and Mineral Supplements [pdf],http://annals.org/data/Journals/AIM/929454/0000605-201312170-00011.pdf,1,2,chaitanyav,1/24/2016 5:42 +10869964,"Forbes forces readers to turn off ad blockers, promptly serves malware",http://www.extremetech.com/internet/220696-forbes-forces-readers-to-turn-off-ad-blockers-promptly-serves-malware,23,1,MilnerRoute,1/9/2016 3:25 +10212623,"Show HN: Embrayce, Better Online Communities",http://embrayce.com/,2,1,_air,9/13/2015 20:03 +10812888,Companies to face criminal offence if they tip off U.K. users about snooping,http://www.telegraph.co.uk/news/uknews/terrorism-in-the-uk/12051443/Twitter-and-others-to-face-criminal-offence-if-they-tip-off-users-about-snooping-requests.html,190,66,snowy,12/30/2015 16:49 +10484546,"Show HN: DomainWatcher.io List of registered, expired and dropped domains",https://domainwatcher.io/,23,8,psior,10/31/2015 22:50 +11055317,Writing Software That Can Kill,https://blog.setec.io/articles/2016/01/07/software-kill.html,34,5,hlieberman,2/7/2016 22:41 +10517290,Show HN: SHML (shell markup language),https://maxcdn.github.io/shml/,71,12,jdorfman,11/6/2015 1:14 +10441216,"LADWP loses money during drought, plans to raise rates",http://abc7.com/news/ladwp-plans-to-raise-water-rates-as-residents-conserve/1045084/,2,4,brianclements,10/23/2015 20:48 +12379694,Woman chose to homeless in SF,http://sfgate.com/technology/businessinsider/article/This-woman-chose-to-go-homeless-in-San-Francisco-9189591.php,1,1,gshakir,8/29/2016 2:51 +10320865,Ask HN: How you get Ideas,,11,12,christopherDam,10/2/2015 19:52 +10245032,What was the biggest mistake of your career?,,15,17,flarg,9/19/2015 18:05 +11771689,San Franciscos Dominance Over U.S. Innovation and Technology Patents,http://www.citylab.com/tech/2016/05/san-franciscos-increasing-dominance-over-us-innovation/484199/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheAtlanticCities+%28CityLab%29,3,1,jseliger,5/25/2016 17:52 +10809113,"What We Can Learn from Aviation, Civil Eng, and Other Safety-Critical Fields",http://danluu.com/wat/,2,1,benkuhn,12/29/2015 21:16 +11689464,Show HN: Smart Playlists for Spotify,https://smartplaylistsforspotify.co.uk/,6,4,james_fairhurst,5/13/2016 9:44 +11416591,Type conversions from JavaScript to C++ in V8,http://blog.scottfrees.com/type-conversions-from-javascript-to-c-in-v8,50,11,ingve,4/3/2016 16:17 +10778926,New Year's Resolution: How to make a new start by deleting all Facebook posts,http://www.networkworld.com/article/3017794/mobile-wireless/how-to-delete-all-facebook-posts-photos.html,1,1,stevep2007,12/22/2015 17:17 +10478940,The Senator Be Embezzling,http://www.politico.com/magazine/story/2015/09/mag-prison-smith-213098,309,126,daltonlp,10/30/2015 16:51 +12564385,Robot-written reviews fool academics,https://www.timeshighereducation.com/news/robot-written-reviews-fool-academics,52,24,chavo-b,9/23/2016 13:26 +10742427,Show HN: WhatsCarrier Look up friends mobile network easily,http://whatscarrier.com,2,3,natsu90,12/16/2015 4:40 +11861945,Show HN: Streembit a decentralised peer-2-peer messaging platform for the IoT,http://blog.valbonne-consulting.com/2016/06/08/streembit-a-decentralised-peer-2-peer-messaging-platform-for-the-iot/,4,4,DyslexicAtheist,6/8/2016 13:02 +10512343,"Adventures in debugging: etcd, HTTP pipelining, and file descriptor leaks",http://www.projectclearwater.org/adventures-in-debugging-etcd-http-pipelining-and-file-descriptor-leaks/,56,9,rkday,11/5/2015 9:00 +11312984,Ask HN: How much do you make at Amazon? Here is how much I make at Amazon,,1213,691,boren_ave11,3/18/2016 16:43 +11406794,How DuckDuckGo is trying to help programmers,https://duck.co/blog/post/297/help-for-programmers,355,67,tagawa,4/1/2016 17:40 +10235807,Managing Software Engineers (2002),http://philip.greenspun.com/ancient-history/managing-software-engineers,9,1,rhapsodic,9/17/2015 20:20 +12241741,Stories is to Instagram what Streaming was to Netflix,http://meshedsociety.com/stories-is-to-instagram-what-streaming-was-to-netflix/,3,1,imartin2k,8/7/2016 11:04 +12002193,AMD Radeon RX 480 Review on Linux,http://www.phoronix.com/scan.php?page=article&item=amdgpu-rx480-linux&num=1,8,1,redtuesday,6/29/2016 15:21 +10430141,Emacs rewrite in a maintainable language,http://lists.gnu.org/archive/html/emacs-devel/2015-10/msg01154.html,2,1,__david__,10/22/2015 2:44 +10187043,Software optimization resources,http://www.agner.org/optimize,32,5,evandrix,9/8/2015 17:27 +12287808,The Music Industry's New War Is About So Much More Than Copyright,http://www.fastcompany.com/3061256/youtube-music-copyright-royalties-war,3,1,r721,8/14/2016 23:33 +12140283,"The Long, Final Goodbye of the VCR",http://www.nytimes.com/2016/07/22/technology/the-long-final-goodbye-of-the-vcr.html,1,2,jgalt212,7/21/2016 21:37 +11783794,Ask HN: Tell manager I'm planning to move on?,,3,2,endemic,5/27/2016 3:51 +11912567,[video] Introducing Apple File System,https://developer.apple.com/videos/play/wwdc2016/701/,4,2,aroch,6/15/2016 22:16 +11328566,GoDaddy Announces Worldwide Launch Of Cloud Servers and Cloud Applications,https://aboutus.godaddy.net/newsroom/news-releases/news-releases-details/2016/GoDaddy-Announces-Worldwide-Launch-of-Cloud-Servers--Cloud-Applications/default.aspx,5,3,eatonphil,3/21/2016 15:08 +12529373,GitHub vs. Bitbucket vs. GitLab vs. Coding A Comparison,https://medium.com/flow-ci/github-vs-bitbucket-vs-gitlab-vs-coding-7cf2b43888a1#.4yiueiza6,3,1,sidcool,9/19/2016 6:23 +12205426,Full Disclosure RCEs in nbox recorder,http://carnal0wnage.attackresearch.com/2016/08/got-any-rces.html,40,4,iamthedarkness,8/1/2016 20:00 +11019481,LI2: Lego Institute for Lego Investigation (2014),http://norvig.com/LI2/,34,2,duck,2/2/2016 14:10 +11499043,"Mixpanel: Introducing JQL, a query language to analyze and learn from data",https://mixpanel.com/blog/2016/04/14/jql,57,22,samber,4/14/2016 18:04 +10372980,Ask HN: How to save comments that I upvote?,,3,6,textread,10/12/2015 7:13 +11860369,Gmail 'Smart Reply': the paper [pdf],http://www.kdd.org/kdd2016/papers/files/Paper_1069.pdf,4,3,ilyaeck,6/8/2016 6:21 +12417320,"Ask HN: How do you decide, link or comments",,1,1,yeowMeng,9/3/2016 1:50 +11522907,Telegram to award grants to bot developers,https://telegram.org/blog/botprize,162,87,amima,4/18/2016 20:24 +10497164,Linus meltdown on a Git pull,http://lkml.iu.edu/hypermail/linux/kernel/1510.3/02866.html,86,82,signa11,11/3/2015 3:04 +10886274,A new approach to generating human organs is to grow them inside pigs or sheep,http://www.technologyreview.com/news/545106/human-animal-chimeras-are-gestating-on-us-research-farms/,46,23,rl3,1/12/2016 8:53 +12531603,Acidity in atmosphere minimised to preindustrial levels,http://news.ku.dk/all_news/2016/09/acidity-in-atmosphere-minimised-to-preindustrial-levels/,153,83,upen,9/19/2016 14:16 +10590939,Ask HN: What's the deal with Angular 2.0?,,4,2,terda12,11/18/2015 21:38 +12417568,What the SpaceX Explosion Means for Elon Musk and Mark Zuckerberg,http://www.newyorker.com/tech/elements/what-the-spacex-explosion-means-for-elon-musk-and-mark-zuckerberg?mbid=social_twitter,3,1,jseliger,9/3/2016 3:28 +11549697,Apple Services Shut Down in China in Startling About-Face,http://www.nytimes.com/2016/04/22/technology/apple-no-longer-immune-to-chinas-scrutiny-of-us-tech-firms.html,108,87,jboydyhacker,4/22/2016 15:03 +11594816,Infinit announces Project Dropboxe,http://blog.infinit.one/infinit-announces-project-dropboxe/,830,134,winta,4/29/2016 10:39 +10428237,"Thomas Browne, who coined hallucination and suicide",http://www.newyorker.com/books/page-turner/doubting-thomas,17,8,okfine,10/21/2015 20:02 +11388375,Exercise Makes Our Muscles Work Better with Age,http://well.blogs.nytimes.com/2016/03/30/exercise-makes-our-muscles-work-better-with-age/,146,54,oscarwao,3/30/2016 11:03 +10514118,Wooden Counterweight Desk (Sit/Stand Desk) [video],https://www.youtube.com/watch?v=X4-yOB3qFKI,1,1,tortilla,11/5/2015 16:12 +10532023,Oliver Sackss Twins and Prime Numbers (2012),http://www.pepijnvanerp.nl/articles/oliver-sackss-twins-and-prime-numbers/,22,4,cjg,11/9/2015 9:08 +10892197,Create an anonymous Signal phone number with Android,https://yawnbox.com/index.php/2015/03/14/create-an-anonymous-textsecure-and-redphone-phone-number/,90,37,nyolfen,1/13/2016 3:44 +11611436,Non-Lexical Lifetimes in Rust,http://smallcultfollowing.com/babysteps/blog/2016/04/27/non-lexical-lifetimes-introduction/,135,58,kibwen,5/2/2016 14:05 +12300210,Ford to mass-produce a completely self-driving car within five years,http://arstechnica.com/cars/2016/08/ford-to-mass-produce-a-completely-self-driving-car-within-five-years/,28,12,sndean,8/16/2016 20:02 +10740889,Diagnosing Yahoos Ills: Ugly Math in Marissa Mayers Reign,http://www.nytimes.com/2015/12/15/business/dealbook/diagnosing-yahoos-ills-ugly-math-in-mayers-reign.html,59,73,NearAP,12/15/2015 22:18 +12179711,Hair,http://lithub.com/hair/,217,8,pepys,7/28/2016 12:16 +10951492,Si.gnatu.re: HTML email signature generator,http://si.gnatu.re/,6,2,im_dario,1/22/2016 8:28 +11265751,Trackers,http://jacquesmattheij.com/trackers,874,209,henrik_w,3/11/2016 10:23 +10827904,Hacker Scripts Based on a true story,https://github.com/narkoz/hacker-scripts,3,1,Paul_S,1/2/2016 20:57 +10947271,Hidden Damages: The story of a father's fight to get justice for his daughter,https://read.atavist.com/hidden-damages,6,1,katiabachko,1/21/2016 18:39 +10408692,Fixing the core memory in a vintage IBM 1401 mainframe,http://www.righto.com/2015/10/repairing-50-year-old-mainframe-inside.html,89,13,kens,10/18/2015 16:30 +10994364,Twitter Support Useless Help,,6,4,pressat12,1/29/2016 9:45 +11124797,Airport security in America discovered more than seven guns per day in 2015,http://www.economist.com/blogs/gulliver/2016/02/concealed-carry,74,156,jimsojim,2/18/2016 10:19 +10449383,Show HN: Luastatic Build an executable from a Lua program,https://github.com/ers35/luastatic,44,13,ers35,10/26/2015 2:50 +12085795,Scientists unearthed a trove of 700-year-old stone tools used by monkeys,https://www.washingtonpost.com/news/animalia/wp/2016/07/11/in-brazil-scientists-unearth-a-trove-of-ancient-stone-tools-used-by-monkeys/,3,1,n0us,7/13/2016 13:04 +10250789,PHP library that renders React components on the server,https://github.com/reactjs/react-php-v8js,2,1,tilt,9/21/2015 7:04 +12505609,Ask HN: Pricing dead zone: 300$-3000$,,3,1,lukasm,9/15/2016 12:45 +11246871,Hyperloop will be here in 2020 and the impact will be huge,http://www.cnbc.com/2016/03/07/hyperloop-will-be-here-in-2020-and-the-impact-will-be-huge.html,6,2,prostoalex,3/8/2016 17:37 +11756841,Ten Inventions That Inadvertently Transformed Warfare,http://www.smithsonianmag.com/history/ten-inventions-that-inadvertently-transformed-warfare-62212258/?all?no-ist,2,1,Alupis,5/23/2016 20:48 +11634616,"If a client wont give you a budget, theyre not serious",https://medium.com/@giuliomichelon/if-a-client-wont-give-you-a-budget-they-re-not-serious-79322796f534#.rk4fujie3,17,6,HipstaJules,5/5/2016 8:13 +11308112,An update on a possible new particle from CERN's Large Hadron Collider,https://www.theguardian.com/science/life-and-physics/2016/mar/17/an-update-on-a-possible-new-particle-from-cerns-large-hadron-collider,2,1,okket,3/17/2016 22:25 +11618272,Little ANTs: researchers build the worlds tiniest engine,http://www.cam.ac.uk/research/news/little-ants-researchers-build-the-worlds-tiniest-engine,30,6,Jerry2,5/3/2016 5:58 +11977261,US Customs wants to collect social media account names at the border,http://www.theverge.com/2016/6/24/12026364/us-customs-border-patrol-online-account-twitter-facebook-instagram,9,3,kintamanimatt,6/25/2016 18:01 +10988180,Ask HN: What would you pay $5/month for?,,3,6,pollilop,1/28/2016 14:07 +10448880,The Trillion-Dollar Vision of Dee Hock (2012),http://www.fastcompany.com/27333/trillion-dollar-vision-dee-hock,13,1,twic,10/25/2015 23:27 +11416662,TensorFlow Simplified Interface,https://github.com/tflearn/tflearn,267,14,aymericdamien,4/3/2016 16:34 +11617945,Putting the Tesla HEPA Filter and Bioweapon Defense Mode to the Test,https://www.teslamotors.com/blog/putting-tesla-hepa-filter-and-bioweapon-defense-mode-to-the-test,260,145,tremguy,5/3/2016 4:37 +11214652,The Mailbox Lights,https://medium.com/@barshow/the-mailbox-lights-7aa2dae8ba65,7,1,chadaustin,3/3/2016 2:27 +10261430,Russias Plan to Crack Tor Crumbles,http://www.bloomberg.com/news/articles/2015-09-22/russia-s-plan-to-crack-tor-crumbles,9,7,T-A,9/22/2015 20:21 +10423950,A Woman Spent 10 Years Collecting the Creepy Messages She's Received Online,http://www.buzzfeed.com/rossalynwarren/a-woman-collected-the-online-harassment-shes-received-in-the,8,1,aaronbrethorst,10/21/2015 6:04 +11491620,Is Staying in the New Going Out?,http://mobile.nytimes.com/2016/04/12/t-magazine/is-staying-in-the-new-going-out.html?_r=1&referer=,34,7,justinwr,4/13/2016 19:52 +10683297,"Ask HN: Chrome browser phones home, how to disable this?",,8,12,goodfellaw,12/5/2015 21:13 +11893741,Cayley An open-source graph database,https://github.com/google/cayley,167,56,indatawetrust,6/13/2016 13:39 +11836520,"PCG, a Family of Better Random Number Generators",http://www.pcg-random.org/,17,6,antonios,6/4/2016 14:50 +10747143,Ask HN: What non-computer activities do you do?,,16,58,usefulservices,12/16/2015 20:39 +10590694,"Spack: Package manager for multiple versions, confs, platforms, and compilers",https://github.com/scalability-llnl/spack,3,1,ivotron,11/18/2015 20:58 +11568505,"Jsm lightweight, embedded JVM stats monitor",https://github.com/AdoHe/jsm,2,1,ado_gump,4/26/2016 0:29 +11241689,Naughty words: What makes swear words so offensive?,https://aeon.co/essays/where-does-swearing-get-its-power-and-how-should-we-use-it,66,67,Hooke,3/7/2016 21:08 +10975689,Postmortem on a beta regression,https://mail.mozilla.org/pipermail/firefox-dev/2016-January/003836.html,40,11,philbo,1/26/2016 20:16 +10793621,Brotli compression for the web,http://calendar.perfplanet.com/2015/new-years-diet-brotli-compression/,88,42,ssttoo,12/26/2015 7:54 +10317971,How Software Will Change Venture Capital,https://medium.com/entrepreneurship-at-work/inreach-ventures-fb6b3e20c773,2,2,bonanzinga,10/2/2015 12:14 +10469653,"For the First Time, a Prosecutor Will Go to Jail for Wrongfully Convicting",http://www.huffingtonpost.com/mark-godsey/for-the-first-time-ever-a_b_4221000.html,468,228,fahimulhaq,10/29/2015 7:10 +11837013,Portland school board bans climate change-denying materials,http://portlandtribune.com/sl/307848-185832-portland-school-board-bans-climate-change-denying-materials,52,53,mactitan,6/4/2016 17:06 +11243470,NSF Seeks Breakthroughs for Energy-Efficient Computing,http://www.hpcwire.com/2016/03/07/nsf-seeks-breakthroughs-for-energy-efficient-computing/,2,1,jonbaer,3/8/2016 4:00 +12130361,14 Year Old Advay Ramesh from Chennai Wins Google Community Impact Award,http://www.techkish.in/2016/07/chennai-boy-google-community-award-asia-fishermen-safety-device-advay-ramesh.html,1,1,nattykish,7/20/2016 16:36 +10969092,The Pedigree in Silicon Valley Privilege,https://medium.com/@puppybits/the-ingrained-biases-in-hiring-that-are-killing-meritocracy-and-diversity-de721316830#.bfd2g3zdh,3,1,puppybits,1/25/2016 18:58 +10357810,Free resources made by designers at Facebook,http://design.facebook.com,116,34,_nh_,10/9/2015 2:34 +11129128,Show HN: Make your own Kanye West album cover with HTML5 canvas,http://brandly.github.io/pablo/,3,1,brandly,2/18/2016 20:40 +11392422,Show HN: DocuShow to search and read PDFs on mobile,http://docushow.com,2,1,ldenoue,3/30/2016 19:55 +11753499,Qaop ZX Spectrum emulator,http://torinak.com/qaop,5,1,noyesno,5/23/2016 12:49 +10800684,Simplified and community-driven man pages,https://github.com/tldr-pages/tldr,3,4,0x7fffffff,12/28/2015 11:25 +10182780,Ask HN: Are freemium microservices a thing?,,1,2,hyperpallium,9/7/2015 19:56 +12179988,Putting data in a volume in a Dockerfile,https://jpetazzo.github.io/2015/01/19/dockerfile-and-data-in-volumes/,3,1,lbovet,7/28/2016 13:22 +10518842,Enhancing Qubes with Rumprun unikernels,http://northox.github.io/qubes-rumprun/,38,5,snaky,11/6/2015 11:03 +11638193,Students at Fake University Say They Were Collateral Damage in Sting Operation,http://www.nytimes.com/2016/05/06/nyregion/students-at-fake-university-say-they-were-collateral-damage-in-sting-operation.html,98,100,danso,5/5/2016 17:42 +10613213,Garden path sentence,https://en.wikipedia.org/wiki/Garden_path_sentence,185,83,rgbrgb,11/23/2015 6:40 +12547353,Why Finnish babies sleep in cardboard boxes (2013),http://www.bbc.com/news/magazine-22751415,353,262,stevekemp,9/21/2016 12:00 +10690860,The history behind New York Citys missing subway lines,http://qz.com/549388/the-history-behind-new-york-citys-missing-subway-lines/,17,1,kposehn,12/7/2015 17:23 +11805791,The Megaprocessor is a micro-processor built large. Very large,http://www.megaprocessor.com/,4,1,blopeur,5/31/2016 10:50 +11489240,USB-C adds authentication protocol,http://www.theregister.co.uk/2016/04/13/usbc_adds_authentication_protocol/,5,1,bpierre,4/13/2016 15:51 +11383252,This war on math is still bullshit,http://techcrunch.com/2016/03/26/this-war-on-math-is-still-bullshit/,25,10,jonbaer,3/29/2016 17:40 +11237382,Enough with trashing the liberal arts. Stop being stupid,https://www.washingtonpost.com/news/answer-sheet/wp/2016/03/05/enough-with-trashing-the-liberal-arts-stop-being-stupid/,3,2,ritchiea,3/7/2016 6:03 +11202282,Gibber: Music live coding environment for the browser,http://gibber.mat.ucsb.edu/,2,1,axelfreeman,3/1/2016 13:03 +11322060,LuaJIT 2.0 intellectual property disclosure (2009),http://lua-users.org/lists/lua-l/2009-11/msg00089.html,103,26,vortico,3/20/2016 6:46 +12130069,Housing cant be a good investment and affordable,http://cityobservatory.org/housing-cant-be-a-good-investment-and-affordable/,76,52,jseliger,7/20/2016 16:01 +10210867,How space travel became the unofficial religion of the USSR,http://calvertjournal.com/features/show/4645,102,62,codeas,9/13/2015 10:13 +10686384,The Lamp That Saved Coal Miners' Lives,http://mentalfloss.com/article/71969/show-tell-lamp-saved-coal-miners-lives,16,8,Hooke,12/6/2015 20:09 +11098860,Fast Data Project,https://fd.io/,9,1,based2,2/14/2016 16:29 +12090087,Ask HN: Dangers to making public young-project code?,,15,12,probinso,7/13/2016 22:14 +11312618,Clinton's Private Server Undermined Open Records Act,http://www.usatoday.com/story/opinion/2016/03/17/hillary-clinton-email-server-foia-benghazi-editorials-debates/81832576/,4,2,ZoeZoeBee,3/18/2016 15:57 +10790748,"Good News, Part 1",https://johncarlosbaez.wordpress.com/2015/12/24/good-news-part-1/,32,13,mathgenius,12/25/2015 8:46 +11238535,Working from Home and Phatic Communication,http://s12k.com/2016/03/07/working-from-home-and-phatic-communication/,41,8,essayoh,3/7/2016 12:40 +11079377,The hunt for a million-dollar haul of ocean gold,http://www.bbc.com/future/story/20160210-inside-the-hunt-for-a-million-dollar-haul-of-ocean-gold,17,1,williamhpark,2/11/2016 10:40 +10726188,Show HN: Hacker-Dict.com: The Hacker Dictionary,,7,2,ludwigvan,12/13/2015 12:37 +12237731,Can Science Breed the Next Secretariat?,http://nautil.us/issue/39/sport/can-science-breed-the-next-secretariat-rp,23,19,dnetesn,8/6/2016 11:08 +11697982,"Can someone review my cv, and tell me if it's good",,2,3,nemanjapetrovic,5/14/2016 20:52 +11440150,Simple Programs to Learn JavaScript Design Patterns,https://github.com/nnupoor/js_designpatterns,20,3,verloop,4/6/2016 17:16 +12206658,Ask HN: What product/service do you want to stay independent?,,2,2,spdustin,8/1/2016 22:47 +10632403,The Autowende has begun,https://medium.com/@Fastned/the-autowende-has-begun-e7c13a4c0e89#.y13l9cm1n,24,26,fastned,11/26/2015 10:55 +11369127,Delayed Choice Quantum Eraser Experiment,https://www.youtube.com/watch?v=H6HLjpj4Nt4,2,1,trashpanda,3/27/2016 6:34 +10553094,Cloudflare Introduces Universal DNSSEC: Secure DNS for Your Domain,https://www.cloudflare.com/dnssec/,133,105,darronz,11/12/2015 13:54 +12110251,The Politically Incorrect Guide to Ending Poverty (2010),http://www.theatlantic.com/magazine/archive/2010/07/the-politically-incorrect-guide-to-ending-poverty/308134/?single_page=true,86,100,aminok,7/17/2016 14:26 +12207333,23andMe Pulls Off Massive Crowdsourced Depression Study,https://www.technologyreview.com/s/602052/23andme-pulls-off-massive-crowdsourced-depression-study/,122,56,nkurz,8/2/2016 1:37 +11512199,How to remove breathing sounds from your audio recordings,https://www.knowrick.com/blog/how-to-remove-breathing-sound-from-your-audio-recording-using-obs,5,6,rick4470,4/16/2016 20:48 +10496638,NASA confirms yet again that the 'impossible' EMdrive thruster works,http://finance.yahoo.com/news/nasa-latest-tests-show-physics-230112770.html,85,35,jsnathan,11/3/2015 0:58 +11206462,SurveyMonkey to Lay Off 100 and Retool Business Product,http://recode.net/2016/03/01/surveymonkey-to-lay-off-100-and-retool-business-product/,108,71,coloneltcb,3/1/2016 22:01 +10351884,The Postmodernism Generator random graduate-level essays,http://www.elsewhere.org/pomo/,2,1,ck2,10/8/2015 10:57 +11883908,H-Day,http://99percentinvisible.org/episode/h-day/,1,2,aaronbrethorst,6/11/2016 15:58 +11091980,GitLab Flow (2014),https://about.gitlab.com/2014/09/29/gitlab-flow/,115,22,somecoder,2/13/2016 1:37 +10182006,A Twitter parody leads to expensive lessons in Peoria,http://www.chicagotribune.com/news/opinion/editorials/ct-peoria-aclu-twitter-edit-0908-20150904-story.html,2,2,wglb,9/7/2015 16:27 +10359225,Eric Schmidt-backed startup working to elect Hillary Clinton,http://qz.com/520652/groundwork-eric-schmidt-startup-working-for-hillary-clinton-campaign/,54,50,antr,10/9/2015 10:54 +10644430,Samsø runs on renewable energy and makes money doing it,http://nautil.us/issue/30/identity/blowing-off-the-grid,18,4,dnetesn,11/29/2015 12:13 +11992773,Introducing MLFE: ML-Flavoured Erlang,http://noisycode.com/blog/2016/06/27/introducing-mlfe/,137,20,ingve,6/28/2016 11:14 +10239915,180 patents later,https://lists.linkedin.com/2015/next-wave/enterprise-tech/lisa-seacat-deluca,2,1,codarama,9/18/2015 15:54 +12106023,Contributors do not save time,http://www.drmaciver.com/2016/07/contributors-do-not-save-time/,50,22,pferde,7/16/2016 11:41 +11864132,PyPy2 v5.3 released major C-extension support improvements,http://morepypy.blogspot.com/2016/06/pypy2-v53-released-major-c-extension.html,6,1,mattip,6/8/2016 17:55 +11777275,Neanderthals built cave structures and no one knows why,http://www.nature.com/news/neanderthals-built-cave-structures-and-no-one-knows-why-1.19975,5,2,auza,5/26/2016 12:08 +12166960,Healthy clones: Dolly the sheep's heirs reach ripe old age,http://www.reuters.com/article/us-science-cloning-dolly-idUSKCN1061Z9,111,25,benologist,7/26/2016 16:50 +11033199,Getting started with offline-first using UpUp,https://www.talater.com/upup/getting-started-with-offline-first.html?platform=hootsuite,1,1,mattlutze,2/4/2016 11:05 +11952627,More awful IoT stuff,http://mjg59.dreamwidth.org/43486.html,384,240,edward,6/22/2016 10:00 +12364717,Light-Driven Soft Robot Mimics Caterpillar Locomotion in Natural Scale,http://onlinelibrary.wiley.com/doi/10.1002/adom.201600503/abstract;jsessionid=B0FA5890D157ACB732C0FB7B957A5B9E.f03t02?systemMessage=Wiley+Online+Library+will+be+unavailable+on+Saturday+3rd+September+2016+at+08.30+BST%2F+03%3A30+EDT%2F+15%3A30+SGT+for+5+hours+and+Sunday+4th+September+at+10%3A00+BST%2F+05%3A00+EST%2F+17%3A00+SGT+for+1+hour++for+essential+maintenance.+Apologies+for+the+inconvenience,1,1,polskibus,8/26/2016 7:03 +12554024,Dokany User mode file system library for windows with FUSE Wrapper,https://github.com/dokan-dev/dokany,182,48,bane,9/22/2016 3:02 +10832295,NSA Patents,http://nsa-patents.silk.co/,87,34,aburan28,1/3/2016 20:49 +12548004,I traveled around Southeast Asia for $1000 a month. Including flights,https://medium.com/@philipjalexander/and-this-was-being-abnormally-extravagant-943d099c9b8e#.lgd17p1ja,11,6,kylerpalmer,9/21/2016 13:37 +12165866,Ask HN: Why isn't there a professional body for Computer Science?,,40,69,o_safadinho,7/26/2016 14:34 +11740120,Ask HN: Best Linux Laptop?,,3,7,wowzer,5/20/2016 18:12 +12266370,UEFI on top of U-Boot on ARM,http://lists.denx.de/pipermail/u-boot/2016-February/244378.html,95,25,zdw,8/11/2016 5:08 +11775254,Thiel says he decided several years ago to try to cripple Gawker,http://techcrunch.com/2016/05/25/thiel-says-he-decided-several-years-ago-to-try-to-cripple-gawker/,2,1,bakztfuture,5/26/2016 3:50 +10506364,Show HN: Death Note write a name WhoShallDie,http://whoshalldie.com,3,4,tunavargi,11/4/2015 13:44 +10434385,The FCC has voted to end exorbitant phone fees for prison inmates,http://qz.com/530909/the-us-just-lifted-a-crushing-burden-on-prison-inmates-and-their-families/,379,189,eplanit,10/22/2015 19:20 +12194407,Soylent CEO charged over illegal shipping container,http://arstechnica.com/tech-policy/2016/07/soylent-ceo-charged-over-illegal-shipping-container-his-neighbors-hate/,9,3,davepage,7/30/2016 19:49 +11430769,PayPal Withdraws Plan for Charlotte Expansion,https://www.paypal.com/stories/us/paypal-withdraws-plan-for-charlotte-expansion,105,68,tshtf,4/5/2016 14:47 +11484252,Cursing is Right,https://medium.com/@aaronhatch/cursing-is-right-1b8c45a7bba3#.amqcynpni,1,1,AaronHatch,4/12/2016 22:48 +10779204,"Magic Completes signup forms automatically, with just an email address",https://magicsignup.com,109,75,Killswitch,12/22/2015 17:58 +10907652,There Is One Place Americans Refuse to Give Up Their Privacy,http://www.esquire.com/news-politics/a41223/pew-poll-americans-privacy/,2,2,walterbell,1/15/2016 6:44 +10572700,Adsuck a small DNS server that spoofs blacklisted addresses,https://opensource.conformal.com/wiki/adsuck,73,50,userbinator,11/16/2015 5:03 +11885997,Wearable Tech: An evolving or dying trend?,http://swarmnyc.com/whiteboard/wearable-tech-evolving-dying-trend/,5,1,somya,6/12/2016 0:03 +11553186,"Show HN: Impalette, extract color matches from images for predefined palettes",https://impalette.com/,12,4,mipmap04,4/22/2016 23:13 +10492529,Top 1% now owns more of the wealth than the remaining 99%,http://www.theguardian.com/money/2015/oct/13/half-world-wealth-in-hands-population-inequality-report,95,111,niklasbuschmann,11/2/2015 15:57 +11212046,Show HN: Staffjoy Boss Automated Employee Scheduling,https://www.staffjoy.com/boss/,53,38,philip1209,3/2/2016 18:51 +10271513,Is It Possible to Achieve Equitable Equity for Startup Employees? [audio],http://a16z.com/2015/08/12/equity-models-and-experiments/?,57,59,joeyespo,9/24/2015 13:46 +10849353,"Operation Unthinkable: Western Allies versus Soviet Union, 1945",https://web.archive.org/web/20101116152301/http://www.history.neu.edu/PRO2/,2,1,vinnyglennon,1/6/2016 8:50 +10796975,Ask HN: Do you talk about your startup or business at family gatherings?,,3,2,fha,12/27/2015 9:50 +11237831,Laws of Simplicity (2006),http://lawsofsimplicity.com/,13,4,fibo,3/7/2016 8:55 +10217058,Back to BASIC [video],http://www.bbc.co.uk/iplayer/group/p031v2bg,7,2,chestnut-tree,9/14/2015 19:46 +11913202,Coffee no longer comes with cancer warning and may actually prevent it,http://arstechnica.com/science/2016/06/coffee-no-longer-comes-with-cancer-warning-it-may-actually-prevent-it/,7,3,ulysses,6/16/2016 0:35 +10681790,Maxwells demon faces the heat,https://www.sciencenews.org/article/maxwells-demon-faces-heat,43,6,jonbaer,12/5/2015 13:19 +11455692,Apply HN: AskWhen An Executive Assistant for Everyone,,7,2,raymondyu8,4/8/2016 16:06 +10199605,SQLite compiled into JavaScript via Emscripten,https://github.com/kripken/sql.js,199,55,sea6ear,9/10/2015 18:14 +12201716,Tesla and Solar City Combine,https://www.tesla.com/blog/tesla-and-solarcity-combine,275,139,chasingtheflow,8/1/2016 12:03 +10316860,College Rankings Fail to Measure the Influence of the Institution,http://www.nytimes.com/2015/10/02/business/new-college-rankings-dont-show-how-alma-mater-affects-earnings.html?hp&action=click&pgtype=Homepage&module=second-column-region®ion=top-news&WT.nav=top-news&_r=0,11,2,retupmoc01,10/2/2015 5:22 +10587031,Can you think yourself into a different person?,http://mosaicscience.com/story/neuroplasticity,64,20,sergeant3,11/18/2015 11:06 +11637330,Firefox market share decline?,https://en.wikipedia.org/wiki/Usage_share_of_web_browsers,1,2,ausjke,5/5/2016 16:11 +10915426,Do You Need More Money for Economic Growth to Occur?,https://growthecon.wordpress.com/2016/01/15/do-you-need-more-money-for-economic-growth-to-occur/,25,24,bpolania,1/16/2016 15:07 +11992396,AVA-IA Agnostic Virtual Assistant,https://github.com/ava-ia/core,3,1,soyjavi,6/28/2016 9:08 +11691761,Single-page app routing hack for GitHub Pages,http://www.backalleycoder.com/2016/05/13/sghpa-the-single-page-app-hack-for-github-pages/,9,1,csuwldcat,5/13/2016 17:25 +11824378,"No Venture Capital Needed, or Wanted",http://www.nytimes.com/2016/06/02/business/smallbusiness/no-venture-capital-needed-or-wanted.html?src=me&_r=0,125,122,tosseraccount,6/2/2016 17:29 +11025203,Musk vs. Buffett: The Billionaire Battle to Own the Sun,http://www.bloomberg.com/features/2016-solar-power-buffett-vs-musk/,3,7,prostoalex,2/3/2016 7:18 +10774096,Bleepmic- a simple way to have conversations.,http://www.bleepmic.com,2,1,khalloud,12/21/2015 22:41 +11386193,George Orwell in Spain,http://www.signature-reads.com/2016/03/george-orwell-in-spain-where-he-first-fully-found-his-voice/,88,47,samclemens,3/30/2016 0:48 +11715163,Data Science Report: How to Lift Push Notification Opens by 800%,https://www.leanplum.com/resources/library/personalized-push-notifications-win/?utm_source=ycombinator&utm_medium=referral&utm_content=PorBust&utm_campaign=post,3,1,bfleit,5/17/2016 16:54 +11050877,The Noonday Demon,https://www.penguin.co.uk/articles/find-your-next-read/extracts/clippings/2016/jan/the-noonday-demon-by-andrew-solomon/,13,3,samclemens,2/7/2016 0:40 +10860373,Perl 6: Building and testing async socket code,https://6guts.wordpress.com/2016/01/06/not-guts-but-6-part-3/,3,3,jedharris,1/7/2016 20:10 +11736871,Apple Rejects Game Based on Palestine Conflict as Inappropriate,http://gadgets.ndtv.com/apps/news/apple-rejects-game-based-on-palestine-conflict-as-inappropriate-for-gaming-category-839416,18,2,zakelfassi,5/20/2016 10:57 +11084357,Simplifying Legalese for the Internet Age,http://offprint.in/#!/articles/simplifying-legalese-for-the-internet-age,13,2,kiethtalent,2/12/2016 0:02 +10977306,Matz: I cannot accept the CoC for the Ruby community,https://bugs.ruby-lang.org/issues/12004#note-95,39,16,jp_sc,1/27/2016 0:16 +10731847,Did You Really Agree to That? The Evolution of Facebooks Privacy Policy,http://techscience.org/a/2015081102/,99,24,kawera,12/14/2015 16:14 +10405148,Thoughts on Haskell,http://khanlou.com/2015/10/thoughts-on-haskell/,41,49,mr_golyadkin,10/17/2015 17:14 +11541591,How to Tell the Difference Between a Good Programmer and a Great One,http://www.inc.com/rahul-varshneya/how-to-tell-the-difference-between-a-great-programmer-and-a-good-one.html,7,1,jaoued,4/21/2016 12:40 +11934304,The Diderot Effect: Shopping One's Way to Financial Misery,https://businessmellow.wordpress.com/2016/06/19/the-diderot-effect-avoid-shopping-your-way-to-financial-misery/,87,25,reyherb,6/19/2016 19:28 +11595120,Down and out in the magic kingdom A tale of software consulting in the midwest,https://medium.com/@raymondchandler/down-and-out-in-the-magic-kingdom-92b0a715778f#.e4tktd8t9,102,126,kitanata,4/29/2016 12:05 +12480959,Django query expressions to add additional annotations,https://github.com/hypertrack/django-pg-utils,7,1,tapan_pandita,9/12/2016 16:16 +11920304,An American thanks Australia for its gun laws,http://www.theage.com.au/comment/thank-you-australia-20160615-gpjn0r.html,3,1,andrewstuart,6/17/2016 2:22 +11771670,Proof point on why resumes are not an effective way to hire engineers,http://blog.hackerrank.com/heres-what-happens-when-you-stop-using-resumes-to-build-engineering-teams/,4,1,rvivek,5/25/2016 17:50 +12484953,Every single part of this camera is 3D printed,https://techcrunch.com/2016/09/09/every-single-part-of-this-camera-is-3d-printed/,1,1,sohkamyung,9/13/2016 0:59 +11013790,Ask HN: Do you know any good open-sourced project management tools?,,11,5,m1117,2/1/2016 18:13 +12500918,H-1B bill pulled from House committee vote amid complaints,http://www.computerworld.com/article/3120307/h1b/h-1b-bill-pulled-from-house-committee-vote-amid-complaints.html,12,5,ones_and_zeros,9/14/2016 20:22 +10257595,GitLab 8.0 released with new looks and integrated CI,https://about.gitlab.com/2015/09/22/gitlab-8-0-released/,257,131,jobvandervoort,9/22/2015 9:49 +11144227,ARE YOU CURIOUS? GO WATCH THE PROJECT,http://littlebigjourney.strikingly.com/,1,1,kherraza,2/21/2016 12:21 +12410010,Nano is again a GNU project,https://www.nano-editor.org/news.php,6,3,rvern,9/2/2016 0:55 +11615945,Ask HN: What are some challenging web apps I can build?,,30,16,devcheese,5/2/2016 21:45 +12038461,"Letter from U.S. House of Representatives to Elizabeth Holmes, Theranos CEO [pdf]",http://democrats-energycommerce.house.gov/sites/democrats.energycommerce.house.gov/files/documents/Theranos%20Holmes%20%20Device%20Questions%20Letter%202016%2006%2030.pdf,2,1,minimaxir,7/5/2016 18:28 +11278653,The Next Front in the New Crypto Wars: WhatsApp,https://www.eff.org/deeplinks/2016/03/next-front-new-crypto-wars-whatsapp,318,207,panarky,3/13/2016 18:05 +11168000,How to Do a Successful Product Launch with Network Effects,http://www.courseminded.com/guide-to-a-successful-product-launch/?=hn,4,1,trg2,2/24/2016 16:35 +11506567,"Apply HN: Over 40% of women leave tech mid-career, help us decrease that",,11,21,userium,4/15/2016 18:33 +11183208,"Raspberry Pi 3 Model B confirmed, with onboard BT LE and WiFi",https://apps.fcc.gov/oetcf/eas/reports/ViewExhibitReport.cfm?mode=Exhibits&calledFromFrame=N&application_id=Ti%2FYleaJNSl%2BTR5mL5C0WQ%3D%3D&fcc_id=2ABCB-RPI32,518,213,merah,2/26/2016 18:53 +10628109,Apples Swift iOS Programming Language Could Soon Be in Data Centers,http://www.wired.com/2015/11/apples-swift-ios-programming-language-is-being-remade-for-data-centers/,6,3,Jerry2,11/25/2015 17:00 +10217474,Develop Games for Apple TV,https://www.invasivecode.com/weblog/gameplaykit-state-machine/,3,1,AndrewMobileApp,9/14/2015 21:08 +12327803,Redcon Fast Redis-compatible server framework for Go,https://github.com/tidwall/redcon,105,49,tidwall,8/20/2016 18:39 +12030740,Apple Lawsuit over iPhone,https://www.youtube.com/watch?v=2AB633rlUkg,2,1,taf2,7/4/2016 13:49 +11269629,Show HN: Venv2docker create a docker image from a python virtualenv,https://github.com/Markbnj/venv2docker,8,2,markbnj,3/11/2016 21:20 +10620115,Hackers do the Haka Advanced packet and stream manipulation language,http://thisissecurity.net/2015/11/23/hackers-do-the-haka-part-1/,92,11,mtalbi,11/24/2015 10:57 +11001659,Guess the Correlation,http://guessthecorrelation.com/,2,2,coolvoltage,1/30/2016 12:59 +11200905,How much failure is just enough to trigger success?,https://www.virgin.com/entrepreneur/how-much-failure-is-just-enough-to-trigger-success?tcptid=4novAObYEUYicGeMUKSK4O,2,1,gscott,3/1/2016 5:11 +12237238,"If you could go back pre-startup and give yourself 3 tips, what would they be?",,1,1,danm07,8/6/2016 6:00 +11765973,How to Talk to the Naïve about the US's Cybersecurity Issues,https://www.inverse.com/article/16022-hacking-experts-say-john-mcafee-s-cyberattack-warnings-will-make-america-safer,2,1,ringofgyges,5/24/2016 22:15 +12179144,The Inner JSON effect,http://thedailywtf.com/articles/the-inner-json-effect,3,1,hugofonseca,7/28/2016 8:57 +10696093,Apple Launches Official Battery Life Enhancing Case for the iPhone 6s,http://www.macrumors.com/2015/12/08/apple-unveils-battery-life-case-iphone-6s/,5,1,stephenc_c_,12/8/2015 13:12 +11792694,A First Look at America's Supergun,http://www.wsj.com/articles/a-first-look-at-americas-supergun-1464359194,59,105,gist,5/28/2016 18:24 +10759337,Larry Hench left the World a better place than he found it,http://ceramics.org/ceramic-tech-today/larry-hench-inventor-of-bioglass-and-childrens-author-dies-at-age-77,1,1,auferstehung,12/18/2015 16:42 +11998210,Control Groups (cgroups) for the Web?,https://www.igvita.com/2016/03/01/control-groups-cgroups-for-the-web/,84,26,rbanffy,6/28/2016 22:50 +11386022,Neil DeGrasse Tyson to Elon Musk: SpaceX Is Delusional About Mars,http://www.fool.com/investing/general/2016/03/27/neil-degrasse-tyson-to-elon-musk-spacex-delusional.aspx,6,1,rezist808,3/30/2016 0:13 +10557144,Ask HN: How do you handle coding tasks for interview,,13,8,password03,11/13/2015 0:09 +10422805,Show HN: Resumator Resumes in 5mins as one-pager website,http://resumator.qwilr.com,2,1,barbarian,10/21/2015 0:23 +11599124,They Have to Be Monsters,http://blog.codinghorror.com/they-have-to-be-monsters/,42,14,frostmatthew,4/29/2016 22:19 +11359478,Don't run commands you don't really understand,http://hexatomium.github.io/2016/03/24/chrome-wave-poc/,1,1,svenfaw,3/25/2016 11:32 +11483583,Ask HN: How does your job benefit society?,,12,10,Joof,4/12/2016 21:06 +10746396,Fed Ends Zero-Rate Era,http://www.bloomberg.com/news/articles/2015-12-16/fed-ends-zero-rate-era-signals-4-quarter-point-2016-increases,427,351,lpage,12/16/2015 19:02 +11582489,What's the best practice of making non-restful API actions as exceptions?,,1,1,m1117,4/27/2016 17:25 +11609711,"Jean-Paul Sartre, Signing and Significance",http://www.drcraigwright.net/jean-paul-sartre-signing-significance/,101,15,omarkassim,5/2/2016 7:27 +10768675,The Intention Behind Think Kit,http://blog.fiftythree.com/posts/the-intention-behind-think-kit,19,2,davidbarker,12/20/2015 23:03 +10838131,How to Make Lunr.js and Jekyll Work Together (with Gotchas),http://rayhightower.com/blog/2016/01/04/how-to-make-lunrjs-jekyll-work-together/,5,1,RayHightower,1/4/2016 20:06 +11262519,Find a Cofounder - Google Docs listing,https://docs.google.com/spreadsheets/d/1Sygd1fhGYRS-ZvRP0IVV6rf3OUyED9_b6Da4tVWdS08/edit?hl=en#gid=9,2,1,codegeek,3/10/2016 21:28 +11790656,Show HN: Rekindle Reconnect with old Facebook friends,https://github.com/sumitshyamsukha/rekindle,4,1,sumitz,5/28/2016 5:08 +12297328,Kragen/stoneknifeforth: a tiny self-hosted Forth implementation,https://github.com/kragen/stoneknifeforth,2,1,Immortalin,8/16/2016 13:28 +12398160,Your Database Management System Is Underutilized,https://spin.atomicobject.com/2016/08/31/relational-database-management-system/#.V8bdQ4Y6d5Q.hackernews,1,1,philk10,8/31/2016 13:36 +10975502,What really went wrong with Target Canada,http://www.marketingmag.ca/?p=166300&preview=true,2,1,stygiansonic,1/26/2016 19:51 +12402067,Ask HN: Blackboxing an on-premises application,,5,2,sandis,8/31/2016 22:51 +12478606,How to recruit,http://randsinrepose.com/archives/how-to-recruit/,4,1,mooreds,9/12/2016 10:53 +11379595,5 really outdated things that are still popular in Japan,https://www.techinasia.com/list-outdated-things-still-popular-in-japan,4,1,williswee,3/29/2016 5:10 +11749009,Interaction without JavaScript: common UI elements with a CSS-only pattern,http://codepen.io/ekrof/pen/YqmXdQ/,72,10,ekrof,5/22/2016 15:48 +12358417,How can you echo a newline in batch files?,http://stackoverflow.com/questions/132799/how-can-you-echo-a-newline-in-batch-files,1,2,joseraul,8/25/2016 12:18 +11390160,MCJSS: Modern Architecture for APIs in five minutes,https://medium.com/@alexdev_/mcjss-an-architecture-for-modern-apis-6a60d6337db9#.gb4jg4gas,13,6,alexperezpaya,3/30/2016 15:50 +12010267,Intel's Storage Acceleration Library,https://github.com/01org/isa-l,30,6,sharva,6/30/2016 17:38 +11100364,A Real Programmer Who Never Learned C,https://medium.com/@wilshipley/the-absolutely-true-story-of-a-real-programmer-who-never-learned-c-210e43a1498b#.k11teq8cn,36,7,skypather,2/14/2016 22:46 +10823157,Open Dylan,http://opendylan.org/index.html,67,12,brudgers,1/1/2016 20:11 +10721401,Burrows-Wheeler Transform [video],https://www.youtube.com/watch?v=4WRANhDiSHM,34,5,bane,12/12/2015 1:45 +10474810,"Upthere, a cloud storage service, wants to make file syncing a thing of the past",http://www.theverge.com/2015/10/29/9632904/upthere-cloud-file-storage-bertrand-serlet,62,50,dannylandau,10/29/2015 22:24 +12312558,Elon Musk 'Most Deceptive CEO I've Ever Seen',https://www.thestreet.com/story/13675583/1/tesla-tsla-ceo-musk-most-deceptive-ceo-i-ve-ever-seen-stanphyl-capital-s-spiegel-told-cnbc.html,4,1,vincent_s,8/18/2016 14:10 +10293418,Shell stops Arctic activity after 'disappointing' tests,http://www.bbc.co.uk/news/business-34377434,44,46,ComputerGuru,9/28/2015 21:42 +10292524,Words to Avoid (or Use with Care) Because They Are Loaded or Confusing,http://www.gnu.org/philosophy/words-to-avoid.en.html,1,3,iamcurious,9/28/2015 19:29 +11052607,"Show HN: I a built a clean, minimal Mailing List reader, focussed on readability",,2,2,Mojah,2/7/2016 12:10 +11261842,What No One Told You About Z-Index (2013),http://philipwalton.com/articles/what-no-one-told-you-about-z-index/,141,26,caffeinewriter,3/10/2016 20:01 +12567396,Here's why this Millennial loves the Beatles,http://college.usatoday.com/2016/09/22/heres-why-this-millennial-loves-the-beatles/,1,1,azuajef,9/23/2016 19:42 +10618889,Show HN: Einstein's Special Relativity Time Dilation,http://blabr.io/?f60c55e36d5ca3c4dd3e,5,2,mvclark,11/24/2015 2:53 +10968531,1M Java questions have now been asked on StackOverflow,https://stackoverflow.com/questions/tagged/java?sort=newest&pageSize=50,3,1,charlieegan3,1/25/2016 17:35 +11607381,Tell people to upgrade their browsers,http://www.old-browser.org/,1,1,evantahler,5/1/2016 18:53 +12185508,Why working on Chrome made me develop a tool for reading source code,https://www.coati.io/blog/why_working_on_chrom_made_me_develop_a_tool_for_reading_source_code/,8,1,egraether,7/29/2016 7:54 +11811480,IEEE Milestones Honor Two Historical Breakthroughs at AT&T Laboratories,http://theinstitute.ieee.org/technology-focus/technology-history/ieee-milestones-honor-two-historical-breakthroughs-at-att-laboratories,3,1,sohkamyung,6/1/2016 1:14 +11676008,Ask HN: Are there any summer internship opportunities for high schoolers?,,1,8,essofluffy,5/11/2016 15:08 +10899156,Boycott docker,http://www.boycottdocker.org/?,16,5,lladnar,1/14/2016 2:00 +11885821,Can we admit that customers will never pay for your app?,https://medium.com/@posttweetism/can-we-admit-that-customers-will-never-pay-for-your-product-19358ea57aeb#.ea2vmc9w5,12,2,postblogism,6/11/2016 23:09 +12342844,Zen Stories,http://nkanaev.github.io/zen101/en/,145,44,nkanaev,8/23/2016 11:37 +12002305,BlindBox: Deep Packet Inspection Over Encrypted Traffic [pdf],http://iot.stanford.edu/pubs/sherry-blindbox-sigcomm15.pdf,60,11,nnx,6/29/2016 15:34 +10546333,f.lux for iOS WITHOUT jailbreaking just got released (official),https://justgetflux.com/sideload/?ref=hn,9,3,jafitc,11/11/2015 12:37 +11113494,Ask HN: Is it reasonable to have job applicants complete a test before applying?,,14,19,grammernerd,2/16/2016 22:06 +11150197,"GPS Hacking, Part 1",http://en.wooyun.io/2016/02/04/41.html,96,23,cujanovic,2/22/2016 11:56 +11105038,How Much of Your Nest Egg to Put Into Stocks? All of It.,http://www.nytimes.com/2016/02/13/your-money/how-much-of-your-nest-egg-to-put-into-stocks-all-of-it.html,9,1,applecore,2/15/2016 18:32 +11218893,Ask HN: Why do you blog?,,8,18,audace,3/3/2016 18:41 +11708253,Three hour TSA lines at O'Hare,http://www.nbcchicago.com/news/local/Long-Security-Lines-Leave-Chicago-Passengers-Stranded-379622321.html,4,1,gregorymichael,5/16/2016 18:08 +12311930,Show HN: A Web Extension to save a page or selection as eBook,https://github.com/alexadam/save-as-ebook,106,25,eg312,8/18/2016 12:24 +12546225,JARR (Just Another RSS Reader) Public Profile and popular Pages Available,https://jarr.herokuapp.com/popular,2,3,cedricbonhomme,9/21/2016 7:58 +10980853,Rebranding the Koch Brothers,http://www.newyorker.com/magazine/2016/01/25/new-koch,3,1,DLay,1/27/2016 16:18 +11201011,Ask HN: How can I confuse an ion stream weapon?,,1,2,mc_vala,3/1/2016 5:58 +11359767,Jason Bradbury: Coding lessons in schools are a waste of time,http://www.trustedreviews.com/news/jason-bradbury-coding-lessons-in-schools-are-a-waste-of-time,16,28,SmellyGeekBoy,3/25/2016 13:02 +11019158,I bought my mom a Chromebook Pixel and everything is so much better now,http://www.theverge.com/2016/2/1/10884918/i-bought-my-mom-a-chromebook-pixel-the-divergence#comments,3,4,D_Guidi,2/2/2016 13:03 +10765688,Print books are on the rise again in the US,http://qz.com/578025/against-all-odds-print-books-are-on-the-rise-again-in-the-us/,49,59,e15ctr0n,12/20/2015 1:35 +11424592,Bitcoin Users Reveal More Private Information Than They Realize,https://medium.com/bitaccess-inc/bitcoin-users-reveal-more-private-information-than-they-realize-d783f0cd57f3,122,87,moeadham,4/4/2016 19:21 +10274498,"Ask HN: Clojure vs. Haskell or Clojure and Haskell, why not both?",,2,3,svanderbleek,9/24/2015 20:34 +12230067,Open Letter to David Kalisch of the Australian Bureau of Statistics,https://www.thoughtworks.com/insights/blog/open-letter-david-kalisch-australian-bureau-statistics,17,1,ashitlerferad,8/5/2016 4:34 +10317269,Long term psychoanalytic therapy helps major depression if other treatments fail,http://onlinelibrary.wiley.com/doi/10.1002/wps.20267/abstract,1,1,DanBC,10/2/2015 7:58 +10335103,OsFree Project (Open Source OS/2 Clone),http://www.osfree.org/,49,14,mindcrime,10/5/2015 21:28 +10619886,Ask HN: What's going on with the Apple Genius bar?,,2,2,ptype,11/24/2015 9:24 +10739932,What Will It Take to Build a Virtuous AI?,http://www.technologyreview.com/news/544556/what-will-it-take-to-build-a-virtuous-ai/,2,1,sprucely,12/15/2015 19:40 +11620262,15 Quick Changes That Add Hours of Battery Life to Your Mac,https://medium.com/@coolant/15-quick-changes-that-add-hours-of-battery-life-to-your-mac-9089c325c1f7,1,1,ltiger,5/3/2016 13:12 +12538872,Programs that rewrite Ruby programs,http://thomasleecopeland.com/2016/09/20/programs-that-rewrite-ruby-programs.html,75,8,tcopeland,9/20/2016 12:13 +12528070,Static Website Generators,https://www.netlify.com/blog/2016/05/02/top-ten-static-website-generators/,307,239,gk1,9/19/2016 0:49 +12484816,$124M payday for Wells Fargo exec who led fake accounts unit,http://money.cnn.com/2016/09/12/investing/wells-fargo-fake-accounts-exec-payday/index.html,2,1,acak,9/13/2016 0:22 +12151853,"With a new tool, spreadsheet users can construct custom database interfaces",http://news.mit.edu/2016/spreadsheet-databases-0708,89,43,renafowler,7/24/2016 1:52 +10220853,'Hackers' at 20,http://passcode.csmonitor.com/hackers,253,161,caio1982,9/15/2015 14:35 +11278538,Iris: fastest go web framework,http://kataras.github.io/iris/,5,3,dcu,3/13/2016 17:40 +11586448,How to read a patent in 60 seconds (2010),http://www.danshapiro.com/blog/2010/09/how-to-read-a-patent-in-60-second/,90,32,Tomte,4/28/2016 3:45 +11639798,British tea consumption has been going down,https://www.washingtonpost.com/news/wonk/wp/2016/05/04/why-the-british-are-drinking-coffee-instead-of-tea/,45,63,pepys,5/5/2016 21:30 +11060017,20 Years Since John Perry Barlow Declared Cyberspace Independence,http://www.wired.com/2016/02/its-been-20-years-since-this-man-declared-cyberspace-independence/,122,40,sinak2,2/8/2016 18:43 +10324914,The War on Sex Trafficking Is the New War on Drugs,https://reason.com/archives/2015/09/30/the-war-on-sex-trafficking-is,3,1,jseliger,10/3/2015 18:42 +11825364,DuckDuckGo: New Features from a Stronger Yahoo Partnership,https://duck.co/blog/post/311/yahoo-partnership,28,7,asb,6/2/2016 19:31 +10715883,Next generation of Google Cloud SQL,http://googlecloudplatform.blogspot.com/2015/12/the-next-generation-of-managed-MySQL-offerings-on-Cloud-SQL.html,77,33,aarkay,12/11/2015 7:33 +12046106,Automatic Scheduling Tool for Email,https://caramelbot.herokuapp.com/,1,4,wmbertrand,7/6/2016 21:50 +10667372,The history of deafness is as old as humanity,http://www.historytoday.com/alison-atkin/no-longer-deaf-past,20,3,prismatic,12/3/2015 2:34 +11296998,Saving Hundreds of Hours with Google Compute Engine Per-Minute Billing,http://omerio.com/2016/03/16/saving-hundreds-of-hours-with-google-compute-engine-per-minute-billing/,138,75,izzym,3/16/2016 13:17 +11610342,"Gavin Andresen's commit access to Bitcoin revoked, hacking suspected",https://twitter.com/petertoddbtc/status/727078284345917441,297,164,apsec112,5/2/2016 10:26 +10740004,The History of the Black-Scholes Formula,http://priceonomics.com/the-history-of-the-black-scholes-formula/,41,17,bpolania,12/15/2015 19:50 +11022445,Gradient-Based Hyperparameter Optimization Through Reversible Learning,http://arxiv.org/abs/1502.03492,58,13,gwern,2/2/2016 20:50 +11094700,The kids are all right,http://www.vox.com/a/teens,138,70,pmcpinto,2/13/2016 17:08 +10344812,Paradise,http://paradise.xxiivv.com:3000/,16,13,dyates,10/7/2015 8:24 +11043301,"Ask HN: Do I need a TOS&PP, Accountant, Incorporation, Trademark before launch?",,3,7,faizshah,2/5/2016 18:05 +12203480,Open source data set on perceived page loads [survey],http://speedperception.meteorapp.com/challenge,2,3,okor,8/1/2016 16:04 +12161130,Can I build Android and Chrome for my phone?,,1,1,javajosh,7/25/2016 19:54 +11992599,Facebook uses location to suggest new friends,http://fusion.net/story/319108/facebook-phone-location-friend-suggestions/,92,59,braythwayt,6/28/2016 10:19 +10241688,How to Write an Open Source JavaScript Library: 23 Free Lessons on Egghead.io,https://egghead.io/series/how-to-write-an-open-source-javascript-library,7,3,kentcdodds,9/18/2015 19:57 +10215941,Near-Perfect Computer Security May Be Surprisingly Close,http://www.wired.com/2015/09/new-design-cryptographys-black-box/,8,3,escapologybb,9/14/2015 16:38 +12102760,Help Us Annotate Michael Nielsens Book on Deep Learning,http://fermatslibrary.com/list/neural-networks-and-deep-learning,129,5,fermatslibrary,7/15/2016 18:02 +10206708,ZFS on Linux v0.6.5 release notes,https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.6.5,24,2,ivank,9/11/2015 23:39 +12393446,Windows Phone site marked as may be hacked by Google,https://www.google.com/search?q=windows%20phone&rct=j,11,6,nsp,8/30/2016 20:10 +11400144,Kubernetes 1.2 and simplifying advanced networking with Ingress,http://blog.kubernetes.io/2016/03/Kubernetes-1.2-and-simplifying-advanced-networking-with-Ingress.html,39,8,TheIronYuppie,3/31/2016 19:59 +11174895,Ask HN: Alpine Linux as a Desktop?,,6,2,smoyer,2/25/2016 15:11 +11524532,Ask HN: I'm an SDE1 at Amazon. Is no compensation adjustment this year typical?,,27,9,amzn_throwaway1,4/19/2016 2:30 +11526123,Microsofts Azure Container Service is now generally available,http://techcrunch.com/2016/04/19/microsofts-azure-container-service-is-now-generally-available/,16,1,Nr7,4/19/2016 11:11 +11840479,"NeXTstep Manual, Systems Programming with Objective-C and Driver Kit (1995)",http://www.nextop.de/NeXTstep_3.3_Developer_Documentation/,120,78,pjmlp,6/5/2016 11:42 +11437646,Show HN: First Release of Transcrypt Python3.5 to JavaScript Compiler,https://pypi.python.org/pypi/Transcrypt,3,1,JdeH,4/6/2016 9:24 +12120456,A digital solution to Brexit,http://howtostayin.eu/,46,4,squiggy22,7/19/2016 7:56 +11592180,11 Tips for Startups Pitching Big Companies,http://livedigitally.com/11-tips-for-startups-pitching-big-companies/,3,1,jtoeman,4/28/2016 21:53 +11277217,Microsoft doesnt need Windows anymore,http://www.computerworld.com/article/3041378/microsoft-windows/microsoft-doesn-t-need-windows-anymore.html,16,2,fforflo,3/13/2016 11:04 +11313754,Ask HN: Your take on MS not allowing x20 Lumias to receive W10M updates?,,3,1,Aoyagi,3/18/2016 18:23 +12270304,Even Techies Cant Afford San Francisco Anymore,https://www.buzzfeed.com/carolineodonovan/even-techies-cant-afford-san-francisco-anymore,25,15,zgwhoa,8/11/2016 17:50 +11237196,Historical Laundry Conundrum Finding a Home for Shirts,http://ascii.textfiles.com/archives/4939,52,9,jcr,3/7/2016 5:01 +12057456,Why have a womens leadership program?,https://medium.com/code-like-a-girl/why-have-a-womens-leadership-program-647aa25db630#.n0u1ti2y7,1,1,DinahDavis,7/8/2016 18:00 +11007489,"To Lions, Zebras Are Mostly Gray",http://www.theatlantic.com/science/archive/2016/01/to-lions-zebras-are-mostly-gray/427050/?single_page=true,52,53,Hooke,1/31/2016 19:01 +12253861,Show HN: Knuckleball An in-memory data structure server,https://github.com/ral99/knuckleball,100,36,rodrigoalima99,8/9/2016 11:42 +10555105,"Bye bye spotify and co, hello YouTube music",http://youtube-global.blogspot.com/2015/11/a-youtube-built-just-for-music.html,4,1,lrusnac,11/12/2015 18:31 +10284496,Embedded Mining: Turning Your Electricity Bill into a Piggy Bank,http://aakilfernandes.github.io/the-frightening-future-of-embedded-mining/,2,1,aakilfernandes,9/26/2015 21:35 +11921282,Leave or stay? Brexit in Google search [map],https://googledataorg.cartodb.com/u/googledata/viz/fefbeda2-2e5e-11e6-b291-42010a14800c/embed_map,2,1,timthorn,6/17/2016 8:26 +11515597,The Rosenhan Study: On Being Sane in Insane Places,http://www.bonkersinstitute.org/rosenhan.html,1,1,georgecmu,4/17/2016 18:26 +12552782,Hedge-Fund Son Thought Hedge-Fund Dad's Trades Were Fishy,https://www.bloomberg.com/view/articles/2016-09-21/one-cooperman-thought-another-s-trades-were-pretty-fishy,155,77,clbrook,9/21/2016 22:18 +10898802,Nest Thermostat Glitch Leaves Users in the Cold,http://www.nytimes.com/2016/01/14/fashion/nest-thermostat-glitch-battery-dies-software-freeze.html,217,224,protomyth,1/14/2016 0:32 +11336587,Show HN: Landy Machine Learning for Conversion Optimization,https://www.landy.io,12,2,mrtsepelev,3/22/2016 13:56 +11432932,High-Performance Network Tuning: Part 1 ProcFS,https://www.acksin.com/blog/2016/04/04/high-performance-network-tuning-part1-procfs/,4,1,abhiyerra,4/5/2016 18:18 +10847840,"The hidden legacy of 70 years of atomic weaponry: At least 33,480 Americans dead",http://media.mcclatchydc.com/static/features/irradiated/,7,2,hackuser,1/6/2016 1:47 +10251666,Volkswagen Stock Plummets as CEO Apologizes for Emissions Cheat,http://www.npr.org/sections/thetwo-way/2015/09/21/442174444/volkswagen-stock-plummets-as-ceo-apologizes-for-emissions-cheat?utm_source=twitter.com&utm_campaign=npr&utm_medium=social&utm_term=nprnews,165,210,r0h1n,9/21/2015 12:16 +11196968,Doodle for Team Feedback (Find Out What They Think of an Issue),https://includer.io,2,1,zok91,2/29/2016 18:04 +10797698,Used bookstores are making an unlikely comeback,https://www.washingtonpost.com/local/in-the-age-of-amazon-used-bookstores-are-making-an-unlikely-comeback/2015/12/26/06b20e48-abea-11e5-bff5-905b92f5f94b_story.html?hpid=hp_hp-more-top-stories_no-name%3Ahomepage%2Fstory,13,8,petethomas,12/27/2015 15:40 +10830960,Rowhammer.js: Root privileges for web apps?,https://media.ccc.de/v/32c3-7197-rowhammer_js_root_privileges_for_web_apps,74,20,mparramon,1/3/2016 15:48 +12063674,Show HN: A linear algebra library implemented entirely in Rust,https://github.com/AtheMathmo/rulinalg,4,1,AtheMathmo,7/9/2016 22:40 +10238992,Ask HN: What's the web link for?,,6,1,pandatigox,9/18/2015 13:20 +11150627,Why I Wear the Exact Same Thing to Work Every Day,http://www.harpersbazaar.com/culture/features/a10441/why-i-wear-the-same-thing-to-work-everday/,1,2,jackgavigan,2/22/2016 13:30 +12400132,Heres a Simple Explanation of How Self-Driving Cars Could Eliminate Traffic,http://jalopnik.com/here-s-a-simple-explanation-of-how-self-driving-cars-co-1785996633,2,1,ourmandave,8/31/2016 17:50 +10444969,"Unicode date formats, YYYY?",http://boredzo.org/blog/archives/2015-10-24/the-international-standards-organization-hates-your-guts,30,12,ingve,10/24/2015 21:45 +11621711,AdBlock Plus teams up with Flattr to help readers pay publishers,http://techcrunch.com/2016/05/03/adblock-plus-teams-up-with-flattr-to-help-readers-pay-publishers/,159,123,cpeterso,5/3/2016 15:51 +12007497,Markdown to Web,http://markdowntoweb.com/,7,1,tatransky,6/30/2016 9:47 +12326201,Plugging in Kindle is crashing Windows 10 after summer update,http://answers.microsoft.com/en-us/windows/forum/windows_10-performance/plugging-in-kindle-is-crashing-windows-10-after/5db0d867-0822-4512-919e-3d7786353f95?auth=1,68,87,nikbackm,8/20/2016 12:09 +11292038,Cops charged after pot shops hidden cameras show them eating snacks,http://arstechnica.com/tech-policy/2016/03/cops-charged-after-pot-shops-hidden-cameras-show-them-eating-snacks/,3,8,leephillips,3/15/2016 18:49 +12050098,Is WebVR Ready?,https://iswebvrready.org/,3,2,danboarder,7/7/2016 15:55 +10225738,Geek way to find Instagram accounts of neighbour girls,https://instmap.com,2,2,ttarakanoff,9/16/2015 10:54 +12327410,Dymaxion Map,https://en.wikipedia.org/wiki/Dymaxion_map,8,1,patricknixon,8/20/2016 17:11 +11584143,Note from Mark Zuckerberg,http://newsroom.fb.com/news/2016/04/marknote/,275,272,eadz,4/27/2016 20:16 +12250168,Its hard work printing nothing,http://www.tedunangst.com/flak/post/its-hard-work-printing-nothing,179,74,protomyth,8/8/2016 19:13 +10314470,New tidal energy system could help power UK,http://www.reuters.com/article/2015/08/05/us-tidal-energy-idUSKCN0QA1IX20150805,11,2,dharma1,10/1/2015 20:33 +10650614,The HTTP 500 Solution,http://www.daemonology.net/blog/2015-11-27-the-HTTP-500-solution.html,3,1,newscasta,11/30/2015 17:39 +10351821,Ask HN: What is a good book or resource discussing how to create a data warehouse,,2,4,thorin,10/8/2015 10:28 +11408062,Production-Ready Application Rollouts Using Deployment Objects in Kubernetes 1.2,http://blog.kubernetes.io/2016/04/using-deployment-objects-with.html,4,3,TheIronYuppie,4/1/2016 20:00 +10766210,Atlassian's User Onboarding Magic,http://appcues.com/blog/atlassian-5-billion-dollar-user-onboarding-magic/,63,32,walterbell,12/20/2015 6:01 +11173504,Posix command shell in Node.js,https://github.com/dthree/cash/,3,1,randomname2,2/25/2016 10:22 +12481274,R.I.P. Google Hangouts Chrome App,https://medium.com/@AdamScott/r-i-p-google-hangouts-chrome-app-7b04d780dce9,1,1,A_Hurwitz,9/12/2016 16:46 +11358513,Smartwatches and the three-second rule,http://www.theverge.com/2016/3/24/11299174/smartwatch-problems-design-features-pdas-zen-of-palm,81,50,schuke,3/25/2016 4:40 +10177011,Video Poker Hackers Cleared of Federal Charges,http://www.wired.com/2013/11/video--poker-case/,23,3,trengrj,9/6/2015 7:25 +11417340,SSE: mind the gap,https://fgiesen.wordpress.com/2016/04/03/sse-mind-the-gap/,117,34,Audiophilip,4/3/2016 19:48 +10790578,Merry Christmas,,32,6,defenestration,12/25/2015 6:24 +12517691,Airbnb Hosting Horror Stories,,8,5,mbarsh,9/16/2016 22:03 +11882127,"For Tesla Owner, Losing a Wheel Was Just the First Surprise",http://www.nytimes.com/2016/06/11/business/tesla-motors-model-s-suspension.html,4,1,malz,6/11/2016 4:49 +10364812,Mail Rail: What is it like on the 'secret' Tube? (2014),http://www.bbc.com/news/uk-england-london-25145632,21,5,herendin,10/10/2015 7:28 +10998493,In Retrospect: The Selfish Gene,http://www.nature.com/nature/journal/v529/n7587/full/529462a.html,86,93,Hooke,1/29/2016 21:05 +10213313,CloudFlare's Partnership with Baidu,http://www.nytimes.com/2015/09/14/business/partnership-boosts-users-over-chinas-great-firewall.html,67,44,rdl,9/14/2015 1:20 +10960564,Man ordered to tell police if he plans to have sex,http://www.bbc.com/news/uk-england-york-north-yorkshire-35385227,2,2,teddyh,1/23/2016 23:11 +12351907,Turning Instagram into a Radically Unfiltered Travel Guide,http://www.nytimes.com/2016/08/28/magazine/turning-instagram-into-a-radically-unfiltered-travel-guide.html,88,52,dpflan,8/24/2016 13:43 +10447389,EverythingMe closes down despite raising $37.5M,http://www.globes.co.il/en/article-everythingme-closes-down-despite-raising-375m-1001076002,14,13,wslh,10/25/2015 16:51 +10632158,"Tell HN: Deeply creepy people you may know, suggested by Facebook.",,13,26,hoodoof,11/26/2015 9:40 +12278932,Ask HN: Is trolling on social media a sign that machine learning is overhyped?,,5,6,glondi,8/12/2016 21:27 +10575450,"In 1975, the USSR fired a cannon from an orbiting space station",http://www.popularmechanics.com/military/weapons/a18187/here-is-the-soviet-unions-secret-space-cannon/,107,53,devNoise,11/16/2015 16:49 +10378771,XORSearch and XORStrings Reverse engineering files,http://blog.didierstevens.com/programs/xorsearch/,36,4,emersonrsantos,10/13/2015 6:05 +11599453,Ask HN: Intellectually-stimulating/interesting websites you recommend?,,16,2,LeicesterCity,4/29/2016 23:40 +10450448,Why we discontinued products that generated $6m in revenue per year,https://medium.com/swlh/why-we-discontinued-products-that-generated-6m-in-revenue-per-year-5431f2cb3154#.c22l45wno,2,1,gedrap,10/26/2015 10:23 +11874020,Doug McIlroy on Unix Taste (2014),http://minnie.tuhs.org/pipermail/tuhs/2014-August/004890.html,47,64,_acme,6/10/2016 3:07 +10524676,Is capitalism 'mutating' into an infotech utopia?,https://www.opendemocracy.net/ann-pettifor/is-capitalism-mutating-into-infotech-utopia,4,2,hangars,11/7/2015 13:07 +11490658,Ask HN: How you decide when to fire a person?,,1,2,tablet,4/13/2016 18:06 +10316426,The Cognitive Style of PowerPoint (2003) [pdf],http://users.ha.uth.gr/tgd/pt0501/09/Tufte.pdf,7,1,cooperpellaton,10/2/2015 2:51 +10678471,Master of the house: why we should fight for truly private spaces,http://www.theguardian.com/technology/2015/dec/04/private-spaces-technology-thoughts,50,16,kawera,12/4/2015 19:26 +11829525,Solving Ballistic Trajectories Dev Curious,https://blog.forrestthewoods.com/solving-ballistic-trajectories-b0165523348c#.3xdegc5ec,2,1,kiyanwang,6/3/2016 10:55 +12176501,Which to believe fivethirtyeight or predictwise,http://politics.stackexchange.com/questions/11885/which-to-believe-fivethirtyeight-or-predictwise,2,1,WhitneyLand,7/27/2016 21:03 +11097710,What Worse is Better vs. The Right Thing is really about (2012),http://yosefk.com/blog/what-worse-is-better-vs-the-right-thing-is-really-about.html,102,35,nostrademons,2/14/2016 9:48 +12421687,How to Tell a Mother Her Child Is Dead,http://www.nytimes.com/2016/09/04/opinion/sunday/how-to-tell-a-mother-her-child-is-dead.html,694,199,niyazpk,9/3/2016 23:02 +11509920,Norway's Barnevernet: They took our four children then the baby,http://www.bbc.com/news/magazine-36026458,6,7,kubbity,4/16/2016 9:21 +12220598,Breakthrough in Silicene Production,http://spectrum.ieee.org/nanoclast/semiconductors/materials/breakthrough-in-silicene-production-promises-a-future-of-silicenebased-electronics,29,2,bertiewhykovich,8/3/2016 19:09 +10482049,BPF Tools packet analyst toolkit,https://github.com/cloudflare/bpftools,24,6,luu,10/31/2015 6:58 +10834665,Lenovo Launches ThinkPad X1 Yoga at CES with OLED Display,http://www.anandtech.com/show/9887/lenovo-launches-thinkpad-x1-yoga-at-ces-with-oled-display,72,102,dbcooper,1/4/2016 9:26 +10697285,Largest destroyer built for Navy headed to sea for testing,http://finance.yahoo.com/news/largest-destroyer-built-navy-headed-sea-testing-144549669.html,5,4,protomyth,12/8/2015 16:19 +10909784,Plankalkül,https://en.wikipedia.org/wiki/Plankalk%C3%BCl,56,14,vmorgulis,1/15/2016 15:24 +12269506,Judge upholds BMGs $25M court win against US ISP Cox,http://www.completemusicupdate.com/article/judge-upholds-bmgs-25-million-court-win-against-us-isp-cox/,2,1,6stringmerc,8/11/2016 16:20 +11302330,Coherent Extrapolated Volition [pdf],https://intelligence.org/files/CEV.pdf,2,1,doener,3/17/2016 3:04 +11669098,Why chatbots must be cross-platform compatible,https://medium.com/@kipsearch/why-the-future-of-bots-will-be-multi-platform-67c503afaa7#1,5,2,osiris679,5/10/2016 17:48 +10894045,This Guy's Marketing Stunt Was So On-Brand That We're Actually Writing About It,http://www.fastcompany.com/3055118/most-creative-people/this-guys-marketing-stunt-was-so-on-brand-that-were-actually-writing-ab,3,1,venturefizz,1/13/2016 13:22 +10604287,The /now page movement,https://sivers.org/nowff,3,1,gkop,11/20/2015 22:25 +10521482,Why I Migrated Away from MongoDB,http://svs.io/post/31724990463/why-i-migrated-away-from-mongodb,4,1,adrianmsmith,11/6/2015 19:36 +11587462,No More Secrets,https://medium.com/@bartobri/the-movie-based-terminal-effect-not-yet-recreated-by-hackers-46e9ca241bc9#.fhvqzjwpt,2,1,karmiphuc,4/28/2016 9:29 +11303511,2016 Stack Overflow Developer Survey Results,http://stackoverflow.com/research/developer-survey-2016,318,168,sambrand,3/17/2016 10:15 +11754605,Rich Programmer Food (2007),http://steve-yegge.blogspot.com/2007/06/rich-programmer-food.html,92,72,rspivak,5/23/2016 15:48 +10539100,Large Companies Game H-1B Visa Program,http://www.nytimes.com/2015/11/11/us/large-companies-game-h-1b-visa-program-leaving-smaller-ones-in-the-cold.html,400,389,ganeumann,11/10/2015 13:24 +12259058,China's Weibo is ahead of Twitter when it comes to mobile,https://www.techinasia.com/twitter-weibo-mobile,2,1,williswee,8/10/2016 2:09 +11120927,SEC Suspends Deutsche Bank Research Analyst for Not Meaning What He Said,https://www.sec.gov/news/pressrelease/2016-30.html,87,17,randomname2,2/17/2016 20:16 +11533314,Git Cheat Sheet,http://www.alexkras.com/getting-started-with-git/,8,1,rman4040,4/20/2016 10:11 +11914637,Nanorods: water-oozing material could help quench thirst,http://www.pnnl.gov/news/release.aspx?id=4282,43,15,wallflower,6/16/2016 7:44 +12159763,Spotify: Users will be able to revoke access tokens from August 9th,https://github.com/spotify/web-api/issues/126#issuecomment-234998645,1,1,oal,7/25/2016 16:30 +12475521,The Unique Sound of the Cricket,http://www.theparisreview.org/blog/2016/09/09/unique-sound-cricket/,32,1,tintinnabula,9/11/2016 20:31 +11193339,Cashing Out vs. Cashing In,https://www.perflexive.com/blog/cashing-out-vs-cashing-in/,2,2,perflexive,2/29/2016 2:28 +10902151,Search through radio telescope data and discover a new pulsar,https://www.zooniverse.org/projects/zooniverse/pulsar-hunters/,1,1,kordless,1/14/2016 16:02 +10791198,Facebook is misleading Indians with its full-page ads about Free Basics,https://www.linkedin.com/pulse/facebook-misleading-indians-its-full-page-ads-free-basics-murthy,804,245,temp,12/25/2015 13:41 +12064611,Semantic Highlighting for SQL in the Atom Editor - Qolor,https://atom.io/packages/qolor,6,2,DavidLGoldberg,7/10/2016 4:53 +10707442,"Google, D-Wave, and the case of the factor-10^8 speedup",http://www.scottaaronson.com/blog/?p=2555,312,110,apsec112,12/9/2015 22:58 +10776023,Google has made Usenet archives impossible to search,http://motherboard.vice.com/read/google-a-search-company-has-made-its-internet-archive-impossible-to-search,117,55,tarr11,12/22/2015 5:30 +12232622,"Boot, the alternative build system for Clojure, just hit 1k stars on GitHub",http://boot-clj.com/,15,2,Borkdude,8/5/2016 14:37 +11852879,"Show HN: A Node.js and electron based image viewer for Mac, Windows and Linux",https://github.com/sachinchoolur/lightgallery-desktop/tree/master,2,1,sachinchoolur,6/7/2016 7:03 +10733235,BitCongress Decentralized Voting Platform,http://www.bitcongress.org/,41,27,kawera,12/14/2015 19:37 +11427867,Ask HN: What kind of IP agreement would make you uncomfortable as a contractor?,,3,3,ritchiea,4/5/2016 4:43 +11517618,Did anyone else get bulk-invited to several Slack teams?,,3,3,exolymph,4/18/2016 3:51 +11852650,No Musky. Feudalism Is Best for Mars,http://blog.erratasec.com/2016/06/no-musky-feudalism-is-best-for-mars.html,1,2,youngbullind,6/7/2016 5:51 +12400292,Mux (YC W16) Is Google Analytics for Video,http://themacro.com/articles/2016/08/mux/,4,2,stvnchn,8/31/2016 18:15 +10515468,"SAT essay section: Problems with grading, instruction, and prompts (2013)",http://www.slate.com/articles/life/education/2013/10/sat_essay_section_problems_with_grading_instruction_and_prompts.single.html,13,4,anigbrowl,11/5/2015 19:08 +10514440,Canada's R&D tax credit program hurts R&D in Canada,https://medium.com/@wwhchung/sr-ed-hurts-canadian-innovation-4fbcf4898d7d,133,66,wwhchung,11/5/2015 16:58 +12571510,Natures libraries are the fountains of biological innovation,https://aeon.co/essays/without-a-library-of-platonic-forms-evolution-couldn-t-work,97,46,jonbaer,9/24/2016 16:26 +11345136,A super nerdy post about Hardware in Shenzhen (with loads of pictures),http://www.txzero.com/hardware-in-shenzhen-part-3/,3,2,sensors,3/23/2016 15:08 +10863901,Ask HN: Does your company donate to free software it uses?,,29,11,blubb-fish,1/8/2016 9:56 +10981008,Whats Apples competitive edge going forward?,http://blogs.harvard.edu/philg/2016/01/26/whats-apples-competitive-edge-going-forward/,1,1,tjr,1/27/2016 16:40 +11832986,Contracts are Breaking Smart,https://medium.com/the-exofiles/contracts-are-breaking-smart-106ebd614a5#.56j76wax9,2,1,hosslayne,6/3/2016 20:23 +10245340,Ask HN: Anyone doing Transcendental Meditation?,,1,2,glossyscr,9/19/2015 19:49 +11299029,What should I choose: Swift or Machine learning?,,2,6,piotr-yuxuan,3/16/2016 17:23 +10994708,"Were in a brave, new post open source world",https://medium.com/@nayafia/we-re-in-a-brave-new-post-open-source-world-56ef46d152a3#.fpvy2xwmf,3,1,Semetric,1/29/2016 11:57 +11230034,Peanut allergy theory backed up by new research,http://www.bbc.com/news/health-35727244,99,47,ohjeez,3/5/2016 17:07 +11386971,ETHICAL HACKING WITH KALI LINUX [5] ROGUE WIRELESS ACCESS POINTS,http://www.bijayacharya.com/2016/03/30/ethical-hacking-kali-linux-5-rogue-wireless-access-points/#more-94,2,1,nhc-forum,3/30/2016 4:28 +11178659,Show HN: GDOM GraphQL for DOM traversing,https://github.com/syrusakbary/gdom/?,78,8,syrusakbary,2/25/2016 23:21 +12510249,Boeings Humble 737 to replace jumbos for transatlantic flights,http://www.bloomberg.com/news/articles/2016-09-14/your-next-trans-atlantic-trip-may-be-on-boeing-s-diminutive-737,14,5,megafounder,9/15/2016 22:08 +10666334,Tracking DHS Plane Flying Over San Bernadino Mass Shooting,http://www.flightradar24.com/8266504,3,4,c-slice,12/2/2015 22:29 +11506307,Constructive Criticism Is Bullshit,http://www.joshuarust.com/2016/04/constructive-criticism-is-bullshit_6.html,1,4,irox859,4/15/2016 17:54 +10916087,Ask HN: How can I transition to be a systems programmer?,,6,2,ginsurge,1/16/2016 18:01 +11151981,Kanye Goes Agile Ships an album with continuous improvements,http://www.nytimes.com/2016/02/21/arts/music/kanye-west-life-of-pablo-tlop.html?ribbon-ad-idx=3&rref=business/media&module=Ribbon&version=context®ion=Header&action=click&contentCollection=Media&pgtype=article,2,1,thebooglebooski,2/22/2016 16:30 +11699338,Ask HN: Aspiring entrepreneur How to build a stocks trading platform?,,2,9,psmutha,5/15/2016 3:54 +10177828,Saying Goodbye to Google Services,https://danielmiessler.com/blog/saying-goodbye-to-google-services/?fb_ref=e0550e3ecdec470994a4fca81ee9c009-Hackernews,25,4,danielmiessler,9/6/2015 15:04 +11481067,Show HN: Feature flag management for feature lifecycle control,https://launchdarkly.com/,63,24,eharbaugh,4/12/2016 16:39 +11110986,Ask HN: What can i buy for 50$(44€),,2,1,theoneone,2/16/2016 16:33 +11381476,Explorable Explanations (Curated interactive essay collection),http://explorableexplanations.com/,1,1,grkvlt,3/29/2016 13:56 +10725067,A Curious Course on Coroutines and Concurrency (2009) [pdf],http://dabeaz.com/coroutines/Coroutines.pdf,34,6,avyfain,12/13/2015 1:46 +10418097,The Jony Ive Principle,https://medium.com/swlh/the-jony-ive-principle-4e50641d41be,1,1,jaxondu,10/20/2015 8:43 +11739861,Project Ara Lives: Googles Modular Phone Is Ready for You Now,http://www.wired.com/2016/05/project-ara-lives-googles-modular-phone-is-ready/?mbid=social_twitter,5,1,mmastrac,5/20/2016 17:41 +11777256,WebVR spec 1.0,https://mozvr.com/webvr-spec/,5,2,opticalflow,5/26/2016 12:05 +11470758,"3D Touch is a demo feature, not a real feature",http://daringfireball.net/linked/2016/04/08/snell-3d-touch,4,1,doener,4/11/2016 11:15 +12486669,Exact rational value of a squared cosine between two arbitrary vectors,http://www.texpaste.com/n/os1jdjd5,2,2,grondilu,9/13/2016 9:48 +10379834,The Unseen Theft of America's Literary History,http://lithub.com/the-unseen-theft-of-americas-literary-history/,73,19,joe5150,10/13/2015 12:11 +12430498,No Sailors Needed: Robot Sailboats Scour the Oceans for Data,http://www.nytimes.com/2016/09/05/technology/no-sailors-needed-robot-sailboats-scour-the-oceans-for-data.html?ref=technology&_r=0,143,48,hvo,9/5/2016 14:29 +11674513,"Jon Stewart bashes corrupt, blinded TV execs opting for conflict over clarity",http://www.poynter.org/2016/jon-stewart-bashes-corrupt-blinded-media-and-tv-execs-opting-for-conflict-over-clarity/411246/,26,1,okket,5/11/2016 12:13 +11546416,Ask HN: Is Entrepreneurship WRONG for me?,,5,7,esob3,4/22/2016 1:02 +12444186,Who's on call?,http://www.susanjfowler.com/blog/2016/9/6/whos-on-call,165,112,emilong,9/7/2016 15:29 +11088285,#1 on Product Hunt (600+ Votes) with a Badly Designed Product (& No Planning),https://medium.com/@Dan_Fennessy/1-on-product-hunt-600-votes-with-a-badly-designed-product-no-planning-59f86ad7b610#.dbiwx21s7,4,1,partywithalocal,2/12/2016 16:20 +11276133,"AI, VR, and AlphaGo",https://fusingthought.wordpress.com/2016/03/13/ai-vr-and-alphago/,2,1,nopinsight,3/13/2016 3:58 +12164535,How to turn cheap MD380 digital walkie talkie into analog police scanner.,http://phasenoise.livejournal.com/4640.html,3,1,wolframio,7/26/2016 10:14 +12168371,REST is in the eye of the beholder,https://evertpot.com/rest-is-in-the-eye-of-the-beholder/,1,1,treve,7/26/2016 20:02 +11161859,Small company developer pain points,,5,5,ph33t,2/23/2016 20:07 +11439159,The Swedish Visual Copyright Society,http://bus.se/en/information/about-us,1,1,drallison,4/6/2016 14:54 +12554807,The World of Liquid Crystal Displays (2006),http://www.personal.kent.edu/~mgu/LCD/home.htm,57,11,vinchuco,9/22/2016 6:16 +11602019,Ask HN: What was your best career decision?,,27,41,servlate,4/30/2016 15:19 +10875200,Free will is dead lets bury it,http://backreaction.blogspot.com/2016/01/free-will-is-dead-lets-bury-it.html,9,7,hamdal,1/10/2016 13:19 +12152353,Official Telegram for MacOS logs every pasted message to syslog,https://twitter.com/k_firsov/status/756875611872821248,4,2,kawera,7/24/2016 5:43 +10587000,MIT introduces the first cryotron (1957),http://www.aps.org/publications/apsnews/201202/physicshistory.cfm,10,1,chmaynard,11/18/2015 10:50 +12135771,Inploi,https://www.inploi.me/,1,1,inploi,7/21/2016 9:41 +12268490,A Honeypot for Assholes: Inside Twitters 10-Year Failure to Stop Harassment,https://www.buzzfeed.com/charliewarzel/a-honeypot-for-assholes-inside-twitters-10-year-failure-to-s?utm_term=.cf9lYYV9zg#.slYMPPojzG,53,81,avolcano,8/11/2016 14:29 +10254721,The 21 Bitcoin Computer,https://medium.com/@21dotco/the-21-bitcoin-computer-1d28d652b57b,129,84,paulbaumgart,9/21/2015 19:51 +10622537,World's Fastest Self-Made Billionaires,http://thehustle.co/fastest-self-made-billionaires,7,2,jl87,11/24/2015 18:34 +10795117,Ask HN: Hosting a Java Spring web application,,2,3,sdiq,12/26/2015 20:15 +10182047,"Book on JavaScript Tools: Gulp, NPM, Yeoman, Bower",https://www.manning.com/books/front-end-tooling-with-gulp-bower-and-yeoman/?a_aid=fettblog&a_bid=238ac06a,3,1,fett-blog,9/7/2015 16:38 +10722647,Z quickly cd to 'frecent' directories,https://github.com/rupa/z,91,49,mrswag,12/12/2015 13:17 +11278336,"C Is Manly, Python Is for N00bs:How False Stereotypes Turn into Technical Truths",http://lambda-the-ultimate.org/node/5314,3,1,eternalban,3/13/2016 16:57 +11366306,Var and val in Java?,http://blog.joda.org/2016/03/var-and-val-in-java.html,49,59,frostmatthew,3/26/2016 16:45 +12178618,Answerz.com Java and J2ee Programming,http://answersz.com/,2,1,answersz,7/28/2016 5:59 +10225097,Medium's Evan Williams to Publishers: Your Website Is Toast,http://www.forbes.com/sites/roberthof/2015/09/09/mediums-evan-williams-to-publishers-your-website-is-toast/,40,23,phodo,9/16/2015 7:08 +10344932,"qpm, a package manager for Qt / QML",http://www.cutehacks.com/blog/2015/10/5/say-hello-to-qpm-a-package-manager-for-qtqml,41,10,bpierre,10/7/2015 9:07 +12080058,Why we're starting a Rust consultancy,http://www.integer32.com/2016/07/11/why-rust.html,4,1,shepmaster,7/12/2016 15:52 +10615120,Show HN: Connecting Refugees to Employers,http://expatt.org,3,5,drizin,11/23/2015 15:36 +10622568,The 14 points of Fascism,http://www.favreau.info/misc/14-points-fascism.php,2,4,weatherlight,11/24/2015 18:39 +10929374,"Grisly find suggests humans inhabited Arctic 45,000 years ago",http://www.sciencemag.org/news/2016/01/grisly-find-suggests-humans-inhabited-arctic-45000-years-ago,90,79,fforflo,1/19/2016 8:29 +10454150,PocketNode,http://www.pocketnode.io/,3,1,yitchelle,10/26/2015 20:19 +10234160,Android 5 lock-screens can be bypassed by typing in a reeeeally long password,http://www.theregister.co.uk/2015/09/16/google_patches_android_lockscreen_bypass_nexus/,16,3,Jerry2,9/17/2015 16:08 +10678560,Show HN: Weather Extension for Opera,https://addons.opera.com/en/extensions/details/weather-2/?display=en,1,1,TimLeland,12/4/2015 19:38 +12414679,"DataScience, Inc. Concludes Elite Education Program with Capstone Event",http://finance.yahoo.com/news/datascience-inc-concludes-elite-education-120000860.html,2,1,DS12Residency,9/2/2016 17:30 +12025091,Ask HN: Any one getting other people's emails in Gmail,,19,19,x0054,7/3/2016 7:06 +12287841,Verifying copies,http://jrs-s.net/2016/06/29/verifying-copies/,41,18,snaky,8/14/2016 23:44 +10483695,"Locked doors, headaches, and intellectual need",http://mkremins.github.io/blog/doors-headaches-intellectual-need/,296,26,luu,10/31/2015 18:59 +10249686,You can now buy a Unix computer for less than the C Programming Language,,3,1,josephpmay,9/20/2015 23:54 +10748481,A-Frame: open-source WebVR framework from Mozilla,https://aframe.io/blog/2015/12/16/0.0.10-release/,91,9,chuckharmston,12/17/2015 0:10 +10786842,Want to Write a Compiler? Read These Two Papers (2008),http://prog21.dadgum.com/30.html,237,70,rspivak,12/24/2015 2:57 +11375237,How to turn small talk into smart conversation,http://ideas.ted.com/how-to-turn-small-talk-into-smart-conversation/,1,1,tmlee,3/28/2016 16:29 +11179605,New Chat Protocol XMPP Alternative (Based on XMPP Semantics),,5,1,harshitbangar1,2/26/2016 3:10 +11868801,SaaS: how we went from 5 to 100k MRR in 24 months,http://thenextweb.com/entrepreneur/2016/06/09/build-scalable-sales-machine-saas/,11,1,rafweverbergh,6/9/2016 12:04 +12459098,Cracking NES Video Game Passwords [video],https://www.youtube.com/watch?v=PIu9J_CD818,5,1,Halienja,9/9/2016 1:41 +12458870,European Copyright Ruling Ushers in New Dark Era for Hyperlinks,https://www.eff.org/deeplinks/2016/09/european-copyright-ruling-ushers-new-dark-era-hyperlinks,23,3,dwaxe,9/9/2016 0:48 +11816852,Abusing Privileged and Unprivileged Linux Containers,https://www.nccgroup.trust/us/our-research/abusing-privileged-and-unprivileged-linux-containers/?research=Whitepapers,101,50,gtank,6/1/2016 18:21 +12564298,"Twitter may receive formal bid, suitors said to include Salesforce and Google",http://www.cnbc.com/2016/09/23/twitter-may-receive-formal-bid-shortly-suitors-said-to-include-salesforce-and-google.html,265,166,kgwgk,9/23/2016 13:14 +10291688,"Data first, not code first",http://etodd.io/2015/09/28/one-weird-trick-better-code/,252,89,et1337,9/28/2015 17:29 +11296067,Ask HN: Should we create a new product company or keep it under one umbrella?,,3,4,abhishekdesai,3/16/2016 9:43 +11808862,The Immutability of Math and How Almost Everything Else Will Pass,http://www.forbes.com/sites/vivekravisankar/2016/05/31/the-immutability-of-math-and-how-almost-everything-else-will-pass/#64e6876b20c8,6,2,idlecool,5/31/2016 18:33 +12369987,Wolverines: The Future of Search and Rescue,http://www.outsideonline.com/2067281/wolverines-future-search-and-rescue,66,11,curtis,8/26/2016 23:16 +11454007,Ask HN: JSON API standards / patterns,,8,1,danielnc,4/8/2016 12:04 +12185782,What was once a bug is now a widely used CSS property,https://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug,2,2,afshinmeh,7/29/2016 9:44 +10792872,Quantum computers could lead to more efficient designs for aircraft,http://www.telegraph.co.uk/finance/newsbysector/industry/12065245/Airbuss-quantum-computing-brings-Silicon-Valley-to-the-Welsh-Valleys.html,3,1,jonbaer,12/26/2015 1:03 +10567873,Banish the Kardashians from the web,http://kblocker.co/,63,29,rfjedwards,11/15/2015 0:09 +12551566,The Death of the Telephone Call: 18762007,http://www.slate.com/articles/life/the_next_20/2016/09/what_s_lost_when_telephone_calls_disappear.html,68,88,Hooke,9/21/2016 19:44 +12503155,Actors vs. Objects,https://anthonylebrun.silvrback.com/actors-vs-objects,19,2,anthonylebrun,9/15/2016 3:24 +10722068,How Nasa brought the monstrous F-1 'moon rocket' engine back to life (2013),http://www.wired.co.uk/news/archive/2013-04/16/f-1-moon-rocket/viewall,3,1,rmason,12/12/2015 7:07 +11553740,About rel=noopener,https://mathiasbynens.github.io/rel-noopener/?target=_blank,411,109,dmnd,4/23/2016 1:54 +12165605,Declined VC wants us to pay legal fees,https://medium.com/@cag1412/vc-calling-pay-my-lawyers-2f5fce7abe06,94,59,mntmn,7/26/2016 13:54 +11083898,Is it time to rethink recycling?,http://ensia.com/features/is-it-time-to-rethink-recycling/,117,147,nkurz,2/11/2016 22:39 +10864196,Show HN: EMU - beta - JS-based WYSIWYG markup-editor/wiki/calculator,http://apelab.com/emu-beta,4,2,chvid,1/8/2016 11:38 +10592701,MIT graduate student says income inequality is actually about housing,https://medium.com/the-ferenstein-wire/a-26-year-old-mit-graduate-is-turning-heads-over-his-theory-that-income-inequality-is-actually-2a3b423e0c#.8dd6eoir9,90,99,adidash,11/19/2015 4:14 +11743394,Australia versus Philip Morris. How we took on big tobacco and won,http://www.smh.com.au/federal-politics/political-news/australia-versus-philip-morris-how-we-took-on-big-tobacco-and-won-20160517-gowwva.html,2,1,walterbell,5/21/2016 5:53 +10647445,Different approximations for the same sales tax rate,https://twitter.com/itbus/status/671160646541647872,1,1,dewiz,11/30/2015 3:15 +12068295,Pokémon GO: The Data Behind Americas Latest Obsession,https://www.similarweb.com/blog/pokemon-go,361,197,nateberkopec,7/11/2016 1:28 +11211085,The eerie math that could predict terrorist attacks,https://www.washingtonpost.com/news/wonk/wp/2016/03/01/the-eerie-math-that-could-predict-terrorist-attacks/,2,1,simulate,3/2/2016 16:47 +11878087,Android No Longer Fragmented,https://www.apteligent.com/2016/06/may-monthly-data-report-google-io-edition/,19,5,andrewmlevy,6/10/2016 17:28 +12263341,Letter of Resignation from the Palo Alto Planning and Transportation Commission,https://medium.com/@katevershovdowning/letter-of-resignation-from-the-palo-alto-planning-and-transportation-commission-f7b6facd94f5#.ehfw934kr,21,11,jseliger,8/10/2016 17:18 +11701162,Tradeoffs in Coordination Among Teams,http://blog.jessitron.com/2016/05/tradeoffs-in-coordination-among-teams.html,31,3,luu,5/15/2016 15:04 +11299255,The Clipper Chip,https://en.wikipedia.org/wiki/Clipper_chip,244,39,jacquesm,3/16/2016 17:49 +10878826,Employee benefits at Basecamp,https://m.signalvnoise.com/employee-benefits-at-basecamp-d2d46fd06c58#.b3h5bv71t,12,2,axelfontaine,1/11/2016 4:33 +11593322,Does Mark Zuckerberg Want to Run for President?,http://www.forbes.com/sites/briansolomon/2016/04/28/does-mark-zuckerberg-want-to-run-for-president/#6c213aff6cfa,4,4,abhi3,4/29/2016 2:03 +10844910,I retired at 30. The best part isn't leisure it's freedom,http://www.vox.com/2015/7/27/9023415/mr-money-mustache-retirement,32,2,joeyespo,1/5/2016 18:18 +12469917,Robots Cant Dance Why the singularity is greatly exaggerated (2015),http://nautil.us/issue/20/creativity/robots-cant-dance,44,74,dnetesn,9/10/2016 16:38 +10505106,Scientists May Have Just Discovered a Parallel Universe Leaking into Ours,https://www.inverse.com/article/7403-scientists-may-have-just-discovered-a-parallel-universe-leaking-into-ours,5,2,gpvos,11/4/2015 7:38 +11057597,Python implementation of statistical Dependency parsing using SVM by @rj_here,https://github.com/rohit-jain/parzer/tree/master/code,4,3,opamp1990,2/8/2016 11:51 +12306562,How Imperfections Could Bring Down Michelangelos David,http://www.nytimes.com/2016/08/21/magazine/davids-ankles-how-imperfections-could-bring-down-the-worlds-most-perfect-statue.html?smid=tw-nytimes&smtyp=cur&_r=0,55,13,rmason,8/17/2016 17:40 +12101333,My First 10 Seconds on a Server,http://jerrygamblin.com/2016/07/13/my-first-10-seconds-on-a-server/,5,1,adamnemecek,7/15/2016 14:47 +11242711,Ask HN: Question on applying to Google/Facebook,,3,1,ucharmme,3/8/2016 0:08 +12122948,An Empirical Analysis of Racial Differences in Police Use of Force,http://www.nber.org/papers/w22399,1,1,MrJagil,7/19/2016 17:00 +12499684,GraphQL: Leaving technical preview,http://graphql.org/blog/production-ready/,41,2,dschafer,9/14/2016 18:10 +10693950,Dropbox is giving up on Mailbox and Carousel,http://www.cultofandroid.com/77588/dropbox-is-giving-up-on-mailbox-and-carousel/,1,1,riqbal,12/8/2015 0:33 +10668397,Can any one know about MLM business plan?,,1,1,Georgebailey,12/3/2015 7:53 +11395322,The Remembrance of Amalek,http://therevealer.org/archives/20744,9,2,lermontov,3/31/2016 6:16 +11223927,Swift Asserts,https://www.mikeash.com/pyblog/friday-qa-2016-03-04-swift-asserts.html,73,21,ingve,3/4/2016 14:34 +11987702,Prometheus and Kubernetes up and running,https://coreos.com/blog/prometheus-and-kubernetes-up-and-running.html,85,5,philips,6/27/2016 17:23 +11586338,Apply HN: Mental Health Medication Self-Assesment App,,3,8,thevibesman,4/28/2016 3:09 +12275277,What Makes a Good User Story Part 2,https://www.promptworks.com/blog/what-makes-a-good-user-story-part-2?utm_source=hn&utm_medium=social&utm_campaign=userstorypart2,2,1,promptworks,8/12/2016 13:09 +10299938,"Make ES6, Not Coffee",http://gofore.com/ohjelmistokehitys/make-es6-coffee/,2,1,chris-at,9/29/2015 21:44 +11341746,"Ask HN: What is your advice/comments on ""publish or perish"" culture in academia?",,2,1,trashpanda,3/23/2016 2:43 +11172302,San Jose: A Place Where the Poor Once Thrived,http://www.theatlantic.com/business/archive/2016/02/the-place-where-the-poor-once-thrived/470667/?single_page=true,65,60,nradov,2/25/2016 4:01 +11821117,Owncloud has been forked into Nextcloud,https://nextcloud.com/about/,182,130,jwildeboer,6/2/2016 8:35 +12179455,Inside Amazon: Wrestling Big Ideas in a Bruising Workplace,http://www.nytimes.com/2015/08/16/technology/inside-amazon-wrestling-big-ideas-in-a-bruising-workplace.html?_r=1,1,1,lladnar,7/28/2016 10:39 +12168660,Thinking About Suing Uber? Let This Be a Warning,http://www.nytimes.com/2016/07/26/nyregion/investigation-of-conservationist-conducted-on-ubers-behalf-crossed-the-line-judge-rules.html?ref=technology,10,2,hvo,7/26/2016 20:53 +10451715,Infinitely fast phase velocity with zero-index metamaterials,http://qz.com/532580/scientists-have-found-a-way-to-make-light-waves-travel-infinitely-fast/,5,4,Schiphol,10/26/2015 14:38 +10890711,Lost 19th Century Whaling Fleet Found Off Alaska's Arctic Coast,https://gcaptain.com/2016/01/12/lost-19th-century-whaling-fleet-found-off-alaskas-arctic-coast/,3,1,protomyth,1/12/2016 21:54 +12028852,"Fitness Isnt a Lifestyle Anymore, Sometimes Its a Cult",http://www.wired.com/2016/06/fitness-isnt-lifestyle-anymore-sometimes-cult/,65,56,DiabloD3,7/4/2016 4:11 +11456834,"Clinton Gets $13m from Health Industry, Single-Payer Will Never, Ever Come",http://www.ibtimes.com/political-capital/hillary-clinton-gets-13-million-health-industry-now-says-single-payer-will-never,32,12,doener,4/8/2016 18:36 +11307344,New Study Seeks to Use Deep Learning to Detect Heart Disease,http://www.wsj.com/articles/new-study-seeks-to-use-deep-learning-to-detect-heart-disease-1458240739,5,2,brandonb,3/17/2016 20:29 +10542570,A Tale from the Mythic Days of Magazine Expense Accounts,http://www.vanityfair.com/culture/2015/11/robert-hughes-the-spectacle-of-skill,31,2,pepys,11/10/2015 21:18 +11389304,Theres a Huge New Corporate Corruption Scandal. Heres Why Everyone Should Care,http://www.huffingtonpost.com.au/entry/unaoil-bribery-scandal-corruption_us_56fa2b06e4b014d3fe2408b9,110,25,pvnick,3/30/2016 14:01 +12412578,Navy cover-up of Afghan sex slaves,https://www.washingtonpost.com/news/checkpoint/wp/2016/09/01/navy-analysis-found-that-a-marines-case-would-draw-attention-to-afghan-sex-slaves/,3,1,jnagro,9/2/2016 12:36 +11779620,React CountUp,https://glennreyes.github.io/react-countup,2,1,glennreyes,5/26/2016 17:07 +10565324,For Better or for Worse,http://jmoiron.net/blog/for-better-or-for-worse/,6,2,koolhead17,11/14/2015 11:31 +11159077,"Show HN: Super Space Traveler (Prototype), a platform hell game for mobile",https://rink.hockeyapp.net/apps/44ae8090d77346d785f79f1adb6c0c2e,1,1,marciojmo,2/23/2016 14:41 +12031364,A brutally honest guide to help you get funding,http://pitchdeck-ebook.pagedemo.co/,3,1,pierreluc,7/4/2016 15:43 +10305902,Peeple: Yelp for people,https://www.washingtonpost.com/news/the-intersect/wp/2015/09/30/everyone-you-know-will-be-able-to-rate-you-on-the-terrifying-yelp-for-people-whether-you-want-them-to-or-not/,11,4,abruzzi,9/30/2015 18:11 +11513309,MonkMed-What the world needs now,,3,4,susieq,4/17/2016 3:00 +10450099,Java 8s new Optional type doesn't solve anything,https://medium.com/@bgourlie/java-8-s-new-optional-type-is-worthless-448a00fa672d,174,192,lelf,10/26/2015 8:28 +11552584,Police Officials: Google and Apple Should Censor Encryption Apps,https://motherboard.vice.com/read/police-officials-google-and-apple-should-censor-encryption-apps-in-their-stores,2,2,aburan28,4/22/2016 21:12 +11541992,BootStrap 4 cheatsheet,http://hackerthemes.com/bootstrap-cheatsheet#dropdown,340,130,kelukelugames,4/21/2016 13:37 +12443678,Goldman Sachs Has Started Giving Away Its Most Valuable Software,http://www.wsj.com/articles/goldman-sachs-has-started-giving-away-its-most-valuable-software-1473242401?mod=e2fb,81,71,prostoalex,9/7/2016 14:30 +11478855,Java 6 vs. Java 7 vs. Java 8 between 2013 2016 usage stats,https://plumbr.eu/blog/java/java-version-and-vendor-data-analyzed-2016-edition,3,2,ivom2gi,4/12/2016 12:19 +11224043,Flight Canvas A Simple Solution to Finding Cheap Flights,http://flightcanvas.net,4,1,cbsince86,3/4/2016 14:50 +12000854,A Natural Language User Interface is just a User Interface,https://medium.com/@honnibal/a-natural-language-user-interface-is-just-a-user-interface-4a6d898e9721,88,16,syllogism,6/29/2016 11:21 +11791980,The Plan 9 Effect or why you should not fix it if it isn't broken,http://www.di.unipi.it/~nids/docs/the_plan-9_effect.html,116,107,terminalcommand,5/28/2016 15:30 +10450890,Things to Avoid When Writing CSS,https://medium.com/@Heydon/things-to-avoid-when-writing-css-1a222c43c28f#.sgvlf0u3s,47,72,smpetrey,10/26/2015 12:27 +11587350,3 women who radically changed the course of technology,http://www.rexsoftware.com/ada/,56,54,loklaan,4/28/2016 8:54 +10558955,Ask HN: A 787 Dreamliner has less than 1/10th of the code of a modern car. Why?,,10,4,sanmon3186,11/13/2015 10:07 +11151062,Show HN: I'm looking for science fiction writers,http://compellingsciencefiction.com/submit.html,103,81,mojoe,2/22/2016 14:47 +10653494,EDA Playground with Commercial Tools,http://eda-playground.readthedocs.org/en/latest/intro.html,2,1,e19293001,12/1/2015 3:31 +11597300,Why That Salesperson Just Wont Stop Emailing You,http://priceonomics.com/why-that-salesperson-just-wont-stop-emailing-you/,11,2,gk1,4/29/2016 17:36 +11601812,"H-1B visas: who gets them, where they go",http://projects.sfchronicle.com/2016/visas/,2,2,negrit,4/30/2016 14:29 +11532725,"You and Your Research, by Richard Hamming [2014]",http://blog.samaltman.com/you-and-your-research,1,1,max_,4/20/2016 7:02 +12050343,Ask HN: Anyone wants to come to Shenzhen?,,3,4,dazhbog,7/7/2016 16:27 +11677086,WhatsApp encryption is useless,http://wccftech.com/does-ss7-render-whatsapp-encryption-pointless/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+MobileWccftech+%28Mobile+%E2%80%93+WCCFtech%29,25,20,Enindu,5/11/2016 17:07 +11651415,Steve Burrill Left Investors Waiting from Minnesota to San Francisco,http://www.sfchronicle.com/business/article/Steve-Burrill-left-investors-waiting-from-7410420.php?t=8f9bca998c6bc56d8d&cmpid=twitter-premium,4,1,coloneltcb,5/7/2016 21:24 +12220634,Intel recalls all Basis Peak watches due to overheating,http://www.mybasis.com/safety/,6,3,xtqctz,8/3/2016 19:12 +10655967,The Arduino popularity contest,https://www.sparkfun.com/news/1982,9,2,fakedrake,12/1/2015 15:24 +10546199,Kickstarter's Zano drone fails to fly,http://www.bbc.com/news/34787404,5,2,oori,11/11/2015 12:03 +10761335,Show HN: Chat simplest live chat widget on the planet,https://keyreply.com/chat,2,1,spenceryang,12/18/2015 22:11 +11913652,Samsung Acquires Joyent,https://www.joyent.com/blog/samsung-acquires-joyent-a-ctos-perspective,787,236,yunong,6/16/2016 3:08 +11816950,Universal cancer vaccine claim,http://www.independent.co.uk/news/science/cancer-vaccine-immunotherapy-universal-immune-system-rna-nature-journal-a7060181.html,6,1,vain,6/1/2016 18:32 +12117123,A high-tech mecca rises to rival Silicon Valley,http://www.cnbc.com/2016/07/13/a-high-tech-mecca-rises-to-rival-silicon-valley.html,2,1,krupan,7/18/2016 18:32 +10874516,This is the year action cameras and 360-degree videos collide,http://www.theverge.com/2016/1/9/10742974/nikon-gopro-action-cameras-360-video-ces-2016,18,5,danboarder,1/10/2016 6:59 +10214776,Python Decorators in 12 Steps (2012),http://simeonfranklin.com/blog/2012/jul/1/python-decorators-in-12-steps/,179,32,terminalcommand,9/14/2015 12:44 +11671434,Show HN: Real time financial insight,https://www.bookvalu.com/,2,1,ketharsis,5/10/2016 23:15 +10528959,Who Was Galileo Galilei?,http://www.universetoday.com/48756/galileo-facts/,29,12,Hooke,11/8/2015 16:54 +11159151,Show HN: A generic router to manage url like object state,https://github.com/Routility/routility,1,1,daiwei,2/23/2016 14:48 +10211565,Python 3.5.0,https://www.python.org/downloads/release/python-350/,491,154,korisnik,9/13/2015 14:46 +12171704,Record Syntax for C#,https://github.com/dotnet/roslyn/blob/features/records/docs/features/records.md,5,1,adgasf,7/27/2016 10:25 +11706386,"Leaderless, Blockchain-Based VC Fund Raises $100M and Counting",http://fortune.com/2016/05/15/leaderless-blockchain-vc-fund/,5,3,gomox,5/16/2016 14:18 +10256462,The Effect of Network and Infrastructural Variables on SPDYs Performance (2014),http://arxiv.org/abs/1401.6508,23,13,chetanahuja,9/22/2015 3:21 +11849915,"Fiat currencies not as Centralized, Bitcoin not as Decentralized, as you think",https://medium.com/metacurrency-project/national-currencies-arent-as-centralized-and-bitcoin-isn-t-as-decentralized-as-you-think-fa2afa022a2b#.b00mjlbj9,11,1,stijnstijn,6/6/2016 20:12 +11070211,"Early-stage companies, get ready to be punched in the face",http://venturebeat.com/2016/02/09/early-stage-companies-get-ready-to-be-punched-in-the-face/,3,1,jhulla,2/10/2016 1:34 +10460017,What I Learned from Briefly Sharing an Office with Steve Jobs,https://medium.com/@sixteenth/what-i-learned-from-briefly-sharing-an-office-with-steve-jobs-cd1d9d89dff8#.7gdr9k8e1,1,2,tate,10/27/2015 18:18 +10441380,Biologists Discover Bacteria Communicate Like Neurons in the Brain,http://ucsdnews.ucsd.edu/pressrelease/biologists_discover_bacteria_communicate_like_neurons_in_the_brain,68,9,Oatseller,10/23/2015 21:24 +11966570,Alan Kay on the misunderstanding of OOP (1998),http://lists.squeakfoundation.org/pipermail/squeak-dev/1998-October/017019.html,240,206,mmphosis,6/24/2016 4:45 +12057839,The Era of Lethal Police Robots Has Arrived,http://www.defenseone.com/technology/2016/07/era-lethal-police-robots-has-arrived/129747/,20,8,rbc,7/8/2016 18:56 +10943334,Finding the Tennis Suspects,https://medium.com/@rkaplan/finding-the-tennis-suspects-c2d9f198c33d#.g93vsuejk,55,25,aroman,1/21/2016 4:20 +10539197,Show HN: Hacker News Lock Screen features trending stories from HN front page,https://play.google.com/store/apps/details?id=com.hackernews.lockscreen,17,3,kiberstranier,11/10/2015 13:46 +12507361,Restoring YC's Xerox Alto: how our boot disk was trashed with random data,http://www.righto.com/2016/09/restoring-ycs-xerox-alto-how-our-boot.html,149,50,dwaxe,9/15/2016 16:14 +10969345,Paul Krugman Reviews The Rise and Fall of American Growth by Robert J. Gordon,http://www.nytimes.com/2016/01/31/books/review/the-powers-that-were.html,14,3,lkrubner,1/25/2016 19:33 +10697849,Making My Emacs Start Faster,http://www.wmecole.com/2015/11/making-my-emacs-start-faster.html,64,46,gk1,12/8/2015 17:27 +10673386,Air gaps never exist (2011),http://gse-compliance.blogspot.com/2011/09/air-gaps-never-exist.html,43,49,cba9,12/3/2015 23:02 +10565748,RSA Signatures in Emacs Lisp,http://nullprogram.com/blog/2015/10/30/,10,1,lelf,11/14/2015 14:21 +11469834,Online Dating and the Death of the 'Mixed-Attractiveness' Couple,http://priceonomics.com/online-dating-and-the-death-of-the-mixed/,396,405,jseliger,4/11/2016 5:41 +10353612,Thi.ng: 20+ computational design tools for Clojure and ClojureScript,http://thi.ng,1,1,audionerd,10/8/2015 16:01 +12412035,Why Small Rural Counties Send More People to Prison,http://www.nytimes.com/2016/09/02/upshot/new-geography-of-prisons.html,3,1,1wheel,9/2/2016 10:20 +11648353,A case in defense of ES6 generators in JavaScript,http://nikolay.rocks/2016-05-03-case-for-generators,1,1,MadRabbit,5/7/2016 4:08 +11123863,Texting Isnt the First New Technology Thought to Impair Social Skills,http://www.smithsonianmag.com/innovation/texting-isnt-first-new-technology-thought-impair-social-skills-180958091/?no-ist,2,1,acdanger,2/18/2016 5:15 +11973512,Amazon Web Services is poaching engineers from itself,http://www.businessinsider.com/how-aws-is-poaching-engineers-from-itself-2016-6?op=1,5,1,prostoalex,6/24/2016 21:10 +12569642,"Robert Gottlieb, the Art of Editing No. 1",http://www.theparisreview.org/interviews/1760/the-art-of-editing-no-1-robert-gottlieb,4,1,helloworld,9/24/2016 5:49 +10658898,Incredible 1km skyscraper is being built in Saudi Arabia,http://www.thememo.com/2015/12/01/this-incredible-1km-skyscraper-is-being-built-in-saudi-arabia/,1,1,alexwoodcreates,12/1/2015 21:25 +11569061,Extortion and the World Wide Web: Cloak Threatened with DDoS,https://blog.getcloak.com/2016/04/20/extortion-and-the-wild-wild-web/,1,1,jm3,4/26/2016 2:40 +12073976,Allocation on the JVM: Down the rabbit hole,http://jcdav.is/2016/07/11/JVM-allocation-secrets/,93,6,jcdavis,7/11/2016 20:02 +11508477,John McAfee came back from Belize penniless in 2012 and is now 10M$ in debt,https://twitter.com/officialmcafee/status/721122054318268416,12,1,jrbedard,4/15/2016 23:53 +12237615,I've built an app and don't know what to do next,,2,2,taggroo,8/6/2016 9:51 +12247189,FAQ about Christoph Hellwig's VMware Lawsuit,https://sfconservancy.org/copyleft-compliance/vmware-lawsuit-faq.html,3,1,solarengineer,8/8/2016 12:33 +11347282,The War on Internet Piracy,http://www.bloomberg.com/gadfly/articles/2016-03-23/google-and-media-titans-clash-in-a-war-on-internet-piracy,2,3,Trisell,3/23/2016 19:06 +12251729,App Store Simplified Screenshot Submission Process,https://developer.apple.com/news/?id=08082016a,3,1,chrisamanse,8/9/2016 0:23 +11618966,Chromecast and Chromecast Audio on sale ( 5 $ off ),http://www.androidpolice.com/2016/05/02/deal-alert-chromecast-and-chromecast-audio-on-sale-for-5-off-almost-everywhere/,1,2,NicoJuicy,5/3/2016 8:57 +11001647,"WordPress Killed PHP, LOL",https://medium.com/@velmu/wordpress-killed-php-lol-5f3c87473c79#.dpesejsoq,4,1,velmu,1/30/2016 12:51 +12332453,WTF-35: How the Joint Strike Fighter Got to Be Such a Mess,http://www.popularmechanics.com/military/a21957/wtf-35/,19,1,jseliger,8/21/2016 19:53 +11991167,"Bluetooth 5 will quadruple the range, double the speed",https://www.engadget.com/2016/06/16/bluetooth-5/,297,244,bokenator,6/28/2016 2:49 +12106606,Clojure News: An HN Clone for Clojure,https://clojure.news,2,1,hellofunk,7/16/2016 15:16 +10518753,Physical 'Emoji Keyboard' for Macs and iOS Devices Lets You Type Emoji Faster,http://www.macrumors.com/2015/11/03/emojiworks-emoji-keyboard-macs-ios-devices/,1,2,arm,11/6/2015 10:40 +10968151,Moving FirefoxOS into Tier 3 support,https://groups.google.com/d/msg/mozilla.dev.platform/gF-kiJV21ro/qJRk1B-KAAAJ,17,5,bpierre,1/25/2016 16:41 +11802636,"Microlight.js, a code highlighting library",https://asvd.github.io/microlight/,214,62,xpostman,5/30/2016 19:19 +10839778,The Wisdom Race Is Heating Up,http://edge.org/response-detail/26687,5,1,dtawfik1,1/4/2016 23:51 +11251671,C2: Affordable X86-64 Servers,https://blog.scaleway.com/2016/03/08/c2-insanely-affordable-x64-servers/,448,224,fooyc,3/9/2016 8:27 +12420549,My best manager did this,http://ask.metafilter.com/300002/My-best-manager-did-this,12,6,mooreds,9/3/2016 19:00 +12200724,EasyMake one python file instead tons of Makefile locs,https://github.com/l4l/EasyMake,1,3,kitsu,8/1/2016 7:29 +11033905,"From liquid air to supercapacitors, energy storage is poised for a breakthrough",http://www.theguardian.com/environment/2016/feb/04/from-liquid-air-to-supercapacitators-energy-storage-is-finally-poised-for-a-breakthrough,50,68,jsingleton,2/4/2016 14:02 +12324301,Amazon Prime putting in commercials,,57,11,dpeterson,8/19/2016 23:50 +11563570,Solar plane flies across Pacific,http://recode.net/2016/04/24/solar-impulse-hawaii-california/,2,1,zabramow,4/25/2016 11:34 +12004406,Creating a JavaScript object without the new keyword,http://www.davecooper.org/creating-a-javascript-object-without-new,3,6,gurgus,6/29/2016 20:07 +11459978,"IBM Charged a Company Rs. 9.5 Crore for an App, a Developer Made It in 4 Mins",http://www.officechai.com/news/ibm-charged-a-company-rs-9-5-crore-for-an-app-this-developer-just-made-it-in-4-mins/,4,1,krisgenre,4/9/2016 4:52 +11347387,WeChat is becoming a mobile payment giant in China,http://techcrunch.com/2016/03/17/messaging-app-wechat-is-becoming-a-mobile-payment-giant-in-china,49,15,devy,3/23/2016 19:17 +11085515,Online legal publishers squabble over the right to copyright the law,http://arstechnica.com/tech-policy/2016/02/online-legal-publishers-squabble-over-the-right-to-copyright-the-law/,9,1,Tomte,2/12/2016 5:37 +12550364,How to fly (almost) for free,http://learntravelhacking.com/?ref=hn,5,1,nathanbarry,9/21/2016 17:33 +10213836,Building Your Own Data Diode with Open Source Solutions,http://blog.cimation.com/blog/building-your-own-data-diode-with-open-source-solutions,24,19,walterbell,9/14/2015 6:18 +10677221,Are you living in a computer simulation?,http://www.simulation-argument.com/simulation.pdf,2,1,_of,12/4/2015 16:27 +10712215,Show HN: Typed.pw a simple way to write online,,12,7,xojoc,12/10/2015 18:11 +10330182,TCP/UDP/ICMP traffic over UDP tunneling,https://github.com/astroza/udptunnel,66,18,shagunsodhani,10/5/2015 6:09 +11254967,What if we could vote from our phones?,https://medium.com/@arixking/what-if-you-could-vote-from-your-phone-e639ace46fed#.pztoqhi6c,1,2,arixking,3/9/2016 19:03 +12109731,Obama Just Became the First Sitting President to Publish an Academic Paper,https://mic.com/articles/148595/obamajama-obama-academic-paper-made-history?utm_source=policymicFB&utm_medium=future&utm_campaign=social#.jn94vAigo,18,1,altstar,7/17/2016 11:00 +10777127,Visualizing Shakespeare's Sonnets,https://gramener.com/playground/shakespeare/,1,1,wearypilgrim,12/22/2015 11:37 +12114414,[] stroke and risk factors [] systematic analysis,http://www.thelancet.com/journals/laneur/article/PIIS1474-4422(16)30073-4/fulltext,1,1,FrojoS,7/18/2016 11:24 +11238772,Show HN: Flipadelphia flips your features,http://samdfonseca.github.io/flipadelphia,2,3,samdfonseca,3/7/2016 13:43 +10720746,The real estate web is a mess. We want to fix it,https://homeapp.co/blog/preparing-for-lift-off,3,1,wimble,12/11/2015 23:00 +10952442,Spain arrests and charges Mexican Governor with corruption,http://www.nytimes.com/2016/01/22/world/americas/a-former-mexican-governor-is-arrested-but-not-by-his-own-country.html,50,10,jagtesh,1/22/2016 13:06 +11360879,Show HN: LevelDB outperforms others on a cheap phone (Microsoft ESE and SQLite),https://github.com/maxpert/LevelDBWinRT/wiki/Performance-And-Comparison,57,47,maxpert,3/25/2016 16:14 +12119083,Storage device writes information atom-by-atom,http://www.bbc.com/news/science-environment-36824902,1,1,HarveyKandola,7/19/2016 2:03 +11792786,"Paper Processor What is fetch, decode, and execute?",https://sites.google.com/site/kotukotuzimiti/Paper_Processor,99,17,maastaar,5/28/2016 18:41 +10233367,Pineapple A standalone front end to IPython for Mac,http://nwhitehead.github.io/pineapple/,142,45,coldtea,9/17/2015 14:03 +10872206,Services like Airbnb are altering the economics of the hotel business,http://www.economist.com/news/finance-and-economics/21685502-services-airbnb-are-altering-economics-hotel-business-buffetts,4,1,Futurebot,1/9/2016 18:15 +11591470,VW and Shell try to block EU push for electric cars,http://www.theguardian.com/environment/2016/apr/28/vw-and-shell-try-to-block-eu-push-for-cleaner-cars,13,2,osivertsson,4/28/2016 19:51 +10413594,Accidentally flagged a story. Now what?,,1,2,0xdeadbeefbabe,10/19/2015 15:42 +11339518,A set of scripts to auto-install a complete single-server django website,https://github.com/Aviah/one-click-django-server,1,1,DodgyEggplant,3/22/2016 19:57 +10835758,"Hands-on with virtual reality using A-Frame, React and Redux",https://medium.com/immersion-for-the-win/hands-on-with-virtual-reality-using-a-frame-react-and-redux-bc66240834f7#.cfmodcayu,53,8,sebg,1/4/2016 14:30 +10734966,CSS3 proven to be Turing complete?,http://my-codeworks.com/blog/2015/css3-proven-to-be-turing-complete,71,55,mmastrac,12/15/2015 0:04 +11940298,"Ask HN: Who's Hiring, Hire Me (Entry Level)",,1,4,nate_robo,6/20/2016 18:51 +11659220,"The genomic era arrives, and this time is probably real",http://www.economist.com/news/science-and-technology/21698229-genomic-era-arrives-and-time-its-probably-real-encore-une-fois,150,79,tosseraccount,5/9/2016 12:25 +10554479,Edward Snowden Explains How to Reclaim Privacy,https://theintercept.com/2015/11/12/edward-snowden-explains-how-to-reclaim-your-privacy/,170,31,etiam,11/12/2015 17:16 +11168422,Ask HN: Losing Vision What remote IT jobs are possible?,,7,10,santoshmaharshi,2/24/2016 17:24 +11365584,"Ask HN: If you make more than $200k, how do you manage your money?",,3,4,dalerus,3/26/2016 13:30 +11483510,Apply HN: Remember Intelligently search all of your files from one place.,,18,12,merterdir,4/12/2016 20:55 +12168913,Twitter warns that advertiser demand is falling and the stock is crashing,http://www.businessinsider.com/twitter-q2-2016-earnings-2016-7,5,2,jerryhuang100,7/26/2016 21:39 +11629075,Warren Buffett/Bill Gates reading habits,http://qz.com/668514/if-you-want-to-be-like-warren-buffett-and-bill-gates-adopt-their-voracious-reading-habits/?utm_source=pocket&utm_medium=email&utm_campaign=pockethits,2,1,ALee,5/4/2016 15:34 +10389789,WebKit removes the 350ms click delay for iOS,https://trac.webkit.org/changeset/191072,304,141,asyncwords,10/14/2015 21:51 +10582489,Tips for Creating a Cohesive Company Culture Remotely,http://blog.scrapinghub.com/2015/11/16/tips-for-creating-a-cohesive-company-culture-remotely/,4,1,unsettledtck,11/17/2015 17:14 +12329423,UK Court: ISPs have to block *trademark* infringements,https://www.privateinternetaccess.com/blog/2016/08/uk-court-isps-block-trademark-infringements-addition-copyright-infringements/,4,1,doener,8/21/2016 4:45 +11405241,Ask HN: Who wants to be hired? (April 2016),,154,283,whoishiring,4/1/2016 15:01 +11325827,The Outsiders (1987),http://www.worlddreambank.org/O/OUTSIDRS.HTM,35,7,Petiver,3/21/2016 2:29 +12209490,Ask HN: Is an ecommerce saas platform a good idea?,,4,9,mirceasoaica,8/2/2016 12:43 +10634406,BiteLabs Eat Celebrity Meat,http://www.bitelabs.org/,2,1,sinak,11/26/2015 19:44 +11935143,A Meth Addict Gets Sober in Orange County Community Court,http://www.theatlantic.com/politics/archive/2016/06/using-against-my-will/486203/?single_page=true,104,89,curtis,6/19/2016 22:59 +10609413,Naval Academy reinstates celestial navigation,http://www.navytimes.com/story/military/tech/2015/11/01/naval-academy-reinstates-celestial-navigation/74998554/,80,35,aoldoni,11/22/2015 8:03 +11843840,Get Paid to Move to Maine,http://www.bostonmagazine.com/property/blog/2016/06/03/maine-vacation-paid/,41,36,prostoalex,6/6/2016 0:09 +12376695,"Big data, Google and the end of free will",https://www.ft.com/content/50bb4830-6a4c-11e6-ae5b-a7cc5dd5a28c,69,21,petethomas,8/28/2016 14:40 +12185991,Ask HN: Is a career in software development the easiest way to maximize income?,,3,3,tootall,7/29/2016 11:02 +12125515,Stick a Fork in Ethereum,http://elaineou.com/2016/07/18/stick-a-fork-in-ethereum/,250,183,themgt,7/19/2016 22:43 +11136068,U.S. Government Says Hoverboards Are Verboten,http://techcrunch.com/2016/02/19/u-s-government-says-hoverboards-are-verboten/,2,3,mrfusion,2/19/2016 19:49 +12197993,ARM (Dual-core Cortex A7) based desktop and laptop,http://crowdsupply.com/eoma68/micro-desktop/,13,2,sidhu1f,7/31/2016 17:59 +10682390,Show HN: SleepsToSanta.com - Speech Synthesizer API experiment,http://www.sleepstosanta.com/?voice=Bells,5,1,sleepstosanta,12/5/2015 16:45 +11977542,Gun Threats and Self-Defense Gun Use,https://www.hsph.harvard.edu/hicrc/firearms-research/gun-threats-and-self-defense-gun-use-2/?utm_source=Twitter&utm_medium=Social&utm_campaign=Chan-Twitter-General,1,1,merraksh,6/25/2016 19:10 +12531786,Ask HN: Software for helping visually impaired persons?,,2,6,adamwi,9/19/2016 14:43 +11200357,Hands-On: Looking at AR Game Dev Through Microsoft's HoloLens,http://www.gamasutra.com/view/news/242441/Handson_Looking_at_AR_game_dev_through_Microsofts_HoloLens.php,2,1,Impossible,3/1/2016 2:11 +11627171,Façade we make rainbows,https://medium.com/@rafal/hello-this-is-fa%C3%A7ade-c20f7087b08d#.sfol5sxh2,2,1,rpastuszak,5/4/2016 9:20 +12456094,"Show HN: The curated list of awesome CMake scripts, modules, examples and others",https://github.com/onqtam/awesome-cmake,5,1,onqtam,9/8/2016 18:54 +10508634,Weelytics: makes it easy to track your website visitors actions,http://weelytics.com?utm_source=hackernews&utm_medium=post&utm_campaign=hn1,1,1,weelytics,11/4/2015 18:52 +11164525,Ask HN: What's the best selling HTML5 game so far?,,2,2,gsklee,2/24/2016 4:13 +10242419,SSL Client Certificates Work,http://stuff-things.net/2015/07/28/ssl-client-certificates-work/,1,1,mooreds,9/18/2015 22:30 +11842096,How Venezuelas socialist dream collapsed into a nightmare Vox,http://www.vox.com/2016/5/26/11774482/venezuela-socialist-collapse,4,1,bmmayer1,6/5/2016 17:44 +12538615,Digital photography: The future of small-scale manufacturing?,https://www.sciencedaily.com/releases/2016/09/160919132306.htm,2,1,endswapper,9/20/2016 11:20 +10617453,Weird Twitter account posting pictures of phone numbers,https://twitter.com/PhonyBook,4,4,nissehulth,11/23/2015 21:32 +11461831,"Dear Facebook, why are Facebook Comments so unremittingly terrible?",http://techcrunch.com/2016/04/09/dear-facebook-why-are-facebook-comments-so-unremittingly-terrible/,1,1,intrasight,4/9/2016 16:05 +11840619,CPU miner malware?,,2,4,voiper1,6/5/2016 12:36 +10605524,Addiction: The View from the Rat Park (2010),http://www.brucekalexander.com/articles-speeches/rat-park/148-addiction-the-view-from-rat-park,13,1,douche,11/21/2015 4:01 +11060429,A tool to search for Python code using jQuery-like selectors,https://github.com/caioariede/pyq,7,2,caioariede,2/8/2016 19:49 +12418872,Ask HN: Would you want to watch YC's Stanford Course together online?,,17,4,fairpx,9/3/2016 12:02 +10498450,UK Government invests £60m in Skylon plane,http://www.independent.co.uk/news/business/news/uk-government-invests-60m-in-skylon-plane-that-can-fly-from-london-to-sydney-in-4-hours-a6718081.html,4,1,danrice,11/3/2015 9:38 +11033940,Show HN: Immagine image manipulation service for nature.com,https://github.com/nature/immagine,35,4,rowanmanning,2/4/2016 14:06 +11563925,Gradientzoo: pre-trained neural network models,https://www.gradientzoo.com/,1,1,revorad,4/25/2016 13:11 +12208900,It's much better to delete your brand pages if you are doing this,https://medium.com/@ankurbhugra/my-brand-updated-months-ago-e39716b37aa0#.5q9yl21pa,1,1,ankurr,8/2/2016 10:29 +11650457,Homeland Security Wants to Subpoena Us Over a Clearly Hyperbolic Comment,https://www.techdirt.com/articles/20160506/10324634363/homeland-security-wants-to-subpoena-us-over-clearly-hyperbolic-techdirt-comment.shtml,47,4,xkiwi,5/7/2016 17:31 +11811397,YA sci-fi novel with tons of curious comp-sci references,http://0x23.xyz/,2,1,reed_solomon,6/1/2016 0:49 +11651146,Ask HN: What font do you use while programming?,,19,19,navd,5/7/2016 20:00 +11499467,Master-Less Distributed Queue with PG Paxos,https://www.citusdata.com/blog/14-marco/411-master-less-distributed-queue-postgres-and-pg-paxos,99,17,ahachete,4/14/2016 19:02 +11564237,"FamilyInSafe: family locator, messenger and checklist",https://familyinsafe.com/,1,4,FamilyInSafe,4/25/2016 14:04 +10896614,The Sublime Beauty of Powerball,http://www.theatlantic.com/business/archive/2016/01/powerball-math/423558/?single_page=true,1,1,shenanigoat,1/13/2016 19:02 +11557131,Show HN: Command line autocompletion prompt,https://github.com/derhuerst/cli-autocomplete#cli-autocomplete,3,2,derhuerst,4/23/2016 19:52 +11115544,FCC commissioner: U.S. tradition of free expression slipping away,http://www.washingtonexaminer.com/fcc-commissioner-u.s.-tradition-of-free-expression-slipping-away/article/2583354,2,2,randomname2,2/17/2016 5:27 +11786601,"TSA Staff Cuts Have Made at Least 70,000 US Travelers Miss Flights This Year",https://news.vice.com/article/tsa-staff-cuts-have-already-made-at-least-70000-us-travelers-miss-flights-this-year,4,1,walterbell,5/27/2016 15:26 +11058780,HN top colors,https://news.ycombinator.com/topcolors,3,2,reimertz,2/8/2016 15:58 +10478855,MPEG-LA start assembling patent pool for MPEG-DASH [pdf],http://www.mpegla.com/Lists/MPEG%20LA%20News%20List/Attachments/96/n-15-07-27.pdf,1,2,shmerl,10/30/2015 16:39 +12285832,"Indians Spurn Snacks, Shampoo to Load Their Smartphones",http://www.wsj.com/articles/indians-spurn-snacks-shampoo-to-load-their-smartphones-1471163223,1,1,r0n0j0y,8/14/2016 15:05 +11172652,Google launches voice typing in Google Docs,http://googledocs.blogspot.com/2016/02/type-edit-and-format-with-your-voice-in.html,331,130,nandaja,2/25/2016 6:02 +10630068,Why economics is the most important thing you can learn,http://iaindooley.com/post/133953108673/keeping-the-bastards-honest-why-economics-is-the,2,1,dools,11/25/2015 22:05 +11253464,"If you invested $1 a day, starting when you were born",http://stockchoker.com/dollar-a-day/,123,95,qpleple,3/9/2016 15:25 +11681851,Get Ready for High-Frequency Lawyers,http://www.bloomberg.com/view/articles/2016-05-10/get-ready-for-high-frequency-lawyers,36,16,gpresot,5/12/2016 7:03 +10398057,Warping Text To Bézier Curves (2009),http://www.planetclegg.com/projects/WarpingTextToSplines.html,24,4,gontard,10/16/2015 8:08 +10180610,The worker loves the company. power is control,https://github.com/theodbert/laborday/blob/master/text.txt,2,1,theodbert,9/7/2015 8:55 +11242291,The First Time Texas Killed One of My Clients,https://www.themarshallproject.org/2016/03/06/the-first-time-texas-killed-one-of-my-clients#.dA3foQPPn,55,37,samclemens,3/7/2016 22:33 +10250124,Richard Dawkins questions Ahmed Mohamed's 'motives' and sparks backlash,http://www.theguardian.com/science/2015/sep/20/richard-dawkins-questions-ahmed-mohamed-motive-backlash,12,2,CaiGengYang,9/21/2015 3:00 +10393120,Scientists identify potential inhibitors of cancer metastasis and MS,http://phys.org/news/2015-10-scientists-potential-inhibitors-cancer-metastasis.html,2,1,rch,10/15/2015 13:55 +11159433,Ask HN: Do karma points work differently after 1000?,,4,2,Killah911,2/23/2016 15:19 +10639159,Sisyphus Kinetic Lego Sculpture,http://jkbrickworks.com/sisyphus-kinetic-sculpture/,85,11,chaosmachine,11/27/2015 22:39 +11879981,Living 800 feet above the city,http://www.nytimes.com/interactive/2016/06/05/magazine/new-york-life.html,89,33,Turukawa,6/10/2016 21:01 +11242993,"Ask HN: I want to learn a low-level, compiled language. What should I chose?",,14,28,Jmoir,3/8/2016 1:22 +10377310,Ask HN: Drinks in downtown SF?,,5,1,dopeboy,10/12/2015 22:36 +10880037,Oberon Workstation on the Mac App Store,https://itunes.apple.com/us/app/oberon-workstation/id1057155516,127,14,MaysonL,1/11/2016 10:44 +10601520,This is the real reason the Tesla Model X has a Bioweapon Defense Mode,https://innovately.wordpress.com/2015/11/20/this-is-the-real-reason-the-tesla-model-x-has-a-bioweapon-defense-mode/,1,1,hoag,11/20/2015 15:14 +10990774,A $640 Uber ride is one expensive financial lesson,https://www.washingtonpost.com/news/get-there/wp/2016/01/28/a-640-uber-ride-is-one-expensive-financial-lesson/,9,5,e15ctr0n,1/28/2016 20:00 +11953204,Apple Opens Up iPhone Code in What Could Be Savvy Strategy or Security Screwup,https://www.technologyreview.com/s/601748/apple-opens-up-iphone-code-in-what-could-be-savvy-strategy-or-security-screwup/,6,5,Matt3o12_,6/22/2016 12:08 +11112140,Ride along as I get back to coding with Swift,http://buildanappwithme.blogspot.com/,1,1,WWKong,2/16/2016 18:47 +11579676,GCC 6.1 Released,https://gcc.gnu.org/ml/gcc/2016-04/msg00244.html,285,169,edelsohn,4/27/2016 12:17 +11301341,Being a Female Developer,http://www.andela.com/blog/being-a-female-developer/,129,63,crufo,3/16/2016 22:59 +10423349,New whistleblower steps forward on drones,http://www.chelseamanning.org/featured/dronepapers,40,17,pavornyoh,10/21/2015 2:42 +10608819,Saudi court sentences poet to death for renouncing Islam,http://www.theguardian.com/world/2015/nov/20/saudi-court-sentences-poet-to-death-for-renouncing-islam,10,1,spenvo,11/22/2015 2:24 +11992946,Doctors issue warning about effects of LED streetlights on health,https://theconversation.com/american-medical-association-warns-of-health-and-safety-problems-from-white-led-streetlights-61191,75,86,cauterized,6/28/2016 11:54 +11398033,"Xamarin now free in Visual Studio, and Xamarin SDK being open-sourced",http://arstechnica.com/information-technology/2016/03/xamarin-now-free-in-visual-studio/,944,386,ingve,3/31/2016 15:50 +10205272,YC at Hack the North,https://blog.ycombinator.com/yc-at-hack-the-north,71,35,Robeson,9/11/2015 18:13 +10228550,"Kubernetes Has a Ways to Go to Scale Like Google, Mesos",http://www.theplatform.net/2015/09/15/kubernetes-has-a-ways-to-go-to-scale-like-google-mesos/,17,5,brson,9/16/2015 18:04 +10725037,Object Oriented Mathematics (1995) [pdf],http://www.diku.dk/~grue/papers/oom/oom.pdf,24,20,mindcrime,12/13/2015 1:37 +12088730,"We've just made a FREE Rubik's puzzle app, your critique is appreciated",,2,4,ho4ngt,7/13/2016 19:00 +11374415,Oculus Rift review,http://www.theverge.com/2016/3/28/11284590/oculus-rift-vr-review,11,1,antr,3/28/2016 14:28 +10301511,7 Networking Tips Everyone Should Use (But Most People Dont),https://medium.com/@Smartcasual/7-networking-tips-everyone-should-use-but-most-people-don-t-2cc5a971f15b,1,1,Smartcasual,9/30/2015 3:14 +10266447,"E-Book Sales Slip, and Print Is Far from Dead",http://www.nytimes.com/2015/09/23/business/media/the-plot-twist-e-book-sales-slip-and-print-is-far-from-dead.html?,123,187,sinak,9/23/2015 17:24 +11768939,Google will begin testing password-free login to Android apps,https://www.theguardian.com/technology/2016/may/24/google-passwords-android,97,81,jonbaer,5/25/2016 11:14 +10788256,The longest study on happiness,http://www.ted.com/talks/robert_waldinger_what_makes_a_good_life_lessons_from_the_longest_study_on_happiness,3,1,spdionis,12/24/2015 14:34 +11710718,Ask HN: What if a SuperPAC sponsored a voting machine bug bounty program?,,4,2,WouldntItBeCool,5/17/2016 1:06 +10447873,Obfuscation has a grand history could it give us more freedom online?,http://www.theguardian.com/technology/2015/oct/24/obfuscation-users-guide-for-privacy-and-protest-online-surveillance,45,1,evilsimon,10/25/2015 18:52 +10715149,Capital Is No Longer Scarce,http://continuations.com/post/134920840275/capital-is-no-longer-scarce,112,117,sinak,12/11/2015 2:34 +11805486,How the sense of an ending shapes memory,http://timharford.com/2016/05/how-the-sense-of-an-ending-shapes-memory/,74,7,AndrewDucker,5/31/2016 8:54 +11358370,Ask HN: UK Based API for Payouts,,1,6,florincm,3/25/2016 3:39 +10971905,Configuration,http://ian-shafer.github.io/2016/01/25/configuration/,1,1,three-cups,1/26/2016 5:06 +11041240,NixOS on Digital Ocean,http://blog.tinco.nl/2016/02/05/nixos-on-digital-ocean.html,16,10,tinco,2/5/2016 13:35 +11591733,"Amazon earnings swing to profit, stock soars",http://blogs.marketwatch.com/thetell/2016/04/28/amazon-earnings-expected-to-show-a-return-to-profit-live-blog/,4,1,gist,4/28/2016 20:37 +10652254,Ask HN: Have you had to switch / compensate your NoSQL DB with a relational DB?,,8,6,vishaldpatel,11/30/2015 22:09 +11818815,Anyone doing full-time bug bounty?,,6,2,zippy786,6/1/2016 22:33 +12289549,The difference between PUT and POST get it right,http://zacharyvoase.com/2009/07/03/http-post-put-diff/,3,1,znpy,8/15/2016 10:33 +11320876,In defence of the Instagram Algorithm,https://medium.com/@ben_stroud/in-defence-of-the-instagram-algorithm-b90aae8e1869#.hzzqfhf89,1,1,BenStroud,3/19/2016 22:57 +11052905,America Is Flint,http://www.nytimes.com/2016/02/07/opinion/sunday/america-is-flint.html?ref=opinion&_r=0,258,143,pavornyoh,2/7/2016 14:21 +10646596,Continuous Integration for Snabb Switch,http://mr.gy/blog/snabb-ci.html,1,1,tokenrove,11/29/2015 23:22 +12526711,Gmail will now support CSS media queries,http://googleappsdeveloper.blogspot.com/2016/09/your-emails-optimized-for-every-screen-with-responsive-design.html,204,67,synotic,9/18/2016 19:19 +11247657,Today Quantified self and habit tracker app,https://neybox.com/today,2,1,baronetto,3/8/2016 19:07 +10608457,Show HN: Simulacra.js one-way data binding for web applications,https://0x8890.github.io/simulacra/,82,19,daliwali,11/21/2015 23:27 +10992553,WordExpress,http://wordexpress.io/,1,1,bovermyer,1/29/2016 0:03 +10983197,Small-town America is primed to beat Silicon Valley in innovation,https://medium.com/@scobleizer/here-s-how-small-town-america-is-primed-to-beat-silicon-valley-in-innovation-3923049865ed#.157e0tv0x,5,1,gatsby,1/27/2016 20:51 +10919812,3D XPoint Steps into the Light,http://www.eetimes.com/document.asp?doc_id=1328682,17,3,aysfrm11,1/17/2016 15:58 +11263087,"Meteor.com free hosting ends March 25, 2016",https://forums.meteor.com/t/meteor-com-free-hosting-ends-march-25-2016/19308/6,43,8,sidi,3/10/2016 22:38 +10210110,"The Decentralist Perspective, or Why Bitcoin Might Need Small Blocks",https://bitcoinmagazine.com/21919/decentralist-perspective-bitcoin-might-need-small-blocks/,27,14,dtawfik1,9/13/2015 2:12 +12447570,Turing codec: open-source HEVC video compression,http://www.bbc.co.uk/rd/blog/2016/09/turing-codec,28,4,edent,9/7/2016 20:54 +10831315,META II: Digital Vellum in the Digital Scriptorium,http://queue.acm.org/detail.cfm?id=2724586,20,1,abecedarius,1/3/2016 17:21 +11728481,Our best practices are killing mobile web performance,http://molily.de/mobile-web-performance/,220,127,nkurz,5/19/2016 6:42 +10475845,Mondo 2000 History Project,https://archive.org/details/mondohistory,1,1,wslh,10/30/2015 2:39 +10674080,Missing Detroit: My Dad and the Disease of Blight,http://beltmag.com/missing-detroit-my-dad-and-the-disease-of-blight/,10,2,rmason,12/4/2015 1:44 +11273146,Chinese cloners copy Supercells Clash Royale hit in just a week,http://venturebeat.com/2016/03/10/chinese-company-clones-supercells-clash-royale-in-just-a-week/,2,1,mau,3/12/2016 15:21 +11514968,Over $700k selling a premium mobile game,https://www.reddit.com/r/startups/comments/4f74dv/quit_my_full_time_corporate_job_built_an_ios_game/,332,138,cdvonstinkpot,4/17/2016 15:57 +10290559,Millions are already benefiting from the shale revolution,https://medium.com/@weirgroup/the-future-s-green-and-that-means-a-key-role-for-fracking-8ba694b05574,1,1,sachalep,9/28/2015 14:18 +11126018,How to kill an unresponsive SSH session,http://www.laszlo.nu/post/553591402/how-to-kill-an-unresponsive-ssh-session,1,1,andrelaszlo,2/18/2016 14:42 +11717847,Tesloop offers city-to-city autonomous travel in a Tesla,http://techcrunch.com/2016/05/17/tesloop-offers-city-to-city-autonomous-travel-in-a-tesla/,5,2,tedmiston,5/17/2016 22:00 +10811714,Maybe Better If You Dont Read This Story on Public WiFi,https://medium.com/matter/heres-why-public-wifi-is-a-public-health-hazard-dd5b8dcb55e6#.uh6woaekh,9,2,lobsterdore,12/30/2015 11:51 +11005811,Introducing Bootstrap Studio,https://bootstrapstudio.io/,461,132,2a0c40,1/31/2016 9:10 +11132443,The Political War on Cash,http://www.wsj.com/articles/the-political-war-on-cash-1455754850,55,79,randomname2,2/19/2016 9:03 +12183742,"Microsoft laying off another 2,850 people in the next 12 months",http://www.businessinsider.com/microsoft-layoffs-2850-windows-phone-disaster-2016-7,8,1,w1ntermute,7/28/2016 22:40 +10339635,Snickerdoodle is a $55 mini PC for DIY robotics (and more),http://liliputing.com/2015/10/snickerdoodle-is-a-35-mini-pc-for-diy-robotics-and-more.html#disqus_thread,17,3,ogcricket,10/6/2015 15:43 +11970315,Emailing SaaS companies to test support time,https://www.sitebuilderreport.com/blog/how-long-does-it-take-saas-companies-to-reply-to-support-emails,56,30,steve-benjamins,6/24/2016 15:06 +10551247,The Next Internet? Marijuana Delivered as Easy as Pizza,http://www.nytimes.com/2015/11/12/technology/marijuana-start-ups-see-an-industry-on-the-cusp-of-a-breakthrough.html?ref=technology&_r=0,2,1,pavornyoh,11/12/2015 4:11 +11785831,'Is Windows phone dead?' is a wrong question to ask,https://medium.com/@ailon/is-windows-phone-dead-is-a-wrong-question-to-ask-f070100c343c#.ks0dzk51a,2,1,ailon,5/27/2016 13:26 +10817229,Ask HN: Is there still demand for animated email greetcard service?,,2,1,botw,12/31/2015 11:43 +12105734,How to set up an OpenStreetMap server,http://thinkonbytes.blogspot.com/2016/07/your-openstreetmap-server-in-120gb.html,150,30,ashitlerferad,7/16/2016 9:07 +11833074,"Tony Fadell Exits Nest, Marwan Fawaz to Step in as CEO",http://techcrunch.com/2016/06/03/tony-fadell-exits-nest/,21,1,zhuxuefeng1994,6/3/2016 20:34 +12565376,Do you use faker.js in production? A Patreon campaign to support faker.js dev,https://www.patreon.com/marak,1,1,_Marak_,9/23/2016 15:35 +10747156,All I Want for Christmas is You through MIDI then MP3 converters,http://red3blog.tumblr.com/post/135098280942/formeldeharv-i-put-all-i-want-for-christmas-is,2,1,benologist,12/16/2015 20:40 +10505438,A Look at the Voluntary Human Extinction Movement,http://www.theawl.com/2015/11/options,32,57,pmcpinto,11/4/2015 9:31 +10557406,Mach Match: Did an XP-86 Beat Yeager to the Punch? (1999),http://www.airspacemag.com/history-of-flight/mach-match-361247/?no-ist,12,2,lujim,11/13/2015 1:14 +11205848,Verizon customers forced onto Frontier,http://www.meetfrontier.com/,4,1,nhangen,3/1/2016 20:38 +12344858,"Announcing InfluxDB, Telegraf, Kapacitor and Enterprise 1.0 RC1",https://influxdata.com/blog/announcing-influxdb-telegraf-kapacitor-and-enterprise-1-0-rc1/,60,9,runesoerensen,8/23/2016 16:11 +12274721,Password storage disclosures,https://pulse.michalspacek.cz/passwords/storages,3,2,nailer,8/12/2016 11:30 +10944617,Show HN: An open-source ultrasound imaging dev kit side project,http://murgen.echopen.org,122,43,kelu124,1/21/2016 11:48 +10611715,United Airlines Bug Bounty: An experience in reporting a serious vulnerability,http://randywestergren.com/united-airlines-bug-bounty-an-experience-in-reporting-a-serious-vulnerability/,164,72,rwestergren,11/22/2015 22:17 +10265146,Is user a goat?,http://developer.android.com/reference/android/os/UserManager.html#isUserAGoat(),29,4,joshfarrant,9/23/2015 14:25 +11264911,Keys Under Doormats: Mandating insecurity by requiring government access (2015) [pdf],https://dspace.mit.edu/bitstream/handle/1721.1/97690/MIT-CSAIL-TR-2015-026.pdf?sequence=8,136,5,MaysonL,3/11/2016 6:02 +10540836,The Great Hargeisa Goat Bubble (2009),http://www.bbc.co.uk/blogs/thereporters/stephanieflanders/2009/05/the_great_hargeisa_goat_bubble.html,1,1,Lio,11/10/2015 17:39 +11816224,"Ask HN: What's your favorite, cheap throwaway computer?",,23,14,philippnagel,6/1/2016 17:18 +11602871,Are There Barbarians at the Gates of Science?,http://nautil.us/issue/35/boundaries/are-there-barbarians-at-the-gates-of-science,14,2,dnetesn,4/30/2016 18:26 +12019317,DVD player found in Tesla car in May crash: Florida officials,http://www.reuters.com/article/us-tesla-autopilot-dvd-idUSKCN0ZH5BW,15,5,sndean,7/1/2016 20:12 +10322524,Experiences Building an OS in Rust,https://mostlytyped.com/posts/experiences-building-an-os-in-ru,117,34,jaxondu,10/3/2015 3:53 +10556159,Facebook is testing Snapchat-like disappearing messages in France,http://www.theverge.com/2015/11/12/9724182/facebook-test-disappearing-messages-france-snapchat,3,1,shahryc,11/12/2015 21:11 +11419529,Vitter's reservoir sampling algorithm D: randomly selecting unique items,https://getkerf.wordpress.com/2016/03/30/the-best-algorithm-no-one-knows-about/,117,74,colinprince,4/4/2016 4:58 +11376175,"Bitcoin rival Ethereum climbed 1000% in 3 months, crossing $1B in value at times",http://www.nytimes.com/2016/03/28/business/dealbook/ethereum-a-virtual-currency-enables-transactions-that-rival-bitcoins.html,4,1,danyork,3/28/2016 18:21 +10934983,Is it still possible to get away with a heist?,http://s.telegraph.co.uk/graphics/projects/Hatton-Garden-is-it-still-possible-to-get-away-with-a-heist/index.html,169,110,sasvari,1/19/2016 23:38 +10591411,You Wont Live to See the Final Star Wars Movie,http://www.wired.com/2015/11/building-the-star-wars-universe/,2,1,zbravo,11/18/2015 23:07 +10464212,Google OnHub by ASUS,https://on.google.com/hub/#buy,1,1,GutenYe,10/28/2015 13:15 +10944929,TravelersBox raises $10m to help tourists with their leftover foreign change,https://www.techinasia.com/travelersbox-series-a-funding,2,1,williswee,1/21/2016 13:11 +11364390,The Chrome Distortion: how Chrome negatively alters our expectations,https://blog.runspired.com/2016/03/25/the-chrome-distortion-chrome-alters-our-expectations-in-highly-negative-ways/,23,1,bobajeff,3/26/2016 4:17 +10500745,Show HN: Pings 8000 servers in 11 seconds: Parallel HTTP/SSH/TCP/Ping library,https://github.com/eBay/parallec#demos,22,4,jeffpeiyt,11/3/2015 16:50 +10691071,X Marks the Spot That Makes Online Ads So Maddening,http://www.nytimes.com/2015/12/07/business/x-marks-the-spot-that-makes-online-ads-so-maddening.html,2,1,tpatke,12/7/2015 17:44 +10179082,This column will change your life: Helsinki Bus Station Theory,http://www.theguardian.com/lifeandstyle/2013/feb/23/change-life-helsinki-bus-station-theory,1,1,prawn,9/6/2015 21:26 +11333999,Scientists remove HIV-1 from genome of human immune cells,http://www.upi.com/Health_News/2016/03/21/Scientists-remove-HIV-1-from-genome-of-human-immune-cells/1511458583664/,8,3,adventured,3/22/2016 2:23 +10935559,In Praise of Blue Notes: What Makes Music Sad?,http://www.nytimes.com/2016/01/17/arts/music/in-praise-of-blue-notes-what-makes-music-sad.html,10,3,tintinnabula,1/20/2016 1:58 +10871007,Recognizing the Breaking Points of Management Structure,http://tomtunguz.com/breaking-points-of-management/,27,8,dvdgrdll,1/9/2016 12:26 +11579840,HACKADAY DICTIONARY: USB TYPE C,http://hackaday.com/2016/04/22/hackaday-dictionary-usb-type-c/,9,1,buro9,4/27/2016 12:43 +12320504,Why was CRLF/LF/CF to make developers life miserable,,13,6,xydac,8/19/2016 15:02 +10927369,Karma no longer 1-to-1 value-wise?,,4,2,evo_9,1/18/2016 22:08 +11932943,"When everything else fails, amateur radio will still be there and thriving",http://arstechnica.com/gadgets/2016/06/when-everything-else-fails-amateur-radio-will-still-be-there-and-thriving/,363,186,Tomte,6/19/2016 13:43 +11748023,Autonomous Mini Rally Car Teaches Itself to Powerslide,http://spectrum.ieee.org/cars-that-think/transportation/self-driving/autonomous-mini-rally-car-teaches-itself-to-powerslide,229,45,Osiris30,5/22/2016 10:28 +11892262,HardCaml: Register Transfer Level Hardware Design in OCaml,https://ujamjar.github.io/hardcaml/,84,8,edwintorok,6/13/2016 7:54 +11645278,Some prime numbers are illegal in the United States,http://kottke.org/16/05/some-prime-numbers-are-illegal-in-the-united-states,3,2,sogen,5/6/2016 17:11 +11924263,Issue 570685 nest.com consuming 4+GB of RAM on Linux (2015),https://bugs.chromium.org/p/chromium/issues/detail?id=570685,4,1,yuhong,6/17/2016 17:52 +12388601,Commission says Ireland granted undue tax benefits of up to €13B to Apple,http://www.rte.ie/news/2016/0830/812819-apple-tax-ireland/,417,419,Oletros,8/30/2016 9:53 +12038854,ViperDNS closed down,https://www.viperdns.com/,21,12,ch0wn,7/5/2016 19:23 +11729187,Indian ECommerce Industry to Grow $300B by 2030,https://www.linkedin.com/pulse/indian-ecommerce-industry-grow-300-billion-2030-mudra-rao,1,1,mudrarao,5/19/2016 10:34 +10658083,Show HN: 4usxus.com Vote on issues and compare your votes against your reps,https://4usxus.com,4,2,bbrez1,12/1/2015 19:35 +12063547,Data Mining Reveals the Six Basic Emotional Arcs of Storytelling,https://www.technologyreview.com/s/601848/data-mining-reveals-the-six-basic-emotional-arcs-of-storytelling/,1,1,kevbin,7/9/2016 22:06 +12499727,The GitHub GraphQL API,http://githubengineering.com/the-github-graphql-api/,284,66,samber,9/14/2016 18:15 +12171970,Philae Lander: Its time for me to say goodbye,https://twitter.com/Philae2014/status/757938537803153408,254,47,aurhum,7/27/2016 11:40 +12109161,The 1 percent are parasites debunking lies about trickle-down and capitalism,http://www.salon.com/2015/04/11/the_1_percent_are_parasites_debunking_the_lies_about_free_enterprise_trickle_down_capitalism_and_celebrity_entrepreneurs/,42,7,neuro_imager,7/17/2016 5:47 +11299819,Democracy is broken,https://medium.com/@markentingh/democracy-is-broken-a79916a79d66,2,4,apolymath,3/16/2016 19:00 +12369633,The Rehab Camp My Parents Paid to Kidnap Me,http://www.cracked.com/personal-experiences-1680-5-things-i-learned-escaping-troubled-teens-facility.html,2,8,apsec112,8/26/2016 22:05 +10239962,C++ Core Guidelines,https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md,268,126,octoploid,9/18/2015 16:02 +11260946,Video on Internet: Live Streaming in 2016?,http://blog.peer5.com/video-on-internet-live-streaming-in-2016/,3,2,billyp123,3/10/2016 18:23 +11777662,uLisp Lisp for the Arduino,http://www.ulisp.com/,104,33,weeber,5/26/2016 13:20 +12060331,Habitat a massively multiplayer online role-playing game for the Commodore 64,https://github.com/Museum-of-Art-and-Digital-Entertainment/habitat,130,24,hitr,7/9/2016 6:05 +10598465,Intestinal worms may help women get pregnant more often,http://news.sciencemag.org/biology/2015/11/intestinal-worms-may-help-women-get-pregnant-more-often,46,14,DrScump,11/19/2015 23:32 +10520529,Systemd.conf conference recordings,https://www.youtube.com/channel/UCvq_RgZp3kljp9X8Io9Z1DA,2,1,andor,11/6/2015 17:13 +12176697,Apple celebrates one billion iPhones,http://www.apple.com/newsroom/2016/07/apple-celebrates-one-billion-iphones.html,116,147,ingve,7/27/2016 21:36 +11060875,Department of Homeland Security Devices on SF Streets,http://sfist.com/2016/01/27/trust_no_one.php,149,77,vskarine,2/8/2016 21:02 +10649086,Show HN: Self-hosted mailserver Poste.io got REST API,https://poste.io/demo,10,3,efesak2,11/30/2015 12:48 +10303143,Laser Razor,https://www.kickstarter.com/projects/skarp/the-skarp-laser-razor-21st-century-shaving,8,3,jsnathan,9/30/2015 11:37 +10897937,A Startup Founders Secret Confession: Im Not So Busy,https://medium.com/keep-learning-keep-growing/a-startup-founder-s-secret-confession-i-m-not-so-busy-51e6aa45a82a#.jdwi7lwya,6,2,kernelv,1/13/2016 22:05 +11257465,Show HN: ThisCouldBeMobile.com make other people's sites responsive,,3,1,mapmeld,3/10/2016 5:04 +12121138,Amateur astronomers say Chinese space station could crash to Earth,http://phys.org/news/2016-07-amateur-astronomers-chinese-space-station.html,1,1,urumcsi,7/19/2016 11:43 +11680262,Volvo's Self Driving Pilot in Hands of Customers,http://spectrum.ieee.org/cars-that-think/transportation/self-driving/volvos-selfdriving-program-will-have-redundancy-for-everything,108,53,Lind5,5/11/2016 23:35 +10202103,Why don't Google sell SSL certs? After awesome Google Domains service,,10,3,guoqiang2,9/11/2015 5:08 +10916071,"6th Grade Visits Ancient Rome, Thanks to Google Expedition 360video.directory",http://360video.directory/2016/01/16/6th-grade-visits-ancient-rome-thanks-to-google-expedition/,1,1,rednix,1/16/2016 17:59 +10549808,Astronomers announce discovery of closest Earth-sized planet yet found,https://www.cfa.harvard.edu/MEarth/gj1132b.html,2,1,tomr_stargazer,11/11/2015 22:25 +11884152,Ask HN: How did Sublime Text get traction?,,16,22,hbbio,6/11/2016 16:51 +10857458,"When delivery drones meet the enemy, it might be us",https://www.washingtonpost.com/business/economy/biggest-obstacle-for-delivery-drones-isnt-the-technology-its-you-and-me/2016/01/06/e4cae052-aa81-11e5-9b92-dea7cd4b1a4d_story.html,2,1,ilamont,1/7/2016 12:05 +10599665,How R Took the World of Statistics by Storm,http://www.statisticsviews.com/details/feature/8585391/Created-by-statisticians-for-statisticians-How-R-took-the-world-of-statistics-by.html,98,48,mindcrime,11/20/2015 5:01 +10931849,Ask HN: $50 challenge,,1,3,gunnark01,1/19/2016 16:42 +10463360,Fully transparent solar cell,http://www.digitaltrends.com/cool-tech/first-fully-transparent-solar-power-cell/,3,1,DerKobe,10/28/2015 8:54 +11035036,Show HN: Demo: most accurate speech recognition,http://app.loverino.com/#try-the-demo,3,6,soheil,2/4/2016 16:28 +11341706,TensorFlow Implementation of Deep Convolutional Generative Adversarial Networks,https://github.com/carpedm20/DCGAN-tensorflow,98,18,carpedm20,3/23/2016 2:34 +10392141,Social Media Cracked the Case of MH17,http://www.bloombergview.com/articles/2015-10-14/social-media-cracked-the-case-of-mh17,102,49,henrik_w,10/15/2015 9:25 +12450684,"Show HN: cookies.js, making cookies a delight to work with on the front-end",https://github.com/franciscop/cookies.js,122,46,franciscop,9/8/2016 6:18 +10340874,Show HN: Coward.js Back off AJAX polling interval when something goes wrong,https://github.com/jensenak/coward,3,1,orangepenguin,10/6/2015 17:54 +10375953,The 20 Habits of Eventual Millionaires,http://www.jamesaltucher.com/2015/10/eventual-millionaires/,2,1,confiscate,10/12/2015 17:36 +12274697,Return True to Win,http://alf.nu/ReturnTrue,234,116,moklick,8/12/2016 11:26 +10443921,"Show HN: HTML5 voice conference up to 5, webcam pic share, loginless and encrpyted",https://dropfrog.io/outpost/,9,3,dropfrog,10/24/2015 15:48 +12507591,Tech Debt Isnt What You Think It Is,https://spin.atomicobject.com/2016/09/14/technical-debt-2/,3,1,gvb,9/15/2016 16:38 +12246473,EU expands copyright to furniture and extends term by a century,https://www.privateinternetaccess.com/blog/2016/08/3d-printers-break-eu-expands-copyright-furniture/,105,53,mirceasoaica,8/8/2016 9:39 +12547817,I Used to Be a Human Being,http://nymag.com/selectall/2016/09/andrew-sullivan-technology-almost-killed-me.html?mid=twitter-share-selectall,342,219,oscarwao,9/21/2016 13:12 +11892114,Boosting Sales with Machine Learning,https://medium.com/xeneta/boosting-sales-with-machine-learning-fbcf2e618be3#.i07ffn8qw,2,1,pknerd,6/13/2016 7:01 +10895756,Deploying WordPress themes (or any set of files) with Git,http://aurooba.com/how-to-deploy-wordpress-themes-using-git/,1,1,aurooba,1/13/2016 17:06 +11952800,Ask HN: Looking for beta testers. Can you help?,,1,2,krmmalik,6/22/2016 11:02 +10958115,Ask HN: Why Apple laptops are predominant laptops on every hackathon I go?,,4,16,victorantos,1/23/2016 12:07 +10320185,"US economy adds only 142,000 jobs, raising doubts about interest rate rise",http://www.theguardian.com/business/2015/oct/02/us-economy-adds-only-142000-jobs-raising-doubts-about-interest-rate-rise,4,1,cryoshon,10/2/2015 18:04 +11820611,"The PC upgrade cycle slows to every five to six years, Intel's CEO says",http://www.infoworld.com/article/3078078/hardware/the-pc-upgrade-cycle-slows-to-every-five-to-six-years-intels-ceo-says.html,3,1,walterbell,6/2/2016 5:43 +10847290,Show HN: A Search Engine That Solves a Nationwide Problem,http://www.browseu.com/,1,3,browseu,1/6/2016 0:16 +12448453,"No, really, the headphone jack is more useful than you think",https://techcrunch.com/2016/09/07/applejack/,7,2,obi1kenobi,9/7/2016 22:25 +11396740,Where's the lane? Self-driving cars confused by shabby U.S. roadways,http://www.reuters.com/article/us-autos-autonomous-infrastructure-insig-idUSKCN0WX131,3,1,mdip,3/31/2016 12:52 +11656616,A retired Navy SEAL commanders 12 rules for being an effective leader,https://www.weforum.org/agenda/2016/05/a-retired-navy-seal-commander-s-12-rules-for-being-an-effective-leader,16,5,kungfudoi,5/8/2016 23:47 +10326549,Web Fonts Performance,https://speakerdeck.com/bramstein/web-fonts-performance,113,57,nnx,10/4/2015 5:10 +12256155,Text analysis of Trump's tweets confirms he writes only the angrier Android half,http://varianceexplained.org/r/trump-tweets/,5,1,var_explained,8/9/2016 17:20 +10607889,McDonald's Value Calculator,http://mcdank-calc.herokuapp.com/,4,1,gcledingham,11/21/2015 20:17 +11830027,Bait and Switch: The Failure of Facebook Advertising??An OSINT Investigation,https://medium.com/@hunchly/bait-and-switch-the-failure-of-facebook-advertising-an-osint-investigation-37d693b2a858#.hx6fv9run,2,2,coldcode,6/3/2016 12:54 +11309641,Deadly Truth of General AI? Computerphile,https://www.youtube.com/watch?v=tcdVC4e6EV4,2,4,doener,3/18/2016 3:20 +11387148,Ron Rivest: Keys Under Doormats Mandating Insecurity [video],https://www.youtube.com/watch?v=hqacHM6Wm0Q,53,4,mzl,3/30/2016 5:26 +10261321,"Ask HN: What would you ask a magical, all-knowing, business oracle?",,1,1,gizzlon,9/22/2015 20:08 +11315633,What Weve Learned About Pluto,http://www.nytimes.com/interactive/2016/03/17/science/pluto-images-charon-moons-new-horizons-flyby.html,1,1,H0n3sty,3/18/2016 22:15 +11873186,"Startup strip-mines data from social media for landlords, employers and dates",https://www.washingtonpost.com/news/the-intersect/wp/2016/06/09/creepy-startup-will-help-landlords-employers-and-online-dates-strip-mine-intimate-data-from-your-facebook-page/,2,1,ilamont,6/9/2016 23:34 +10362540,Ask HN: Why would DigitalOcean require 30GB for a Wordpress droplet?,,1,1,dutchbrit,10/9/2015 19:02 +12311773,Ask HN: Where/how can I apply to startups/companies Internationally as a fresher,,2,7,hubatrix,8/18/2016 12:00 +10455110,Crazily fast hashing with carry-less multiplications,http://lemire.me/blog/2015/10/26/crazily-fast-hashing-with-carry-less-multiplications/,94,7,robinhouston,10/26/2015 23:00 +10935130,Microsoft will donate $1B in cloud services to nonprofits and universities,http://blogs.microsoft.com/blog/2016/01/19/how-were-putting-the-microsoft-cloud-to-work-for-the-public-good/,112,74,brozak,1/20/2016 0:16 +11624356,Linux Sysadmin/DevOps Interview Questions,https://github.com/chassing/linux-sysadmin-interview-questions,62,62,metmac,5/3/2016 21:24 +12088625,WhatsApp Blocking Encrypted Calls to All Saudi Numbers,https://gist.github.com/kaepora/152d9a30650c8828d9d4c21a0910bd19,156,84,waffle_ss,7/13/2016 18:42 +10986195,25 Civil Liberties Orgs Call for Open Hearings on Section 702 Surveillance,https://www.eff.org/deeplinks/2016/01/25-civil-liberties-organizations-call-open-hearings-section-702-surveillance,132,2,DiabloD3,1/28/2016 4:09 +11998373,"You Should Worry About This Evernote Update, Even If You Dont Use It",http://www.huffingtonpost.com/entry/evernote-update_us_5772cce9e4b0d1f85d478091,2,1,vimota,6/28/2016 23:23 +11116213,Instagram begins rolling out two-factor authentication,http://www.theverge.com/2016/2/16/11025792/instagram-two-factor-authentication,2,1,andygambles,2/17/2016 8:22 +11523158,CLI Twitter status update bot,https://github.com/Idnan/tweet-cli,7,2,idnan,4/18/2016 21:05 +10377338,"In China, Your Credit Score Is Now Affected by Your Political Opinions",http://www.antipope.org/charlie/blog-static/2015/10/it-could-be-worse.html,3,1,SocksCanClose,10/12/2015 22:45 +12179912,My thoughts from IETF 96,http://blog.apnic.net/2016/07/28/thoughts-ietf-96/,33,3,okket,7/28/2016 13:06 +10362024,Weev threatens prosecutors with info from Ashley Madison leaks,http://arstechnica.com/tech-policy/2015/10/weev-threatens-prosecutors-with-info-from-ashley-madison-leaks/,34,26,amyjess,10/9/2015 17:53 +12460586,Researchers prototype system for reading closed books,http://phys.org/news/2016-09-prototype-method-letters-pages-stack.html,2,1,sohkamyung,9/9/2016 9:13 +10311076,Orthographic Pedant: Bot that scans popular repositories for common typos,https://github.com/thoppe/orthographic-pedant,2,1,MichaelAza,10/1/2015 13:52 +11336190,"Google Cloud Platform adds two new regions, 10 more to come",https://cloudplatform.googleblog.com/2016/03/announcing-two-new-Cloud-Platform-Regions-and-10-more-to-come_22.html,11,1,ingve,3/22/2016 13:00 +11218636,Yahoos Fire Sale Is Imminent,http://www.vanityfair.com/news/2016/03/yahoos-fire-sale-is-imminent,2,1,w1ntermute,3/3/2016 18:07 +11093501,Working Calculator in Super Mario Maker [video],https://www.youtube.com/watch?v=pRrqK2LyHes,119,19,janvdberg,2/13/2016 10:50 +11298308,Jeff Dean on Large-Scale Deep Learning at Google,http://highscalability.com/blog/2016/3/16/jeff-dean-on-large-scale-deep-learning-at-google.html,140,30,charlieegan3,3/16/2016 16:01 +12252651,An Introduction to Use After Free Vulnerabilities,https://www.purehacking.com/blog/lloyd-simon/an-introduction-to-use-after-free-vulnerabilities,14,1,adamnemecek,8/9/2016 4:42 +11464972,Apply HN: Automate the $450B bookkeeping and accounting industry,,11,2,twbeauli,4/10/2016 5:00 +10776771,Ask HN: Know any good iOS onboarding/tutorial libraries?,,3,2,bvallelunga,12/22/2015 9:53 +12372268,Buying a Kalashnikov Is Easier Than Ever at the Moscow Airport,http://www.bloomberg.com/news/photo-essays/2016-08-26/buying-a-kalashnikov-is-easier-than-ever-at-the-moscow-airport,1,2,SanjeevSharma,8/27/2016 13:31 +10926468,Ask HN: How did you identify your problem-space and problem to work on?,,1,1,a_lifters_life,1/18/2016 19:52 +11856987,Bullet journal: A simple productivity system that just uses pen and paper,http://qz.com/701309/people-are-falling-in-love-with-a-simple-productivity-system-that-just-uses-pen-and-paper/,130,61,smalera,6/7/2016 19:16 +10880379,Strategies to better understand the world in 2016,http://meshedsociety.com/understanding-the-world-in-2016/,6,1,imartin2k,1/11/2016 12:28 +11279216,"Show HN: Automated algorithm translation for Python, C++, C#, JS",https://github.com/alehander42/pseudo,142,14,alehander42,3/13/2016 20:30 +11520888,Pieter Hintjens (zeromq) diagnosed with incurable cancer,https://twitter.com/hintjens/status/722074401798287361,128,75,insiderinsider,4/18/2016 15:54 +11430575,At this time you should not upgrade a production desktop from 14.04 to 16.04,https://wiki.ubuntu.com/XenialXerus/ReleaseNotes#Upgrade,38,24,iheredia,4/5/2016 14:23 +11737926,Agile is not a Fucking Noun,https://medium.com/@magdoub/agile-is-not-a-fucking-noun-e2064b241311,64,60,MrDevelopmerMad,5/20/2016 14:16 +10795517,Logistics Is Sexy,http://techcrunch.com/gallery/seriously-logistics-is-really-sexy/,3,1,confiscate,12/26/2015 22:28 +11177734,Working at work is a thing of the past,http://www.theverge.com/2016/2/22/11092338/kanye-west-work-hour,1,1,DiabloD3,2/25/2016 20:59 +10231487,"Testimony on HB552, to Legalize Bitcoin for Payments of Taxes and Fees",http://blog.lbry.io/testimony-to-subcommittee-on-hb552-to-legalize-bitcoin-for-payments-of-taxes-and-fees/,2,1,kauffj,9/17/2015 3:53 +12174907,Ask HN: Monitoring best practices,,9,3,el_benhameen,7/27/2016 17:41 +10621222,Lucky Microseconds: A Timing Attack on Amazon's S2n Implementation of TLS,http://eprint.iacr.org/2015/1129,3,1,Deinos,11/24/2015 15:27 +11313193,Unraveling of the tech hiring market,https://blogs.janestreet.com/unraveling/,98,65,luu,3/18/2016 17:09 +12494547,Paste the Plan,https://www.brentozar.com/pastetheplan/,2,1,m_st,9/14/2016 6:03 +11783059,Location of Aristotle's tomb to be revealed at Thessaloniki conference Thursday,http://www.ekathimerini.com/209017/article/ekathimerini/life/location-of-aristotles-tomb-to-be-revealed-at-thessaloniki-conference-thursday,6,1,MOARDONGZPLZ,5/27/2016 0:48 +12448084,Ex-Apple Engineer Rejected for Genius Bar Job Adds Fuel to Ageism Debate,http://www.huffingtonpost.com/entry/apple-engineer-rejected-genius-bar_us_57ced56de4b078581f13fe6a,15,4,kushti,9/7/2016 21:46 +10945552,Scandalous Weird Old Things About the C Preprocessor,http://blog.robertelder.org/7-weird-old-things-about-the-c-preprocessor/,97,41,robertelder,1/21/2016 14:55 +11133204,More on Indias $4 Phone,http://openattitude.com/2016/02/19/more-on-indias-4-phone/,58,20,jwildeboer,2/19/2016 13:06 +10845933,Ask HN: Most stable Linux distro for desktop use,,14,28,logn,1/5/2016 20:54 +10225561,How software engineers managed to create a hardware product,https://www.indiegogo.com/projects/world-s-first-personal-air-conditioner/?utm_source=yc,79,15,alhoff,9/16/2015 9:48 +10263891,Office 2016 Is Microsoft's Best Hope to Show It's Changed,http://www.wired.com/2015/09/office-2016-microsofts-best-hope-show-really-changed/,39,66,howsilly,9/23/2015 8:28 +10216160,"Goodbye, Cameras (2013)",http://www.newyorker.com/tech/elements/goodbye-cameras,29,46,donohoe,9/14/2015 17:20 +12309886,Introducing React Native Ubuntu,https://developer.ubuntu.com/en/blog/2016/08/05/introducing-react-native-ubuntu/,5,1,levlaz,8/18/2016 1:41 +10266613,Deal allowing tech companies to transfer data between US and EU is invalid,http://arstechnica.com/tech-policy/2015/09/eu-us-data-flows-using-safe-harbour-may-be-illegal-because-of-nsa-spying/,49,14,Atlas,9/23/2015 17:46 +10810463,Former Microsoft Chief Privacy Officer on the Cloud Conspiracy [2015],http://www.networkworld.com/article/2866286/microsoft-subnet/former-microsoft-chief-privacy-officer-on-the-cloud-conspiracy.html,5,1,yuhong,12/30/2015 3:07 +12376307,The Future of Conversational UI Belongs to Hybrid Interfaces,https://medium.com/the-layer/the-future-of-conversational-ui-belongs-to-hybrid-interfaces-8a228de0bdb5,28,8,nxzero,8/28/2016 12:57 +12233370,How to Save a City Through a Website,http://www.lennyletter.com/politics/interviews/a477/how-to-save-a-city-through-a-website/,38,12,sonabinu,8/5/2016 16:05 +12420066,The Chinese typewriter,http://www.latimes.com/world/asia/la-fg-chinese-typewriter-snap-story.html,54,14,drauh,9/3/2016 17:26 +12466560,Test Pilot Admits the F-35 Cant Dogfight,https://warisboring.com/test-pilot-admits-the-f-35-can-t-dogfight-cdb9d11a875,20,3,CarolineW,9/9/2016 22:44 +10782897,Super small Docker image based on Alpine Linux,https://github.com/gliderlabs/docker-alpine/tree/d751bb2bcacd2a6536280cdc7d313bc6584aa40e,262,159,antouank,12/23/2015 11:33 +10806103,Ask HN: Share your old Password,,1,4,neelkadia,12/29/2015 10:44 +11536074,Let's Kill All the Mosquitoes,http://www.slate.com/articles/health_and_science/science/2016/01/zika_carrying_mosquitoes_are_a_global_scourge_and_must_be_stopped.html,491,425,wwilson,4/20/2016 17:27 +10307465,Adobe CIO resigns,,4,1,insiderinsider,9/30/2015 21:34 +10987913,Michigans Great Stink,http://www.nytimes.com/2016/01/25/opinion/michigans-great-stink.html,6,1,cs702,1/28/2016 13:14 +10587571,NodeOS 1.0-RC1,,4,4,piranna,11/18/2015 13:37 +10696036,"Show HN: The story of space debris, made with WebGL for the Royal Institution",http://rigb.org/christmas-lectures/how-to-survive-in-space/a-place-called-space/7-space-debris-visualisation,36,10,stugrey,12/8/2015 12:54 +11219503,'I Left My Dream Job at Google to Join the Marijuana Revolution',http://www.thekindland.com/i-left-my-dream-job-at-google-to-join-the-1001,5,2,silasisonhacker,3/3/2016 19:52 +11604743,Sahnnon's Ultimate Machine on his 1100100,http://www.wesleyq.me/shannon-1100100/,2,1,wesleyyc,5/1/2016 3:36 +12317823,Tekserve auctions their vintage Mac collection,"https://new.liveauctioneers.com/search?parameters=%7B%22keyword%22:%22macintosh%20collection%20tekserve%22,%22page%22:1,%22pageSize%22:24,%22status%22:%22online%22%7D",50,22,talos,8/19/2016 3:31 +11476658,"ShadowSocks, RedSocks2 and ChinaDNS on OpenWrt",https://xuri.me/2015/09/04/shadowsocks-redsocks2-and-chinadns-on-openwrt.html,2,1,rahimnathwani,4/12/2016 1:54 +12286038,"The TPP isn't 'free trade,' it's corruption",https://www.fightforthefuture.org/2016/Stop-TPP-corruption/,69,1,walterbell,8/14/2016 15:53 +10550326,These Are the 116 Images NASA Picked to Share with Aliens (or Future Humans),http://petapixel.com/2015/11/11/these-are-the-116-images-nasa-picked-to-share-with-aliens-or-future-humans/,2,1,gusario,11/11/2015 23:57 +11440070,A massive open-data survey of people learning to program,https://freecodecamp.typeform.com/to/gc0JJI,6,2,quincylarson,4/6/2016 17:05 +11326624,Show HN: GitHub Issues in the Menubar (OS X),https://github.com/tomgenoni/bitbar-ghissues,3,1,tomgenoni,3/21/2016 7:03 +10903267,The Guy from the Men's Warehouse Commercial Is Making a Comeback,http://thehustle.co/george-zimmer-got-fired-then-he-got-real-cool,3,1,jl87,1/14/2016 18:24 +11668144,How Italy Improved My English,http://www.nybooks.com/daily/2016/05/10/expat-writing-how-italy-improved-my-english/,27,10,pepys,5/10/2016 15:58 +10626135,PCs running Dell support app can be uniquely IDd by snoops and scammers,http://arstechnica.com/security/2015/11/pcs-running-dell-support-app-can-be-uniquely-idd-by-snoops-and-scammers/,45,1,fabian2k,11/25/2015 8:48 +12103741,"Rayton Solar raised $2.8M on Fundable, now running REG A+",http://www.startengine.com/startup/rayton-solar,6,2,Grantarvey,7/15/2016 20:48 +12417473,Call a real-live Diversi-Dial system from the 1980s,,3,1,empressplay,9/3/2016 2:44 +12219826,Fuck Dropdowns,http://www.fuckdropdowns.com/,2,2,artur_makly,8/3/2016 17:34 +10377403,Show HN: DEEP Framework DYI Microservices on Serverless AWS (e.g. www.deep.mg),https://www.github.com/MitocGroup/deep-framework.git,31,21,mitocgroup,10/12/2015 23:06 +11499515,Ask HN: What's a great emacs setup for C++?,,1,2,hellofunk,4/14/2016 19:09 +10996047,The Hard Evidence: Business Is Slowing Down,http://fortune.com/2016/01/28/business-decision-making-project-management/,4,1,yummyfajitas,1/29/2016 16:17 +11296347,How Far Back in Time Could You Travel and Still Understand English?,http://sploid.gizmodo.com/how-far-back-in-time-could-you-travel-and-still-underst-1764826914,4,1,jmadsen,3/16/2016 11:00 +11491961,"Slack beats email, but still needs to get better",http://www.theverge.com/2016/4/13/11417726/slack-app-walt-mossberg-stewart-butterfield-interview,2,1,rezist808,4/13/2016 20:34 +11478781,"In Science, Its Never Just a Theory",http://www.nytimes.com/2016/04/09/science/in-science-its-never-just-a-theory.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=rank&module=package&version=highlights&contentPlacement=7&pgtype=sectionfront,5,2,dnetesn,4/12/2016 12:05 +11268986,Hoaxy: A Platform for Tracking Online Misinformation,http://arxiv.org/abs/1603.01511,13,2,lainon,3/11/2016 19:44 +11178655,"No, cell phones are not cooking mens sperm",http://scienceblogs.com/insolence/2016/02/24/no-cell-phones-are-not-cooking-mens-sperm/,9,2,tokenadult,2/25/2016 23:20 +10281910,Show HN: Exclusive search engine for web apps,https://kaydo.com.au/cloud-apps,3,3,kaydo_com_au,9/26/2015 2:52 +12530545,Strangeloop 2016,https://www.youtube.com/channel/UC_QIfHvN9auy2CoOdSfMWDw/videos,19,2,pinouchon,9/19/2016 11:42 +11318486,CoreOS Delivers on Security with v1.0 of Clair Container Image Analyzer,https://coreos.com/blog/clair-v1.html,55,5,Artemis2,3/19/2016 13:48 +11209094,Upcylce Old Speakers with C.H.I.P,http://blog.nextthing.co/ntc-project-upcycle-your-old-speakers-with-c-h-i-p/,30,18,dcschelt,3/2/2016 10:20 +11875834,Physical Key Extraction Attacks on PCs,http://m.cacm.acm.org/magazines/2016/6/202646-physical-key-extraction-attacks-on-pcs/fulltext,2,1,zig,6/10/2016 12:22 +11491567,Letting them die: parents refuse medical help for children in the name of Christ,http://www.theguardian.com/us-news/2016/apr/13/followers-of-christ-idaho-religious-sect-child-mortality-refusing-medical-help,1,1,crivabene,4/13/2016 19:47 +11892725,Is Bootstrap dies?,https://github.com/twbs/bootstrap/graphs/contributors?from=2011-04-24&to=2016-06-11&type=c,3,2,mrholek,6/13/2016 10:11 +10706415,Whats the Best Programming Language to Learn in 2015?,http://www.sitepoint.com/whats-best-programming-language-learn-2015/,2,2,Walkman,12/9/2015 20:19 +10900087,Internet Yields Uneven Dividends and May Widen Inequality,http://www.nytimes.com/2016/01/14/world/asia/internet-yields-uneven-dividends-and-may-widen-inequality-report-says.html?smprod=nytcore-ipad&smid=nytcore-ipad-share&_r=0,2,1,nichodges,1/14/2016 7:42 +11322200,Airlander 10: New pictures of world's longest aircraft,http://www.bbc.co.uk/news/uk-england-beds-bucks-herts-35836218,19,9,jjp,3/20/2016 8:00 +10247574,'Quirkyalone' is Still Alone,http://mobile.nytimes.com/2015/09/20/fashion/modern-love-quirkyalone-is-still-alone.html?_r=0,48,15,jeffreyrogers,9/20/2015 14:16 +10229212,The White House Shifts Stance on Encryption,https://www.washingtonpost.com/world/national-security/tech-trade-agencies-push-to-disavow-law-requiring-decryption-of-phones/2015/09/16/1fca5f72-5adf-11e5-b38e-06883aacba64_story.html?postshare=9031442410909976,4,1,Amorymeltzer,9/16/2015 19:35 +11652498,The Power Of A Picture,https://media.netflix.com/en/company-blog/the-power-of-a-picture,19,12,Vagantem,5/8/2016 3:35 +12225496,Missouri Governor Jay Nixon Gets Ordered to Serve as a Public Defender,http://www.theatlantic.com/politics/archive/2016/08/when-the-governor-is-your-lawyer/494453/?utm_source=atlfb&single_page=true,54,3,kposehn,8/4/2016 13:58 +11583008,Never trust the client,http://gafferongames.com/2016/04/25/never-trust-the-client/,360,152,netinstructions,4/27/2016 18:13 +11195155,Startup Lessons from the Once-Again Hot Field of A.I,http://www.nytimes.com/2016/02/29/technology/start-up-lessons-from-the-once-again-hot-field-of-ai.html?hpw&rref=technology&action=click&pgtype=Homepage&module=well-region®ion=bottom-well&WT.nav=bottom-well&_r=0,1,1,hvo,2/29/2016 12:58 +11104394,Machine Learning Tutorial,https://www.praetorian.com/blog/machine-learning-tutorial,4,2,myover,2/15/2016 17:02 +10933169,R.I.P. Bitcoin. Its time to move on,https://www.washingtonpost.com/news/innovations/wp/2016/01/19/r-i-p-bitcoin-its-time-to-move-on/,8,2,mdariani,1/19/2016 19:20 +11370386,WeWork to Remake Real Estate with Code,http://www.wired.com/2016/03/weworks-radical-plan-remake-real-estate-code/?utm_source=wanqu.co&utm_campaign=Wanqu+Daily&utm_medium=website,2,1,skypather,3/27/2016 16:00 +10213324,Dressing Solaris: Notes from the Costume Designer of Solaris,http://calvertjournal.com/features/show/4650,1,1,rdtsc,9/14/2015 1:23 +11118430,Learn to Code: It's a LOT Harder Than You Think,http://blog.debugme.eu/learn-to-code/,8,4,SLaszlo,2/17/2016 15:27 +10888772,The Ultimate Beginner's Guide to GitHub,http://blog.pluralsight.com/github-tutorial,15,1,prtkgpt,1/12/2016 17:26 +12501950,Google will deliver groceries to Kansas City doorsteps,http://www.bizjournals.com/kansascity/news/2016/09/13/google-express-grocery-shopping-service.html?ana=e_ae_set1&s=article_du&ed=2016-09-13&u=v3zG4AOzM2Z088kXcVNGkg01f2c2b5&t=1473894037&j=75773712,2,1,SQL2219,9/14/2016 23:01 +11411833,British authorities demand encryption keys in case with huge implications,https://theintercept.com/2016/04/01/british-authorities-demand-encryption-keys-in-closely-watched-case/,124,87,jackgavigan,4/2/2016 15:25 +12058622,Ask HN: I need a landing page developer,,1,3,tertius,7/8/2016 21:01 +12258871,Thousands of Toronto Landlords Have Been Using AI to Screen Tenants,http://www.naborly.co/,6,4,ashley_haynes,8/10/2016 1:22 +12313477,The BeagleBone's I/O pins: inside the software stack that makes them work,http://www.righto.com/2016/08/the-beaglebones-io-pins-inside-software.html,63,23,dwaxe,8/18/2016 15:54 +11882681,Rant: You think Apple has neglected its developers? The chrome webstore is worse,,3,3,DYZT,6/11/2016 8:38 +10672505,Twenty Five Years in Chinese Jazz,http://theanthill.org/jazz,25,4,chesterfield,12/3/2015 20:48 +11099925,A Modern App Developer and an Old-Timer System Developer Walk into a Bar,http://zhen.org/blog/two-developers-walk-into-a-bar/,148,83,zhenjl,2/14/2016 20:48 +12568414,"New Draft of Reinforcement Learning: An Introduction, Second Edition",https://www.dropbox.com/s/d6fyn4a5ag3atzk/bookdraft2016aug.pdf?dl=0,166,30,Gimpei,9/23/2016 22:29 +10277012,Police Program Aims to Pinpoint Those Most Likely to Commit Crimes,http://www.nytimes.com/2015/09/25/us/police-program-aims-to-pinpoint-those-most-likely-to-commit-crimes.html?_r=0,36,60,charrisku,9/25/2015 9:01 +11640880,Why Putin could be completely wrong about Trump,http://failedevolution.blogspot.com/2016/05/why-putin-could-be-completely-wrong.html,1,1,nomoba,5/6/2016 0:46 +11816671,Four Reasons a Guaranteed Income Won't Work,https://www.bloomberg.com/view/articles/2013-12-04/four-reasons-a-guaranteed-income-won-t-work,6,5,yummyfajitas,6/1/2016 18:00 +12029313,3001SQ Space Colonisation with Programmable Spacecraft,https://www.kickstarter.com/projects/sdmv/3001sq-space-colonisation-with-programmable-spacec,3,1,kiyanwang,7/4/2016 7:31 +12564173,"Linear Algebra Abridged Sheldon Axler (WEBDL, 2016)",http://linear.axler.net/LinearAbridged.html,26,2,seycombi,9/23/2016 12:55 +12260247,Gathering honey from a weed (2013),http://the-life-i-read.blogspot.com/2013/10/gathering-honey-from-weed.html,38,6,aaron695,8/10/2016 8:22 +10322866,"Effectiveness of Talk Therapy Is Overstated, a Study Says",http://www.nytimes.com/2015/10/01/health/study-finds-psychotherapys-effectiveness-for-depression-overstated.html?smid=tw-nytimes&smtyp=cur&_r=0,31,25,khc,10/3/2015 6:39 +12178236,Do companies exaggerate about their culture?,,3,1,peace011,7/28/2016 4:00 +11563668,Reinvent Yourself: Interview with Ray Kurzweil,https://www.playboy.com/articles/playboy-interview-ray-kurzweil,2,1,Dowwie,4/25/2016 12:02 +12189624,Lessons from a year's worth of hiring data,https://medium.freecodecamp.com/lessons-from-a-years-worth-of-hiring-data-dacf4e7668d4,2,1,quincyla,7/29/2016 20:15 +12377182,5 Tips for Using Strings in Go,http://www.calhoun.io/5-tips-for-using-strings-in-go-2/,2,1,joncalhoun,8/28/2016 16:41 +12087238,"Show HN: Polybit Build, Deploy, Host Node.js APIs",https://polybit.com/,151,49,keithwhor,7/13/2016 16:00 +12037042,FBI Statement on Clinton Email System,https://www.fbi.gov/news/pressrel/press-releases/statement-by-fbi-director-james-b.-comey-on-the-investigation-of-secretary-hillary-clintons-use-of-a-personal-e-mail-system,197,174,whatok,7/5/2016 15:24 +11357495,Computer programmers have the largest gender pay gap,http://blogs.wsj.com/digits/2016/03/24/mind-the-gender-pay-gap-female-computer-programmers-earn-72-cents-on-the-dollar-study-says/,13,7,zorpner,3/24/2016 23:54 +11132291,JavaScript is immature compared to Java,http://www.codenameone.com/blog/javascript-get-threaded.html,2,2,bioed,2/19/2016 8:07 +12570055,Ask HN: Why do we put up with such restrictive IP contracts?,,2,1,Mandatum,9/24/2016 8:28 +12050895,"Reddit now tracks all outbound link clicks by default, existing users opted in",https://np.reddit.com/r/changelog/comments/4rl5to/outbound_clicks_rollout_complete/,218,197,fooey,7/7/2016 17:41 +12343475,Ask HN: What are the selling points of .NET?,,16,26,brightball,8/23/2016 13:23 +11195062,[video] Boston Dynamics Atlas robot video commented by selected tweets,http://www.subtubing.com/play/rVlhMGQgDkY/,1,1,pklien,2/29/2016 12:34 +10378799,'Too hot to be an engineer' women mark Ada Lovelace Day,http://www.bbc.com/news/technology-34359936,15,21,yitchelle,10/13/2015 6:16 +11016293,Learning to Love Brutalist Architecture,http://www.telegraph.co.uk/art/artists/why-we-must-learn-to-love-brutalist-architecture/,42,47,Thevet,2/1/2016 22:54 +10718332,"*-Oriented Programming, with Graham Lee",https://realm.io/news/pragma-graham-lee-oriented-programming-paradigms/,4,1,astigsen,12/11/2015 17:21 +10354224,Q&A with Sam Altman,http://www.technologyreview.com/news/542206/startup-incubator-y-combinator-opens-research-lab-to-tackle-big-problems/,2,1,zabramow,10/8/2015 17:19 +12432578,Revolt against 'rich parasites' at Burning Man Festival,http://www.telegraph.co.uk/news/2016/09/04/revolution-against-rich-parasites-at-utopian-burning-man-festiva/,47,41,icomefromreddit,9/5/2016 22:29 +11673191,Spark Innovation Through Empathic Design,https://hbr.org/1997/11/spark-innovation-through-empathic-design,1,1,seanieb,5/11/2016 7:14 +12556680,China develops a quantum radar with 100 km range to bypass stealth measures,http://tech.firstpost.com/news-analysis/china-develops-quantum-radar-with-100-km-range-to-bypass-stealth-measures-334377.html,19,2,Osiris30,9/22/2016 13:33 +10344348,"U.S. To Release 6,000 Inmates from Prisons",http://www.nytimes.com/2015/10/07/us/us-to-release-6000-inmates-under-new-sentencing-guidelines.html,32,25,wanderingstan,10/7/2015 5:40 +10881579,Meet Connexion: Zalando's Open-Source REST Framework for Python,https://tech.zalando.com/blog/meet-connexion-our-rest-framework-for-python/,7,1,ZalandoTech,1/11/2016 16:59 +11223645,When I Was Your Age,https://www.americanprogress.org/issues/economy/report/2016/03/03/131627/when-i-was-your-age/,91,134,aburan28,3/4/2016 13:50 +10517175,"Why Childcare Workers Are So Poor, Even Though Childcare Costs So Much",http://www.theatlantic.com/business/archive/2015/11/childcare-workers-cant-afford-childcare/414496/?single_page=true,124,231,nols,11/6/2015 0:42 +11519056,"People aged over 40 perform best with a three-day working week, study finds",http://www.independent.co.uk/news/uk/home-news/workers-over-40-perform-best-with-three-day-week-25-hours-melbourne-institute-study-a6988921.html,2,1,edward,4/18/2016 11:31 +10791295,Devstash.io Hacker News alternative focused on computer science,https://devstash.io/,112,28,javinpaul,12/25/2015 14:25 +10234208,How to Turn Down Freelance Work Gracefully,http://www.christopherhawkins.com/2015/09/how-to-turn-down-freelance-work-gracefully/,56,40,coreymaass,9/17/2015 16:14 +12049511,Ask HN: What should we do,,8,11,warewolf,7/7/2016 14:27 +12575147,Self-driving trucks threaten one of America's top blue-collar jobs,http://www.latimes.com/business/la-fi-automated-trucks-labor-20160924-snap-story.html,82,121,blondie9x,9/25/2016 13:09 +11272345,Ask HN: What hosting provider do you use?,,1,3,eecks,3/12/2016 11:04 +10836236,Angular 2 versus React,https://medium.com/@housecor/angular-2-versus-react-there-will-be-blood-66595faafd51,424,241,ihsw,1/4/2016 15:54 +12531273,Hardware hack defeats iPhone 5C passcode security,http://www.bbc.com/news/technology-37407047,121,30,ZeljkoS,9/19/2016 13:33 +12266873,Keras: Deep Learning Library for Theano and TensorFlow,https://github.com/fchollet/keras,3,1,trymas,8/11/2016 8:27 +12180371,"The 7 biggest problems facing science, according to 270 scientists",http://www.vox.com/2016/7/14/12016710/science-challeges-research-funding-peer-review-process?linkId=27003386,3,2,ohjeez,7/28/2016 14:24 +11296952,"Deep or Shallow, NLP is breaking out",http://cacm.acm.org/magazines/2016/3/198856-deep-or-shallow-nlp-is-breaking-out/fulltext,107,67,samiur1204,3/16/2016 13:10 +11717561,Stanza: A New Optionally-Typed General Purpose Language from UC Berkeley,,117,66,patricksli,5/17/2016 21:22 +11860083,"Into the Ether: Walkthrough, Gotchas, and Tips for Ethereum Development",https://omarmetwally.wordpress.com/2016/06/08/into-the-ether-walkthrough-gotchas-and-tips-for-ethereum-development/,2,1,osmode,6/8/2016 4:46 +11214292,Little Graves in Georgia,http://www.oxfordamerican.org/magazine/item/717-little-graves-in-georgia,7,1,samclemens,3/3/2016 0:48 +10306347,Startup Advice Tweets,https://www.hashfav.com/collection/Ronak/1027,2,1,hashfav,9/30/2015 19:14 +12546317,Ask HN: Do I do my masters in CS if it means staying an extra semester?,,3,2,dudeget,9/21/2016 8:16 +12343215,A city with an $8.96B budget should be able to,http://www.sfchronicle.com/bayarea/article/A-city-with-an-8-96-billion-budget-should-be-6311442.php,3,1,duck,8/23/2016 12:44 +11233784,Saving 500 Apple II Programs from Oblivion,http://blog.archive.org/2016/03/04/saving-500-apple-ii-programs-from-oblivion/,48,6,pathompong,3/6/2016 14:00 +10555201,An Oddball in YouTube's World,http://priceonomics.com/an-oddball-in-youtubes-world/,10,1,ryan_j_naughton,11/12/2015 18:43 +12098991,Artificial Neural Network Writes Harry Potter and the Methods of Rationality,https://medium.com/@rayalez/artificial-neural-network-writes-harry-potter-and-the-methods-of-rationality-846126dbe882#.8pa6qxhqi,1,1,rayalez,7/15/2016 4:49 +11529062,Youre Moving Abroad If So-And-So Gets Elected? Good Luck,https://psmag.com/oh-you-re-moving-abroad-if-so-and-so-gets-elected-good-luck-4fa319a55be9,9,2,tokenadult,4/19/2016 18:31 +11384519,How ISIS Built the Machinery of Terror Under Europes Gaze,http://www.nytimes.com/2016/03/29/world/europe/isis-attacks-paris-brussels.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=photo-spot-region®ion=top-news&WT.nav=top-news,3,1,Futurebot,3/29/2016 20:17 +11406899,Thesis Hatement: Getting a literature Ph.D (2013),http://www.slate.com/articles/life/culturebox/2013/04/there_are_no_academic_jobs_and_getting_a_ph_d_will_make_you_into_a_horrible.html,50,58,jseliger,4/1/2016 17:51 +12140446,Drowning in a sea of bricks: Why NBA bigs struggle at the line,http://www.espn.com.au/nba/story/_/id/17115866/real-root-nba-intentional-foul-epidemic,2,1,qzervaas,7/21/2016 22:10 +10780112,Sheryl Sandberg is Wrong: Silicon Valley Wants MBAs,http://tapwage.com/cheatsheets/2015/12/21/is-sheryl-sandberg-right-on-the-limited-value-of-an-mba-in-tech,10,5,esparantogod,12/22/2015 20:17 +11030097,"People are not resources and they don't perform, they do",https://medium.com/@diabulos/people-are-not-resources-and-they-don-t-perform-they-do-bd2118d70baf,3,3,c-rack,2/3/2016 21:55 +10709824,Bionic Lens: This 8-Minute Surgery Will Give You Superhuman Vision,http://www.viralalternativenews.com/2015/12/meet-bionic-lens-this-8-minute-surgery.html?m=1,2,1,mengjiang,12/10/2015 10:01 +10492282,Linus Torvalds fires off angry 'compiler-masturbation' rant,http://www.theregister.co.uk/2015/11/01/linus_torvalds_fires_off_angry_compilermasturbation_rant/,26,23,amlgsmsn,11/2/2015 15:29 +11505454,The Restart Page: rebooting experience from vintage operating systems,http://www.therestartpage.com/#,104,16,ohjeez,4/15/2016 16:16 +10518475,Top FinTech Startups,https://medium.com/p/top-10-fintech-startups-d8bb9bc427a7?utm_source=news&utm_medium=post&utm_campaign=top10,2,2,fin_jane,11/6/2015 9:13 +10283951,Lily Camera Uses Computer Vision for Autonomous Flying,http://www.digitaltrends.com/cool-tech/lily-camera-personal-cameraman/,7,4,earlyadapter,9/26/2015 18:27 +11532249,Has the ISS captured footage of a UFO? Nasa live feed films,http://www.dailymail.co.uk/news/article-3547293/Has-ISS-captured-footage-UFO-Nasa-live-feed-films-horseshoe-shaped-object-Earth-mysteriously-cutting-out.html,4,1,Firsto,4/20/2016 4:27 +10665362,Show HN: WebGL Cube Snake Game - plays itself using Dijkstra's algorithm,http://mhluska.com/projects/snakeception/,6,2,mhluska,12/2/2015 19:52 +12544320,MacOS Sierra,https://itunes.apple.com/us/app/macos-sierra/id1127487414,14,16,fahimulhaq,9/20/2016 23:46 +10219215,A United States of Europe? Good Luck,http://www.bloombergview.com/articles/2015-09-15/unpopular-rush-to-build-a-united-states-of-europe,22,88,akg_67,9/15/2015 6:14 +11333203,One-character domains available at Namecheap,https://blog.namecheap.com/40-one-letter-domains-available-for-under-600/,5,3,ted0,3/21/2016 23:45 +11492138,Greater Cholesterol lowering increases the risk of death,https://drmalcolmkendrick.org/2016/04/13/greater-cholesterol-lowering-increases-the-risk-of-death/,3,1,diakritikal,4/13/2016 20:57 +11780732,CloudFlare Retired the $5 Plan,https://www.cloudflare.com/plans/,2,3,nikolay,5/26/2016 19:20 +10541807,"Yahoo Hires McKinsey to Mull Reorg, as Mayer Demands Exec Pledge to Stay",http://recode.net/2015/11/09/yahoo-hires-mckinsey-to-mull-reorg-as-mayer-demands-exec-pledge-to-stay/,2,1,mdariani,11/10/2015 19:37 +10984731,California Police Used Stingrays in Planes to Spy on Phones,http://www.wired.com/2016/01/california-police-used-stingrays-in-planes-to-spy-on-phones/,185,72,corywatilo,1/28/2016 0:16 +11182362,Using Vim as a JavaScript IDE,http://www.dotnetsurfers.com/blog/2016/02/08/using-vim-as-a-javascript-ide/,2,1,ausjke,2/26/2016 16:47 +10288343,Inside the GitHub Systems Where Open Source Lives,http://www.theplatform.net/2015/09/24/inside-the-github-systems-where-open-source-lives/,9,2,WaltPurvis,9/27/2015 23:57 +10293690,Tech companies or banks?,,2,3,boxeswithfoxes,9/28/2015 22:43 +11152270,Follow hashtags,,2,3,boriszion,2/22/2016 17:00 +10272483,Glowforge launches consumer-grade laser cutter,http://glowforge.com,493,205,mlmilleratmit,9/24/2015 16:18 +12117749,Five Years of Recurse Center,https://www.recurse.com/five-years,169,69,sotojuan,7/18/2016 20:07 +12225492,Tatoo puzzle,https://aphyr.com/posts/335-tattoo,2,1,anders098,8/4/2016 13:57 +11438473,Forward Secrecy for Asynchronous Messages,https://whispersystems.org/blog/asynchronous-security/,3,1,sgarbi,4/6/2016 13:06 +11254945,Train your own image classifier with Inception in TensorFlow,http://googleresearch.blogspot.com/2016/03/train-your-own-image-classifier-with.html?m=1,121,7,rey12rey,3/9/2016 19:00 +10237805,Microsoft has developed its own Linux: in-house software-defined networking OS,http://www.theregister.co.uk/2015/09/18/microsoft_has_developed_its_own_linux_repeat_microsoft_has_developed_its_own_linux,200,186,Jerry2,9/18/2015 6:44 +11596582,Ask HN: What are your thoughts on UnaOS/UnaPhone?,https://unaos.com/,1,1,enig_matic7,4/29/2016 16:03 +10697435,How Microsoft Created a Revolution in Soviet Computing,http://www.atlasobscura.com/articles/how-microsoft-created-a-revolution-in-soviet-computing,50,15,lermontov,12/8/2015 16:37 +11621169,"Ask: The Apple bluetooth keyboard hurts my hands, does this affect anyone else?",,1,1,fulldecent,5/3/2016 14:51 +11801340,GitHub Corners,http://tholman.com/github-corners/,7,1,tilt,5/30/2016 13:54 +10639402,Building for HTTP/2,http://rmurphey.com/blog/2015/11/25/building-for-http2,71,12,saidajigumi,11/27/2015 23:49 +10569113,The Problem with Putting All the World's Code in GitHub,http://www.wired.com/2015/06/problem-putting-worlds-code-github/,5,3,jimsojim,11/15/2015 9:52 +12062116,Coursera courses preserved by Archive Team,https://archive.org/details/archiveteam_coursera,513,75,mihaitodor,7/9/2016 16:46 +12194050,Hacker Phineas Fisher Speaks on Camera for the First TimeThrough a Puppet,http://motherboard.vice.com/read/hacker-phineas-fisher-hacking-team-puppet,2,1,miraj,7/30/2016 18:20 +11541368,The burgeoning evolution of eSports: From the fringes to front and center [pdf],http://www.pwc.com/us/en/industry/entertainment-media/assets/pwc_consumer-intelligence-series_esports_april-2016.pdf,2,1,vvvv,4/21/2016 12:04 +10538489,"A decade into a project to digitize U.S. immigration forms, just one is online",https://www.washingtonpost.com/politics/a-decade-into-a-project-to-digitize-us-immigration-forms-just-1-is-online/2015/11/08/f63360fc-830e-11e5-a7ca-6ab6ec20f839_story.html,185,95,yanilkr,11/10/2015 10:14 +12240209,Binary Ninja A new kind of reversing platform,http://binary.ninja,109,56,Philipp__,8/6/2016 22:37 +10726445,Global namespaced to Common JS Modules in JavaScript with babel,https://www.npmjs.com/package/babel-plugin-modularize,3,1,pasindur,12/13/2015 14:43 +10964916,Ask HN: What OS X software / tweaks / tricks can you not live without?,,3,4,netcraft,1/25/2016 0:56 +10397199,Ask HN: What are annoying software processes that should be automated?,,4,5,hellomynameise,10/16/2015 2:49 +10568502,Tinder Leaked Everyone's School/Work Info. Called It a Feature,http://blog.gotinder.com/,3,3,dec0dedab0de,11/15/2015 4:32 +10306562,How I learned to write Chrome Extension in 5 hours using the Bruce Lee technique,https://medium.com/@punksomething/how-i-learned-to-write-a-chrome-extension-in-5-hours-by-using-the-bruce-lee-technique-c72911ac7d86,9,1,jaxondu,9/30/2015 19:41 +10424527,Cell (microprocessor),https://en.wikipedia.org/wiki/Cell_(microprocessor),40,24,dmmalam,10/21/2015 10:10 +10789349,"Misleading charts of 2015, fixed",http://qz.com/580859/the-most-misleading-charts-of-2015-fixed/,79,21,mikek,12/24/2015 19:37 +10621494,"Software Freedom Conservancy asking for supporters to join, save GPL enforcement",https://sfconservancy.org/news/2015/nov/23/2015fundraiser/,6,1,paroneayea,11/24/2015 16:08 +10338141,Could Open Source have prevented the Volkswagen scandal?,http://www.xwiki.com/en/Blog/volkswagen-scandal,4,2,cluong,10/6/2015 11:40 +12441795,Google Begins Using New Undersea Cable Across Asia,http://www.circleid.com/posts/20160906_google_begins_using_new_undersea_cable_across_asia/,1,1,okket,9/7/2016 9:11 +10524371,How Eye Tracking Will Change Gaming,https://medium.com/@TobiiEyeX/how-eye-tracking-will-totally-change-the-way-you-game-193126bbbba4,51,25,johntans,11/7/2015 10:27 +12261208,The bandwidth bottleneck that is throttling the Internet,http://www.nature.com/news/the-bandwidth-bottleneck-that-is-throttling-the-internet-1.20392,60,53,okket,8/10/2016 12:43 +11486944,Could British invention foil terror bombs?,http://www.bbc.co.uk/news/uk-36014666,21,58,merah,4/13/2016 10:03 +11195467,The ABC Programming Language: A Short Introduction,http://homepages.cwi.nl/~steven/abc/,2,1,vmorgulis,2/29/2016 14:05 +11279903,Should All Research Papers Be Free?,http://www.nytimes.com/2016/03/13/opinion/sunday/should-all-research-papers-be-free.html,644,309,mirimir,3/13/2016 23:15 +12231818,Find a new city,http://austinkleon.com/2016/08/03/find-a-new-city/,233,187,mantesso,8/5/2016 12:45 +10303323,"Why I'm not going to Web Summit in Dublin, Lisbon or anywhere else",http://tech.eu/features/6203/no-web-summit-for-me/,13,1,robinwauters,9/30/2015 12:16 +10568657,Virtual desktops for Windows,https://technet.microsoft.com/en-us/sysinternals/cc817881,2,2,imakesnowflakes,11/15/2015 5:54 +11828838,Chinese hacked CNN (sportsillustrated.cnn.com),http://sportsillustrated.cnn.com/,9,7,zelcon,6/3/2016 7:15 +12472214,Stripe Atlas is not for everyone. Caveats based on my experience.,https://medium.com/@cbkrish/stripe-atlas-is-not-for-everyone-caveats-based-on-my-experience-2735a226df8a?source=linkShare-74c1c17cc6f2-1473574176,18,2,hai2ashwin,9/11/2016 6:11 +11294118,Person of Interest: The TV Show That Predicted Edward Snowden (2014),http://www.newyorker.com/culture/culture-desk/person-of-interest-the-tv-show-that-predicted-edward-snowden,93,35,Deinos,3/16/2016 0:31 +11699784,\/\The Conscience of a Hacker/\/,http://phrack.org/issues/7/3.html,3,1,astdb,5/15/2016 6:38 +12301531,"After Lawsuit, New Jersey Allows Driver to Get 8THEIST License Plate",http://www.nytimes.com/2016/08/17/nyregion/after-lawsuit-new-jersey-allows-driver-to-get-8theist-license-plate.html?_r=0,33,15,ranit,8/16/2016 23:51 +10889446,What Sean Penn Teaches Us About How Not to Chat with a Fugitive,https://theintercept.com/2016/01/12/sean-penn-el-chapo-opsec/,10,1,deegles,1/12/2016 18:48 +10574394,Modern MVP infographics (explanation),,1,1,ealtynpara,11/16/2015 13:56 +10542365,Ask HN: Stay or leave,,1,3,dariot,11/10/2015 20:48 +12323928,Facebooks new teens-only app Lifestage turns bios into video profiles,https://techcrunch.com/2016/08/19/facebook-lifestage/,8,4,jamesjyu,8/19/2016 22:20 +10751757,PHP 7.0.1 Released,http://php.net/index.php#id2015-12-17-1,4,2,julien_c,12/17/2015 14:53 +11905017,"Apple Should Renew Focus on Mac Users, Pros",http://blog.macsales.com/36741-apple-should-renew-focus-on-mac-users-pros,2,1,ingve,6/14/2016 20:20 +11287171,Turing created computers to decypher German U-boat codes. Why deny encryption?,,3,3,studentrob,3/15/2016 3:01 +12424742,Was Thomas Kuhn Right about Anything?,https://themultidisciplinarian.com/2016/09/03/was-thomas-kuhn-right-about-anything/,2,2,another,9/4/2016 15:15 +10475536,European Parliament Urges Protection for Edward Snowden,http://www.nytimes.com/2015/10/30/world/europe/edward-snowden-nsa-whistleblower.html?_r=0,9,1,rickdale,10/30/2015 0:54 +10686201,Why Great Britain Residents Live Where They Do,http://www.citylab.com/housing/2015/11/why-people-live-where-they-do/414873/?utm_source=SFTwitter,23,29,ingve,12/6/2015 19:17 +10689778,Show HN: FIND an indoor positioning system for smartphones and laptops,https://github.com/schollz/find,4,3,qrv3w,12/7/2015 14:50 +10225545,Brazils cancer curse,http://mosaicscience.com/story/brazils-cancer-curse,69,29,tomkwok,9/16/2015 9:42 +10819890,Obama administration moves to give work permits to 100k foreign college grads,http://www.dailymail.co.uk/news/article-3380380/Obama-administration-quietly-moves-work-permits-estimated-100-000-foreign-college-grads.html,44,18,jquery,12/31/2015 21:50 +10384010,Show HN: Winston iOS Productivity Keyboard,https://itunes.apple.com/us/app/winston-productivity-keyboard/id1006278205?mt=8,11,9,teer,10/13/2015 22:50 +12340901,"Vinci like Prisma app, but faster",http://vinci.camera/,1,2,n3tn0de,8/23/2016 2:12 +11578465,Find Twitter user by email or phone number,https://medium.com/@bk/find-twitter-account-by-email-or-phone-number-fb0b9291f048#.ig7qi6ywj,2,1,bthn,4/27/2016 7:31 +11362588,Ask HN: Will there be native web assembly Mobile APIs?,,1,2,tanlermin,3/25/2016 20:50 +11211317,Custom Elements Coming to WebKit,https://lists.webkit.org/pipermail/webkit-dev/2016-March/027995.html,42,18,spankalee,3/2/2016 17:18 +10290804,EPA opposed DMCA exemptions that could have revealed Volkswagen fraud,http://www.fsf.org/blogs/licensing/epa-opposed-dmca-exemptions-that-could-have-revealed-volkswagen-fraud,154,24,tjr,9/28/2015 15:03 +12271030,"George Orwell, Politics and the English Language (1946)",https://www.mtholyoke.edu/acad/intrel/orwell46.htm,301,150,Tomte,8/11/2016 19:36 +12494744,Chevy Bolt Challenges Tesla Model 3,http://www.businessinsider.com/chevy-bolt-range-versus-tesla-model-3-range-2016-9,1,1,Corrado,9/14/2016 7:11 +10931131,Ask HN: Best way to stay organized as a data analyst?,,6,8,elsherbini,1/19/2016 14:59 +12185635,Linux: Controlling access to the memory cache,https://lwn.net/Articles/694800/,86,16,signa11,7/29/2016 8:43 +12535526,Ceph Rust Plugin,https://github.com/cholcombe973/ceph-plugin,2,1,xfactor973,9/19/2016 23:06 +10522327,What makes a leader? Clues from the animal kingdom,http://www.eurekalert.org/pub_releases/2015-11/cp-wma102915.php,10,3,DrScump,11/6/2015 21:55 +10951431,Open Location Code,http://openlocationcode.com/,29,5,coolvoltage,1/22/2016 8:10 +11251995,Web sauce: A chrome extension for adding custom CSS and JS,https://chrome.google.com/webstore/detail/web-sauce/iacoggchaaaanpjfhagogdknegeadbnp,1,4,sslnx,3/9/2016 10:01 +11385854,Spotify raises $1B in debt with devilish terms to fight Apple Music,http://techcrunch.com/2016/03/29/stream-with-the-devil/,292,226,rezist808,3/29/2016 23:36 +11087582,Amazon AWS Zombie Apocalypse Clause (57.10),https://aws.amazon.com/service-terms#57.10,2,3,reimertz,2/12/2016 14:58 +10870854,Ask HN: Why the big increase in HN visits in August?,,2,1,trahn,1/9/2016 11:13 +10964103,"One year after Boxs IPO, is the party over?",http://venturebeat.com/2016/01/23/one-year-after-boxs-ipo-is-the-party-over/,19,3,cgoodmac,1/24/2016 21:29 +10618001,DoorDash is looking for fresh funding at a $1B valuation,http://www.businessinsider.com/report-doordash-raising-a-round-at-unicorn-valuation-2015-11,2,3,jasondc,11/23/2015 23:05 +11429846,The Spectre 13 is HP's attempt to out-design Apple,http://www.theverge.com/2016/4/5/11365474/hp-spectre-13-announced-price-specs-release-date,4,2,davidiach,4/5/2016 12:36 +10801337,Show HN: Mailer our in-house tool for sending email from the command line,https://www.dirwiz.com/news/284,21,24,dirwiz,12/28/2015 14:57 +10696058,How to Create a Unique Constraint on a LoopBack Model with a NoSQL Database,https://wiredcraft.com/blog/unique-constraint-loopback-nosql/,4,1,katier,12/8/2015 13:02 +10284056,"Flask-Potion: REST framework for Flask, now supports Peewee",https://github.com/biosustain/potion,32,9,kolanos,9/26/2015 18:57 +10329645,The world's most multilingual cities,http://www.bbc.com/travel/story/20150928-living-in-the-most-multilingual-cities,7,1,hvo,10/5/2015 2:18 +10474915,The Hacker News effect on a project GitHub stars,http://i.imgur.com/B5awmAL.png,4,1,doener,10/29/2015 22:41 +11821479,"Ask HN: Idea for yet another dating app but this one is well, out there",,3,2,andrewfromx,6/2/2016 10:34 +12344030,"Inessential: Last Vesper Update, Sync Shutting Down",http://inessential.com/2016/08/21/last_vesper_update_sync_shutting_down,10,5,protomyth,8/23/2016 14:35 +10798433,2015 is the year that Tumblr became the front page of the Internet,https://www.washingtonpost.com/news/the-intersect/wp/2015/03/11/move-over-reddit-tumblr-is-the-new-front-page-of-the-internet/,3,1,e15ctr0n,12/27/2015 19:30 +11449314,Why an F1 car is more energy efficient than an electric car,http://www.espn.co.uk/f1/story/_/id/15152695/how-f1-car-more-energy-efficient-latest-tesla,3,1,hordeallergy,4/7/2016 18:12 +11006797,Show HN: Skadi self-hosted Trello alternative with a 10 second installation,https://getskadi.com,104,56,medvednikov,1/31/2016 16:15 +12125897,"Show HN: Archie Botwick, WWI Veteran Facebook Chatbot that uses NLP",http://m.me/anzaclivearchie,6,3,shnere,7/20/2016 0:06 +12383379,Ask HN: Is anyone using splunk as graphite/statsd replacement?,,2,1,dcudjejxice,8/29/2016 17:16 +12565380,Palmer Luckey is funding Donald Trump's internet trolls with his Oculus money,http://www.theverge.com/2016/9/23/13025422/palmer-luckey-oculus-founder-funding-donald-trump-trolls,41,24,dzlobin,9/23/2016 15:35 +10412465,Hacker News as a case study to test the wisdom of the crowd theory,https://venngage.com/blog/why-you-need-to-stop-obsessing-over-comments-on-hacker-news/,140,112,snake_case,10/19/2015 12:40 +12380249,Facebook Image Identification Software Is Now Available to the Public,http://www.digitalrev.com/article/facebook-makes-image-identification-software-available-to-the-public,2,1,angeladur,8/29/2016 5:50 +10383976,Simple Sequential A/B Testing,http://www.evanmiller.org/sequential-ab-testing.html,59,9,revorad,10/13/2015 22:42 +11507496,Two-factor authentication for Apple ID,https://support.apple.com/en-us/HT204915,170,84,stephenr,4/15/2016 20:44 +10424696,Back to the Future Day,https://en.wikipedia.org/wiki/Back_to_the_Future_Part_II#Back_to_the_Future_Day,6,1,tomaac,10/21/2015 11:12 +12390400,Paid $75k to Love a Brand on Instagram Is It an Ad?,http://www.nytimes.com/2016/08/30/business/media/instagram-ads-marketing-kardashian.html,160,152,mantesso,8/30/2016 14:22 +11194015,Scientists successfully test biological supercomputer performing complex tasks,https://www.rt.com/news/333912-biocomputers-perform-complex-calculations/,70,26,jonbaer,2/29/2016 7:05 +10420901,Do the economics of self-driving taxis make sense?,http://ftalphaville.ft.com/2015/10/20/2142450/do-the-economics-of-self-driving-taxis-actually-make-sense/,37,56,joosters,10/20/2015 18:36 +11034524,"Britain to Foreign Workers: If You Don't Make $50,000 a Year, Please Leave",http://www.npr.org/sections/parallels/2016/02/03/465407797/britain-to-foreign-workers-if-you-dont-make-50-000-a-year-please-leave,79,103,wbsun,2/4/2016 15:31 +12535010,Ask HN: How is the Udacity's Nanodegree Plus worth it?,,10,3,jklein11,9/19/2016 21:42 +10942054,It All Changes When the Founder Drives a Porsche,https://medium.com/@micah/it-all-changes-when-the-founder-drives-a-porsche-32ac25c713ad#.5pq5bpx0y,3,1,fmsf,1/20/2016 22:58 +11257595,Play NES games in 3D in Firefox,http://tructv.bitbucket.org/3dnes/,3,1,rishabhd,3/10/2016 6:08 +11060636,Show HN: Lanes a minimalist week-planner and Pomodoro timer,https://lanes.io,65,32,welanes,2/8/2016 20:23 +11327276,Microsoft: Skimpy schoolgirls dancing for nerds at an Xbox party,http://www.theregister.co.uk/2016/03/18/microsoft_gdc_sexy_schoolgirl_dancers/,38,62,aceperry,3/21/2016 11:06 +10523581,Grand Plans: Le Corbusier in the USSR,http://calvertjournal.com/articles/show/4868/le-corbusier-in-ussr-corbu-moscow-tsentrosoyuz,42,33,lermontov,11/7/2015 3:44 +10655847,The New York Times Adds Mx. to the Honorific Mix,http://observer.com/2015/11/the-new-york-times-adds-mx-to-the-honorific-mix/,6,5,ohjeez,12/1/2015 15:11 +11143716,Number of species on Earth estimated at 8.7M (2011),http://www.nature.com/news/2011/110823/full/news.2011.498.html,43,14,lifeisstillgood,2/21/2016 7:48 +11181100,Migrating from Mandrill to Mailgun,http://blog.mailgun.com/migrating-from-mandrill-to-mailgun/,4,1,steve_taylor,2/26/2016 12:53 +10221851,The Best Algorithms of the 20th Century [pdf],https://www.siam.org/pdf/news/637.pdf,62,18,tizzdogg,9/15/2015 17:22 +12421328,GoDaddy has acquired ManageWP,https://poststatus.com/godaddy-managewp/,13,2,AndyBaker,9/3/2016 21:36 +11902174,Reducing latency spikes by tuning the CPU scheduler,http://www.scylladb.com/2016/06/10/read-latency-and-scylla-jmx-process/,12,1,dorlaor,6/14/2016 14:23 +11448582,Elixir with Ubuntu on Windows,http://blog.greenarrow.me/elixir-with-ubuntu-for-windows/,2,1,mmcclure,4/7/2016 16:34 +10569618,Show HN: ClojureScript REPL within Excel,https://github.com/cfelde/cljs4excel,83,10,theocs,11/15/2015 13:59 +12047245,Organizing programs without classes (1991) [pdf],http://cs.au.dk/~hosc/local/LaSC-4-3-pp223-242.pdf,41,9,adamnemecek,7/7/2016 2:57 +11639154,Multimodal routing with open source transit and map data,https://mapzen.com/projects/turn-by-turn/?d=0&lat=40.7259&lng=-73.9805&z=12&c=multimodal&st_lat=37.80693585437371&st_lng=-122.40692138671874&st=2%20Bay%20Street%2C%20San%20Francisco%2C%20CA%2C%20USA&end_lat=37.74927215926059&end_lng=-122.42700576782227&end=1351%20Church%20Street%2C%20San%20Francisco%2C%20CA%2C%20USA&use_bus=0.5&use_rail=0.6&use_transfers=0.4&dt=2016-05-10T08%3A00&dt_type=1,2,1,glennon,5/5/2016 19:46 +12237299,I implemented fast parallel reduction on the GPU with WebGL,https://mikolalysenko.github.io/regl/www/gallery/reduction.js.html,3,1,erkaman,8/6/2016 6:30 +12026830,He Was a Hacker for the NSA and He Was Willing to Talk. I Was Willing to Listen,https://theintercept.com/2016/06/28/he-was-a-hacker-for-the-nsa-and-he-was-willing-to-talk-i-was-willing-to-listen/,189,40,prostoalex,7/3/2016 17:31 +11740611,Rentberry Transparent Rental Application Platform,,2,1,Rentberry,5/20/2016 19:13 +12142770,Spawn your shell like it's the 90s again,http://akat1.pl/?id=2,141,43,mulander,7/22/2016 10:41 +10361674,How WeWork Convinced Investors Its Worth Billions,http://www.buzzfeed.com/nitashatiku/how-wework-convinced-investors-its-worth-billions?utm_term=.we8m4OPMKX#.lyEKdkWyjo,36,6,coloneltcb,10/9/2015 17:18 +10432530,Biomedical superstars are signing on with Google,http://www.nature.com/news/why-biomedical-superstars-are-signing-on-with-google-1.18600,70,51,adenadel,10/22/2015 14:47 +10609456,"Sleeping in Is Slowly Killing You, Study Finds",http://motherboard.vice.com/read/sleeping-in-is-slowly-killing-you-study-finds,6,3,aceperry,11/22/2015 8:27 +11569348,Using DNSSEC and DNSCrypt in Debian,http://feeding.cloud.geek.nz/posts/using-dnssec-and-dnscrypt-in-debian/,27,15,ashitlerferad,4/26/2016 4:05 +10614602,Show HN: Mini GaussSense New Toy for Hacking Toys,http://gausstoys.com/?ref=hn,30,6,andikan,11/23/2015 14:03 +10567683,Show HN: Cubebrush.co New Marketplace for Artists,https://cubebrush.co/,3,1,cubebrush,11/14/2015 23:07 +10217109,Newly Risen from Yeast: THC,http://www.nytimes.com/2015/09/15/science/newly-risen-from-yeast-thc.html,62,59,Hooke,9/14/2015 19:55 +12278566,Show HN: Hacker Hall - Virtual Coworking,https://complice.co/room/hackers,147,29,malcolmocean,8/12/2016 20:29 +12379422,Why Electric Cars Will Be Here Sooner Than You Think,http://www.wsj.com/articles/why-electric-cars-will-be-here-sooner-than-you-think-1472402674,82,156,jseliger,8/29/2016 1:23 +11999290,"Youre as foreign as us, Uber tells Ola after xenophobic attack in court",https://www.techinasia.com/uber-slams-ola-after-xenophobic-attack-in-court,3,1,vmalu,6/29/2016 3:23 +11961087,Those return values though,https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/canPlayType,9,1,lindstorm,6/23/2016 14:26 +10680645,"Ask HN: Has our startup failed, and what now?",,3,2,selbyk,12/5/2015 3:16 +10409267,Mapping the Living Wage Gap,http://www.datainnovation.org/2015/10/mapping-the-living-wage-gap/,24,18,new_josh,10/18/2015 18:52 +11202300,Airbnb and Uber are the next frontier in the struggle between capital and labor,http://qz.com/625360/what-uber-and-airbnb-might-mean-for-income-inequality-in-the-us/,1,1,prostoalex,3/1/2016 13:04 +10568525,Opposition to Facebook's new internet.org,https://www.techinasia.com/talk/facebooks-internetorg-evil/,280,136,williswee,11/15/2015 4:41 +12022319,Mubert. World's first online composer of electronic music,http://play.mubert.com,2,1,fabrika,7/2/2016 13:03 +10962606,Why books have a zillion errors,http://barbarienne.livejournal.com/483230.html,2,1,yarapavan,1/24/2016 14:41 +11892477,Implementing a Markdown Engine for .NET,http://xoofx.com/blog/2016/06/13/implementing-a-markdown-processor-for-dotnet/,5,1,matthewwarren,6/13/2016 8:58 +12400890,"Researchers orbit a muon around an atom, confirm physics is broken",http://arstechnica.com/science/2016/08/researchers-orbit-a-muon-around-an-atom-confirm-physics-is-broken/,25,3,cronjobber,8/31/2016 19:39 +12002482,"Evernote limits free tier to two devices, raises prices 40%",http://arstechnica.com/gadgets/2016/06/evernote-limits-free-tier-to-two-devices-raises-prices-40/,13,1,kcorbitt,6/29/2016 15:54 +10612811,Approach to detect if end user press F5 or refresh button,,1,6,cswangpeng,11/23/2015 4:06 +10686921,Cultured meat from stem cells: Challenges and prospects (2012) [pdf],http://new-harvest.org/wp-content/uploads/2013/03/post_2012_cultured_meat_from_stem_cells_challenges_and_prospects.pdf,28,1,networked,12/6/2015 22:19 +11276221,"How FPGAs work, and why you'll buy one (2013)",https://www.embeddedrelated.com/showarticle/195.php?1,79,32,PascLeRasc,3/13/2016 4:33 +10385900,"Nora, the Smart Snoring Solution",https://www.kickstarter.com/projects/behrouz/nora-the-smart-snoring-solution,4,1,arash_milani,10/14/2015 10:44 +11751789,Bivvy,https://www.bivvyapp.com,2,1,erickflorezny,5/23/2016 4:04 +11627901,"ROI on a college degree depends what you study, not where",http://www.economist.com/news/united-states/21646220-it-depends-what-you-study-not-where?%3Ffsrc%3Dscn%2F=tw%2Fdc,99,186,Osiris30,5/4/2016 12:45 +11691479,"Ask HN: Will e-ink laptops be a thing soon, or ever?",,20,25,Kluny,5/13/2016 16:49 +11569533,"College Sex-Assault Trials Belong in Court, Not Campus (2014)",http://chronicle.com/article/College-Sex-Assault-Trials/150805,221,218,jseliger,4/26/2016 4:50 +12299249,The French sci-fi comic that inspired Blade Runner and Akira,http://www.dazeddigital.com/artsandculture/article/32448/1/the-french-sci-fi-comic-that-inspired-blade-runner-and-akira,11,6,evo_9,8/16/2016 18:01 +10791151,Kim Dotcom Christmas address,https://torrentfreak.com/kim-dotcom-challenges-u-s-govt-in-christmas-address-151225/,2,1,ikeboy,12/25/2015 13:20 +10346985,JAI Primer: A Programming Language for Games,https://sites.google.com/site/jailanguageprimer/,92,65,tasoeur,10/7/2015 16:31 +11942053,We built cloud HSM; EnigmaLink to show it off give us hard feedback Please,https://enigmalink.io/d#u=fw&c=FWhyyHNOMuF9TkhVe8BIbA&f=0B8RUMrk78PeINnJTcVB2WEFYVUU&n=YC4WWaE5NNRHgLtV2P4krA,3,1,dc352,6/20/2016 22:21 +11321164,Show HN: Rhine A typed Elixir-inspired language on LLVM,https://github.com/artagnon/rhine?,81,16,artagnon,3/20/2016 0:18 +11238245,What's the status on the Yo app?,,1,2,richardrl,3/7/2016 11:10 +11383312,Learn to Code: 13 Tips That Could Save You Years of Effort,https://medium.com/javascript-scene/learn-to-code-13-tips-that-could-save-you-years-of-effort-92ce799a3e1f,6,1,ericelliott,3/29/2016 17:46 +12435933,Snagging creds from locked Windows/OS X machines using USB-Armory/Hak5-Turtle,https://room362.com/post/2016/snagging-creds-from-locked-machines/,35,5,liotier,9/6/2016 13:45 +10382596,Show HN: Easily Add a CMS to Your JavaScript App,https://github.com/cosmicjs/cosmicjs-node,17,5,tonyspiro,10/13/2015 18:50 +11996039,Docker Containers Cheat Sheet Now Available,http://developers.redhat.com/blog/2016/06/28/docker-containers-cheat-sheet-now-available/,2,1,rafabenbe,6/28/2016 18:07 +10896978,OpenBSD laptops,http://www.tedunangst.com/flak/post/openbsd-laptops,177,95,fcambus,1/13/2016 19:51 +11181867,"Nylas N1 now has snooze, swipe actions, emoji, and more",https://medium.com/@Nylas/nylas-n1-now-has-snooze-swipe-actions-emoji-and-more-561cd1e91559#.mgp8wtbm2,90,59,eibrahim,2/26/2016 15:34 +10677702,HFS+ is crazy,http://liminality.xyz/hfs-is-crazy/,192,203,jodyribton,12/4/2015 17:38 +10787573,Show HN: AirConsole Now with WebRTC and 20+ Local Multiplayer Games,http://www.airconsole.com/#!exclusive=press,7,1,airconsole,12/24/2015 8:38 +10678908,A Powerful Tool SaaS Companies Can Use to Stand Out from Competitors,http://www.marketingthatsells.net/blog/a-powerful-tool-saas-companies-can-use-to-stand-out-from-competitors-a-detailed-guide,1,1,copywriteralex,12/4/2015 20:27 +11956161,Solar System Internet on the ISS,https://www.nasa.gov/feature/new-solar-system-internet-technology-debuts-on-the-international-space-station/,76,17,MaxLeiter,6/22/2016 19:00 +10238379,SpaceX Falcon 9 Lander (game),https://scratch.mit.edu/projects/76866912/,7,2,AaronO,9/18/2015 10:34 +11330048,Apple unveils a new smaller iPad Pro,http://techcrunch.com/2016/03/21/apple-unveils-a-new-smaller-ipad-pro-apples-vision-of-the-future-of-computers/,5,1,LukeB_UK,3/21/2016 17:47 +10742085,"LibreOffice as a service offers alternative to Google Docs, Office 365",http://www.infoworld.com/article/3014654/open-source-tools/libreoffice-as-a-service-offers-alternative-to-google-docs-office-365.html,229,139,Garbage,12/16/2015 3:01 +11465528,Dear Zuck. Fuck,https://medium.com/@kteare/dear-zuck-fuck-84d9c1bdba26#.q7m8lsfph,10,3,techaddict009,4/10/2016 9:26 +11816487,Microsoft is still terrible at naming things,http://money.cnn.com/2016/06/01/technology/microsoft-windows-holographic/index.html,1,2,excalibur,6/1/2016 17:42 +10737876,The Line Between Data Vis and Data Art,http://lisacharlotterost.github.io/,37,10,sebg,12/15/2015 14:27 +10438758,There's now a $1/pill competitor to pharma CEO Martin Shkreli's $750/pill drug,http://www.businessinsider.in/Theres-now-a-1-a-pill-competitor-to-pharma-CEO-Martin-Shkrelis-750-a-pill-drug/articleshow/49499385.cms,16,3,dsr12,10/23/2015 14:28 +11869246,Ask HN: Private API Aggregation Services,,3,2,ponderingHplus,6/9/2016 13:34 +10739934,Micro VCs Are Coming,http://mattermark.com/the-micro-vcs-are-coming/,72,42,zbravo,12/15/2015 19:40 +11716477,Austins Regulations for Kid Lemonade Stands,http://ij.org/austins-regulations-kid-lemonade-stands-unintentionally-hilarious/,41,35,luu,5/17/2016 19:16 +12260837,Should we launch a spacecraft to collect energy?,,1,2,jlebrech,8/10/2016 11:28 +12557332,The Echo Chamber Club anti algorithm Club to understand new perspectives,https://medium.com/@alicelthwaite/in-the-wake-of-brexit-expanding-your-horizons-2608a6464fd8,5,1,alicelthwaite,9/22/2016 15:10 +10907911,Should We Limit Web Development to JavaScript?,http://www.elevatesoft.com/blog?action=view&id=why_limit_web_development_to_javascript&2,4,5,pbowyer,1/15/2016 8:10 +10855945,You Cant Trust What You Read About Nutrition,http://fivethirtyeight.com/features/you-cant-trust-what-you-read-about-nutrition/,2,2,shawndumas,1/7/2016 4:16 +12429673,Understanding the blockchain,https://www.oreilly.com/ideas/understanding-the-blockchain,3,1,fauria,9/5/2016 12:01 +10602391,"Tesla recalling 90,000 Model S sedans to check seat belts",http://www.reuters.com/article/2015/11/20/us-tesla-recall-idUSKCN0T92CR20151120?feedType=RSS&feedName=topNews&utm_source=twitter,182,99,leephillips,11/20/2015 17:21 +12452564,How to use Google Clouds free logging service with Go,http://blog.bugreplay.com/post/150086459149/how-to-use-google-clouds-free-structured-logging?utm_source=hn&utm_medium=web&utm_campaign=blog2016sept08,29,5,edibleEnergy,9/8/2016 13:06 +11955781,Why Gun Control Can't Be Solved in the USA,http://blog.dilbert.com/post/146307088451/why-gun-control-cant-be-solved-in-the-usa,10,2,lj3,6/22/2016 18:05 +12521277,"Japan has a worrying number of virgins, government finds",http://www.independent.co.uk/news/world/japan-has-a-worrying-number-of-virgins-government-finds-a7312961.html,68,98,vikasr111,9/17/2016 16:59 +11183547,"Prosecutors halt vast, likely illegal DEA wiretap operation",http://www.usatoday.com/story/news/2016/02/25/dea-riverside-wiretaps-scaled-back/80891460/,283,82,anon1385,2/26/2016 19:36 +11013612,Taking the wrong lesson from Uber,https://medium.com/@sarahtavel/taking-the-wrong-lesson-from-uber-ae4b41e7c7da,1,1,prostoalex,2/1/2016 17:56 +10364809,"An Error Leads to a New Way to Draw, and Erase, Computing Circuits",http://www.nytimes.com/2015/10/10/science/an-error-leads-to-a-new-way-to-draw-and-erase-computing-circuits.html?_r=0,47,1,signa11,10/10/2015 7:27 +10290234,Using the Blockchain to Fight Crime and Save Lives,http://techcrunch.com/2015/09/27/using-the-blockchain-to-the-fight-crime-and-save-lives/,6,7,svepuri,9/28/2015 13:10 +10821986,Trails Modern MVC Web Framework for Node.js,https://github.com/trailsjs/trails,142,78,tilt,1/1/2016 14:46 +12548306,FileTea: low friction anonymous file sharing,https://blogs.igalia.com/elima/2011/09/01/filetea-low-friction-anonymous-file-sharing/,2,1,ch,9/21/2016 14:15 +11005644,Viv: Voice-controlled personal assistant from the team behind Siri,http://www.theguardian.com/technology/2016/jan/31/viv-artificial-intelligence-wants-to-run-your-life-siri-personal-assistants,16,5,wr1472,1/31/2016 7:41 +11583469,Is the U.S. Ready for Post-Middle-Class Politics?,http://www.nytimes.com/2016/05/01/magazine/is-the-us-ready-for-post-middle-class-politics.html,42,39,noamhendrix,4/27/2016 18:56 +10802220,IP-Box can crack your 4-digit iPhone passcode in less than 17 hours,http://www.phonearena.com/news/Did-you-know-a-new-device-called-IP-Box-can-crack-your-4-digit-iPhone-passcode-in-less-than-17-hours_id76971,1,1,ck2,12/28/2015 17:34 +10588027,Ask HN: Advice on unethical cofounder?,,12,7,throwaway8912,11/18/2015 15:00 +10505231,Quasi-Polynomial Algorithm for Graph Isomorphism,http://www.scottaaronson.com/blog/?p=2521,137,41,johncolanduoni,11/4/2015 8:22 +12118441,"Better lithium ion batteries, how do they work? Magnets",http://arstechnica.com/science/2016/07/better-lithium-ion-batteries-how-do-they-work-magnets/,2,1,algirau,7/18/2016 22:41 +10449223,Ask HN: Ghost vs. Wordpress,,8,6,tlong,10/26/2015 1:39 +10736407,R0z3z 4r3 R3d (poem),http://www.perlmonks.org/?node_id=63450,1,1,davidslv,12/15/2015 7:15 +11399848,Intel Xeon E5 v4 Review: Testing Broadwell-EP With Demanding Server Workloads,http://www.anandtech.com/show/10158/the-intel-xeon-e5-v4-review,127,78,jseliger,3/31/2016 19:24 +11082155,Node.js Foundation to Add Express as an Incubator Project,https://medium.com/@nodejs/node-js-foundation-to-add-express-as-an-incubator-project-225fa3008f70#.w0lliqx2c,4,2,nfriedly,2/11/2016 18:54 +10180369,Show HN: Chemozart molecule editor and visualizer with mechanics calculators,https://github.com/mohebifar/chemozart,34,17,mohebifar,9/7/2015 6:50 +11399101,"Show HN: Lambada Framework, build and deploy serverless applications using JAVA",https://github.com/lambadaframework/lambadaframework,9,6,cagataygurturk,3/31/2016 17:53 +11737060,RoboCop is real at the Stanford Shopping Center,http://www.theguardian.com/us-news/2016/may/20/robocop-robot-mall-security-guard-palo-alto-california,65,32,Udik,5/20/2016 11:59 +11204660,Bernie Sanders helping American workers would hurt the worlds poorest,http://www.vox.com/2016/3/1/11139718/bernie-sanders-trade-global-poverty,1,3,baron816,3/1/2016 18:07 +11709077,Ask HN: Why does a pizza app know my location and 911 doesn't?,,45,41,ponderatul,5/16/2016 19:49 +12276761,The Great Affluence Fallacy,http://www.nytimes.com/2016/08/09/opinion/the-great-affluence-fallacy.html?rref=collection/timestopic/Columnists&action=click&contentCollection=opinion®ion=stream&module=stream_unit&version=latest&contentPlacement=6&pgtype=collection,2,1,rrauenza,8/12/2016 16:12 +12530118,Google landing teleport page,https://www.google.com/landing/teleport/,2,1,wener,9/19/2016 9:51 +12355177,Well First Find Aliens on Eyeball Planets,http://nautil.us/blog/forget-earth_likewell-first-find-aliens-on-eyeball-planets,15,4,TheLarch,8/24/2016 20:53 +10234215,Not all organs age alike,http://medicalxpress.com/news/2015-09-age-alike.html,4,2,Amorymeltzer,9/17/2015 16:15 +11992044,React HN,https://react-hn.appspot.com/,1,1,tilt,6/28/2016 7:26 +10785107,Gender Study Women Pay More for Almost Everything [pdf],http://www1.nyc.gov/assets/dca/downloads/pdf/partners/Study-of-Gender-Pricing-in-NYC.pdf,5,2,ZoeZoeBee,12/23/2015 19:28 +10683742,The House by the River,http://theanthill.org/grandfather,14,2,Thevet,12/5/2015 23:43 +12472745,Show HN: Managing your devices in the cloud using Apples own MDM solution,https://medium.com/@JoshuaAJung/managing-your-mobile-devices-in-the-cloud-using-apples-own-mdm-solution-8a588d9724b6,1,3,Sventek,9/11/2016 10:21 +11067079,A Guide for Webmasters: How to Disable Ad Blockers from Your Site,http://www.wiyre.com/guide-how-to-disable-ad-blockers-for-webmasters/,2,1,Magicstatic,2/9/2016 17:40 +11863906,Ask HN: Would you use an app to keep track of all your relationships?,,8,22,tixocloud,6/8/2016 17:25 +10401963,Has Kepler Discovered an Alien Megastructure?,http://news.discovery.com/space/alien-life-exoplanets/has-kepler-discovered-an-alien-megastructure-151014.htm,2,1,edward,10/16/2015 20:56 +12233298,Googles Open YOLO project will remove the need for passwords on Android,http://thenextweb.com/google/2016/08/05/googles-open-yolo-project-will-remove-the-need-for-passwords-on-android/,5,2,chewymouse,8/5/2016 15:58 +12175242,The Churn,http://blog.cleancoder.com/uncle-bob/2016/07/27/TheChurn.html,39,6,b123400,7/27/2016 18:15 +11716675,MyBrains Now we are available in Firefox,https://mybrains.org,3,1,mybrains,5/17/2016 19:40 +12023235,Google talks up its self-driving cars cyclist-detection algorithms,https://techcrunch.com/2016/07/01/google-talks-up-its-self-driving-cars-cyclist-detection-algorithms/,1,1,lookupmobile,7/2/2016 17:47 +11006430,Comparison of C/Posix standard library implementations for Linux,http://www.etalabs.net/compare_libcs.html,70,9,ingve,1/31/2016 14:12 +10976964,BotLibre Free Open Artificial Intelligence for Everyone,http://www.botlibre.org/,123,11,nikolay,1/26/2016 23:07 +12481144,Earth Temperature Timeline,http://xkcd.com/1732/,145,7,r721,9/12/2016 16:35 +10828900,Update about a Song of Ice and Fire -The Winds of Winter,http://grrm.livejournal.com/465247.html,6,1,Akdeniz,1/3/2016 0:50 +12190905,Ask HN: Recommondations for API authentication and rate limiting,,8,4,namenotgiven,7/29/2016 23:56 +10451186,Simple Web iFrame based surfer / obfuscator,https://github.com/iframeobfuscator/iframeobfuscator/,1,3,themullet,10/26/2015 13:22 +10430627,Deploying a Django App with No Downtime,https://medium.com/@healthchecks/deploying-a-django-app-with-no-downtime-f4e02738ab06,184,93,cuu508,10/22/2015 6:03 +10178794,Random Valid US Address,https://fakena.me/random-real-address/,143,52,jayess,9/6/2015 19:52 +10653259,Lessons from Cellphones on Distribution of Wealth,http://www.nytimes.com/2015/12/01/science/lessons-from-cellphones-on-distribution-of-wealth.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=stream&module=stream_unit&version=latest&contentPlacement=5&pgtype=sectionfront,33,11,dnetesn,12/1/2015 2:09 +11027684,Idea Debt,http://jessicaabel.com/2016/01/27/idea-debt/,468,135,cdvonstinkpot,2/3/2016 17:09 +11022548,Make journals report clinical trials properly,http://www.nature.com/news/make-journals-report-clinical-trials-properly-1.19280,109,18,bootload,2/2/2016 21:01 +10461958,Turning the iPhone 6S into a Digital Scale,https://medium.com/@warpling/turning-the-iphone-6s-into-a-digital-scale-f2197dc2b6e7#.xb2k45od6,4,1,s9ix,10/27/2015 23:36 +11517375,Game developers must avoid the wage-slave attitude,http://venturebeat.com/2016/04/16/game-developers-must-avoid-the-wage-slave-attitude/,2,1,ChazDazzle,4/18/2016 2:25 +10293196,Applying Satisfiability to the Analysis of Cryptography,http://galois.com/news/applying-satisfiability-analysis-cryptography-sat-2015-talk-aaron-tomb/,13,3,tommd,9/28/2015 21:05 +10790397,Block ads on home devices using a Raspberry Pi,https://medium.com/@robleathern/block-ads-on-all-home-devices-for-53-18-a5f1ec139693,81,24,optimalrob,12/25/2015 4:16 +12023728,"As a psychiatrist, I diagnose mental illness and help spot demonic possession",https://www.washingtonpost.com/posteverything/wp/2016/07/01/as-a-psychiatrist-i-diagnose-mental-illness-and-sometimes-demonic-possession/,57,73,schneidmaster,7/2/2016 20:44 +12152906,Judge Orders Yahoo to Explain How It Recovered Deleted Emails in Drugs Case,http://motherboard.vice.com/read/judge-orders-yahoo-to-explain-how-it-recovered-deleted-emails-in-drugs-case,103,74,alternize,7/24/2016 10:18 +10593145,Alcoholism drug brings dormant HIV virus out of hiding,http://www.sciencealert.com/alcoholism-drug-brings-dormant-hiv-virus-out-of-hiding,19,6,ddispaltro,11/19/2015 6:43 +12497114,Top-level await in JavaScript is a footgun,https://gist.github.com/Rich-Harris/0b6f317657f5167663b493c722647221,141,113,rich_harris,9/14/2016 14:23 +11846589,The Legend of Abraham Wald solving problem of armoring planes,http://www.ams.org/samplings/feature-column/fc-2016-06,17,2,tokenadult,6/6/2016 13:30 +10634994,"Flat Will Kill You, Eventually: Why Every Company Needs Structure",http://themodernteam.com/flat-will-kill-you-eventually-why-every-company-needs-structure/,84,75,vskarine,11/26/2015 22:18 +11255906,White House's Claims That the TPP Would Curb Internet Censorship Are Fantasy,https://www.eff.org/deeplinks/2016/03/white-houses-claims-tpp-would-curb-internet-censorship-are-fantasy,153,12,DiabloD3,3/9/2016 21:36 +12225882,Ask HN: Why are sites now breaking login forms into stages (name then password)?,,54,50,microman,8/4/2016 14:53 +10830409,Selling 80% equity,,4,10,finalight,1/3/2016 12:42 +12076856,Your Phone Has an FM Chip. So Why Cant You Listen to the Radio?,http://www.wired.com/2016/07/phones-fm-chips-radio-smartphone/,263,321,prostoalex,7/12/2016 5:05 +11352121,Markov Chain Monte Carlo for Bayesian Inference The Metropolis Algorithm,https://www.quantstart.com/articles/Markov-Chain-Monte-Carlo-for-Bayesian-Inference-The-Metropolis-Algorithm,87,9,shogunmike,3/24/2016 12:05 +11689764,TrackMania is NP-complete,https://arxiv.org/abs/1411.5765,77,28,hiq,5/13/2016 11:27 +11548434,Chatbot Fail,http://thewalrus.ca/chatbot-fail/,3,1,imartin2k,4/22/2016 11:52 +12505857,Weve Just Encrypted All of WIRED.com,https://www.wired.com/2016/09/now-encrypting-wired-com/,14,7,CapitalistCartr,9/15/2016 13:21 +10803140,A Modern Architecture for FP,http://degoes.net/articles/modern-fp/,116,40,buffyoda,12/28/2015 20:24 +10392848,Netflix can't collect its money because everyone has new credit cards,http://mashable.com/2015/10/15/netflix-credit-cards/,3,1,taf2,10/15/2015 13:02 +10417956,Germany Just Introduced Data Retention. Politicians Should Be Ashamed,https://tutanota.com/blog/posts/germany-data-retention,11,1,winst0n,10/20/2015 7:55 +11063714,Ask HN: How to rate limit a distributed web service?,,4,2,nickfranky,2/9/2016 7:27 +10914650,Analyzing the $5.6M Exploit and Cryptsy's Security Failings,http://earlz.net/view/2016/01/16/0717/analyzing-the-56-million-exploit-and-cryptsys-security,39,10,earlz,1/16/2016 7:47 +11990152,Volkswagen's U.S. diesel emissions settlement to cost $15B,http://www.reuters.com/article/us-volkswagen-emissions-settlement-idUSKCN0ZD2S5,292,339,ilyaeck,6/27/2016 22:52 +11266099,World map resized by ccTLDs shows tiny US and huge mystery island,http://www.nominet.uk/mapping-the-online-world/,5,1,500and4,3/11/2016 12:10 +12107407,U.S. Proposes Allowing Foreign Officials to Serve Warrants on Internet Firms,http://www.wsj.com/articles/obama-administration-negotiating-international-data-sharing-agreements-1468619305,141,119,hodgesrm,7/16/2016 18:43 +12058493,How can we improve retention?,http://i.imgur.com/Pdp5Msy.png,1,1,aknalid,7/8/2016 20:42 +10250085,This story is being previewed exclusively on Apple News until Tuesday,http://www.wired.com/2015/09/bjarke-ingels-2-world-trade-center-wtc,302,234,esolyt,9/21/2015 2:39 +12479156,Vim 8.0 released,https://groups.google.com/forum/#!topic/vim_announce/EKTuhjF3ET0,661,299,laqq3,9/12/2016 12:39 +11954508,You Can't Turn the Network Invisible,https://www.pandastrike.com/posts/20160622-falcor-relay-leaky-abstractions-fallacies-of-distributed-computing,3,4,mwcampbell,6/22/2016 15:07 +10367342,How to Download a List of All Registered Domain Names,http://jordan-wright.com/blog/2015/09/30/how-to-download-a-list-of-all-registered-domain-names/,170,53,jwcrux,10/10/2015 23:04 +11673885,Ask HN: iOS landscape in China?,,2,4,marvel_boy,5/11/2016 9:47 +10674526,Holometer rules out first theory of space-time correlations,http://www.symmetrymagazine.org/article/holometer-rules-out-first-theory-of-space-time-correlations,131,47,jonbaer,12/4/2015 4:01 +12269278,IPv6 Support for Amazon S3,https://aws.amazon.com/blogs/aws/now-available-ipv6-support-for-amazon-s3/,153,48,agwa,8/11/2016 15:55 +10842054,How to be moderately successful person,http://www.theguardian.com/commentisfree/2016/jan/01/how-to-be-moderately-successful-person-like-me,12,1,miraj,1/5/2016 8:26 +11299626,How Retailers Will Survive in the Amazon Era,http://www.fastcodesign.com/3057833/how-retailers-will-survive-in-the-amazon-era,3,2,prostoalex,3/16/2016 18:34 +10348465,Multisig and Simple Contracts on Stellar,https://www.stellar.org/blog/multisig-and-simple-contracts-stellar/,28,10,bjfish,10/7/2015 19:37 +12226400,Why Linux sucks and will never compete with Windows or OS X,http://www.dvorak.org/blog/2016/02/25/why-linux-sucks-and-will-never-compete-with-windows-or-osx/,38,83,dsego,8/4/2016 15:56 +10574556,AMD announces CUDA support,http://www.anandtech.com/show/9792/amd-sc15-boltzmann-initiative-announced-c-and-cuda-compilers-for-amd-gpus,43,6,oflordal,11/16/2015 14:23 +10955187,How to buy a house in Oakland,https://medium.com/@eliotpeper/how-to-buy-a-house-in-oakland-59b202d1e562#.etdz78dci,2,2,elpeper,1/22/2016 20:00 +12438666,ITT Technical Institute Shuts Down After Government Cut Off New Funding,http://www.wsj.com/articles/itt-technical-institute-to-close-after-government-cuts-off-new-funding-1473163181,1,2,endswapper,9/6/2016 19:32 +11976842,Homeless Next to Whole Foods: San Frans Progressive Predicament,http://www.wsj.com/articles/homeless-next-to-whole-foods-san-frans-progressive-predicament-1466806353,3,2,realdlee,6/25/2016 16:22 +11700110,A former CIA spy has revealed his key role in the arrest of Nelson Mandela,http://www.thetimes.co.uk/edition/news/cia-tip-off-led-to-jailing-of-mandela-9mwcsdq9c,435,282,randomname2,5/15/2016 9:07 +10604219,The Cult of the Toto Toilet,http://www.nytimes.com/2015/11/19/fashion/the-cult-of-the-toto-toilet.html,63,42,Thevet,11/20/2015 22:14 +11707008,The SidToday Files,https://theintercept.com/snowden-sidtoday/,117,18,aestetix,5/16/2016 15:41 +10811158,Show HN: Pixnary: A visual way of learning words,http://www.pixnary.com/gre,5,2,rathoreabhishek,12/30/2015 7:14 +11331217,Sorting a Billion Numbers with Julia,http://mikeinnes.github.io/2016/03/21/sorting.html,123,23,josep2,3/21/2016 19:43 +10885566,Show HN: Aspect-oriented mixins in JavaScript,https://github.com/yangmillstheory/mixin.a.lot,17,6,yangmillstheory,1/12/2016 4:32 +12359636,"The Mammoth Pirates: In Russia's Arctic north, a new gold rush is under way",http://www.rferl.org/fullinfographics/infographics/the-mammoth-pirates/27939865.html,18,3,frandroid,8/25/2016 15:16 +12231109,XMPP: Swiss Army Knife for the Internet of Things,https://blog.securitycompass.com/xmpp-swiss-army-knife-for-internet-of-things-iot-9eff783c44ba#.6fzzosfqh,94,86,DyslexicAtheist,8/5/2016 10:10 +11350458,Require-from-Twitter,https://gist.github.com/rauchg/5b032c2c2166e4e36713,701,127,uptown,3/24/2016 3:50 +11234109,How to Cultivate the Art of Serendipity,http://www.nytimes.com/2016/01/03/opinion/how-to-cultivate-the-art-of-serendipity.html,18,3,jackgavigan,3/6/2016 15:44 +12299073,Namecheap.com emergency maintenance,http://status.namecheap.com/archives/27188,12,6,medmunds,8/16/2016 17:38 +10979352,Ask HN: Why isn't Google's Polymer framework more popular?,,8,3,jondubois,1/27/2016 10:42 +10830132,Facebook fraud gangs turn gullible middle-class teenagers into criminals,http://www.dailymail.co.uk/news/article-3382212/Facebook-fraud-gangs-turn-gullible-middle-class-teenagers-criminal-money-mules-persuading-launder-cash-accounts.html,6,4,ransithf,1/3/2016 10:16 +12502798,OPENDIME,https://opendime.com/,5,1,rglover,9/15/2016 1:57 +12490789,Burrito-Delivering DronesSeriously?,https://www.technologyreview.com/s/602356/burrito-delivering-drones-seriously/?set=602357,1,1,jcbeard,9/13/2016 18:08 +11804228,A go library for tokenizing text,http://github.com/dannav/tokenize,2,1,navd,5/31/2016 2:30 +11759762,Is reference counting slower than GC?,https://mortoray.com/2016/05/24/is-reference-counting-slower-than-gc/,44,88,nikbackm,5/24/2016 8:20 +11500614,"David MacKay, FRS died today, his diary is remarkable",http://itila.blogspot.com/2016/04/index-for-first-23-cancer-chapters.html,7,1,okket,4/14/2016 21:52 +11922740,"Home Depot Files Antitrust Lawsuit Against Visa, MasterCard",http://www.wsj.com/articles/home-depot-u-s-credit-card-firms-slow-to-upgrade-security-1466000734,341,475,ikeboy,6/17/2016 14:16 +12200928,Sublime Enhanced,https://github.com/shagabutdinov/sublime-enhanced,142,88,shagabutdinov,8/1/2016 8:39 +12144428,Show HN: Liner Highlight Everything (Now on ProductHunt),https://www.producthunt.com/tech/liner-for-chrome,1,2,hmppark7,7/22/2016 16:11 +10875502,Ask HN: What are the risks of radio frequency fields?,,2,3,classicsnoot,1/10/2016 15:03 +11858498,Open-source transit routing in over 200 regions worldwide,https://mapzen.com/blog/even-more-transit-routing/,8,1,eajecov,6/7/2016 22:26 +11334464,"What were doing to the Earth has no parallel in 66M yrs, scientists say",https://www.washingtonpost.com/news/energy-environment/wp/2016/03/21/what-were-doing-to-the-earth-has-no-parallel-in-66-million-years-scientists-say/,66,38,jdnier,3/22/2016 4:45 +11189163,Does anybody find this Scheme code readable?,https://raw.githubusercontent.com/pratyakshs/Che.ss/master/check.ss,15,21,ApplaudPumice,2/28/2016 0:31 +11853730,Time-Lapse Robot Arm Assembly,https://www.facebook.com/travelhead/posts/10153741451140888,1,1,travelhead,6/7/2016 11:35 +10464224,Show HN: Svven Discover interesting people and news based on what you tweet,http://svven.com,23,7,ducuboy,10/28/2015 13:18 +11168856,Show HN: Android Toggle Switch an Extension of Android Switches for 2+ Items,https://github.com/BelkaLab/Android-Toggle-Switch,11,2,HipstaJules,2/24/2016 18:15 +11485227,"Perl 6 makes all of Lisp's mistakes, then sets itself on fire",http://www.elfsternberg.com/2016/04/02/1741/,7,3,labster,4/13/2016 2:14 +11392640,Linode Connectivity Issues Dallas,http://status.linode.com/incidents/d1q5qjc6v9ml,9,2,emeraldd,3/30/2016 20:19 +11707570,Show HN: I made an app for unattended one off task notifications,https://www.binnotify.com/,6,4,madbitties,5/16/2016 16:44 +11057993,YouTube Spits on Your DMCA Notices,https://forums.envato.com/t/youtube-spits-on-your-dmca-notices/30994,4,1,kapuetri,2/8/2016 13:41 +11493946,The sun photographed at the same time and place once a wk for a yr,http://i.imgur.com/61YTxQ2.png,5,2,mgalka,4/14/2016 2:32 +11732158,Visual profiler for Python,https://github.com/nvdv/vprof,213,36,nvdv,5/19/2016 17:56 +12569374,Chromium is no longer supported for Chromecast,https://productforums.google.com/d/msg/chromecast/cpADBG10NfA/qymp1sGOAQAJ,116,32,keeperofdakeys,9/24/2016 3:52 +10995227,"Ask HN: Successful webdev freelancers, what are your recommendations?",,1,1,coimytx1n9,1/29/2016 14:10 +11700391,"Show HN: Discover random sites that are delightful, exiting, funny and surprising",https://boogiemarks.net/,5,1,imakesoft,5/15/2016 10:55 +11235473,Show HN: Lightweight Twitter for Mac client,https://github.com/soheil/BirdDrop-OSX,7,4,soheil,3/6/2016 20:49 +10479620,Ask HN: Beyond CRUD and ETL How to Grow Professionally?,,71,32,ugenetics,10/30/2015 18:32 +11064810,CEO to CTO: What Is Your RewriteRatio?,http://codemonkeyism.com/ceo-to-cto-what-is-your-rewriteratio/,8,7,_Codemonkeyism,2/9/2016 12:29 +12096578,Cache coherency primer (2014),https://fgiesen.wordpress.com/2014/07/07/cache-coherency/,83,6,swah,7/14/2016 19:30 +11438416,Computer scientists has software that realistically make anyone say anything,https://fpdl.vimeocdn.com/vimeo-prod-skyfire-std-us/01/2310/6/161551044/508826461.mp4?token=57053e5c_0x821197a5a2acd9f4cc5a2e80f7b47e7767cad2c5#038;profile_id=119,10,2,puppetmaster3,4/6/2016 12:55 +11272169,Motocoin whitepaper a cryptocurrency based on proof-of-play in a 2D game [pdf],https://motocoin-dev.github.io/motocoin-site/Motocoin.pdf,27,8,networked,3/12/2016 9:50 +11467268,"Network Monitoring, Moral Hazards and Crumple Zones",http://etherealmind.com/network-monitoring-moral-hazards-and-crumple-zones/,16,5,ohjeez,4/10/2016 17:42 +11961182,Joist lays off 60 employees in Toronto as company relocates to SF,http://betakit.com/joist-lays-off-60-employees-as-company-relocates-to-san-francisco/,145,132,hannele,6/23/2016 14:37 +10287219,Modernizing the BSD Networking Stack [pdf],https://www.netbsd.org/gallery/presentations/dennis/2015_AsiaBSDCon/BSDNet.pdf,75,9,jsnell,9/27/2015 17:34 +10413366,Show HN: React Cellblock. A grid where components respond to column size,https://github.com/dowjones/react-cellblock,12,4,skiano,10/19/2015 15:09 +10563540,"Paris Shootings and Explosions Kill Over 100, Police Say",http://www.nytimes.com/2015/11/14/world/europe/paris-shooting-attacks.html,623,624,franzb,11/14/2015 0:25 +10929426,Nim 0.13.0 has been released,http://nim-lang.org/news.html#Z2016-01-18-version-0-13-0-released,141,78,andybak,1/19/2016 8:46 +11059319,"Old Tjikko, the oldest living clonal Norway Spruce",https://en.wikipedia.org/wiki/Old_Tjikko,98,26,shawndumas,2/8/2016 17:08 +11918898,The XPS 13 Developer Edition,http://arstechnica.com/gadgets/2016/06/the-xps-13-de-dell-continues-to-build-a-reliable-linux-lineage/,29,13,macco,6/16/2016 21:12 +11356770,Tony Fadells Struggle to Build Nest,https://daringfireball.net/misc/2016/03/the-information-tony-fadell.html,2,1,dogecoinbase,3/24/2016 21:52 +11683583,"In reaction to PHP-FIG events, Community Driven Standards were created",https://github.com/php-cds/php-cds,1,1,DominikD,5/12/2016 14:24 +10889271,"Leaked: Uber's Financials Show Huge Growth, Even Bigger Losses",http://www.forbes.com/sites/briansolomon/2016/01/12/leaked-ubers-financials-show-huge-growth-even-bigger-losses/,13,2,cryptoz,1/12/2016 18:27 +10442719,An update on our response to the refugee and migrants crisis,https://googleblog.blogspot.com/2015/10/update-response-refugee-migrants.html?m=1,1,1,huuu,10/24/2015 6:50 +12416004,Jack in the Belfry,http://www.lrb.co.uk/v38/n17/terry-eagleton/jack-in-the-belfry,13,2,pepys,9/2/2016 20:24 +11814488,Where We Stand and What's Next for Kotlin,https://realm.io/news/andrey-breslav-whats-next-for-kotlin-roadmap/,13,1,ingve,6/1/2016 14:16 +11014019,Ask HN: Should you block web scrapers?,,5,2,jorgecurio,2/1/2016 18:32 +12235634,"Configuration (mis)management or why I hate puppet, ansible, salt, etc.",http://www.scriptcrafty.com/configuration-mismanagement-or-why-i-hate-puppet-ansible-salt-etc/,46,47,jtrtoo,8/5/2016 20:45 +10663843,Kazakhstan to MitM all HTTPS traffic starting Jan 1,http://telecom.kz/en/news/view/18729,803,361,out_of_protocol,12/2/2015 16:20 +11953335,I made a site for Swift programming jobs it's free to post vacancies,http://www.swift-jobs.com,4,2,philhudson91,6/22/2016 12:30 +10413964,Dean Baquet Responds to Jay Carneys Medium Post,https://medium.com/@NYTimesComm/dean-baquet-responds-to-jay-carney-s-medium-post-6af794c7a7c6,101,10,planetjones,10/19/2015 16:36 +11240961,?Apple gets smacked by $450M e-book price-fixing fine,http://www.zdnet.com/article/apple-gets-smacked-by-450-million-e-book-price-fixing-fine/,378,278,CrankyBear,3/7/2016 19:31 +10222485,The BSPL Compiler,http://sam-falvo.github.io/kestrel/2015/09/15/bspl-compiler/,26,7,supdog,9/15/2015 18:53 +12055763,Judges Rely on a Flawed $2 Drug Test That Puts Innocent People Behind Bars,https://www.propublica.org/article/common-roadside-drug-test-routinely-produces-false-positives,214,112,ohjeez,7/8/2016 14:30 +12230250,"Introducing Guesstimate, a Spreadsheet for Things That Arent Certain",https://medium.com/guesstimate-blog/introducing-guesstimate-a-spreadsheet-for-things-that-aren-t-certain-2fa54aa9340#.ojn0vwxac,5,1,mpweiher,8/5/2016 5:32 +11216120,What a difference 400 years makes: the London skyline 1616 v 2016 interactive,http://www.theguardian.com/cities/2016/mar/03/london-skyline-1616-2016-interactive-faders-visscher,4,1,sveme,3/3/2016 11:04 +10486906,Idea Sunday,,17,12,christopherDam,11/1/2015 16:31 +11843058,Managing containers on Mesos with HalfLife2,https://www.wehkamplabs.com/blog/2016/06/02/docker-and-zombies/,89,16,harmw,6/5/2016 20:53 +10434781,Private network to share your day with up to 12 best friends and family Ourglass,,2,4,scarymonstergt,10/22/2015 20:21 +10796926,Solus 1.0 Released,https://solus-project.com/2015/12/27/solus-1-0-released/,47,19,forlorn,12/27/2015 9:19 +12473553,The study of acoustic signals and the supposed spoken language of the dolphins,http://www.sciencedirect.com/science/article/pii/S2405722316301177,79,11,darrhiggs,9/11/2016 14:34 +11205340,Q&A with Jamie Dimon on the Future of Finance,http://www.bloomberg.com/features/2016-jamie-dimon-interview/,29,8,aburan28,3/1/2016 19:25 +10208047,GDB Dashboard,https://github.com/cyrus-and/gdb-dashboard,158,15,epsylon,9/12/2015 13:42 +11590619,World's Latest 8MW Windmills Now Make Jumbo Jets Look Tiny,http://www.bloomberg.com/news/features/2016-04-28/world-s-biggest-windmills-now-make-jumbo-jets-look-tiny,29,11,Osiris30,4/28/2016 17:43 +11638367,OS X app in plain C,https://github.com/jimon/osx_app_in_plain_c,249,151,dmytroi,5/5/2016 18:01 +10589641,Testimony of Philip R. Zimmermann to the [US Senate] [1996],https://www.philzimmermann.com/EN/testimony/index.html,1,1,Jtsummers,11/18/2015 18:21 +11600095,Emacs for Data Science,http://www.robertvesco.com/blog/2015-01-emacs-for-data-science.html,6,1,sndean,4/30/2016 2:47 +10984271,Ruby Wrapper for Telegram's Bot API,https://github.com/atipugin/telegram-bot-ruby,3,1,kulakowka,1/27/2016 22:58 +10399233,How to master Minecraft?,,1,1,iyogeshjoshi,10/16/2015 13:52 +10860875,No one stays in the Top 1% for long,http://money.cnn.com/2016/01/07/news/economy/top-1/index.html,2,1,eplanit,1/7/2016 21:21 +10192688,National Geographic magazine shifts to for-profit status with Fox partnership,https://www.washingtonpost.com/lifestyle/style/national-geographic-magazine-shifts-to-for-profit-status-with-fox-partnership/2015/09/09/7c9f034e-56f0-11e5-8bb1-b488d231bba2_story.html,9,4,hackuser,9/9/2015 17:17 +11454048,When Is the Singularity? Probably Not in Your Lifetime,http://www.nytimes.com/2016/04/07/science/artificial-intelligence-when-is-the-singularity.html?action=click&pgtype=Homepage&version=Moth-Visible&moduleDetail=inside-nyt-region-5&module=inside-nyt-region,38,79,misiti3780,4/8/2016 12:15 +10707158,FundaMine: Get Medium style annotations on your site,https://www.producthunt.com/tech/fundamine?ref=hn,4,4,yashpkotak,12/9/2015 22:13 +11659707,Show HN: Update your requirements.txt file with Pur in Python,https://github.com/alanhamlett/pip-update-requirements,35,26,welder,5/9/2016 13:37 +11138997,A Skeleton Key of Unknown Strength (CVE-2015-7547),http://dankaminsky.com/2016/02/20/skeleton/,115,37,cookiecaper,2/20/2016 5:19 +11695827,Iraqi gov't shut down Internet for 3 hours before examination,https://twitter.com/BaxtiyarGoran/status/731423273800634373,1,1,okket,5/14/2016 12:36 +11814758,"Johann Wolfgang von Goethe, Amateur Auction Theorist",http://www.themillions.com/2016/05/johann-wolfgang-von-goethe-amateur-auction-theorist.html,53,27,pepys,6/1/2016 14:51 +10469194,"Theranos, Facing Criticism, Says It Has Changed Board Structure",http://www.nytimes.com/2015/10/29/business/theranos-facing-criticism-says-it-has-changed-board-structure.html,16,3,brianchu,10/29/2015 3:58 +11255091,Google joins Open Compute Project to drive standards in IT infrastructure,https://cloudplatform.googleblog.com/2016/03/Google-joins-Open-Compute-Project-to-drive-standards-in-IT-infrastructure.html?m=1,152,41,rey12rey,3/9/2016 19:19 +10909528,Is vast inequality necessary?,http://www.nytimes.com/2016/01/15/opinion/is-vast-inequality-necessary.html,27,26,the_duck,1/15/2016 14:39 +11352405,Left-pad for Python (how could we have lived all this time without it?),https://pypi.python.org/pypi/left-pad/,2,3,santiagobasulto,3/24/2016 13:08 +10617419,"New IoT dev kit runs Linux on dual-core, multithreading MIPS CPU",http://blog.imgtec.com/mips-processors/creator-ci40-dev-kit-puts-the-iot-in-a-box,34,19,alexvoica,11/23/2015 21:26 +11780809,The anatomy of a housing bubble,http://www.macleans.ca/economy/economicanalysis/the-anatomy-of-a-housing-bubble/,9,1,kareemm,5/26/2016 19:32 +11025990,The Spirit: WebGL experiment with particles,https://github.com/edankwan/The-Spirit,57,10,artf,2/3/2016 12:04 +10357544,Infamy in the Age of the Internet,https://medium.com/@digidave/infamy-in-the-age-of-the-internet-3ae37ae11dc,1,1,ckurose,10/9/2015 1:21 +10441587,DiceWARE,http://www.dicewarepasswords.com/,10,1,subnaught,10/23/2015 22:28 +12362901,Interventions to Slow Aging in Humans: Are We Ready?,https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4531065/,2,1,deegles,8/25/2016 22:13 +12417892,Florida programmer arrested for gaining unauthorized access to kernel.org,https://www.justice.gov/usao-ndca/pr/florida-computer-programmer-arrested-hacking,116,64,ashitlerferad,9/3/2016 5:28 +10747267,Bypass Authentication by pressing backspace 28 times in Grub2,http://hmarco.org/bugs/CVE-2015-8370-Grub2-authentication-bypass.html#exploit,7,1,gcburn2,12/16/2015 20:57 +10763421,Baghdad's First Coding Bootcamp,https://medium.com/iraq-s-oppritunity/a-water-proof-event-cd0604bd49ed#.7iet7dry4,66,15,ellyish,12/19/2015 12:41 +10901651,"Building an All Flash SAN with ScaleIO: The Quest for 800,000 IOPS",https://medium.com/@tristanhook246/building-an-all-flash-san-with-scaleio-the-quest-for-800-000-iops-3982da232745,2,1,ckluis,1/14/2016 14:46 +11343899,Ping Pong Is Killing Your Company Culture,https://medium.com/huma-stories/ping-pong-is-killing-your-company-culture-d3b46bdbf702,10,5,deejmurphy,3/23/2016 12:46 +11156141,Texter,http://tholman.com/texter/,441,38,colinprince,2/23/2016 2:54 +11234695,Portolan Charts 'Too Accurate' to Be Medieval,http://bigthink.com/strange-maps/648-portolan-charts-too-accurate-to-be-medieval,93,24,r0muald,3/6/2016 17:58 +10238442,ObjC is our generations COBOL,http://sealedabstract.com/rants/objc-is-our-generations-cobol/,4,4,tl,9/18/2015 10:57 +11193012,Squareup API not escaping json outputs. A quick note on unsafe APIs,http://zenincognito.com/squareups-api-not-escaping-json-outputs-a-quick-note-on-unsafe-apis/,5,4,zenincognito,2/29/2016 0:05 +10324314,Primer on Neural Network Models for Natural Language Processing[pdf],http://u.cs.biu.ac.il/~yogo/nnlp.pdf,74,8,fitzwatermellow,10/3/2015 15:59 +12026696,Closure Compiler: High-level overview of a compilation job,http://closuretools.blogspot.com/2016/03/high-level-overview-of-compilation-job.html,46,10,breck,7/3/2016 17:02 +10584041,"Zolt Laptop Charger Plus The world's smallest, lightest laptop charger",https://www.gozolt.com/,2,1,iamlacroix,11/17/2015 21:23 +10485017,Pelican: A Building Block for Exascale Cold Data Storage,https://www.usenix.org/conference/osdi14/technical-sessions/presentation/balakrishnan,20,1,luu,11/1/2015 1:20 +10923885,"Before brogramming, table flipping, and beyond",http://technowoman.blogspot.com/2015/04/before-brogramming-table-flipping-and.html,139,125,kev009,1/18/2016 12:00 +11249104,New UX and Pricing for Hashicorp Atlas,https://www.hashicorp.com/blog/new-interface-design-user-experience-pricing-atlas.html,2,1,mafro,3/8/2016 22:00 +10301024,WashYaSelf.com - Dealing with a smelly person,https://www.washyaself.com,8,9,cacahead,9/30/2015 0:58 +10184477,Patent Law Shouldnt Block the Sale of Used Tech Products,http://www.nytimes.com/2015/09/07/opinion/patent-law-shouldnt-block-the-sale-of-used-tech-products.html?_r=0,121,82,walterbell,9/8/2015 7:49 +11956210,"Show HN: 24bit RGB ""AnsiArt"" Terminal Image Viewer",https://github.com/stefanhaustein/TerminalImageViewer,23,12,dukoid,6/22/2016 19:08 +12502496,Use Your Raspberry Pi as Your Local Node.js Webserver,http://blog.derhess.de/2016/06/12/use-your-raspberry-pi-as-your-local-nodejs-webserver/,2,1,type0,9/15/2016 0:33 +12046230,Kubernetes 1.3 on Tap for Google Container Engine,https://cloudplatform.googleblog.com/2016/07/Kubernetes-1.3-on-tap-for-Google-Container-Engine.html,1,3,tazjin,7/6/2016 22:13 +12198358,Browserprint: are you uniquely identifiable?,https://browserprint.info/,72,45,zevv,7/31/2016 19:08 +10526766,Map: Every Death on Every U.S. Road 2004-2013,http://metrocosm.com/10-years-of-traffic-accidents-mapped.html,7,2,mgalka,11/8/2015 0:04 +10663634,Essential .NET Designing C# 7,https://msdn.microsoft.com/magazine/mt595758,4,2,zastrowm,12/2/2015 15:52 +12388948,A treatise on the art of flying by mechanical means (1814),https://archive.org/stream/treatiseonartoff00walk#page/n6/mode/1up,2,4,dredmorbius,8/30/2016 11:06 +12163592,Americas Last Top Model,http://99percentinvisible.org/episode/americas-last-top-model/,157,43,panic,7/26/2016 5:49 +11106783,Would You Pay Someone to Do Your Online Dating?,http://observer.com/2016/02/would-you-pay-someone-to-date-for-you/,2,3,samanthaglower,2/15/2016 23:13 +11881903,Ask HN: How do you manage social media?,,1,3,abustamam,6/11/2016 3:30 +11698229,Evidence suggests that brain activity shifts to increase wisdom as we age,http://nautil.us/issue/36/aging/the-wisdom-of-the-aging-brain,83,23,dnetesn,5/14/2016 21:56 +11693134,"US Funds: Overconfident, Overconcentrated, and Overcrowded",https://medium.com/@alexanderbcampbell/overconfident-overconcentrated-and-overcrowded-c8c0b93997d8#.58fstjfuj,3,1,mwc,5/13/2016 20:47 +12314610,Show HN: TurboRLE: Bringing Turbo Run Length Encoding Incl. SIMD to Java,https://github.com/powturbo/TurboRLE/blob/master/README.md,2,1,powturbo,8/18/2016 17:34 +11600273,Intel Pentium 4 2.0 GHz vs. Intel Pentium III 1.0 GHz (2001),https://www.youtube.com/watch?v=88ancHxItOc,51,33,bane,4/30/2016 3:55 +12121208,APDU-level attacks on crypto tokens and smartcards,https://cryptosense.com/apdu-level-attacks-on-crypto-tokens-and-smartcards/,3,1,testcross,7/19/2016 12:03 +10232159,Google might be screwed,https://medium.com/@numair/google-might-be-screwed-740023587cf4,5,1,numair,9/17/2015 8:02 +11819738,One Click to Be Pro: my list of the best resources for mastering a subject,https://github.com/vic317yeh/One-Click-to-Be-Pro,209,29,vic317yeh,6/2/2016 1:33 +10495461,A New Star Trek TV Series Will Debut in 2017,http://www.nytimes.com/2015/11/03/arts/television/a-new-star-trek-tv-series-will-debut-in-2017.html?smid=fb-nytimes&smtyp=cur,152,78,Bud,11/2/2015 21:37 +12517925,A Mental Disease by Any Other Name,http://nautil.us/issue/40/learning/a-mental-disease-by-any-other-name,52,21,dnetesn,9/16/2016 22:46 +12261553,R: text analysis of Trumps tweets,https://www.r-bloggers.com/text-analysis-of-trumps-tweets-confirms-he-writes-only-the-angrier-android-half/,132,12,ingve,8/10/2016 13:34 +10549214,"Happy? Sad? Forget age, Microsoft can now guess your emotions",http://www.theguardian.com/technology/2015/nov/11/microsoft-guess-your-emotions-facial-recognition-software,1,1,lingben,11/11/2015 20:57 +10813323,Pity the Seagull,http://www.lrb.co.uk/blog/2015/08/24/mary-wellesley/pity-the-seagull/,17,9,diodorus,12/30/2015 18:05 +12081650,Google to train 2M Indian Android developers,https://thestack.com/world/2016/07/11/google-to-train-2-million-indian-android-developers/,1,1,drdoom,7/12/2016 19:21 +10696834,Mozillas newest app perfectly captures the ethical dilemma of ad-blocking,https://www.washingtonpost.com/news/the-switch/wp/2015/12/08/mozillas-newest-app-perfectly-captures-the-ethical-dilemma-of-ad-blocking/,61,91,Libertatea,12/8/2015 15:22 +11182444,The Electric Car Revolution Is Finally Starting,http://www.slate.com/articles/business/the_juice/2016/02/electric_cars_are_no_longer_held_back_by_crappy_expensive_batteries.html,6,4,gricardo99,2/26/2016 17:00 +12292142,"Show HN: Mune, a New Kind of Electronic Instrument",https://www.kickstarter.com/projects/919122189/mune-a-new-kind-of-electronic-instrument,7,3,ScottAS,8/15/2016 17:57 +12429849,There's no good reason for Apple to kill the headphone jack,https://medium.com/charged-tech/you-can-pry-my-headphone-jack-from-my-cold-dead-hands-f2ee9807e431#.m48fy2r41,45,78,owenwil,9/5/2016 12:37 +12415875,Bareflank Hypervisor: Rapidly Prototype New Hypervisors,http://bareflank.github.io/hypervisor/,24,2,ingve,9/2/2016 20:05 +11899821,Easy sorting in Go,https://github.com/miolini/easysort,5,4,miolini,6/14/2016 4:41 +11858924,Ask HN: Do you think bots are the next big thing?,,10,10,Nivlag,6/7/2016 23:37 +10691392,Ask HN: What is the minimum internet speed needed for working remotely?,,1,2,j2bax,12/7/2015 18:24 +11534391,The Hedonic Treadmill,http://happierhuman.com/hedonic-treadmill/,154,131,shubhamjain,4/20/2016 13:57 +12227695,Diagramming the Story of a 1-Star Review,https://moz.com/blog/diagramming-the-story-of-a-1-star-review,2,1,Alupis,8/4/2016 18:59 +11041410,Digging to the Future Broadband for the Rural North (B4RN),https://vimeo.com/130634706,3,1,revorad,2/5/2016 14:03 +11199011,Macaroons 101: Contextual Confinement Elegant Authorization,https://evancordell.com/2015/09/27/macaroons-101-contextual-confinement.html,30,10,evancordell,2/29/2016 22:07 +12246330,Game Cheating Tutorial: God-Mode in GBA Pokemon,http://www.garin.io/game-cheating-tutorial,1,1,itay_garin,8/8/2016 8:55 +10548125,How to build a serch engine in a static website,https://gist.github.com/sebz/efddfc8fdcb6b480f567,1,1,trunks,11/11/2015 18:12 +11216424,"Tons traffic with zero effort is real, All you need is to translate your site",http://wplang.org/get-more-traffic-creating-multilingual-site/,1,5,pojome,3/3/2016 12:33 +10627600,Ask HN: Is it possible to find work from home job on Linux/Windows?,,3,14,user321,11/25/2015 15:22 +10976929,Welcoming our new Swift 2.2 Overlords: ++ and are deprecated,http://ericasadun.com/2016/01/26/welcoming-our-new-swift-2-2-overlords/,2,2,ingve,1/26/2016 23:00 +11798709,"Jane Fawcett, British Decoder Who Helped Doom the Bismarck, Dies at 95",http://www.nytimes.com/2016/05/30/obituaries/jane-fawcett-british-decoder-who-helped-doom-the-bismarck-dies-at-95.html,91,15,aaronbrethorst,5/29/2016 23:24 +12496558,Ask HN: What's your favorite HN post?,,691,138,rkhraishi,9/14/2016 13:20 +11013263,MVC Podcast Ep.16: ?#?CSforAll?; Be Like Bill; Go AI; Parse; API Design,https://soundcloud.com/mvcthepodcast/episode-16-cs-for-all-parse-for-none,2,1,martystepp,2/1/2016 17:23 +11224784,Computer science is the key to Americas skills crisis,http://techcrunch.com/2016/03/04/computer-science-is-the-key-to-americas-skills-crisis/,44,62,dineshp2,3/4/2016 16:24 +10188955,The insidious message of Disney and Nickelodeon,http://www.theatlantic.com/magazine/archive/2015/07/messages-nickelodeon-disney/395303/#disqus_thread?single_page=true,3,1,snake117,9/9/2015 0:20 +11437114,20 lines of code that beat A/B testing (2012),http://stevehanov.ca/blog/index.php?id=132,545,157,_kush,4/6/2016 6:58 +10896269,"US Intelligence directors personal e-mail, phone hacked",http://arstechnica.com/security/2016/01/us-intelligence-directors-personal-e-mail-phone-hacked/,237,64,pavornyoh,1/13/2016 18:16 +10305124,Stormpath Raises $15M Series B Financing,https://stormpath.com/blog/stormpath-series-b/,7,1,aren,9/30/2015 16:33 +12543603,The paradox at the heart of global politics,http://www.vox.com/2016/9/20/12987636/obama-un-speech-2016-general-assembly,2,1,panarky,9/20/2016 21:30 +12025764,Fashion Center Elevator Puts Ban on Shirtsleeves (1935),"https://news.google.com/newspapers?nid=1955&dat=19350808&id=Ts9WAAAAIBAJ&sjid=LkINAAAAIBAJ&pg=3225,1462495&hl=en",1,1,richardfontana,7/3/2016 12:11 +12357837,Git Undo,http://megakemp.com/2016/08/25/git-undo/,288,170,dominicrodger,8/25/2016 9:38 +10544243,How Soylent Auto-Transcribes Phone Calls to Build a Database of Legal Advice,https://zapier.com/blog/transcribe-phone-calls/,58,70,mikeknoop,11/11/2015 1:44 +10633988,Ask HN: Is Facebook Messenger Censoring Swear Words?,,7,4,byoung2,11/26/2015 17:53 +12444672,Cheap MacBook chargers create big sparks,http://www.righto.com/2016/09/why-you-shouldnt-use-cheap-macbook.html,64,72,dwaxe,9/7/2016 16:26 +11194713,"Hololens pre-orders starting tomorrow, ships in 30 days",http://mspoweruser.com/hololens-pre-orders-starting-tomorrow-ships-in-30-days/,190,112,atilimcetin,2/29/2016 10:49 +12106601,I Don't Give a Shit About Licensing,https://www.rdegges.com/2016/i-dont-give-a-shit-about-licensing/,5,1,zoABSTdm,7/16/2016 15:16 +11053497,CSS Variables landing in Chrome 49,https://developers.google.com/web/updates/2016/02/css-variables-why-should-you-care,186,63,wanda,2/7/2016 16:48 +10492007,Large analysis finds that low-fat diets have low impact,http://www.nature.com/news/low-fat-diets-have-low-impact-1.18678,47,57,cryoshon,11/2/2015 14:44 +11674350,Where does America's e-waste end up? GPS tracker tells all,http://www.pbs.org/newshour/updates/america-e-waste-gps-tracker-tells-all-earthfix/,150,48,walterbell,5/11/2016 11:46 +10762758,Rethinking CS Education (A. Kay),https://www.youtube.com/watch?v=N9c7_8Gp7gI,1,1,cconroy,12/19/2015 5:33 +11797554,MD6 Message-Digest Algorithm,https://en.wikipedia.org/wiki/MD6,30,3,folksonomy,5/29/2016 18:28 +10834502,Ask HN: HN Mobile Site on AdBlock Browser?,,2,3,neltnerb,1/4/2016 8:14 +10806708,Show HN: PeerGym A Health Club Database Made with Elixir/Phoenix,http://www.peergym.com/?,9,5,acconrad,12/29/2015 14:10 +11009779,Why I'm Choosing C++,http://www.cjdrake.com/why-im-choosing-c.html,109,133,flappyjack,2/1/2016 4:29 +10540164,Startup Mapillary Is Turning Crowdsourced Images into a 3-D Virtual World,http://www.technologyreview.com/news/543286/build-a-3-d-virtual-world-with-this-crowdsourced-map-of-the-real-world/,25,2,jimsojim,11/10/2015 16:14 +10585742,NNSA/U.S Air Force complete test of non-nuclear B61-12 nuclear gravity bomb,http://nnsa.energy.gov/mediaroom/pressreleases/b61-b61-12-lep-life-extension-program-snl-lanl-sandia-national-laboratory,2,1,shaaaaawn,11/18/2015 3:32 +10965732,Ask HN: Would you share your health care costs?,,1,5,tekram,1/25/2016 5:21 +10988751,Ask HN: How do I fire someone who has sensitive data on their personal laptop?,,90,97,firingpii,1/28/2016 15:35 +10651159,"The Walnut Rubbing Chinese Gentleman: Ernst Cordes' Travelogue to Beijing, 1937",http://jhiblog.org/2015/11/30/the-walnut-rubbing-chinese-gentleman-ernst-cordes-travelogue-to-beijing-1937/,8,1,lermontov,11/30/2015 19:25 +11533219,How Americans Became So Sensitive to Harm,http://www.theatlantic.com/politics/archive/2016/04/concept-creep/477939/?single_page=true,131,153,aestetix,4/20/2016 9:42 +11702736,When the Billionaire Next Door Moves Out,http://www.nytimes.com/2016/05/15/opinion/sunday/when-the-billionaire-next-door-moves-out.html?partner=rssnyt&emc=rss&_r=0,1,1,hvo,5/15/2016 21:01 +10571044,The Phony Islam of ISIS,http://www.theatlantic.com/international/archive/2015/02/what-muslims-really-want-isis-atlantic/386156/?single_page=true,2,1,dtawfik1,11/15/2015 20:30 +12333604,Guerrilla Bike Lanes in San Francisco,http://www.fastcoexist.com/3062788/world-changing-ideas/guerrilla-bike-lanes-show-cities-how-easy-it-is-to-make-streets-safer,157,266,duck,8/22/2016 1:38 +10883843,"White graduates of Harvard make $94,000 more salary than their black classmates",http://thehustle.co/how-to-get-the-most-from-business-school,19,14,jl87,1/11/2016 21:47 +11026155,Google engineer finds USB Type-C cable thats so bad it fried his Chromebook,http://arstechnica.co.uk/gadgets/2016/02/google-engineer-finds-usb-type-c-cable-thats-so-bad-it-fried-his-chromebook-pixel/,168,89,luastoned,2/3/2016 12:48 +10836918,Show HN: Noble Adblocker,https://chrome.google.com/webstore/detail/noble-adblocker/kopmeijgmcgmcngnaaedmmiggcnojdao,2,4,ksowocki,1/4/2016 17:29 +12015473,Why you should aim for 100 rejections a year,http://lithub.com/why-you-should-aim-for-100-rejections-a-year/,112,69,nathell,7/1/2016 12:34 +11346142,Could Harvesting Fog Help Solve the Worlds Water Crisis?,http://www.newyorker.com/tech/elements/could-harvesting-fog-help-solve-the-worlds-water-crisis,15,7,DamienSF,3/23/2016 16:52 +12323549,From Chrome Apps to the Web,http://blog.chromium.org/2016/08/from-chrome-apps-to-web.html?m=1,12,1,BlakePetersen,8/19/2016 21:21 +11438535,Ask HN: Best API management solution,,11,8,jbnicolai,4/6/2016 13:18 +10824259,"In Star Wars, Was the Death Star Too Big to Fail?",http://mobile.nytimes.com/2016/01/03/opinion/in-star-wars-was-the-death-star-too-big-to-fail.html,2,1,sew,1/2/2016 0:10 +10274765,NASAs Highest-Res Photos yet Show Plutos Bizarre Geology,http://www.wired.com/2015/09/nasas-highest-res-photos-yet-show-plutos-bizarre-geology/,2,1,snehesht,9/24/2015 21:10 +12367266,Welcoming International Entrepreneurs,https://medium.com/the-white-house/welcoming-international-entrepreneurs-d27571475dfd,1,1,yurisagalov,8/26/2016 16:20 +10245542,Rust bare metal on ARM microcontroller,http://antoinealb.net/programming/2015/05/01/rust-on-arm-microcontroller.html,80,20,AndrewDucker,9/19/2015 21:08 +12345283,Instapaper is joining Pinterest,http://blog.instapaper.com/post/149374303661,373,208,ropiku,8/23/2016 17:05 +11886340,The Squirrel Programming Language,http://www.squirrel-lang.org/,72,50,cia48621793,6/12/2016 2:23 +10801728,EverythingMe open and out,https://medium.com/@joeysim/everythingme-open-and-out-6ed94b436e4c#.6br53kv8l,15,7,avitzurel,12/28/2015 16:03 +10745513,AirBar: Brings touch to PCs works with gloves/paintbrush,http://air.bar,89,27,joshio,12/16/2015 16:55 +10544600,Senate Passes Bill to Boost Competitiveness of U.S. Space Industry,http://www.spaceref.com/news/viewpr.html?pid=47294,54,11,walterbell,11/11/2015 3:12 +10901980,Yahoo Releases the Largest-Ever Machine Learning Dataset for Researchers,http://yahoolabs.tumblr.com/post/137281912191/yahoo-releases-the-largest-ever-machine-learning,397,76,denzil_correa,1/14/2016 15:35 +12259008,Revealed: How a weather forecast in 1967 stopped nuclear war,http://www.theregister.co.uk/2016/08/10/1967_weather_forecast_stopped_nuclear_war/,1,1,sohkamyung,8/10/2016 1:54 +11222604,On the Environment and Early Days of Usenet News (1998),http://www.ais.org/~jrh/acn/text/ACN8-1.txt,34,8,ReadToLearn,3/4/2016 8:09 +11470728,Daily Mail owner considering Yahoo bid,http://www.bbc.com/news/business-36011510,66,86,terryauerbach,4/11/2016 11:07 +10197305,New Pokémon Game Takes Place in the Real World,http://kotaku.com/new-pokemon-uses-real-world-maps-1729757653?,11,3,personjerry,9/10/2015 11:06 +10268057,Building a new smart home system need input,,1,2,joshdotai,9/23/2015 20:46 +11193232,Show HN: Summary of Top Hacker News Stories of the Week,https://github.com/simonebrunozzi/MNMN/blob/master/Weekly-Summaries/2016-10.md,11,2,simonebrunozzi,2/29/2016 1:37 +11544048,Simon Pegg Admits He Used Wikipedia to Fact-Check Script for 'Star Trek: Beyond',http://sciencefiction.com/2016/04/20/simon-pegg-admits-used-wikipedia-fact-check-script-star-trek-beyond/,16,8,edward,4/21/2016 17:54 +10765906,A 3-D printer capable of incorporating hydraulics,http://www.technologyreview.com/view/544766/how-to-3-d-print-a-hydraulic-powered-robot/,83,6,ph0rque,12/20/2015 3:12 +11292280,Dont Use Markdown for Documentation,http://ericholscher.com/blog/2016/mar/15/dont-use-markdown-for-technical-docs/,121,75,forsaken,3/15/2016 19:24 +11159411,50 Shades of System Calls,https://sysdig.com/50-shades-of-system-calls/,208,15,davideschiera,2/23/2016 15:17 +12155446,Ask HN: Anyone else *still* having no email deliver with SendGrid?,,8,4,jabo,7/24/2016 23:23 +11732600,Googles Chrome OS will soon be able to run all Android apps,http://techcrunch.com/2016/05/19/googles-chrome-os-will-soon-be-able-to-run-all-android-apps/,4,1,jflowers45,5/19/2016 18:43 +10235757,The Effects of Uber's Surge Pricing: A Case Study [pdf],http://faculty.chicagobooth.edu/chris.nosko/research/effects_of_uber%27s_surge_pricing.pdf,50,47,minimaxir,9/17/2015 20:11 +11523343,Show HN: Track and rate all the movies you have ever watched,http://moviewatch.2helixtech.com,4,2,matthiaswh,4/18/2016 21:36 +11344667,"Email Hell Is Over, Pain-Free HTML Emails Are the Future",http://zurb.com/article/1431/email-hell-is-over-pain-free-html-emails-,3,1,tangue,3/23/2016 14:20 +11495134,Is Telegram down?,https://telegram.org/,1,1,cundd,4/14/2016 8:48 +10231945,Artists turned a glitch into a building,http://www.hopesandfears.com/hopes/city/architecture/216537-interview-bitnik-glitch-facade,32,9,lnguyen,9/17/2015 6:54 +10491581,Show HN: Markdownbox Securely hosted Markdown documents,https://www.markdownbox.com/,4,4,tazer,11/2/2015 13:03 +12439732,New Snowden leaks unravel mystery behind NSA's UK base,https://www.engadget.com/2016/09/06/menwith-hill-station-leak/,43,26,cheleby,9/6/2016 22:28 +11054065,Polygon Shredder,https://www.clicktorelease.com/code/polygon-shredder/,85,29,reimertz,2/7/2016 18:39 +11033403,How to get benefits from email marketing?,,2,1,garvita,2/4/2016 11:52 +10378161,Pinioner,http://pinioner.com,1,1,robertqiu,10/13/2015 2:19 +10178847,I've come to doubt the AI singularity apocalypse,,8,35,weddpros,9/6/2015 20:11 +11770562,Sam Altman's Bubble Talk Bet Is 1 Year Old,http://blog.samaltman.com/bubble-talk?one_year,132,69,ivankirigin,5/25/2016 15:45 +11445377,Apply HN: Webminal Practise Linux from Your Windows Machine,,4,2,giis,4/7/2016 7:24 +11306946,Corvus Low-Level Lisp for LLVM,https://github.com/eudoxia0/corvus,36,9,nikolay,3/17/2016 19:34 +12099920,I tried to fly to London on a fake passport [video],http://www.bbc.co.uk/news/video_and_audio/features/magazine-36744910/36744910,135,162,Turukawa,7/15/2016 10:19 +10846672,The Boss Doesnt Want Your Resume,http://www.wsj.com/articles/the-boss-doesnt-want-your-resume-1452025908,45,55,graceofs,1/5/2016 22:41 +12312745,How Trolls Are Ruining the Internet,http://time.com/4457110/internet-trolls/,2,1,randomname2,8/18/2016 14:31 +10884145,Looking for a technical co-founder: Anyone else dislike the recruiting industry?,,8,11,MrHygiene,1/11/2016 22:39 +11772986,GAO: Information Technology: Federal Agencies Need to Address Aging Systems [pdf],http://www.gao.gov/assets/680/677454.pdf,1,1,eplanit,5/25/2016 20:53 +10318555,How founder control can hold back startups,https://hbr.org/2014/04/how-founder-control-holds-back-start-ups/,1,1,ogezi,10/2/2015 14:01 +10472468,Ask HN: Does anyone else find it bothersome how may recruiters are on here?,,3,2,Morgan17,10/29/2015 16:56 +11236249,Jeb Corliss Grinding the Crack [video],https://www.youtube.com/watch?v=TWfph3iNC-k,2,1,gmays,3/6/2016 23:54 +10837129,I Moved to Linux and Its Even Better Than I Expected,https://medium.com/backchannel/i-moved-to-linux-and-it-s-even-better-than-i-expected-9f2dcac3f8fb#.l1weiou14,40,14,pauljonas,1/4/2016 17:57 +11416768,"In Pod-Based Community Living, Rent Is Cheap, but Sex Is Banned",http://motherboard.vice.com/read/in-pod-based-community-living-rent-is-cheap-but-sex-is-banned,9,4,option_greek,4/3/2016 17:03 +12498581,Wbobeirne/stranger-things: Intro of the Show Stranger Things in CSS,https://github.com/wbobeirne/stranger-things,2,1,simonpure,9/14/2016 16:25 +10269269,San Francisco Ordinance Would Allow Rolling Bicycle Stops,http://sanfrancisco.cbslocal.com/2015/09/22/san-francisco-ordinance-would-allow-rolling-bicycle-stops/,5,1,linkydinkandyou,9/24/2015 1:04 +10524412,How to Keep Track of Your Freelancers,http://www.smallbiztechnology.com/archive/2012/10/need-to-confirm-your-freelance-workers-time-here-are-two-apps-that-help-keep-track.html/#.Vj3J3rcrLIU,2,1,Worksnaps,11/7/2015 10:49 +10372430,Assist threads,http://arrdem.com/2015/10/10/assist_threads/,27,7,luu,10/12/2015 3:46 +10470383,Nellie Bly,http://www.biography.com/people/nellie-bly-9216680,21,7,thehoff,10/29/2015 12:05 +12046634,Learn new languages by watching movies on Netflix,,7,2,walbell,7/6/2016 23:46 +10390062,Why Companies Have Stopped Outsourcing IT,http://blogs.wsj.com/experts/2015/10/14/why-companies-have-stopped-outsourcing-it/,84,56,frostmatthew,10/14/2015 22:50 +10298471,Audi says 2.1M cars had software to cheat emissions,http://www.washingtonpost.com/business/economy/audi-says-21-million-cars-had-software-to-cheat-emissions/2015/09/28/60e4a5c6-65e3-11e5-9ef3-fde182507eac_story.html,3,1,hackuser,9/29/2015 18:33 +10407339,A UX Metric Called Bounce Rate,https://blog.bouncelytics.com/a-ux-metric-called-bounce-rate/,4,1,shubhamjain,10/18/2015 5:51 +11551436,"A Disappointing Ruling on National Security Letters, but Not the Last Word",https://www.eff.org/deeplinks/2016/04/disappointing-ruling-national-security-letters-not-last-word,86,17,DiabloD3,4/22/2016 18:32 +11368310,Operas $1.2B sale: Shocking underdog victory or cruel twist of fate?,http://venturebeat.com/2016/03/17/operas-1-2b-sale-shocking-underdog-victory-or-cruel-twist-of-fate-21-years-in-the-making/,59,53,wormold,3/27/2016 0:57 +12139418,A data analysis reveals the 50 best free online university courses (MOOCs),https://medium.freecodecamp.com/the-data-dont-lie-here-are-the-50-best-free-online-university-courses-of-all-time-b2d9a64edfac#.hvt9i2z2c,3,1,quincyla,7/21/2016 19:34 +10206219,How I F@#ked Up My Startup Dream,http://mystartupland.com/how-i-fked-up-my-startup-dream/,3,4,rezist808,9/11/2015 21:12 +10962489,Android mediaserver exploit heap thermal vision,http://bits-please.blogspot.com/2016/01/android-privilege-escalation-to.html,38,4,laginimaineb,1/24/2016 13:56 +11685518,Show HN: Sharing Excerpts from 10 HN Discussions Each Day,https://hn.icymi.email/,1,2,DailyHN,5/12/2016 18:12 +10621750,My bank has an API so I built online banking,https://medium.com/@jamesallison/mondo-hackathon-e504883a4a05#.iye0e0pne,164,108,jamesallison,11/24/2015 16:34 +12025523,Welcome to the Library of Technomadics,http://microship.com/,33,6,jacquesm,7/3/2016 10:28 +11685753,"Too Many EVs, Too Few Chargers",http://www.1776.vc/insights/tesla-charging-electric-vehicles-ev-evercharge/,3,3,algirau,5/12/2016 18:44 +10514847,EM Drive is still producing thrust after another round of NASA testing,http://www.sciencealert.com/the-em-drive-still-producing-mysterious-thrust-after-another-round-of-nasa-tests,1,1,sawwit,11/5/2015 17:48 +10495904,A Ruby gem for genetic algorithms,https://github.com/dorkrawk/darwinning,2,2,MrBra,11/2/2015 22:42 +11298433,"To bypass code-signing checks, malware gang steals lots of certificates",http://arstechnica.com/security/2016/03/to-bypass-code-signing-checks-malware-gang-steals-lots-of-certificates/,5,1,pavornyoh,3/16/2016 16:16 +10570936,November 2015 Paris attacks,https://en.wikipedia.org/wiki/November_2015_Paris_attacks,8,3,curtis,11/15/2015 20:03 +10821754,Photo Editor A simple online photo editing application,https://github.com/fengyuanchen/photo-editor,16,8,chenfengyuan,1/1/2016 12:52 +12234120,Ukraine has decided to abandon the taxes,,7,8,Stasiklove,8/5/2016 17:21 +10395957,"At IBM, 5% of Mac users call the help desk, compared to 40% of PC users",http://www.jamfsoftware.com/blog/mac-ibm-zero-to-30000-in-6-months/,2,4,KevinBongart,10/15/2015 21:00 +10605494,Firmware.re: a free service that unpacks scans and analyzes any firmware package,http://firmware.re/,37,7,davidthib,11/21/2015 3:54 +10389100,Hacking the Law: The Role of the Marriage Officiant in the State of Washington,http://blogs.msdn.com/b/oldnewthing/archive/2015/10/02/10645222.aspx,18,14,brudgers,10/14/2015 20:11 +11982028,Ask HN: Looking for a Book on Cellular Automata,,63,32,thirstysusrando,6/26/2016 18:42 +11405660,My Little LLVM: Undefined Behavior Is Magic,http://blog.llvm.org/2016/04/undefined-behavior-is-magic.html,6,1,mattiemass,4/1/2016 15:44 +10690754,Dropbox closing Carousel and Mailbox,https://blogs.dropbox.com/dropbox/2015/12/saying-goodbye-to-carousel-and-mailbox/,624,372,cedricr,12/7/2015 17:07 +11493246,Making a Debian Package from scratch,https://code.d3v.site/phame/post/view/1/making_a_debian_package_from_scratch/,4,1,doener,4/13/2016 23:37 +10802374,3 Degrees of LinkedIn Separation from the Military-Industrial-Surveillance State,http://linkedd.s3.amazonaws.com/index.html,86,34,danso,12/28/2015 18:02 +12480733,How the Sugar Industry Shifted Blame to Fat,http://www.nytimes.com/2016/09/13/well/eat/how-the-sugar-industry-shifted-blame-to-fat.html,816,599,okket,9/12/2016 15:51 +12053452,Acorn and Amstrad,http://www.filfre.net/2016/06/acorn-and-amstrad/,77,33,mmastrac,7/8/2016 3:37 +11923714,Matthew Garrett reviews smart plug on Amazon,https://www.amazon.com/review/RA8OETCRWANHU/ref=cm_cr_dp_title?ie=UTF8&ASIN=B01F041DPG&channel=detail-glance&nodeID=228013&store=hi,40,4,JoshTriplett,6/17/2016 16:51 +11577892,"Show HN: passgo, a command line password manager written in go",https://github.com/ejcx/passgo,40,47,ejcx,4/27/2016 4:49 +11451419,Apply HN: Jury Board helping attorneys win cases through jury selection,,11,31,ratliffchrisb,4/7/2016 23:07 +11035955,The Security-Minded Container Engine by CoreOS: rkt Hits 1.0,https://coreos.com/blog/rkt-hits-1.0.html,191,36,polvi,2/4/2016 18:17 +11108439,Google misleadingly shows Clinton 350 delegates ahead in 'Delegates Won',https://www.google.com/search?q=2016+primary+delegates,1,1,shkkmo,2/16/2016 7:47 +11138201,GitHub lock-in?,http://agateau.com/2016/github-lock-in,138,100,g1n016399,2/20/2016 1:40 +12415488,"A global map of wind, weather, and ocean conditions",https://earth.nullschool.net/,438,48,fmariluis,9/2/2016 19:15 +11789869,Ask HN: What is something that doesn't exist that you would pay for?,,22,46,z0a,5/27/2016 23:47 +10434760,The World's Largest Article Marketplace,http://www.articlepad.com,1,1,hgujral,10/22/2015 20:16 +10661405,What Happens to Your Heart When You Dive into the Sea,http://www.buzzfeed.com/jamesnestor/the-master-switch-of-life#.lm4bewMPXY,1,1,chaseadam17,12/2/2015 6:48 +10713300,Exploring AirBnb Data in Boston,https://medium.com/@vql/13-boats-and-a-castle-airbnb-in-boston-1dad9a92039a,11,3,jastr,12/10/2015 20:41 +12059949,New Study Questions Functional Magnetic Resonance Imaging Validity,https://www.sciencebasedmedicine.org/new-study-questions-fmri-validity/,1,1,tokenadult,7/9/2016 3:29 +12560542,Airbnb Raises $555M in Funding,http://www.bloomberg.com/news/articles/2016-09-22/airbnb-raises-at-least-555-million-in-funding,60,66,alexkehr,9/22/2016 21:33 +11812634,Ask HN: What Do You Consider Non Trivial Portfolio Project Ideas?,,12,12,lagbaja,6/1/2016 7:25 +12002623,Evidence for Abundance,http://singularityhub.com/2016/06/27/why-the-world-is-better-than-you-think-in-10-powerful-charts/,32,11,Alexey_Nigin,6/29/2016 16:14 +10791018,Tell HN: Google seems to have changed ncr (no country redirect),,120,32,dragop,12/25/2015 12:01 +11617422,Changelogs (for Android),https://play.google.com/store/apps/details?id=com.thunderclouddev.changelogs&hl=en,1,1,nikolay,5/3/2016 2:32 +10527185,It's time to stop pre-ordering games,http://www.joelotter.com/2015/11/07/stop-preordering.html,2,3,JayOtter,11/8/2015 2:40 +10997816,A Traffic Cops Ticket Bonanza in a Poor Texas Town,http://www.buzzfeed.com/alexcampbell/the-ticket-machine#.akZrRROqd,31,44,colinprince,1/29/2016 19:27 +12170597,Apple Pay Now Accounts for Three-Fourths of U.S. Contactless Payments,http://fortune.com/2016/07/26/apple-pay-contactless/,59,107,prostoalex,7/27/2016 4:52 +10676257,I Hate JavaScript,http://www.redotheweb.com/2015/12/04/i-hate-havascript.html,4,4,fzaninotto,12/4/2015 13:49 +10483800,Remote Mexican village uses solar power to purify water,http://news.mit.edu/2015/mexican-village-solar-power-purify-water-1008,59,24,Oatseller,10/31/2015 19:21 +10851398,Micro-Services: Scala vs. Clojure,http://glennengstrand.info/software/performance/scala/clojure,2,1,gengstrand,1/6/2016 16:30 +11088355,"P2P Bitcoin lending startup LoanBase hacked, hires the criminal as consultant",http://imgur.com/a/D3Iv6,2,1,coryfklein,2/12/2016 16:29 +10574828,"Nom, the fast Rust parser combinators library, just reached 1.0",https://www.clever-cloud.com/blog/engineering/2015/11/16/nom-1-0/,10,2,geal,11/16/2015 15:12 +10824138,"Ask HN: Tools of the Trade, 2016 edition",,17,1,sharjeel,1/1/2016 23:44 +11961525,Boston Dynamics: Introducing SpotMini [video],https://www.youtube.com/watch?v=tf7IEVTDjng,9,1,Jerry2,6/23/2016 15:09 +10905150,Microsoft Drops Prices for Some Azure Instances by Up to 17%,http://techcrunch.com/2016/01/14/microsoft-drops-prices-for-some-azure-instances-by-up-to-17,100,40,boulos,1/14/2016 22:21 +11040932,Dead Men Write No Code,https://medium.com/@gavanw/dead-men-write-no-code-e9a7c5daf5d,260,88,k__,2/5/2016 12:21 +12227874,Remove PG_ZERO and zeroidle (page-zeroing) entirely,http://lists.dragonflybsd.org/pipermail/commits/2016-August/624202.html,142,45,protomyth,8/4/2016 19:31 +10495189,An open letter to Tim Cook (Youre fucking up),https://medium.com/@vlokshin/an-open-letter-to-tim-cook-you-re-fucking-up-9128b5e60f7,4,1,vlokshin,11/2/2015 21:00 +10774440,Lyft Files to Raise as Much as $1B,http://techcrunch.com/2015/12/21/lyft-files-to-raise-as-much-as-1-billion/,69,46,adoming3,12/21/2015 23:39 +11329237,Ask HN: What are the top 5 programming languages used in today's industry?,,2,1,acidfreaks,3/21/2016 16:28 +10614445,How did the letter Z become to be associated with sleeping/snoring?,http://english.stackexchange.com/questions/27045/how-did-the-letter-z-become-to-be-associated-with-sleeping-snoring,43,5,personjerry,11/23/2015 13:34 +12032866,Im a millennial and my generation sucks,http://nypost.com/2016/07/04/im-a-millennial-and-my-generation-sucks/,12,13,Jerry2,7/4/2016 20:38 +10290811,Programmers Aren't Confrontational. F**k You!,http://mikecavaliere.com/fk-you-programmers-arent-confrontational/,7,5,mcavaliere,9/28/2015 15:04 +11833998,Security company Blue Coat files for IPO,http://fortune.com/2016/06/02/bain-blue-coat-ipo/,1,1,byoogle,6/3/2016 23:30 +12466973,Chained Promise: functional tools for recurring promises,https://github.com/google/chained-promise,15,5,chajath,9/10/2016 0:16 +10440946,U.S. Federal Government CIO tells IT leaders to trust the cloud,http://www.cio.com/article/2996268/cloud-computing/us-cio-tells-it-leaders-to-trust-the-cloud.html,2,1,Oatseller,10/23/2015 19:56 +12190042,Clinton campaign also hacked in attacks on Democrats,http://www.reuters.com/article/us-usa-cyber-democrats-investigation-exc-idUSKCN1092HK,18,6,uptown,7/29/2016 21:13 +11711111,Glowworm swarm optimization,https://en.wikipedia.org/wiki/Glowworm_swarm_optimization,2,1,pmoriarty,5/17/2016 2:54 +11261963,How Our Social Lives Can Be as Great as They Were in College,https://medium.com/@baronwilleford/a-way-towards-a-better-social-life-ad430b18882f#.b826rycky,10,10,baron816,3/10/2016 20:18 +10285337,Nix the Tricks: Math tricks defeat understanding,http://www.nixthetricks.com/#hn-repost,139,84,tokenadult,9/27/2015 3:28 +11064551,Startup/Investor Data Pivot Table Filter Explore,http://ravis.io/Find.html,4,2,ravishah,2/9/2016 11:09 +11108057,The Leica Q: A six month field test,http://craigmod.com/sputnik/leica_q/,1,4,jdnier,2/16/2016 5:27 +11886795,"In poor neighborhoods, McDonalds have become de-facto community centers",https://www.theguardian.com/business/2016/jun/08/mcdonalds-community-centers-us-physical-social-networks,314,428,wallflower,6/12/2016 5:35 +11781875,BlueCoat now has a CA signed by Symantec,https://twitter.com/filosottile/status/735940720931012608,32,4,bryanmikaelian,5/26/2016 21:38 +11337905,Estimating the Revenue of a Russian DDoS Booter,http://www.arbornetworks.com/blog/asert/estimating-the-revenue-of-a-russian-ddos-booter/,120,53,r721,3/22/2016 16:54 +10419882,50 of the Most Beautiful Sentences in Literature,http://pulptastic.com/50-beautiful-sentences-literature/,5,1,hunglee2,10/20/2015 15:45 +12317621,Axolotl and Proteus,https://medium.com/@wireapp/axolotl-and-proteus-788519b186a7,1,1,d4l3k,8/19/2016 2:31 +12481434,Startups aren't just for boys: why girls should consider careers in tech,https://medium.com/code-like-a-girl/the-startup-industry-isnt-just-for-boys-why-girls-should-consider-careers-in-tech-7aba1acd12eb#.pd3clouoi,1,1,DinahDavis,9/12/2016 17:01 +12436605,Can this flat-pack truck save the world?,http://www.topgear.com/car-news/big-reads/can-flat-pack-truck-save-world,4,1,ewood,9/6/2016 15:18 +12374936,Show HN: A concurrent Tree Map,http://github.com/arunmoezhi/ConcurrentTreeMap,2,1,arunmoezhi,8/28/2016 1:39 +12338967,First public release of chyves FreeBSD bhyve front-end manager,http://chyves.org/,14,2,eriknstr,8/22/2016 19:58 +10425206,Bye Bye Webrtc2SIP: WebRTC with Asterisk and Amazon AWS Only,http://marcelog.github.io/articles/webrtc_with_asterisk_without_webrtc2sip.html,2,1,marcelog,10/21/2015 13:24 +11346025,Reliable Investing for Smart People,https://incomeclub.co/,3,1,smsanko,3/23/2016 16:42 +10650542,I.M.F. Makes Chinas Renminbi One of Worlds Select Currencies,http://www.nytimes.com/2015/12/01/business/international/china-renminbi-reserve-currency.html,136,110,Q6T46nT668w6i3m,11/30/2015 17:26 +10192579,Stewart Butterfield: We Don't Sell Horse Saddles Here,https://medium.com/@stewart/we-dont-sell-saddles-here-4c59524d650d,2,1,kposehn,9/9/2015 16:59 +10637609,Still can't get udemy to remove my pirated courses they're selling,https://twitter.com/troyhunt/status/670149991881531392,37,1,gortok,11/27/2015 15:18 +11294031,Psychedelic brew called ayahuasca shows promise in treating recurrent depression,http://www.psypost.org/2016/03/psychedelic-brew-called-ayahuasca-shows-promise-treating-recurrent-depression-41668,2,5,cpncrunch,3/16/2016 0:07 +12354115,Sensorwake: Olfactory Alarm Clock,https://sensorwake.com/,18,14,dsr12,8/24/2016 18:21 +11767187,Provisionals for All: Seattle's Next Light Rail Project Must Plan for the Future,http://seattletransitblog.com/2016/05/24/provisionals-for-all-st3-must-plan-for-the-future/,1,1,jseliger,5/25/2016 2:07 +10416872,Keeping the Content Machine Whirring,http://thenavelobservatory.com/2015/07/25/keeping-the-content-machine-whirring/,35,4,apsec112,10/20/2015 1:15 +10298104,The most active members in Hackathon Hackers,https://medium.com/hackathon-hackers/who-is-the-most-active-in-hh-49cbd8447550,11,1,maruthven,9/29/2015 17:52 +10279839,Stupid Apps and Changing the World,http://blog.samaltman.com/stupid-apps-and-changing-the-world,118,80,jimsojim,9/25/2015 18:32 +12077939,Why Are Wheelchairs More Stigmatized Than Glasses?,http://nautil.us/issue/34/adaptation/why-are-wheelchairs-more-stigmatized-than-glasses,2,1,dnetesn,7/12/2016 10:25 +11010564,Looks like Bootsnipp.com has been hacked (and defaced),http://bootsnipp.com/,1,3,n8m,2/1/2016 8:41 +10483857,CPython internals: Codewalk through the Python interpreter source code (2014),http://pgbovine.net/cpython-internals.htm,136,16,avinassh,10/31/2015 19:33 +11704991,"Gene Regulation, Illustrated",http://blogs.scientificamerican.com/sa-visual/gene-regulation-illustrated/,46,5,okket,5/16/2016 8:30 +12416813,U.S. State of Emergency extended 1 more year,http://www.vox.com/2016/8/30/12716268/obama-state-of-emergency,19,1,paulddraper,9/2/2016 22:49 +10513216,Atari Star Raiders Source Code (1979),https://archive.org/details/AtariStarRaidersSourceCode,145,39,cmrdporcupine,11/5/2015 13:44 +11937756,Twitter Acquires Magic Pony,https://blog.twitter.com/2016/increasing-our-investment-in-machine-learning,128,80,rogerfernandezg,6/20/2016 13:15 +11557446,China official says film 'The Martian' shows Americans want space cooperation,http://www.reuters.com/article/us-china-space-idUSKCN0XJ1C2,11,3,mparramon,4/23/2016 21:14 +11876451,The Web We Want,https://webwewant.mozilla.org/en/,298,266,raldu,6/10/2016 14:12 +10617945,Two high-profile electronics Kickstarters suffer big setbacks,http://www.polygon.com/2015/11/23/9786178/two-high-profile-electronics-kickstarters-suffer-big-setbacks,2,1,aaronbrethorst,11/23/2015 22:54 +11808911,HyperDev Developer Playground for Full-Stack Web Apps,http://joelonsoftware.com/items/2016/05/30.html,473,93,GarethX,5/31/2016 18:38 +10494394,OVH scales up in North America,https://www.ovh.com/us/a1952.inauguration-new-headquarters-ovh-montreal,4,2,julien_c,11/2/2015 19:23 +10715878,Faber boss says future of book publishing is mobile,http://www.theguardian.com/books/2015/dec/04/faber-stephen-page-book-publishing-mobile,16,9,prostoalex,12/11/2015 7:30 +11403094,Mark Zuckerberg × H&M,http://markforhm.com,58,33,fabrika,4/1/2016 6:38 +11444289,The Update Framework,https://theupdateframework.github.io/,13,1,luu,4/7/2016 2:39 +11253373,Ask HN: Save to pocket for HN that saves both the article AND the comments?,,19,6,Mahn,3/9/2016 15:11 +10648162,Ask HN: Did GitHub ruin Show HN?,,2,1,3dfan,11/30/2015 6:53 +10526884,Faraday is probably a front for the Apple Car,http://thenextweb.com/apple/2015/11/07/faraday-is-a-mysterious-billion-dollar-car-company-that-wants-you-to-believe-it-isnt-apple-probably-is/,50,16,shazad,11/8/2015 0:50 +10918905,We need to talk about TED,http://www.theguardian.com/commentisfree/2013/dec/30/we-need-to-talk-about-ted,15,3,CarolineW,1/17/2016 9:15 +11778682,How we f***ed up our product development process and what we did to fix it,https://pilot.co/blog/building-a-product-team/,6,2,matid,5/26/2016 15:30 +10477992,Lateral entry to programming?,,1,5,kamekame,10/30/2015 14:28 +10203144,Getting Hired by GE Impresses Absolutely No One in Company's Amusing New Ads,http://www.adweek.com/adfreak/getting-hired-ge-impresses-absolutely-no-one-companys-amusing-new-ads-166760,4,1,journeyofsophia,9/11/2015 11:54 +12362501,The Universal Design Pattern,http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html,4,2,Robin_Message,8/25/2016 21:04 +11980686,2017 will be filled more votes on the EU,https://medium.com/@octskyward/ok-what-now-e3f64d38f7#.ufcl2twn3,35,58,mike_hearn,6/26/2016 13:32 +10611591,An Illustrated History of American Money Design,http://gizmodo.com/an-illustrated-history-of-american-money-design-1743743361,41,1,shawndumas,11/22/2015 21:37 +11708827,Twitter to Stop Counting Photos and Links in 140-Character Limit,http://www.bloomberg.com/news/articles/2016-05-16/twitter-to-stop-counting-photos-and-links-in-140-character-limit,386,188,davidbarker,5/16/2016 19:15 +11742069,Stock Market Machine Learning App for Your Laptop,,1,1,bikle,5/20/2016 22:33 +10771031,A difference between Haskell and Common Lisp,http://chrisdone.com/posts/haskell-lisp-philosophy-difference,179,196,psibi,12/21/2015 13:51 +10630691,Anton (computer),https://en.wikipedia.org/wiki/Anton_(computer),54,9,luu,11/26/2015 0:39 +11089907,Ask HN: Static site generation from mySql?,,4,2,bigdipper,2/12/2016 19:42 +11312918,SQLite with a Fine-Toothed Comb,http://blog.regehr.org/archives/1292,162,17,jsnell,3/18/2016 16:35 +10409193,Show HN: Booky.io Online bookmark manager,http://booky.io/,39,22,motherwhale,10/18/2015 18:37 +12320461,Show HN: Replify Create a REPL for any command,https://gist.github.com/danielrw7/bb88e3dad565c0d8ee54031f6b758a09,112,18,danielrw7,8/19/2016 14:58 +11223938,Show HN: SellingCircle Making buying and selling SaaS pleasant again,http://www.sellingcircle.net,3,1,eric-flw,3/4/2016 14:36 +11948820,Why San Francisco Gets So Foggy in the Summer,http://ww2.kqed.org/lowdown/2015/06/08/making-sense-of-san-franciscos-bone-chilling-summertime-fog/,1,5,ddlatham,6/21/2016 19:41 +11210952,"Ask HN: Comment tool for web pages, for collaborative editing?",,7,2,jonahx,3/2/2016 16:30 +11610095,Why do cicadas have prime life-spans? [pdf],http://www.cims.nyu.edu/~eve2/cicadas.pdf,1,1,p4bl0,5/2/2016 9:08 +10282203,"50 years later, is it time to retract a retraction by a Nobel prize winner?",http://retractionwatch.com/2015/09/25/five-decades-later-is-it-time-to-retract-a-nobelists-retraction/,57,1,greenyoda,9/26/2015 5:22 +12487974,Show HN: BlingBling Make it rain,http://www.blingbling.money,16,3,mekanics-2,9/13/2016 13:27 +12486744,"Running a Deep Learning (Dream) Machine, Part II",http://graphific.github.io/posts/running-a-deep-learning-dream-machine/,13,1,iamjeff,9/13/2016 10:08 +10694061,How Finland's Basic Income Experiment Will Work,http://www.fastcoexist.com/3052595/how-finlands-exciting-basic-income-experiment-will-work-and-what-we-can-learn-from-it,99,81,nkurz,12/8/2015 1:02 +11144216,At the Modules of Madness,http://thedoomthatcametopuppet.tumblr.com/,2,1,dEnigma,2/21/2016 12:19 +10652340,"Lessons Learned After Shutting My Startup, Following a Six-Year Struggle",http://www.smashingmagazine.com/2015/11/lessons-learned-shutting-startup/,110,60,rmason,11/30/2015 22:25 +10900544,The Zappos Exodus Continues After a Radical Management Experiment,http://bits.blogs.nytimes.com/2016/01/13/after-a-radical-management-experiment-the-zappos-exodus-continues/?ref=business,2,3,mgav,1/14/2016 10:38 +10396705,Theranos CEO Elizabeth Holmes Replies to WSJ Allegations on CNBC,http://video.cnbc.com/gallery/?video=3000432502&utm_medium=twitter&utm_source=twitterfeed,4,3,NN88,10/15/2015 23:44 +11487742,Verizon Workers Strike on East Coast After Deadline Passes,http://www.nytimes.com/2016/04/14/business/verizon-workers-strike.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=first-column-region®ion=top-news&WT.nav=top-news&_r=0,107,131,Amorymeltzer,4/13/2016 13:01 +12351038,"Why cyclists should be able to roll through stop signs, ride through red lights",http://www.vox.com/2014/5/9/5691098/why-cyclists-should-be-able-to-roll-through-stop-signs-and-ride,40,77,RyanMcGreal,8/24/2016 10:49 +10543530,Movement-Based Behaviors and Leukocyte Telomere Length Among US Adults (study),http://www.ncbi.nlm.nih.gov/pubmed/25970659,1,2,DrScump,11/10/2015 23:36 +11947139,Sony agrees to pay millions to gamers to settle PS3 Linux debacle,http://arstechnica.com/tech-policy/2016/06/if-you-used-to-run-linux-on-your-ps3-you-could-get-55-from-sony/,117,57,bpierre,6/21/2016 16:51 +12266931,Phoenix Channels vs. Rails Action Cable,https://dockyard.com/blog/2016/08/09/phoenix-channels-vs-rails-action-cable,12,1,slashdotdash,8/11/2016 8:53 +11694325,No Sane Compiler Would Optimize Atomics,https://github.com/jfbastien/no-sane-compiler,65,56,adamnemecek,5/14/2016 2:34 +11714068,Stanford quantifies the privacy-stripping power of metadata,http://techcrunch.com/2016/05/17/stanford-quantifies-the-privacy-stripping-power-of-metadata/,251,71,zbjornson,5/17/2016 14:46 +12179368,Chinese satellite is one giant step for the quantum internet,http://www.nature.com/news/chinese-satellite-is-one-giant-step-for-the-quantum-internet-1.20329,101,28,jonbaer,7/28/2016 10:09 +10631131,New Bing app for iOS rocks,http://www.engadget.com/2015/11/18/microsoft-bing-for-iphone-app-integration-update/,1,1,seshagiric,11/26/2015 3:37 +12385458,Accessing RAM sometimes costs extra log(N),http://arxiv.org/abs/1212.0703,50,3,Tojot,8/29/2016 21:22 +10469568,License Plate Readers Exposed How Public Safety Agencies Responded,https://www.eff.org/deeplinks/2015/10/license-plate-readers-exposed-how-public-safety-agencies-responded-massive,85,33,reitanqild,10/29/2015 6:19 +10363933,Understanding Infrastructure as Code,https://cloudonaut.io/understanding-infrastructure-as-code/,21,4,widdix,10/10/2015 0:15 +11256021,Ansible vs. Chef (2015),http://tjheeta.github.io/2015/04/15/ansible-vs-chef/,170,99,fanf2,3/9/2016 22:00 +10468755,What's new in TeX,http://lwn.net/SubscriberLink/662053/1729d17e91b68d47/,95,59,leephillips,10/29/2015 2:03 +11183396,From Freebase to Wikidata: The Great Migration [pdf],http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/44818.pdf,11,1,okfine,2/26/2016 19:19 +11830584,Monitoring team health in a startup,https://ofcoursebooks.com/platypodes/,10,6,zackgilbert,6/3/2016 14:43 +10484461,Git freebase,http://ericrie.se/blog/git-freebase/,25,20,EricRiese,10/31/2015 22:22 +12015382,Ask HN: Where is the next Shenzhen?,,50,15,unfortunateface,7/1/2016 12:14 +12492075,Help Needed: Facebook claims my friend's name doesn't exist,,3,3,ColinWright,9/13/2016 20:45 +11762130,How to Motivate Developers? Let Them Slash Monsters,https://medium.com/@tom_z_official/how-to-motivate-developers-let-them-slash-monsters-1adca48dd858#.h2igvuidq,2,2,tom_z_official,5/24/2016 15:01 +10601685,Own a Vizio Smart TV? Its Watching You,http://www.propublica.org/article/own-a-vizio-smart-tv-its-watching-you,60,39,tysone,11/20/2015 15:37 +11740108,How Trumps troll army is cashing in on his campaign,http://fusion.net/story/302013/trump-troll-army-facebook-money,1,1,cossatot,5/20/2016 18:10 +10697003,Basecamp moved their blog (37svn) over to Medium. Should we all do so?,https://m.signalvnoise.com/signal-v-noise-moves-to-medium-c8083ce19686?source=featured---,2,1,tiffanyh,12/8/2015 15:44 +11587904,"Python, Machine Learning, and Language Wars",http://sebastianraschka.com/blog/2015/why-python.html#is-python-a-dying-language,5,1,allenleein,4/28/2016 11:18 +10851564,Ultimate Guide for Evolving Architectures,http://www.firatatagun.com/blog/2016/01/05/ultimate-guide-for-evolving-architectures/,2,1,fatagun,1/6/2016 16:51 +11609526,This Tech Bubble Is Bursting,http://www.wsj.com/articles/this-tech-bubble-is-bursting-1462161662?mod=e2fb,10,10,prostoalex,5/2/2016 6:35 +11476298,YC Emails Out,,14,8,lettergram,4/12/2016 0:26 +10439053,Northwestern Finds a New Solution to the Ticket Pricing Dilemma (2014),http://www.forbes.com/sites/kevintrahan/2014/10/21/a-solution-to-the-flawed-way-college-football-teams-sell-tickets/,1,1,brianbreslin,10/23/2015 15:10 +11502301,European Parliament adopts tough new data protection rules,http://techcrunch.com/2016/04/14/european-parliament-adopts-tough-new-data-protection-rules/,30,11,walterbell,4/15/2016 5:03 +10748324,OmniCISA Pits DHS Against FCC and FTC on User Privacy,https://www.justsecurity.org/28386/omnicisa-worse-privacy-cisa/,9,1,tptacek,12/16/2015 23:45 +10511432,Ask HN: How to manage number of phone calls without seeming rude?,,6,9,martinald,11/5/2015 3:17 +10370036,Sll strip long lines from grep output,https://github.com/kevinburke/sll,3,2,kevinburke,10/11/2015 17:03 +10408064,Compile-time C++ RNG tricks,http://www.elbeno.com/blog/?p=1288,24,6,ingve,10/18/2015 12:41 +12560494,Wall Streets IPO Business: The Worst in 20 Years,http://www.wsj.com/articles/wall-streets-stock-selling-business-the-worst-in-20-years-1474536602,2,1,dcgudeman,9/22/2016 21:25 +11620827,The Monospinner: worlds mechanically simplest controllable flying machine,http://robohub.org/the-monospinner-worlds-mechanically-simplest-controllable-flying-machine/,13,2,robofenix,5/3/2016 14:13 +10420600,Clearbit Open Graph Logo Spec,http://blog.clearbit.com/open-graph-logo,17,10,rsamvit,10/20/2015 17:44 +10300225,How We Work: Swarms [video],http://engineering.sharethis.com/post/130159480299/how-we-work-swarms,1,5,imosquera,9/29/2015 22:24 +11265031,Plastic-eating bacteria discovered,http://www.theverge.com/2016/3/10/11194150/plastic-eating-baterium-pet,11,1,kakakiki,3/11/2016 6:40 +10547151,Show HN: Http longpolling made easy in golang,https://github.com/jcuga/golongpoll#basic-usage,5,2,jcuga,11/11/2015 15:40 +10797043,32C3 Chaos Communication Congress Streams Online,http://streaming.media.ccc.de/32c3/,414,69,axx,12/27/2015 10:31 +10500083,Googles Inbox Can Now Respond Automatically,http://techcrunch.com/2015/11/03/with-smart-reply-googles-inbox-can-now-respond-to-emails-for-you-automatically/,4,1,yulunli,11/3/2015 15:19 +12289729,Japanese Audiophiles Install $10k Personal Electricity Utility Poles,http://www.wsj.com/articles/a-gift-for-music-lovers-who-have-it-all-a-personal-utility-pole-1471189463,34,55,Osiris30,8/15/2016 11:29 +11585378,Public VR Critique #1: Nighttime Terror,https://developer.oculus.com/blog/public-vr-critique-1-nighttime-terror/,64,18,jrbedard,4/27/2016 23:13 +10267074,Y Combinator's Search for the Next Big Startup [video],http://www.bloomberg.com/news/videos/2015-09-23/y-combinator-s-search-for-the-next-big-startup,28,3,foobarqux,9/23/2015 18:39 +11941665,Why Turing-complete smart contracts are doomed,https://www.reddit.com/r/ethereum/comments/4p0um9/why_turingcomplete_smart_contracts_are_doomed/,2,2,jarsin,6/20/2016 21:18 +10896428,Brazils Digital Backlash,http://www.nytimes.com/2016/01/12/opinion/brazils-digital-backlash.html,4,1,Futurebot,1/13/2016 18:38 +11697030,Driverless buses hit the streets of Sion,http://www.swissinfo.ch/eng/hop-on-board_driverless-buses-hit-the-streets-of-sion/41846698,106,68,jacinda,5/14/2016 17:04 +12254570,Recommendations for building a career in open source,https://opensource.com/business/16/8/building-career-open-source,64,20,jonobacon,8/9/2016 14:10 +12159351,All Signs Point to Russia Being Behind the DNC Hack,http://motherboard.vice.com/read/all-signs-point-to-russia-being-behind-the-dnc-hack,22,29,NN88,7/25/2016 15:34 +10636470,The Big Read: Crossing the Antarctic by Degrees,http://www.nzherald.co.nz/nz/news/article.cfm?c_id=1&objectid=11552416,1,1,_mgr,11/27/2015 8:48 +10552884,Show HN: How a Startup Should Pitch to an Influencer,http://withoutbullshit.com/blog/finimize-common-sense-financial-writing/,9,1,stindle,11/12/2015 13:14 +11559606,How the internet has changed a remote American town,https://backchannel.com/the-internet-really-has-changed-everything-here-s-the-proof-928eaead18a8#.594fxr18i,3,1,gpvos,4/24/2016 13:27 +10295114,Apache Flink: Juggling with Bits and Bytes,https://flink.apache.org/news/2015/05/11/Juggling-with-Bits-and-Bytes.html,52,4,hemapani,9/29/2015 8:11 +10683945,Lessons learned building an open source business,http://werd.io/2015/open-issues-lessons-learned-building-an-open-source-business,1,1,kawera,12/6/2015 1:05 +10468555,On End-To-End Program Generation from User Intention by Deep Neural Networks,http://arxiv.org/abs/1510.07211,20,1,apsec112,10/29/2015 1:01 +10402060,Joost Meerloo,https://en.wikipedia.org/wiki/Joost_Meerloo,1,1,Oatseller,10/16/2015 21:17 +10861715,Tell HN: Looking to pass on the ownership of two open source projects,,4,7,bramgg,1/7/2016 23:41 +12145751,Apple says Pokémon Go is the most downloaded app in its first week ever,https://techcrunch.com/2016/07/22/apple-says-pokemon-go-is-the-most-downloaded-app-in-its-first-week-ever/,422,210,doppp,7/22/2016 18:44 +11789116,Thinking in React,https://facebook.github.io/react/docs/thinking-in-react.html,250,52,AJAlabs,5/27/2016 21:20 +12149969,Agner Fog's New ISA: ForwardCom,https://github.com/ForwardCom/manual,2,1,tbirdz,7/23/2016 16:26 +11412695,Why Does Windows Think My Keyboard Is a Toaster? (2014),http://superuser.com/questions/792607/why-does-windows-think-that-my-wireless-keyboard-is-a-toaster,175,28,zo1,4/2/2016 18:41 +11181013,March is encryption bill month,http://www.politico.com/tipsheets/morning-cybersecurity/2016/02/march-is-encryption-bill-month-hackers-going-after-japans-infrastructure-a-mixed-final-2015-tally-212865,1,1,studentrob,2/26/2016 12:23 +11062477,How do you spot a nonconformist? Check their Internet browser,http://www.mprnews.org/story/2016/02/08/npr-books-originals-non-comformists,25,14,Amorymeltzer,2/9/2016 1:47 +11017460,"Apple Inc, going for free within 8 years",https://kirkburgess.wordpress.com/2016/02/01/apple-inc-going-for-free-within-8-years/,17,2,aaronbrethorst,2/2/2016 3:11 +10189405,App that helps find cheapest care by comparing prices of any medical procedure,http://www.faircare.io/,17,12,vonwong,9/9/2015 2:48 +10687196,'I went blind and feel partly to blame',http://www.bbc.co.uk/news/disability-34847776,4,4,vanilla-almond,12/6/2015 23:28 +10520847,Michael Bloomberg Targets Attorneys General with Ads on Carbon Emissions,http://www.nytimes.com/2015/11/07/us/politics/michael-bloomberg-state-attorneys-general-carbon-emissions.html,2,1,davidf18,11/6/2015 18:02 +11252845,Types of MVP,http://mlsdev.com/en/blog/50-types-of-mvp,5,6,MLSDev,3/9/2016 13:36 +11898522,Where the Hell Are the New MacBooks?,http://gizmodo.com/where-the-hell-are-the-new-macbooks-1781910047,20,7,riprowan,6/13/2016 23:11 +10519578,Welcome to systemd conference. Lunch is served.: Lennart Poettering's keynote,https://www.youtube.com/watch?v=I4AAjEaTehk,5,3,JdeBP,11/6/2015 14:26 +12492914,Show HN: Pare down your S3 Bill; with `du` for AWS S3,https://github.com/owocki/s3_disk_util,22,10,ksowocki,9/13/2016 22:57 +11746475,Show HN: Juicy Tag Connect all your social media profiles with one link,http://www.juicytag.com,3,2,pnwhyc,5/21/2016 22:30 +11930078,Kerberos Golden Ticket Protection Mitigating Pass-The-Ticket on Active Directory [pdf],http://cert.europa.eu/static/WhitePapers/UPDATED%20-%20CERT-EU_Security_Whitepaper_2014-007_Kerberos_Golden_Ticket_Protection_v1_4.pdf,1,1,based2,6/18/2016 19:03 +10528242,Germany systematically spied on own allies on grand scale,https://www.rt.com/news/321183-germany-spying-surveillance-bnd/,2,1,happyscrappy,11/8/2015 11:38 +10843405,"Show HN: Pleasant Fish, a platform to get feedback from co-workers",https://pleasantfish.com/,8,3,asadjb,1/5/2016 14:40 +10447204,"Creator, The Facebook",https://www.quora.com/What-was-it-like-to-be-Mark-Zuckerbergs-classmate/answer/Aaron-Greenspan?share=1,3,1,vishnuks,10/25/2015 16:00 +10353817,"EC2 Container Service Update Container Registry, ECS CLI, AZ-Aware Scheduling",https://aws.amazon.com/blogs/aws/ec2-container-service-update-container-registry-ecs-cli-az-aware-scheduling-and-more/,32,8,alexbilbie,10/8/2015 16:30 +10983632,Fast 3kb React alternative with the same ES6 API. Components and virtual DOM,https://github.com/developit/preact,3,1,BafS,1/27/2016 21:36 +10823740,Where Some of the Worst Attacks on Social Science Come From,http://nymag.com/scienceofus/2015/12/when-liberals-attack-social-science.html,28,2,randomname2,1/1/2016 22:16 +11800510,SORT JSON ALPHABETICALLY Supports Objects/Arrays/Collection,http://novicelab.org/jsonabc,1,1,shivrajrath,5/30/2016 9:47 +10417693,New mathematical method reveals structure in neural activity in the brain,http://science.psu.edu/news-and-events/2015-news/ItskovCurto10-2015,64,8,ubasu,10/20/2015 6:14 +11952909,Kill All the Mosquitoes?,http://www.smithsonianmag.com/innovation/kill-all-mosquitos-180959069/?no-ist,2,1,tim333,6/22/2016 11:21 +12205270,Ask HN: Command line only CRM's?,,8,4,curuinor,8/1/2016 19:40 +11618763,Ask HN: Any good lectures/articles on building/running online community?,,1,3,rayalez,5/3/2016 8:03 +11748474,$1M will buy 122 acres in part of U.S. National Radio Quiet Zone,https://www.washingtonpost.com/local/trafficandcommuting/fed-up-with-high-dc-housing-costs-1m-will-buy-you-an-entire-w-virginia-town/2016/05/21/dfd4241e-16ce-11e6-aa55-670cabef46e0_story.html,102,71,jamessun,5/22/2016 13:16 +11807395,Open Beta of HyperDev,https://hyperdev.com/blog/hyperdev-open-beta/,7,2,ahhrrr,5/31/2016 16:13 +10838676,Dick Smith Is the Greatest Private Equity Heist of All Time,https://foragerfunds.com/bristlemouth/dick-smith-is-the-greatest-private-equity-heist-of-all-time/,6,3,mfincham,1/4/2016 21:15 +11065982,Show HN: Konsus.com On-demand freelancers via chat,http://www.konsus.com/,64,13,SRasch,2/9/2016 15:43 +11776684,The enduring whiteness of the American media,http://www.theguardian.com/world/2016/may/25/enduring-whiteness-of-american-journalism,3,1,pmcpinto,5/26/2016 9:32 +10600526,"Bower is alive, looking for contributors",http://bower.io/blog/2015/bower-alive-looking-contributors/,1,1,rickhanlonii,11/20/2015 10:21 +11635834,Ask HN: Can we achieve total self-sufficiency with today´s technology?,,1,3,zehnfischer,5/5/2016 13:24 +12297361,Show HN: Armchair Athletes Free College and Pro Football Pickem Leagues,http://www.armchairathletes.com/,2,1,harrisreynolds,8/16/2016 13:34 +11748607,Makeshift weapons are becoming more dangerous with commercially available kit,http://www.economist.com/news/science-and-technology/21699098-makeshift-weapons-are-becoming-more-dangerous-highly-sophisticated?fsrc=scn%2Ffb%2Fte%2Fpe%2Fed%2Fhellskitchens,54,32,edward,5/22/2016 14:11 +10649189,Emacspeak 43.0 (SoundDog) Unleashed,http://emacspeak.blogspot.com/2015/11/emacspeak-430-sounddog-unleashed.html,28,6,lelf,11/30/2015 13:17 +10813551,Upcoming Hurdles for the Semiconductor Industry,http://semiengineering.com/upcoming-hurdles-for-the-semiconductor-industry-2/,15,1,walterbell,12/30/2015 18:48 +12337405,Why I Created YADA,https://yadadata.com/2016/08/22/why-i-created-yada/,35,36,varontron,8/22/2016 16:23 +11514516,Grading Trudeau on quantum computing,http://www.scottaaronson.com/blog/?p=2694,197,119,privong,4/17/2016 14:07 +11401442,"Show HN: Composer's Sketchpad, my painterly and Pencil-ready sequencer for iPad",https://www.youtube.com/watch?v=ypsLgTY8NXs,4,1,archagon,3/31/2016 23:37 +10708688,WP Engine Got Hacked,https://wpengine.com/support/infosec/,16,4,dawie,12/10/2015 3:28 +10577496,"Vulkan: Scaling to multiple threads Live stream, Thursday Nov 19 @ 4pm GMT",http://www.youtube.com/watch?v=s3ub6iVThro,3,1,1ace,11/16/2015 21:52 +12235543,Ask HN: Should I go for the job with more money but less passion?,,15,9,empty-throwaway,8/5/2016 20:31 +10351496,PHP plugin for Light Table,https://github.com/thierrymarianne/LightTable-PHP,2,1,thierrymarianne,10/8/2015 8:27 +11114644,Judge: Apple must help FBI hack San Bernardino killer's phone,http://www.cbsnews.com/news/apple-must-help-us-hack-san-bernardino-killers-phone-judge-rules/,2,1,Bud,2/17/2016 1:59 +10734765,A domain move disaster,http://www.paulingraham.com/domain-move-disaster.html,143,91,lucabenazzi,12/14/2015 23:26 +11367425,"Thanks for Ruining Another Game Forever, Computers",http://blog.codinghorror.com/thanks-for-ruining-another-game-forever-computers/,6,1,fforflo,3/26/2016 20:58 +10954868,When chickens go wild,http://www.nature.com/news/when-chickens-go-wild-1.19195,1,2,Amorymeltzer,1/22/2016 19:08 +10483788,Product Hunts Community Is Priceless,https://medium.com/@500Miles/product-hunt-s-community-is-priceless-7192b0d2adba#.jsdf6b5m3,2,1,s_reid9,10/31/2015 19:20 +11461593,AngularJS project structure,http://www.davecooper.org/angular-project-structure,93,34,gurgus,4/9/2016 15:13 +10877504,Show HN: IPsec/L2TP VPN server auto install scripts,https://github.com/hwdsl2/setup-ipsec-vpn,6,2,hwdsl2,1/10/2016 22:20 +11524237,Google Play Music adds podcasts with machine learning recommendations,http://officialandroid.blogspot.com/2016/04/welcome-to-google-play-music-podcast.html,1,1,nattaylor,4/19/2016 1:06 +11815079,Ask HN: Alternatives to Team Viewer?,,45,57,riebschlager,6/1/2016 15:22 +12408288,Beware: Nylas cloud email retains all emails after account deletion,,3,1,pheeney,9/1/2016 19:46 +10375813,Decentralized prediction market posts detailed report on $5.2M crowdsale,http://www.augur.net/blog/the-crowdsale-what-s-new-and-what-s-next,13,2,json554433,10/12/2015 17:12 +11907497,Paid Online Project Management App offers to use it 100 years for FREE,,2,4,apascrum,6/15/2016 6:26 +10976714,New Yorks Subway Frequency Guidelines Are the Wrong Approach,https://pedestrianobservations.wordpress.com/2015/12/13/new-yorks-subway-frequency-guidelines-are-the-wrong-approach/,77,43,another,1/26/2016 22:29 +10654938,Executing survival plan for Jolla,http://insalgo.com/en/products/aidlab,1,1,Insalgo,12/1/2015 12:57 +11415832,The centre left is in sharp decline across Europe,http://www.economist.com/news/briefing/21695887-centre-left-sharp-decline-across-europe-rose-thou-art-sick?frsc=dg%7Cc,6,1,thesumofall,4/3/2016 12:05 +12221001,Wal-mart in talks to buy Jet.com for $3 billion,http://www.wsj.com/article_email/wal-mart-in-talks-to-buy-web-retailer-jet-com-1470237311-lMyQjAxMTE2MTAxMzEwODM2Wj,2,2,putlake,8/3/2016 19:58 +11029898,January 28th Incident Report,https://github.com/blog/2106-january-28th-incident-report,451,182,Oompa,2/3/2016 21:27 +11084217,Snowdrop The Game Engine Behind the Division,http://www.polygon.com/2014/3/19/5524924/the-division-video-snowdrop-game-engine,2,2,newman314,2/11/2016 23:37 +10182548,I'm developing a daily network website,,3,10,rishiva,9/7/2015 18:53 +11629992,ECB voted and agrees to stop printing 500 Euro notes,http://uk.reuters.com/article/uk-ecb-banknote-idUKKCN0XV23X,2,2,Melkman,5/4/2016 17:32 +12373517,Certificate Authority Gave Out Certs for GitHub to a GitHub Account Holder,https://www.techdirt.com/articles/20160825/12181835347/certificate-authority-gave-out-certs-github-to-someone-who-just-had-github-account.shtml,109,38,okket,8/27/2016 18:26 +11887647,Eliminate tornado threats by building giant walls (2014),http://www.worldscientific.com/page/pressroom/2014-06-23-02,3,1,johan_larson,6/12/2016 11:40 +12140858,Ask HN: How do I use the Firebase Hacker News API with their 3.0 version,,11,4,joshstrange,7/21/2016 23:47 +10706534,GCHQ director's Xmas Puzzle,http://www.gchq.gov.uk/press_and_media/news_and_features/Pages/Director%27s-Christmas-puzzle-2015.aspx,5,1,DanBC,12/9/2015 20:36 +10187464,Predicting our next president: data says Sanders vs. Trump,http://presidential.io/app.html,3,1,simonamarie,9/8/2015 18:40 +10189061,Give It Up (2010),http://www.laphamsquarterly.org/philanthropy/give-it,17,2,jonathansizz,9/9/2015 0:51 +11921164,The most alienating thing that happened to me as a female engineer,http://niniane.blogspot.com/2016/06/the-most-alienating-thing-that-ever.html,48,92,warrenmar,6/17/2016 7:37 +12050775,The New iPhone Might Shut Off Next Time You Try to Film the Police in Public,https://mic.com/articles/147377/the-new-i-phone-might-shut-off-next-time-you-try-to-film-the-police-in-public#.mirGdW9Vn,10,13,AdamN,7/7/2016 17:24 +11805855,Rise of Ad-Blocking Software Threatens Online Revenue,http://www.nytimes.com/2016/05/31/business/international/smartphone-ad-blocking-software-mobile.html?hpw&rref=technology&action=click&pgtype=Homepage&module=well-region®ion=bottom-well&WT.nav=bottom-well&_r=1,1,1,hvo,5/31/2016 11:12 +10631806,UUIDs generally do not meet security requirements,https://littlemaninmyhead.wordpress.com/2015/11/22/cautionary-note-uuids-should-generally-not-be-used-for-authentication-tokens/,130,62,xnyhps,11/26/2015 7:47 +11962379,Write Code to Rewrite Your Code: jscodeshift,http://www.datasciencecentral.com/profiles/blogs/write-code-to-rewrite-your-code-jscodeshift?utm_content=buffer598df&utm_medium=social&utm_source=linkedin.com&utm_campaign=buffer,82,21,PaulHoule,6/23/2016 16:42 +10177925,Rising to Your Level of Misery at Work,http://www.nytimes.com/2015/09/06/opinion/arthur-brooks-rising-to-your-level-of-misery-at-work.html?_r=0,2,1,ohjeez,9/6/2015 15:39 +11684721,Statins alert over computer glitch,http://www.bbc.co.uk/news/health-36274791,3,1,DanBC,5/12/2016 16:35 +10458910,Playing Poker with Elixir (pt 1),http://blog.tokafish.com/playing-poker-with-elixir-part-1/,3,2,wless1,10/27/2015 16:06 +11403128,Red Hat loves .NET,http://redhatloves.net/,1,1,tychuz,4/1/2016 6:48 +10427742,How to make your last name plural,http://www.slate.com/blogs/browbeat/2014/11/25/how_to_make_your_last_name_plural_on_holiday_cards_and_avoid_apostrophe.html,2,1,Amorymeltzer,10/21/2015 19:02 +10883588,Why Your Children's Television Program Sucks: Mickey Mouse Clubhouse,http://adequateman.deadspin.com/why-your-childrens-television-program-sucks-mickey-mou-1751547492,4,1,ourmandave,1/11/2016 21:10 +12540692,IKEv1 Information Disclosure Vulnerability in Multiple Cisco Products,https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20160916-ikev1,94,27,foolrush,9/20/2016 16:19 +10888061,Code that will break in Python 4,http://astrofrog.github.io/blog/2016/01/12/stop-writing-python-4-incompatible-code/,433,221,astrofrog,1/12/2016 15:48 +10735138,Ask HN: Does your company use a tool for outbound open source contributions?,,3,3,BenBoe,12/15/2015 0:38 +10498280,Internet firms to be banned from offering unbreakable encryption under new laws,http://www.telegraph.co.uk/news/uknews/terrorism-in-the-uk/11970391/Internet-firms-to-be-banned-from-offering-out-of-reach-communications-under-new-laws.html,47,2,moviuro,11/3/2015 8:43 +11552441,"Twitter's $500,000 promote ads challenge",https://blog.twitter.com/2016/promote-ads-api-challenge,1,1,mgalka,4/22/2016 20:43 +11766783,"Big Brains, Small Minds",http://chronicle.com/article/Big-Brains-Small-Minds/236480,2,1,Futurebot,5/25/2016 0:37 +12160663,Ask HN: What service or product would you be customer 1 for?,,3,3,xhrpost,7/25/2016 18:45 +10192292,Profile of Lars Bak (2009),http://www.ft.com/cms/s/0/03775904-177c-11de-8c9d-0000779fd2ac.html,52,9,callum85,9/9/2015 16:14 +10802003,Picture Swap [NSFW]: Upload a picture to discover what the last visitor uploaded,http://pictureswap.herokuapp.com,15,8,dowrow,12/28/2015 16:52 +11289406,"Eliminating Delays from systemd-journald, Part 1",https://coreos.com/blog/eliminating-journald-delays-part-1.html,59,27,philips,3/15/2016 13:27 +11669288,Show HN: SEO-Report.io Actionable SEO metrics in your inbox,https://seo-report.io/,2,3,AlikhanPeleg,5/10/2016 18:14 +11211713,Ask HN: Should I be concerned about using company's computer for side projects?,,16,30,dmragone,3/2/2016 18:06 +10320296,Using Apache Kafka for Consumer Metrics,http://product.hubspot.com/blog/kafka-at-hubspot-part-1-critical-consumer-metrics,47,2,zek,10/2/2015 18:23 +12054705,Oracle and the fall of Java EE,https://techsticles.blogspot.com/2016/07/oracle-and-fall-of-java-ee.html?utm_content=bufferf1a2e&utm_medium=social&utm_source=linkedin.com&utm_campaign=buffer,191,181,SanderMak,7/8/2016 11:17 +11159900,Ctmg: a Linux-native bash script Truecrypt replacement,https://git.zx2c4.com/ctmg/about/,12,1,zx2c4,2/23/2016 16:19 +12123916,"Too Many Deer on the Road? Let Cougars Return, Study Says",http://www.nytimes.com/2016/07/19/science/too-many-deer-on-the-road-let-cougars-return-study-says.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=rank&module=package&version=highlights&contentPlacement=2&pgtype=sectionfront,7,1,hvo,7/19/2016 18:54 +11941897,Transportation Enabling a Robust Cislunar Space Economy [pdf],http://www.ulalaunch.com/uploads/docs/Published_Papers/Commercial_Space/TransportationEnablingRobustCislunarEconomy_June16.pdf,29,12,Gravityloss,6/20/2016 21:54 +11164950,Ask HN: Is there an app like Sqwiggle for screencaps,,1,2,hkyeti,2/24/2016 6:32 +11748812,Ask HN: Has all interesting desktop software already been written?,,78,102,nkobeissi,5/22/2016 14:58 +10956309,Apple Veteran Overseeing Electric-Car Project Leaving Company,http://www.wsj.com/articles/apple-veteran-overseeing-electric-car-project-leaving-company-1453505241,68,37,coloneltcb,1/22/2016 23:39 +11429380,Show HN: My U.G.C. Activities site,https://thingdoer.com/find-things-to-do?sort=views,2,1,timhj,4/5/2016 10:55 +10182281,The Nitty Gritty of In-Memory Computing,http://www.theplatform.net/2015/09/07/the-nitty-gritty-of-in-memory-computing/,48,1,nkurz,9/7/2015 17:42 +10806386,Tech Innovation in China,http://www.wired.com/2015/12/tech-innovation-in-china/,40,12,denzil_correa,12/29/2015 12:26 +12426399,Ask HN: Unix system version information,,1,2,jph,9/4/2016 19:57 +11915646,The Ultimate Guide to Win SlideShare,http://blog.dashmote.com/blog/the-ultimate-guide-to-win-slideshare,6,1,zowika,6/16/2016 12:31 +11499120,Websites That Feed Hacker News: Top Sources of Submissions by Median Score,https://github.com/antontarasenko/smq/blob/master/reports/hackernews-top-domains-by-median.md,134,48,anton_tarasenko,4/14/2016 18:13 +11530190,CESG (UK cyber-security agency) advise against forcing regular password expiry,https://www.cesg.gov.uk/articles/problems-forcing-regular-password-expiry,7,1,Signez,4/19/2016 20:40 +10824290,When liberals attack science,http://nymag.com/scienceofus/2015/12/when-liberals-attack-social-science.html?mid=twitter-share-scienceofus,11,1,rinze,1/2/2016 0:17 +11448870,"iTrading AlgoTrading, Lua Scripting, Advanced Charting with Interactive Broker",http://joelpinheiro.github.io/itrading/,4,1,joelpinheiro,4/7/2016 17:14 +11690774,"I must, sadly, withdraw my endorsement of Yubikey 4 devices",https://plus.google.com/+KonstantinRyabitsev/posts/4a7RNxtt7vy,360,111,v4n4d1s,5/13/2016 15:02 +10375831,Show HN: Hoist Zapier for Developers (scripting done in Node.js),http://hoist.io/,17,11,mejamiewilson,10/12/2015 17:15 +12401126,Wavy Greenland rock features 'are oldest fossils',http://www.bbc.com/news/science-environment-37235447,3,1,rusanu,8/31/2016 20:11 +10838466,Python-like programming language interpreter written in Python,https://github.com/akrylysov/abrvalg,39,6,KAdot,1/4/2016 20:49 +11342929,Ask HN: Why isn't there a React Native browser yet?,,4,4,ShirsenduK,3/23/2016 8:48 +11245634,FoxType: A.I. to help you write smarter,https://foxtype.com/gmail,3,3,tdaltonc,3/8/2016 15:08 +10314636,"Flutter: High-performance, cross-platform mobile apps in Dart",http://flutter.io,24,2,rtsuk,10/1/2015 20:57 +10498033,"5% of Mac users at IBM call the help desk, compared to 42% of PC users",http://bgr.com/2015/10/15/mac-vs-pc-ibm/,7,1,dpaluy,11/3/2015 7:07 +12049008,"Show HN: Double Your Network (a free, 10-day email course)",http://huntanyemail.com/,1,2,jjets718,7/7/2016 13:02 +10797127,Netherlands City plans to pay all citizens a basic income,http://www.theguardian.com/world/2015/dec/26/dutch-city-utrecht-basic-income-uk-greens,4,1,zhte415,12/27/2015 11:20 +11621570,Rentswatch by Journalism++,http://www.rentswatch.com/,4,1,callumlocke,5/3/2016 15:38 +11404795,Why smart people have no friends,https://medium.com/@stephenbunch/why-smart-people-have-no-friends-fbdfb692120e,31,25,nyodeneD,4/1/2016 14:01 +10845920,Neat new features in Git 2.7,https://developer.atlassian.com/blog/2016/01/git-2.7-release/,7,1,eatonphil,1/5/2016 20:51 +11245714,Ray Tracing: The Next Week free eBook,http://www.amazon.com/gp/product/B01CO7PQ8C/,70,7,dahart,3/8/2016 15:21 +10769183,Learn More links are a problem,https://www.nngroup.com/articles/learn-more-links/,39,17,prawn,12/21/2015 2:07 +10704222,"How AMD Won, Then Lost",http://hackaday.com/2015/12/09/echo-of-the-bunnymen-how-amd-won-then-lost/,144,67,geerlingguy,12/9/2015 15:36 +12509857,Ask HN: How to talk to the boss about promotion,,2,1,blabla_blublu,9/15/2016 21:09 +12293872,One more Chatbot this week,https://hub.zenbot.org/doitbot,1,1,baskelos_,8/15/2016 22:10 +11516746,Ask HN: How do you plan your financial future?,,14,6,huevosabio,4/17/2016 23:00 +12277342,Now this really is 'New Money',https://medium.com/bitcorps-blog/on-tokens-and-crowdsales-309e49d9530d#.oiqy8m3kg,8,3,Stephen_T,8/12/2016 17:33 +12472008,Ask HN: Any good weight loss plans not too demanding for a typical dev?,,3,6,chirau,9/11/2016 4:25 +11690362,Beijing is Silicon Valley's only true competitor,http://www.recode.net/2016/5/13/11592570/china-startup-tech-economy-silicon-valley,10,2,imartin2k,5/13/2016 13:45 +11772686,Nix as OS X Package Manager,http://ariya.ofilabs.com/2016/05/nix-as-os-x-package-manager.html,357,204,ingve,5/25/2016 20:08 +12003491,Instagram and Android: Four Years Later,https://engineering.instagram.com/instagram-android-four-years-later-927c166b0201,4,2,ingve,6/29/2016 18:15 +10985523,Go 1.6 Release Candidate 1 is released,https://groups.google.com/forum/#!topic/golang-nuts/4iqU__h7skQ,87,22,pella,1/28/2016 2:01 +10404720,Ravi Lua 5.3 with optional static typing,http://ravilang.github.io,48,29,johlo,10/17/2015 15:42 +10851353,More rumors that Apple might drop the 3.5mm headphone jack on the iPhone 7,http://www.digitalmusicnews.com/2016/01/05/you-can-kiss-your-3-5mm-headphone-jack-goodbye/,29,65,brunorsini,1/6/2016 16:23 +12135052,A Humble email alternative app with a stop switch,https://www.formalapp.com,2,2,gkr,7/21/2016 6:00 +10328935,Hydra's OS,http://impressmyself.co/post/130503981094/apparently-hydra-has-its-own-os-screen-cap-from,2,1,tenpoundhammer,10/4/2015 21:40 +11902524,OS X DNS cache reset script,https://github.com/eventi/noreallyjustfuckingstopalready,125,84,miketheman,6/14/2016 15:19 +10949552,The Man Who Turned Night into Day,http://motherboard.vice.com/read/the-man-who-turned-night-into-day,8,1,aceperry,1/21/2016 23:53 +12010475,Feds and Cops Encountered Encryption in Only 13 Wiretaps in 2015,https://motherboard.vice.com/read/wiretap-report-feds-and-cops-encountered-encryption-in-only-13-wiretaps-in-2015,10,1,danielsiders,6/30/2016 18:05 +10991652,"No retailers, your brick-and-mortar sales don't have to suck",https://medium.com/@Semantics3/no-your-brick-and-mortar-sales-don-t-have-to-suck-91a9361e3bb7#.3srnx04hz,1,1,hari_sem3,1/28/2016 21:49 +11707201,Facebook trying to hammer out music licenses for Slideshow feature,http://nypost.com/2016/05/15/facebook-looks-at-youtube-for-new-music-ideas/,1,1,6stringmerc,5/16/2016 16:04 +12469470,OpenBSD on HP Stream 7,http://www.tedunangst.com/flak/post/OpenBSD-on-HP-Stream-7,95,40,ingve,9/10/2016 14:46 +12039536,Ask HN: Any advice for switching from self-employment back to employee?,,81,50,lngtmconsultant,7/5/2016 21:04 +11699903,OKCupid study shows perils of big data science,https://www.wired.com/2016/05/okcupid-study-reveals-perils-big-data-science/,3,1,anigbrowl,5/15/2016 7:30 +10436556,California Leads the U.S. in Digital Privacy,https://www.eff.org/deeplinks/2015/10/california-leads-way-digital-privacy,40,2,DiabloD3,10/23/2015 2:58 +12065462,ShutIt Automation framework for programmers,http://ianmiell.github.io/shutit/,135,53,indatawetrust,7/10/2016 13:00 +12508101,What every developer needs to know about GitHubs new API,https://medium.com/apollo-stack/the-new-github-graphql-api-811b005d1b6e#.xibeu892w,42,1,dan_ahmadi,9/15/2016 17:34 +10958733,The Joy of a Never-Ending Search for Hobbies [video],http://www.theatlantic.com/video/index/421509/the-joy-of-a-never-ending-search-for-hobbies/?single_page=true,30,4,wallflower,1/23/2016 15:57 +12300868,Correcting Intel's Deep Learning Benchmark Mistakes,https://blogs.nvidia.com/blog/2016/08/16/correcting-some-mistakes/,141,37,Smerity,8/16/2016 21:43 +11108423,Show HN: Morning Short Listen Audible for Short Stories,http://listen.morningshort.com/,2,1,michaelsitver,2/16/2016 7:41 +11162372,Cog: Bringing the power of the command line to chat,https://github.com/operable/cog,3,1,sciurus,2/23/2016 21:12 +10906559,A More Secure and Anonymous ProPublica Using Tor Hidden Services,https://www.propublica.org/nerds/item/a-more-secure-and-anonymous-propublica-using-tor-hidden-services,41,6,danso,1/15/2016 1:59 +11811383,Watch a machine-learning system parse the grammatical structure of sentences,https://foxtype.com/sentence-tree,59,30,hbrid,6/1/2016 0:44 +10881255,A directory of Netflix's secret categories,http://netflixcodes.me/,178,85,garrettboatman,1/11/2016 16:14 +10241897,WIRED gives Apple News exclusive story future of monetization?,http://www.wired.com/2015/09/bjarke-ingels-2-world-trade-center-wtc/,4,1,coloneltcb,9/18/2015 20:34 +10840543,Procedural cities from the Mandalay fractal,http://www.creativeapplications.net/javascript-2/the-imaginary-kingdom-of-aurullia/,155,16,mdlincoln,1/5/2016 2:19 +12573723,The Trademarking of Taco Tuesday,https://priceonomics.com/the-trademarking-of-taco-tuesday/,4,2,ryan_j_naughton,9/25/2016 3:09 +10824674,App Makers Reach Out to the Teenager on Mobile,http://www.nytimes.com/2016/01/03/business/app-makers-reach-out-to-the-teenager-on-mobile.html,5,1,aaronbrethorst,1/2/2016 2:31 +10372583,UK unicorns need scale-up visas,http://www.businessinsider.com/uk-unicorns-need-scale-up-visas-2015-10,1,1,Futurebot,10/12/2015 4:34 +12495433,"Ask HN: If you were to reinvent the web, how would your HTML/CSS/JS look like?",,4,1,johnnydoebk,9/14/2016 10:13 +11162759,3.67% of the most popular websites block Tor (because of Akamai and CloudFlare),https://www.benthamsgaze.org/2016/02/23/do-you-see-what-i-see/,3,2,sjmurdoch,2/23/2016 22:09 +11707447,Reverse Engineering Taylor Swifts Startup Business Model,https://medium.com/@joey_rideout/reverse-engineering-taylor-swifts-startup-business-model-c80a4c8d8d69,2,1,joeyrideout,5/16/2016 16:31 +12047231,Alibaba finally launches its own smart car and car OS,https://www.techinasia.com/alibaba-smart-car-2,3,1,williswee,7/7/2016 2:51 +12397295,Ask HN: Where can I learn about deploying production environments?,,3,3,springogeek,8/31/2016 10:39 +12128379,Windows Hello face recognition is vulnerable to the Jedi mind trick,https://blogs.msdn.microsoft.com/oldnewthing/20160719-00/?p=93905,103,36,edburdo,7/20/2016 12:16 +12442019,"Were F*cked, Its Over. Or Is It?",https://medium.com/the-mission/were-f-cked-it-s-over-or-is-it-5abe1432471d#.dx6055kel,43,30,gvasilei,9/7/2016 10:04 +12374832,Gordon open source Flash runtime written in pure JavaScript,https://github.com/tobytailor/gordon/wiki,30,12,ashitlerferad,8/28/2016 0:59 +11455670,Ask HN: What should you do when a China-based startup clones your website?,,10,3,bflesch,4/8/2016 16:03 +12019923,Ask HN: Text note taking app?,,3,3,fladd,7/1/2016 21:46 +12276331,Morphing neutrinos provide clue to antimatter mystery,http://www.nature.com/news/morphing-neutrinos-provide-clue-to-antimatter-mystery-1.20405,25,11,okket,8/12/2016 15:12 +11687456,NASAs newest cargo spacecraft began life as a Soviet space plane,http://arstechnica.com/science/2016/01/nasas-newest-cargo-spacecraft-began-life-as-a-soviet-space-plane/,3,2,bootload,5/12/2016 22:59 +10208525,Periscope Is Secretly Building an Apple TV App,http://techcrunch.com/2015/09/08/periscope-apple-tv/,1,1,atomical,9/12/2015 16:42 +12496251,"Simulation, Consciousness, Existence (1998)",http://www.frc.ri.cmu.edu/~hpm/project.archive/general.articles/1998/SimConEx.98.html,74,84,Artoemius,9/14/2016 12:43 +11504065,Merkel allows prosecution of German comedian who mocked Turkish president,https://www.washingtonpost.com/news/worldviews/wp/2016/04/15/merkel-allows-prosecution-of-german-comedian-who-mocked-turkish-president/?hpid=hp_hp-cards_hp-card-world%3Ahomepage%2Fcard,315,332,doener,4/15/2016 13:25 +10686490,Finland plans to give every citizen 800 euros a month and scrap benefits,http://www.independent.co.uk/news/world/europe/finland-plans-to-give-every-citizen-800-euros-a-month-and-scrap-benefits-a6762226.html,5,1,johncbogil,12/6/2015 20:41 +10327547,Fame for sale: efficient detection of fake Twitter followers,http://arxiv.org/abs/1509.04098,35,12,patomolina,10/4/2015 14:12 +11967948,Streacom DB4 Fanless Mini-ITX Chassis,http://www.streacom.com/products/db4-fanless-chassis/,3,2,desdiv,6/24/2016 8:48 +12103944,"Ask HN: What snacks, food, or drink do you like to have while programming?",,3,2,kevindeasis,7/15/2016 21:23 +11344489,Foundation for Emails 2: Making Email Suck Less,http://foundation.zurb.com/emails.html,11,1,dcodella,3/23/2016 14:01 +11295100,Walt Whitman's Letter for a Dying Soldier to His Wife Discovered,http://www.npr.org/2016/03/12/470214579/walt-whitmans-letter-for-a-dying-soldier-to-his-wife-discovered,77,9,samclemens,3/16/2016 4:52 +11370482,Complete Node.js CheatSheet,https://gist.github.com/LeCoupa/985b82968d8285987dc3,4,2,ausjke,3/27/2016 16:29 +10339203,Build a fully functional web app without any code,https://bubble.is/?ref=hackernews,3,1,TheBiv,10/6/2015 14:45 +10458138,Show HN: Use Postgres as a zero-config NoSQL database,https://github.com/fiatjaf/pgjson,9,3,fiatjaf,10/27/2015 14:22 +12460942,Brands and publishers blinded by Google Analytics real time data bug,http://www.thedrum.com/news/2016/09/08/brands-and-publishers-blinded-google-analytics-real-time-data-bug,1,1,the-dude,9/9/2016 10:46 +10309161,The challenging task of sorting colours,http://www.alanzucconi.com/2015/09/30/colour-sorting/,41,5,signa11,10/1/2015 4:04 +12155998,Ask HN: What are you working on?,,13,23,glitch003,7/25/2016 1:57 +10510979,We should all follow Linus example,http://blog.erratasec.com/2015/11/we-should-all-follow-linuss-example.html?m=1,33,11,bananaoomarang,11/5/2015 1:24 +11449621,Apply HN: article reader based on Twitter instead of RSS,,1,2,findjashua,4/7/2016 18:52 +11134683,Neverware,http://www.neverware.com/#introtext-3,4,2,tilt,2/19/2016 17:00 +10694450,PortablE is a recreation of the AmigaE programming language,http://cshandley.co.uk/portable/,13,2,doener,12/8/2015 2:47 +11400079,Tesla Model 3 leaked specs: 0-60 under 4 sec fast and 300+ mile range options,http://electrek.co/2016/03/30/tesla-model-3-specs/,4,1,doener,3/31/2016 19:50 +10193896,Show HN: Large Get anything for your team or office via slackbot,http://hirelarge.com?hn=true,13,2,barisser,9/9/2015 19:41 +10881636,Using Xmonad on OS X,https://wiki.haskell.org/Xmonad/Using_xmonad_on_Apple_OSX,91,54,brudgers,1/11/2016 17:07 +12086891,"Actually, Slack really sucks",https://medium.com/@chrisjbatts/actually-slack-really-sucks-625802f1420a#.yz78a6rku,94,41,amelius,7/13/2016 15:24 +10834971,Mark Zuckerberg Is Building a Real-Life Version of Jarvis,http://techcrunch.com/2016/01/03/iron-zuck/,1,1,kp25,1/4/2016 11:34 +10512238,Indecision is sometimes the best way to decide (2014),http://aeon.co/magazine/psychology/indecision-is-sometimes-the-best-way-to-decide/,30,4,prostoalex,11/5/2015 8:24 +10860387,Computing 52 by Hand,http://www.solipsys.co.uk/new/Calculating52FactorialByHand.html?TW_201560105,3,1,signa11,1/7/2016 20:12 +11482423,FreeBSD 10.3-Release on AWS,https://aws.amazon.com/marketplace/pp/B00KSS55FY,77,28,eatonphil,4/12/2016 18:52 +12550567,Twitter Transparency Report for January-June 2016,https://blog.twitter.com/2016/advancing-transparency-with-more-insightful-data,5,1,arkadiyt,9/21/2016 17:53 +11517562,Media Websites Battle Faltering Ad Revenue and Traffic,http://www.nytimes.com/2016/04/18/business/media-websites-battle-falteringad-revenue-and-traffic.html?_r=0,213,70,Jerry2,4/18/2016 3:33 +12016700,Apple patent blocks your iPhone from recording video at gigs,http://www.cnet.com/news/apples-new-patent-will-block-your-iphone-from-recording-video-at-gigs/?ftag=COS-05-10-aa0a&linkId=26091847,2,1,GotAnyMegadeth,7/1/2016 15:11 +11664484,Warning Don't Go Agile,http://www.salvantra.com/blogs/post/warning-dont-go-agile/,2,1,salvantra,5/10/2016 0:51 +11883637,The mystery of the 'legal name fraud' billboards,http://www.bbc.co.uk/news/magazine-36499750,104,107,blowski,6/11/2016 14:54 +11651216,Learn how to install the latest versions of PHP and Apache from source,https://ivopetkov.com/b/install-php-and-apache-from-source/,2,2,ivopetkov,5/7/2016 20:22 +10768757,North Carolina citizenry defeat pernicious Big Solar plan to suck up the Sun,http://arstechnica.com/science/2015/12/north-carolina-citizenry-defeat-pernicious-big-solar-plan-to-suck-up-the-sun/,1,2,eastbayjake,12/20/2015 23:25 +10722228,COP21: Climate deal final draft 'agreed' in Paris,http://www.bbc.com/news/science-environment-35079532,39,10,Jerry2,12/12/2015 9:08 +10527003,Can you really read 50 Books in a Year?,http://www.careermetis.com/can-you-really-read-50-books-in-a-year/,4,2,nahamed,11/8/2015 1:34 +10458375,Apple TV Aerial Screensaver for Mac,https://github.com/JohnCoates/Aerial,8,1,shawndumas,10/27/2015 15:00 +12330974,Tales from Nelson's Navy (2013),http://www.historyextra.com/article/premium/tales-nelsons-navy,30,8,pepys,8/21/2016 14:09 +11250738,HPV vaccines work: infection rates in teenage girls dropped 64 percent,http://www.vox.com/2016/2/22/11094218/hpv-vaccine-effective,2,1,jseliger,3/9/2016 3:39 +10711445,HTTP/2 for Web Developers,https://http2.cloudflare.com/http-2-for-web-developers/,2,1,jgrahamc,12/10/2015 16:26 +11481820,Introduce process only as a last resort,https://medium.com/@yanismydj/introduce-process-only-as-a-last-resort-21bd25e53eb,13,3,ylhert,4/12/2016 17:48 +12048871,QuestDB OpenSource Time Series Database,,3,2,bluestreak,7/7/2016 12:30 +11738581,Insider-Trading Law Comes for More Golf Buddies,http://www.bloomberg.com/view/articles/2016-05-20/insider-trading-law-comes-for-more-golf-buddies,1,2,dsri,5/20/2016 15:26 +11117884,How to get hired at a startup when you don't know anyone,http://shane.engineer/blog/how-to-get-hired-at-a-startup-when-you-don-t-know-anyone,419,159,swighton,2/17/2016 14:05 +11932074,"GoToMyPC has been hacked, all customer passwords reset",http://status.gotomypc.com/incidents/s2k8h1xhzn4k,174,167,stephengillie,6/19/2016 6:54 +11295777,ASCIImator: Online ASCII Animator,http://www.asciimator.net/,102,12,franze,3/16/2016 8:17 +12508128,Rothenbergs VC firm was young and loaded with cash. Its all come crashing down,https://backchannel.com/mike-rothenbergs-vc-firm-was-young-splashy-and-loaded-with-cash-now-it-s-all-come-crashing-down-e76fa076c7c5#.n8a1pfwpn,6,2,palakchokshi,9/15/2016 17:37 +10363250,Minecraft Streamer Buys Swank Mansion for $4.5M,http://kotaku.com/minecraft-streamer-buys-swank-mansion-for-4-5m-1735730153,4,1,edroche,10/9/2015 21:01 +10531779,Will China Be Uber's Waterloo?,http://fortune.com/2015/09/30/will-china-be-ubers-waterloo/,2,1,fspeech,11/9/2015 7:34 +10541581,Apple Music is now available on Android,http://lifehacker.com/apple-music-is-now-available-on-android-the-app-is-fre-1741719630,1,1,lalmachado,11/10/2015 19:11 +10463175,Sonic tractor beams that can lift and move objects using soundwaves,http://www.theguardian.com/science/2015/oct/27/the-force-awakens-tractor-beam-becomes-a-reality,53,18,yitchelle,10/28/2015 7:15 +10182853,Permanent Burning Man,http://nymag.com/daily/intelligencer/2015/08/will-burning-man-become-a-permanent-community.html,2,1,fezz,9/7/2015 20:12 +11555644,SleepBus nightly trips between SF and LA,http://www.sleepbus.co,2,1,guptaneil,4/23/2016 14:30 +12269373,Ubers Didi deal dispels Chinese El Dorado myth once and for all,https://theconversation.com/ubers-didi-deal-dispels-chinese-el-dorado-myth-once-and-for-all-63624?utm_medium=email&utm_campaign=Latest%20from%20The%20Conversation%20for%20August%2011%202016%20-%205412&utm_content=Latest%20from%20The%20Conversation%20for%20August%2011%202016%20-%205412+CID_bb6ca2410efbc829298428202cfd42c4&utm_source=campaign_monitor_us&utm_term=Ubers%20Didi%20deal%20dispels%20Chinese%20El%20Dorado%20myth%20once%20and%20for%20all,2,1,azuajef,8/11/2016 16:06 +10571135,Yannect: geographically designed forums,,4,3,nilnull,11/15/2015 20:51 +10394320,Summon Uber with the new Amazon Dash button,https://medium.com/@geoffrey___/summon-uber-with-the-new-amazon-dash-button-876b54385dec,11,6,geoffreyy,10/15/2015 17:00 +10383924,The Lost Canals of Venice of America,http://www.kcet.org/updaily/socal_focus/history/la-as-subject/the-lost-canals-of-venice-of-america.html,54,8,Thevet,10/13/2015 22:33 +11151459,India's Extremists Turn on Left Wing College Kids,http://www.thedailybeast.com/articles/2016/02/22/india-s-extremists-turn-on-left-wing-college-kids.html?via=mobile&source=facebook,1,1,selimthegrim,2/22/2016 15:33 +10259473,Show HN: Morphological image processing,http://danielrapp.github.io/morph/?id=2,38,4,DanielRapp,9/22/2015 16:04 +11375518,Digital Nomad: Im Not Living the Dream,https://medium.com/@charlierguo/i-m-not-living-the-dream-58e1426b8792,4,1,watson,3/28/2016 17:01 +10705328,Gmail Ending? Google Starts Migrating Users,http://www.forbes.com/sites/gordonkelly/2015/12/05/google-ending-gmail/,2,1,mkobar,12/9/2015 17:52 +11465860,Meet the bughunters: the hackers in India protecting your data,http://www.theguardian.com/world/2016/apr/02/meet-the-bughunters-the-hackers-in-india-protecting-your-facebook-profile,62,16,cichli,4/10/2016 12:18 +11603717,What's coming in Elixir 1.3,http://tuvistavie.com/2016/elixir-1-3,85,16,tuvistavie,4/30/2016 21:34 +11829274,FUNdaMENTALS of Design (2008),http://pergatory.mit.edu/resources/FUNdaMENTALS.html,2,1,bobjordan,6/3/2016 9:52 +11814581,Generate Logo for Your Next Startup,https://www.freelogo.me,2,1,ksimon,6/1/2016 14:29 +12076161,NASA Camera Shows Moon Crossing Face of Earth for 2nd Time in a Year,http://www.nasa.gov/feature/goddard/2016/nasa-camera-shows-moon-crossing-face-of-earth-for-2nd-time-in-a-year,199,65,dnetesn,7/12/2016 1:39 +11852958,8x Nvidia GTX 1080 Hashcat Benchmarks,https://gist.github.com/epixoip/a83d38f412b4737e99bbef804a270c40,133,83,biggerfisch,6/7/2016 7:26 +10582931,"Meet Supply Engineering at Uber, Building the Future of Work",https://eng.uber.com/supply-engineering/,2,1,myhrvold,11/17/2015 18:19 +11732166,What Disturbed Me About the Facebook Meeting,https://medium.com/@glennbeck/what-disturbed-me-about-the-facebook-meeting-3bbe0b96b87f#.njwke2jql,23,15,_pius,5/19/2016 17:57 +11892433,Why sons hold marriages together,https://www.1843magazine.com/features/its-a-boy-thing,2,2,imarg,6/13/2016 8:46 +12008074,Show HN: Codesearch.xyz web search and cross reference for any repository,https://codesearch.xyz,2,1,zielmicha,6/30/2016 12:40 +10229928,Google has most of my email because it has all of yours (2014),https://mako.cc/copyrighteous/google-has-most-of-my-email-because-it-has-all-of-yours,118,53,liotier,9/16/2015 21:14 +10414918,Mixmatic discover new SoundCloud mixes no login required,http://www.mixmatic.io/,5,2,justinholmes,10/19/2015 19:09 +10247426,Grey Market Foods of New York City,http://www.hopesandfears.com/hopes/city/food/216541-searching-for-the-grey-market-foods-of-nyc?curator=MediaREDEF,21,1,mhb,9/20/2015 13:28 +11694994,Whitespace Steganography,http://darkside.com.au/snow/,68,20,beardog,5/14/2016 7:46 +12434922,British Airways computer outage causes flight delays,https://www.theguardian.com/business/2016/sep/06/british-airways-computer-outage-causes-global-flight-delays,2,1,jsingleton,9/6/2016 10:36 +11865783,Bias Against Novelty in Science,http://www.nber.org/digest/jun16/w22180.html,105,44,wyndham,6/8/2016 21:23 +10666411,Ask HN: I don't know how to launch; I'm scared to. How do I follow through?,,21,19,scaredtolaunch,12/2/2015 22:41 +11058249,Ask HN: Game Engines as Movie Renderers in 2016,,7,1,thenomad,2/8/2016 14:33 +12280230,Is There a STEM Crisis or a STEM Surplus?,http://blogs.wsj.com/cio/2016/08/12/is-there-a-stem-crisis-or-a-stem-surplus/,54,75,T-A,8/13/2016 4:09 +10712194,Google's new Data Loss Prevention tools could drive enterprise adoption of Gmail,http://www.networkworld.com/article/3014064/security/googles-new-data-loss-prevention-tools-could-drive-enterprise-adoption-of-gmail.html,1,1,stevep2007,12/10/2015 18:09 +10647463,"Overfitting, Regularization, and Hyperparameter Optimization",http://dswalter.github.io/blog/overfitting-regularization-hyperparameters/,72,12,dswalter,11/30/2015 3:19 +11960340,Fridgeye Monitor your fridgelight,https://www.kickstarter.com/projects/vinni/fridgeye-monitor-your-fridge-light-prototype?ref=category_location,1,1,fabu,6/23/2016 12:15 +12458276,"Grill Grates: Buying Guide, Reviews, and Ratings, and Busting the Cast Iron Myth",http://amazingribs.com/BBQ_buyers_guide/guide_to_grill_grates.html,2,1,scapecast,9/8/2016 23:11 +11011280,Show HN: An algorithm to automatically turn photos of food into faces,http://aaronrandall.com/blog/megabite/,211,28,aaronrandall,2/1/2016 12:10 +12466453,How to be an Apple hater. Step by step guide,https://bmarius.com/how-to-be-an-apple-hater-step-by-step-guide-657e857b06,3,1,mariobyn,9/9/2016 22:20 +11328808,The Amazon Tax,https://stratechery.com/2016/the-amazon-tax/,2,1,davidiach,3/21/2016 15:38 +11077559,Cisco ASA/Firewall CVE,https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20160210-asa-ike,3,1,elithrar,2/11/2016 1:08 +10806415,Show HN: TurboRLE Turbo Run Length Encoding using SIMD,https://github.com/powturbo/TurboRLE,23,11,powturbo,12/29/2015 12:40 +11697881,F-35 Program Office Signs Off on Air Force 3i Software,http://www.defensenews.com/story/defense/air-space/2016/05/09/f-35-program-office-signs-off-air-force-3i-software/84138390/,38,62,Gravityloss,5/14/2016 20:22 +10840318,How to Survive Late Capitalism as a Worker,http://cryoshon.co/2016/01/04/how-to-survive-late-capitalism-as-a-worker/,13,1,cryoshon,1/5/2016 1:31 +10863984,Do you have any application or service ideas?,,2,6,theaktu,1/8/2016 10:23 +10320071,Yubikey special offer for GitHub users,https://www.yubico.com/github-special-offer/github-yubikey-special-offer/,9,1,whocanfly,10/2/2015 17:46 +10762075,Rails 5.0.0.beta1 is out,http://weblog.rubyonrails.org/releases/,3,3,resca79,12/19/2015 0:56 +10955972,RiveScript A Simple Scripting Language for Chatbots,https://www.rivescript.com/,17,4,nikolay,1/22/2016 22:25 +12473130,"Ancient mound works of Ohio, published 1851",https://archive.org/details/descriptionsofan00whit,3,1,Mendenhall,9/11/2016 12:58 +10227155,Android 5.x Lockscreen Bypass (CVE-2015-3860),http://sites.utexas.edu/iso/2015/09/15/android-5-lockscreen-bypass/,5,1,harutx,9/16/2015 15:08 +11581615,Apply HN: Iottly IoT prototyping for aftermarket product analytics for SMEs,,5,2,babboste,4/27/2016 15:59 +11318175,Some Rookie Mistakes in Go,http://engineroom.teamwork.com/go-learn/,184,84,rayascott,3/19/2016 11:52 +11037913,Amazon's cloud isn't real Oracle,http://www.computerworld.com/article/3025425/public-cloud/cue-the-surprise-oracle-suggests-amazons-cloud-isnt-real.html,13,5,neofrommatrix,2/4/2016 22:50 +11146234,I dare you to read this and still feel good about tipping,https://www.washingtonpost.com/news/wonk/wp/2016/02/18/i-dare-you-to-read-this-and-still-feel-ok-about-tipping-in-the-united-states/,2,5,colinprince,2/21/2016 20:11 +11785679,A mini game to learn to type fast built with core.async,https://github.com/teawaterwire/type-letter,15,4,twww,5/27/2016 12:58 +11653691,Visual Studio adding telemetry function calls to binary,https://np.reddit.com/r/cpp/comments/4ibauu/visual_studio_adding_telemetry_function_calls_to/,6,2,us0r,5/8/2016 12:10 +11414749,It's Impossible to Validate an Email Address,https://elliot.land/validating-an-email-address,61,67,elliotchance,4/3/2016 3:11 +12378791,Flaws uncovered in the software researchers use to analyze fM.R.I. data,http://www.nytimes.com/2016/08/28/opinion/sunday/do-you-believe-in-god-or-is-that-a-software-glitch.html,67,20,the_duck,8/28/2016 22:12 +10393439,Inventor tests new prototype of record-setting hoverboard,http://www.cbc.ca/news/technology/hoverboard-duru-1.3270569,9,3,odedgolan,10/15/2015 14:44 +11716605,Ask HN: What is your favorite podcast episode?,,2,1,tmaly,5/17/2016 19:32 +12384979,Facebook image object recognition in action,http://imgur.com/a/oB7P6,3,1,ahamdy,8/29/2016 20:21 +10533742,Is it possible to formulate category theory without set theory?,http://math.stackexchange.com/questions/1519330/is-it-possible-to-formulate-category-theory-without-set-theory,1,1,calhoun137,11/9/2015 16:00 +11067160,Ben bushing Byer has passed away,http://fail0verflow.com/ben,118,22,axoltl,2/9/2016 17:51 +10446372,The most advanced desktop 3D printer ever created,http://formlabs.com,1,1,nyc111,10/25/2015 8:44 +11197456,Silicon Valley and Foreign Talent??Setting the Record Straight,https://medium.com/@arikaleph/silicon-valley-and-foreign-talent-setting-the-record-straight-4b2720501ae9,17,2,arik-so,2/29/2016 19:11 +10309665,BBC: London taxi hire proposals would 'be an end' to the way Uber operates,http://www.bbc.co.uk/news/uk-england-london-34394774,2,2,var_eps,10/1/2015 7:10 +11889034,Worms or bust: Britains most tenacious indie games company,http://arstechnica.com/gaming/2016/06/history-of-team17-and-worms/,129,51,doppp,6/12/2016 17:01 +12165191,"A new kind of LML, drool",https://github.com/dou4cc/drool,2,2,dou4cc,7/26/2016 12:46 +12263124,New MacBook Pro with Touch ID sensor and OLED mini screen is coming soon,https://techcrunch.com/2016/08/10/new-macbook-pro-with-touch-id-sensor-and-oled-mini-screen-is-coming-soon/,2,1,devNoise,8/10/2016 16:48 +11554653,Dell XPS 13 developer edition really ready for use?,,3,4,hyuen,4/23/2016 8:04 +10475449,30+ VC jargons and acronyms you should know,https://medium.com/@federicowengi/do-you-speak-vc-30-jargons-and-acronyms-you-should-know-cfeca9e37945,2,1,vskarine,10/30/2015 0:24 +10280138,Powering CRISPR with AWS Lambda,http://benchling.engineering/crispr-aws-lambda/?hn,110,45,sajithw,9/25/2015 19:20 +10685960,Anonymous Divided: Inside the Two Warring Hacktivist Cells Fighting ISIS Online,http://mic.com/articles/129679/anonymous-vs-isis-how-ghostsec-and-ghost-security-group-are-targeting-terrorists,86,11,nkurz,12/6/2015 18:10 +10250278,Ask HN: How do you limit liability for side projects?,,7,2,derekp7,9/21/2015 3:55 +12310565,Show HN: Npmcdn A CDN for stuff you publish to npm,https://npmcdn.com,3,2,mjackson,8/18/2016 5:25 +11669057,Ask HN: Creating a prototype with strangers; how to protect against future risk?,,1,2,throw48596758,5/10/2016 17:44 +10995847,Microsoft pulls in $1.35B in revenue for Surface line,http://www.windowscentral.com/microsoft-pulls-impressive-135-billion-revenue-surface-line,64,78,jfuhrman,1/29/2016 15:51 +11605692,Defend your LHC experiment against weasels,https://github.com/kdungs/WeaselDefense,2,1,lf6648,5/1/2016 10:43 +11817959,Uber Turns to Saudi Arabia for $3.5B Cash Infusion,http://www.nytimes.com/2016/06/02/technology/uber-investment-saudi-arabia.html,230,333,taylorbuley,6/1/2016 20:39 +10646649,Ask HN: How diverse is your workplace?,,9,14,woodstar,11/29/2015 23:37 +12270232,Responsive HTML Email Templates,http://htmlemail.io/,127,46,twakefield,8/11/2016 17:41 +10642500,"Ask HN: Which open source projects have kind, supportive, talented teams?",,247,281,mikemajzoub,11/28/2015 21:23 +10534274,Dentists reveal new tooth decay treatment,http://www.theguardian.com/society/2014/jun/16/fillings-dentists-tooth-decay-treatment,439,197,sethbannon,11/9/2015 17:16 +10393072,Inside Corporate America's Plan to Ditch Workers' Comp,https://www.propublica.org/article/inside-corporate-americas-plan-to-ditch-workers-comp,27,6,vermontdevil,10/15/2015 13:46 +11369853,Introducing Yosai: A Security Framework for Python Applications,http://daringordon.com/introducing_yosai,69,10,Dowwie,3/27/2016 13:12 +11303673,Go Game Guru Learn all about the board game Go,https://gogameguru.com/,171,85,dukenuke,3/17/2016 11:18 +10464143,The Ghost Protocol??The Future of Digital Identity,https://medium.com/swlh/the-ghost-protocol-how-to-live-forever-f2a10ebda997#.1flytyh00,6,2,ThomPete,10/28/2015 13:01 +11408894,Millionaire migration in 2015 [pdf],https://nebula.wsimg.com/6e5712bf40ffe85cc116a52402d5a7d7?AccessKeyId=70E2D0A589B97BD675FB&disposition=0&alloworigin=1,44,53,randomname2,4/1/2016 21:56 +12045854,"Here's What Facebook, Google and Apple Employees Think About Tech-Shuttle 'Hubs'",http://sfist.com/2016/07/06/heres_what_employees_of_google_appl.php,6,1,uptown,7/6/2016 20:58 +12098702,Ask HN: Should I finish my undergraduate degree?,,1,4,medhir,7/15/2016 2:58 +11876003,Functional Mumbo Jumbo ADTs,http://blog.jenkster.com/2016/06/functional-mumbo-jumbo-adts.html,7,1,krisajenkins,6/10/2016 12:56 +10413095,Amazon posts response to critical New York Times article,http://money.cnn.com/2015/10/19/media/amazon-response-new-york-times-article/index.html,2,1,dalerus,10/19/2015 14:29 +10649720,Detecting machine-readable zones in passport images,http://www.pyimagesearch.com/2015/11/30/detecting-machine-readable-zones-in-passport-images/,10,1,zionsrogue,11/30/2015 15:06 +10724771,Ask HN: Why did OS X win out over Linux for so many developers?,,33,53,coned88,12/13/2015 0:04 +10536294,"The NSA school: How the intelligence community gets smarter, secretly",http://www.msn.com/en-us/news/us/the-nsa-school-how-the-intelligence-community-gets-smarter-secretly/ar-CC8A7Q?ocid=spartandhp,10,1,shin_lao,11/9/2015 22:26 +12210613,Codepad.co Online Code Editor,https://codepad.co/,12,12,rauldronk,8/2/2016 15:24 +12550834,Out of Their Love They Made It: A Visual History of Buraq,http://publicdomainreview.org/2016/09/21/out-of-their-love-they-made-it-a-visual-history-of-buraq/,15,1,lermontov,9/21/2016 18:20 +12232338,Revealing Algorithmic Rankers,https://freedom-to-tinker.com/blog/jstoyanovich/revealing-algorithmic-rankers/,32,13,nkurz,8/5/2016 13:57 +10533491,Mail Exchanger (MX) Providers Market Share,https://blog.oxplot.com/mx-providers-market-share/?hn,2,1,oxplot,11/9/2015 15:24 +10785451,"It's Boredom Sensitivity, Not AD/HD",https://www.facebook.com/notes/kent-beck/the-gift-of-boredom-sensitivity/1072598679439662,4,2,KentBeck,12/23/2015 20:27 +10371057,Notes on a Pulse Generator Circuit,http://cushychicken.github.io/ckt-notes-pulse-generator/,37,12,cushychicken,10/11/2015 21:08 +11586779,What is the best part about being a Software Engineer?,http://www.alexkras.com/what-is-the-best-part-about-being-a-software-engineer/,191,203,akras14,4/28/2016 5:56 +12029549,What do you think of the typesetting on this HTML Orwell's 1984?,https://re-dot-populace-soho.appspot.com,3,6,rained,7/4/2016 8:59 +10587825,'Facebook thinks I'm a terrorist': woman named Isis has account disabled,http://www.theguardian.com/technology/2015/nov/18/facebook-thinks-im-a-terrorist-woman-named-isis-has-account-disabled,6,1,uxhacker,11/18/2015 14:27 +12445135,Are Cities Too Complicated?,http://www.citylab.com/tech/2016/09/are-cities-getting-too-complicated/496556/,109,69,state_machine,9/7/2016 17:08 +12533757,Hillary's IT guy asking Reddit how to cover up emails,https://www.reddit.com/r/conspiracy/comments/53h8vk/evidence_of_hillarys_it_guy_paul_combetta_asking/,266,56,nimbleDT,9/19/2016 18:52 +12165465,Ask HN: Why did my Cofounder Search post get flagged?,,2,4,IamGhost,7/26/2016 13:34 +10373588,Where Systemd and Containers Meet: Q&A with Lennart Poettering,https://coreos.com/blog/qa-with-lennart-systemd/,1,1,shuron,10/12/2015 10:26 +10197813,A millisecond isn't fast (and how we made it 100x faster),http://jvns.ca/blog/2015/09/10/a-millisecond-isnt-fast-and-how-we-fixed-it/,109,39,Symmetry,9/10/2015 13:16 +12300157,I Peeked into My Node_Modules Directory and You Wont Believe What Happened Next,https://medium.com/friendship-dot-js/i-peeked-into-my-node-modules-directory-and-you-wont-believe-what-happened-next-b89f63d21558,13,13,martindale,8/16/2016 19:54 +11581093,Theranos and the Blood-Testing Delusion,http://www.bloombergview.com/articles/2016-04-27/theranos-and-the-blood-testing-delusion,76,54,tokenadult,4/27/2016 15:12 +11086981,A crisis in Vancouver: The lifeblood of the city is leaving,http://www.theglobeandmail.com/opinion/a-crisis-in-vancouver-the-lifeblood-of-the-city-is-leaving/article28730533/,137,294,johan_larson,2/12/2016 13:29 +11174869,Mental health in startups we are not alone,https://medium.com/@anonent/mental-health-we-are-not-alone-2345240b0c3f#.716nn8jtg,1,1,jd_routledge,2/25/2016 15:07 +12057401,Apple unencrypts more of iOS 10 in Beta 2,https://twitter.com/MuscleNerd/status/750624369756368896,28,11,newman314,7/8/2016 17:54 +10245372,Ad blocking,http://sethgodin.typepad.com/seths_blog/2015/09/ad-blocking.html,4,1,sbuk,9/19/2015 20:01 +11170980,Mimetype corruption in Firefox (2008),http://techblog.procurios.nl/k/news/view/15872/14863/mimetype-corruption-in-firefox.html,1,1,fdelapena,2/24/2016 23:06 +12075489,Fillupmyluggage.com: crowdsourced international delivery,http://www.fillupmyluggage.com/,1,3,mettamage,7/11/2016 23:04 +12049508,Ask HN: What's your programming process?,,2,1,jwdunne,7/7/2016 14:27 +10942671,The State of Meteor Part 2: What Happens Next,https://www.discovermeteor.com/blog/the-state-of-meteor-part-2-what-happens-next/,253,144,wsvincent,1/21/2016 1:04 +10442080,WeirdTwitterbros.link,http://weirdtwitterbros.link,2,1,shoerust,10/24/2015 1:34 +12440634,Why Snapchat making augmented reality glasses isnt that bad an idea,https://devdiner.com/opinion/why-snapchat-making-augmented-reality-glasses-isnt-that-bad-an-idea,15,24,akent,9/7/2016 2:27 +10309480,"I Have Read Prop F, and It Is a Normal and Reasonable Piece of Legislation",https://pleblog.wordpress.com/2015/09/29/i-have-read-prop-f-and-it-is-a-perfectly-normal-and-reasonable-piece-of-legislation/,36,11,bigethan,10/1/2015 5:58 +12501184,"HPC is dying, and MPI is killing it",http://www.dursi.ca/hpc-is-dying-and-mpi-is-killing-it/,4,1,yzmtf2008,9/14/2016 21:01 +10789886,"Trump, Obama and the Assault on Political Correctness",http://mobile.nytimes.com/2015/12/23/opinion/trump-obama-and-the-assault-on-political-correctness.html,12,8,ktamura,12/24/2015 23:15 +10400757,How to Explain Zero-Knowledge Protocols to Your Children (1998) [pdf],http://pages.cs.wisc.edu/~mkowalcz/628.pdf,29,6,kushti,10/16/2015 17:24 +11294906,E-cigarettes have a problem: They keep blowing up,http://qz.com/636056/e-cigarettes-have-a-problem-they-keep-blowing-up/,1,2,prostoalex,3/16/2016 3:58 +11083706,Zenefits Software Helped Brokers Cheat On Licensing Process,http://www.buzzfeed.com/williamalden/zenefits-program-let-insurance-brokers-fake-training,296,156,LukeB_UK,2/11/2016 22:09 +12334604,Show HN: 1) Build Team 2) Interview 3) Offer,https://netin.co/teams?hn,2,1,soheil,8/22/2016 7:11 +10684343,Open-source license plate reader,http://arstechnica.com/business/2015/12/new-open-source-license-plate-reader-software-lets-you-make-your-own-hot-list/,147,100,Spooky23,12/6/2015 3:48 +11798478,"Most coral dead in central section of Great Barrier Reef, surveys reveal",http://www.theguardian.com/environment/2016/may/30/most-coral-dead-in-central-section-of-great-barrier-reef-surveys-reveal,87,26,YeGoblynQueenne,5/29/2016 22:14 +10799613,"Should I use React.createClass, ES6 Classes or stateless functional components?",http://jamesknelson.com/should-i-use-react-createclass-es6-classes-or-stateless-functional-components/,6,2,jamesknelson,12/28/2015 2:54 +11809463,Ask HN: Am I under attack?,,4,6,passive,5/31/2016 19:33 +10921059,Introducing Apex Serverless architecture with AWS Lambda,https://medium.com/@tjholowaychuk/introducing-apex-800824ffaa70#.2xp4lf5tc,2,1,jjallen,1/17/2016 21:03 +11883674,Why Can't Programmers Program? (2007),https://blog.codinghorror.com/why-cant-programmers-program/,26,78,0xmohit,6/11/2016 15:05 +10645491,JavaScript 101 Free 5+ hour course for Beginners,http://classes.coursebirdie.com/courses/javascript-101,6,1,abhshksingh,11/29/2015 18:23 +11920589,"I spent a week in a Beijing startup, heres what I learned",https://www.techinasia.com/talk/insight-beijing-startup-scene-week-grabtalk,6,1,williswee,6/17/2016 3:49 +10814141,Los Angeles gas leak is a global disaster,http://gizmodo.com/las-gas-leak-disaster-is-a-bigger-problem-than-you-real-1750035270,16,4,anigbrowl,12/30/2015 20:25 +10877351,China hospital demolished 'with people inside',http://www.bbc.com/news/world-asia-china-35262802,21,3,rl3,1/10/2016 21:46 +10484653,Kakoune An experiment for a better code editor,http://kakoune.org/,143,34,Somasis,10/31/2015 23:19 +12044703,A practical use of multiplicative inverses (2013),https://ericlippert.com/2013/11/14/a-practical-use-of-multiplicative-inverses/,27,2,obi1kenobi,7/6/2016 17:48 +11862486,Pandora signs up with rights admin company as it plots on-demand service,http://www.completemusicupdate.com/article/pandora-signs-up-with-rights-admin-company-as-it-plots-on-demand-service/,1,1,6stringmerc,6/8/2016 14:30 +10780950,"Google is working on a new AI-enabled messenger, its answer to Facebook M",http://www.businessinsider.com/report-google-is-working-on-a-new-smart-messaging-app-2015-12?op=1,4,1,chlestakoff,12/22/2015 23:00 +10783305,FreedomBox 0.7 released,https://www.freedomboxfoundation.org/news/FreedomBox-0.7/index.en.html,131,35,Flip-per,12/23/2015 14:09 +11033075,Google to point extremist searches towards anti-radicalisation websites,http://www.theguardian.com/uk-news/2016/feb/02/google-pilot-extremist-anti-radicalisation-information,2,2,chippy,2/4/2016 10:33 +11543439,Why do so many people continue to pursue doctorates?,http://www.theatlantic.com/education/archive/2016/04/bad-job-market-phds/479205/?single_page=true,119,140,luu,4/21/2016 16:40 +10736612,"Response to boycott threat, Elsevier agrees to make some papers free",http://news.sciencemag.org/scientific-community/2015/12/unique-deal-elsevier-agrees-make-some-papers-dutch-authors-free?utm_source=sciencemagazine&utm_medium=facebook-text&utm_campaign=elsevieroa-1407,1,1,linhchi,12/15/2015 8:31 +11637831,Laravel Valet is the next generation development environment for Mac minimalists,https://laravel-news.com/2016/05/announcing-laravel-valet/,2,2,ericbarnes,5/5/2016 17:01 +11489556,Show HN: New Comment Marker,https://gist.github.com/noscript/b0420686256ab961e4e3f668bf9f1f5b,2,1,svlasov,4/13/2016 16:20 +11564101,A first look at the Swift Express web server,http://mhorga.org/2016/03/14/a-first-look-at-the-swift-express-web-server.html,2,1,sofijka,4/25/2016 13:43 +11173002,A utility to convert JSHint and JSCS files into ESLint files and vice-versa,https://github.com/brenolf/polyjuice,29,2,synthmeat,2/25/2016 7:54 +11477816,The Worst Thing That Could Happen to Facebook Is Already Happening,http://www.inc.com/jeff-bercovici/facebook-sharing-crisis.html?cid=cp01002fastco,25,3,davidiach,4/12/2016 7:34 +10585865,Microsoft Co-Founders Space Project Is in Limbo,http://www.wsj.com/articles/microsoft-co-founders-space-project-is-in-limbo-1447809375,1,1,pinewurst,11/18/2015 4:09 +10491708,Show HN: Elbi good on the go,,5,1,ianes,11/2/2015 13:36 +11329286,Boom (YC W16) Supersonic Passenger Airplanes,http://boom.aero/,787,464,rdl,3/21/2016 16:35 +11939875,A brief history of web development,https://medium.com/@jaequery/brief-history-of-the-web-4feabcfcecf6,10,3,jaequery,6/20/2016 18:07 +11699487,"Ask: Sugar is bad for cancer, is it also bad for other growths like psoriasis?",,2,2,DYZT,5/15/2016 4:52 +11691941,T. Rowe Price Voted for the Dell Buyout by Accident,http://www.bloomberg.com/view/articles/2016-05-13/t-rowe-price-voted-for-the-dell-buyout-by-accident,166,44,evanpw,5/13/2016 17:47 +12405746,Some rather strange history of maths,https://thonyc.wordpress.com/2016/08/18/some-rather-strange-history-of-maths/,29,12,Hooke,9/1/2016 15:02 +10685468,Computers Learn How to Paint Whatever You Tell Them To,http://www.bloomberg.com/news/articles/2015-12-02/computers-learn-how-to-paint-whatever-you-tell-them-to,2,1,shahryc,12/6/2015 15:34 +11417188,Tesla may need cash to deliver on the Model 3: Analysts,http://www.cnbc.com/2016/04/03/tesla-may-need-cash-to-deliver-on-the-model-3-analysts.html,55,74,protomyth,4/3/2016 19:06 +10645944,Americapox: The missing plague [video],https://www.youtube.com/watch?v=JEYh5WACqEk,16,3,ccarnino,11/29/2015 20:33 +11561711,"Most popular links in Hacker News comments, 20062015",https://github.com/antontarasenko/smq/blob/master/reports/hackernews-links-in-comments.md,210,68,anton_tarasenko,4/24/2016 22:45 +11095127,Report: Black Female Founders Receive Basically Zero Venture Capital,http://techcrunch.com/2016/02/13/its-true-black-female-founders-receive-basically-zero-venture-capital/,11,5,mfburnett,2/13/2016 18:47 +12397093,Orkney Islands Egypt of the North,http://ngm.nationalgeographic.com/2014/08/neolithic-orkney/smith-text,4,1,blobman,8/31/2016 9:33 +11999892,Ask HN: Best place to learn GPU programing?,,155,54,hubatrix,6/29/2016 6:38 +12180795,Real-World Redis Tips,https://blog.heroku.com/real-world-redis-tips,3,1,kungfudoi,7/28/2016 15:25 +11377847,A Panoramic Tour of Factor (2015),http://andreaferretti.github.io/factor-tutorial/,50,6,kencausey,3/28/2016 22:15 +11583377,Why isn't your API specification public?,http://www.apiful.io/intro/2016/04/26/where-is-the-spec.html,26,29,allthingsapi,4/27/2016 18:46 +11126692,"Show HN: iPipeTo, Yeoman ui as a standalone composable cli tool",https://github.com/ruyadorno/ipt,26,4,ruyadorno,2/18/2016 16:05 +11972380,Alphabet unveils robot dog capable of cleaning the house,https://www.theguardian.com/technology/2016/jun/24/alphabet-robot-dog-cleaning-housebot-spotmini,8,3,nsns,6/24/2016 18:49 +11729469,"Uber: Fast, structured, leveled logging in Go",https://github.com/uber-common/zap,2,1,dsr12,5/19/2016 11:53 +12472905,Command-line tools can be faster than a Hadoop cluster (2014),http://aadrake.com/command-line-tools-can-be-235x-faster-than-your-hadoop-cluster.html,362,172,0xmohit,9/11/2016 11:27 +10333280,"Show HN: I made a site that shows Bitcoin news, except with burritos",http://burritobit.divshot.io/,3,3,wolfico,10/5/2015 17:21 +11486290,Dont start a business until people are asking you to,https://sivers.org/asking,8,1,axk,4/13/2016 7:00 +11548034,OSBoxes Virtual Machines for VirtualBox and VMware,http://www.osboxes.org,124,65,rayascott,4/22/2016 9:40 +10822500,Teach for America is a glorified temp agency,http://www.nytimes.com/roomfordebate/2012/08/30/is-teach-for-america-working/teach-for-america-is-a-glorified-temp-agency,4,2,wslh,1/1/2016 17:42 +11859980,Sikuli: Automate Anything You See on Screen,http://www.sikuli.org,319,65,GuiA,6/8/2016 4:18 +11195217,"Show HN: Deep Terror, a puzzle game for iOS",https://itunes.apple.com/us/app/deep-terror/id1075638442,2,1,phaser,2/29/2016 13:12 +11891139,The Tiger Mother Has a Contract for Her Cubs,http://www.wsj.com/articles/the-tiger-mother-guide-to-renting-to-your-children-1465570914,1,1,sah2ed,6/13/2016 1:04 +10700893,Copyfail: Why WIPO Can't Fix Copyright,https://www.eff.org/deeplinks/2015/12/why-wipo-cant-fix-copyright,57,4,pavornyoh,12/9/2015 0:18 +12304795,"Jaan Tallinn, co-founder of Skype joins Blockchain online hackathon jury",https://hack.ether.camp/#/judges,8,3,compil3r,8/17/2016 14:11 +11842480,Mendeley: Free academic reference manager and PDF organizer,https://www.mendeley.com/,1,1,YeGoblynQueenne,6/5/2016 19:00 +11108114,Neutrinos continue run of odd behavior at Daya Bay,http://arstechnica.com/science/2016/02/neutrinos-continue-run-of-odd-behavior-at-daya-bay/,83,19,jonbaer,2/16/2016 5:41 +11246824,"When the Internet Asks You to Fill Out a Form, Do It",https://newrepublic.com/article/130799/internet-asks-fill-form,2,1,prostoalex,3/8/2016 17:31 +11104723,Understanding the bias-variance tradeoff,http://scott.fortmann-roe.com/docs/BiasVariance.html,74,7,akashtndn,2/15/2016 17:45 +10491281,Editorial Team of Top Linguistics Journal Resigns Over Elsevier's Pricing Policy,https://www.insidehighered.com/news/2015/11/02/editors-and-editorial-board-quit-top-linguistics-journal-protest-subscription-fees,8,1,Schiphol,11/2/2015 11:33 +10826838,Economic Inequality,http://paulgraham.com/ineq.html,399,547,urs2102,1/2/2016 17:22 +12519066,Ask HN: How to get into $300k+ club?,,14,19,hehenotnow,9/17/2016 4:07 +10700616,Everything You Should Know About Dreams Ever,http://marjansimic.xyz/post/everything-about-dreams,1,2,MarjanSimic,12/8/2015 23:28 +11382696,Massive outages across the internet right now,http://internethealthreport.com/,72,23,pilom,3/29/2016 16:33 +10794855,Surfraw CLI to a variety of search engines,http://surfraw.alioth.debian.org/,30,4,gnocchi,12/26/2015 19:00 +12393474,Babili: An ES6+ aware minifier based on Babel,http://babeljs.io/blog/2016/08/30/babili?exports=guy,94,44,hzoo,8/30/2016 20:15 +10570444,The ATS Programming Language Unleashing the Potentials of Types and Templates,http://www.ats-lang.org,46,9,fspeech,11/15/2015 18:18 +11008285,The evidence suggests I was completely wrong about UK tuition fees,https://www.theguardian.com/science/the-lay-scientist/2016/jan/28/the-evidence-suggests-i-was-completely-wrong-about-tuition-fees,43,62,jseliger,1/31/2016 21:57 +11324581,Being Black in the Startup World,https://twitter.com/i/moments/711613576302034945,8,1,bhaumik,3/20/2016 20:45 +10334396,"HP announces OpenSwitch, an open-source network operating system",http://www.openswitch.net/,143,51,noplay,10/5/2015 19:53 +11724057,Why robots and smart technology arent revolutionizing your house,http://www.vox.com/2016/5/17/11683718/roomba-irobot-robots-disappointment,3,1,woodcroft,5/18/2016 17:54 +10428363,Luciding Induce Lucid Dreaming Through Transcranial Stimulation,https://luciding.com/#/,53,54,networked,10/21/2015 20:18 +12133820,Programming Language Rankings: June 2016,http://redmonk.com/sogrady/2016/07/20/language-rankings-6-16/?,251,188,adamnemecek,7/21/2016 1:08 +12495555,Our Reporter Goes for a Spin in a Self-Driving Uber Car,http://www.nytimes.com/2016/09/15/technology/our-reporter-goes-for-a-spin-in-a-self-driving-uber-car.html,1,1,tim333,9/14/2016 10:40 +12322079,Millennials Dont Use Credit Cards Because They Have No Money,https://thebillfold.com/millennials-dont-use-credit-cards-because-they-have-no-money-b3b7aebfa370#.fmvfdg27r,51,81,bonefishgrill,8/19/2016 18:12 +11822143,MitM Attack Against KeePass 2's Update Check,http://seclists.org/fulldisclosure/2016/Jun/2,1,1,TimWolla,6/2/2016 13:11 +11999733,"The DoNotPay bot has beaten 160,000 traffic tickets and counting",http://venturebeat.com/2016/06/27/donotpay-traffic-lawyer-bot/,3,1,raghus,6/29/2016 5:44 +11742148,Ask HN: Downvote brigade comes through at 3pm Pacific,,2,1,thrwawy20160421,5/20/2016 22:49 +10348502,"Nolan Leake, CTO of Cumulus Networks, Is Speaking at SVLUG Tonight",http://www.svlug.org/meetings.php,6,1,lsc,10/7/2015 19:43 +10455509,"Documents That Changed the World: Alfred Nobels Will, 1895",http://www.washington.edu/news/2015/10/06/documents-that-changed-the-world-alfred-nobels-will-1895/,1,1,Oatseller,10/27/2015 0:52 +10622123,Show HN: The Hawaii Project A personalized book discovery system,http://www.thehawaiiproject.com,32,26,viking2917,11/24/2015 17:25 +11380957,Stali: statically linked Linux distribution,http://www.infoworld.com/article/3048737/open-source-tools/stali-distribution-smashes-assumptions-about-linux.html,2,2,ashitlerferad,3/29/2016 12:37 +10603067,Chasing the Link Between Gut Bacteria and Autism,http://www.theatlantic.com/health/archive/2015/11/how-microbes-shape-autism/416220/?single_page=true,40,16,jessaustin,11/20/2015 18:56 +11370994,A List of Isaac Asimov's Books,http://www.asimovonline.com/oldsite/asimov_titles.html,147,37,dedalus,3/27/2016 18:49 +10588355,How Amazons Long Game Yielded a Retail Juggernaut,http://www.nytimes.com/2015/11/19/technology/how-amazons-long-game-yielded-a-retail-juggernaut.html,13,1,tysone,11/18/2015 15:52 +10350415,Developer creates open source diabetes app,http://www.itworld.com/article/2989962/open-source-tools/developer-creates-an-open-source-glucose-monitoring-and-tracking-app-he-can-trust.html,6,1,polygotlumbers,10/8/2015 1:53 +10868208,Telescope Building with John Dobson (2014) [video],https://www.youtube.com/watch?v=snz7JJlSZvw,21,3,DanBC,1/8/2016 21:01 +10583167,Keys to Scaling Yourself as a Technology Leader,http://firstround.com/review/the-keys-to-scaling-yourself-as-a-technology-leader/,100,18,zt,11/17/2015 18:55 +12305389,Rate Limits,https://letsencrypt.org/docs/rate-limits/,175,115,beardicus,8/17/2016 15:26 +10316733,Dolphin Progress Report,https://dolphin-emu.org/blog/2015/10/01/dolphin-progress-report-september-2015/,73,10,luu,10/2/2015 4:27 +11014213,Ask HN: How do you like your smartwatch?,,13,10,halotrope,2/1/2016 18:49 +10973366,Gender Differences in Executive Compensation and Job Mobility (2010),http://repository.cmu.edu/cgi/viewcontent.cgi?article=1569&context=tepper,61,54,roymurdock,1/26/2016 13:57 +11483869,"LaraFlow, a new mac app to help Laravel developers",http://laraflow.com,1,1,ahmd,4/12/2016 21:48 +10797793,DOJ defers payments to local police agencies through asset forfeiture program,http://www.usnews.com/news/politics/articles/2015-12-24/us-postpones-payments-to-police-in-asset-forfeiture-program,155,118,scottshea,12/27/2015 16:08 +12357354,Ask HN: How does billing in man-days work?,,5,2,agilek,8/25/2016 7:12 +10432247,Top EU court rules Bitcoin exchange tax-free in Europe,http://phys.org/news/2015-10-eu-court-bitcoin-exchange-tax-free.html,6,1,lelf,10/22/2015 14:01 +10693042,Ask HN: Best task management tool for non-developers?,,2,8,brd,12/7/2015 21:57 +11824365,Improvements to Notification Emails,https://github.com/blog/2183-improvements-to-notification-emails,20,1,gjtorikian,6/2/2016 17:28 +11215105,Possible missing Boeing 777 #MH370 horizontal stabilizer found off Mozambique,http://www.airlive.net/breaking-possible-boeing-777-mh370-horizontal-stabilizer-found-off-mozambique/,1,1,bootload,3/3/2016 4:56 +10664800,A playable XCOM game in Excel,http://www.theverge.com/2015/12/2/9834932/xcom-microsoft-excel-game,49,6,OopsCriticality,12/2/2015 18:28 +11268059,Eliminating Delays from systemd-journald,https://coreos.com/blog/eliminating-journald-delays-part-1.html,5,1,bcantrill,3/11/2016 17:31 +10492893,Thermonuclear Art The Sun in Ultra-HD (4K),https://www.youtube.com/watch?v=6tmbeLTHC_0,1,1,franzb,11/2/2015 16:42 +10956809,Atari Vault collection brings 100 classic games to Steam,http://www.msn.com/en-us/news/games/atari-vault-collection-brings-100-classic-games-to-steam/ar-BBozIsX?ocid=ansmsnnews11,8,1,ourmandave,1/23/2016 1:48 +11065690,Nginx 1.9.11 with Dynamic Modules,http://mailman.nginx.org/pipermail/nginx-announce/2016/000170.html,201,59,Nekit1234007,2/9/2016 14:59 +11850200,The Reassuring Science of Salt Consumption,http://www.bloomberg.com/view/articles/2016-06-06/the-reassuring-science-of-salt-consumption,48,15,tokenadult,6/6/2016 20:47 +12159458,The Doomsday Clock,https://en.wikipedia.org/wiki/Doomsday_Clock,1,1,Kurtz79,7/25/2016 15:49 +10979452,Why are submarines demagnetized?,http://qi.epfl.ch/en/sondage/show/255/,341,114,fgeorgy,1/27/2016 11:13 +12047787,Instagram password automated checks,,1,1,lawrencegs,7/7/2016 6:23 +10245348,Ask HN: Discontd UBNT AirRouter still best buy for sm home/office/OpenWRT bgnr?,,1,1,netzwerk,9/19/2015 19:54 +10437775,Our Comrade the Electron,http://idlewords.com/talks/our_comrade_the_electron.htm,9,1,dgsiegel,10/23/2015 10:38 +11974096,Has article 50 been invoked?,http://hasarticle50beeninvoked.uk/,2,2,ola,6/24/2016 22:48 +10791067,Ask HN: What are your goals for next year?,,4,2,l33tbro,12/25/2015 12:30 +11122870,Sex and Startups,https://medium.com/@sexandstartups/sex-startups-53f2f63ded49#.a6cd7zi6c,4,2,aledalgrande,2/18/2016 0:55 +10404884,Common sense violation in airline pricing,http://arxiv.org/abs/1509.05382,16,6,jsc123,10/17/2015 16:20 +11239931,"AltWork Workstations sitting, standing, horizontal",http://www.altwork.com/,2,1,hendler,3/7/2016 17:01 +11755664,CloudPleasers: A look at life in the cloud [comic],https://forrestbrazeal.com/tag/cloudpleasers/,3,1,phantom_oracle,5/23/2016 18:10 +10819104,Mega ships bring benefits and challenges to ports of L.A. and Long Beach,http://www.latimes.com/business/la-fi-mega-ships-20160101-story.html,51,17,adventured,12/31/2015 19:11 +10232523,The Dukes: 7 years of Russian cyber-espionage,https://labsblog.f-secure.com/2015/09/17/the-dukes-7-years-of-russian-cyber-espionage/,53,10,isido,9/17/2015 10:30 +10991610,Firefox 44.0 Release Notes,https://www.mozilla.org/en-US/firefox/44.0/releasenotes/,2,1,TazeTSchnitzel,1/28/2016 21:42 +12091596,Obama Just Became the First Sitting President to Publish a Scientific Paper,http://www.iflscience.com/health-and-medicine/obama-just-became-the-first-sitting-president-to-publish-a-scientific-paper-/,17,2,antineutrino,7/14/2016 4:17 +11463349,Dear Zuck. Fuck!,https://medium.com/@kteare/dear-zuck-fuck-84d9c1bdba26,4,4,jackgavigan,4/9/2016 21:10 +11089804,Sam Altman (Y Combinator) on the Potential of AI,http://blog.samaltman.com/ai,4,1,doener,2/12/2016 19:30 +10911497,Ask HN: Where to go to learn Modern C?,,13,8,ghrifter,1/15/2016 19:27 +10920325,Gotoky: Smartphone and Walkie Talkie,http://gotoky.com,13,14,misterdata,1/17/2016 18:22 +10359038,Elon Musk says Apple is the 'graveyard' for fired Tesla staff,http://www.theguardian.com/technology/2015/oct/09/elon-musk-apple-graveyard-fired-tesla-staff,39,11,indy,10/9/2015 9:46 +11704580,Nura: Headphones that learn and adapt to your unique hearing,https://www.kickstarter.com/projects/nura/nura-headphones-that-learn-and-adapt-to-your-uniqu,1,2,toast76,5/16/2016 6:21 +10360229,Elon Musk lashes out at Apples car ambitions,http://www.ft.com/cms/s/0/132157ee-6e17-11e5-aca9-d87542bf8673.html#axzz3o56NS0f5,6,6,rajathagasthya,10/9/2015 14:32 +10309761,Life After MOOCs,http://cacm.acm.org/magazines/2015/10/192385-life-after-moocs/fulltext,26,10,cedricr,10/1/2015 7:37 +10718320,"Women Like Being Valued for Sex, as Long as it is by a Committed Partner",http://www.ncbi.nlm.nih.gov/pubmed/26626185,17,8,BinaryIdiot,12/11/2015 17:19 +10983295,PHP: Bug #45647,https://bugs.php.net/bug.php?id=45647,4,2,subnaught,1/27/2016 20:59 +10887695,How not to implement a 25MB background movie: faradayfuture.com,http://www.faradayfuture.com/,4,2,Mojah,1/12/2016 14:52 +11156916,Ask HN: File format for declarative language?,,5,6,mchahn,2/23/2016 6:03 +10182770,Ask HN: If you are learning Chinese,,1,2,goodcharacters,9/7/2015 19:54 +10294373,Servo WebRender Overview,https://github.com/glennw/webrender/wiki,191,47,dumindunuwan,9/29/2015 2:10 +12553688,HTTP/2 comes to Firebase Hosting,https://firebase.googleblog.com/2016/09/http2-comes-to-firebase-hosting.html,13,3,ShanaM,9/22/2016 1:34 +11858962,Microsoft Finds Cancer Clues in Search Queries,http://www.nytimes.com/2016/06/08/technology/online-searches-can-identify-cancer-victims-study-finds.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=second-column-region®ion=top-news&WT.nav=top-news&_r=0,148,66,hvo,6/7/2016 23:44 +10297259,Ask HN: Technologies to create a brand new JavaScript application?,,4,4,g123g,9/29/2015 16:04 +11389377,Can a video game company tame toxic behaviour?,http://www.nature.com/news/can-a-video-game-company-tame-toxic-behaviour-1.19647,2,1,okket,3/30/2016 14:12 +12387532,"Ask HN: Idea for a startup, as a one-man team what should I do next?",,2,1,new_challenger,8/30/2016 4:25 +11314947,MRelief (YC W16 Nonprofit) makes public assistance more accessible,http://techcrunch.com/2016/03/17/launching-at-ycs-demo-day-mrelief-has-a-new-tool-to-make-public-assistance-more-accessible/,25,1,BobbyVsTheDevil,3/18/2016 20:56 +12415291,Tim Cook to repatriate money,http://www.wsj.com/article_email/apple-chief-executive-expects-ireland-to-appeal-eu-tax-ruling-1472720654-lMyQjAxMTE2NDA4MTEwODEwWj,30,44,perseusprime11,9/2/2016 18:51 +10650852,The Race to Create Elon Musks Hyperloop Heats Up,http://www.wsj.com/articles/the-race-to-create-elon-musks-hyperloop-heats-up-1448899356?mod=e2tw,81,77,josephscott,11/30/2015 18:30 +11105894,Ask HN: Why do people hate on the AWS developer console?,,2,5,purplerabbit,2/15/2016 20:56 +11741906,Venmo is turning our friends into petty jerks,http://qz.com/687395/venmo-is-turning-our-friends-into-petty-jerks/,7,7,hownottowrite,5/20/2016 22:07 +10636358,Ask HN: How competitive are prices for unlocked smartphones?,,2,2,beefman,11/27/2015 8:01 +12160055,Full body of the user in virtual reality,,6,2,SkarredGhost,7/25/2016 17:14 +12127638,Mitigating the HTTPoxy Vulnerability with Nginx,https://www.nginx.com/blog/mitigating-the-httpoxy-vulnerability-with-nginx/,51,9,kgogolek,7/20/2016 8:46 +10329322,The Wretched Table: How Dinner in America Became an Ordeal,http://www.psmag.com/books-and-culture/wretched-table-dinner-america-became-ordeal-79459,52,83,pepys,10/5/2015 0:06 +10936916,Ask HN: Whats a good book to learn Startup 'Mathematics'?,,1,2,nns,1/20/2016 9:36 +10224766,Nietzsche The Dionysian Impulse (2009),http://harpers.org/blog/2009/07/nietzsche-the-dionysian-impulse/,54,9,diodorus,9/16/2015 4:57 +11004131,Babel.js REPL + import NPM modules = ESNextbin,http://esnextb.in/,1,1,ksmtk,1/30/2016 22:36 +12544706,Activity Trackers May Undermine Weight Loss Efforts,http://www.nytimes.com/2016/09/27/well/activity-trackers-may-undermine-weight-loss-efforts.html,5,1,ourmandave,9/21/2016 1:10 +10517445,"Challenges at Porch: High-flying, heavily funded, lessons of rapid growth",http://www.geekwire.com/2015/challenges-at-porch-high-flying-heavily-funded-startup-learns-the-lessons-of-rapid-growth/,13,1,prostoalex,11/6/2015 2:01 +11199366,Kicked out in America,http://www.nybooks.com/articles/2016/03/10/evicted-kicked-out-in-america/,12,1,jacobolus,2/29/2016 22:54 +10237902,Testing for common sense violation in airline pricing,http://arxiv.org/abs/1509.05382,47,33,kachnuv_ocasek,9/18/2015 7:23 +12492090,Russian Hackers Leak U.S. Files from Doping Agency,http://www.nytimes.com/2016/09/14/sports/simone-biles-serena-venus-williams-russian-hackers-doping.html,2,1,ezequiel-garzon,9/13/2016 20:48 +12175788,Power Shell rumored to be open sourced soon,https://twitter.com/tomhounsell/status/758313989487091712,13,1,rakshithbekal,7/27/2016 19:25 +10352189,'Extreme poverty' to fall below 10% of world population for first time,http://www.theguardian.com/society/2015/oct/05/world-bank-extreme-poverty-to-fall-below-10-of-world-population-for-first-time,283,240,hliyan,10/8/2015 12:19 +10392463,Scylla 10-20X faster than Cassandra in new cluster benchmark,http://www.scylladb.com/technology/cassandra-vs-scylla-benchmark-cluster-1,4,1,ddorian43,10/15/2015 11:15 +10323045,"GelTouch: Localized Tactile Feedback Through Thin, Programmable Gel [pdf]",http://joergmueller.info/pdf/UIST15MiruchnaGelTouch.pdf,1,1,fezz,10/3/2015 8:03 +12572011,Plugzr The World's Smartest Power Outlet,http://www.plugzr.com,1,2,xpepper,9/24/2016 18:40 +12158191,Resources for Amateur Compiler Writers,http://c9x.me/compile/bib/,273,72,rspivak,7/25/2016 12:33 +10727725,What Satoshi Did,http://www.coinscrum.com/2015/10/29/what-satoshi-did/,121,32,mr_golyadkin,12/13/2015 20:14 +11767088,Cache Coherent Interconnect for Accelerators (CCIX) Consortium,http://www.ccixconsortium.com/,2,1,ajdlinux,5/25/2016 1:40 +10287983,Google Announces Plan to Put Wi-Fi in 400 Train Stations Across India,http://techcrunch.com/2015/09/27/google-announces-plan-to-put-wi-fi-in-400-train-stations-across-india/,100,30,testrun,9/27/2015 21:23 +10835662,CaDNAno: design three-dimensional DNA origami nanostructures,http://cadnano.org/,22,2,fitzwatermellow,1/4/2016 14:06 +11111151,Watch New Yorkers Hurry Across Union Square in Real-Time,http://www.citylab.com/commute/2016/02/union-square-realtime-map-placemeter/462006/,123,32,infinite8s,2/16/2016 16:48 +10278444,Show HN: Large Get anything your team needs via Slack,http://hirelarge.com,17,3,awwstn,9/25/2015 14:45 +11339379,What Happens in a Measurement?,http://arxiv.org/abs/1603.06008,15,7,Jasamba,3/22/2016 19:40 +10956121,How to Investigate a Flying Saucer,https://www.cia.gov/news-information/featured-story-archive/2016-featured-story-archive/how-to-investigate-a-flying-saucer.html,82,34,jackgavigan,1/22/2016 22:58 +11045882,Faceless Together: Understanding 4chan,http://kazerad.tumblr.com/post/96020280368/faceless-together,5,1,striking,2/6/2016 0:45 +11384996,How I got a game on the Steam Store without anyone from Valve ever looking at it,https://medium.com/@rubiimeow/watch-paint-dry-how-i-got-a-game-on-the-steam-store-without-anyone-from-valve-ever-looking-at-it-2e476858c753#.kiy52xzcn,1,1,cwal37,3/29/2016 21:24 +10275907,QUESTION: Why does no email have native video? asynchronous video,,3,1,dsosa1,9/25/2015 1:09 +11488734,Show HN: Creative Commons Lists for Dev Projects (Alpha),https://cctaxonomy.com,3,1,lefnire,4/13/2016 15:03 +10883116,"Show HN: Spurlo A place to show your love in gadgets, gears, books and more",http://www.spurlo.com/,7,9,tinjam,1/11/2016 20:17 +11789383,Newspapers escalate their fight against ad blockers,https://www.washingtonpost.com/news/the-switch/wp/2016/05/27/newspapers-escalate-their-fight-against-ad-blockers/,2,2,hackuser,5/27/2016 22:06 +12241497,Ask HN: Where can I find resources for garbage classification technology?,,2,1,avindroth,8/7/2016 8:40 +11895986,Project Scorpio : The Next Xbox,https://www.youtube.com/watch?v=vs_UVpVWnmY,3,1,dumindunuwan,6/13/2016 18:18 +10430830,Against the Evil Eye,http://riowang.blogspot.com/2015/08/against-evil-eye.html,6,1,acsillag,10/22/2015 7:17 +10730904,When the Government Tells Poor People How to Live,http://www.theatlantic.com/business/archive/2015/12/paternalism/420210/?single_page=true,9,3,tokenadult,12/14/2015 13:44 +10659519,How Railroad History Shaped Internet History,http://www.theatlantic.com/technology/archive/2015/11/how-railroad-history-shaped-internet-history/417414/?single_page=true,20,3,danwyd,12/1/2015 22:51 +12099992,David Davis: A Brexit Economic Strategy for Britain,http://www.conservativehome.com/platform/2016/07/david-davis-trade-deals-tax-cuts-and-taking-time-before-triggering-article-50-a-brexit-economic-strategy-for-britain.html,3,2,jlg23,7/15/2016 10:35 +10458772,Germans Have a Burning Need for More Garbage,http://www.wsj.com/articles/germans-have-a-burning-need-for-more-garbage-1445306936,41,15,prostoalex,10/27/2015 15:50 +11731150,Mercury: Instant AMP Results. Zero Development,http://mercury.postlight.com/,35,6,thibaultmalfoy,5/19/2016 15:56 +11553872,EFF and ACLU Expose Governments Secret Stingray Use in Wisconsin Case,https://www.eff.org/deeplinks/2016/04/eff-and-aclu-expose-governments-secret-stingray-use-wisconsin-case,75,13,DiabloD3,4/23/2016 2:42 +11560283,Fantasy Math Is Helping Companies Spin Losses into Profits,http://mobile.nytimes.com/2016/04/24/business/fantasy-math-is-helpingcompanies-spin-losses-into-profits.html?referer=,3,1,Osiris30,4/24/2016 16:41 +10682036,Untitled,http://slatestarcodex.com/2015/01/01/untitled/,4,5,tomp,12/5/2015 14:59 +11244558,Visual Programming Is Unbelievable (2015),http://www.outsystems.com/blog/2015/03/visual-programming-is-unbelievable.html,94,103,tiago_simoes,3/8/2016 10:45 +12245985,Ask HN: How do we pick an user ID while building a social-platform?,,16,14,palakz,8/8/2016 7:23 +10567475,5 things the media does to manufacture outrage,https://medium.com/@parkermolloy/5-things-the-media-does-to-manufacture-outrage-ba79125e1262,7,1,JetSpiegel,11/14/2015 22:07 +11980255,Turn Your Smartphone into Any Kind of Sensor,http://www.nasa.gov/offices/oct/feature/turn-your-smartphone-into-any-kind-of-sensor,3,1,hownottowrite,6/26/2016 10:53 +10552561,AppReviewDesk,,3,7,appreviewdesk,11/12/2015 11:42 +11831373,Why You Will Marry the Wrong Person,http://www.nytimes.com/2016/05/29/opinion/sunday/why-you-will-marry-the-wrong-person.html,5,1,ALee,6/3/2016 16:40 +11079710,Ask HN: Anybody hiring summer interns?,,1,2,sagarghai,2/11/2016 12:31 +12262840,Baltimore police face changes after blistering report,http://www.usatoday.com/story/news/nation/2016/08/10/baltimore-police-face-changes-after-blistering-report/88508492/,2,1,tajen,8/10/2016 16:15 +10939786,Show HN: Trainjs Step by step to create an application,http://nodeontrain.xyz,10,1,train255,1/20/2016 17:36 +10239520,Benefits of Reading Actual Books vs. On an E-reader,http://mic.com/articles/99408/science-has-great-news-for-people-who-read-actual-books,1,1,ching_wow_ka,9/18/2015 14:54 +10822132,Deferred in the Burbs,http://mikethemadbiologist.com/2015/12/31/deferred-in-the-burbs/,19,11,lkrubner,1/1/2016 15:47 +11803257,Mets catch Dodgers using laser to mark up Citi Field outfield,http://www.nydailynews.com/sports/baseball/mets/mets-catch-dodgers-laser-mark-citi-field-outfield-article-1.2653341,4,1,BGyss,5/30/2016 21:17 +10269473,Take photos where your subjects aren't looking directly into the lens,http://www.eugenewei.com/blog/2015/9/23/my-favorite-photography-tip,1,1,fiatjaf,9/24/2015 2:17 +12192106,The Last Florida Indians Will Now Die: The Westward Plight of the Apalachee,http://www.oxfordamerican.org/magazine/item/930-the-last-florida-indians-will-now-die,57,72,samclemens,7/30/2016 8:10 +12049385,"Writing a video chat application from the ground up, part 1",https://bengarney.com/2016/06/25/video-conference-part-1-these-things-suck/,590,55,kimburgess,7/7/2016 14:08 +12205865,Salesforce acquires Quip,https://quip.com/blog/salesforce,6,1,ernestipark,8/1/2016 20:55 +11750571,"Show HN: Convos.org, a free-form anonymous message board",http://www.convos.org/,4,2,ss180,5/22/2016 22:31 +10371169,The oil bust is exposing weaknesses in the Norwegian model,http://www.economist.com/news/business/21672206-now-easy-times-are-over-norway-must-rediscover-its-viking-spirit-norwegian-blues,46,47,livatlantis,10/11/2015 21:33 +11921389,Terrorism and the emergence of Stand alone complex behavior,http://www.reflectionsofthevoid.com/2015/01/terrorism-and-emergence-of-stand-alone.html,8,3,blopeur,6/17/2016 8:51 +10679115,Stream time-lapse images in minutes from a Raspberry Pi or any other platform,https://pss-camera.appspot.com/lipis/green-plant/,1,1,lipis,12/4/2015 21:04 +11666163,"???????? GitHub Star ????,???",https://www.v2ex.com/t/269481,2,1,devspaper,5/10/2016 10:30 +10378363,Discord Free Voice and Text Chat for Gamers,https://discordapp.com/,2,1,obilgic,10/13/2015 3:08 +10534733,Ransomware Now Gunning for Your Web Sites,https://krebsonsecurity.com/2015/11/ransomware-now-gunning-for-your-web-sites/,2,1,escapologybb,11/9/2015 18:21 +12052605,Security Flaw in OS X displays all keychain passwords in plain text,https://medium.com/@brentonhenry/security-flaw-in-os-x-displays-all-keychain-passwords-in-plain-text-a530b246e960#.jvolr6hek,18,2,brenton07,7/7/2016 22:51 +10786549,Analyse Asia 82: Seedstars World in Asia with Karen Mok,http://analyse.asia/2015/12/20/episode-82-seedstars-world-in-asia-with-karen-mok/,1,1,bleongcw,12/24/2015 1:14 +11656575,Ask 'why' five times about every matter,http://www.toyota-global.com/company/toyota_traditions/quality/mar_apr_2006.html,227,168,support_ribbons,5/8/2016 23:38 +12459788,Complaints Against YouTube Doubled After Demonetization,http://www.hissingkitty.com/complaints-against-youtube,3,3,hissingkitty,9/9/2016 5:17 +11435084,"How do you learn new, unfamiliar code base?",,4,4,poushkar,4/5/2016 22:27 +10750348,FireEye Exploitation: Project Zeros Vulnerability of the Beast,http://googleprojectzero.blogspot.com/2015/12/fireeye-exploitation-project-zeros.html,67,9,officialjunk,12/17/2015 9:11 +10197032,Mesos or ECS which launches containers faster?,http://blog.force12.io/2015/09/10/force12-on-mesos.html,17,3,rossf7,9/10/2015 9:38 +11184204,Doing Mathematics Differently,http://inference-review.com/article/doing-mathematics-differently,184,69,vinchuco,2/26/2016 21:01 +11519675,Memory Access Patterns Are Important (2012),http://mechanical-sympathy.blogspot.com/2012/08/memory-access-patterns-are-important.html,97,24,wanderer42,4/18/2016 13:23 +11984960,How to download all images of an imgur album,https://spapas.github.io/2016/06/27/download-imgur-album-images/,2,1,spapas82,6/27/2016 9:04 +10787567,Why I went to prison for teaching physics,http://www.technologyreview.com/article/543876/my-unwanted-sabbatical/,59,30,kiliancs,12/24/2015 8:36 +11226195,Ask HN: What are your non-computer-based hobbies?,,4,3,tbirdz,3/4/2016 19:20 +12539361,HP 'timebomb' prevents inkjet printers using unofficial cartridges,https://www.theguardian.com/technology/2016/sep/20/hp-inkjet-printers-unofficial-cartridges-software-update,11,3,majc2,9/20/2016 13:34 +11635015,Bedrock Linux 1.0beta2 Nyla Major Features,http://bedrocklinux.org/1.0beta2/features.html,2,1,swsieber,5/5/2016 10:36 +11494564,Product Hunt should be named Project Hunt,,13,5,gnkchintu,4/14/2016 5:52 +10405681,The Hostile Email Landscape,http://liminality.xyz/the-hostile-email-landscape/,544,241,jodyribton,10/17/2015 19:23 +11294432,"EFF: Tell Us Your DRM Horror Stories about Ebooks, Games, Music, Movies and IoT",https://www.eff.org/deeplinks/2016/03/ebooks-games-music-movies-and-internet-things-tell-us-your-drm-horror-stories,8,3,g1n016399,3/16/2016 1:50 +11453812,WhatsApp Rolls Out End-To-End Encryption to Its Over 1B Users,https://www.eff.org/deeplinks/2016/04/whatsapp-rolls-out-end-end-encryption-its-1bn-users,330,226,randomname2,4/8/2016 11:00 +12177717,The Dreaded Weekly Status Email,http://eleganthack.com/the-dreaded-weekly-status-email/,201,98,ryanlm,7/28/2016 1:12 +10797603,Py-Videocore: Python Library for GPGPU on Raspberry Pi,https://github.com/nineties/py-videocore,105,22,matsuu,12/27/2015 15:08 +10831358,"U.S. Federal Individual Income Tax Rates History, 1862-2013",http://taxfoundation.org/article/us-federal-individual-income-tax-rates-history-1913-2013-nominal-and-inflation-adjusted-brackets,29,48,lisper,1/3/2016 17:31 +10958618,Upset about data breach,,3,1,enchantress,1/23/2016 15:22 +10245307,Rosette A solver-aided programming language,http://homes.cs.washington.edu/~emina/rosette/,35,2,inetsee,9/19/2015 19:37 +10279008,Chasing the shiny and new,https://www.nemil.com/musings/shinyandnew.html,66,14,nemild,9/25/2015 16:18 +12311569,Wired's First-Ever Presidential Endorsement Is for Hilary Clinton,http://www.wired.com/2016/08/wired-endorses-hillary-clinton/,7,1,dpflan,8/18/2016 11:10 +10623714,"Ask HN: Examples of patterns that start well, but break",,1,1,ColinWright,11/24/2015 21:32 +10286190,Porsche 919 Racecar Engineering,http://www.racecar-engineering.com/cars/porsche-919/,60,40,dmmalam,9/27/2015 11:25 +12037038,Congress is spending $400M on a ship the DoD doesn't want,http://www.politico.com/magazine/story/2016/07/littoral-combat-ship-congress-navy-pentagon-400-million-pork-214009,37,30,JPKab,7/5/2016 15:23 +12294276,Why Apple isn't talking about virtual reality just yet,http://mashable.com/2016/06/14/apple-virtual-reality-plan-wwdc/#puN1vT0pi058,1,1,TheMagician0,8/15/2016 23:19 +11684747,Mary Jo White: Privacy Rules Shouldnt Handcuff the S.E.C,http://www.nytimes.com/2016/05/13/opinion/privacy-rules-shouldnt-handcuff-the-sec.html,3,1,jsw97,5/12/2016 16:38 +10905342,Show HN: A simple neural network in Octave to solve the XOR problem,https://aimatters.wordpress.com/2015/12/19/a-simple-neural-network-in-octave-part-1/,5,2,stephenoman,1/14/2016 22:44 +11188667,Ask HN: Monetizing Streaming Movie Search,,2,2,willholloway,2/27/2016 21:45 +12091396,A rational nation ruled by science would be a terrible idea,https://www.newscientist.com/article/2096315-a-rational-nation-ruled-by-science-would-be-a-terrible-idea/,13,8,petethomas,7/14/2016 3:02 +10713211,The Social Travel Guide Tripblan,http://www.tripblan.com,2,1,tripblan,12/10/2015 20:28 +10798534,SHA-1 Certificates: A History of Hard Choices,https://medium.com/@sleevi_/a-history-of-hard-choices-c1e1cc9bb089#.grsxeuoco,50,13,tptacek,12/27/2015 19:54 +10725333,No One Really Knows How Much the UK's Surveillance Plan Will Cost,http://motherboard.vice.com/read/no-one-really-knows-how-much-the-uks-surveillance-plan-will-cost,2,1,doctorshady,12/13/2015 3:41 +12039994,Ask HN: Remove me and all my info entirely from your database and records?,,3,6,ezl,7/5/2016 22:34 +12352112,The_platinum_searcher (Code search tool similar to ack and ag),https://github.com/monochromegane/the_platinum_searcher,1,1,coldtea,8/24/2016 14:10 +11450394,20 Best Selling Authors on ThemeForest 2016,http://webdesignmoo.com/wordpress/20-best-selling-authors-on-themeforest-2016,1,1,webdesignmoo,4/7/2016 20:25 +11262408,Optimizely (YC W10) lays off 10%,https://blog.optimizely.com/2016/03/10/controlling-our-own-destiny/,36,3,asp2insp,3/10/2016 21:16 +11561501,How do you define intelligence?,http://news.usc.edu/92940/how-do-we-define-intelligence/,2,3,Oatseller,4/24/2016 21:45 +10742189,Physicists in Europe Find Tantalizing Hints of a New Particle,http://mobile.nytimes.com/2015/12/16/science/physicists-in-europe-find-tantalizing-hints-of-a-mysterious-new-particle.html,75,52,dil8,12/16/2015 3:31 +10273119,NACHA Same-Day ACH Gets Federal Reserve Support,http://www.pymnts.com/news/2015/federal-reserve-backs-nachas-same-day-ach/,2,1,rlalwani,9/24/2015 17:35 +12497788,San Franciscos Sinking Millennium Tower Riles Residents,http://www.architecturalrecord.com/articles/11835-san-franciscos-sinking-millennium-tower-riles-residents,1,1,davidf18,9/14/2016 15:17 +10615080,Forgiveness in a vengeful age,https://newhumanist.org.uk/articles/4900/forgiveness-in-a-vengeful-,59,35,kawera,11/23/2015 15:28 +12377111,My Top Eight Must-Listen Developer Podcasts,https://dev.to/ben/my-eight-must-listen-podcasts,2,2,vasili111,8/28/2016 16:21 +11708138,What People Who Demand Innovations from Apple Don't Get,http://paweltkaczyk.com/en/apple-innovations/,28,26,stokanic,5/16/2016 17:55 +10461538,Capacity to regenerate body parts likely ancient feature of 4-legged vertebrates,https://news.brown.edu/articles/2015/10/regenerate,1,1,DrScump,10/27/2015 22:10 +11690091,300th issue of Hacker Newsletter,http://www.hackernewsletter.com/300.html,2,1,duck,5/13/2016 12:52 +10567371,"After Paris, Europe may never feel as free again",http://www.theguardian.com/commentisfree/2015/nov/14/after-paris-attacks-europe-never-same-terrorism,10,4,jkire,11/14/2015 21:35 +11848749,"Seven months later, Valves Steam Machines look dead in the water",http://arstechnica.com/gaming/2016/06/its-time-to-declare-valves-steam-machines-doa/,16,5,prostoalex,6/6/2016 17:53 +11545829,Show HN: We made a better way for landlords to manage rental applications,http://www.zora.io,21,20,mvrekic,4/21/2016 22:37 +10556669,How do you fight procrastination?,,5,3,bpg_92,11/12/2015 22:37 +11056893,Should E-cigarettes be allowed in the office?,,2,13,ReaperOfCode,2/8/2016 8:05 +10297044,Show HN: Stallman Bot The Interjecting Slack Hubot Integration,https://github.com/interwho/stallman-bot,3,1,interwho,9/29/2015 15:35 +12211296,Billionaire Peter Thiel thinks young peoples blood can keep him young forever,http://www.rawstory.com/2016/08/billionaire-peter-thiel-thinks-young-peoples-blood-can-keep-him-young-forever/,38,22,rock57,8/2/2016 16:55 +11192289,"Show HN: Read articles with context, wikipedia snippets of people or interests",http://contextually.in/,5,2,elayabharath,2/28/2016 20:47 +10823960,444444444444444444444444444444444444444444444444444444444444444.com,,1,1,asakapab0i,1/1/2016 23:06 +12056797,"The History of the URL: Domain, Protocol, and Port",https://eager.io/blog/the-history-of-the-url-domain-and-protocol/,185,35,zackbloom,7/8/2016 16:38 +10931349,"Science Compared Every Diet, and the Winner Is Real Food (2014)",http://www.theatlantic.com/health/archive/2014/03/science-compared-every-diet-and-the-winner-is-real-food/284595/?single_page=true,6,2,Tomte,1/19/2016 15:31 +11436805,Yesware's Free plan is ending,http://www.yesware.com/blog/transparent-pricing-announcement,3,1,sivalingam,4/6/2016 5:30 +11336313,Ensure a job for life ;-),https://github.com/Droogans/unmaintainable-code,3,1,andreareginato,3/22/2016 13:18 +10850474,Reinventing the Toilet for a Healthier City,http://www.theatlantic.com/health/archive/2016/01/reinventing-the-toilet-developing-world-sanitation/422589/?single_page=true,12,1,nols,1/6/2016 13:59 +11157425,2½ steps towards accurate project estimates,http://stackoverflow.com/a/35571856/319204,1,1,cvs268,2/23/2016 8:38 +11008512,let in python (2014),https://nvbn.github.io/2014/09/25/let-statement-in-python/,1,2,hatmatrix,1/31/2016 22:43 +11728666,Help fight dementia by playing a mobile game,http://www.seaheroquest.com/en/,7,1,gregdoesit,5/19/2016 7:39 +11684600,Right way to include an URL in a plain text sentence?,,4,5,lajarre,5/12/2016 16:24 +12386596,US ready to 'hand over' the internet's naming system,http://www.bbc.com/news/technology-37114313,62,22,jaynate,8/30/2016 0:51 +10727775,Ask HN: Functional or Imperative programing future of AI/robotics?,,2,2,hanniabu,12/13/2015 20:28 +10702723,Twoo doesn't use SSL when asking for credit card info,https://twitter.com/Twoo/status/664754620460343296,3,1,xPaw,12/9/2015 9:29 +10225885,Building DistributedLog: Twitters high-performance replicated log service,https://blog.twitter.com/2015/building-distributedlog-twitter-s-high-performance-replicated-log-service,55,4,anand-s,9/16/2015 11:44 +10873003,Feeling Reel,,1,1,jseeff,1/9/2016 21:42 +11164300,Indefinite detention on US soil?,https://theintercept.com/2016/02/23/obamas-plan-to-close-guantanamo-would-establish-indefinite-detention-on-us-soil/,4,1,archiebunker,2/24/2016 3:17 +10388973,"After Growing to 50 People, Were Ditching the Office Completely",https://open.buffer.com/no-office/,15,2,jkaljundi,10/14/2015 19:52 +10783060,Ask HN: Have you faced any racism in selection process of ALLOW REMOTEcompanies,,9,6,racistcompanies,12/23/2015 12:56 +10625949,Rump Kernel FAQ,https://github.com/rumpkernel/wiki/wiki/Info:-FAQ,62,3,Tomte,11/25/2015 7:50 +10255224,"Microsoft has built software, but not a Linux distribution",http://arstechnica.com/information-technology/2015/09/microsoft-has-built-software-but-not-a-linux-distribution-for-its-software-switches/,1,1,dwgirvan,9/21/2015 21:22 +11773603,FizzBuzz with Matlab and CVX. TensorFlow Version Had Bad Feature Engineering,https://www.facebook.com/siilats/posts/10104962964136889,2,1,siilats,5/25/2016 22:21 +10931972,Ask HN: Imposing a feedback on a school.,,2,3,popekpampam,1/19/2016 16:58 +11023901,A Day in the Life of a Developer,https://pressbro.wordpress.com/2016/02/03/a-day-in-the-life-of-a-developer/,3,1,askoxyz,2/3/2016 0:34 +11405648,Facebook is ruining Instagram,https://medium.com/@giuliomichelon/how-mark-zuckerberg-ruined-instagram-9733ad373bdf#.18lwizr1t,108,76,achairapart,4/1/2016 15:43 +11873418,Sex the new currency on trading site Bunz,http://www.cbc.ca/news/business/sex-bunz-trading-swap-sharing-economy-1.3624851,3,1,Sgt_Apone,6/10/2016 0:28 +11794791,The Geneva Free Port is crammed with storage vaults that contain great art,http://www.nytimes.com/2016/05/29/arts/design/one-of-the-worlds-greatest-art-collections-hides-behind-this-fence.html,67,46,bootload,5/29/2016 4:30 +11301378,CyanogenMod 13.0 Release 1 Released,http://www.cyanogenmod.org/blog/cm-13-0-release-1,3,1,noobie,3/16/2016 23:05 +10573611,"Scale Testing Docker Swarm to 30,000 Containers",http://blog.docker.com/2015/11/scale-testing-docker-swarm-30000-containers/,61,16,ah3rz,11/16/2015 10:20 +10279961,Dropbox has open-sourced Zulip,https://www.zulip.org/,755,313,joeclef,9/25/2015 18:53 +10570674,"Robert Craft, Stravinsky Adviser and Steward, Dies at 92",http://www.nytimes.com/2015/11/15/arts/music/robert-craft-stravinsky-adviser-and-steward-dies-at-92.html,20,4,snake117,11/15/2015 19:13 +11494999,Discover Messenger Bots,http://www.chatbots.today/,2,1,aniruddh,4/14/2016 8:05 +10640742,Handling server load for the Raspberry Pi Zero launch,http://blog.mythic-beasts.com/2015/11/27/raspberry-pi-zero-not-executing-a-trillion-lines-of-php/,72,45,benn_88,11/28/2015 11:06 +12129821,99 Bottles of OOP,http://www.sandimetz.com/99bottles,164,71,bdcravens,7/20/2016 15:34 +12238498,A x64 OS #1: UEFI,http://kazlauskas.me/entries/x64-uefi-os-1.html,224,66,based2,8/6/2016 15:53 +10666282,Ask HN: What are your favorite scaffolding tools?,,1,2,wkoszek,12/2/2015 22:20 +10644987,Coverage Is Not Strongly Correlated with Test Suite Effectiveness (2014),http://www.linozemtseva.com/research/2014/icse/coverage/,74,52,sawwit,11/29/2015 16:23 +10880246,How does the wholesale foreign exchange market actually work?,https://getmondo.co.uk/blog/2016/01/08/how-does-the-wholesale-foreign-exchange-market-work/,78,53,trstnthms,1/11/2016 11:48 +10569552,The Sparkling Programming Language,http://h2co3.github.io/,55,29,ingve,11/15/2015 13:31 +11220417,Ask HN: How can a back-end engineer find a front-end engineer to collaborate?,,2,2,evm9,3/3/2016 22:04 +11326011,Tell HN: AngelList told my employer that I'd updated my profile,,958,224,oliversisson,3/21/2016 3:24 +11403180,First YC Fellowship Virtual Demo Day,http://blog.ycombinator.com/first-fellowship-virtual-demo-day,79,11,degif,4/1/2016 7:03 +10271103,Coming Soon to Checkouts: Microchip-Card Payment Systems,http://www.nytimes.com/2015/09/24/business/smallbusiness/coming-soon-to-checkouts-microchip-card-payment-systems.html,2,1,snake117,9/24/2015 12:03 +10464258,Sweden closer to being the first cashless society with negative interest rates,http://www.businessinsider.com/sweden-cashless-society-negative-interest-rates-2015-10,10,22,ogezi,10/28/2015 13:25 +10760195,Keynote speech regarding NSA operation ORCHESTRA (2014),https://archive.fosdem.org/2014/schedule/event/nsa_operation_orchestra/,3,2,cryoshon,12/18/2015 18:57 +12514808,How I built a Hacker News client with Angular 2,http://houssein.me/angular2-hacker-news,10,6,MrAwesomeSauce,9/16/2016 15:48 +10780569,Login to Google with only your phone,https://docs.google.com/document/d/1-fyf-a1S9MkTp5-whuDUnltqIsh1q6OuOf2dSFfojxs/preview,2,1,msoad,12/22/2015 21:40 +12175118,Show HN: Show stars and push time in GitHub repo links,https://gist.github.com/wenerme/21c3a8b366ac2e2fed25388a2ba1ead1,1,1,wener,7/27/2016 17:59 +10370067,Chromium/Blink Intent to Implement: Experimental Framework,https://groups.google.com/a/chromium.org/forum/#!topic/experimentation-dev/GsPtuFt8XqA,54,21,lucideer,10/11/2015 17:13 +11455903,Godt Golang library for getting docker image tags,https://github.com/Gnouc/godt,1,1,Gnouc,4/8/2016 16:29 +11532057,My Friend Had Achor In MVP For Too Long,https://justruky.xyz/2016/katha-mvp-too-long/,15,10,kyloren,4/20/2016 3:27 +11037984,Is it really worth running in the rain? (1987) [pdf],http://www.fisica.uniud.it/~deangeli/rain.pdf,67,39,anacleto,2/4/2016 23:03 +11235190,Old Hollywood's Elite Were the Last to Use LSD for Therapy,http://www.vice.com/en_ca/read/cary-grant-lsd-old-hollywood-289,68,22,dangerman,3/6/2016 19:40 +10773294,"It's Not Capitalism That Causes Poverty, It's the Lack of It",http://www.forbes.com/sites/timworstall/2015/12/19/its-not-capitalism-that-causes-poverty-its-the-lack-of-it/,30,15,ph0rque,12/21/2015 20:30 +11008494,Why your favorite apps are designed to addict you,http://kernelmag.dailydot.com/issue-sections/features-issue-sections/15708/addicting-apps-mobile-technology-health/,59,35,jonbaer,1/31/2016 22:39 +11179497,Academic Drivel Report: Confessing my sins and exposing my academic hoax,http://prospect.org/article/academic-drivel-report,142,59,apsec112,2/26/2016 2:38 +12496858,Singapore Airlines Wont Extend Lease on First Airbus A380 Jet,http://www.wsj.com/articles/singapore-airlines-wont-extend-lease-on-first-airbus-a380-jet-1473838384,30,53,clorenzo,9/14/2016 13:55 +12237852,BBC detector vans are back to spy on your home Wi-Fi if you can believe it,http://theregister.co.uk/2016/08/06/bbc_detector_van_wi_fi_iplayer/,10,1,davidbarker,8/6/2016 12:16 +10476154,Seymour Cray Father of Supercomputing,http://www.cray.com/company/history/seymour-cray,1,1,Oatseller,10/30/2015 4:23 +12251222,Why Taylor Swift Is Asking Congress to Update Copyright Laws,http://www.npr.org/sections/alltechconsidered/2016/08/08/487291905/why-taylor-swift-is-asking-congress-to-update-copyright-laws,5,1,evo_9,8/8/2016 22:13 +10881021,Why I ignore the daily news and read The Economist instead,https://medium.com/@jazer/why-i-ignore-the-daily-news-and-read-the-economist-instead-and-how-you-can-too-53f4d255efa6,4,1,thesumofall,1/11/2016 14:52 +10611015,The Future of the Web Is 100 Years Old,http://nautil.us/issue/21/information/the-future-of-the-web-is-100-years-old,33,24,pmcpinto,11/22/2015 19:04 +12117887,Towards an exact (quantum) description of chemistry,https://research.googleblog.com/2016/07/towards-exact-quantum-description-of.html,3,1,runesoerensen,7/18/2016 20:31 +12072890,Intellij-Rust Rust Plugin for IntelliJ IDEA,https://intellij-rust.github.io,136,27,adamnemecek,7/11/2016 17:53 +12234188,How the AK-47 and AR-15 Evolved into Rifles of Choice for Mass Killers,http://www.nytimes.com/interactive/2016/world/ak-47-mass-shootings.html,3,1,acdanger,8/5/2016 17:31 +12101462,The Unlucky Billionaire Gotta catch em all,https://medium.com/the-unlucky-billionare/1-gotta-catch-em-all-7154b33e6b36,15,14,writerlexs,7/15/2016 15:01 +10191934,Spotify See which artists you were listening to before they got big,https://spotify-foundthemfirst.com/en-US,1,1,dakotaw,9/9/2015 15:15 +11587781,"Drone unlikely to have hit BA plane near Heathrow, government says",http://www.bbc.co.uk/news/uk-36159117,107,75,fredley,4/28/2016 10:47 +12260264,Ask HN: Best book on topography?,,5,5,avindroth,8/10/2016 8:26 +10580208,VLC contributor living in Aleppo writing about the Paris attacks,https://mailman.videolan.org/pipermail/vlc-devel/2015-November/105002.html,1368,705,etix,11/17/2015 10:27 +11637429,"Millions of Gmail, Hotmail and Yahoo Emails and Passwords Being Traded Online",http://www.techtimes.com/articles/156107/20160505/millions-of-gmail-hotmail-and-yahoo-emails-and-passwords-being-traded-online-as-part-of-huge-data-breach.htm,1,1,based2,5/5/2016 16:20 +10976022,Interested in BSD ports or are we all wasting time here?,https://github.com/dart-lang/sdk/issues/10260#issuecomment-174287146,8,1,fcambus,1/26/2016 21:00 +10951631,How APIs Fulfill the Original Promise of Service-Oriented Architecture,http://www.infoq.com/articles/apis-soa,45,16,hestefisk,1/22/2016 9:04 +11617894,"Fidelity, in Reversal, Raises Value of Many Tech Startups",http://www.wsj.com/articles/fidelity-in-reversal-raises-value-of-many-tech-startups-1462041176,44,18,prostoalex,5/3/2016 4:21 +11343360,Show HN: Prism The perfect OAS (Swagger 2) companion,http://stoplight.io/prism,5,1,marbemac,3/23/2016 11:01 +11481608,The funny things happening on the way to singularity,http://techcrunch.com/2016/04/09/the-funny-things-happening-on-the-way-to-singularity/,1,1,neogodless,4/12/2016 17:29 +11443353,"Sorry, developer bootcamps: I was wrong",https://medium.com/@dillonforrest/sorry-developer-bootcamps-i-was-wrong-ea37fcc5572c,7,5,guifortaine,4/6/2016 23:48 +11780100,Lenovo: Motorola acquisition 'did not meet expectations',http://www.theverge.com/2016/5/26/11782808/lenovo-motorola-acquisition-did-not-meet-expectations,1,1,AdmiralAsshat,5/26/2016 17:58 +10244999,First draft of the tree of life for the 2.3M named organisms released [pdf],http://www.pnas.org/content/early/2015/09/16/1423041112.full.pdf,76,7,irl_zebra,9/19/2015 17:55 +10978685,What is Something You Recommend (and why)?,,21,20,marginalcodex,1/27/2016 7:01 +11625248,Surface Phone slated for April 2017,http://www.windowscentral.com/surface-phone-slated-april-2017,2,1,vyrotek,5/4/2016 0:08 +10387300,Yukon Moose Hunting,,1,1,grecy,10/14/2015 15:51 +11752784,State of the Digital Nation 2016,http://blog.marvelapp.com/state-of-the-digital-nation-2016/,6,1,muratmutlu,5/23/2016 9:39 +11133700,Three to become first European network to block ads,http://www.irishtimes.com/business/technology/three-to-become-first-european-network-to-block-ads-1.2541160,40,36,s_dev,2/19/2016 14:46 +10733201,On sufficiently smart compilers,http://osa1.net/posts/2015-08-09-sufficiently-smart-compiler.html,50,16,YAFZ,12/14/2015 19:32 +11230537,String Interning Done Right,https://getkerf.wordpress.com/2016/02/22/string-interning-done-right/,56,12,cronjobber,3/5/2016 19:04 +11848176,Ask HN: Do you still use IRC?,,10,19,stamps,6/6/2016 16:52 +10766528,Digital Transformation of Business and Society,https://medium.com/@frankdiana/digital-transformation-of-business-and-society-5d9286e39dbf,1,1,rlalwani,12/20/2015 8:59 +10834554,"Ask HN: Can an idea be independent (at least enough), and for how long?",,1,1,burritofanatic,1/4/2016 8:36 +10988321,Modern-Day Million Dollar Homepage,http://thebigcashgame.com,9,3,maxfriedman,1/28/2016 14:31 +12071496,Ask HN: Should I quit graduate school to avoid a bad advisor?,,46,45,throwaway2439,7/11/2016 15:00 +12574942,Capcom's Streetfighter rootkit capcom.sys signed by a still valid Symantec cert,https://twitter.com/TheWack0lian/status/779639651795603457,2,2,0x0,9/25/2016 11:56 +11438105,Java generics never cease to impress,http://stackoverflow.com/q/36402646/521799,2,1,javinpaul,4/6/2016 11:51 +11803129,PayPal leaves Turkey as can't obtain permissions from regulatory bodies,https://www.paypal.com/tr/webapps/mpp/home,5,1,mrtksn,5/30/2016 20:54 +10417521,So you're learning OCaml,http://hyegar.com/blog/2015/10/19/so-you%27re-learning-ocaml/,142,48,e_d_g_a_r,10/20/2015 5:06 +11252616,Ask HN: What should I be aware of when open sourcing code from my company?,,8,4,bencoder,3/9/2016 12:46 +11046180,Lean on Me to offer anonymous venue for student support,http://tech.mit.edu/V136/N2/leanonme.html,4,2,darksigma,2/6/2016 2:14 +10862043,"Crises Are Bad for Morale, but Good for Toilet Paper Sales",https://blog.paribus.co/2016/01/07/crises-are-bad-for-morale-but-good-for-toilet-paper-sales/,2,1,JacobRoberts,1/8/2016 0:38 +10339175,CBCrypt: Encrypt from the client rather than send passwords to servers,https://cbcrypt.org,260,209,dorfsmay,10/6/2015 14:42 +11032074,key++ the programming language they don't want you to use #WETHEBEST,https://github.com/rrshaban/keyplusplus,2,1,yashafromrussia,2/4/2016 4:53 +11362609,PrlConf 2016 is cancelled,http://www.jonprl.org/prlconf.html,55,112,mrstorm,3/25/2016 20:54 +10718033,"Wanted: Linux Sysops, Fintech, Madrid, Spain",https://etfmatic.com/careers#linux_administrator,2,1,tcarnell,12/11/2015 16:34 +10937667,Sandberg: Men still run the world and its not going that well,http://www.weforum.org/agenda/2016/01/sheryl-sandberg-men-still-run-the-world-and-it-s-not-going-that-well,5,1,delibes,1/20/2016 12:47 +10635292,Ask HN: How to stay fit?,,3,10,snowse,11/27/2015 0:18 +11582713,"Bill Gates, Washington State, and the Nuisance of Democracy",https://nonprofitquarterly.org/2016/04/11/charitable-plutocracy-bill-gates-washington-state-and-the-nuisance-of-democracy/,61,27,chishaku,4/27/2016 17:48 +11847626,The Difference Between URLs and URIs,https://danielmiessler.com/study/url-uri/?fb_ref=0qWTTYKjCq-Hackernews,4,1,danielrm26,6/6/2016 15:47 +10360819,The Chicago End-Times: The slow humiliation of Chicagos most vital newspaper,http://www.theawl.com/2015/10/the-chicago-end-times,49,12,samclemens,10/9/2015 15:47 +12526162,Ask HN: Moving to US from the UK,,1,2,iqonik,9/18/2016 17:28 +10705400,What We Talk About When We Talk About Distributed Systems,http://videlalvaro.github.io/2015/12/learning-about-distributed-systems.html,196,30,rajathagasthya,12/9/2015 17:59 +10904152,Mlpack 2.0.0 released C++ machine learning library,https://mailman.cc.gatech.edu/pipermail/mlpack/2015-December/000706.html,57,2,garbage_stain,1/14/2016 20:22 +11239822,Women-only spaces are a hack,http://jvns.ca/blog/2016/03/06/women-only-spaces-are-a-hack/,8,3,yoha,3/7/2016 16:39 +10993620,Open-source and .NET it's not picking up,http://code972.com/blog/2016/01/93-open-source-and-net-its-not-picking-up,5,2,motowilliams,1/29/2016 5:08 +10347346,Russian cruise missiles fly over Iran and Iraq to hit targets in Syria (VIDEO),https://www.youtube.com/watch?v=G2TQ0wAfRts,6,1,notsony,10/7/2015 17:16 +10215560,How We Extended CloudFlare into Mainland China,https://blog.cloudflare.com/how-we-extended-cloudflares-performance-and-security-into-mainland-china/,60,34,eastdakota,9/14/2015 15:32 +11949440,Scheduling made easy!,https://xoyondo.com,1,1,xoyondo,6/21/2016 21:11 +12199508,Harnessing the Immune System to Fight Cancer,http://www.nytimes.com/2016/07/31/health/harnessing-the-immune-system-to-fight-cancer.html,171,30,e15ctr0n,7/31/2016 23:58 +10214966,1982 DC Comics Style Guide,https://www.facebook.com/media/set/?set=a.207954002578217.59091.207950722578545,77,23,Moeancurly,9/14/2015 13:37 +12280764,Solid A set of conventions and tools for decentralized social applications,https://solid.mit.edu/,153,46,edwinjm,8/13/2016 8:34 +12212221,IP question is 192.168.255.x a Valid Ip scheme?,http://arstechnica.com/civis/viewtopic.php?t=631325,2,1,wslh,8/2/2016 18:45 +12469854,Show HN: Chrome extension to block the annoying parts of Stack Overflow,https://github.com/jeffcole/stack-block,2,2,jeffcole,9/10/2016 16:23 +11415159,Andrew Hacker and the Case of the Missing Trigonometry Question,http://blogs.scientificamerican.com/roots-of-unity/andrew-hacker-and-the-case-of-the-missing-trigonometry-question/,3,1,aburan28,4/3/2016 6:22 +10418275,Ask HN: Why HN website still uses center tag and tables?,,5,2,galfarragem,10/20/2015 9:50 +11608757,OVH: PaaS DB PostgreSQL,https://www.runabove.com/PaaSDBPGSQL.xml,74,37,paukiatwee,5/2/2016 1:47 +12402388,Ask HN: Showing unread comments in Chrome,,2,1,jghn,9/1/2016 0:14 +11222681,Life and death in the App Store,http://www.theverge.com/2016/3/2/11140928/app-store-economy-apple-android-pixite-bankruptcy,137,58,gpresot,3/4/2016 8:38 +11929247,Show HN: Gazétor A unique newspage selected for you,http://gazetor.com,2,3,samil,6/18/2016 16:26 +10831266,The $10 Echo,http://sammachin.com/the-10-echo/,375,123,espadrine,1/3/2016 17:07 +12472988,Surprise Silicon Valley is nations most expensive place to live,http://www.siliconbeat.com/2016/09/09/surprise-silicon-valley-nations-expensive-place-live/,3,3,MilnerRoute,9/11/2016 12:00 +11710829,High CPU use by taskhost.exe when Windows 8.1 user name contains user,https://support.microsoft.com/en-us/kb/3053711,444,203,ivank,5/17/2016 1:37 +10485998,Researcher shows that black holes do not exist,http://phys.org/news/2014-09-black-holes.html,2,2,ccvannorman,11/1/2015 10:13 +12068287,"Ask HN: Any open AR library out there for mobile like Pokemon, Ingress, etc?",,16,8,kevindeasis,7/11/2016 1:27 +12308671,Intel Announces Knights Mill: A Xeon Phi for Deep Learning,http://www.anandtech.com/show/10575/intel-announces-knights-mill-a-xeon-phi-for-deep-learning,94,56,scaz,8/17/2016 21:35 +10340777,"Gallup: Consumer confidence lowest for the year, down 20%",http://www.gallup.com/poll/186029/economic-confidence-index-flat-september.aspx?utm_source=alert&utm_medium=email&utm_content=morelink&utm_campaign=syndication,3,1,randomname2,10/6/2015 17:43 +12376596,Ask HN: How do you handle DDoS attacks?,,223,106,dineshp2,8/28/2016 14:16 +11955208,Why Great Entrepreneurs Are Older Than You Think (2014),http://www.forbes.com/sites/krisztinaholly/2014/01/15/why-great-entrepreneurs-are-older-than-you-think,112,31,plessthanpt05,6/22/2016 16:41 +11894638,Anders Ericsson on deliberate practice,http://www.businessinsider.com/anders-ericsson-how-to-become-an-expert-at-anything-2016-6,57,15,josemrb,6/13/2016 15:28 +10445927,Do you know how much your computer can do in a second?,http://computers-are-fast.github.io/,557,174,luu,10/25/2015 4:00 +10593112,Foiling Electronic Snoops in Email,http://www.nytimes.com/2015/11/19/technology/personaltech/foiling-electronic-snoops-in-email.html,13,6,pavornyoh,11/19/2015 6:34 +10907878,Ketogenic Diet The Fundamentals,http://www.prymd.com/blog/ketogenic-diet-the-fundamentals/,2,1,slothvictim,1/15/2016 8:00 +11891387,A London Subway Experiment: Please Dont Walk Up the Escalator,http://www.nytimes.com/2016/06/13/world/europe/a-london-subway-experiment-please-dont-walk-up-the-escalator.html,24,52,danso,6/13/2016 2:24 +12114803,SpaceX made a Pokémon Go joke,http://www.theverge.com/2016/7/18/12211128/spacex-pokemon-go-joke-rocket-launch,1,1,dilly_li,7/18/2016 13:05 +10837471,WSGI 2.0 Round 2: requirements and call for interest,https://mail.python.org/pipermail/web-sig/2016-January/005357.html,8,1,fermigier,1/4/2016 18:39 +10276780,"Forcing suspects to reveal phone passwords is unconstitutional, court says",http://arstechnica.com/tech-policy/2015/09/forcing-suspects-to-reveal-phone-passwords-is-unconstitutional-court-says/,284,187,LeoNatan25,9/25/2015 7:29 +10585701,Gene drive gives scientists power to hijack evolution,http://www.statnews.com/2015/11/17/gene-drive-hijack-evolution/,12,3,dtawfik1,11/18/2015 3:21 +11262473,Apple SVP says quitting multitasking apps wont offer improved battery life,http://9to5mac.com/2016/03/10/should-you-quit-ios-apps-answer/,1,1,Gys,3/10/2016 21:23 +10692521,"Bernies New Climate Change Plan Is an Environmentalists Dream, Except for This",http://www.slate.com/blogs/the_slatest/2015/12/07/bernie_sanders_climate_plan_calls_for_end_to_nuclear_energy.html,2,1,cryptoz,12/7/2015 20:40 +10253022,Nikki McDonald on how to get a book deal,http://blog.officehours.io/nikki-mcdonald-on-how-to-get-a-book-deal/,1,1,karjaluoto,9/21/2015 15:43 +12223352,Google's Rules of Thumb for HTTP/2 Push,https://docs.google.com/document/d/1K0NykTXBbbbTlv60t5MyJvXjqKGsCVNYHyLEXIxYMv0/edit,5,2,cpeterso,8/4/2016 4:15 +11370550,Fight,http://www.nytimes.com/2016/03/28/sports/boxing-youngstown-anthony-taylor-hamzah-aljahmi.html,146,28,wallflower,3/27/2016 16:50 +11868869,4 Marketing Lessons from Frank Underwood,https://www.zoho.com/salesiq/blog/if-frank-underwood-can-speak-and-win-people-you-can-chat-and-win-customers.html,3,1,Janavinagarajan,6/9/2016 12:20 +11086510,What ABOUT Sanders?,,1,2,yadayadayada,2/12/2016 11:21 +12483543,How Much Really Changed About Terrorism on 9/11?,http://www.defenseone.com/ideas/2016/09/how-much-really-changed-about-terrorism-911/131438/,1,1,hackuser,9/12/2016 20:51 +11110644,When the Hospital Fires the Bullet,http://www.nytimes.com/2016/02/14/us/hospital-guns-mental-health.html,5,1,hackerhasid,2/16/2016 15:53 +11855976,Scaleway C2 Ramp Up: 10 000 BareMetal Servers per Month,https://blog.scaleway.com/2016/06/07/c2-ramp-up-10000-baremetal-servers-month/,11,3,edouardb,6/7/2016 17:23 +10459055,"To Get Better Wi-Fi on Google's New Router, Just Wave",http://www.fastcodesign.com/3052739/to-get-better-wi-fi-on-googles-new-router-just-wave,4,2,BlackJack,10/27/2015 16:22 +10783032,The Admiral of the String Theory Wars,http://nautil.us/issue/24/error/the-admiral-of-the-string-theory-wars,51,5,dnetesn,12/23/2015 12:41 +11069925,The Bicycle: Growing Popularity of the New Vehicle (1874) [pdf],http://query.nytimes.com/mem/archive-free/pdf?res=9B02E6DE1030EF34BC4F53DFB767838F669FDE,113,60,evilsimon,2/10/2016 0:18 +11303357,What We Can Learn from the Epic Failure of Google Flu Trends (2015),http://www.wired.com/2015/10/can-learn-epic-failure-google-flu-trends/,1,1,miduil,3/17/2016 9:29 +11150714,UX Guide Design Better User Experiences (Learn UX Design),https://stayintech.com/info/uxguide,4,3,userium,2/22/2016 13:46 +11325940,The pricing of solar,http://www.samefacts.com/2016/03/economics/the-value-of-solar/,1,1,dtawfik1,3/21/2016 3:02 +11702731,Libyas Central Bank forgot the code to a safe containing $184m worth of coins,http://www.wsj.com/articles/libyas-central-bank-needs-money-stashed-in-a-safe-problem-is-officials-dont-have-the-code-1463153910,8,2,jackgavigan,5/15/2016 20:59 +10209099,Just married comment in code that I just took over on a freelance work,http://imgur.com/gallery/4jiteAb/,3,3,robertsky_,9/12/2015 19:50 +11322912,Original Diablo Pitch Document (1994) [pdf],http://www.graybeardgames.com/download/diablo_pitch.pdf,291,112,eswat,3/20/2016 13:56 +10825536,Happy people dont leave jobs they love,http://randsinrepose.com/archives/shields-down/,360,124,BerislavLopac,1/2/2016 8:29 +11029278,The farm of the future is in Philadelphia,http://technical.ly/philly/2016/02/03/metropolis-farms-south-philly-vertical-farming/,2,1,jsherman76,2/3/2016 20:01 +10532144,What's the password (2001),https://htmlpreview.github.io/?https://github.com/thwarted/whatsthepassword/blob/master/whatsthepassword.html,25,10,agbonghama,11/9/2015 9:59 +10553152,Graph Isomorphism in Quasipolynomial Time,http://people.cs.uchicago.edu/~laci/quasipoly.html,13,1,dnt404-1,11/12/2015 14:05 +10802351,Test results for Broadwell and Skylake,http://www.agner.org/optimize/blog/read.php?i=415,88,6,ivank,12/28/2015 17:58 +11372272,Read 1k Words per Minute,http://spritzinc.com/,3,1,frankydp,3/28/2016 1:34 +11068030,RFC: Lanai backend Google internal processor architecture,http://lists.llvm.org/pipermail/llvm-dev/2016-February/095118.html,10,5,beltex,2/9/2016 19:31 +10488311,An Exact Algorithm for Finding Minimum Oriented Bounding Boxes [pdf],http://clb.demon.fi/minobb/minobb_jylanki_2015_06_01.pdf,67,19,vmorgulis,11/1/2015 21:09 +11181158,"MicroPython, a few years on",https://www.kickstarter.com/projects/214379695/micro-python-python-for-microcontrollers/posts/1502594,102,30,feederico,2/26/2016 13:11 +10685407,"Launch of Figma, a collaborative interface design tool",https://medium.com/figma-design/design-meet-the-internet-4140774f2872#.x48eovhnq,135,40,hellcow,12/6/2015 15:13 +10280722,Marine Archaeologists Excavate Greek Antikythera Shipwreck,http://www.heritagedaily.com/2015/09/marine-archaeologists-excavate-greek-antikythera-shipwreck/108391,1,1,jdnier,9/25/2015 21:13 +10652909,Flexbox Froggy: A game for learning CSS flexbox,http://flexboxfroggy.com/,315,69,jtwebman,12/1/2015 0:31 +11592568,Cortana Web searches in Windows 10 will now only be able to open Edge and Bing,http://arstechnica.com/information-technology/2016/04/cortana-web-searches-in-windows-10-will-now-only-be-able-to-open-edge-and-bing/,2,1,Geojim,4/28/2016 23:12 +11290577,Feathers 2.0 a minimalist real-time JavaScript framework,https://blog.feathersjs.com/introducing-feathers-2-0-aae8ae8e7920#.9cpsdv5hu,202,81,daffl,3/15/2016 15:58 +12250047,Show HN: Dictio A Dictionary for Developers,https://dictio.io,5,2,seanosaur,8/8/2016 18:57 +12322740,Satellites auto detect buildings in OpenStreetMap,https://medium.com/@astrodigital/satellites-auto-detect-buildings-in-openstreetmap-b5bfb8840114#.ux0i1hboo,163,33,liotier,8/19/2016 19:19 +11532183,How I investigated Uber surge pricing in D.C,https://source.opennews.org/en-US/articles/how-i-investigated-uber-surge-pricing-dc/,75,11,danso,4/20/2016 4:04 +12442308,Ask HN: Self-taught or college education?,,3,3,alinalex,9/7/2016 11:14 +10712739,Japanese government dismantles freedom of the press,https://freedom.press/blog/2015/12/preparation-join-us-wars-japan-dismantles-freedom-press,237,110,sprucely,12/10/2015 19:22 +12564233,The Long Tail Keyword Myth,http://clicteq.com/the-long-tail-keyword-myth-a-data-driven-argument/,25,13,Clicteq,9/23/2016 13:03 +10879953,"Sorry PG, the Small Life Is the Epic Life",https://www.youtube.com/watch?v=W8_VZo993BI,4,1,ajjuliani,1/11/2016 10:16 +11520633,Fair use prevails as Supreme Court rejects Google Books copyright case,http://arstechnica.com/tech-policy/2016/04/fair-use-prevails-as-supreme-court-rejects-google-books-copyright-case/,239,88,coloneltcb,4/18/2016 15:24 +10911913,OweFS One-way encrypted file system,http://owefs.firelet.net/,50,38,nyan4,1/15/2016 20:33 +10723686,Leaving the Evil Empire of Facebook,https://medium.com/@hargup/leaving-the-evil-empire-of-facebook-7f7b1955bb37#.bdw3iocdp,2,2,hargup,12/12/2015 18:51 +10503438,The disappearing middle class is threatening large American brands,http://uk.businessinsider.com/the-disappearing-middle-class-is-threatening-major-retailers-2015-10,3,2,Futurebot,11/3/2015 23:16 +10431768,Why I'm saying goodbye to Dropbox and hello to SpiderOak Hive,http://dougbelshaw.com/blog/2013/08/28/why-im-saying-goodbye-to-dropbox-and-hello-to-spideroak-hive/,9,3,nsmalch,10/22/2015 12:25 +10891509,The Approaching Death of the Parallel File System,http://www.nextplatform.com/2016/01/12/the-slow-death-of-the-parallel-file-system/,22,12,Katydid,1/13/2016 0:37 +10956390,Blended Community is the next Facebook?,http://Www.blendedcommunity.com,1,1,jeancol,1/22/2016 23:57 +10463385,Chicken study reveals evolution can happen faster than thought,http://www.ox.ac.uk/news/2015-10-28-chicken-study-reveals-evolution-can-happen-much-faster-thought-0,41,13,dnetesn,10/28/2015 9:06 +11454408,I've Had Enough and Today Everyone Has the Phoronix Premium Experience,https://www.phoronix.com/scan.php?page=news_item&px=Premium-For-Everyone-Today,134,32,iberinger,4/8/2016 13:16 +11215708,Learned treatise (Wikipedia),https://en.wikipedia.org/wiki/Learned_treatise,2,2,fabulist,3/3/2016 8:45 +10590004,Ask HN: Review my startup: dynalist.io,,2,6,ericax,11/18/2015 19:16 +12381728,Apple Patents Collecting Biometric Information Based on Unauthorized Device Use,https://www.schneier.com/blog/archives/2016/08/apple_patents_c.html,10,1,cgtyoder,8/29/2016 13:38 +11600345,Yahoo CEO Marissa Mayer Compensation Soars 69 Percent to $42.1M,http://www.hollywoodreporter.com/news/yahoo-ceo-marissa-mayer-compensation-889087,35,13,jkestner,4/30/2016 4:25 +12515613,Articles and books about the software engineering labor market?,,1,1,uger,9/16/2016 17:21 +11400322,A $700 Juicer for the Kitchen That Caught Silicon Valleys Eye,http://www.nytimes.com/2016/04/03/business/juicero-juice-system-silicon-valley-interest.html?ref=technology&_r=0,39,47,hvo,3/31/2016 20:25 +10371228,The Little Printf,http://ferd.ca/the-little-printf.html,14,3,gmcabrita,10/11/2015 21:50 +11805296,Show HN: Fun with Palindromes and Rust Iterators,https://github.com/bluejekyll/palindrome-rs/blob/master/src/lib.rs,3,4,bluejekyll,5/31/2016 7:50 +12118010,Why Bicycling Infrastructure Fails Bicyclists,http://www.slate.com/articles/business/metropolis/2016/07/bicycling_needs_two_things_to_be_safer_better_infrastructure_and_better.html,10,4,jseliger,7/18/2016 20:54 +10832914,New string formatting in Python,https://zerokspot.com/weblog/2015/12/31/new-string-formatting-in-python/,173,132,eatonphil,1/3/2016 22:38 +12169655,"Iran destroys 100,000 moral-corrupting satellite dishes",http://www.aljazeera.com/news/2016/07/iran-destroys-100000-corrupting-satellite-dishes-160724202722493.html,3,1,yunque,7/27/2016 0:00 +10208018,Ask HN: Have you converted to software engineering from another profession?,,3,8,GFuller,9/12/2015 13:24 +11587787,Ask HN: Can I Optimise the load time of your Wordpress Site for Free?,,7,10,adzeds,4/28/2016 10:50 +10742786,The discovery of lunar water has changed everything for human exploration,http://arstechnica.com/science/2015/12/why-were-going-back-to-the-moon-with-or-without-nasa/,85,53,nomadictribe,12/16/2015 6:48 +11937085,How things float,http://datagenetics.com/blog/june22016/index.html,7,2,fanfantm,6/20/2016 9:56 +10607531,The MTV Problem with Product Managment,https://shkspr.mobi/blog/2015/11/the-mtv-problem-with-product-managment/,21,4,edent,11/21/2015 18:22 +11762314,Millers Law in the Archipelago of Weird,https://status451.com/2016/05/24/millers-law-in-the-archipelago-of-weird/,2,1,adiabatty,5/24/2016 15:26 +10348028,How Did the World's Rich Get That Way? Luck (2013),http://www.bloomberg.com/bw/articles/2013-04-22/how-did-the-worlds-rich-get-that-way-luck,3,3,pmiller2,10/7/2015 18:42 +11339521,Ask HN: Should I learn Swift?,,6,7,b01t,3/22/2016 19:58 +10901969,Course materials for Malware Analysis,https://github.com/RPISEC/Malware,99,10,adamnemecek,1/14/2016 15:34 +10786492,"Brazil declares emergency after 2,400 babies are born with brain damage",https://www.washingtonpost.com/news/to-your-health/wp/2015/12/23/brazil-declares-emergency-after-2400-babies-are-born-with-brain-damage-possibly-due-to-mosquito-borne-virus/,321,137,igonvalue,12/24/2015 0:49 +11542526,Apply HN: Open Rover open outdoor robotics,,5,4,neuromancer2701,4/21/2016 14:47 +11942850,Why extremely rare events keep happening all the time,http://www.chicagotribune.com/news/sns-wp-blm-rare-comment-4355e7ec-370a-11e6-af02-1df55f0c77ff-20160620-story.html,12,3,eplanit,6/21/2016 1:13 +12353299,Pluggable.js: A tiny plugin architecture for your JavaScript project,https://jcbrand.github.io/pluggable.js,7,1,jcbrand,8/24/2016 16:41 +12407368,Mark Zuckerberg's visit gives Nigerian startups much-needed boost,http://www.cnn.com/2016/08/31/africa/nigeria-zuckerberg-visit/,2,1,endswapper,9/1/2016 17:47 +11664322,'Panama Papers' Offshore Leaks Database,https://offshoreleaks.icij.org/,108,17,astdb,5/10/2016 0:12 +12424883,Children Should Eat Less Than 25 Grams of Added Sugar Daily,http://www.sci-news.com/medicine/children-added-sugars-04125.html,34,65,awqrre,9/4/2016 15:41 +12294065,Show HN: WebGL low-poly saturn example,http://whitestormjs.xyz/playground/?example=saturn&dir=demo,19,3,alex2401,8/15/2016 22:42 +12085843,"Gluon: A static, type inferred and embeddable language written in Rust",https://github.com/Marwes/gluon,136,48,jswny,7/13/2016 13:12 +11294652,"Before ASCII art, there was typewriter art",http://pictorial.jezebel.com/the-typewriter-ascii-portraits-of-classic-hollywood-and-1738094492,2,1,anigbrowl,3/16/2016 2:52 +11770832,Comcast limits data cap overage fees to $200 a month,http://arstechnica.com/business/2016/05/comcast-limits-data-cap-overage-fees-to-200-a-month/,2,1,shawndumas,5/25/2016 16:10 +11223548,Show HN: Management as a service,https://medium.com/@humanworks/management-as-a-service-89fd71321a1f,3,6,Nikolas0,3/4/2016 13:29 +11541035,Innovation thoughts on success,https://andrewstannard.com/inniovation-a19fde37c1f4#.yexa54eia,2,2,astannard,4/21/2016 11:07 +11545873,"National Security Letters are now constitutional, judge rules",http://arstechnica.com/tech-policy/2016/04/in-a-reversal-judge-now-says-national-security-letters-are-constitutional/,11,1,doctorshady,4/21/2016 22:47 +12237927,"Bitcoin not money, judge rules in victory for backers",http://phys.org/news/2016-08-bitcoin-money-victory-backers.html,20,7,dnetesn,8/6/2016 12:43 +10712871,'Troll insurance' to cover the cost of internet bullying,http://www.telegraph.co.uk/finance/newsbysector/banksandfinance/insurance/12041832/Troll-insurance-to-cover-the-cost-of-internet-bullying.html,26,14,e15ctr0n,12/10/2015 19:41 +11056766,Test your BIOS and share your results on GitHub,https://github.com/farjump/fwtr,157,17,Julio-Guerra,2/8/2016 7:16 +11870599,Help Make Open Source Secure,https://blog.mozilla.org/blog/2016/06/09/help-make-open-source-secure/,30,1,robin_reala,6/9/2016 16:53 +12513701,EpiPen Maker Quietly Steers Effort That Could Protect Its Price,http://www.nytimes.com/2016/09/16/business/epipen-maker-mylan-preventative-drug-campaign.html,172,167,uptown,9/16/2016 13:11 +10739089,Why Were Stuck in an Abusive Relationship with Our Phones,https://medium.com/@chrysb/why-we-re-stuck-in-an-abusive-relationship-with-our-phones-12787406c473,5,1,chrysb,12/15/2015 17:39 +11930405,Serverless Architecture in short: lower operations costs and vendor lock-in,https://specify.io/concepts/serverless-architecture,13,7,WolfOliver,6/18/2016 20:13 +12258523,Recreating the Doctor Who Time Tunnel in GLSL,http://roy.red/slitscan-.html,119,17,roywiggins,8/9/2016 23:55 +10191589,A Slack Client with Built-In Task Management,http://swipesapp.com/slack,3,4,marwann,9/9/2015 14:21 +10204376,Teaching Machines to Understand Us (2015),http://www.technologyreview.com/featuredstory/540001/teaching-machines-to-understand-us/,2,1,r_singh,9/11/2015 15:54 +11712474,Computer glitch has led to incorrect advice on statins,https://www.newscientist.com/article/2087983-computer-glitch-has-led-to-incorrect-advice-on-statins,32,18,gulda,5/17/2016 10:42 +10794504,Ask HN: How to move from Sr. Level front end engineer to c++ games dev,,1,4,dclowd9901,12/26/2015 16:52 +12292230,Last Day to Apply for Startup School 2016,http://blog.ycombinator.com/last-day-to-apply-for-startup-school-2016,50,8,dwaxe,8/15/2016 18:08 +10550608,"Block storage is dead, says ex-HP and Supermicro data bigwig",http://www.theregister.co.uk/2015/11/10/block_storage_dead_interview/,10,9,snaky,11/12/2015 1:03 +10607422,How a little bit of TCP knowledge is essential,http://jvns.ca/blog/2015/11/21/why-you-should-understand-a-little-about-tcp/,299,41,dar8919,11/21/2015 17:50 +12125348,Grabr launches peer-to-peer marketplace for international shopping and delivery,https://techcrunch.com/2016/07/19/grabr-launches-peer-to-peer-marketplace-for-international-shipping/,11,5,isaiahd,7/19/2016 22:14 +11890122,Elixir restful framework,https://maru.readme.io,5,1,indatawetrust,6/12/2016 20:37 +12348909,The Loomio Cooperative Handbook: How we run a worker-owned tech startup,http://loomio.coop,122,32,alannallama,8/24/2016 0:46 +10344860,Ask HN: IDE Right Screen == Better Problem Solving Skills?,,5,11,glynjackson,10/7/2015 8:43 +11365187,GalliumOS Lightweight Linux for Chromebooks,https://galliumos.org/,141,74,milankragujevic,3/26/2016 10:42 +10825685,Will you use ReactJS with a REST service instead of GWT in Java app?,https://hashnode.com/post/will-you-use-reactjs-components-with-a-rest-service-instead-of-gwt-in-java-application-ciiwwahql0063wx53ef5qkh2y,4,1,ipselon,1/2/2016 9:37 +10259798,Quirky Just Filed for Bankruptcy,http://gizmodo.com/quirky-just-filed-for-bankruptcy-1732333772,6,1,sageabilly,9/22/2015 16:48 +10297855,Google Nexus 6P,https://store.google.com/product/nexus_6p,45,84,rabbidruster,9/29/2015 17:26 +12238517,Ptpython better than ipython or bpython?,http://terriblecode.com/why-ptpython-is-the-only-repl-you-will-ever-need-2/,1,1,ausjke,8/6/2016 15:55 +11090835,Request for Advice: How to interact with memes in the work place,,2,1,Neetpeople,2/12/2016 21:36 +12550901,Chan Zuckerberg Initiative commits to investing $3B to cure diseases,http://www.theverge.com/2016/9/21/13003174/chan-zuckerberg-initiative-commits-to-investing-3-billion-to-cure,10,2,stanleydrew,9/21/2016 18:28 +10183209,"Show HN: I'm building an AR/VR glove (inertial tracking, no cameras)",https://www.youtube.com/watch?v=xxeAgxs409A,7,3,mburkon,9/7/2015 21:47 +11430258,This fall Thursday Night Football will be streamed live Twitter,https://twitter.com/nflcommish/status/717328210879336450,2,1,anu_gupta,4/5/2016 13:41 +11570834,Generally Accepted Accounting Standards (GAAP),http://avc.com/2016/04/generally-accepted-accounting-standards-gaap/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+AVc+%28A+VC%29,6,2,ghosh,4/26/2016 11:09 +11701383,Americas Never-Ending Oil Consumption,http://www.theatlantic.com/politics/archive/2016/05/american-oil-consumption/482532/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Best-Of-The-Atlantic+%28The+Atlantic+-+Best+Of%29&single_page=true,27,50,jseliger,5/15/2016 16:02 +12020517,Chronix: A fast and efficient time series storage,http://chronix.io/#features,71,13,based2,7/1/2016 23:45 +11662192,Fort McMurray Wildfire in Alberta Canada Deemed Extreme,https://www.nasa.gov/image-feature/goddard/2016/fort-mcmurray-wildfire-in-alberta-canada-deemed-extreme,4,1,raddad,5/9/2016 18:57 +10501096,Administrate Rails framework for creating flexible admin dashboards,https://robots.thoughtbot.com/announcing-administrate,15,2,graysonwright,11/3/2015 17:36 +12013855,A diagram of human consciousness,https://www.reddit.com/r/neurology/comments/4qpvru/a_diagram_of_human_consciousness/,3,1,coolestux,7/1/2016 4:21 +12033764,Christian Mingle must let LGBT singles use dating site after losing court battle,http://www.cbc.ca/news/trending/christian-mingle-same-sex-dating-lgbt-lawsuit-california-1.3663871,6,13,empressplay,7/5/2016 0:38 +12357427,Encryption under fire in Europe as France and Germany call for decrypt law,https://techcrunch.com/2016/08/24/encryption-under-fire-in-europe-as-france-and-germany-call-for-decrypt-law/,42,58,ammonammon,8/25/2016 7:36 +11240769,Trending stories from the world wide web,http://occasionaljunk.com,3,1,anmolparashar,3/7/2016 19:02 +12038072,Is there a company that sells meal planning?,,1,7,loorinm,7/5/2016 17:30 +12138979,Measure the Real Size of Any Python Object,https://goshippo.com/blog/measure-real-size-any-python-object/,10,2,wjarjoui,7/21/2016 18:35 +11096844,MapDB: Database Engine,http://www.mapdb.org,4,1,weitzj,2/14/2016 2:21 +11190759,Worlds Most Feared Financial Sanction 311Act Challenged and Beaten David V Goliath,http://bpabankclassaction.com/index.php?p=/discussion/14/fincen-fuks-up-so-badly-they-resort-to-retreating-and-pretending-they-never-existed#latest,4,1,jayjay1010,2/28/2016 12:31 +10806649,HashGAB Video Parody Maker,http://hashgab.com,1,2,hashgab,12/29/2015 13:58 +10712482,Old Stuff That Rocks,https://wincent.com/blog/old-stuff-that-rocks,25,5,thomson,12/10/2015 18:50 +12008020,Waiting for Gödel,http://www.newyorker.com/tech/elements/waiting-for-godel,84,28,enkiv2,6/30/2016 12:29 +10512461,Teach Yourself Go in 24 Hours,http://leanpub.com/teachyourselfgo,3,3,jpheight,11/5/2015 9:38 +11359047,GStreamer 1.8 released,https://gstreamer.freedesktop.org/releases/1.8/,4,1,forlorn,3/25/2016 8:40 +10524735,The KeyKOS Nanokernel Architecture (1992),http://www.cis.upenn.edu/~KeyKOS/NanoKernel/NanoKernel.html,77,10,the_why_of_y,11/7/2015 13:35 +11150314,Caterpillar's new smartphone with built-in thermal imaging,http://gizmodo.com/caterpillars-new-s60-is-the-first-smartphone-with-flir-1759685817?sf44639276=1,114,63,uphoff,2/22/2016 12:22 +10755904,Core Data Threading Demystified,https://realm.io/news/marcus-zarra-core-data-threading/,29,3,astigsen,12/18/2015 1:01 +10833855,Agromafia,http://www.cbsnews.com/news/60-minutes-agromafia-food-fraud/,115,84,kungfudoi,1/4/2016 3:28 +11420774,A $700 Juicer for the Kitchen That Caught Silicon Valleys Eye,http://www.nytimes.com/2016/04/03/business/juicero-juice-system-silicon-valley-interest.html,2,1,Saad_M,4/4/2016 10:45 +11244878,Show HN: Drive development of missing features from any open source project,http://codemill.io/for-open-source,6,13,shaharsol,3/8/2016 12:45 +10765889,Why you only need to test with 5 users,https://www.nngroup.com/articles/why-you-only-need-to-test-with-5-users/,2,1,sail,12/20/2015 3:05 +11720559,Another Hack: 117M LinkedIn Emails and Passwords,http://motherboard.vice.com/read/another-day-another-hack-117-million-linkedin-emails-and-password,54,9,Brajeshwar,5/18/2016 8:37 +10640733,"Briefly on the Purpose of Functors, Applicatives and Monads",https://codetalk.io/posts/2015-11-28-briefly-on-the-purpose-of-functors-applicatives-and-monads.html,33,1,Tehnix,11/28/2015 11:00 +10380487,Capsule Shield: A Docker Alternative for the JVM,http://blog.paralleluniverse.co/2015/10/08/container-capsules/,113,48,pron,10/13/2015 14:00 +10252748,Bootstrapping Ikarus Scheme,https://groups.google.com/forum/#!topic/ikarus-users/mMOxn8qO_Iw,24,2,soegaard,9/21/2015 15:02 +12020367,"Home Computers Connected to the Internet Aren't Private, Court Rules",http://mobile.eweek.com/security/home-computers-connected-to-the-internet-arent-private-court-rules.html,7,2,RealGeek,7/1/2016 23:13 +10177744,A Basketball Arena Battles for San Franciscos Heart,http://www.nytimes.com/2015/09/06/business/a-basketball-arena-battles-for-san-franciscos-heart.html?ref=basketball,2,1,pma,9/6/2015 14:30 +11996355,California Hits the Brakes on High-Speed Rail,http://www.bloomberg.com/view/articles/2016-06-28/california-hits-the-brakes-on-high-speed-rail-fiasco,42,106,HillaryBriss,6/28/2016 18:44 +11552375,svmidi a simple virtual midi keyboard (beta),https://github.com/henriqueleng/svmidi,1,1,henriqueleng,4/22/2016 20:33 +12443859,Only Apple could get away with killing the headphone jack,http://www.vox.com/2016/9/7/12816066/apple-headphone-jack,6,12,wyldfire,9/7/2016 14:51 +11980499,The light clock mini,http://urltag.net/Bhfja,1,1,bootmagic,6/26/2016 12:34 +11872664,A Lament for the LAN Party,https://www.rockpapershotgun.com/2016/06/09/lan-party-starcraft-nineties/,235,154,yrochat,6/9/2016 21:53 +12555948,Why Kenya's Cashless Payments for Public Transport Failed,http://www.iafrikan.com/2016/09/21/kenyas-cashless-payment-system-was-doomed-by-a-series-of-experience-design-failures/,3,1,tefo-mohapi,9/22/2016 11:05 +12066249,Why the Great Divide Is Growing Between Affordable and Expensive U.S. Cities,http://blogs.wsj.com/economics/2016/04/18/why-the-great-divide-is-growing-between-affordable-and-expensive-u-s-cities/,69,94,jseliger,7/10/2016 17:08 +12332366,Mac OS X: Sane way to switch between windows,https://tooling.tips/mac-os-x-sane-way-to-switch-between-windows-2853493b9a1e#.d5457u5ql,44,60,a_alakkad,8/21/2016 19:34 +10216598,"Empty Epson ink cartridges, which cost £2,500 a set, are still 20 percent full",http://arstechnica.co.uk/gadgets/2015/09/empty-epson-ink-cartridges-which-cost-2500-for-a-set-are-still-20-percent-full/,19,1,wolfgke,9/14/2015 18:30 +10396117,"Windows 10 upgrade nags become more aggressive, offer no opt-out",http://www.zdnet.com/article/windows-10-upgrade-nags-become-more-aggressive-offer-no-opt-out/,12,9,someguy1233,10/15/2015 21:26 +10188667,Principles of a Decentralized Web,http://nicola.io/decentralized-principles/2015/,46,29,nicolagreco,9/8/2015 22:54 +12555403,Show HN: Changing and throttling http traffic with ARP poisoning,https://github.com/Shinao/CDansLair,4,3,shinao,9/22/2016 8:36 +10222137,"Oldest, Longest Ancient Egyptian Leather Manuscript Found",http://news.discovery.com/history/archaeology/oldest-and-longest-ancient-egyptian-leather-manuscript-found-150914.htm,17,2,diodorus,9/15/2015 18:00 +12418979,Finnish Carrier Sets New World Record for 4G Download Speeds,http://spectrum.ieee.org/tech-talk/telecom/wireless/finnish-carrier-sets-new-world-record-for-4g-download-speeds,75,61,bemmu,9/3/2016 12:41 +12163603,Facebook removes ABC Four Corners footage of child detainee abuse,http://www.theage.com.au/victoria/facebook-removes-abc-four-corners-footage-of-child-detainee-abuse-20160726-gqe0bz.html,6,1,andrewstuart,7/26/2016 5:52 +10352584,"One Year with Apache Mesos The Good, the Bad, and the Ugly",http://datajet.io/One-year-with-Apache-Mesos-The-Good-The-Bad-and-the-Ugly.html,34,2,petard,10/8/2015 13:26 +10650466,How Google Uses Angular 2 with Dart,http://angularjs.blogspot.com/2015/11/how-google-uses-angular-2-with-dart.html,1,1,daw___,11/30/2015 17:15 +10613738,"Northern white rhino dies in US, leaving only three alive",http://www.bbc.co.uk/news/world-us-canada-34897767,17,3,grahamel,11/23/2015 10:08 +10269650,Tcl fiber package based on Erlang process model,http://tclfiber.sourceforge.net/,9,1,blacksqr,9/24/2015 3:22 +11631013,"Couple booked an Airbnb, walked into a porno shoot",http://imgur.com/a/LpCfa,7,6,chirau,5/4/2016 19:30 +10484365,Template Comparison D vs. C++,http://dlang.org/template-comparison.html,10,2,vmorgulis,10/31/2015 21:51 +12112658,"TempleOS Benchmark: VMware, VirtualBox, QEMU",https://www.youtube.com/watch?v=adtj2YwiDhQ,84,12,TempleOSV409,7/18/2016 0:49 +11653166,Cron best practices,https://sanctum.geek.nz/arabesque/cron-best-practices/,97,19,leejo,5/8/2016 8:08 +10439647,Machine learning at the speed of light,http://arxiv.org/abs/1510.06664,1,1,jedharris,10/23/2015 16:31 +11601271,"Report: Reddit falling short on revenue, may close Upvoted",http://siliconangle.com/blog/2016/04/29/report-reddit-falling-short-on-revenue-may-close-content-aggregation-site-upvoted/,7,1,brtkbrtk,4/30/2016 11:18 +10429840,PrettyPing,http://denilson.sa.nom.br/prettyping/,96,23,colinprince,10/22/2015 0:48 +11511864,New notification tool,http://www.kitwall.com,1,1,stevesol,4/16/2016 19:16 +11372669,Silicon Valley Looks to Artificial Intelligence for the Next Big Thing,http://www.nytimes.com/2016/03/28/technology/silicon-valley-looks-to-artificial-intelligence-for-the-next-big-thing.html,15,3,grej,3/28/2016 4:02 +11919921,"Bulk surveillance is going mainstream in the US, and inhumane tech is forthcoming",https://medium.com/@spencenow/bulk-surveillance-goes-mainstream-in-the-us-and-inhumane-tech-is-forthcoming-e871f5961c93#.olyzxyfpm,13,2,spenvo,6/17/2016 0:15 +12570932,"Coding is not fun, its technically and ethically complex",https://aeon.co/ideas/coding-is-not-fun-it-s-technically-and-ethically-complex?utm_source=Aeon+Newsletter&utm_campaign=c820819188-Weekly_Newsletter_23_September_20169_23_2016&utm_medium=email&utm_term=0_411a82e59d-c820819188-69015217,10,5,azuajef,9/24/2016 13:57 +10830587,Show HN: Plain text for the web,https://saola.in/about,151,47,saola-app,1/3/2016 13:56 +12088694,Master Ruby Web APIs Is Out,http://master-ruby-web-apis.samurails.com/,8,2,tn6o,7/13/2016 18:54 +11913828,Google buying Twitter predicted to follow Microsofts move for LinkedIn,http://www.marketwatch.com/story/google-buying-twitter-predicted-to-follow-microsofts-move-for-linkedin-2016-06-14,19,7,obi1kenobi,6/16/2016 3:50 +10319153,Fast starting MySQL Docker image suitable for test fixtures,https://hub.docker.com/r/zanox/mysql/,1,1,yarekt,10/2/2015 15:30 +10430716,Build your on linux distro,http://www.openembedded.org/wiki/Documentation,12,2,atilev,10/22/2015 6:34 +12478587,Ask HN: What to look for in a job candidate's GitHub profile,,9,9,noaclpo,9/12/2016 10:50 +11413123,Made a small JavaScript library for smooth pretty drawing/handwriting on Canvas,https://github.com/jakubfiala/atrament.js,8,2,fiala__,4/2/2016 20:02 +12267150,Need help to set ODBC MySQL driver,,1,1,PatriciaTabor,8/11/2016 10:26 +11788278,Swift and Dynamism,http://blog.wilshipley.com/2016/05/pimp-my-code-book-2-swift-and-dynamism.html,86,41,dchest,5/27/2016 19:23 +11388153,7 Undeniable Reasons to Embrace DevOps,http://www.51zero.com/blog/2016/3/14/ss,4,3,51zero,3/30/2016 9:58 +10904501,Mental fatigue impairs physical performance in humans (2009),http://jap.physiology.org/content/106/3/857,110,56,jimsojim,1/14/2016 21:10 +12490251,That Sentimental Feeling: using sentiment analysis as a proxy for plot movement,http://www.matthewjockers.net/2015/12/20/that-sentimental-feeling/,21,2,benbreen,9/13/2016 17:11 +10321641,What do you use for to do list?,,1,6,thebud,10/2/2015 22:07 +11946770,Googles new two-factor authentication system: Tap yes to log in,http://arstechnica.com/gadgets/2016/06/googles-new-two-factor-authentication-system-tap-yes-to-log-in/,6,1,bpierre,6/21/2016 16:11 +11260378,Forcerank a skill-based contest for stock market fans,http://www.forcerank.com/,7,2,up_and_up,3/10/2016 17:04 +11952990,PayPal doesn't care about 2FA security,https://shkspr.mobi/blog/2016/06/paypal-doesnt-care-about-security/,5,2,edent,6/22/2016 11:33 +10312551,Carbon: The Next Generation of Weebly,http://www.weebly.com/carbon,89,15,jdori,10/1/2015 16:49 +10368491,Three unique words can address any place in the world,http://what3words.com,2,14,nefitty,10/11/2015 7:58 +11567395,Ask HN: What do you do when 50%+ of your time is fighting your will to quit,,3,5,toss_it_away,4/25/2016 21:10 +10758278,Big Company vs. Startup Work and Compensation,http://danluu.com/startup-tradeoffs/,730,401,ingve,12/18/2015 13:25 +11866868,Why I turned down $500K and shut down my startup,https://medium.com/@Timoth3y/why-i-turned-down-500k-pissed-off-my-investors-and-shut-down-my-startup-2645c4ca1354?source=linkShare-1837d4349d1d-1465433659,648,175,jason_tko,6/9/2016 0:56 +10444506,Walgreens Halts Theranos Testing Center Expansion,http://techcrunch.com/2015/10/23/walgreens-halts-theranos-testing-center-expansion/,2,1,pen2l,10/24/2015 18:57 +12047822,Paper OTP,http://rareventure.com/paper_otp/,3,1,reddytowns,7/7/2016 6:37 +10383894,A Nobel for a Real-World Economist,http://www.bloombergview.com/articles/2015-10-12/a-nobel-for-a-real-world-economist,29,4,akg_67,10/13/2015 22:25 +10994020,Apple losing out on talent and in need of a killer new device,http://www.theguardian.com/technology/2016/jan/28/apple-quarterly-results-iphone-silicon-valley-developers,3,1,santaclaus,1/29/2016 7:41 +10733131,Trucking Deregulation (1993),http://www.econlib.org/library/Enc1/TruckingDeregulation.html,21,10,kawera,12/14/2015 19:21 +11397055,C++ is the most WTF language,https://github.com/search?utf8=%E2%9C%93&q=wtf&type=Code&ref=searchresults,6,3,tulsidas,3/31/2016 13:43 +11526056,The Story of Magic Leap,http://www.wired.com/?p=1999666,99,46,HeyShayBY,4/19/2016 10:44 +11582632,NSA Estimates Snowden Singlehandedly Sped Up Encryption Adoption by 7 Years,https://www.techdirt.com/articles/20160426/13475834282/thank-snowden-as-nsa-estimates-he-singlehandedly-sped-up-encryption-adoption-7-years.shtml,17,2,utternerd,4/27/2016 17:40 +12149566,Ask HN: I have some side-project ideas. What do you think I should work on?,,4,6,nathan_f77,7/23/2016 14:37 +11284207,The Neuroscientist Who Lost Her Mind,http://www.nytimes.com/2016/03/13/opinion/sunday/the-neuroscientist-who-lost-her-mind.html,110,64,joshrotenberg,3/14/2016 17:42 +12036472,Linux letting go: 32-bit builds on the way out,http://www.theregister.co.uk/2016/07/05/linux_letting_go_32bit_builds_on_the_way_out/,3,1,alxsanchez,7/5/2016 14:04 +12073790,Cops: Pokémon Go used to lure victims of armed robbery spree,http://www.polygon.com/2016/7/10/12139968/cops-pokemon-go-used-to-lure-victims-of-armed-robbery-spree,2,1,alt_,7/11/2016 19:45 +10980827,Has anyone used any of these time tracking apps for your iPhone?,,1,3,madhavcp,1/27/2016 16:15 +11680916,SROP mitigation committed,http://undeadly.org/cgi?action=article&sid=20160512021016&mode=expanded,1,1,notaplumber,5/12/2016 2:19 +10705825,Yuuuge Cards Against Humanity #madethis,http://trumpagainsthumanity.com,1,1,vippy,12/9/2015 18:49 +11129090,Mark Cuban's Blog: Apple vs the FBI vs. A Suggestion,http://blogmaverick.com/2016/02/18/apple-vs-the-fbi-vs-a-suggestion/,5,3,masonlee,2/18/2016 20:34 +10565362,Learning Scalaz,http://eed3si9n.com/learning-scalaz/,49,3,lelf,11/14/2015 11:51 +12358378,Bus1: a new Linux interprocess communication proposal,https://lwn.net/Articles/697191/,46,9,b3h3moth,8/25/2016 12:10 +10543836,Russias Amazon for Prisoners Offers Online Shopping and E-Mail Behind Bars,http://www.bloomberg.com/news/articles/2015-11-10/russia-s-amazon-for-prisoners-offers-online-shopping-and-e-mail-behind-bars,18,5,pavornyoh,11/11/2015 0:30 +11615768,Why I took my Team to Costa Rica,https://medium.com/@latifnanji/why-i-took-my-team-to-costa-rica-for-a-month-816083ccd115#.bxsiw7jyj,8,1,latifnanji27,5/2/2016 21:22 +11791684,I created Godwin's Law in 1990 as a warning,http://www.ibtimes.co.uk/when-i-created-godwins-law-1990-it-wasnt-prediction-it-was-warning-1562126,196,153,miraj,5/28/2016 14:02 +10677872,The #1 Mistake in Driving Growth,http://blog.yesgraph.com/numero_uno/,5,1,ALee,12/4/2015 17:59 +12289975,NoSQL Databases: A Survey and Decision Guidance,https://medium.com/baqend-blog/nosql-databases-a-survey-and-decision-guidance-ea7823a822d#.z0xgmd1a4,297,73,DivineTraube,8/15/2016 12:30 +10816655,Microsoft Will Warn Users About Suspected Attacks by Government Hackers,http://techcrunch.com/2015/12/30/microsoft-will-warn-users-about-suspected-attacks-by-government-hackers/,1,1,funkyy,12/31/2015 7:22 +12423427,The US government poisoned alcohol during Prohibition (2010),http://www.slate.com/articles/health_and_science/medical_examiner/2010/02/the_chemists_war.html,163,98,leksak,9/4/2016 8:51 +12510265,"Show HN: City Browser, an interface for filtering US cities",https://sfirrin.github.io/CityBrowser/,14,1,swf,9/15/2016 22:11 +11235773,Introduction to ARMv8 64-bit Architecture,https://quequero.org/2014/04/introduction-to-arm-architecture/,3,2,ingve,3/6/2016 22:03 +11947317,Why Do Islands Induce Dwarfism?,http://www.sapiens.org/blog/animalia/island-dwarfism/,98,50,mhb,6/21/2016 17:07 +11884080,Second layer of information in DNA confirmed,http://www.physics.leidenuniv.nl/index.php?id=11573&news=889&type=LION&ln=EN,53,7,GolDDranks,6/11/2016 16:37 +11032834,Mobile Photography Awards 2016: The best mobile pics ever?,http://blog.vodafone.co.uk/2016/02/04/mobile-photography-awards-the-best-smartphone-photos-ever/,2,1,adambunker,2/4/2016 9:24 +12327124,"Intel's Kaby Lake CPU: The Good, the Bad, and the Meh",http://www.makeuseof.com/tag/intels-kaby-lake-cpu-good-bad-meh/,61,76,walterbell,8/20/2016 16:02 +11381625,He Always Had a Dark Side,https://mastermind.atavist.com/he-always-had-a-dark-side,1304,351,pwnna,3/29/2016 14:19 +10630181,Journal Impact Factor Shapes Scientists Reward Signal,http://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0142537,7,1,Amorymeltzer,11/25/2015 22:30 +10565592,Terrorist to Coward Chrome Extension,https://chrome.google.com/webstore/detail/terrorist-to-coward/camjpbmlpgfcgilkohfkglmeojghicik?ref=producthunt,3,2,charlieirish,11/14/2015 13:30 +11479361,Apply HN: TestBeacon Web Automation Testing as a Service,,4,6,wjg,4/12/2016 13:30 +10857624,Google translated Russia to 'Mordor' in 'automated' error,http://www.bbc.co.uk/news/technology-35251478,245,68,dan1234,1/7/2016 12:55 +11923769,Ruru: native Ruby extensions written in Rust,https://github.com/d-unseductable/ruru,143,30,thibaut_barrere,6/17/2016 16:57 +11442155,Ask HN: What does the iphone actually encrypt?,,3,1,DanBlake,4/6/2016 21:13 +10298004,Whence function notation?,http://blogs.law.harvard.edu/pamphlet/2015/09/28/whence-function-notation/,47,18,djmylt,9/29/2015 17:42 +11818951,Avoid committing to GitHub with your company email,https://github.com/kintoandar/git-hooks,9,8,kintoandar,6/1/2016 22:55 +12301984,ChatSim unlimited global chat sim card,https://www.chatsim.com/how-works,2,1,mocookie,8/17/2016 1:51 +10591009,"Ask HN: So, what must Muslims do?",,7,15,aquratic,11/18/2015 21:48 +10252624,The Rhino's Last Stand,https://www.guernicamag.com/features/the-rhinos-last-stand,54,17,Thevet,9/21/2015 14:48 +10280100,Mathematica programming an advanced introduction (2009),http://www.mathprogramming-intro.org/,23,15,dallamaneni,9/25/2015 19:14 +12097856,Show HN: Swiss Army Knife for Mac OS X,https://github.com/rgcr/m-cli,388,62,rgcr,7/14/2016 23:05 +12094327,Tripadvisor now lets users rate flights like hotels,http://qz.com/729968/you-can-now-rate-flights-and-airlines-like-you-do-hotels/,58,35,uptown,7/14/2016 14:54 +12072743,Show HN: A Checklist for Publishing an App in the Apple App Store,https://app.processd.com/process/how-to-ship-an-ios-app-in-the-app-store/,6,2,harrisreynolds,7/11/2016 17:35 +11001169,Venezuela is on the brink of a complete economic collapse,https://www.washingtonpost.com/news/wonk/wp/2016/01/29/venezuela-is-on-the-brink-of-a-complete-collapse/,30,13,temp,1/30/2016 8:58 +11655620,Show HN: Subasub Learn Languages with Translated Subtitles,http://subasub.com,52,32,larion1,5/8/2016 20:28 +10312240,Markets: Can they really be tamed?,http://www.ft.com/intl/cms/s/0/aad452a8-660b-11e5-a57f-21b88f7d973f.html#axzz3nKeg4lSI,2,2,d9fb698e010974b,10/1/2015 16:18 +10782263,"Software error releases up to 3,200 inmates early",http://www.seattletimes.com/seattle-news/politics/inslee-error-releases-inmates-early-since-2002/,134,103,prostoalex,12/23/2015 6:35 +12414634,Microsoft's new business model for Windows 10: Pay to play,http://www.zdnet.com/article/microsofts-new-business-model-for-windows-10-pay-to-play/?ftag=TRE5575fdc&bhid=25696397469645606458680072209264,6,3,walterbell,9/2/2016 17:24 +11381499,Stack Overflow: The Hardware 2016 Edition,https://nickcraver.com/blog/2016/03/29/stack-overflow-the-hardware-2016-edition/,166,24,Nick-Craver,3/29/2016 13:59 +11244953,Fitspur: Individually you play together you have fun. Find your Activity Partner,http://www.fitspur.com/,8,3,edw519,3/8/2016 13:09 +12349098,Dropbox drops as much space as needed from Business plan,https://www.dropbox.com/business/pricing,7,6,tambourine_man,8/24/2016 1:44 +10414813,"Search for Search Contest build cool stuff, get featured on the Azure Blog",https://azure.microsoft.com/en-us/blog/azure-search-search-for-search-contest/,5,1,evboyle,10/19/2015 18:54 +12504117,The Battle Between Emotion and Reason in Financial Markets,https://www.call-levels.com/blog/behavioral-finance-the-battle-between-emotion-and-reason/,71,22,Call-Levels,9/15/2016 7:39 +12185897,What the Brain Looks Like When It Solves a Math Problem,http://www.nytimes.com/2016/07/29/science/brain-scans-math.html?rref=collection%2Fsectioncollection%2Fscience&action=click&contentCollection=science®ion=rank&module=package&version=highlights&contentPlacement=1&pgtype=sectionfront,112,17,dnetesn,7/29/2016 10:29 +11282914,"From Stolen Wallet to ID Theft, Wrongful Arrest",http://krebsonsecurity.com/2016/03/from-stolen-wallet-to-id-theft-wrongful-arrest/,73,13,cgtyoder,3/14/2016 14:00 +12256070,Preemptible VMs now up to 33% cheaper,https://cloudplatform.googleblog.com/2016/08/Preemptible-VMs-now-up-to-33-percent-cheaper.html,9,1,boulos,8/9/2016 17:08 +11884739,AI expert says that sex robots will be mainstream in 10 years,https://sextechguide.com/news/2016/06/10/ai-expert-sex-robots-10-years/,45,64,begrudger,6/11/2016 18:51 +11400537,How Google Works: A Google Ranking Engineer's Story,https://www.youtube.com/watch?v=iJPu4vHETXw,6,1,kyle6884,3/31/2016 21:04 +10574970,Why GPS makes distances bigger than they are,http://www.tandfonline.com/doi/full/10.1080/13658816.2015.1086924#/doi/full/10.1080/13658816.2015.1086924,2,2,stevetrewick,11/16/2015 15:34 +10913461,Comets cant explain weird alien megastructure star after all,https://www.newscientist.com/article/dn28786-comets-cant-explain-weird-alien-megastructure-star-after-all/,17,2,throwaway_yy2Di,1/16/2016 0:34 +12493848,iOS 10,http://www.apple.com/ios/ios-10/,5,1,wener,9/14/2016 2:25 +12184188,Show HN: Front-end boilerplate without overcomplication,https://github.com/grvcoelho/frontend-boilerplate,10,1,grvcoelho,7/29/2016 0:07 +12317195,Document.all willful violation,https://github.com/tc39/ecma262/issues/668,2,1,yuhong,8/19/2016 0:19 +12431795,Now I have been censored by Facebook,https://medium.com/@0rf/now-i-have-been-censored-by-facebook-ac1ffe094476,11,10,dragonbonheur,9/5/2016 19:12 +10417328,"RushCard Locking People Out of Accounts, Putting People on Hold",http://time.com/money/4078201/rush-card-account-lockout/,3,2,marcusgarvey,10/20/2015 3:55 +10600865,"In Patagonia 2k years ago, it was common for people to modify skulls of babies",http://www.bbc.com/earth/story/20151119-the-people-who-reshaped-their-skulls,58,33,nsgi,11/20/2015 12:37 +11627920,SpaceX announces a mission to land on Mars by 2018,http://www.slate.com/blogs/bad_astronomy/2016/05/03/spacex_announces_a_mission_to_land_on_mars_by_2018.html,131,50,jonbaer,5/4/2016 12:48 +11111906,How Uber Engineering Put the Squeeze on Trip Data,https://eng.uber.com/trip-data-squeeze/,2,1,myhrvold,2/16/2016 18:18 +10517656,Prescription painkiller deaths fall in medical marijuana states,http://www.reuters.com/article/2014/08/25/us-medical-marijuana-deaths-idUSKBN0GP1UJ20140825,192,113,anigbrowl,11/6/2015 3:17 +10429272,An extremely minimalistic puzzle game,http://pnpgame.com/?y,19,7,thekiller,10/21/2015 22:34 +12471873,Formidable Playbook: A practical guide to building modern applications,https://formidable.com/open-source/playbook/,52,19,yugoja,9/11/2016 3:21 +10180003,The Refugee Crisis Isnt a European Problem,http://www.nytimes.com/2015/09/06/opinion/sunday/the-refugee-crisis-isnt-a-european-problem.html?smid=fb-share,4,2,kareemm,9/7/2015 3:53 +10970709,Tim O'Reilly on paulg on inequality,https://medium.com/the-wtf-economy/in-his-essay-on-income-inequality-paul-graham-credited-me-for-pre-publication-feedback-ff8a0b295a1b#.whbom87sz,13,1,rst,1/25/2016 23:09 +10858375,"MA, CA take the top spots in Bloomberg's index of innovative states",http://www.bloomberg.com/news/articles/2016-01-07/here-are-the-most-innovative-states-in-america,85,91,fawce,1/7/2016 15:25 +10591464,Show HN: Launch your own dollarshaveclub in 7 days,http://www.jointhebox.com,4,5,jointhebox,11/18/2015 23:18 +11778077,Show HN: Automatic private time tracking for OS X,https://qotoqot.com/qbserve/,429,233,ivm,5/26/2016 14:12 +10538307,The most powerful mobile electromagnetic railgun built by a non-government,http://imgur.com/a/GrAiE,304,148,nkurz,11/10/2015 9:19 +11746910,Student Who Found Security Flaws in Police Protocol Gets Suspended Sentence,http://news.softpedia.com/news/student-who-found-flaws-in-police-communication-protocol-gets-prison-sentence-504333.shtml,124,46,campuscodi,5/22/2016 0:38 +11509160,"Sorry, You Cant Speed Read",http://www.nytimes.com/2016/04/17/opinion/sunday/sorry-you-cant-speed-read.html,217,129,karmacondon,4/16/2016 3:27 +11244798,If you're alive in 30 years you might be in 1000 years too,http://haakonsk.blogg.no/1456259429_if_youre_alive_in_30_.html,151,226,StreamBright,3/8/2016 12:18 +12078091,Irish Economy grew by 26.3% in 2015,http://www.irishtimes.com/business/economy/economy-grows-by-26-3-in-2015-says-cso-1.2719047,106,106,s_dev,7/12/2016 11:08 +11395256,Outer Space Treaty,https://en.wikipedia.org/wiki/Outer_Space_Treaty,33,14,shaaaaawn,3/31/2016 5:56 +10577790,Chip Credit Cards Give Retailers Another Grievance Against Banks,http://www.nytimes.com/2015/11/17/business/chip-credit-cards-give-retailers-another-grievance-against-banks.html,4,1,davidf18,11/16/2015 22:36 +11562935,Don't Quit Your Job to Chase Your Dream (Do This Instead),https://www.linkedin.com/pulse/dont-quit-your-job-chase-dream-do-instead-jeff-goins,3,1,halov,4/25/2016 7:34 +11933291,What Happens When You Get Struck by Lightning Dara Ó Briain's Science Club,https://www.youtube.com/watch?v=xxE2OgVRTV8,2,1,YeGoblynQueenne,6/19/2016 15:32 +10928826,Technology could kill 5M jobs by 2020,http://money.cnn.com/2016/01/18/news/economy/job-losses-technology-five-million/,10,1,amlgsmsn,1/19/2016 4:14 +11755405,GitLab Container Registry,https://about.gitlab.com/2016/05/23/gitlab-container-registry/,449,118,martgnz,5/23/2016 17:36 +12551208,Lyft and Uber boast they'll wipe out hundreds of thousands of jobs in a decade,https://pando.com/2016/09/19/lyf-uber-jobs/3e462e1e18d1dcc538dc222c7825f7e3c75efc4c/,3,1,elmar,9/21/2016 19:01 +11382814,How we decreased memory usage in GlassWire 1.2,https://blog.glasswire.com/2016/03/29/how-glasswire-1-2-saves-your-memory-and-resources/,3,1,greenwalls,3/29/2016 16:50 +12295758,Practical Design: Pitching,http://themacro.com/articles/2016/08/practical-design-pitching/,46,5,snehesht,8/16/2016 5:46 +11101163,Ask HN: OO book for old Python hacker?,,5,2,bsg75,2/15/2016 2:21 +12327708,What It's Like to Be a Defense Investigator in a Rigged Justice System,http://www.motherjones.com/politics/2016/08/tomdispatch-americas-criminal-injustice-system,5,1,bostik,8/20/2016 18:17 +12225355,"Warner Music Group's Losses Shrink, Digital Continues to Drive Bottom Line",http://www.billboard.com/biz/articles/7461037/warner-music-group-posts-improved-quarterly-results-revenue-up-14,2,1,6stringmerc,8/4/2016 13:34 +11795485,Certificate Transparency Watch,http://ctwatch.net/#/,2,1,based2,5/29/2016 8:16 +11464759,The Weird Redemption of SFs Most Reviled Tech Bro,https://backchannel.com/the-weird-redemption-of-sf-s-most-reviled-tech-bro-ce8dd1bfb705#.orgs4v304,59,77,rmason,4/10/2016 3:35 +10708541,Google's AI bot thinks the purpose of life is 'to live forever' ScienceAlert,http://www.sciencealert.com/google-s-ai-bot-thinks-the-purpose-of-life-is-to-live-forever,8,2,niksmac,12/10/2015 2:47 +11111771,Anonymous: Hacker releases 17.8GB of data from a Turkish national police server,http://www.ibtimes.co.uk/anonymous-hacker-unleashes-17-8gb-trove-data-turkish-national-police-server-1544131?,19,4,gruez,2/16/2016 17:57 +10365286,The Earth Doesn't Actually Orbit the Sun?,http://zidbits.com/2011/09/the-earth-doesnt-actually-orbit-the-sun/,3,1,ZeljkoS,10/10/2015 12:19 +10768020,Ask HN: How to monetize your ability to write secure code?,,13,5,some_furry,12/20/2015 19:41 +10918962,Crowdsourced research: Many hands make tight work,http://www.nature.com/news/crowdsourced-research-many-hands-make-tight-work-1.18508,18,2,bentoner,1/17/2016 9:45 +12131590,Hidden account with easy guessable password on Dell SonicWall devices,http://webcache.googleusercontent.com/search?q=cache:https://www.digitaldefense.com/ddi-six-discoveries/,1,1,campuscodi,7/20/2016 19:05 +10870242,Smarter bikes: The Vanhawks (YC W15) Valour leads the way and watches your back,http://www.bikerumor.com/2016/01/04/smarter-bikes-everyday-vanhawks-valour-leads-the-way-watches-your-back/,8,3,jseliger,1/9/2016 5:41 +10979785,Safari url bar crashes,,2,4,rogerfernandezg,1/27/2016 13:05 +11076902,Software Deduplication: Quick comparison of save ratings,https://trae.sk/view/26/,2,6,linuxready,2/10/2016 23:01 +11486334,The Man Who Discovered the Suns Puzzling Heat Is Being Forgotten,http://nautil.us/blog/the-man-who-discovered-the-suns-puzzling-heat-is-being-forgotten,2,1,dnetesn,4/13/2016 7:11 +11357578,More Teachers Can't Afford to Live Where They Teach,http://www.npr.org/sections/ed/2016/03/24/470710747/more-teachers-cant-afford-to-live-where-they-teach,3,1,santaclaus,3/25/2016 0:10 +11776873,Show HN: Innovators in Residence (soft landing for former startup founders),http://www.innovatorsinresidence.com/,2,1,scott_b,5/26/2016 10:24 +11337084,Ask HN: When to negotiate equity during spinoff,,6,1,throwaway_rsu,3/22/2016 15:02 +10177048,The Microservices Way Weekly Microserivces Newsletter,https://www.getrevue.co/profile/microservices,1,1,britman,9/6/2015 7:50 +11882229,The Mistrust of Science,http://www.newyorker.com/news/news-desk/the-mistrust-of-science,77,89,yarapavan,6/11/2016 5:32 +12488244,Ask HN: Data visualization consultant,,81,31,mxmpawn,9/13/2016 13:57 +10813442,How we started with 0$ in a Starbucks and created our startup,http://blog.creative-tim.com/creative-tim/started-0-starbucks-created-startup/,8,4,axelut,12/30/2015 18:29 +10537832,WebAssembly: Here Be Dragons [video],https://www.youtube.com/watch?v=5W7NkofUtAw,36,3,cokernel_hacker,11/10/2015 5:56 +12459108,How LendingHome Scaled Their Marketplace to $750M in Real Estate Loans,http://stackshare.io/lendinghome/how-lendinghome-scaled-their-marketplace-to-$750m-in-real-estate-loans?utm=source,14,2,sergiotapia,9/9/2016 1:43 +10620057,Modern SQL: With Organize Complex Queries,https://modern-sql.com/feature/with,165,61,MarkusWinand,11/24/2015 10:33 +10878201,What Linux/BSD Firewall/Gateway Distro Would Be Easiest to Develop Add-Ons For?,,1,1,cdvonstinkpot,1/11/2016 1:16 +11783154,Why the US Military turned a hipster tattoo parlor into a special operations lab,https://www.washingtonpost.com/news/checkpoint/wp/2016/05/25/why-the-u-s-military-turned-a-hipster-tattoo-parlor-into-a-special-operations-lab/,6,1,SocksCanClose,5/27/2016 1:08 +10748728,Show HN: EmojiViewer - An Android app for decoding iOS9.1 emoji,https://play.google.com/store/apps/details?id=net.atomicwaste.emojiviewer,2,1,robzyb,12/17/2015 1:04 +11314335,Broadcom reportedly to phase out Wi-Fi chip business,http://www.digitimes.com/news/a20160318PD200.html,1,1,tambourine_man,3/18/2016 19:41 +12362830,"Alphabet CEO ordered Google Fiber to downsize, report claims",http://arstechnica.com/information-technology/2016/08/google-fiber-fails-to-hit-subscriber-goal-will-reportedly-cut-staff/,19,7,netinstructions,8/25/2016 22:00 +10506868,Study: Oxytocin mediates social reward by harnessing endocannabinoids in mice,http://arstechnica.com/science/2015/11/oxytocin-makes-socializing-feel-fun-just-like-marijuana/,49,45,Amorymeltzer,11/4/2015 14:45 +11138143,Show HN: Cmd-line info/countdown to SpaceX launches (golang parser lib),https://github.com/kristoiv/spacexstats,3,1,kristoiv,2/20/2016 1:26 +10838945,PostgreSQL 9.5 Released,http://www.postgresql.org/message-id/E1aGCiB-00007z-Le@gemulon.postgresql.org,186,19,gdeglin,1/4/2016 21:48 +11342584,Race you to the kernel,https://googleprojectzero.blogspot.com/2016/03/race-you-to-kernel.html,103,7,ingve,3/23/2016 6:48 +10206527,Ask HN: Is work worth leaving College for?,,11,29,kiraken,9/11/2015 22:39 +10232477,Node v4.1.0,https://nodejs.org/en/blog/release/v4.1.0/,108,36,tomkwok,9/17/2015 10:12 +11643983,Late applications for YC S16: any news?,,2,1,afonya,5/6/2016 13:58 +11226912,What Happened at the Satoshi Roundtable,https://medium.com/@barmstrong/what-happened-at-the-satoshi-roundtable-6c11a10d8cdf,266,204,pak,3/4/2016 21:15 +10410496,Notifications for targeted attacks,https://www.facebook.com/notes/facebook-security/notifications-for-targeted-attacks/10153092994615766,79,81,fahimulhaq,10/19/2015 0:47 +12050326,Hello Startups Program by 7C Studio Where we develop apps for free for you,http://www.7cstudio.com/hello-startups.html,4,3,avinassh,7/7/2016 16:25 +10979957,Show HN: Generate Google Play Music Playlists from BBC Playlister Urls,https://github.com/tavvy/GPM-Playlister/,19,1,adam_tavener,1/27/2016 13:45 +10960529,Unblock US Netflix Using DNS Service,https://tvunblock.com/,3,1,antimora,1/23/2016 23:00 +10442136,Microsoft Support for SSH,http://blogs.msdn.com/b/powershell/archive/2015/06/03/looking-forward-microsoft-support-for-secure-shell-ssh.aspx,12,1,talles,10/24/2015 2:01 +12214520,Go's Error Handling Is Elegant,https://davidnix.io/post/error-handling-in-go/,5,1,lladnar,8/3/2016 0:24 +11843842,"Dozens in Russia imprisoned for social media likes, reposts",http://bigstory.ap.org/article/0274242811894097a9d79f789002aab0/dozens-russia-imprisoned-social-media-likes-reposts,3,4,prostoalex,6/6/2016 0:10 +10641859,A multilinear singular value decomposition (2000) [pdf],http://citeseer.ist.psu.edu/viewdoc/download;jsessionid=1CADD9B520DD6B41383552BB7CAB0F2F?doi=10.1.1.102.9135&rep=rep1&type=pdf,36,5,cinquemb,11/28/2015 18:22 +10544662,Emigrant City: NYPL Crowdsources Records of the Emigrant Savings Bank of NYC,http://emigrantcity.nypl.org/#/,12,1,prismatic,11/11/2015 3:27 +10663050,Dwarf Fortress 0.42.01 released,http://www.bay12games.com/dwarves/,330,165,robinhoodexe,12/2/2015 14:23 +11192537,Can planes be tied in knots in higher dimensions the way lines can in 3D?,http://www.askamathematician.com/2016/02/q-can-planes-sheets-be-tied-in-knots-in-higher-dimensions-the-way-lines-strings-can-be-tied-in-knots-in-3-dimensions/,92,51,joeyespo,2/28/2016 21:49 +12108968,That 'Useless' Liberal Arts Degree Has Become Tech's Hottest Ticket,http://www.forbes.com/sites/georgeanders/2015/07/29/liberal-arts-degree-tech/#676e312d5a75,4,1,hollaur,7/17/2016 3:57 +11371572,Ask HN: How do you cope with quickly fading interests?,,3,3,bvaldivielso,3/27/2016 21:11 +10474171,Cods Continuing Decline Linked to Warming Gulf of Maine Waters,http://www.nytimes.com/2015/10/30/science/cods-continuing-decline-traced-to-warming-gulf-of-maine-waters.html,1,1,jdnier,10/29/2015 20:49 +10812567,Purifying Physics: The quest to explain why the quantum exists,https://plus.maths.org/content/purifying-physics-quest-explain-why-quantum-exists,37,34,aethertap,12/30/2015 16:03 +11229053,Android Emulators: 10 Best to Run Apps and Play Games on PC,http://noeticforce.com/best-android-emulator-for-pc-run-apps-play-games,3,2,noeticriptide,3/5/2016 10:13 +10925738,Breakthrough in cell transformation could revolutionise regenerative medicine,http://www.bristol.ac.uk/news/2016/january/human-cell-transformation.html,8,1,Ultimatt,1/18/2016 17:56 +10732469,A summary of how not to measure latency,http://bravenewgeek.com/everything-you-know-about-latency-is-wrong/,36,3,juanrossi,12/14/2015 17:37 +10999212,Ask HN: My Chrome Extension got taken down,,1,3,laxk,1/29/2016 22:57 +12309848,Courseras co-founder Daphne Koller set to start anew at Calico,https://techcrunch.com/2016/08/17/courseras-co-founder-daphne-koller-set-to-start-anew-at-calico/,80,58,doppp,8/18/2016 1:29 +10471912,Critical Xen bug in PV memory virtualization code,https://raw.githubusercontent.com/QubesOS/qubes-secpack/master/QSBs/qsb-022-2015.txt,195,80,tshtf,10/29/2015 15:44 +10521381,"A vulnerability in WebLogic, WebSphere, JBoss, Jenkins, OpenNMS and others",http://foxglovesecurity.com/2015/11/06/what-do-weblogic-websphere-jboss-jenkins-opennms-and-your-application-have-in-common-this-vulnerability/,125,24,sprkyco,11/6/2015 19:19 +12023153,The Ford Logo That Almost Was,http://wheels.blogs.nytimes.com/2010/01/21/the-ford-logo-that-almost-was/?_r=0,2,1,maxwell,7/2/2016 17:19 +10387124,"After 8 years and $128M raised, the clock is ticking for men's retailer Bonobos",http://www.businessinsider.com.au/how-bonobos-is-maturing-into-a-major-brand-2015-8,43,68,prostoalex,10/14/2015 15:25 +12146287,Network tuning guides,,1,1,matttah,7/22/2016 19:49 +10459657,Why Is the World Health Organization So Bad at Communicating Cancer Risk?,http://www.theatlantic.com/health/archive/2015/10/why-is-the-world-health-organization-so-bad-at-communicating-cancer-risk/412468/?single_page=true,3,1,r721,10/27/2015 17:34 +10946721,"Why We Use Om, and Why Were Excited for Om Next",http://blog.circleci.com/why-we-use-om-and-why-were-excited-for-om-next/,215,65,nwjsmith,1/21/2016 17:25 +10708790,Play Slap Kirk,http://www.slapkirk.com/play,5,1,rmason,12/10/2015 4:00 +10352144,16 lenses on one camera,http://www.light.co/,11,6,XioNoX,10/8/2015 12:09 +11286085,How Imgur Became a Megacommunity,https://www.fastcompany.com/3057682/startup-report/how-imgur-became-an-image-sharing-meme-generating-megacommunity,54,52,dsr12,3/14/2016 22:40 +11591737,Amazon Reports Surge in Profit,http://www.wsj.com/articles/amazon-reports-surge-in-profit-1461874333,164,188,gist,4/28/2016 20:37 +11950457,"How Do We Achieve an Open, Secure, Trustworthy, and Inclusive Internet?",https://www.eff.org/deeplinks/2016/06/how-do-we-achieve-open-secure-trustworthy-and-inclusive-internet,9,1,sinak,6/21/2016 23:54 +11075738,"Microservices, the Unix Philosophy, and the Richardson Maturity Model",https://medium.com/@chrstphrhrt/microservices-the-unix-philosophy-and-the-richardson-maturity-model-425abed44826,88,49,nkurz,2/10/2016 20:31 +10612516,How do Promises Work?,http://robotlolita.me/2015/11/15/how-do-promises-work.html,219,88,themichaellai,11/23/2015 2:24 +10401309,Russian Hackers Infiltrated Dow Jones Servers for Pre-Public Information,http://www.bloomberg.com/news/articles/2015-10-16/russian-hackers-of-dow-jones-said-to-have-sought-trading-tips,6,3,dpflan,10/16/2015 18:47 +11514105,Uber and Lyft don't cover their cost of capital and rely on desperate workers,https://boingboing.net/2016/04/15/uber-and-lyft-dont-cover-the.html,9,1,camillomiller,4/17/2016 10:43 +12060716,Replacing Google with microG,https://lwn.net/Articles/681758/,236,16,em3rgent0rdr,7/9/2016 8:53 +11829667,New alerts and notification service,http://www.gugalerts.com,1,2,xauxatz,6/3/2016 11:31 +12330585,Neoliberalism has had its day. So what happens next?,https://www.theguardian.com/commentisfree/2016/aug/21/death-of-neoliberalism-crisis-in-western-politics,11,2,1_player,8/21/2016 11:58 +11936435,How SQLite Is Tested,https://www.sqlite.org/testing.html,200,57,asymmetric,6/20/2016 6:38 +11138044,"How often Apple, Google, others, handed over data when the US government asked",http://qz.com/619859/virtual-reality-could-be-a-solution-to-sexism-in-tech/,1,1,raddad,2/20/2016 1:00 +11956538,Phones without headphone jacks are phones with DRM for audio,https://boingboing.net/2016/06/22/phones-without-headphone-jacks.html,26,3,walterbell,6/22/2016 19:57 +10427967,"In Firefox 44N, http: pages with password fields now marked insecure",https://twitter.com/rlbarnes/status/656554266744586240/photo/1,6,1,prawn,10/21/2015 19:28 +10823935,Introducing Postman for Mac,http://blog.getpostman.com/2015/12/18/introducing-postman-for-mac/,4,1,spencera,1/1/2016 23:02 +12135603,Pie Context Menu for web pages,https://github.com/cevherkarakoc/Pie-Context-Menu,2,2,cevherkarakoc,7/21/2016 8:55 +10839146,Please do not delete this commented-out version,http://emacshorrors.com/posts/forget-me-not.html,413,203,jordigh,1/4/2016 22:17 +11224608,"Show HN: Sway, a tiling window manager and compositor for Wayland",https://github.com/SirCmpwn/sway,163,50,Sir_Cmpwn,3/4/2016 16:04 +12096687,On Pokemon GO,https://medium.com/@pcperini/on-pok%C3%A9mon-go-6cfa2e94401f#.jytkpu6oi,2,1,georgel,7/14/2016 19:46 +12273055,"ADHD Drugs Make Big Money, but We Still Dont Know the Risks",http://www.wired.com/2015/12/adhd-drugs-are-big-business/,3,1,aburan28,8/12/2016 2:19 +11235893,Hacking industrial vehicles from the internet,http://jcarlosnorte.com/security/2016/03/06/hacking-tachographs-from-the-internets.html,152,46,akavel,3/6/2016 22:31 +11315399,Sources: Sony Is Working on 4K PlayStation 4.5,http://kotaku.com/sources-sony-is-working-on-a-ps4-5-1765723053,4,1,evo_9,3/18/2016 21:45 +11341494,"Here Are Google, Amazon and Facebooks Secrets to Hiring the Best People",http://thecooperreview.com/google-amazon-facebook-secrets-hiring-best-people/,200,100,AJAlabs,3/23/2016 1:44 +10641587,Gimp 2.9.2 Released,http://www.gimp.org/news/2015/11/27/gimp-2-9-2-released/,182,60,renlinx,11/28/2015 17:01 +10307999,Adblockers and Innovative Ad Companies Are Working Together,https://www.eff.org/deeplinks/2015/09/adblockers-and-innovative-ad-companies-are-working-together-build-more-privacy,6,2,javery,9/30/2015 22:52 +11469135,Show HN: The first issue of Compelling Science Fiction,http://compellingsciencefiction.com/,311,70,mojoe,4/11/2016 1:42 +11934860,Iran Launches Its First RTB Platform,http://techrasa.com/2016/06/18/adro-launches-rtb-platform/,2,2,duuuuuuude,6/19/2016 21:49 +11028549,Introducing Block Decorations,http://blog.atom.io/2016/02/03/introducing-block-decorations.html,94,36,as-cii,2/3/2016 18:39 +11963695,Led Zeppelin Win in 'Stairway to Heaven' Trial,http://www.rollingstone.com/music/news/led-zeppelin-prevail-in-stairway-to-heaven-lawsuit-20160623,11,8,6stringmerc,6/23/2016 19:24 +10944172,'I fell in love with a female assassin' (2008),http://www.independent.co.uk/news/world/americas/i-fell-in-love-with-a-female-assassin-791978.html,4,1,Tomte,1/21/2016 9:19 +12226778,WeChats world,http://www.economist.com/news/business/21703428-chinas-wechat-shows-way-social-medias-future-wechats-world,4,1,julianpye,8/4/2016 16:45 +12333000,"The Oxford English Dictionary: not just a labour of love, a feat of endurance",http://www.spectator.co.uk/2016/08/the-oxford-english-dictionary-not-just-a-labour-of-love-a-feat-of-endurance/,27,3,diodorus,8/21/2016 22:29 +10414269,The Donut Hustle,http://www.theplayerstribune.com/arron-afflalo-knicks-kendrick-lamar/,214,47,zavulon,10/19/2015 17:20 +12159224,What Musical Notes Can Look Like,http://nautil.us/blog/this-is-what-musical-notes-actually-look-like,68,62,tintinnabula,7/25/2016 15:15 +12494737,How to Scale React Applications,https://www.smashingmagazine.com/2016/09/how-to-scale-react-applications/,4,1,franze,9/14/2016 7:09 +11378752,Londons Crossrail Is a $21B Test of Virtual Modeling,http://spectrum.ieee.org/transportation/mass-transit/londons-crossrail-is-a-21-billion-test-of-virtual-modeling,3,1,sohkamyung,3/29/2016 0:49 +10538885,Raspberry Pi Jukebox Based on Mopidy,https://github.com/pimusicbox/pimusicbox,8,2,dannyrosen,11/10/2015 12:20 +11702267,Updating classic workplace sabotage techniques,http://www.antipope.org/charlie/blog-static/2016/05/updating-a-classic.html,378,280,cstross,5/15/2016 19:11 +10895559,Ask HN: What should Apple add in the next Mac OS X 11?,,2,4,montbonnot,1/13/2016 16:41 +10744574,Too many open files: Tracking down a bug in production,http://techblog.roomkey.com/posts/too-many-files.html,65,7,pigs,12/16/2015 14:54 +11920753,Subsidiary for startups,,2,1,danielzenchang,6/17/2016 4:53 +10607813,Big data and machine learning,http://blogs.law.harvard.edu/philg/2015/11/21/big-data-and-machine-learning/,53,8,soundsop,11/21/2015 19:52 +12081923,"After 45 years, FBI closes investigation into unsolved 'DB Cooper' hijacking",http://komonews.com/news/local/fbi-officially-closes-its-investigation-into-famous-db-cooper-hijacking,195,135,Jerry2,7/12/2016 20:04 +11666542,Ask HN: What's the Role of a Team Lead in a SCRUM Environment?,,4,6,ameida,5/10/2016 11:51 +12072641,I Hate Puzzles: Am I Still a Programmer? (2011),http://zef.me/3666/i-hate-puzzles/,76,75,manaskarekar,7/11/2016 17:24 +10447890,Getting to Philosophy,https://en.wikipedia.org/wiki/Wikipedia:Getting_to_Philosophy,101,77,thejerz,10/25/2015 18:56 +11892990,Data Analysis with Vector Functional Programming [video],https://www.youtube.com/watch?v=ZGIPmC6wi7E&feature=youtu.be,3,1,srpeck,6/13/2016 11:43 +12449263,Personal Digital Security [47:03],https://vimeo.com/181781916,1,1,MrClean,9/8/2016 0:32 +10356251,How to recover from programmers burnout,http://devbanter.com/2015/10/08/how-to-recover-from-programmers-burnout/,6,1,vegancap,10/8/2015 21:07 +12461826,Probability Theory: The Logic of Science [pdf],http://bayes.wustl.edu/etj/prob/book.pdf,2,1,Xcelerate,9/9/2016 13:15 +10196684,Show HN: Emoji-js,https://github.com/Thomas101/emoji-js,2,1,thomas101,9/10/2015 8:00 +11774164,Angry customer files class action suit against Theranos,http://www.theverge.com/2016/5/25/11776186/theranos-edison-blood-test-results-class-action-lawsuit,3,1,dbcooper,5/26/2016 0:02 +10777798,Vysor: View and control Android devices on computer,http://www.vysor.io/,15,5,amjd,12/22/2015 14:10 +11789491,Make Ruby Great Again [transcript],https://medium.com/@jm3/makerubygreatagain-9d328b96cad8,1,3,jm3,5/27/2016 22:27 +11739748,"Are You Successful? If So, You've Already Won the Lottery",http://www.nytimes.com/2016/05/22/upshot/are-you-successful-if-so-youve-already-won-the-lottery.html,19,14,isaacdl,5/20/2016 17:30 +11483934,Tinker with a Neural Network in Your Browser,http://playground.tensorflow.org/,855,116,shancarter,4/12/2016 21:57 +11930888,FUSE for Windows/Cygwin now available,http://www.secfs.net/winfsp/blog/,47,6,billziss,6/18/2016 22:19 +11738447,PANIC Stack Overflow Is Down,http://stackoverflow.com/,9,5,alistproducer2,5/20/2016 15:12 +12575716,Bay Area wages soaring but still cant keep up with housing prices,http://www.mercurynews.com/2016/09/25/bay-area-wages-soaring-but-still-cant-keep-up-with-housing-prices/,103,166,11thEarlOfMar,9/25/2016 15:28 +10233705,ZenPayroll is now Gusto,https://medium.com/@ZenPayroll/zenpayroll-is-now-gusto-f962a68fe5a4,3,1,Omnipresent,9/17/2015 14:58 +11353525,Feedback: Learning How to Analyze Data via Code (Self-Directed Syllabus),https://docs.google.com/document/d/1dj8vpit1p9FgmZv9OQkCbxM_TJ0c1ZFYV0GlteAJ220/edit?usp=sharing,2,1,noahmbarr,3/24/2016 15:25 +12493024,"Drupal, Wordpress themes track users by design",https://twitter.com/ValbonneConsult/status/775820293545816065,2,1,DyslexicAtheist,9/13/2016 23:17 +10574179,Transloadit wants to fix broken file uploads,http://tech.eu/features/6672/transloadit-tus-protocol-vimeo/,10,4,robinwauters,11/16/2015 13:09 +12342293,Privacy Implications for OpenStreetView,https://karp.id.au/a/2016/08/23/privacy-implications-for-openstreetview/,82,38,GammaDelta,8/23/2016 8:59 +12090667,"UA Study Shows Stark Differences in How Conservatives, Liberals See Data",http://uanews.ua.edu/2016/07/ua-study-shows-stark-differences-in-how-conservatives-liberals-see-data/,2,1,iamcreasy,7/13/2016 23:51 +11844152,Jaunt A friendly Clojure fork,https://www.arrdem.com/2016/02/22/clojarr_-_a_friendly_clojure_fork/,89,29,crux,6/6/2016 1:44 +12508803,The Millennial Whoop: Melodic Alternation Between the Fifth and the Third,https://thepatterning.com/2016/08/20/the-millennial-whoop-a-glorious-obsession-with-the-melodic-alternation-between-the-fifth-and-the-third/,2,1,nkurz,9/15/2016 18:59 +10489784,RobustIRC,https://robustirc.net/,41,11,chei0aiV,11/2/2015 3:19 +11432250,Ask HN: Experience with job hunting on starfighters.io?,,59,24,ReadingInBed,4/5/2016 17:13 +12560319,Nova: A color scheme for modern web development,http://www.trevordmiller.com/nova/,3,1,pspeter3,9/22/2016 20:58 +12095790,Ask HN: Starting a town fire department,,7,3,jason_slack,7/14/2016 17:37 +10779330,Ask HN: How do you make something people want?,,16,16,smaili,12/22/2015 18:19 +10794255,Ask HN: How do you stand using Sublime Text?,,6,9,Raed667,12/26/2015 15:08 +11329939,Apple introduces the iPhone SE,http://techcrunch.com/2016/03/21/iphone-se-apple-small-iphone-seo-is-fun/,164,515,zhuxuefeng1994,3/21/2016 17:35 +10966522,Personal Space Is a Fear Response,http://nautil.us/blog/personal-space-is-a-fear-response,34,72,dnetesn,1/25/2016 10:56 +12035443,This 'ambiguous cylinders illusion is blowing my tiny mind,http://www.theverge.com/2016/7/1/12077614/ambiguous-cylinders-illusion,4,1,reuven,7/5/2016 10:16 +11587598,FPGA-driven board is an Arduino Uno clone on steroids,http://hackerboards.com/fpga-driven-board-is-like-an-arduino-uno-on-steroids/,8,1,jonbaer,4/28/2016 10:01 +12215545,Tell HN: WH Petition for portable work authorization for legal immigrants,,32,26,mavelikara,8/3/2016 4:15 +11564305,Apply HN: THRIVE- Smartwatch Personal Trainer and Nutritionist,,2,8,bonaserajf,4/25/2016 14:16 +11976779,Why Infinite Scrolling is probably a bad idea (2015),https://medium.com/simple-human/7-reasons-why-infinite-scrolling-is-probably-a-bad-idea-a0139e13c96b#.cxmisrsjt,96,60,ohjeez,6/25/2016 16:07 +10919048,The 19th Century plug that's still being used,http://www.bbc.co.uk/news/magazine-35253398,11,11,timthorn,1/17/2016 10:28 +10557400,Is Wall Street Beneath Business Students' Standards?,http://www.bloomberg.com/news/articles/2015-11-12/is-wall-street-beneath-business-students-standards-,25,22,lujim,11/13/2015 1:12 +12570786,Are Video Games Weakening the Workforce?,https://www.washingtonpost.com/news/wonk/wp/2016/09/23/why-amazing-video-games-could-be-causing-a-big-problem-for-america/,15,25,Donzo,9/24/2016 13:07 +10685227,The math of mass shootings,https://www.washingtonpost.com/graphics/national/mass-shootings-in-america/,2,1,wslh,12/6/2015 13:41 +11503585,What US Software Companies Should Understand About the Rest of the World,https://medium.com/@did_78238/what-us-software-companies-should-understand-about-the-rest-of-the-world-783e8dbca758#.b2b3slmak,153,109,JackPoach,4/15/2016 11:56 +12534097,Ask HN: File sharing for startup,,1,1,mgamache,9/19/2016 19:40 +11008509,Show HN: Wired Logic a pixel-based logic simulator,https://github.com/martinkirsche/wired-logic,176,15,mkirsche,1/31/2016 22:43 +10296553,Nemo: computer algebra package for Julia,http://nemocas.org/,53,31,winestock,9/29/2015 14:34 +11542032,Is this a better Hacknews UI?,http://hn.premii.com,28,45,ausjke,4/21/2016 13:44 +10700099,SafeMarket Alpha Release,http://safemarket.github.io,5,3,safemarket,12/8/2015 22:19 +10332466,Ask HN: I will work on your Django Project (completely free),,2,2,enterit,10/5/2015 15:34 +11349776,Google Analytics Autotrack,https://github.com/googleanalytics/autotrack,2,1,moonlighter,3/24/2016 1:03 +11323039,Web Page Performance Death by a Thousand Tiny Cuts,http://metroize.com/web-page-performance-death-by-a-thousand-tiny-cuts/,55,59,dragthor,3/20/2016 14:31 +10684777,The cost of LIDAR is coming down,https://www.washingtonpost.com/news/innovations/wp/2015/12/04/the-75000-problem-for-self-driving-cars-is-going-away/,98,61,edward,12/6/2015 9:14 +11611661,"Wren: a small, fast, class-based concurrent scripting language",http://munificent.github.io/wren/,163,39,bluesilver07,5/2/2016 14:32 +10653356,"VS2015 Update 1 released new languages, gdb, clang, improved C++11/14 support",https://www.visualstudio.com/en-us/news/vs2015-update1-vs.aspx,4,1,blinkingled,12/1/2015 2:35 +10506520,Writing my first Rust crate: jsonwebtoken,https://blog.wearewizards.io/writing-my-first-rust-crate-jsonwebtoken,7,1,Keats,11/4/2015 14:04 +11293546,"Up Yours, Brutus (2014)",http://www.wondersandmarvels.com/2014/03/up-yours-brutus.html,69,2,agronaut,3/15/2016 22:35 +10534483,Show HN: Linux on a Poster,http://www.linuxonaposter.com/,9,4,wtracy,11/9/2015 17:45 +11299046,ReGrid Distributed realtime file storage with RethinkDB,https://github.com/internalfx/regrid,71,7,internalfx,3/16/2016 17:25 +11000738,The End of Twitter,http://www.newyorker.com/tech/elements/the-end-of-twitter?intcid=mod-most-popular,3,1,tim333,1/30/2016 5:59 +11218184,Embryo selection for IQ both possible and cost-effective,http://www.gwern.net/Embryo%20selection,1,1,hedgew,3/3/2016 17:04 +10295056,amdcheck-loader for webpack released. Uses AST to optimizes AMD modules,https://github.com/mehdishojaei/amdcheck-loader,1,1,mehdishojaei,9/29/2015 7:49 +11791057,"The Future of VR a Fad That'll Fizzle Out, or the Next Big Consumer Tech?",http://mikegracia.com/blog/future-virtual-reality-fad-thatll-fizzle-next-big-consumer-tech/,1,2,stesch,5/28/2016 9:25 +11022273,Mixed reality outfit Magic Leap nets $793.5M,http://gamasutra.com/view/news/264972/Mixed_reality_outfit_Magic_Leap_nets_7935_million.php,112,109,Impossible,2/2/2016 20:32 +12335962,EFF blasts Microsoft over Windows 10 privacy concerns,http://www.theverge.com/2016/8/22/12582622/eff-microsoft-windows-10-privacy-concerns,81,32,denzil_correa,8/22/2016 12:55 +11127566,"Ask HN: Developers, would you read a productivity book?",,5,6,nullundefined,2/18/2016 17:35 +11629965,Curling as a Service,http://curlzilla.com,1,3,viator,5/4/2016 17:29 +11450857,The Panama Papers prove it: we can afford a universal basic income,http://www.theguardian.com/commentisfree/2016/apr/07/panama-papers-taxes-universal-basic-income-public-services?CMP=fb_gu,9,2,csantini,4/7/2016 21:25 +11246917,How to Pass a Programming Interview,http://blog.triplebyte.com/how-to-pass-a-programming-interview,1020,552,runesoerensen,3/8/2016 17:43 +11230086,Ask HN: Why the sudden hate towards meritocracy in tech?,,9,26,johnvic,3/5/2016 17:24 +10258618,Show HN: We transform Excel sheets into APIs to make complex computations easy,http://calcfusion.com/,4,2,julienmarie,9/22/2015 14:05 +12451914,How do you sell a time and materials contract to clients used to fixed bids?,https://www.quora.com/Agile-Software-Development-How-do-you-sell-a-time-and-materials-contract-to-clients-used-to-fixed-bid-contracts?share=1,2,1,wslh,9/8/2016 11:11 +10284477,Ask HN: Any books on marketing and sales for SaaS software?,,9,7,mortal,9/26/2015 21:28 +11729290,Programming the ENIAC: an example of why computer history is hard,http://www.computerhistory.org/atchm/programming-the-eniac-an-example-of-why-computer-history-is-hard/,44,16,ingve,5/19/2016 11:05 +11250016,Did I reinvent the wheel? (JS plugin to link to page selection),,5,4,iafan,3/9/2016 0:42 +10190916,Show HN: WikiPop Endangered Species Population Tracking and Crowdfunding,https://wikipop.org/,1,1,jereme,9/9/2015 12:11 +10628635,The trouble with saying you don't want children,http://www.bbc.com/news/magazine-34916433,20,17,AdeptusAquinas,11/25/2015 18:21 +10443256,"Chris Ware, the Art of Comics No. 2",http://www.theparisreview.org/interviews/6329/the-art-of-comics-no-2-chris-ware,35,1,dnetesn,10/24/2015 11:32 +11103130,Ask HN: What services require you to close your browser after logging out?,,1,1,dchester195,2/15/2016 13:08 +12261571,Why scaling and parallelism remain hard even with new tools and languages,https://www.erlang-solutions.com/blog/the-continuing-headaches-of-distributed-programming.html,141,55,andradinu,8/10/2016 13:36 +10685241,Is There a Future for the Professions?,http://www.thegoodproject.org/is-there-a-future-for-the-professions-an-interim-verdict/,72,58,kawera,12/6/2015 13:48 +10694090,A world of languages,http://www.scmp.com/infographics/article/1810040/infographic-world-languages,22,8,prismatic,12/8/2015 1:08 +10465886,The Doxing Trend,https://www.schneier.com/blog/archives/2015/10/the_doxing_tren.html,17,6,CapitalistCartr,10/28/2015 17:22 +12070906,How to use Elm at work,http://elm-lang.org/blog/how-to-use-elm-at-work,201,82,zalmoxes,7/11/2016 13:34 +10284028,The Inside Story Behind MS08-067,http://blogs.technet.com/b/johnla/archive/2015/09/26/the-inside-story-behind-ms08-067.aspx,102,12,dsr12,9/26/2015 18:50 +10366662,The Introvert and the Startup,http://blog.iancackett.com/2015/10/10/the-introvert-and-the-startup/,6,1,rubikscube,10/10/2015 19:30 +11398679,"Google Cloud Datastore simplifies pricing, cuts cost for most use-cases",https://cloudplatform.googleblog.com/2016/03/Google-Cloud-Datastore-simplifies-pricing-cuts-cost-dramatically-for-most-use-cases.html,17,3,itcmcgrath,3/31/2016 17:03 +12013253,Man Sues Apple for 10B Dollars,https://www.theguardian.com/technology/2016/jun/30/apple-lawsuit-iphone-invention,2,1,empressplay,7/1/2016 1:30 +10504415,Ask HN: Is there any Open source application performance management system?,,4,4,zenincognito,11/4/2015 3:31 +10499375,Scaling Agile at Spotify (2012) [pdf],https://dl.dropboxusercontent.com/u/1018963/Articles/SpotifyScaling.pdf,16,12,vilda,11/3/2015 13:31 +11403819,"First TV Image of Mars (Hand Colored, 1964)",http://photojournal.jpl.nasa.gov/catalog/PIA14033,2,1,zoid,4/1/2016 10:06 +11603255,What Happened to Worcester?,http://www.nytimes.com/2016/05/01/magazine/what-happened-to-worcester.html,2,1,randycupertino,4/30/2016 19:48 +12539311,No pardon for Edward Snowden,https://www.washingtonpost.com/opinions/edward-snowden-doesnt-deserve-a-pardon/2016/09/17/ec04d448-7c2e-11e6-ac8e-cf8e0dd91dc7_story.html,2,2,bkmn,9/20/2016 13:27 +11924433,Chemists Were Wrong About Splenda,http://acsh.org/news/2016/06/16/chemists-were-wrong-about-splenda/,86,128,nkurz,6/17/2016 18:15 +12022137,Jack Ma: the biggest mistake was founded Alibaba,https://www.youtube.com/watch?v=am8b1GiIgd0,1,1,justplay,7/2/2016 11:20 +11829978,Ask HN: How to deal with stress and overspecced responsibility?,,137,58,flashburn,6/3/2016 12:44 +11343822,Blendle: Pay-per-article journalism platform that refunds you for clickbait,http://launch.blendle.com/hackernews.html,212,118,alexandernl,3/23/2016 12:33 +10191585,Everything you need to know about a company before deciding to work there,http://ambitionbox.com/companies,3,1,iitmayur,9/9/2015 14:20 +11348551,Stellar Module Management Install Your Node.js Modules Using IPFS,http://blog.daviddias.me/2015/12/08/stellar-module-management,52,2,bergie,3/23/2016 21:48 +10850230,"Should (and could) you ditch Apple, Google and Microsoft?",https://www.thememo.com/2016/01/04/should-and-could-you-ditch-apple-google-and-microsoft/,24,14,Kittykn,1/6/2016 12:58 +11234633,PHP compiler to .NET,http://www.peachpie.io,2,2,pchp,3/6/2016 17:44 +11516003,"Devnews: Read HN, GitHub, and Product Hunt",https://devne.ws/,2,2,sunnyisme,4/17/2016 19:54 +11288057,FBI argues it can force Apple to turn over iPhone source code,http://www.extremetech.com/mobile/224709-the-gloves-are-off-fbi-argues-it-can-force-apple-to-turn-over-iphone-source-code,150,158,nreece,3/15/2016 7:31 +12475072,"BMW Plans Board Shakeup, Change in Electric Cars Strategy",https://global.handelsblatt.com/breaking/exclusive-bmw-plans-board-shakeup-change-in-electric-cars-strategy,41,83,doener,9/11/2016 19:15 +11095804,Some Things I Wish University Had Taught Me From a Computer Science Student,https://medium.com/@elliot_f/some-things-i-wish-university-had-taught-me-e435307c792d#.7ejt3ghqv,1,3,emforce,2/13/2016 21:48 +12427277,"The many lives of John le Carré, in his own words",http://www.theguardian.com/books/ng-interactive/2016/sep/03/tinker-tailor-writer-spy-the-many-lives-of-john-le-carre-in-his-own-words,79,8,Thevet,9/4/2016 23:45 +10380767,Ask HN: MacBook Pro 13 or 15 inches?,,2,2,paglia_s,10/13/2015 14:43 +11610455,Object Oriented Ruby,https://niczsoft.com/2016/05/object-oriented-ruby/,2,2,mpapis,5/2/2016 10:59 +10743124,New WiFi Arduino released MKR1000,https://www.arduino.cc/en/Main/ArduinoMKR1000,5,2,bjpirt,12/16/2015 9:00 +11035953,Career-Launching Companies Newsletter,https://www.smarthires.io/newsletter/career,10,5,StephanKletzl,2/4/2016 18:16 +11255160,"Man hacks Tesla firmware, finds new model, has car remotely downgraded",http://arstechnica.com/cars/2016/03/man-hacks-tesla-firmware-finds-new-model-has-car-remotely-downgraded/,239,95,antman,3/9/2016 19:30 +10886570,The Second Amendment: Original Intent,http://www.newyorker.com/humor/daily-shouts/the-second-amendment-original-intent,22,40,fforflo,1/12/2016 10:35 +11126697,Bitbucket secrets,https://developer.atlassian.com/blog/2016/02/6-secret-bitbucket-features/?categories=git,138,44,kannonboy,2/18/2016 16:05 +11744340,"A 6502 lisp compiler, sprite animation and the NES/Famicom",http://www.pawfal.org/dave/blog/2016/05/a-6502-lisp-compiler-sprite-animation-and-the-nesfamicom/,114,13,shioyama,5/21/2016 11:46 +10308076,Oregon Shakespeare Festival commissions translation of plays to modern English,http://www.wsj.com/articles/a-facelift-for-shakespeare-1443194924,1,1,daspianist,9/30/2015 23:09 +12267824,Extracting city blocks from OpenStreetMap data,https://peteris.rocks/blog/openstreetmap-city-blocks-as-geojson-polygons/,151,17,p8donald,8/11/2016 12:58 +12369947,Facebook is down,https://www.facebook.com/,14,3,cstigler,8/26/2016 23:08 +12505723,Tesla dropped by Mobileye for pushing the envelope in terms of safety,http://arstechnica.com/cars/2016/09/tesla-dropped-by-mobileye-for-pushing-the-envelope-in-terms-of-safety,52,118,fabian2k,9/15/2016 13:04 +11978210,Border fences major threat to wildlife,http://journals.plos.org/plosbiology/article?id=10.1371/journal.pbio.1002483,2,1,gpvos,6/25/2016 22:04 +11842536,Study Finds Gender Pay Gap in Lawyers Due to Performance Differences [pdf],https://www.upf.edu/rs/_pdf/jornadesGenere/GenderGaps_Ferrer.pdf?hnmodscensor,7,1,fuzebevcode,6/5/2016 19:09 +11661084,"Show HN: Lufo, Last Used First Out jQuery plugin to improve long select menus",https://m.signalvnoise.com/lufo-last-used-first-out-an-easy-way-to-drastically-improve-the-user-experience-of-long-select-56cd0ef1fcff#.ba7cyr2rq,14,2,nate,5/9/2016 16:34 +11001833,"Jade, Node.js template engine, is being forced to rename due to trademark",https://github.com/pugjs/jade/issues/2184,87,62,max_,1/30/2016 14:07 +10572578,How Im exporting my highlights from iBooks and Kindle,https://medium.com/@sawyerh/how-i-m-exporting-my-highlights-from-the-grasps-of-ibooks-and-kindle-ce6a6031b298,10,2,sawyerh,11/16/2015 4:16 +10315733,What I Learned Reading the F# Source,http://andredublin.github.io/fsharp/.net/2015/09/30/what-I-learned-reading-the-fsharp-source.html,60,5,andredublin,10/2/2015 0:08 +10279162,US Security Firm Defends Partnership with Censorship-Happy Chinese Giant Baidu,http://motherboard.vice.com/read/us-security-firm-defends-partnership-with-censorship-happy-chinese-giant-baidu,3,1,jgrahamc,9/25/2015 16:41 +11591038,"A poem about Silicon Valley, assembled from Quora questions about Silicon Valley",http://fusion.net/story/295515/quora-poetry-silicon-valley/,25,4,sharkweek,4/28/2016 18:43 +11280201,Do average consumers still need Dropbox?,http://wesmckinney.com/blog/do-average-consumers-still-need-dropbox/,4,2,amk_,3/14/2016 0:32 +11755631,The Elixir of concurrency,http://cfenollosa.com/blog/the-elixir-of-concurrency.html,116,38,carlesfe,5/23/2016 18:07 +11113049,How to Beat Jetlag and Travel Healthier,http://www.huffingtonpost.com/matt-wilson/how-to-beat-jetlag-and-tr_b_9158142.html,1,1,mattwilsontv,2/16/2016 20:54 +11938601,Fracking produces tons of radioactive waste. What should we do with it?,http://grist.org/business-technology/fracking-produces-tons-of-radioactive-waste-what-should-we-do-with-it/,1,1,state_machine,6/20/2016 15:24 +11610251,Craig Wright exposed as Satoshi fraud and imposter by Redditors,https://www.reddit.com/r/Bitcoin/comments/4hf4xj/creator_of_bitcoin_reveals_identity/d2pfnk6,36,5,ForFreedom,5/2/2016 9:54 +11411584,The U.K. NHS has failed to investigate 'unexpected deaths',http://www.theguardian.com/society/2016/apr/02/never-thought-he-wouldnt-come-home-why-son-connor-sparrowhawk-die,6,1,wallflower,4/2/2016 14:16 +11105438,Lessons Learned in SaaS Startups,https://medium.com/lessons-learned-in-saas-startups,3,1,stulogy,2/15/2016 19:45 +11021175,Slack Tips Tuesday: How a developer's daily standup should look,http://x-team.com/2016/02/developer-daily-standup/,4,1,ryanchartrand,2/2/2016 18:11 +11385690,What low oil prices really mean,https://hbr.org/2016/03/what-low-oil-prices-really-mean,8,1,sajid,3/29/2016 23:06 +10999194,The Tragic Data Behind Selfie Fatalities,http://priceonomics.com/the-tragic-data-behind-selfie-fatalities/,66,37,ryan_j_naughton,1/29/2016 22:54 +11083371,Why ancient Roman graffiti is so important to archaeologists,http://www.redorbit.com/news/science/1113411831/why-ancient-roman-graffiti-is-so-important-to-archaeologists-010516/,73,27,akakievich,2/11/2016 21:23 +10521663,Ask HN: What is the purpose of link shorteners?,,2,10,mgalka,11/6/2015 20:03 +10766243,ModularGrid,https://www.modulargrid.net/,29,12,pmoriarty,12/20/2015 6:19 +12156511,Emacs 25.1 RC1,http://lists.gnu.org/archive/html/info-gnu-emacs/2016-07/msg00000.html,148,120,unsignedint,7/25/2016 4:44 +12327266,Easily render D3 examples in Node.js,https://github.com/bradoyler/d3-node,2,1,bradoyler,8/20/2016 16:41 +12366993,The White House is planning to let more foreign entrepreneurs work in the U.S,http://www.recode.net/2016/8/26/12652892/white-house-startup-visa,3,1,AhtiK,8/26/2016 15:42 +10213665,Twitter's graph (2012),http://dcurt.is/twitters-graph,46,22,jimsojim,9/14/2015 4:41 +12546690,Apple keeps rejecting App Store apps with random words that are private,https://twitter.com/jakemarsh/status/776205831922528256,3,2,0x0,9/21/2016 9:45 +10417318,An Introduction to Morphic: The Squeak User Interface Framework (2000) [pdf],http://sdmeta.gforge.inria.fr/FreeBooks/CollectiveNBlueBook/morphic.final.pdf,35,4,selvan,10/20/2015 3:50 +12010090,Give citizens a financial incentive to support immigration reform,https://steemit.com/immigration/@crasch/sponsored-immigration-a-new-immigration-plan-that-could-make-you-rich,3,1,crasch4,6/30/2016 17:18 +11074363,"CentOS 7 for ARM (Raspberry Pi, Etc.)",http://mirror.centos.org/altarch/7/isos/armhfp/,3,1,api,2/10/2016 17:34 +10893301,Tell HN: Ffmpeg vulnerability allows attacker to get files from server or PC,,69,24,ChALkeR,1/13/2016 10:01 +12296911,Why Phoenix is exciting for the modern web,http://14islands.com/blog/2016/08/16/phoenix-framework/,2,1,hjortureh,8/16/2016 12:16 +10841342,Ask HN: Computational Chemistry Program Exchange,,3,1,compchem,1/5/2016 5:12 +11841476,'Be Yourself' is terrible advice,http://www.nytimes.com/2016/06/05/opinion/sunday/unless-youre-oprah-be-yourself-is-terrible-advice.html?action=click&pgtype=Homepage&clickSource=story-heading&module=opinion-c-col-left-region®ion=opinion-c-col-left-region&WT.nav=opinion-c-col-left-region,41,21,the_duck,6/5/2016 15:35 +12456440,"Yes, Apples Headphone Jack-Free iPhone 7 Is a Design (and Branding) Mistake",https://rightlydesigned.com/yes-apples-headphone-jack-free-iphone-7-is-a-design-and-branding-mistake/,21,15,WritelyDesigned,9/8/2016 19:27 +11127317,"Show HN: Twitter Lists Redux, Chrome extension that makes lists more convenient",https://chrome.google.com/webstore/detail/twitter-lists-redux/kcincllgjifchjihkklkcfdniofcjahb,3,1,tomitm,2/18/2016 17:13 +10725329,The Consumerization of Edtech,http://techcrunch.com/2015/12/12/skipping-copper-the-consumerization-of-edtech/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29,22,3,prostoalex,12/13/2015 3:40 +10922748,Adobe tries to strong-arm me into keeping Creative Cloud,https://gist.github.com/roddds/a1f42bae598028ac7809,97,65,firloop,1/18/2016 5:47 +10464856,How to download a web browser without any web browser,,2,9,FranzSunder,10/28/2015 15:10 +12508405,To the policemen who beat me for checking the health of a man in their custody,https://medium.com/@aliafshar/to-the-4-white-male-policemen-who-beat-me-for-checking-the-health-of-a-sick-black-man-in-their-8d77789fb24d#.b6298ibxb,11,1,Larrikin,9/15/2016 18:11 +11856912,Digital Video Transmission using LimeSDR and GNU Radio,https://myriadrf.org/blog/digital-video-transmission-using-limesdr-gnu-radio/,26,8,dmmalam,6/7/2016 19:07 +11532407,Apple Settles Siri Lawsuit with RPI for $25M,http://www.bizjournals.com/albany/news/2016/04/19/apple-settles-siri-lawsuit-with-rensselaer-dallas.html,12,9,shawndumas,4/20/2016 5:19 +11220939,Swift Evolution acceptances: The big three,http://ericasadun.com/2016/03/03/swift-evolution-acceptances-the-big-three/,82,36,acire,3/3/2016 23:42 +11713396,Why U.S. Infrastructure Costs So Much,http://www.bloomberg.com/view/articles/2016-04-08/why-u-s-infrastructure-costs-so-much,145,222,mtviewdave,5/17/2016 13:25 +10401578,Run Integration Tests Through Distelli with Ghost Inspector,https://www.distelli.com/blog/running-integration-tests-with-distelli-deploys,3,1,ericandres,10/16/2015 19:43 +12050040,How police stops are life-and-death experiences for people of color,http://www.slate.com/articles/news_and_politics/jurisprudence/2016/07/justice_sonia_sotomayor_s_dissent_in_utah_v_strieff_and_the_killings_of.html,13,7,jseliger,7/7/2016 15:46 +11290883,Real-time ray tracing on low power PowerVR PCIe card,http://blog.imgtec.com/powervr/gdc-2016-ray-tracing-graphics-mobile,1,1,alexvoica,3/15/2016 16:33 +10752635,Guns are now killing as many people as cars in the U.S,https://www.washingtonpost.com/news/wonk/wp/2015/12/17/guns-are-now-killing-as-many-people-as-cars-in-the-u-s/,32,86,Libertatea,12/17/2015 17:03 +10544829,The Slippery Eel of Probability,https://www.quantamagazine.org/20150730-the-slippery-eel-of-probability/,21,3,kareemm,11/11/2015 4:28 +12475776,Whats the allure of a fruit designed to repel?,https://aeon.co/essays/what-kind-of-masochists-want-to-burn-their-mouths-off,20,6,MrJagil,9/11/2016 21:14 +11909458,Why Microsoft Wanted LinkedIn,http://www.newyorker.com/business/currency/why-microsoft-wanted-linkedin,3,1,t23,6/15/2016 14:18 +10835958,"Tech stack for Muse: open, encrypted social protocol [1:47]",https://www.youtube.com/watch?v=GeiQdH8o3Oo,4,1,nbadg,1/4/2016 15:13 +12295608,"Google Duo, a simple 1-to-1 video calling app",https://googleblog.blogspot.com/2016/08/meet-google-duo-simple-1-to-1-video.html?m=1,311,327,marban,8/16/2016 4:52 +10776314,F a pure functional concatenative language (2006),http://www.nsl.com/k/f/f.htm,29,7,networked,12/22/2015 7:05 +12044267,Replace your dull 'very' with these 128 modifiers,http://mentalfloss.com/article/82484/replace-word-very-one-these-128-modifiers,2,2,ahmedfromtunis,7/6/2016 16:44 +10278844,"Clara, a machine-learning, software-driven virtual assistant",http://www.usatoday.com/story/tech/2015/09/24/clara-applying-your-virtual-personal-assistant-no-benefits-required/72713514/?__s=skbxjqs8s8efnsnqj8hf,18,1,yodac,9/25/2015 15:55 +10581576,Emerging Best Practices in Swift,https://realm.io/news/gotocph-ash-furrow-best-practices-swift/,17,18,ingve,11/17/2015 15:24 +12164758,Ask HN: Ownership of IP when founders break up (no agreement in place),,2,2,awayitgoes,7/26/2016 11:11 +12081365,I'd like to sell my ThemeForest business. What 's the best way?,,1,7,tfauthor,7/12/2016 18:38 +11530805,Ask HN: Are you finding it hard to talk on the internet nowadays?,,9,11,dqsmimwwuuu,4/19/2016 21:57 +10597778,Show HN: LawPatch JQuery for Law Using Git,http://blog.codepact.com/lawpatch/,21,6,pjbrow,11/19/2015 21:22 +11535333,The strange way people looked at food in the 16th Century,http://www.bbc.com/news/magazine-36072989,50,9,otoolep,4/20/2016 15:55 +11087606,0 gravity OK GO Upside down and music video,https://www.youtube.com/watch?v=Y6fyWs8KSdE,2,1,markatkinson,2/12/2016 15:01 +10809952,The Witcher 3 Understands War,http://warisboring.com/articles/the-witcher-3-understands-war/,4,1,vinnyglennon,12/30/2015 0:07 +11096237,GitHub.com Demographics: A story of researching and uncovering blind spots,https://medium.com/@tenaciouscb/github-com-demographics-a-story-of-researching-uncovering-blind-spots-21d7f1f90204#.scovcfeeq,2,1,bentlegen,2/13/2016 23:31 +11801416,Disney Vows Action as Snow White Appears at Wanda Park,http://www.bloomberg.com/news/articles/2016-05-30/disney-vows-to-defend-rights-as-snow-white-appears-at-wanda-park,2,1,petethomas,5/30/2016 14:09 +11086734,"Why did the half-plane, half-helicopter not work?",http://www.bbc.co.uk/news/magazine-35521040,41,15,jayflux,2/12/2016 12:28 +11500495,U.S. government worse than all major industries on cyber security,http://www.reuters.com/article/us-usa-cybersecurity-rankings-idUSKCN0XB27K,143,58,pgoggijr,4/14/2016 21:30 +10503603,Announcing Docker 1.9: Production-Ready Swarm and Multi-Host Networking,http://blog.docker.com/2015/11/docker-1-9-production-ready-swarm-multi-host-networking/,311,79,ah3rz,11/3/2015 23:52 +11832767,The Alan Kay Wiki,http://alan-kay.wikia.com/wiki/Alan_Kay_Wiki,13,2,Glench,6/3/2016 19:52 +10936980,Scrolling through my Facebook feed feels like watching TV,https://medium.com/@bendersej/scrolling-through-my-facebook-feed-feels-like-watching-tv-4e8428c36bdb#.d94nyuyll,13,2,onevertice,1/20/2016 9:53 +12522269,Google's CFO Ruth Porat is pushing creatives to bring costs under control,http://fortune.com/google-cfo-ruth-porat-most-powerful-women/,93,105,prostoalex,9/17/2016 20:23 +11619303,PORM: PHP ORM project,http://porm-project.org/,2,1,kiyanwang,5/3/2016 10:24 +12398818,I got a bunch of traffic last month from YCombinator. How do I find the article?,,2,1,chopshopstore,8/31/2016 15:02 +11139242,The relationship between stocks and oil prices,http://www.brookings.edu/blogs/ben-bernanke/posts/2016/02/19-stocks-and-oil-prices,11,1,nkurz,2/20/2016 7:13 +10682871,How not to report on the encryption debate,http://www.cjr.org/first_person/misinformation_and_misconceptions_how_not_to_report_on_the_encryption_debate.php,78,29,jeo1234,12/5/2015 19:00 +11667218,State Dept.: Clinton IT aide's email archive is lost,http://thehill.com/policy/national-security/279233-state-dept-claims-to-have-no-emails-from-clinton-it-aide,221,199,a3n,5/10/2016 14:05 +10552971,Browse the .NET Framework source code online,http://referencesource.microsoft.com/,142,24,zuck9,11/12/2015 13:29 +10853439,Why I Won't Be Buying an Oculus Rift,http://bostinno.streetwise.co/2016/01/06/oculus-rift-vs-playstation-4-virtual-reality-price-comparison/,8,4,fearfulsymmetry,1/6/2016 20:22 +11373316,Ask HN: Do HN's karma system penalize dissent?,,14,10,ainiriand,3/28/2016 9:04 +10288903,Real-Time Noise-Aware Tone Mapping,http://www.itn.liu.se/mit/research/computer-graphics-image-processing/real-time-noise-aware-tone-mapping?l=en,33,1,HardyLeung,9/28/2015 4:22 +10613427,Storing information forever in drops of water [video],http://www.bbc.com/future/story/20151122-this-is-how-to-store-human-knowledge-for-eternity,20,2,Lucadg,11/23/2015 8:27 +12147900,How climate change is rapidly taking the planet apart,http://www.flassbeck-economics.com/how-climate-change-is-rapidly-taking-the-planet-apart/,98,103,stcredzero,7/23/2016 1:18 +11875208,Breast Cancer Marker Awarded Amsterdams Most Innovative Idea,http://www.united-academics.org/wp-admin/post.php?post=53198&action=edit,1,1,unitedacademics,6/10/2016 9:28 +11224695,We've worked months on this,https://medium.com/@Floown/floown-is-live-c0bab0e91f88#.vbqyvxkiw,3,1,floown,3/4/2016 16:15 +11657065,Displaying Linux Memory,https://enc.com.au/2016/05/07/displaying-linux-memory/,12,1,sciurus,5/9/2016 1:45 +11683288,On the hunt for Facebooks army of fake likes,https://www.benthamsgaze.org/2016/05/12/on-the-hunt-for-facebooks-army-of-fake-likes/,69,59,sjmurdoch,5/12/2016 13:43 +11135768,Where do people fine Unity Jobs?,,1,2,krob,2/19/2016 19:11 +11056348,"Continuously writing an iPhone app, on an iPad Pro, using C# [video]",https://www.youtube.com/watch?v=MEY8eehULAo,54,7,walterbell,2/8/2016 4:37 +11765773,"In Silicon Valley, a new emphasis on barriers to government requests for data",https://www.washingtonpost.com/news/the-switch/wp/2016/05/24/what-is-driving-silicon-valley-to-become-radicalized/,88,34,ValG,5/24/2016 21:44 +10511814,Show HN: GPemu A Chrome App to play SNES games,https://chrome.google.com/webstore/detail/gpemu/jhficiigpnhhaojldmanflihieepanbb,29,3,matthewbauer,11/5/2015 5:36 +11030745,The Importance of a SIP Aware Firewall for the VoIP-Dependent Enterprise,http://www.mushroomnetworks.com/blog/2015/12/15/the-importance-of-a-sip-aware-firewall-for-the-voip-dependent-enterprise/,3,1,cahitakin19,2/3/2016 23:22 +11446947,Ask HN: Turn my home directory into a Git repo?,,6,9,mangeletti,4/7/2016 13:14 +11506698,"The internet has been stolen from you. Take it back, nonviolently",https://medium.com/@flyingzumwalt/the-internet-has-been-stolen-from-you-take-it-back-nonviolently-248f8d445b87#.xjs07vyey,97,53,datamonsteryum,4/15/2016 18:51 +10375154,Show HN: Micro web framework for low-resource systems live example on ESP8266,http://www.ureq.solusipse.net,146,40,solusipse,10/12/2015 15:33 +10235377,"Welcome Anne, Ben, and Joe",http://blog.ycombinator.com/welcome-anne-ben-and-joe,111,40,sama,9/17/2015 18:59 +11018111,The many ways of handling TCP RST packets,https://www.snellman.net/blog/archive/2016-02-01-tcp-rst/,99,8,luu,2/2/2016 7:47 +12453646,Moving Towards a More Secure Web,http://blog.chromium.org/2016/09/moving-towards-more-secure-web.html,125,88,kungfudoi,9/8/2016 15:03 +10317026,PICO-8,http://www.lexaloffle.com/pico-8.php,154,45,jmduke,10/2/2015 6:27 +11068773,Pioneer's Android Auto-compatible head unit bridges convenience and safety,http://www.networkworld.com/article/3031262/android/video-review-pioneers-android-auto-compatible-head-unit-bridges-convenience-and-safety.html?nsdr=true,1,1,stevep2007,2/9/2016 21:06 +11090100,China's Role in Bitcoin: How Cultural Differences Are Affecting Progress,http://www.forbes.com/sites/laurashin/2016/02/12/chinas-role-in-bitcoin-how-cultural-differences-are-affecting-the-technologys-progress/#7828d7f7f954,4,1,Sealy,2/12/2016 20:04 +10742590,Star Wars: every movie (well the first six anyway) in XKCD inspired chart form,http://www.abc.net.au/news/2015-12-16/star-wars-every-scene/7013826,7,2,drzax,12/16/2015 5:38 +11317119,How to Become a Hacker,http://nhc.bijayacharya.com/viewtopic.php?f=6&t=3&sid=62271e67c0eb5d95ec35b81cecda5641,4,2,nhc-forum,3/19/2016 3:20 +12363191,Cryptobin share text / files securely,http://cryptob.in/,3,2,cryptobin,8/25/2016 23:10 +12381131,Ruby Deoptimization Engine,https://github.com/ruby/ruby/pull/1419,103,23,ksec,8/29/2016 11:03 +11854482,Ask HN: How do you re-energize after getting burnt out?,,3,2,kevando,6/7/2016 13:52 +11364514,"Ask HN: With all our software built on so many dependencies, is anything secure?",,4,3,hoodoof,3/26/2016 5:09 +10936911,"Ask HN: Would you pay monthly to work from coffee shops, with free coffee?",,1,4,prmph,1/20/2016 9:35 +10472583,"An Inside Look at Upthere, the Company Aiming to Be Your Personal Cloud",http://techcrunch.com/2015/10/29/whats-upthere/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29,20,1,prostoalex,10/29/2015 17:11 +11387822,What problems does React Native solve?,,5,4,darilldrems,3/30/2016 8:40 +11512483,The Missing Tornado Debug Toolbar,https://github.com/guneysus/tornado-debug-toolbar,2,1,guneysu,4/16/2016 22:07 +12321819,Welcome Sharon,http://blog.ycombinator.com/welcome-sharon,58,28,dwaxe,8/19/2016 17:38 +11878877,Why arent big companies implementing best practices to protect users data?,,4,4,PabloR,6/10/2016 18:47 +10298224,EUROCOM Panther 5SE Mobile Server,"http://www.eurocom.com/ec/configure(1,234,0)ec",3,1,captainmojo,9/29/2015 18:04 +12250916,Research claims strong public service media is a good thing for democracy,http://www.ebu.ch/news/2016/08/ebu-research-shows-strong-public-service-media-contributes-to-a-healthy-democracy,2,1,chestnut-tree,8/8/2016 21:14 +10303131,Jaywalking: How the Car Industry Banned Crossing the Road (2014),http://www.bbc.com/news/magazine-26073797,3,1,DarkContinent,9/30/2015 11:35 +11515358,Drone hits British Airways plane approaching Heathrow Airport,http://www.bbc.co.uk/news/uk-36067591,111,99,k-mcgrady,4/17/2016 17:29 +11736047,How George Lucas Lost His Integrityand Why Its So Important,https://betterhumans.coach.me/how-george-lucas-lost-his-integrity-and-why-its-so-important-240c74991931#.k7jdtat47,53,22,ghosh,5/20/2016 7:20 +12541955,How Bad Off Is Oil-Rich Venezuela? Its Buying U.S. Oil,http://www.nytimes.com/2016/09/21/world/americas/venezuela-oil-economy.html,95,174,adventured,9/20/2016 18:26 +11871711,Teslas real problem is that their cars are unreliable,http://www.vox.com/2016/6/9/11880450/tesla-doomed?utm_campaign=vox&utm_content=article%3Atop&utm_medium=social&utm_source=twitter,3,1,Doubleguitars,6/9/2016 19:31 +11504602,Uber for MBAs is a worrying sign for knowledge workers everywhere,https://www.bostonglobe.com/business/technology/2016/04/15/uber-for-mbas-worrying-sign-for-knowledge-workers-everywhere/BJqxdFyeoM4f4giMzmSZSO/story.html,9,4,acconrad,4/15/2016 14:33 +11501466,Uninstall QuickTime for Windows Today,http://blog.trendmicro.com/urgent-call-action-uninstall-quicktime-windows-today/,6,5,onethree,4/15/2016 1:22 +10195297,Persistent pipes in Linux,https://gist.github.com/CAFxX/571a1558db9a7b393579,72,9,an_ko,9/9/2015 23:18 +11540389,Free VPN integrated in Opera for better online privacy,http://www.opera.com/blogs/desktop/2016/04/free-vpn-integrated-opera-for-windows-mac/,224,107,nmjenkins,4/21/2016 8:17 +11735020,A Docker file for Reason development,https://github.com/facebook/reason/tree/master/docker,56,20,yunxing,5/20/2016 1:08 +11213071,Germans have the most powerful passports,http://qz.com/626927/its-good-to-be-german-the-worlds-most-powerful-passports/,19,6,TimWolla,3/2/2016 21:16 +11590146,How we found a bug in Amazon ELB,https://sysdig.com/blog/amazon-elb-bug/,151,42,davideschiera,4/28/2016 16:44 +12343181,Understanding VCs,http://avc.com/2016/08/understanding-vcs/,202,63,ikeboy,8/23/2016 12:39 +11416957,Newsletter for Swift developers,http://swiftmonthly.com/issues/latest/?ref=aprhn,17,4,richamore,4/3/2016 18:06 +12084990,"Half of all US food produce is thrown away, new research suggests",https://www.theguardian.com/environment/2016/jul/13/us-food-waste-ugly-fruit-vegetables-perfect,68,43,vmateixeira,7/13/2016 9:35 +11834025,"The $1,000 CPM",https://medium.com/@hankgreen/the-1-000-cpm-f92717506a4b#.m8fgorpyp,1,1,mgdo,6/3/2016 23:37 +10320723,Soylent Shipping Delay Root Cause Analysis,http://blog.soylent.com/post/130348210172/shipping-delay-root-cause-analysis,73,65,dankohn1,10/2/2015 19:32 +11877307,Rumors Apple to Deliver iMessage to Android at WWDC,http://macdailynews.com/2016/06/09/apple-to-deliver-imessage-to-android-at-wwdc/,7,1,tilt,6/10/2016 15:59 +11015049,"VMware abruptly fires Fusion dev team, outsources to China",http://www.loopinsight.com/2016/01/28/vmware-abruptly-fires-fusion-dev-team-outsources-to-china/,12,3,andrebrov,2/1/2016 20:16 +10838562,A defense of C's null-terminated strings,https://utcc.utoronto.ca/~cks/space/blog/programming/CNullStringsDefense?showcomments,51,84,jsnell,1/4/2016 21:00 +11654800,How Western aid enables graft addiction in Ukraine,https://www.washingtonpost.com/news/monkey-cage/wp/2016/05/05/how-western-aid-enables-graft-addiction-in-ukraine/,16,4,Jerry2,5/8/2016 17:24 +11484635,Apply HN: Datalba Your personal media search engine,,8,11,jeads,4/13/2016 0:00 +12242448,Apple should stop selling four-year-old computers,http://www.theverge.com/2016/8/4/12373776/2012-macbook-pro-still-alive-not-dead-why,479,437,doener,8/7/2016 16:07 +12215666,Bitcoin drops 20% after $70M worth of Bitcoin was stolen from Bitfinex exchange,https://techcrunch.com/2016/08/02/bitcoin-drops-20-after-70m-worth-of-bitcoin-was-stolen-from-bitfinex-exchange/,1,3,intrasight,8/3/2016 4:51 +11578090,Apply HN: The Decentralized Internet Endowment,,5,2,jameswilsterman,4/27/2016 5:51 +12010083,Android N is Nougat,http://www.androidcentral.com/android-n-nickname,6,1,vikas0380,6/30/2016 17:18 +10776857,Home Security Startup Cocoon Raises $3M,https://blog.cocoon.life/company-news/seed-funding-2015/,11,3,Shubzinator,12/22/2015 10:19 +12135922,Ask HN: (O/S) DevOps Tool to Identify Wasteful Cloud Spending,,2,4,flarion,7/21/2016 10:33 +10668047,Analyse Asia 78: Innovation and Healthcare Asia with Claudia Olsson,http://analyse.asia/2015/12/02/episode-78-innovation-global-challenges-asia-healthcare-with-claudia-olsson/,1,1,bleongcw,12/3/2015 6:11 +12148302,When the Body Attacks the Mind,http://www.theatlantic.com/magazine/archive/2016/07/when-the-body-attacks-the-mind/485564/?single_page=true,124,17,akbarnama,7/23/2016 4:11 +11955434,A World without IOT,https://www.youtube.com/embed/CmKwlOUBoRo,1,1,mohanrajn84,6/22/2016 17:10 +10498175,Ask HN: Finding initial customers and validating need online meal ordering,,7,6,blakeloverain,11/3/2015 7:54 +12513769,"Researcher Does What FBI Couldn't, Bypasses iOS Passcode Limit",http://news.softpedia.com/news/researcher-does-what-fbi-couldn-t-bypasses-ios-passcode-limit-508359.shtml,3,1,alkoumpa,9/16/2016 13:23 +10868476,"El Chapo, Escaped Drug Lord, Has Been Recaptured",http://www.nytimes.com/2016/01/09/world/americas/El-Chapo-captured-mexico.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=first-column-region®ion=top-news&WT.nav=top-news&_r=0,46,16,chewymouse,1/8/2016 21:34 +10228680,"The Sharing Economy Is Dead, and We Killed It",http://www.fastcompany.com/3050775/the-sharing-economy-is-dead-and-we-killed-it,1,1,jonrx,9/16/2015 18:25 +12382737,Maker of EpiPen to Sell Generic Version for Half the Price,http://www.npr.org/sections/health-shots/2016/08/29/491797051/maker-of-epipen-to-sell-generic-version-for-half-the-price,1,1,helloworld,8/29/2016 15:54 +10573124,Snapchat's valuation falls by 25%,http://mashable.com/2015/11/10/snapchat-tech-valuations/,6,1,20years,11/16/2015 7:41 +11467307,An introduction to last branch records,http://lwn.net/Articles/680985/,28,7,signa11,4/10/2016 17:49 +11999166,Ask HN: What Open Source projects do you wish existed or were still maintained?,,3,4,augb,6/29/2016 2:43 +11832266,Electric Bikes Won Over China. Is the U.S. Next?,http://www.bloomberg.com/news/articles/2016-06-02/electric-bike-makers-woo-americans,133,227,jseliger,6/3/2016 18:33 +12046721,China's innovation economy a real estate bubble in disguise?,http://www.reuters.com/article/us-china-economy-innovation-insight-idUSKCN0ZM2KY,69,49,T-A,7/7/2016 0:10 +12182848,ATLAS 3.10.3 released,https://sourceforge.net/p/math-atlas/mailman/message/35248575/,19,1,edelsohn,7/28/2016 20:21 +11982871,Britain is sailing into a storm with no one at the wheel,http://www.economist.com/blogs/bagehot/2016/06/anarchy-uk?fsrc=scn/tw/te/bl/ed/anarchyintheuk,44,64,Turukawa,6/26/2016 21:39 +11535728,Our office had awful music. So I built this. Thoughts?,http://www.mediablazegroup.com/projectveto/,16,8,iamchristill,4/20/2016 16:48 +10196053,Show HN: Barter Hack trade your technical skills for other people's,http://www.barterhack.com/,73,55,Uptrenda,9/10/2015 3:40 +11343889,Meet Tay Microsoft A.I. chatbot with zero chill,https://www.tay.ai,5,1,jupp0r,3/23/2016 12:45 +12075744,Conditional Action Programmer,https://www.conditionalactionprogrammer.com,92,64,pavanlimo,7/12/2016 0:03 +12409500,Pokemon Go Has Reportedly Made More Than $440M,http://www.gamespot.com/articles/pokemon-go-has-reportedly-made-more-than-440-milli/1100-6443251/,1,1,Jarred,9/1/2016 23:04 +11374156,Show HN: Mrrobot.io,http://mrrobot.io/,7,1,raviojha,3/28/2016 13:39 +10532226,Scan a book in five minutes? $199 Smart scanner with foot pedal and WiFi,http://www.teleread.com/ebooks/scan-a-book-in-five-minutes-199-smart-scanner-with-foot-pedal-and-wifi-support/,43,21,walterbell,11/9/2015 10:32 +10239252,Learning new programming languages,https://codelympics.io/blog/learning-new-programming-languages?utm_source=hn&utm_medium=forum&utm_campaign=hn_learning-new-programming-languages,4,1,webmasterraj,9/18/2015 14:05 +10347557,"Amazon's new Snowball box should worry Cisco, HP, IBM and other big IT companies",http://www.businessinsider.com/amazon-snowball-vacuums-up-data-centers-2015-10,5,1,rajathagasthya,10/7/2015 17:42 +11130408,"Ask HN: It's 2016, how do you do your automated zero downtime DB migrations?",,10,5,raimille1,2/18/2016 23:53 +11581240,Status Quo Effects Upon Hiring Bias,https://hbr.org/2016/04/if-theres-only-one-woman-in-your-candidate-pool-theres-statistically-no-chance-shell-be-hired,6,1,brudgers,4/27/2016 15:27 +10197752,Introducing Heroku Private Spaces,https://blog.heroku.com/archives/2015/9/10/heroku_private_spaces_private_paas_delivered_as_a_service,162,45,grk,9/10/2015 13:03 +11370899,A Raspberry Pi dashcam with two cameras and a GPS,http://pidashcam.blogspot.com,167,85,aithoughts,3/27/2016 18:24 +10189312,Google and Waze Cited for Traffic Data Theft in PhantomAlert Suit,http://blogs.wsj.com/digits/2015/09/03/google-and-waze-cited-for-traffic-data-theft-in-phantomalert-suit/?mod=ST1,11,6,chatmasta,9/9/2015 2:15 +11233060,Ask HN: How can a bootstrapped startup reach international audience?,,10,3,adalyz,3/6/2016 9:28 +11147556,Should EnQ Get to Sell Spots in IRS Phone Queue?,http://www.forbes.com/sites/peterjreilly/2016/02/21/should-enq-get-to-sell-spots-in-irs-phone-queue/,3,1,avaliente,2/22/2016 0:50 +11798494,SoundClouds free auto-mastering audio tool is more of an auto-turd,http://arstechnica.com/gadgets/2016/05/soundclouds-free-auto-mastering-audio-tool-is-more-of-an-auto-turd/,5,1,Jerry2,5/29/2016 22:18 +12371828,Kaspersky launches its own OS,http://www.theregister.co.uk/2016/08/23/kasperskyos/,3,1,turrini,8/27/2016 10:46 +10377489,Appeals court hits largest public patent troll with $1.4M fee,http://arstechnica.com/tech-policy/2015/10/netapps-1-4m-fee-smackdown-against-patent-troll-holds-up-on-appeal/,186,49,solveforall,10/12/2015 23:32 +11247803,Performance Tuning Apache Storm at KeenIO,http://highscalability.com/blog/2016/3/8/performance-tuning-apache-storm-at-keen-io.html?second_pass,6,3,neom,3/8/2016 19:26 +10570604,Ask HN: Examples of good code?,,4,4,soham,11/15/2015 18:54 +12050688,Dear Graphite Users and Developers,http://grafana.org/blog/2016/07/06/dear-graphite-users-and-developers.html,1,1,sciurus,7/7/2016 17:11 +12017613,Tesla owner killed in crash was watching Harry Potter while using autopilot,http://www.dallasnews.com/business/autos-latest-news/20160701-tesla-owner-killed-in-crash-was-watching-harry-potter-while-using-car-s-autopilot-survivor-says.ece,13,7,cpeterso,7/1/2016 16:39 +11542549,Making Electronics out of Coal,https://news.mit.edu/2016/making-electronics-out-coal-0419,23,5,aethertap,4/21/2016 14:50 +12153041,Command Line Interface for GitHub Additional Features,https://github.com/sahildua2305/github-check-cli,2,1,sahil2305dua,7/24/2016 11:30 +11786193,Dijkstra: My Recollections of Operating System Design (2001) [pdf],https://www.cs.utexas.edu/users/EWD/ewd13xx/EWD1303.PDF,65,11,jdnc,5/27/2016 14:19 +11129000,"I hate college essays, and now professors use my jeremiad in class",http://www.slate.com/articles/life/education/2016/02/i_hate_college_essays_and_now_professors_use_my_jeremiad_in_class.single.html,2,1,jseliger,2/18/2016 20:21 +10662662,Ask HN: Is R an alternative to SQL?,,4,6,nyc111,12/2/2015 13:03 +10721071,Show HN: System.sh cleans your system,https://github.com/Hypsurus/system.sh/,4,4,Hypsurus,12/12/2015 0:13 +12373402,Bitmains R4 to Bring an In-Home Experience to Bitcoin Mining,https://news.bitcoin.com/bitmains-r4-bring-home-experience/,2,1,posternut,8/27/2016 17:59 +11835661,Eve Dev Diary (Oct Nov),http://incidentalcomplexity.com/2016/06/03/oct-nov/,3,1,one-more-minute,6/4/2016 9:29 +11591840,Show HN: Sourcerer Atom plugin for quickly finding StackOverflow code snippets,https://github.com/NickTikhonov/sourcerer,6,3,nicktikhonov,4/28/2016 20:57 +11515108,Dolphins as a model for alien intelligence,http://nautil.us/blog/dolphins-are-helping-us-hunt-for-aliens,196,88,dnetesn,4/17/2016 16:32 +10798987,Turning Your Raspberry PI Zero into a USB Gadget,https://learn.adafruit.com/turning-your-raspberry-pi-zero-into-a-usb-gadget?view=all,6,1,skimmas,12/27/2015 22:28 +12011861,Show HN: DevJuncture GlassDoor for software development,https://www.devjuncture.com,1,1,smithgeek,6/30/2016 21:23 +11957757,Twilios IPO festivities will include live coding from NYSE floor,https://techcrunch.com/2016/06/22/twilio-ipo-code-jam/,4,1,coloneltcb,6/22/2016 23:06 +10358684,Swiftkey's new neural network keyboard,http://gizmodo.com/swiftkey-has-a-neural-network-keyboard-and-its-creepily-1735430695,23,22,jcrei,10/9/2015 7:53 +11252766,Implementing Human-Like Intuition Mechanism in Artificial Intelligence,http://arxiv.org/abs/1106.5917,94,1,anacleto,3/9/2016 13:20 +11328842,Increase Coding Speed / Typing Skills,,3,5,ianceicys,3/21/2016 15:42 +10736650,The problem with month-over-month growth rates,http://christophjanz.blogspot.com/2015/11/the-problem-with-month-over-month.html,12,1,chrija,12/15/2015 8:46 +12135675,How to fix flying,http://www.popularmechanics.com/flight/a20085/how-to-fix-flying/,106,26,pmcpinto,7/21/2016 9:14 +11134516,Dear Foursquare. A Breakup Letter,https://medium.com/life-tips/dear-foursquare-c7c441fdf25e,2,1,mgiannopoulos,2/19/2016 16:37 +10411331,Electron: Build cross platform desktop apps with web technologies,http://electron.atom.io/,2,1,lobo_tuerto,10/19/2015 5:51 +11503934,The Doom Movement Bible,https://www.doomworld.com/vb/post/1586811,190,47,rinesh,4/15/2016 13:07 +10631115,Making a pencil from scratch (2013),http://gse-compliance.blogspot.com/2013/05/making-pencil.html,93,39,cba9,11/26/2015 3:33 +12343378,One Kings Lane sold for less than $30M after being valued at $900M,http://www.recode.net/2016/8/23/12588428/one-kings-lane-flash-sales-acquisition-price-bed-bath-beyond,15,2,jstreebin,8/23/2016 13:06 +12573991,Rural Indian Girls Chase Big-City Dreams,http://www.nytimes.com/2016/09/25/world/asia/bangalore-india-women-factories.html,38,53,known,9/25/2016 4:37 +10349391,TSMC's A9 Chip Outperforming Samsung's in Early iPhone 6s Battery Benchmarks,http://www.macrumors.com/2015/10/07/tsmc-samsung-a9-battery-tests/,13,1,subnaught,10/7/2015 21:54 +11643431,How APIs Are Eating the Product Stack,https://medium.com/point-nine-news/how-apis-are-eating-the-product-stack-914a3d6e1216#.vm1cgfijo,5,1,clementv,5/6/2016 12:23 +10426715,Show HN: Smartflix Watch Netflix content from any country,,4,6,romaincointepas,10/21/2015 16:58 +12022239,"Why do people buy MacBook Pro retinas, given their relatively high price?",https://www.quora.com/Why-do-people-buy-MacBook-Pro-retinas-given-their-relatively-high-price?share=1,35,60,Artemis2,7/2/2016 12:26 +10963886,"Most cancers due to 'bad luck'? Not so fast, says study",http://www.statnews.com/2015/12/16/cancers-bad-luck/,1,1,chockablock,1/24/2016 20:30 +11876598,Ask HN: Why are companies paying ransom ware fees?,,6,9,a_lifters_life,6/10/2016 14:31 +10764255,Why work in San Francisco as a foreign developer?,http://www.getajob.io/why-work-in-san-francisco-as-a-foreign-developer/,1,2,getajob,12/19/2015 18:00 +12443084,India's richest man offers free 4G to one billion people,http://money.cnn.com/2016/09/06/technology/india-reliance-jio-4g-internet/,148,74,ZeljkoS,9/7/2016 13:12 +10541055,Why you should never build a backblaze pod: BioTeam,http://bioteam.net/2011/08/why-you-should-never-build-a-backblaze-pod/,3,1,amelius,11/10/2015 18:04 +12390292,Victory for Net Neutrality in Europe,https://juliareda.eu/2016/08/victory-for-net-neutrality/,547,174,jrepin,8/30/2016 14:11 +12012874,The Master JavaScript Course Has Been Released (197 Spots Remaining),http://www.masterjavascript.io/lp/master-javascript-course-1,1,1,erikgrueter,6/30/2016 23:58 +10218480,Show HN: JavaScript coding challenges on top of GitHub and circleci,https://github.com/engintekin/javascript-coding-challenges-using-github-circleci,3,1,engintekin,9/15/2015 1:22 +10305718,Ask HN: Looking for a new kind of CS degree program I saw on HN,,1,2,dahart,9/30/2015 17:46 +10237946,Why doesn't this startup exist yet?,,1,1,instakill,9/18/2015 7:42 +11327185,"Seeking Access to Facebook in China, Zuckerberg Courts Risks",http://www.nytimes.com/2016/03/21/business/seeking-access-to-facebook-in-china-zuckerberg-courts-risks.html?smtyp=cur&pagewanted=all,2,1,Osiris30,3/21/2016 10:40 +10648509,Why Beijings Air Pollution Crisis Is Complicated (2014) [pdf],http://www.consiliencejournal.org/index.php/consilience/article/viewFile/360/204,9,1,wooster,11/30/2015 9:19 +12249995,"McKinsey Study Shows 81% of US Worse Off Than in 2005, France 63%, Italy 97%",https://mishtalk.com/2016/08/07/mckinsey-study-shows-81-of-us-worse-off-than-in-2005-france-63-italy-97/,33,17,randomname2,8/8/2016 18:49 +10449311,Environment Variables and Path in Windows 10,https://plus.google.com/+ArtemRussakovskii/posts/CCM4hXzpRTv,313,180,archon810,10/26/2015 2:20 +10385922,The Ad Blockers Dilemma,http://developer.telerik.com/featured/the-ad-blockers-dilemma/,2,1,remotesynth,10/14/2015 10:53 +10335120,Elon Musk's Sleight of Hand,https://medium.com/@gavinsblog/elon-musk-s-sleight-of-hand-ea2b078ed8e6,7,2,nyolfen,10/5/2015 21:31 +10971009,One in five American adults is an Amazon Prime member,http://www.usatoday.com/story/tech/news/2016/01/25/amazon-prime-54-million-one-in-five-prime-grew-35-2015/79306470/,3,1,ourmandave,1/26/2016 0:04 +11942457,Feedback on my idea and prototype,,1,1,ymt_1503,6/20/2016 23:32 +11214319,Time to Rethink Mandatory Password Changes,https://www.ftc.gov/news-events/blogs/techftc/2016/03/time-rethink-mandatory-password-changes,2,1,salmonet,3/3/2016 0:56 +12336246,Building Your First Atom Plugin,https://github.com/blog/2231-building-your-first-atom-plugin,143,58,apetresc,8/22/2016 13:42 +11490311,A nail in the coffin for Firefox?,http://www.cnet.com/news/a-nail-in-the-coffin-for-firefox-mozilla-struggles-to-redefine-browser/,3,1,cnan,4/13/2016 17:34 +10316105,The Abolition of Work (1985),http://www.primitivism.com/abolition.htm,40,13,iamcurious,10/2/2015 1:44 +10416547,Show HN: Floobits-atom Remote pair programming in Atom,https://github.com/Floobits/floobits-atom,49,5,ggreer,10/19/2015 23:40 +10897240,OSHA slaps Amazon for not reporting job injuries,http://www.cbsnews.com/news/osha-slaps-amazon-for-not-reporting-job-injuries/,2,1,smacktoward,1/13/2016 20:30 +10852495,Ask HN: Anyone in Boston Interested in Teaming Up for Daily Fantasy Sports?,,1,1,imjk,1/6/2016 18:33 +10483423,Yolk.js: A user interface library built on RxJS and Virtual-dom,https://github.com/yolkjs/yolk,74,10,gabes,10/31/2015 17:48 +10875527,Show HN: Equiv: Inter-Languages Equivalent Package Finder,https://github.com/f/equiv,24,3,fka,1/10/2016 15:10 +10295091,Recur Multimedia Recurrent Neural Networks Tools,https://github.com/douglasbagnall/recur,6,1,polemic,9/29/2015 8:02 +10356588,BY-SA and GPL: CC closed the chasm in the sharealike/copyleft community,http://draketo.de/english/free-software/by-sa-gpl,4,1,ArneBab,10/8/2015 21:55 +12130235,Q&A with Ron and Topher Conway,http://themacro.com/articles/2016/07/ron-and-topher-conway/,18,6,craigcannon,7/20/2016 16:21 +11193588,Comparison of 15 popular programming language home pages,http://imgur.com/a/bkvNv,2,2,ryanmarsh,2/29/2016 4:31 +11872958,Who Are the Real-Life Models of Silicon Valley Characters? We Have Them,https://backchannel.com/who-are-the-real-life-models-of-silicon-valley-characters-we-have-them-3507bc890d9a?source=rss----d16afa0ae7c---4,6,2,dwaxe,6/9/2016 22:50 +11961769,Chesapeake Light Tower up for auction,http://gsaauctions.gov/gsaauctions/aucbystate/?sl=PEACH416009001,2,1,jamessun,6/23/2016 15:32 +11944069,"Paul Allen's giant plane takes shape in the desert, but its market is unclear",http://www.seattletimes.com/business/boeing-aerospace/paul-allens-giant-plane-takes-shape-in-the-desert-but-its-market-is-unclear/,2,1,Herodotus38,6/21/2016 7:33 +10616428,DRAM chip failures reveal surprising hardware vulnerabilities,http://spectrum.ieee.org/computing/hardware/drams-damning-defects-and-how-they-cripple-computers,91,67,mud_dauber,11/23/2015 18:54 +11255396,Intelligence-Augmented Rat Cyborgs in Maze Solving,http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0147754,9,3,smaili,3/9/2016 20:03 +10484212,The dangers of quick thinking (2012),https://theweek.com/articles/478388/dangers-quick-thinking,15,1,monort,10/31/2015 21:05 +11633567,Train Your TensorFlow Models on Rescale,https://blog.rescale.com/train-your-tensorflow-models-on-rescale/,88,23,gpoort,5/5/2016 2:26 +11990659,Android changes for NDK developers API 24 will block private API usage,http://android-developers.blogspot.com/2016/06/android-changes-for-ndk-developers.html,5,1,Macha,6/28/2016 0:34 +10829006,Brand-colors just turned v1.0.0,http://brand-colors.com?version=1.0.0,2,1,reimertz,1/3/2016 1:22 +12096164,Nest Cam Outdoor,https://store.nest.com/product/outdoor-security-camera/,2,2,fraXis,7/14/2016 18:24 +12377775,Paywalling the laws of the universe,https://www.authorea.com/users/101586/articles/124967/_show_article,26,13,Jerry2,8/28/2016 18:35 +12221526,Microsoft's war against Chrome battery life now includes Win10 notifications,http://www.theverge.com/2016/8/3/12369326/microsoft-windows-10-chrome-battery-life-notifications,2,1,edroche,8/3/2016 21:07 +10704463,"Arduino-driven orchestra plays TSO: Wizards in Winter (and scanners, floppies..)",https://www.youtube.com/watch?v=bhChYJzw4FM,1,1,jweather,12/9/2015 16:09 +12494160,The Economic Expansion Is Finally Helping the Middle Class,http://www.nytimes.com/2016/09/14/upshot/the-economic-expansion-is-helping-the-middle-class-finally.html,86,104,sethbannon,9/14/2016 3:59 +11067928,Fly Flicker: Flies on Pies,http://www.foddy.net/flies/,1,1,sandebert,2/9/2016 19:21 +10562175,What's your favorite Linux terminal emulator?,http://opensource.com/life/15/11/top-open-source-terminal-emulators,1,1,opensourcedude,11/13/2015 20:23 +10444175,AMA with Greg Kemnitz (One of the Creators of PostgreSQL),http://www.ama-live.com/#!/room/5623b05f2d34521b00ac2e7c,8,1,sacheendra,10/24/2015 17:03 +10800657,"Japan, South Korea Reach Agreement on Comfort Women",http://www.wsj.com/articles/japan-south-korea-reach-comfort-women-agreement-1451286347,5,2,ktamura,12/28/2015 11:13 +10957828,Every Major City East of the Mississippi Underreporting Heavy Metals in Water,http://gizmodo.com/report-every-major-us-city-east-of-the-mississippi-i-1754573026,4,2,ck2,1/23/2016 9:49 +11650721,Integer division powered by lemonade-bleach battery,http://pl.eecs.berkeley.edu/projects/chlorophyll/,69,14,rutenspitz,5/7/2016 18:28 +10677420,"Ask HN: When should i post on our company blog, when on Medium?",,4,9,colloqu,12/4/2015 16:56 +11701200,C as an Intermediate Language (2012),http://yosefk.com/blog/c-as-an-intermediate-language.html,73,85,jlturner,5/15/2016 15:14 +10842544,A brief history of books that do not exist,http://lithub.com/a-brief-history-of-books-that-do-not-exist/,22,6,Pamar,1/5/2016 10:51 +10614658,Put the Ph Back in PhD,http://magazine.jhsph.edu/2015/summer/forum/rethinking-put-the-ph-back-in-phd,86,76,Amorymeltzer,11/23/2015 14:16 +12275114,Housing official in SV resigns because she can't afford to live there,https://www.theguardian.com/technology/2016/aug/11/silicon-valley-housing-official-resigns-california-home-prices,3,8,gdilla,8/12/2016 12:43 +11963015,Engineering Surfing Waves,http://nautil.us/issue/37/currents/the-perfect-wave-is-coming,21,2,sdabdoub,6/23/2016 17:51 +10732543,Show HN: Santa's Map to Christmas (Mobile App),http://santasmap.com/,1,1,cjkarr,12/14/2015 17:54 +10408391,Some tech investors sure seem to be getting defensive lately,http://www.businessinsider.com/big-tech-investors-sure-seem-to-be-getting-defensive-lately-2015-9,2,1,unclebucknasty,10/18/2015 15:00 +11872630,Nationwide Blackout in Kenya Caused by Marauding Monkey,http://arstechnica.com/business/2016/06/nationwide-blackout-in-kenya-caused-by-marauding-monkey/,2,1,Aelinsaar,6/9/2016 21:45 +11327028,Majestic-12 Distributed Search Engine,http://www.majestic12.co.uk/,1,1,antouank,3/21/2016 9:52 +12064462,The Three Layer Causal Hierarchy [pdf],http://web.cs.ucla.edu/~kaoru/3-layer-causal-hierarchy.pdf,36,18,dstein64,7/10/2016 3:34 +10915271,Chaparral Cars,https://en.wikipedia.org/wiki/Chaparral_Cars#2J,8,3,vmorgulis,1/16/2016 14:01 +10546458,"John Carmack's Deep Thoughts: Ideas, Work, and Emotion",https://www.facebook.com/notes/kent-beck/john-carmacks-deep-thoughts-ideas-work-and-emotion/1051813558184841,11,3,KentBeck,11/11/2015 13:08 +11098484,The Metaphysical Astronauts,http://motherboard.vice.com/read/the-metaphysical-astronauts,28,1,dsr12,2/14/2016 15:02 +11922118,New stock images site with unlimited/lifetime accounts,http://www.stockunlimited.com/#eyJpZCI6MzgzNDJ9,1,1,tmikaeld,6/17/2016 12:07 +10837647,100 Days of Swift,http://samvlu.com/,118,23,awaxman11,1/4/2016 18:59 +11067793,Woo.io,https://woo.io,103,50,mikevm,2/9/2016 19:04 +12487112,GitLab Master Plan,https://about.gitlab.com/2016/09/13/gitlab-master-plan/,572,327,dwaxe,9/13/2016 11:36 +11086180,Troubled C64 documentary 8bitgeneration delivers,https://8bitgeneration.vhx.tv/packages/growing-the-8-bit-generation,1,1,radicalbyte,2/12/2016 9:48 +10843380,Why Does Microsoft SQL Server Exist?,,6,11,ayjz,1/5/2016 14:34 +10866513,How to fend off a jerk,http://www.davedelaney.me/blog/how-to-fend-off-a-jerk,184,116,daveJSF,1/8/2016 17:25 +11553798,HTTP/2 Adoption Stats,http://isthewebhttp2yet.com/measurements/structure.html,56,31,dedalus,4/23/2016 2:11 +11426234,Webkey Like ssh keys for the web,https://webkey-auth.github.io/,3,1,billytetrud,4/4/2016 22:23 +11011877,A bold proposal to use the gig economy to reboot the safety net,http://www.politico.com/agenda/story/2016/1/uber-welfare-sharing-gig-economy-000031,3,1,randomname2,2/1/2016 14:26 +11556889,TJ Holowaychuk's Startup,https://medium.com/apex-software/announcing-apex-software-inc-5008c454002#.twvfrvnrq,3,1,max_,4/23/2016 18:57 +11596689,C++ Has Become More Pythonic (2014),http://preshing.com/20141202/cpp-has-become-more-pythonic/,126,121,luu,4/29/2016 16:16 +11883199,Eve: community-developed computer sign-up,http://www.eve-tech.com,18,4,gshssh,6/11/2016 12:25 +12277366,Alphabet is still figuring out how to be a conglomerate,https://backchannel.com/alphabet-learns-that-change-isnt-as-easy-as-abc-e24df2673639#.8ype9626i,192,91,mirandak4,8/12/2016 17:36 +12336265,Show HN: Snapdex A discovery tool for Snapchat,https://www.snapdex.com,6,1,Laurentvw,8/22/2016 13:45 +11662715,SignAloud: Gloves That Translate Sign Language into Text and Speech,http://lemelson.mit.edu/winners/thomas-pryor-and-navid-azodi,82,47,Mz,5/9/2016 20:08 +11988258,"Bill Hendricks Joins ProducePay as Senior Vice President, Head of Product",https://producepay.com/bill-hendricks-joins-producepay-senior-vice-president-head-product/,2,1,billhendricksjr,6/27/2016 18:25 +11835999,Educate Your Immune System,http://www.nytimes.com/2016/06/05/opinion/sunday/educate-your-immune-system.html,168,99,qubitcoder,6/4/2016 11:53 +11575397,How to kill zombie instances and lower your AWS bill,http://blog.launchdarkly.com/zombies-eating-your-aws-bill/,10,2,EmilieCJ,4/26/2016 20:35 +12381621,New equation might unite quantum mechanics and general relativity,http://www.sciencealert.com/this-new-equation-might-finally-unite-the-two-biggest-theories-in-physics-says-physicist,1,1,mr_overalls,8/29/2016 13:17 +11921205,Dozens of U.S. diplomats urge strikes against Assad,http://www.nytimes.com/2016/06/17/world/middleeast/syria-assad-obama-airstrikes-diplomats-memo.html,2,3,Udik,6/17/2016 7:57 +12057198,Magnetic Rope observed for the first time between Saturn and the Sun,https://www.ucl.ac.uk/mathematical-physical-sciences/maps-news-publication/saturn-sun-magnetic-rope,4,1,mondaine,7/8/2016 17:27 +12300953,Modern anti-spam and E2E crypto (2014),https://moderncrypto.org/mail-archive/messaging/2014/000780.html#,48,27,Artemis2,8/16/2016 22:01 +11440494,I left Vancouverand I feel fine,http://blog.officehours.io/i-left-vancouver-and-i-feel-fine/,5,1,karjaluoto,4/6/2016 18:01 +11706667,How Intel missed the smartphone market,https://mondaynote.com/intel-culture-just-ate-12-000-jobs-305674fb1274#.8xjcs7g8b,292,196,JeremyMorgan,5/16/2016 14:54 +11799477,What Happens to the Brain During Cognitive Dissonance? (2015),http://www.scientificamerican.com/article/what-happens-to-the-brain-during-cognitive-dissonance/,98,62,brahmwg,5/30/2016 4:02 +12048969,FreeType 2.6.4 released with new and better bytecode interpreter,http://lists.nongnu.org/archive/html/freetype-announce/2016-07/msg00000.html,3,1,cm3,7/7/2016 12:54 +11562380,Qiniu React Native SDK is now available,https://github.com/qiniu/react-native-sdk,3,1,bugu1986,4/25/2016 3:15 +11745486,Visual Group Theory,http://web.bentley.edu/empl/c/ncarter/vgt/,90,13,rfreytag,5/21/2016 17:48 +11448252,Announcing Clearbit Connect,http://blog.clearbit.com/clearbit-connect/,75,16,uptown,4/7/2016 15:55 +10997561,"Ask HN: App that supports task boards, time tracking and a daily/weekly planner?",,8,12,faizshah,1/29/2016 18:58 +10840124,Safety Lessons from the Morgue (2012),http://www.nytimes.com/2012/10/28/magazine/safety-lessons-from-the-morgue.html?_r=0&pagewanted=all,15,1,gwern,1/5/2016 0:52 +10485816,Twitch installs arch: re: shutdown,https://twitter.com/twitchinstalls/status/660647279208960000,1,2,calpaterson,11/1/2015 8:38 +11980846,Detecting Money Laundering,http://conf.startup.ml/blog/aml,89,89,arshakn,6/26/2016 14:11 +12527210,The Insomnia Machine,http://www.nytimes.com/2016/09/18/opinion/sunday/the-insomnia-machine.html?src=me,2,1,hvo,9/18/2016 21:05 +10868972,How friendly is your AI? It depends on the rewards,http://robohub.org/how-friendly-is-your-ai-it-depends-on-the-rewards/,4,1,hallieatrobohub,1/8/2016 23:03 +11834648,Building a Raspberry-Pi Stratum-1 NTP Server,http://www.satsignal.eu/ntp/Raspberry-Pi-NTP.html,9,2,dmmalam,6/4/2016 2:34 +11556349,Why Uber Won,https://news.greylock.com/why-uber-won-5598a2a66561#.hz33sst9k,173,143,realdlee,4/23/2016 17:05 +11235872,A Biotech Evangelist Seeks a Zika Dividend,http://www.nytimes.com/2016/03/06/business/a-biotech-evangelist-seeks-a-zika-dividend.html,2,1,jonbaer,3/6/2016 22:26 +11917201,Here are the 10 countries where homosexuality may be punished by death,https://www.washingtonpost.com/news/worldviews/wp/2016/06/13/here-are-the-10-countries-where-homosexuality-may-be-punished-by-death-2/,1,4,MichaelAO,6/16/2016 16:34 +10606395,Do you have to be intelligent to develop AI?,,2,5,lovboat,11/21/2015 10:26 +10818013,[ask] Why you should borrow me your spare computer for 2016?,https://github.com/gernest/talk/blob/master/why.md,11,3,touristtam,12/31/2015 15:45 +10997683,Gittools perform Git commands in multiple repositories at the same time,https://github.com/hwdegroot/gittools,4,2,slicercorp,1/29/2016 19:13 +11505332,TRS-80 Trash Talk Episode 4 Model I Buyer's Guide,http://www.trs80trashtalk.com/2016/04/episode-4.html,3,2,pskisf,4/15/2016 16:01 +11020232,"GrabTaxi Rebrands to Grab, Launches Cashless Payments and Corporate Service",http://techcrunch.com/2016/01/27/grab-grab-grab/,2,1,gk1,2/2/2016 16:02 +12240093,The 39th Root of 92,http://bit-player.org/2016/the-39th-root-of-92,217,118,bit-player,8/6/2016 21:58 +10492694,"A Click-Bait Experiment, and the Navel-Gazing Problem Threatening to Ruin Medium",https://medium.com/swlh/a-click-bait-experiment-and-the-navel-gazing-that-threatens-to-ruin-medium-5225f409c577,2,1,nkantar,11/2/2015 16:18 +10825829,Show HN: Talkus Chat with your website users from Slack,https://www.talkus.io,21,5,acemtp,1/2/2016 11:01 +12003138,The Megaprocessor is finished CPU hand built from discrete transistors,https://youtube.com/c/Megaprocessor,5,1,SixSigma,6/29/2016 17:27 +12023576,Do you like my Idea?,,2,5,Gallad23,7/2/2016 19:42 +11514740,Ask HN: SRE vs. Software Engineer,,1,2,ljim4a,4/17/2016 15:06 +12553044,AI Makes Pop Music,http://www.flow-machines.com/ai-makes-pop-music/,6,2,CharlesW,9/21/2016 23:03 +11753459,We Only Hire the Best,https://m.signalvnoise.com/we-only-hire-the-best-c711c330fc2e#.yty4hjlla,333,200,braythwayt,5/23/2016 12:42 +12358102,Doing More with Less Code,https://codewithoutrules.com/2016/08/25/the-01x-programmer/,67,45,itamarst,8/25/2016 11:02 +11717269,Why Apple Music is So Bad When the iPhone is so Good,http://www.newyorker.com/business/currency/why-apple-music-is-so-bad-when-the-iphone-is-so-good,109,173,gk1,5/17/2016 20:47 +11583063,No time to get fit? Just 1 minute of intense exercise produces health benefits,http://www.sciencecodex.com/no_time_to_get_fit_think_again_just_1_minute_of_intense_exercise_produces_health_benefits-181155,7,3,obeone,4/27/2016 18:19 +12285536,Ask HN: How to start a tutoring (programming) business?,,1,3,beelzebubble,8/14/2016 13:45 +12068208,Reflections by a Dallas police officer,http://www.hlswatch.com/2016/07/09/reflections-by-a-dallas-police-officer/,14,1,Daviey,7/11/2016 1:09 +10649901,Varnish and Microservices: Introducing Zipnish,http://info.varnish-software.com/blog/an-introduction-to-zipnish,30,5,timf,11/30/2015 15:39 +10406117,Trending Apple App Store Searches in September 2015 (Google Spreadsheet),https://docs.google.com/spreadsheets/d/12UpcDFawv4XjNRyTx5dcJOgSRLJZ367UOjFSQM7mnPI/edit?usp=sharing,2,1,mmmnt,10/17/2015 21:11 +11283601,Neural Networks Demystified,http://lumiverse.io/series/neural-networks-demystified,686,63,maxlambert,3/14/2016 16:02 +11192307,Raspberry PI 3: gets a 64bit CPU,http://m.imgur.com/exuZy58?r,20,6,farabove,2/28/2016 20:50 +11368468,Ask HN: Could the NPM fiasco happen to Maven?,,2,1,whack,3/27/2016 1:53 +12514661,Pictures from research base in Antartica,http://imgur.com/a/ijX9Q,3,1,asimuvPR,9/16/2016 15:28 +10579201,Encrypted Messaging Apps Face New Scrutiny Over Possible Role in Paris Attacks,http://www.nytimes.com/2015/11/17/world/europe/encrypted-messaging-apps-face-new-scrutiny-over-possible-role-in-paris-attacks.html,88,120,dperfect,11/17/2015 4:39 +11609412,Myth: CS Researchers Don't Publish Code or Data,http://jxyzabc.blogspot.com/2016/05/myth-cs-researchers-dont-publish-code.html,26,15,panic,5/2/2016 5:50 +10390660,Women Who Write About Tech Are Still Being Abused Online,http://www.huffingtonpost.com/entry/women-tech-writers-abuse_561d3368e4b0c5a1ce60a42d?na5rk9,1,2,ohjeez,10/15/2015 0:59 +11747992,How do you stop a randomized game from randomly being boring sometimes?,http://arstechnica.com/gaming/2016/05/stellaris-and-strategy-gamings-bad-luck-problem/,95,92,yread,5/22/2016 10:04 +11840020,"TeamViewer users are being hacked in bulk, and we still dont know how",http://arstechnica.co.uk/security/2016/06/teamviewer-users-hacked-but-how/,187,52,edward,6/5/2016 7:35 +11064522,India bans Facebooks free Internet for the poor,https://www.washingtonpost.com/world/indian-telecom-regulator-bans-facebooks-free-internet-for-the-poor/2016/02/08/561fc6a7-e87d-429d-ab62-7cdec43f60ae_story.html,3,1,ghostDancer,2/9/2016 10:59 +11234835,Imagined design for a faster-than-light spaceship,https://www.washingtonpost.com/news/post-nation/wp/2014/06/11/this-is-the-amazing-design-for-nasas-star-trek-style-space-ship-the-ixs-enterprise/,3,2,anigbrowl,3/6/2016 18:32 +10839538,Dirk's Lego Globe (2013),http://mocpages.com/moc.php/353076,107,10,coloneltcb,1/4/2016 23:17 +10912039,Ask HN: Again: Why can't we have collapsable comment threads?,,8,6,l33tbro,1/15/2016 20:49 +11813581,Bloomberg adds adblock nag screen,http://www.bloomberg.com/,3,2,the-dude,6/1/2016 11:40 +10246975,Ask HN: What is the best way to monetize animated video series?,,3,5,rayalez,9/20/2015 9:06 +11192505,Documentation first,http://joeyh.name/blog/entry/documentation_first/,3,1,edward,2/28/2016 21:40 +10571065,Show HN: ied an alternative package manager for Node,https://github.com/alexanderGugel/ied,86,88,blubbi2,11/15/2015 20:37 +12124197,Use cases for ES6 proxies,http://devbryce.com/use-cases-for-es6-proxies/,83,32,inian,7/19/2016 19:32 +10599541,Why don't startups use the C#/.NET/Microsoft stack?,,5,3,ayjz,11/20/2015 4:22 +12292590,A More Flexible Paxos,http://ssougou.blogspot.com/2016/08/a-more-flexible-paxos.html,77,21,dctrwatson,8/15/2016 18:57 +10503954,"Americans Largely Unconcerned About Climate Change, Survey Finds",http://www.huffingtonpost.com/entry/americans-largely-unconcerned-about-climate-change-survey-finds_563906d8e4b079a43c04de2d,6,1,cryptoz,11/4/2015 1:19 +10857174,Konga: The Emergence of an African Technology Powerhouse,http://cyberomin.github.io/startup/2016/01/07/african-powehouse-1.html,2,2,cyberomin,1/7/2016 10:37 +11154447,A New Breed of Trader on Wall Street: Coders with a Ph.D,http://www.nytimes.com/2016/02/23/business/dealbook/a-new-breed-of-trader-on-wall-street-coders-with-a-phd.html?src=busln,298,177,hvo,2/22/2016 21:30 +10641135,The New Atomic Age We Need,https://nytimes.com/2015/11/28/opinion/the-new-atomic-age-we-need.html,258,200,markmassie,11/28/2015 14:32 +10529598,"Quick recap of Startup Weekend Havana, first ever in Cuba [video]",https://www.youtube.com/watch?v=92JE-WDoxjo,12,1,lx,11/8/2015 19:53 +10279159,Gravity-Powered Solar Tracker,http://www.notechmagazine.com/2015/09/gravity-powered-solar-tracker.html,42,30,davesailer,9/25/2015 16:41 +12311458,Tell HN: Hotmail has finaly failed for me,,1,1,eveningcoffee,8/18/2016 10:31 +11164073,Show HN: Pages per Day,https://itunes.apple.com/us/app/pages-per-day/id1048447961?ls=1&mt=8,3,2,nevster,2/24/2016 2:23 +12128123,Turkey blocks access to WikiLeaks after email-leak,http://www.independent.co.uk/news/world/europe/wikileaks-emails-release-government-turkey-erdogan-block-a7145671.html,11,1,imafish,7/20/2016 11:10 +11104762,Show HN: Placeboard App to remember and share places built with coreobject.org,http://placeboardapp.com,4,1,qmathe,2/15/2016 17:52 +11453650,WikiBinge: discover how all things are vaguely connected,http://www.wikibinge.com,11,3,jamez,4/8/2016 10:08 +10365290,"In Damp Metro Tunnels, Prehistoric Plants Thrive",http://wamu.org/programs/metro_connection/15/10/09/in_damp_metro_tunnels_prehistoric_plants_thrive,50,5,smacktoward,10/10/2015 12:21 +10961149,"Show HN: Redux and datascript, anyone?",https://github.com/hden/reduxscript/blob/master/reducers.js,6,1,hden,1/24/2016 2:13 +11791221,Show HN: Sharing to multiple social accounts made easy,http://socialbox.io/about,2,2,thesubroot,5/28/2016 10:56 +11701414,Bubble Indemnity,http://www.nytimes.com/2016/05/15/magazine/bubble-indemnity.html,93,48,kdazzle,5/15/2016 16:09 +10638975,"Women, minorities, and the Manhattan Project",http://blog.nuclearsecrecy.com/2015/11/27/women-minorities-and-the-manhattan-project/,38,12,GFK_of_xmaspast,11/27/2015 21:44 +12381549,Ask HN: Help with acqhire from EU by US company?,,6,8,throwaway_asker,8/29/2016 13:03 +10693983,Our mental prison: The myth of objective knowledge,https://www.catholicculture.org/commentary/otc.cfm?id=1337,4,1,michaelsbradley,12/8/2015 0:43 +11182401,Show HN: Stripe Atlas with a Lawyer,http://sunbizlaw.com,8,7,will_brown,2/26/2016 16:53 +11191467,"Recognize all contributors, not just the ones who push code",https://github.com/kentcdodds/all-contributors,6,1,joshmanders,2/28/2016 17:26 +11039652,Babbage was a true genius (2006),http://tomforsyth1000.github.io/blog.wiki.html#%5B%5BBabbage%20was%20a%20true%20genius%5D%5D,2,1,panic,2/5/2016 5:17 +10406661,Prototype Elf We Build Web Apps for Just $5K,http://prototypeelf.com/,3,1,jcsnv,10/17/2015 23:48 +12208943,Ask HN: What's something you can do that might impress other programmers?,,5,3,kevindeasis,8/2/2016 10:40 +10314489,/r/watchpeopledie blocked for german users,https://www.reddit.com/r/ChillingEffects/comments/3gw9g1/2015813_ip_blocks/,1,1,omnibrain,10/1/2015 20:36 +10392770,MapFactor Navigator,https://play.google.com/store/apps/details?id=com.mapfactor.navigator&hl=en,1,1,MapFactor,10/15/2015 12:45 +10504319,Lessons from the Storm that Wasn't,http://www.historicalclimatology.com/blog/lessons-from-the-storm-that-wasnt,15,1,Thevet,11/4/2015 3:06 +10951457,The Three Cultures of Machine Learning,http://cs.jhu.edu/~jason/tutorials/ml-simplex.html,156,19,fforflo,1/22/2016 8:17 +12228028,How a Story from World War II Shapes Facebook Today,http://www.fastcodesign.com/1671172/how-a-story-from-world-war-ii-shapes-facebook-today,2,1,jpswade,8/4/2016 19:56 +12475132,Students: Why You Should Start Up and Inspire the World Medium,https://medium.com/@mathieu.hasum/students-why-you-should-start-up-and-inspire-the-world-a9961d4ea654#.2z90oilgq,1,2,Labo333,9/11/2016 19:25 +12497874,Bank of America analysts think there's 50 per cent chance we live in the Matrix,http://www.independent.co.uk/life-style/gadgets-and-tech/news/bank-of-america-the-matrix-50-per-cent-virtual-reality-elon-musk-nick-bostrom-a7287471.html,4,1,obvio,9/14/2016 15:25 +10721104,Walnuts Have Fewer Calories Than the Label Suggests,http://blogs.usda.gov/2015/12/03/walnuts-have-fewer-calories-than-the-label-suggests-ars-researcher-discovers/,42,33,nkurz,12/12/2015 0:20 +10446564,Show HN: Agenda 1.0 Arduino scheduler library,https://github.com/gioblu/Agenda,9,3,gioscarab,10/25/2015 10:39 +11301708,Show HN: Kickstarter campaign to stop porch pirates with Package Guard,https://www.kickstarter.com/projects/packageguard/the-package-guard,8,3,goughjustin,3/17/2016 0:11 +11874471,How to Not Suck at Running a Kickstarter Campaign,https://medium.com/@jadojodo/how-to-not-suck-at-running-a-kickstarter-campaign-ee91319d776b#.el9dozcx9,1,1,JadoJodo,6/10/2016 5:26 +11572304,The North Korean number,http://thenorthkoreannumber.puyb.net/,10,3,aalexgabi,4/26/2016 14:46 +11221133,Oculus founder says no Mac is powerful enough to run the Rift,http://www.techspot.com/news/63993-macs-cant-power-oculus-rift.html?utm_content=bufferc09c7&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer,5,2,fezz,3/4/2016 0:31 +11465215,Wikipedia Android app now requests identity permissions,https://plus.google.com/104092656004159577193/posts/4bMEBEkRoKA,64,42,dredmorbius,4/10/2016 6:48 +10644690,Switching from OS X to FreeBSD Both Desktop and Laptop,http://mirrorshades.net/post/132753032310,256,161,vezzy-fnord,11/29/2015 14:46 +12482671,Ask HN: How do I ensure access to my API only from my webapp,,2,1,sharmi,9/12/2016 19:05 +11001796,Removing support for Emacs unexec from Glibc,https://lwn.net/SubscriberLink/673724/d9809e674cde21df/,106,51,jordigh,1/30/2016 13:57 +11276095,Paradise_ftp is a native (golang) ftp server that is production ready,https://github.com/andrewarrow/paradise_ftp,4,2,andrewfromx,3/13/2016 3:45 +11822669,Elon Musk: There's a 'one in billions' chance our reality is not a simulation,http://mashable.com/2016/06/02/elon-musk-simulated-reality/,2,1,fjordan,6/2/2016 14:26 +12256783,Triple signal of alien megastructure star baffles astronomers,https://www.newscientist.com/article/2100319-triple-signal-of-alien-megastructure-star-baffles-astronomers/,4,1,stefap2,8/9/2016 18:33 +11654533,Mathematical Intuition Behind Bezier Curves,https://buildingvts.com/mathematical-intuition-behind-bezier-curves-2ea4e9645681,139,19,farashh,5/8/2016 16:02 +11002165,Google Open Source Load Balancer in Go,https://github.com/google/seesaw,323,69,paukiatwee,1/30/2016 15:32 +10812401,Marine Corps Shelves Futuristic Robo-Mule Due to Noise Concerns,http://www.military.com/daily-news/2015/12/22/marine-corps-shelves-futuristic-robo-mule-due-to-noise-concerns.html,71,99,bgraves,12/30/2015 15:30 +12532821,Show HN: EmoDB a distributed data store with a global streaming platform,https://bazaarvoice.github.io/emodb/,2,1,l8again,9/19/2016 16:55 +11460346,Almost complete guide to flexbox (without flexbox),http://kyusuf.com/post/almost-complete-guide-to-flexbox-without-flexbox,66,9,_kush,4/9/2016 7:24 +10841332,"Diversity Policies Dont Help Women, Minorities, Make White Men Feel Threatened",https://hbr.org/2016/01/diversity-policies-dont-help-women-or-minorities-and-they-make-white-men-feel-threatened,17,1,gdix,1/5/2016 5:05 +10663835,Mozilla backs off on validating Firefox Add-on code,https://blog.mozilla.org/addons/2015/12/01/de-coupling-reviews-from-signing-unlisted-add-ons/,4,1,cashman,12/2/2015 16:19 +10869338,Why Amazon's Data Centers Are Hidden in Spy Country,http://www.theatlantic.com/technology/archive/2016/01/amazon-web-services-data-center/423147/?single_page=true,20,2,bootload,1/9/2016 0:17 +12156994,History tells us what will happen next with Brexit and Trump,https://medium.com/@theonlytoby/history-tells-us-what-will-happen-next-with-brexit-trump-a3fefd154714,12,3,gnocchi,7/25/2016 7:08 +12289215,Automated API Testing,,2,3,antfie,8/15/2016 7:53 +10443461,Vim based modern C/C++ IDE,https://github.com/JBakamovic/yavide,2,1,Paul_S,10/24/2015 13:00 +11695785,"XML or JSON, and that is not the question",http://byterot.blogspot.com/2016/05/xml-or-json-and-that-is-not-question-msbuild-dotnetcore-asp-net-microsoft.net.html,3,1,aliostad,5/14/2016 12:24 +12451129,5000 Rust questions on Stackoverflow,http://stackoverflow.com/questions/tagged/rust,4,1,neverminder,9/8/2016 8:05 +11565477,New papers dividing logical uncertainty into two subproblems,https://intelligence.org/2016/04/21/two-new-papers-uniform/,85,17,Rickasaurus,4/25/2016 16:44 +12234179,Ring oscillators on Silego GreenPAK 4,http://lab.whitequark.org/notes/2016-08-05/ring-oscillators-on-silego-greenpak4/,25,1,jsnell,8/5/2016 17:29 +12013399,The Other Side Is Not Dumb,https://medium.com/@SeanBlanda/the-other-side-is-not-dumb-2670c1294063,41,15,juanplusjuan,7/1/2016 2:03 +12102270,"There are fewer Pokemon Go locations in black neighborhoods, but why?",http://www.miamiherald.com/news/nation-world/national/article89562297.html,3,5,smacktoward,7/15/2016 16:49 +10219512,Lisp implementation in GNU make,https://github.com/shinh/makelisp,98,16,aerique,9/15/2015 8:11 +11441458,Secrets of the Yahoo Sale Book Reveal Financial Meltdown,http://recode.net/2016/04/06/yahoo-sale-book-financial-meltdown/,10,2,doener,4/6/2016 19:54 +11645378,Hackers are the new lawyers,http://calebmadrigal.com/hackers-are-the-new-lawyers/,53,47,calebm,5/6/2016 17:28 +10572157,A hangover led to the discovery of ibuprofen,http://www.bbc.com/news/health-34798438,64,45,timthorn,11/16/2015 1:44 +10652836,"Penny Dreadfuls, Juvenile Crime, and Late-Victorian Moral Panic",http://mimimatthews.com/2015/11/16/penny-dreadfuls-juvenile-crime-and-late-victorian-moral-panic/,28,8,Avawelles,12/1/2015 0:09 +10540574,Amazon Kind of Sucks and Weve All Just Come to Accept It,http://mattmaroon.com/2015/11/10/amazon-kind-of-sucks-and-weve-all-just-come-to-accept-it/,59,69,mattmaroon,11/10/2015 17:08 +10422297,Ask HN: Mi Band Xiaomi hack?,,2,4,luck87,10/20/2015 22:32 +12056122,"Never a Hippie, Always a Freak",https://nplusonemag.com/online-only/online-only/never-a-hippie-always-a-freak/,124,12,tintinnabula,7/8/2016 15:19 +11111752,AWS Lambda now allows access to your VPC,http://docs.aws.amazon.com/lambda/latest/dg/vpc.html,3,1,buzzdenver,2/16/2016 17:55 +10387592,GlassTTY: TrueType VT220 Font,http://svo.2.staticpublic.s3-website-us-east-1.amazonaws.com/glasstty/,1,1,api,10/14/2015 16:32 +10744208,Horrible color banding on certain low-end Lenovo laptops. Fix? Tilt the screen,https://support.lenovo.com/documents/SF15-I0012,1,1,rplnt,12/16/2015 13:52 +10576989,Client-Side Encryption: The Right Security Model for the Cloud,https://blog.balboa.io/yet-another.html,82,27,squidlogic,11/16/2015 20:40 +11696311,Researchers just released profile data on 70000 OkCupid users without permission,http://www.vox.com/2016/5/12/11666116/70000-okcupid-users-data-release,13,6,based2,5/14/2016 14:45 +10627251,Programming language subreddits and their choice of words,https://github.com/Dobiasd/programming-language-subreddits-and-their-choice-of-words,1,1,braythwayt,11/25/2015 14:17 +11467286,The 'Affordable Housing' Fraud (2015),http://jewishworldreview.com/cols/sowell100115.php3,2,1,shawndumas,4/10/2016 17:45 +10197279,Apples cringeworthy approach to women reveals a company out of touch,http://www.thememo.com/2015/09/10/apples-cringeworthy-approach-to-women-reveals-a-company-out-of-touch/,3,4,alexwoodcreates,9/10/2015 10:58 +10972849,The Amiga Graphics Archive,http://amiga.lychesis.net/,109,24,doener,1/26/2016 11:14 +12471022,Read Scheme Resources for Functional Programming,http://readscheme.org/,58,8,michaelsbradley,9/10/2016 21:46 +11558600,Ask HN: Best offline password manager,,9,11,Spooky23,4/24/2016 4:59 +11904087,Ask HN: Can somebody please share E3 conference today in a nutshell?,,1,2,Vivavidaloca,6/14/2016 18:20 +11156319,How Uber engineering evaluated JSON encoding and compression algorithms,https://eng.uber.com/trip-data-squeeze/,9,1,frsyuki,2/23/2016 3:37 +10538218,Long-Term Exposure to Flat Design:How the Trend Slowly Decreases User Efficiency,http://www.nngroup.com/articles/flat-design-long-exposure/,46,16,Illotus,11/10/2015 8:51 +11099685,How to Write an LLVM Register Allocator,https://github.com/nael8r/How-To-Write-An-LLVM-Register-Allocator/blob/master/HowToWriteAnLLVMRegisterAllocator.rst,49,1,ingve,2/14/2016 19:50 +10304349,Texas High School Makes Students Sign Work for Hire Contracts to Use Cameras,http://petapixel.com/2015/09/29/after-controversy-high-school-now-makes-students-sign-work-for-hire-contracts/,3,1,mgiannopoulos,9/30/2015 14:49 +11145469,16 programming languages you need to know in 2016,https://medium.com/@kevindeasis/16-programming-languages-you-need-to-know-in-2016-ced155514b4c#.fakn6ytn6,1,1,kevindeasis,2/21/2016 17:42 +10858075,Yahoo to slash 10% or more of its workforce,http://finance.yahoo.com/news/yahoo-looking-slash-10-percent-044438229.html;_ylc=X1MDMTE5Nzc4NDE4NQRfZXgDMQRfeXJpZAM1Y2hiY3Y5YjhzdG0zBGcDZFhWcFpEeHVjejQ1TjJRM04yTXhPUzB3WXpZd0xUTTNaR1l0T0RkbE5DMWhZbVptT1dKak1ETTVZakk4Wm1sbGJHUStlV2h2Ync9PQRsYW5nA2VuLVVTBG9yaWdfbGFuZwNlbgRvcmlnX3JlZ2lvbgNVUwRwb3MDNARyZWdpb24DVVMEc3ltYm9sA1lIT08-?.tsrc=applewf,11,1,shawndumas,1/7/2016 14:32 +10975425,Acoustic tweezers manipulate cells with sound waves,http://news.mit.edu/2016/acoustic-tweezers-manipulate-cells-sound-waves-0125,2,1,clbrook,1/26/2016 19:40 +11270523,"ADHD children may just be immature, research suggests",http://www.bbc.com/news/education-35772654,2,2,sea6ear,3/12/2016 0:04 +11305691,Reusable and Extendable D3 Charts,https://537.io/reusable-and-extendable-d3-charts/,40,4,kiernanmcgowan,3/17/2016 17:01 +11660302,Video: Make Ruby Great Again,http://blog.testdouble.com/posts/2016-05-09-make-ruby-great-again.html,59,6,searls,5/9/2016 15:00 +11462474,Turning a 1920s Switchboard into a Modern-Day Video Game,http://www.popularmechanics.com/technology/gadgets/a20292/turning-a-1920s-switchboard-into-a-modern-video-game/,44,6,joubert,4/9/2016 18:07 +10739059,Is OpenAI Solving the Wrong Problem?,https://hbr.org/2015/12/is-openai-solving-the-wrong-problem,7,1,hype7,12/15/2015 17:34 +10607875,Avert extremism before it starts by building better neighbourhoods,http://www.theglobeandmail.com/news/world/saunders-avert-extremism-before-it-start-by-building-betterneighbourhoods/article27403775/,7,1,BobbyVsTheDevil,11/21/2015 20:13 +11405445,Show HN: Brave Clojure Jobs - Use the Language You Love,https://jobs.braveclojure.com/,1,3,nonrecursive,4/1/2016 15:23 +10525325,Ask HN: Is Apple beginning to railroad its users to update their iPhones?,,1,1,williamle8300,11/7/2015 16:59 +12554827,Yahoo is expected to confirm data breach impacting hundreds of millions of users,http://www.recode.net/2016/9/22/13012836/yahoo-is-expected-to-confirm-massive-data-breach-impacting-hundreds-of-millions-of-users,18,4,ssclafani,9/22/2016 6:20 +10885295,I run a SV startup but refuse to own a cellphone,http://www.theguardian.com/technology/2016/jan/11/steve-hilton-silicon-valley-no-cellphone-technology-apps-uber,55,89,crikli,1/12/2016 2:57 +11079457,Securityheaders.io Analyse your HTTP response headers,https://securityheaders.io/,147,46,robin_reala,2/11/2016 11:08 +10585690,Syrian Crisis Explained in 15 Animated Maps,https://www.youtube.com/watch?v=LJtUQjJC4a0,1,1,artur_makly,11/18/2015 3:19 +11937926,"Hello, Tensorflow",https://www.oreilly.com/learning/hello-tensorflow,596,41,lobsterdog,6/20/2016 13:39 +11617638,MIT Challenge,https://www.scotthyoung.com/blog/myprojects/mit-challenge-2/,7,1,ca98am79,5/3/2016 3:19 +10689835,UK supermarket chain accidentally introduces 20% discount at 140 stores,http://www.bbc.co.uk/news/uk-england-essex-35025506,2,1,jackgavigan,12/7/2015 14:57 +11186553,Turn any app into Whatsapp with the SaaS toolkit Applozic,https://www.techinasia.com/turn-app-whatsapp-saas-toolkit-applozic,12,2,chanukya_p,2/27/2016 8:44 +11460485,Apply HN: Vaultedge a private Google for your private data,,9,26,sajeevaravind,4/9/2016 8:27 +11909953,Statistics for Hackers [video],https://www.youtube.com/watch?v=L5GVOFAYi8k,338,23,david90,6/15/2016 15:38 +12547520,In praise of 'small astronomy',http://blogs.nottingham.ac.uk/newsroom/2016/09/21/praise-small-astronomy/,31,2,okket,9/21/2016 12:25 +10808981,Augmented Reality with Unreal Engine 4,http://www.unreal4ar.com/demo-videos/,3,1,kenOfYugen,12/29/2015 20:51 +11301801,Sorrows of a Polygamist,http://www.lrb.co.uk/v38/n06/mark-ford/sorrows-of-a-polygamist,45,3,samclemens,3/17/2016 0:30 +10329038,Hacker News Rankings,http://hnrankings.info/,9,3,yitchelle,10/4/2015 22:12 +10613392,Only 3 northern white rhinos left on Earth,http://www.rawstory.com.proxy.parle.co/2015/11/only-3-northern-white-rhinos-left-on-earth/,70,40,mengjiang,11/23/2015 8:12 +12072578,The full expressive power of flowcharts but in a simple checklist UI,https://tallyfy.com/features/,1,1,amitkoth,7/11/2016 17:16 +12495025,South Park's creators on how the series has evolved,http://www.vanityfair.com/hollywood/2016/09/south-park-20th-anniversary-interview,218,90,pmcpinto,9/14/2016 8:41 +11624269,Amazon EC2 t2.nano costs $4.75 per month,https://aws.amazon.com/about-aws/whats-new/2015/12/introducing-t2-nano-the-smallest-lowest-cost-amazon-ec2-instance/,2,1,idlecool,5/3/2016 21:11 +11820388,"Ubers subprime leases put drivers on road, but leave some shackled",http://www.seattletimes.com/business/ubers-subprime-leases-put-drivers-on-road-but-leave-some-shackled/,98,89,goughjustin,6/2/2016 4:33 +11142499,Complete tree of life visualization using d3 and Catalog of Life,http://bpodgursky.com/2016/02/20/catalog-of-life-taxonomic-tree/,52,10,bpodgursky,2/20/2016 23:36 +12180514,Stuck in negotiations? Try Hootsuite's steak dinner clause,https://medium.com/@invoker/how-to-use-the-steak-clause-to-win-your-next-negotiation-55b4dafbea94#.209lnhyg8,160,58,Quartertotravel,7/28/2016 14:45 +10450760,UpNote Join the conspiracy of Kindness,https://upnote.io/,4,1,kkarann,10/26/2015 11:51 +11533328,Parse Dashboard on Heroku in 3 steps,https://www.codementor.io/nodejs/tutorial/deploy-parse-dashboard-on-heroku,3,1,matt_g,4/20/2016 10:16 +10843174,Deep Work by Cal Newport Is Available,http://calnewport.com/books/deep-work/,3,1,playing_colours,1/5/2016 13:45 +12183427,Trump left out of Google search for presidential candidates,http://nbc4i.com/2016/07/27/trump-left-out-of-google-search-for-presidential-candidates/?do=notcensor,29,15,mbgaxyz,7/28/2016 21:46 +12356845,"Connect with people who share your taste, interests and passions",,4,3,giamai,8/25/2016 3:35 +12012320,The Origins of the Domestic Blueberry,http://daily.jstor.org/delicious-origins-of-domesticated-blueberry,55,16,Vigier,6/30/2016 22:25 +11195050,Scientists might have spotted dark matter in the Perseus Cluster,http://www.dailygalaxy.com/my_weblog/2016/02/the-perseus-signal-what-we-found-could-not-be-explained-by-known-physics-weekend-feature.html,2,1,elorant,2/29/2016 12:30 +11078120,One of the World's Top Aging Researchers Has a Pill to Keep You Feeling Young,http://www.fastcoexist.com/3041800/one-of-the-worlds-top-aging-researchers-has-a-pill-to-keep-you-feeling-young?utm_source=nextdraft&utm_medium=email,2,1,mojoe,2/11/2016 3:48 +10720173,Hired Digs Deep into Software Engineer Salaries in the US and UK,https://blog.hired.com/hired-digs-deep-software-engineer-salaries-us-uk/,1,1,adamflanagan,12/11/2015 21:29 +10704483,Announcing Open Live Writer An Open Source Fork of Windows Live Writer,http://www.hanselman.com/blog/AnnouncingOpenLiveWriterAnOpenSourceForkOfWindowsLiveWriter.aspx,11,1,jongalloway2,12/9/2015 16:11 +10512871,Show HN: Generate 2D Space Scenes in WebGL,http://wwwtyro.github.io/space-2d,4,2,wwwtyro,11/5/2015 12:09 +12149616,Pokémon Go Is Teaching Americans the Metric System,http://gizmodo.com/pokemon-go-is-secretly-teaching-americans-the-metric-sy-1783459191,206,161,ahmedfromtunis,7/23/2016 14:51 +11514349,Js_of_ocaml,http://ocsigen.org/js_of_ocaml/,5,1,seeing,4/17/2016 12:53 +12026873,Synthetic spider silk could revolutionize clothing,http://qz.com/708298/synthetic-spider-silk-could-be-the-biggest-technological-advance-in-clothing-since-nylon/,5,1,kawera,7/3/2016 17:40 +11324200,Investing in Stocks: You are Thinking about Risk All Wrong,http://greenspringwealth.com/blog-article/you-are-thinking-about-risk-all-wrong/,2,1,yonibot,3/20/2016 19:16 +10226078,Student arrested after bringing homemade clock to school,http://gizmodo.com/this-teenager-was-arrested-for-making-a-clock-his-teach-1730977157,7,3,shylor,9/16/2015 12:38 +10436671,The FCC will publish phone numbers of robocallers and telemarketers every week,http://www.theverge.com/2015/10/21/9583208/fcc-weekly-data-telemarketing-robocalls,7,3,valine,10/23/2015 3:43 +11457648,SpaceX Live Webcast CRS-8 Dragon Mission,http://www.spacex.com/webcast?crs-8=true,2,1,pseudometa,4/8/2016 20:28 +10604579,Remember Startup Founder Kaleil Isaza Tuzman? From Harvard to Goldman to Jail,http://www.bloomberg.com/news/articles/2015-11-20/for-u-s-dot-com-star-locked-up-abroad-is-as-scary-as-it-sounds,6,2,kevindeasis,11/20/2015 23:32 +11054613,Hiring Managers what are your favorite websites/apps for finding people to hire?,,2,2,dwgetjwehg,2/7/2016 20:21 +10288122,How do you produce pulses of light as short as a femtosecond?,,1,1,javajosh,9/27/2015 22:13 +11740832,Tech firms may violate Palo Alto zoning: Writing code not allowed downtown,https://www.docdroid.net/IohgURu/the-daily-post-search-the-archive.pdf.html,93,88,apsec112,5/20/2016 19:40 +10458503,Show HN: Tabli A Tab Manager for Google Chrome,http://antonycourtney.github.io/tabli/,12,1,antonycourtney,10/27/2015 15:18 +12114429,Open Source NoSQL Database for .NET,http://www.alachisoft.com/nosdb/,1,1,youngdevangel,7/18/2016 11:28 +11506458,Show HN: Sshfs-open A helper script to mount remote directories using sshfs,https://github.com/danielrw7/sshfs-open,6,1,danielrw7,4/15/2016 18:16 +11476067,npmcdn A CDN for Packages That Are Published via NPM,https://npmcdn.com/,1,1,nikolay,4/11/2016 23:44 +12238008,Throughput vs. Latency and Lock-Free vs. Wait-Free,http://concurrencyfreaks.blogspot.com/2016/08/throughput-vs-latency-and-lock-free-vs.html,146,31,ingve,8/6/2016 13:12 +12340526,Distinguishing Bolts from Screws (2012) [pdf],https://www.cbp.gov/sites/default/files/assets/documents/2016-Apr/icp013_3.pdf,76,65,empath75,8/23/2016 0:48 +12407395,App Store Improvements,https://developer.apple.com/support/app-store-improvements/,79,64,jefflinwood,9/1/2016 17:50 +11135580,"Ask HN: Founders/Hiring folks, what questions do you ask in an interview?",,2,1,zuck9,2/19/2016 18:49 +12554793,Swift versus Java: the bitset performance test,http://lemire.me/blog/2016/09/22/swift-versus-java-the-bitset-performance-test/,2,2,deafcalculus,9/22/2016 6:13 +11425628,Building a network capture probe with Raspberry Pi,https://enterprise.cloudshark.org/blog/2016-03-31-packet-capture-raspberry-pi/,17,4,jonbaer,4/4/2016 21:01 +10914359,Japan: Tardigrade reproduces after 30 years on ice,http://www.bbc.com/news/blogs-news-from-elsewhere-35323237,177,29,tsutomun,1/16/2016 5:17 +10984755,Aereo Founder Is Back with New High-Speed Wireless Service,http://www.wsj.com/articles/aereo-founder-is-back-with-new-high-speed-wireless-service-1453934995,68,27,e15ctr0n,1/28/2016 0:20 +12096196,An open letter from technology sector leaders on Donald Trumps candidacy,https://medium.com/@KatieS/an-open-letter-from-technology-sector-leaders-on-donald-trumps-candidacy-for-president-5bf734c159e4#.7cujhy9s7,20,5,pepsi,7/14/2016 18:29 +11562003,PayPal suffering from a MAJOR subscription processing bug,https://twitter.com/ArtBellCom/status/722878807934414848,2,2,cpncrunch,4/25/2016 0:50 +12311218,F# for Fun and Profit,https://www.gitbook.com/book/swlaschin/fsharpforfunandprofit/details,258,30,rajadigopula,8/18/2016 9:05 +11704107,US Equity crowdfunding is finally here: Steps to getting funded,http://venturebeat.com/2016/05/15/equity-crowdfunding-is-finally-here-10-steps-to-getting-funded/,83,30,walterbell,5/16/2016 3:45 +10739543,Scientists may have solved a mystery about sea-level rise,https://www.washingtonpost.com/news/energy-environment/wp/2015/12/11/scientists-may-have-just-solved-one-of-the-most-troubling-mysteries-about-sea-level-rise/,78,69,Mz,12/15/2015 18:41 +11223691,Amazon confirms it has dropped device encryption support for its Fire Tablets,http://techcrunch.com/2016/03/04/amazon-confirms-it-has-dropped-device-encryption-for-its-fire-tablets/,172,48,dineshp2,3/4/2016 13:59 +10919103,Immutable-Props Simple Immutable.js PropTypes for React,https://github.com/contra/immutable-props,3,1,contrahax,1/17/2016 10:58 +11609192,Hulu Bets on New Cable Style Streaming Service,http://www.wsj.com/articles/hulu-is-developing-a-cable-style-online-tv-service-1462150982,2,1,jboydyhacker,5/2/2016 4:26 +12025210,All the Worlds Immigration Visualized in 1 Map,http://metrocosm.com/global-immigration-map/,7,1,ungerik,7/3/2016 8:11 +10309441,"Using imagemagick, awk and kmeans to find dominant colors in images",http://javier.io/blog/en/2015/09/30/using-imagemagick-and-kmeans-to-find-dominant-colors-in-images.html,93,34,rubikscube,10/1/2015 5:43 +10246632,The Outer Solar System Beckons,http://www.theatlantic.com/science/archive/2015/09/the-outer-solar-system-beckons/406075/?single_page=true,31,5,curtis,9/20/2015 5:14 +11522899,A force of nature: an acoustic analysis of Freddie Mercurys voice,http://www.alphagalileo.org/ViewItem.aspx?ItemId=163213&CultureCode=en,2,1,marinabercea,4/18/2016 20:23 +12268781,Show HN: Bt 0-hassle BitTorrent for Java 8,https://github.com/atomashpolskiy/bt,8,3,atomashpolskiy,8/11/2016 15:05 +12497926,Announcing Envoy: C++ L7 proxy and communication bus,https://eng.lyft.com/announcing-envoy-c-l7-proxy-and-communication-bus-92520b6c8191#.fk8c6rbku,197,32,ryan_lane,9/14/2016 15:28 +10400688,Does Not Compute A new dev podcast from Spec,http://doesnotcompute.fm,4,1,paulstraw,10/16/2015 17:14 +11207012,Google gives the Play Developer Policy Center a makeover and updates its rules,http://techcrunch.com/2016/03/01/google-gives-its-play-developer-program-policy-center-a-makeover-and-updates-its-rules/,37,6,cft,3/1/2016 23:30 +11228709,Show HN: A tool that guides you through career decisions,https://80000hours.org/career-guide/decision-process/,6,6,BenjaminTodd,3/5/2016 6:59 +12294350,Go 1.7 is released,https://blog.golang.org/go1.7,545,132,techietim,8/15/2016 23:28 +11568641,Rllab framework for developing and evaluating reinforcement learning algorithms,https://github.com/rllab/rllab,8,2,dementrock,4/26/2016 0:54 +11300781,Jarvis: Personal Assistant in Python,https://pythonspot.com/personal-assistant-jarvis-in-python/,65,15,gitcommit,3/16/2016 21:22 +10237262,Bugzilla CVE-2015-4499: All Your Bugs Are Belong to Us,https://blog.perimeterx.com/bugzilla-cve-2015-4499/,123,35,Chris911,9/18/2015 2:47 +10624759,Where Is the Roommate Capital of the United States?,http://priceonomics.com/where-is-the-roommate-capital-of-the-united-states/,1,1,ryan_j_naughton,11/25/2015 1:11 +12083521,"By monopolizing rare-earth metals, China could dictate the future of high-tech",https://foreignpolicy.com/2016/07/12/decoder-rare-earth-market-tech-defense-clean-energy-china-trade/,1,1,Jerry2,7/13/2016 2:11 +11859744,"Ask HN: Misrepresented My Programming Ability in an Interview, Now What?",,1,1,orangepenguin,6/8/2016 3:14 +12280675,Bill Gates fund invests in Australian startup Atomo,http://www.bbc.com/news/world-australia-37008177,2,1,rusanu,8/13/2016 7:51 +10438763,"Ask HN: I have a business idea, what now?",,8,15,luksi,10/23/2015 14:28 +11095491,Setting iPhone time to 1/1/70 will brick your phone,http://www.wired.com/2016/02/dont-set-your-iphone-back-to-1970-no-matter-what/,12,2,cgtyoder,2/13/2016 20:16 +11735393,Libui: GUI library in C,https://github.com/andlabs/libui,373,182,avitex,5/20/2016 3:29 +11045369,"Microsoft, Nokia, and the burning platform",http://venturebeat.com/2016/02/05/microsoft-nokia-and-the-burning-platform-a-final-look-at-the-failed-windows-phone-alliance/,4,1,kernelv,2/5/2016 23:07 +10486055,Lawrence Lessig: Fixing the Republic (10/29/2015),https://www.youtube.com/watch?v=W1CdoDcAN5A,6,1,datashovel,11/1/2015 10:46 +11865767,OSH Park now supports native KiCad uploads,https://blog.oshpark.com/2016/06/08/native-kicad-uploads/,7,1,wicker,6/8/2016 21:22 +11838454,"To Beat the Blues, Visits Must Be Real, Not Virtual",http://www.wsj.com/articles/to-beat-the-blues-visits-must-be-real-not-virtual-1464899707,3,1,papapra,6/4/2016 22:27 +11968769,Ask HN: How can we disrupt Governments?,,8,11,steejk,6/24/2016 11:09 +12437315,Ask HN: How would you stay updated with all the engineering blogs?,,8,9,ksashikumar,9/6/2016 16:45 +10911160,Show HN: 1dollarthings.com an internet dollar store,http://www.1dollarthings.com,54,44,leeseibert,1/15/2016 18:39 +12409949,CNTK 1.7 Release Notes,https://github.com/Microsoft/CNTK/wiki/CNTK_1_7_Release_Notes,3,1,runesoerensen,9/2/2016 0:44 +10360232,Teaching Coding in Kenya,http://blog.charlied.xyz/teaching-coding-in-kenya/,21,10,cdepman,10/9/2015 14:33 +10592319,Lyft Burning Cash on the Way to $500M Round,http://techcrunch.com/2015/11/18/lyft-burning-cash-on-the-way-to-500-billion-round/,10,3,zhuxuefeng1994,11/19/2015 2:14 +11589226,Man failed for refusing to decrypt hard drives,http://www.bbc.co.uk/news/technology-36159146,7,1,ComputerGuru,4/28/2016 14:45 +11447664,Ask HN: What real-world apps are based on less popular disciplines of CS?,,63,22,acconrad,4/7/2016 14:47 +10849211,The Best Pieces of Advice for Entrepreneurs in 2015,http://firstround.com/review/the-30-best-pieces-of-advice-for-entrepreneurs-in-2015/,35,5,piyushmakhija,1/6/2016 7:53 +11419624,Ask HN: What was the first computer in your country?,,3,1,mapmeld,4/4/2016 5:31 +10966713,Painless communication for your listing's cleaning staff,http://www.getaircal.com,2,3,alessiosantocs,1/25/2016 12:08 +10903027,An assessment of US microbiome research,http://www.nature.com/articles/nmicrobiol201515,2,1,elsherbini,1/14/2016 17:56 +12266792,An overview of new featuers in Android 7.0 Nougat,http://www.thedroidsonroids.com/blog/android/whats-new-android-7-0-nougat/,4,1,DroidsOnRoids,8/11/2016 7:57 +10590561,Less than 24 hours on Udemy as an instructor and Im close to leaving,http://blog.nickjanetakis.com/post/133482093993/less-than-24-hours-on-udemy-as-an-instructor-and,4,2,nickjj,11/18/2015 20:35 +12158037,Ask HN: I think I'm being stalked by a hacker. What should I do?,,16,8,leavemealone,7/25/2016 12:01 +10283156,Manhattan Resident Develops iPhone App to Track Homeless People,http://www.forbes.com/sites/michaelthomsen/2015/09/26/manhattan-resident-develops-iphone-app-to-track-homeless-people/,3,1,jsnathan,9/26/2015 14:20 +11206543,Alan Turings Little-Known Contributions to Biology,https://www.brainpickings.org/2016/03/01/alan-turing-morphogenesis-diagrams,2,1,antineutrino,3/1/2016 22:14 +12180301,Python Internals: PyObject,http://www.gahcep.com/python-internals-pyobject/,169,31,kercker,7/28/2016 14:15 +10209693,The Terror and Tedium of Living Like Thoreau,http://www.theatlantic.com/politics/archive/2015/09/the-terror-and-tedium-of-living-like-thoreau/402358/?single_page=true,63,45,myth_drannon,9/12/2015 23:04 +10231250,"Google Glass renamed to Project Aura, hires from Amazon",http://blogs.wsj.com/digits/2015/09/16/google-glass-gets-a-new-name-and-hires-from-amazon/,84,44,T-A,9/17/2015 2:30 +11589652,Ask HN: Sell service with fixed price or take the lions share,,3,1,ciokan,4/28/2016 15:37 +12532696,Building a Modern Bank Backend,https://monzo.com/blog/2016/09/19/building-a-modern-bank-backend/,11,1,obeattie,9/19/2016 16:37 +10810017,SQL Hegemony a sad state of affairs,http://slott-softwarearchitect.blogspot.com/2015/12/sql-hegemony-sad-state-of-affairs.html,1,1,jaimebuelta,12/30/2015 0:25 +12286775,(Russia) FSB approved the procedure for obtaining the encryption keys,https://translate.google.com/translate?sl=ru&tl=en&js=y&prev=_t&hl=ru&ie=UTF-8&u=https%3A%2F%2Fgeektimes.ru%2Fpost%2F279434%2F&edit-text=,3,1,out_of_protocol,8/14/2016 18:52 +12112235,How a Technical Co-Founder Spends His Time: Minute-By-minute Data for a Year,http://jdlm.info/articles/2016/07/04/cto-time-minute-by-minute.html?r=1,2,2,jdleesmiller,7/17/2016 22:38 +12259089,My Setup for Using Emacs as Web Browser,http://beatofthegeek.com/2014/02/my-setup-for-using-emacs-as-web-browser.html,5,1,sabya,8/10/2016 2:15 +10582647,The Primer Guide to Amiga Gaming (2012),http://www.racketboy.com/forum/viewtopic.php?f=52&t=36399&sid=6fa39e490469ec16b31bf3c47c3acffd,13,5,erickhill,11/17/2015 17:34 +10730863,TakaraKeyframer,https://github.com/rokyed/takaraKeyframer,3,1,rokyed,12/14/2015 13:33 +11742096,Emoji: how do you render U+1F355?,http://meowni.ca/posts/emoji-emoji-emoji/,92,36,holman,5/20/2016 22:39 +12270448,Greenland shark found to be at least 272 years old,http://www.nature.com/news/near-blind-shark-is-world-s-longest-lived-vertebrate-1.20406,151,25,okket,8/11/2016 18:11 +10178254,The Sound of Cracking: The Crisis of Man of the American Mid-Century,http://www.lrb.co.uk/v37/n16/pankaj-mishra/the-sound-of-cracking,1,1,Thevet,9/6/2015 17:15 +12562258,Backbone ? React: its a people problem after all,https://swizec.com/blog/backbone-%E2%86%92-react-its-a-people-problem-after-all-%F0%9F%98%91/swizec/7049,4,2,kungfudoi,9/23/2016 4:13 +10534251,Practical Type Inference Based on Success Typings (2006) [pdf],http://www.it.uu.se/research/group/hipe/papers/succ_types.pdf,18,3,madflame991,11/9/2015 17:12 +11059861,Ask HN: Why is Tesla stock down so much?,,1,2,halotrope,2/8/2016 18:21 +11405582,Announcing Chrome Chromebooks,https://www.google.com/chromebook/chrome-chromebook/,6,3,darkpicnic,4/1/2016 15:36 +10534729,Its time to stop asking creatives to work for free,http://qz.com/543643/its-time-to-stop-asking-creatives-to-work-for-free/,16,1,gjoshevski,11/9/2015 18:20 +11471280,"TRACEMAIL: Visualize the path of your emails, and know who else might read them",https://tracemail.eu/,3,1,YF,4/11/2016 13:27 +11800750,Show HN: Analysing Obama Speeches Since 2004,https://medium.com/p/analysing-obama-speeches-since-2004-7f08797f7078,9,1,eon01,5/30/2016 11:20 +10183812,"Steve Wozniak On Education, Engineering and Apple",http://www.i-programmer.info/news/99-professional/8963-steve-wozniak-on-education-engineering-a-apple.html,31,14,arcanus,9/8/2015 1:38 +11627928,A good tool for technical documentation?,,5,2,playing_colours,5/4/2016 12:50 +10879821,"An SMS Center with Python, Kannel and a GSM Modem",https://medium.com/@iMitwe/build-an-sms-center-with-python-kannel-and-a-gsm-modem-9c0d29560d82,121,33,babayega2,1/11/2016 9:41 +10921233,"Suddenly, Microsoft says you can't use Windows 7 and 8.1 on your new PC Idiots",http://www.computerworld.com/article/3023533/microsoft-windows/microsoft-support-windows-10-new-hardware-itbwcw.html,7,3,workerIbe,1/17/2016 21:45 +12128408,Ask HN: How do I impress my wealthy and powerful new boss?,,2,5,rickyrecon,7/20/2016 12:21 +10715871,The First Language You Learn Changes How You Hear All Other Languages After,http://www.fastcoexist.com/3054304/the-first-language-you-learn-changes-how-you-hear-all-other-languages-after?partner=socialflow,1,1,walterbell,12/11/2015 7:28 +10519883,Slack's glitch page,https://slack.com/services/export/download,1,1,adnanh,11/6/2015 15:25 +11935572,Ask HN: Is anyone developing a HTML5/JS offline version of FreeMind?,,5,2,rodolphoarruda,6/20/2016 1:15 +12282229,Ask HN: Which tools are ubiquitous but badly in need of a redesign/reboot?,,5,8,oliv__,8/13/2016 17:24 +10310285,The Cost of Mobile Ads on 50 News Websites,http://www.nytimes.com/interactive/2015/10/01/business/cost-of-mobile-ads.html?hp&action=click&pgtype=Homepage&module=photo-spot-region®ion=top-news&WT.nav=top-news&_r=0,4,1,mrkd,10/1/2015 10:46 +10445576,Security interns find 6 bugs in Oracle ERP in under a day,http://m.channelweb.co.uk/crn-uk/news/2431773/security-researcher-has-last-laugh-over-oracle,4,3,gregmac,10/25/2015 1:27 +11693254,How does an obvious scam like this get greenlit?,https://www.kickstarter.com/projects/datagatekeeper/datagatekeeper-the-first-impenetrable-anti-hacking/description,4,2,reiichiroh,5/13/2016 21:10 +12494108,Meet the 22-year-olds tackling our plastic waste,https://www.greenbiz.com/article/meet-20-year-olds-solving-plastic-waste-problem,3,1,xbmcuser,9/14/2016 3:40 +10408288,Ask HN: Long daily commutes How do you spend your time?,,2,1,yyyuuu,10/18/2015 14:22 +11768417,Ask HN: A guide for front end developers beyond online learning. Thoughts?,,7,5,mattedigital,5/25/2016 8:27 +11001779,France to build 1000 km of roads with solar panels,http://www.solarcrunch.org/2016/01/france-to-build-1000-km-of-road-with.html,72,65,gipkot,1/30/2016 13:52 +10319465,The general public has no idea what statistically significant means,http://alexanderetz.com/2015/08/03/the-general-public-has-no-idea-what-statistically-significant-means/,1,1,plg,10/2/2015 16:21 +11626480,Collapsable Comment Threads,,3,2,paavokoya,5/4/2016 5:46 +12214226,Facebook could owe $5B in back taxes,https://www.washingtonpost.com/news/the-switch/wp/2016/07/29/facebook-could-owe-5-billion-in-back-taxes/,128,91,blawson,8/2/2016 23:26 +11303912,Incredible superspeed space engine could power humans to Mars in just SIX WEEKS,http://www.mirror.co.uk/tech/russia-planning-beat-america-race-7573710,2,2,neverminder,3/17/2016 12:28 +12273543,Show HN: Technical blogpost search engine and tech event map,https://news.garage-coding.com/,2,2,wsdookadr,8/12/2016 5:28 +10404182,Why Did Facebook Pick OCaml to Build Hack and Flow,http://stackoverflow.com/a/27075306,3,1,pmarin,10/17/2015 12:15 +12308017,Show HN: First Tutorial Published Request for Feedback,,2,1,myappincome,8/17/2016 20:12 +10255154,Show HN: Word game I made up in High School,,3,3,cm2012,9/21/2015 21:08 +11307650,Can we save the open web?,http://buytaert.net/can-we-save-the-open-web,5,1,gmays,3/17/2016 21:12 +10901054,Imba: A new programming language for web apps,http://imba.io/?,206,128,judofyr,1/14/2016 12:57 +11105134,Ageism in the software industry: is it even rational?,https://medium.com/@hovm/ageism-in-the-software-industry-is-it-even-rational-ee6c10395800,5,3,mojuba,2/15/2016 18:50 +12320526,"Canadian Comedian Fined $42,000 for Telling a Joke",http://heatst.com/culture-wars/comedian-fined-42000-for-telling-a-joke/,34,68,Jerry2,8/19/2016 15:06 +11402891,Upcoming Let's Encrypt intermediate changes,https://community.letsencrypt.org/t/upcoming-intermediate-changes/13106,1,1,StanAngeloff,4/1/2016 5:39 +10870444,11 powerful graphics will make you realize how incredibly short life is,http://www.businessinsider.com/these-graphics-will-make-you-rethink-your-life-2016-1?IR=T&r=US&IR=T,1,2,adil_b,1/9/2016 7:29 +11829372,Best 2016 iOS Learning Resources,https://bugfender.com/best-ios-learning-resources,1,3,aleixventa,6/3/2016 10:19 +11273092,Hard Problems The Road to the World's Toughest Math Contest (2006) [video],https://www.youtube.com/watch?v=XvroykxedDw,43,3,jimsojim,3/12/2016 15:02 +11414079,High-Profile U.S. Hacker Deflects Attack on His Site by Redirecting It to Mossad,http://www.haaretz.com/israel-news/.premium-1.712308,3,1,acbilimoria,4/2/2016 23:24 +10933288,Tell HN: Please don't add noise to the conversation,,71,32,vecter,1/19/2016 19:33 +10290236,The KGBs success identifying CIA agents in the field,http://www.salon.com/2015/09/26/how_to_explain_the_kgbs_amazing_success_identifying_cia_agents_in_the_field/,199,55,cpete,9/28/2015 13:11 +12265866,Ask HN: Specialist vs. All-Rounder?,,10,4,franco456,8/11/2016 1:45 +10378759,Apple Is Said to Deactivate Its News App in China,http://www.nytimes.com/2015/10/12/technology/apple-is-said-to-deactivate-its-news-app-in-china.html,40,22,JayXon,10/13/2015 5:58 +12158822,"America's gun problem, explained",http://www.vox.com/2015/10/3/9444417/gun-violence-united-states-america,1,1,t0rst,7/25/2016 14:19 +12296798,"Snowden: Hack of an NSA server is not unprecedented, publication of the take is",https://twitter.com/Snowden/status/765513662597623808,387,229,ajdlinux,8/16/2016 11:54 +10682491,Avoiding Reflection (And Such) in Go,http://www.jerf.org/iri/post/2945,116,36,ngrilly,12/5/2015 17:09 +10776019,Factorizer,http://www.datapointed.net/visualizations/math/factorization/animated-diagrams/,97,30,espeed,12/22/2015 5:29 +12165263,Amazon Prime launches in India,https://www.amazon.in/gp/prime/pipeline/landing?,3,1,yarapavan,7/26/2016 12:59 +12002648,Show HN: Hacker News has been cloned,http://nackerhews.com/news,4,1,malleablebyte,6/29/2016 16:17 +10439109,High-Level Specifications: Lessons from Industry (2003) [pdf],http://research.microsoft.com/en-us/um/people/lamport/pubs/high-level.pdf,10,1,pron,10/23/2015 15:17 +12513203,"The advantages of static typing, simply stated",http://pchiusano.github.io/2016-09-15/static-vs-dynamic.html,69,120,ingve,9/16/2016 11:16 +11109193,Sponsored Links in (Delicious) RSS Feeds,http://blog.delicious.com/2016/02/sponsored-links-in-rss-feeds/,1,1,AndrewDucker,2/16/2016 11:36 +10676069,How to Ethically Modify the DNA of Humans,http://motherboard.vice.com/read/how-to-ethically-modify-the-dna-of-humans,1,1,sageabilly,12/4/2015 13:07 +11879512,Why we made a computer game about the federal budget,http://www.brookings.edu/blogs/up-front/posts/2016/04/26-why-we-made-a-computer-game-about-the-federal-budget-wessel,1,1,nickysielicki,6/10/2016 19:56 +10669485,Three-quarters of women suffer from stress-related anxiety,http://www.telegraph.co.uk/women/work/generation-burnout-three-quarters-of-women-suffer-from-stress-re/,6,1,randomname2,12/3/2015 13:45 +11741574,Uber knows exactly when you'll pay more for surge pricing,http://slashdot.org/story/311465,1,2,TheBiv,5/20/2016 21:14 +10399132,The Deployment Age,http://reactionwheel.net/2015/10/the-deployment-age.html,62,3,falicon,10/16/2015 13:37 +12521311,Raspberry Pi Launches Starter Kit,https://techcrunch.com/2016/09/09/raspberry-pi-finally-offers-an-official-starter-kit-after-passing-10m-sales/,1,2,hellwd,9/17/2016 17:06 +12457786,The OPM Data Breach [pdf],https://oversight.house.gov/wp-content/uploads/2016/09/The-OPM-Data-Breach-How-the-Government-Jeopardized-Our-National-Security-for-More-than-a-Generation.pdf,162,120,daveloyall,9/8/2016 22:05 +12264063,Show HN: Daily executive summary of your Slack channels,http://enterprise.brighty.io/,49,29,nagrom42,8/10/2016 19:03 +10656366,This Email Subscription Will Make You Smarter,http://www.purewow.com/tech/Highbrow-emails-will-make-you-smarter,1,1,gohighbrow,12/1/2015 16:04 +10519142,Sleep() is Poorly Design,http://blogs.msmvps.com/peterritchie/2007/04/26/thread-sleep-is-a-sign-of-a-poorly-designed-program/,3,2,borcunozkablan,11/6/2015 12:44 +10461526,CISA passes Senate,https://www.eff.org/deeplinks/2015/10/eff-disappointed-cisa-passes-senate,281,73,heimatau,10/27/2015 22:08 +11493909,Stockfish open source chess engine,https://stockfishchess.org/,8,1,uriva,4/14/2016 2:22 +11917937,Zombies Must Be Dualists: Zombies and Our Philosophy of Mind,http://nautil.us/issue/37/currents/zombies-must-be-dualists,19,26,dnetesn,6/16/2016 18:25 +11785822,Making the Grades,https://www.buzzfeed.com/mollyhensleyclancy/inside-the-school-that-abolished-the-f-and-raked-in-the-cash,39,12,didntlogin,5/27/2016 13:25 +12123883,AWS increased error rates / intermittent outages,,100,49,needcaffeine,7/19/2016 18:51 +10278804,The Python Paradox,,2,3,CaiGengYang,9/25/2015 15:49 +11011081,Designing and building Bitdefender BOX,https://medium.com/@danberte/how-we-designed-great-hardware-outside-silicon-valley-72dbbe4c6da5,24,6,restalis,2/1/2016 11:16 +11831101,\in,https://gowers.wordpress.com/2016/06/02/6172/,1,1,Smaug123,6/3/2016 16:03 +10302115,"Brazilian Sikur Launches GranitePhone, a BlackPhone Competitor",http://granitephone.com/,18,8,Tepix,9/30/2015 6:20 +12329956,Does music really help you concentrate?,https://www.theguardian.com/education/2016/aug/20/does-music-really-help-you-concentrate,4,2,eagerToLearn,8/21/2016 8:11 +12516360,A coupon/deals site built using Roda gem for Ruby,http://www.getbeststuff.com,1,1,bishala,9/16/2016 18:52 +11223216,"Ask HN: Advice needed on our startup, a professional tax preparation marketplace",,2,3,tsestrich,3/4/2016 12:05 +11547302,Ask HN: What good CIs are there for private Git repos?,,3,3,agnivade,4/22/2016 5:53 +10910440,Seahawks lineman Russell Okung responds to PG's essay on economic inequality,http://www.geekwire.com/2016/seahawks-lineman-russell-okung-responds-paul-grahams-essay-inequality-startups/,43,2,twampss,1/15/2016 16:52 +10888925,Roman Plumbing: Overrated,http://www.theatlantic.com/health/archive/2016/01/ancient-roman-toilets-gross/423072/?single_page=true,18,8,diodorus,1/12/2016 17:47 +11390110,Ask HN: Are you into any kind of physical activity?,,1,1,GmeSalazar,3/30/2016 15:44 +10202481,Knowm.org Intelligent Machine Technology,http://news.ezii.de/posts/Agj2SxD8v2B3B46gp/knowm-org-intelligent-machine-technology,1,1,mkorfmann,9/11/2015 7:54 +10899013,Trump quietly builds a data juggernaut,http://www.politico.com/story/2016/01/trump-builds-data-juggernaut-217391,2,1,danielam,1/14/2016 1:26 +11055267,Living with and building for the Amazon Echo,https://medium.com/@sicross/living-with-and-building-for-the-amazon-echo-525caea9f280#.fzbce5e7h,85,67,edward,2/7/2016 22:32 +10803996,Google Glass Enterprise Edition passes through the FCC with improved hardware,http://www.androidauthority.com/google-glass-enterprise-edition-passes-through-fcc-664698/,57,26,jonbaer,12/28/2015 23:07 +11458781,Apply HN: AJ's American Garage The Ghost Door (Device),,1,5,ajsgarage,4/8/2016 22:59 +12502089,Silicon Valleys Secrets Are Hiding in Marc Andreessens Library,https://www.wired.com/2016/09/marc-andreessens-book-collection-explains-silicon-valley/?,1,1,srunni,9/14/2016 23:26 +11517856,How I defeated an anti-tamper APK with some Python and a homemade Smali emulator,http://www.evilsocket.net/2016/04/18/how-i-defeated-an-obfuscated-and-anti-tamper-apk-with-some-python-and-a-home-made-smali-emulator/#.VxRu3snMomQ.hackernews,147,75,evilsocket,4/18/2016 5:22 +10835112,Please help need advice. What should I do? Feeling very depressed.,,6,5,swcoders,1/4/2016 12:07 +10943469,Working Hard but reaching nowhere How should I work hard?,,4,8,sidcool,1/21/2016 5:06 +11559932,A recipe for global cooling: put seafloor on dry land near the equator,http://arstechnica.com/science/2016/04/a-recipe-for-global-cooling-put-seafloor-on-dry-land-near-the-equator/,58,16,shawndumas,4/24/2016 15:20 +10619274,"Netfox: A lightweight, one line setup, iOS network debugging library",https://github.com/kasketis/netfox,31,5,flyicarus,11/24/2015 5:29 +12271503,"Im deleting Snapchat, and you should too",https://medium.com/@katie/im-deleting-snapchat-and-you-should-too-98569b2609e4,4,2,thevibesman,8/11/2016 21:00 +11082354,"Swirl: Learn R, in R",http://swirlstats.com/,111,20,Tomte,2/11/2016 19:14 +11050576,"Show HN: TrackMyGas, Android app to track gas consumption",https://play.google.com/store/apps/details?id=thecodex.trackmygas,1,1,gusmd,2/6/2016 23:30 +12504846,OCaml for the Skeptical,http://www2.lib.uchicago.edu/keith/ocaml-class/,3,1,jasim,9/15/2016 10:46 +11336250,Distributed: A New OS for the Digital Economy Douglas Rushkoff SXSW 2016,https://www.youtube.com/watch?v=DQKQKCe1xl0,2,1,hudon,3/22/2016 13:09 +10354127,Volkswagen's U.S. head: individuals engineered emissions cheating,http://www.reuters.com/article/2015/10/08/volkswagen-emissions-congress-update-1-p-idUSL1N1281B720151008,206,249,m_haggar,10/8/2015 17:09 +11564987,Apple took 40% of all profits in Silicon Valley last year,http://9to5mac.com/2016/04/25/apple-continues-to-dominate-tech-companies-financially-took-40-of-all-profits-in-silicon-valley-last-year/,3,1,davidbarker,4/25/2016 15:48 +10237195,The sad state of web app deployment,http://eev.ee/blog/2015/09/17/the-sad-state-of-web-app-deployment/,267,160,cespare,9/18/2015 2:15 +11087813,Why is the US standard 60Hz?,http://www.allaboutcircuits.com/news/why-is-the-us-standard-60-hz/,4,1,elijahparker,2/12/2016 15:28 +10933850,FBI Says It Can't Find Hackers That Don't Smoke Pot,http://motherboard.vice.com/read/the-fbi-cant-find-hackers-that-dont-smoke-pot,6,1,stickfigure,1/19/2016 20:43 +11061232,Apple VR Headset,http://www.apple.com/shop/product/HJKB2LL/A/view-master-virtual-reality-starter-pack,3,2,kujjwal,2/8/2016 22:07 +11112124,IBM Launches New Mainframe with Focus on Security and Hybrid Cloud,http://techcrunch.com/2016/02/15/ibm-launches-new-mainframe-with-focus-on-security-and-hybrid-cloud/,40,21,protomyth,2/16/2016 18:45 +11939689,Power plants that convert all of their CO2 emissions into carbon nanotubes,http://phys.org/news/2016-06-power-co2-emissions-carbon-nanotubes.html,129,83,dnetesn,6/20/2016 17:46 +10663690,Why parenting may not matter and most social science reseach is probably wrong,http://quillette.com/2015/12/01/why-parenting-may-not-matter-and-why-most-social-science-research-is-probably-wrong/,25,2,randomname2,12/2/2015 15:58 +11044680,"Xiaoice, a chatbot that may be the largest Turing test in history",http://nautil.us/issue/33/attraction/your-next-new-best-friend-might-be-a-robot,125,44,jonbaer,2/5/2016 21:15 +11340344,Potential Response to Oracles Anti-PostgreSQL FUD Letter in Russia,http://ded.ninja/dear_oracle/dear_oracle02.jpg,3,5,justinclift,3/22/2016 22:12 +11194080,Klangmeister: Music live coding environment for the browser,http://ctford.github.io/klangmeister/,140,12,subbz,2/29/2016 7:29 +11928540,An Introduction to Mocking in Python,http://slviki.com/index.php/2016/06/18/introduction-to-mocking-in-python/,1,1,wampler,6/18/2016 13:39 +11878663,The Art of Monitoring,https://www.artofmonitoring.com/,210,62,manojlds,6/10/2016 18:23 +10527738,Show HN: Silicon Valley inspired SWOT board,https://github.com/alexgreene/swotboard,5,2,alex_g,11/8/2015 6:16 +11387384,Ask HN: Which personal investing tools do you use?,,89,36,umitakcn,3/30/2016 6:44 +11578552,Ask HN: What are the most promising/interesting new programming languages?,,23,21,baccheion,4/27/2016 7:55 +11882832,The Japanese art of not sleeping,http://www.bbc.com/future/story/20160506-the-japanese-art-of-not-sleeping,182,101,r721,6/11/2016 9:41 +10513294,Is This Crazy Rumor the Platonic Ideal of the Mens-Rights Internet?,http://nymag.com/following/2015/11/this-the-perfect-insane-anti-feminist-rumor.html,12,8,smacktoward,11/5/2015 13:59 +11851234,Introduction to Metaprogramming in Nim,http://hookrace.net/blog/introduction-to-metaprogramming-in-nim/,100,11,vbit,6/6/2016 23:08 +12137060,What's new in PyCharm 2016.2,https://www.jetbrains.com/pycharm/whatsnew/,5,1,sashk,7/21/2016 14:28 +12071613,"Show HN: StaticJSON: fast, direct and static typed parsing of JSON with C++",https://github.com/netheril96/StaticJSON,18,2,netheril96,7/11/2016 15:16 +11817469,The Genetic Tool That Will Modify Humanity,http://www.bloomberg.com/news/articles/2016-06-01/the-genetic-tool-that-will-modify-humanity,2,2,Practicality,6/1/2016 19:37 +10864411,Show HN: Theme.cards explore the best templates and themes,http://theme.cards,6,1,wdstash,1/8/2016 12:35 +11077876,Why Apple doesnt sell televisions,http://www.cringely.com/2016/02/10/why-apple-doesnt-sell-televisions/,7,1,computator,2/11/2016 2:33 +12563337,Show HN: Fliffr Mobile Advice Marketplace,https://www.fliffr.com/,2,1,danieka,9/23/2016 9:27 +11935773,What the DAO Attack Means in the Netherlands,http://www.bitcoinwednesday.com/what-the-dao-attack-means-in-the-netherlands/,2,1,generalseven,6/20/2016 2:34 +10322513,The Future of the Internet Is Flow,http://www.wsj.com/articles/the-future-of-the-internet-is-flow-1443796858,36,10,T-A,10/3/2015 3:48 +11719675,Razmnamah: the Persian Mahabharata,http://britishlibrary.typepad.co.uk/asian-and-african/2016/04/razmnamah-the-persian-mahabharata.html,49,1,lermontov,5/18/2016 4:11 +11018869,USB-Dongle Authentication List,http://www.dongleauth.info/,52,19,nikolay,2/2/2016 11:44 +11695554,Hooray Google Services are not forbidden in Iran,,3,1,bijbij,5/14/2016 11:04 +11371193,Ask HN: How is it to work in Visual Effects industry as a developer?,,36,13,aprdm,3/27/2016 19:43 +11473426,Apply HN: ThinkSquare Let AI help you find your next job,,13,8,thinksquare,4/11/2016 17:30 +10626638,The Ghost of Statistics Past,http://crypto.stanford.edu/~blynn/pr/ghost.html,51,18,jimsojim,11/25/2015 11:26 +10768859,How I taught myself electronics,http://www.burakkanber.com/blog/how-i-taught-myself-electronics/,4,5,bkanber,12/21/2015 0:03 +11535303,Show HN: Scaling NPM in VMs with Npmserve,https://blog.plaid.com/npmserve/,49,6,whockey,4/20/2016 15:51 +11068593,German Train Crash Leaves 10 Dead and Scores Injured,http://www.nytimes.com/2016/02/10/world/europe/germany-train-collision.html,1,1,dtparr,2/9/2016 20:43 +10536349,"Cooking with vegetable oils releases toxic cancer-causing chemicals, say experts",http://www.telegraph.co.uk/news/health/news/11981884/Cooking-with-vegetable-oils-releases-toxic-cancer-causing-chemicals-say-experts.html,13,1,randomname2,11/9/2015 22:36 +12096208,Fetch Lead enrichment bot for Slack,http://fetch.amplemarket.com,39,12,mosca,7/14/2016 18:30 +11890490,Why AI will break capitalism,https://medium.com/@HenryInnis/why-ai-will-break-capitalism-14a6ad2f76da#.a0fk31nab,10,13,doener,6/12/2016 21:59 +11502589,TypeScript 2.0 Preview,http://www.infoq.com/news/2016/04/typescript-2-preview,4,1,vgallur,4/15/2016 6:31 +11028968,Bose's new beat,http://www.cnet.com/news/bose-behind-the-scenes/,57,72,zwrose,2/3/2016 19:27 +11095570,"US economic system unfair, say most Americans",http://www.pewresearch.org/fact-tank/2016/02/10/most-americans-say-u-s-economic-system-is-unfair-but-high-income-republicans-disagree/,9,3,msvan,2/13/2016 20:37 +12369402,"How I sold my company to Twitter, in spite of my own stupidity",https://medium.com/@joewaltman/how-i-sold-my-company-to-twitter-in-spite-of-my-own-stupidity-993cb9736d15,20,3,prostoalex,8/26/2016 21:21 +12171736,Inside Tesla's gigantic Gigafactory,http://www.bbc.co.uk/news/technology-36893104,201,94,jsingleton,7/27/2016 10:34 +12338365,Node.js is one of the worst things to happen to the software industry (2012),http://harmful.cat-v.org/software/node.js,624,552,behnamoh,8/22/2016 18:33 +11381683,Show HN: A Telegram bot to subscribe to Travis builds,https://telegram.me/travis_telegram_lambda_bot,2,1,crifei93,3/29/2016 14:30 +10997016,Reddit in 2016,https://www.reddit.com/r/announcements/comments/434h6c/reddit_in_2016/,82,119,cryptoz,1/29/2016 17:59 +11556429,Personal info of 93.4M Mexicans exposed on Amazon,http://www.databreaches.net/personal-info-of-93-4-million-mexicans-exposed-on-amazon/,4,1,doctorshady,4/23/2016 17:21 +12041296,Sharpest ever view of the Andromeda Galaxy (2015),https://www.spacetelescope.org/images/heic1502a/,274,97,david90,7/6/2016 4:58 +12565100,The Internet Archive Wayback Machine Is Down,https://web.archive.org/web/*/http://www.downforeveryoneorjustme.com,1,1,daveloyall,9/23/2016 15:00 +10996036,Physiological Ecology of Mesozoic Polar Forests in a High CO2 Environment,http://aob.oxfordjournals.org/content/89/3/329.full,1,1,avz,1/29/2016 16:16 +10815821,The Chad bug,https://plus.google.com/+MarcBevand/posts/fBfCsaXReH5,220,153,mrb,12/31/2015 2:44 +10874974,The Scope of Unsafe,https://www.ralfj.de/blog/2016/01/09/the-scope-of-unsafe.html,78,46,panic,1/10/2016 11:22 +10865226,"Facebook, Google, Microsoft Balk at UK's Investigatory Powers Bill",http://betanews.com/2016/01/07/facebook-google-microsoft-twitter-and-yahoo-balk-at-uks-investigatory-powers-bill/,2,1,chewymouse,1/8/2016 14:55 +10812785,Dolphin Emulator Wiimote can speak now,https://dolphin-emu.org/blog/2015/12/20/hey-listen-wiimoteaudio/,67,10,dEnigma,12/30/2015 16:36 +10916076,Show HN: One window shared by multiple NSDocument instances,https://github.com/gloubibou/BSMultipleDocumentsWindowController,24,1,gloubibou,1/16/2016 17:59 +12333479,GopherJS 1.7-1 is released,http://www.gopherjs.org/blog/2016/08/21/gopherjs-1.7-1-release/,62,11,shurcooL,8/22/2016 0:51 +11911834,Google says keywords in TLD part of your URL are ignored,http://searchengineland.com/google-says-keywords-tld-part-url-ignored-ranking-purposes-251971,1,2,bhartzer,6/15/2016 20:15 +12424299,Ask HN: Are you happier with your day to day life after starting to freelance?,,8,1,tsaprailis,9/4/2016 13:50 +11005337,Pewpew: Build Your Own IP Attack Maps with SOUND,https://github.com/hrbrmstr/pewpew,5,1,chris_wot,1/31/2016 5:19 +11920601,"Dancers and Diplomats: NYC Ballet in Moscow, October 1962 (2014)",http://theappendix.net/issues/2014/7/dancers-and-diplomats-new-york-city-ballet-in-moscow-october-1962,38,1,benbreen,6/17/2016 3:54 +12317556,In Defence of a No First Use Nuclear Doctrine,https://thedaleyreview.wordpress.com/2016/08/19/in-defence-of-a-no-first-use-nuclear-doctrine/,21,52,masteryupa_,8/19/2016 2:10 +12250483,Enough with the replication police,http://andrewgelman.com/2015/04/01/enough-replication-police/,1,1,conistonwater,8/8/2016 20:01 +12149993,Introducing Vulkan-Hpp Open-Source Vulkan C++ API,https://github.com/KhronosGroup/Vulkan-Hpp,130,70,gulpahum,7/23/2016 16:30 +10450514,Ask HN: What payment system do you use on your website?,,4,1,personjerry,10/26/2015 10:41 +11633312,"U.S. tech firms urge presidential candidates to embrace trade, high-tech visas",http://www.reuters.com/article/us-usa-election-technology-idUSKCN0XV2R1,5,2,daegloe,5/5/2016 1:26 +10391340,Show HN: Ramses API/backend generation platform,http://ramses.tech,13,1,chrstphrhrt,10/15/2015 4:27 +10666827,Shanghai HN Meetup,http://www.meetup.com/Shanghai-Hacker-News-Meetup/,2,1,barry-cotter,12/3/2015 0:04 +12033667,FBI/NSA got resources? Took me about 1h to recover my own passcode wiped iPhone,http://hacknload.com/post/146918166785,3,5,cusspvz,7/5/2016 0:03 +12501668,To the 4 white male policemen who beat me for checking the health of [detainee],https://medium.com/@aliafshar/to-the-4-white-male-policemen-who-beat-me-for-checking-the-health-of-a-sick-black-man-in-their-8d77789fb24d#.f4129orat,163,136,eternalban,9/14/2016 22:16 +10773849,Introduction to x64 Assembly (2011) [pdf],https://cs.nyu.edu/courses/fall11/CSCI-GA.2130-001/x64-intro.pdf,110,30,networked,12/21/2015 21:59 +11083462,What It Feels Like When Everyone Is Making Art but You,http://www.buzzfeed.com/jwray/surrounded-by-legends#.ccyDo8G41,31,5,tintinnabula,2/11/2016 21:36 +11077683,The Bitter Fight Over the Benefits of Bilingualism,http://www.theatlantic.com/science/archive/2016/02/the-battle-over-bilingualism/462114/?single_page=true,34,65,Thevet,2/11/2016 1:39 +11815907,The SalesForce Outage: A Nail In The Coffin For SaaS?,http://www.zerto.com/blog/dr/salesforce-outage-one-more-nail-in-the-coffin-of-i-can-trust-my-saas-provider/,74,65,gk1,6/1/2016 16:43 +12290097,Tiny Satellites: The Latest Innovation Hedge Funds Are Using to Get a Leg Up,http://www.wsj.com/articles/satellites-hedge-funds-eye-in-the-sky-1471207062,3,1,stefap2,8/15/2016 12:59 +10958908,Exploring Swift Dictionary's Implementation,http://ankit.im/swift/2016/01/20/exploring-swift-dictionary-implementation/,32,1,ingve,1/23/2016 16:44 +11518688,Statement on Lambdaconf 2016,https://statement-on-lambdaconf.github.io/,7,1,mrstorm,4/18/2016 9:39 +12515101,Uber's billion-dollar losses expose the fragile state of the on-demand economy,http://qz.com/782916/ubers-billion-dollar-losses-expose-the-fragile-state-of-the-on-demand-economy/,160,215,prostoalex,9/16/2016 16:23 +10280584,Making a toy shark fly using brain waves,http://spectrum.ieee.org/geek-life/hands-on/openbci-control-an-air-shark-with-your-mind,14,4,okfine,9/25/2015 20:47 +10730254,How a handful of geeks defied the USSR (2011),http://owni.fr/2011/03/13/how-a-handful-of-geeks-defied-the-ussr/,43,12,ffffruit,12/14/2015 10:16 +11007791,Is San Francisco the Brooklyn to Silicon Valley's Unbuilt Manhattan? (2013),http://www.theawl.com/2013/01/is-san-francisco-the-brooklyn-to-silicon-valleys-unbuilt-manhattan,3,1,rajathagasthya,1/31/2016 20:02 +12027218,"So Busy at Work, No Time to Do the Job",http://www.wsj.com/articles/so-busy-at-work-no-time-to-do-the-job-1467130588,3,3,jasoncartwright,7/3/2016 19:10 +12479357,Two held for brutal attacks on Uber passengers,http://www.iol.co.za/news/crime-courts/two-held-for-brutal-attacks-on-uber-passengers-2066912,2,1,buyx,9/12/2016 13:14 +12491592,What insights can an LCD display give us about time's arrow?,https://www.quantamagazine.org/20160913-the-physics-of-time-puzzle/,54,8,retupmoc01,9/13/2016 19:46 +10532957,TensorFlow: open-source library for machine intelligence,http://tensorflow.org/,1559,196,jmomarty,11/9/2015 13:50 +12396621,Life on the Infinite Farm [pdf],https://www.math.brown.edu/~res/farm.pdf,105,12,polm23,8/31/2016 7:42 +12357198,Here's a C# and HTML5 powered remote desktop and monitor suite. Fully open source,https://ulterius.xyz/?q=23,5,4,lindstorm,8/25/2016 6:07 +10418860,Googles growing problem: 50% of people do zero searches per day on mobile,https://theoverspill.wordpress.com/2015/10/19/searches-average-mobile-google-problem/,270,237,adidash,10/20/2015 13:04 +11156311,Why I don't want stuff,https://sivers.org/gifts,339,321,wallflower,2/23/2016 3:35 +10330303,A Ridiculously large accurate scale model of the Solar System,http://joshworth.com/dev/pixelspace/pixelspace_solarsystem.html,2,1,learnaholic,10/5/2015 7:07 +10536881,The simplest designs are usually the best,http://distributedbytes.timojo.com/2015/03/the-simplest-designs-are-usually-best.html,11,3,timojo,11/10/2015 0:41 +10984345,iPhone users: Chrome for iOS will save your data,http://www.networkworld.com/article/3027126/ios/iphone-users-chrome-for-ios-will-save-your-data.html,1,1,stevep2007,1/27/2016 23:09 +11500441,"Show HN: gofeed, a robust RSS and Atom Parser for Go",https://github.com/mmcdole/gofeed,68,8,drakenot,4/14/2016 21:20 +11385346,Stanford scientists use abandoned drug to fight off viruses in a lab dish,http://news.stanford.edu/news/2016/march/antiviral-drug-insights-032816.html,1,1,fourstar,3/29/2016 22:11 +11351413,History API broken bad in iOS 9.3,https://forums.developer.apple.com/thread/36650,5,1,bowlingx,3/24/2016 8:57 +10745578,Show HN: Practice foreign languages with books (parallel translation and speech),http://paralleltext.io/,10,5,mstipetic,12/16/2015 17:04 +12153696,"We Are Already Zombies, We Aint Realising It",https://medium.dr4cun0.com/we-are-already-zombies-we-ain-t-realising-it-be7ca2633766#.7a9av1v5l,2,2,dhavalchauhan,7/24/2016 16:22 +10393250,Running Linux containers on an illumos kernel,http://www.slideshare.net/bcantrill/illumos-lx,23,3,AnbeSivam,10/15/2015 14:16 +11362945,Why you should be skeptical that any video is real,https://www.washingtonpost.com/news/innovations/wp/2016/03/23/why-you-should-be-skeptical-that-any-video-is-real/,1,2,livingparadox,3/25/2016 21:52 +11680753,"Designing a New Look for Instagram, Inspired by the Community",https://medium.com/@ianspalter/designing-a-new-look-for-instagram-inspired-by-the-community-84530eb355e3#.mkvy4x8ch,1,1,jklp,5/12/2016 1:37 +12435640,So I lost my NAS password,https://blog.filippo.io/so-i-lost-the-password-of-my-nas/,3,1,FiloSottile,9/6/2016 13:03 +11098790,The search engine that does not collect any personal information about you,https://dribper.com,6,3,vaggelisifa,2/14/2016 16:17 +11135964,Ask HN: Adding a red don't click me button on your website?,,5,5,going_to_800,2/19/2016 19:35 +10479266,Online JSON Editor,http://jsoneditor.com/,4,2,y1426i,10/30/2015 17:41 +11146032,Ask HN: Anyone into analog neural networks?,,3,1,amatic,2/21/2016 19:25 +11685925,"Uber, the Gig Economy, and Permissionless Creativity",https://medium.com/adventures-in-consumer-technology/uber-the-gig-economy-and-permissionless-creativity-e1357c8478fc#.ph2688fuq,1,1,jfilcik,5/12/2016 19:07 +10532303,VW engineers have admitted manipulating CO2 emissions data-paper,http://www.reuters.com/article/2015/11/08/volkswagen-emissions-idUSL8N1320KD20151108#FbBB3zEymfBBCWrs.97,33,56,happyscrappy,11/9/2015 10:55 +10356580,Britain's water crisis,http://www.theguardian.com/environment/2015/oct/08/are-we-killing-our-rivers,21,6,sasvari,10/8/2015 21:53 +10975625,How I became a code ninja,http://startupmyway.com/my-dev-story-part-2/,3,1,boboss,1/26/2016 20:07 +10416154,Stache Docs and Interactive Snippets for Slack,http://stached.io,2,1,harryward,10/19/2015 22:10 +11353482,Tech Co-founder,,1,5,turmoiljay,3/24/2016 15:21 +12232913,An Isolated Tribe Emerges from the Rain Forest,http://www.newyorker.com/magazine/2016/08/08/an-isolated-tribe-emerges-from-the-rain-forest?intcid=mod-most-popular,87,15,gk1,8/5/2016 15:13 +12023517,PostgreSQL: the bits you haven't found,https://postgres-bits.herokuapp.com,13,3,cel1ne,7/2/2016 19:19 +11188686,Show HN: Cracking passwords with a simple genetic algorithm,https://github.com/lyle-nel/siga,149,58,lyle_nel,2/27/2016 21:50 +10399905,Solid state batteries in your next vacuum?,http://qz.com/525623/vacuum-cleaner-maker-dyson-is-buying-experimental-battery-startup-sakti3/,1,1,greg7mdp,10/16/2015 15:22 +10237276,The False Science of Cryonics: What the nervous system of the roundworm tells us,http://www.technologyreview.com/view/541311/the-false-science-of-cryonics/,7,2,ClintEhrlich,9/18/2015 2:55 +10606672,Inside the CIA Red Cell,http://foreignpolicy.com/2015/10/30/inside-the-cia-red-cell-micah-zenko-red-team-intelligence/,1,1,sergeant3,11/21/2015 12:52 +12291529,"Startups, lets act: Make Nov 8 a Holiday",https://blog.amium.com/startups-lets-act-make-nov-8-a-holiday-529f1c63ab9c#.ef772eyxm,110,114,yurisagalov,8/15/2016 16:35 +11669337,100% part-time dev bootcamp opens to help working professionals switch careers,https://www.bloc.io/web-developer-career-track?utm_campaign=wdtlaunch&utm_source=Earned&utm_medium=Earned,20,1,endlessvoid94,5/10/2016 18:21 +11191001,Why Email does not stink,https://medium.com/@adrienjoly/why-email-does-not-stink-9267c948f3f9,1,1,testcross,2/28/2016 14:39 +11052625,Scientists Debate Signatures of Alien Life,https://www.quantamagazine.org/20160202-scientists-debate-signatures-of-alien-life/,70,31,elorant,2/7/2016 12:22 +10341333,Its Time for Microsoft to Reboot Office,http://www.wsj.com/articles/its-time-for-microsoft-to-reboot-office-1444155726,1,1,larrys,10/6/2015 18:45 +11376717,Flappy Bird Clone Code Injected into Super Mario World for SNES by Hand,https://www.youtube.com/watch?v=hB6eY73sLV0&feature=youtu.be&a,8,1,CameronBanga,3/28/2016 19:33 +12515724,Room 641A,https://en.wikipedia.org/wiki/Room_641A,206,75,mimsee,9/16/2016 17:33 +10315134,Orthographic Pedant: Bot that scans popular repositories for common typos,https://github.com/thoppe/orthographic-pedant,9,3,MichaelAza,10/1/2015 22:11 +11971954,The wisdom of smaller crowds,http://www.santafe.edu/news/item/Galesic-wisdom-smaller-crowds/,66,27,mazsa,6/24/2016 17:55 +10376334,Node v4.2.0 (Stable),https://nodejs.org/en/blog/release/v4.2.0/,98,43,kenOfYugen,10/12/2015 18:53 +11315277,Ask HN: Do you use Android's capability to connect devices via OTG?,,4,3,plugnburn,3/18/2016 21:31 +10949593,Hover test of [SpaceX] Dragon 2 spacecraft that can carry cargo and crew,https://vine.co/v/iepOLZvMBYz,1,1,teleclimber,1/21/2016 23:59 +11943486,"Ask HN: Quitting a job with a YC company after less than a year, mistake?",,2,2,ycjobquitter,6/21/2016 4:23 +11648176,The question we're all wondering about Pinboard,,7,8,santoshalper,5/7/2016 2:56 +10526017,"My name is only real enough to work at Facebook, not to use on the site",https://medium.com/@zip/my-name-is-only-real-enough-to-work-at-facebook-not-to-use-on-the-site-c37daf3f4b03,11,10,mxhold,11/7/2015 20:04 +11918511,"Show HN: A simple, visual way of debugging JavaScript",https://github.com/b44rd/jsbug/,12,1,b44rd,6/16/2016 20:04 +12441302,Show HN: sdees serverless decentralized editing of encrypted stuff,https://github.com/schollz/sdees,100,35,qrv3w,9/7/2016 6:37 +11649275,Tesla will not be able to scale its manufacturing capacity,http://www.bloomberg.com/view/articles/2016-05-06/tesla-needs-more-than-elon-musk,79,121,Osiris30,5/7/2016 12:08 +11725143,The Lingering Legacy of Psychedelia,http://www.newyorker.com/books/page-turner/the-lingering-legacy-of-psychedelia,51,11,samclemens,5/18/2016 19:39 +10840276,The Missing 11th of the Month,http://drhagen.com/blog/the-missing-11th-of-the-month/,4,2,btilly,1/5/2016 1:22 +12092983,Cloud9 Acquired by Amazon,https://c9.io/blog/great-news/,627,242,welder,7/14/2016 11:47 +10507447,Ask HN: do you need a responsive site if you also have Android and iOS apps?,,2,8,idibidiart,11/4/2015 16:00 +10641272,Honda Needs a Tune Up (2008),http://davidsd.org/2008/12/honda-needs-a-tune-up/,10,1,DanBC,11/28/2015 15:27 +11175289,Citizens Should Be Able to Vote on Laws Directly: Send Smith to D.C,https://rally.org/f/imjd3PynW84,1,1,bryondowd,2/25/2016 16:05 +10302437,PCloud Crypto Hacking Challenge Prove You Can Break Our Client-Side Encryption,https://www.pcloud.com/challenge/,1,1,flexie,9/30/2015 8:00 +11529305,EFF Sues for Court Orders Requiring Tech Cos to Decrypt Users Communications,https://www.eff.org/press/releases/eff-sues-secret-court-orders-requiring-tech-companies-decrypt-users-communications,102,11,sinak,4/19/2016 19:02 +12248383,The Absurd Things I Heard Through the Vents in My Prison Cell,https://www.themarshallproject.org/2016/08/04/the-absurd-things-i-heard-through-the-vents-in-my-prison-cell,2,1,danso,8/8/2016 15:13 +10482390,Dennis Ritchie Day,http://radar.oreilly.com/2011/10/dennis-ritchie-day.html,2,1,Garbage,10/31/2015 11:31 +11720403,Skype v7 supports regexp,,3,1,nergal,5/18/2016 7:51 +10500740,Why Denmark isnt the utopian fantasy Bernie Sanders describes,https://www.washingtonpost.com/news/wonk/wp/2015/11/03/why-denmark-isnt-the-utopian-fantasy-bernie-sanders-describes/?tid=article_nextstory,18,6,danielam,11/3/2015 16:49 +12030172,Show HN: OpenGL in super slow motion visualising Z-buffering,http://orbides.org/apps/superslow.html,276,38,Artlav,7/4/2016 11:55 +11462895,Zika Is Coming,http://www.nytimes.com/2016/04/09/opinion/zika-is-coming.html,25,33,aaronbrethorst,4/9/2016 19:36 +11789305,SpaceX's Falcon 9 first stage has landed (again),https://twitter.com/SpaceX/status/736313075385540608,112,39,Signez,5/27/2016 21:51 +12472849,The GNU Privacy Handbook (1999),https://www.gnupg.org/gph/en/manual/book1.html,90,15,wieczorek1990,9/11/2016 11:08 +10853444,OpenCompany by Steve Coast is hilarious capitalist cosplay (scroll down),https://www.kickstarter.com/projects/237731198/16841593?token=1f0d5da4,2,1,exolymph,1/6/2016 20:22 +10414582,A planning page for asteroids 2009 FD and 2015 TB145,http://echo.jpl.nasa.gov/asteroids/2009FD/2009FD_planning.html,36,17,intrasight,10/19/2015 18:16 +12481512,The Second Life of One Photographers Ad Images,http://www.nytimes.com/2016/09/08/t-magazine/art/gary-perweiler-ad-photos.html,16,1,prismatic,9/12/2016 17:09 +11504297,Ask HN: Why aren't the price of online services based on user location?,,5,3,erkanerol,4/15/2016 13:58 +11760828,"Chromebook SSH, how to go ahead with that?",,2,1,ankitvad,5/24/2016 12:04 +11816805,HN Now Indicates Dupes,https://news.ycombinator.com/item?id=11816664,2,1,nikolay,6/1/2016 18:15 +11885855,French kids know how to play,http://www.salon.com/2016/05/28/french_kids_know_how_to_play_american_parents_obsession_with_structured_playtime_is_stifling_our_kids/,49,50,bootload,6/11/2016 23:18 +11154060,Un-Apple: The Samsung Galaxy S7 announcement in one word,http://www.networkworld.com/article/3036302/mobile-wireless/un-apple-the-samsung-galaxy-s7-announcement-in-one-word.html,3,2,stevep2007,2/22/2016 20:33 +12309777,Grokking Deep Learning,https://iamtrask.github.io/2016/08/17/grokking-deep-learning/,530,112,williamtrask,8/18/2016 1:11 +10927600,Why Big Companies Keep Failing: The Stack Fallacy,http://techcrunch.com/2016/01/18/why-big-companies-keep-failing-the-stack-fallacy/,408,169,walterclifford,1/18/2016 22:50 +11174076,Swift Ported to Android,https://github.com/apple/swift/pull/1442,252,140,adamjernst,2/25/2016 12:59 +10771716,Meteorological winter aligns with December-January-February,http://nautil.us/blog/dont-believe-the-hype-winter-does-not-begin-tonight,21,15,dnetesn,12/21/2015 16:12 +10301243,Ask HN: How do you automate logging bugs in your product?,,33,22,_virtu,9/30/2015 1:51 +11148137,First iOS App released: app store review experience and app roadmap,http://captaindanko.blogspot.com/2015/09/first-ios-app-released-app-store-review.html,1,1,bsoni,2/22/2016 3:01 +11907807,London Rents Eating Up 57% of Twentysomethings Income,https://www.bloomberg.com/news/articles/2016-06-13/london-rents-eating-up-57-of-twentysomethings-income-chart,45,128,randomname2,6/15/2016 8:02 +10759735,Ask HN: What's the value of Hacker News points/karma?,,3,2,aaronchall,12/18/2015 17:50 +12305921,WordPress to Native Android App in 5 Minutes,https://appock.com/,3,1,vanwilder77,8/17/2016 16:34 +11120820,Why the FBI's request to Apple will affect civil rights for a generation,http://www.macworld.com/article/3034355/ios/why-the-fbis-request-to-apple-will-affect-civil-rights-for-a-generation.html,28,10,colinprince,2/17/2016 20:03 +10261221,Snapchat for urls,http://ephemurl.xyz/,4,3,armaan110,9/22/2015 19:55 +10276934,Logical Fallacy Finder,https://yourlogicalfallacyis.com/,1,1,mknappen,9/25/2015 8:29 +11076378,"Cisco beats profit estimates, adds $15B to buyback",https://finance.yahoo.com/news/cisco-posts-2-percent-rise-211930386.html,2,1,MarlonPro,2/10/2016 21:55 +10544046,Seed7 programming language,https://en.wikipedia.org/wiki/Seed7,21,3,networked,11/11/2015 1:07 +12038168,An elementary proof of Wallis product formula for Pi,http://fermatslibrary.com/s/an-elementary-proof-of-wallis-product-formula-for-pi,7,1,mosca,7/5/2016 17:45 +10277725,"Tech overkill destroyed the loveliest, liveliest city on the West Coast",http://www.independent.ie/business/technology/news/tech-overkill-destroyed-the-loveliest-liveliest-city-on-the-west-coast-31541735.html,15,2,spossy,9/25/2015 12:29 +11908973,mRemoteNG 1.74 RC2 released,https://github.com/mRemoteNG/mRemoteNG/releases,23,10,blueatlas,6/15/2016 12:50 +10246114,The Undoing of Disruption,https://chronicle.com/article/The-Undoing-of-Disruption/233101/?key=QD1yIFY4MSBAMX9naz5HMD8HaCNvMR5yYXMba3kiblpTGA==,22,1,edtechdev,9/20/2015 0:44 +10930168,The physics of traffic,http://360.here.com/2016/01/18/the-physics-of-traffic/,36,8,petrel,1/19/2016 12:11 +10725859,Files Are Hard,http://danluu.com/file-consistency/,451,151,pyb,12/13/2015 9:19 +10510889,What is it like to be owned by Warren Buffett?,http://www.gsb.stanford.edu/insights/what-it-be-owned-warren-buffett,84,20,Oatseller,11/5/2015 0:56 +12259205,Society of Amateur Radio Astronomers,http://radio-astronomy.org/,2,1,mindcrime,8/10/2016 2:49 +11871587,Its cheaper to build multiple native applications than one responsive web app,https://hueniverse.com/2016/06/08/the-fucking-open-web/,629,304,cdnsteve,6/9/2016 19:13 +10860542,Metrics of haters,http://sarah.thesharps.us/2016/01/07/metrics-of-haters/,2,1,steveklabnik,1/7/2016 20:33 +10492087,Ask HN: Freelancer? Seeking freelancer? (November 2015),,117,158,whoishiring,11/2/2015 15:01 +11097771,Petition to the White House to Appoint Larry Lessig to the Supreme Court,https://petitions.whitehouse.gov//petition/appoint-lawrence-lessig-vacant-supreme-court-position,13,1,dragonbonheur,2/14/2016 10:21 +10951402,How Rumblr Hacked the Media,https://medium.com/life-learning/how-we-hacked-the-media-and-landed-six-figure-contracts-in-four-days-96ea4aca4eef,17,1,mozumder,1/22/2016 8:00 +10425241,"Ask HN: Joining a startup, need invention assignment agreement legal advice",,2,1,anothercog,10/21/2015 13:29 +12264227,Foo,https://www.eff.org/deeplinks/2016/08/foo,1,1,ryanlol,8/10/2016 19:28 +12360714,NSO Group's iPhone Zero-Days Used Against a UAE Human Rights Defender,https://citizenlab.org/2016/08/million-dollar-dissident-iphone-zero-day-nso-group-uae/,52,4,okket,8/25/2016 17:16 +11407536,Show HN: What every browser knows about you,http://webkay.robinlinus.com/,553,206,Capira,4/1/2016 18:55 +11601703,"Triangulation: Interview with Bill Atkinson, Part 1",https://twit.tv/shows/triangulation/episodes/244,3,1,edtechdev,4/30/2016 13:55 +10567630,The Most Intolerant Wins: The Dominance of the Stubborn Minority [pdf],https://dl.dropboxusercontent.com/u/50282823/minority.pdf,135,53,kawera,11/14/2015 22:51 +11518395,Welcome to 'the worst job in the world' my life as a Guardian moderator,https://www.theguardian.com/technology/2016/apr/18/welcome-to-the-worst-job-in-the-world-my-life-as-a-guardian-moderator,42,57,braithers,4/18/2016 8:09 +10775063,Master Algorithm Lets Robots Teach Themselves to Perform Complex Tasks,http://www.technologyreview.com/news/544521/a-master-algorithm-lets-robots-teach-themselves-to-perform-complex-tasks/,3,2,fitzwatermellow,12/22/2015 1:38 +11844289,Show HN: Popup library inspired by Medium and PopClip,https://github.com/djyde/WebClip,5,1,djyde,6/6/2016 2:31 +11284895,The master's thesis that led to the Karma Test Runner for JavaScript,,3,2,gordonzhu,3/14/2016 19:22 +12493984,WTF is a CTO?,https://medium.com/@mattetti/wtf-is-a-cto-24b9ad4d6e50#.51kwiognx,15,1,acangiano,9/14/2016 3:01 +12500293,Haskell vs. Clojure (2014),https://gist.github.com/honza/5897359,72,52,kafkaesq,9/14/2016 19:13 +11378697,Ask HN: How should I manage removing customer data and backups?,,3,2,kaptain,3/29/2016 0:36 +11405542,Introducing Full Emoji Support in NGINX and NGINX Plus Configuration,https://www.nginx.com/blog/emoji-nginx-plus-configuration/,58,25,ArmTank,4/1/2016 15:32 +11214629,"Mosul dam engineers warn it could fail at any time, killing 1m people",http://www.theguardian.com/world/2016/mar/02/mosul-dam-engineers-warn-it-could-fail-at-any-time-killing-1m-people,6,1,kafkaesq,3/3/2016 2:21 +11803337,Securing a BitTorrent Sync EC2 Instance,http://ashfurrow.com/blog/bittorrent-sync/,1,1,marvel_boy,5/30/2016 21:33 +10452866,Does tech discriminate against suits?,https://medium.com/@gregorymfoster/does-tech-discriminate-against-suits-2b3462f43d78#.r5k7wzxc8,40,57,gregorymfoster,10/26/2015 17:30 +10257088,Ask HN: GUI Design. Where to start?,,3,2,lokio9,9/22/2015 7:15 +11454447,How to Develop a Microservices Pipeline,https://medium.com/@XebiaLabs/developing-a-microservices-pipeline-772b625bef7b#.3ht3tc52x,4,2,devopsguru,4/8/2016 13:23 +10544352,1000 Years of Reverbs,http://www.aes-media.org/sections/pnw/pnwrecaps/2015/costello_jun2015/,17,3,subnaught,11/11/2015 2:10 +11193867,Estonia Embraces Uber and Taxify,http://www.forbes.com/sites/montymunford/2016/02/28/estonia-embraces-uber-and-taxify-as-first-european-country-to-legalize-and-regulate-ride-sharing/,66,4,prostoalex,2/29/2016 6:06 +12305653,10 very good reasons to stop using JavaScript,https://www.leaseweb.com/labs/2013/07/10-very-good-reasons-to-stop-using-javascript/,2,2,e2e4,8/17/2016 15:59 +11636926,.NET framework ported to NetBSD,https://github.com/dotnet/coreclr/pull/4504/files,263,38,nbyouri,5/5/2016 15:27 +11034135,Do you have a Raspberry Pi? Use it to monitor your parents home network,https://netbeez.net/2016/02/03/do-you-have-a-raspberry-pi-use-it-to-monitor-your-parents-home-network/,5,1,panosv,2/4/2016 14:39 +10653681,Youve heard of the 10x engineer. I'm here to tell you about the Wolf,https://medium.com/@rands/the-wolf-6761b834266a#.80b8mh41g,2,3,workintransit,12/1/2015 4:48 +10397424,Braess' paradox: adding a new road to a city can slow down traffic,https://en.wikipedia.org/wiki/Braess%27_paradox,98,61,Thorondor,10/16/2015 4:11 +11280703,Show HN: Start a live-blog in Slack,http://www.clivebot.com/,3,4,jameswilsterman,3/14/2016 2:29 +11240486,Abbott Labs' IT Layoffs 'harsh and Insensitive 10 Signs Layoffs Are Coming,http://www.computerworld.com/article/3039353/it-careers/sen-durbin-calls-abbott-labs-it-layoffs-harsh-and-insensitive.html,6,1,ycnews,3/7/2016 18:25 +11055072,Tracking North Koreas Kwangmyongsong-4 Satellite Using OSINT,http://phasenoise.livejournal.com/2381.html,79,78,wolframio,2/7/2016 21:52 +10429429,What Happened After Gravity Payments Set a $70k Minimum Wage,http://www.inc.com/magazine/201511/paul-keegan/does-more-pay-mean-more-growth.html,2,1,kareemm,10/21/2015 23:02 +12531643,Ask HN: How to reduce accent?,,2,1,throwawaymaster,9/19/2016 14:21 +10898607,ISIS Has Its Own Secure Messaging App,http://fortune.com/2016/01/13/isis-has-its-own-secure-messaging-app/,7,2,doctorshady,1/13/2016 23:48 +11566375,Autograph is a machine that produces an image using nails and a single thread,http://www.laarco.com/,23,2,aaronbrethorst,4/25/2016 18:51 +11659802,Virgil: Sentiment Analysis for Chatbots,http://www.getvirgil.com/,22,4,eorge_g,5/9/2016 13:50 +12263421,How Sam Walton Optimised Conversions in 1960s,https://blipmetrics.com/blog/how-sam-walton-optimised-conversions-in-1960s/,5,2,shubhamjain,8/10/2016 17:29 +11302864,Questioning electric vehicles' green cred,http://www.bbc.com/autos/story/20160316-questioning-electric-vehicles-green-cred,2,4,yitchelle,3/17/2016 6:26 +11036007,"Performance Engineering with React, Part 1",http://benchling.engineering/performance-engineering-with-react/,158,38,sajithw,2/4/2016 18:24 +11108471,The History of Technological Anxiety and the Future of Economic Growth [pdf],http://pubs.aeaweb.org/doi/pdfplus/10.1257/jep.29.3.31,13,2,YeGoblynQueenne,2/16/2016 7:59 +11433554,The Nvidia DGX-1 Deep Learning Supercomputer in a Box,http://www.nvidia.com/object/deep-learning-system.html,215,98,dphidt,4/5/2016 19:25 +12403661,Show HN: Transform any web page into a document,https://documentcyborg.com/,73,76,apancyborg,9/1/2016 7:51 +11038657,"How Twitter feels about Bernie, Hillary and Trump: tweet sentiment analysis",http://www.candidatetwittertracker.com,27,11,willtachau,2/5/2016 1:07 +11569657,The Al-Qaeda Leader Who Wasnt: The Shameful Ordeal of Abu Zubaydah,http://www.tomdispatch.com/post/176132/tomgram%3A_rebecca_gordon%2C_exhibit_one_in_any_future_american_war_crimes_trial/,350,169,brhsiao,4/26/2016 5:34 +12202981,Learn programming with CLARA,https://clara.forsyte.tuwien.ac.at,2,1,ivanrrr,8/1/2016 15:14 +12120099,"Fukushima photography, Keow Wee Loong, and his completely fabricated story",http://www.podniesinski.pl/portal/attention-seeking-kid-keow-wee-loong/,4,2,jpatokal,7/19/2016 6:15 +11618284,Subsonic is no longer opensource,http://forum.subsonic.org/forum/viewtopic.php?f=4&t=16604#p71128,3,1,educar,5/3/2016 6:01 +11297091,Experimental Servo browser built in HTML,https://github.com/browserhtml/browserhtml,4,1,antouank,3/16/2016 13:30 +10350917,5 Reasons That Learning Erlang Is Hard,http://blog.fhqk.com/2015/10/learning-erlang-is-hard-because.html,3,1,signa11,10/8/2015 4:36 +12153373,Malloc is an Antipattern,http://www.security-embedded.com/blog/2016/7/22/malloc-is-an-antipattern,6,1,ingve,7/24/2016 14:19 +11879869,The Most and Least Expensive Cars to Maintain,https://www.yourmechanic.com/article/the-most-and-least-expensive-cars-to-maintain-by-maddy-martin,473,344,zabielski,6/10/2016 20:45 +11986092,Show HN: Tolks A new way to put stories on the Internet,https://tolks.io,2,2,chinchang,6/27/2016 13:42 +11048455,SCO ORDER Granting IBM'S Motion for Partial Summary Judgment [pdf],http://www.groklaw.net/pdf4/IBM-1159.pdf,5,6,_JamesA_,2/6/2016 16:52 +11597592,U.S. Labels Switzerland an Internet Piracy Haven,https://torrentfreak.com/u-s-labels-switzerland-an-internet-piracy-haven-160428/,39,22,benevol,4/29/2016 18:13 +11166285,Skype alternatives for Linux?,,3,4,infinitebyte,2/24/2016 12:46 +11284212,Reform Capitalism or we will face serious political problems,https://next.ft.com/content/94176826-c8fc-11e5-be0b-b7ece4e953a0,4,3,simonebrunozzi,3/14/2016 17:43 +12367809,Thoughts after a Month with Blackphone (2014),http://www.droidsec.org/news/2014/09/30/thoughts-after-a-month-with-blackphone.html,17,21,iamjeff,8/26/2016 17:29 +10504781,Show HN: The Dealio,http://www.the-dealio.com,1,3,zhegwood,11/4/2015 5:28 +11660924,The Art of Being Wrong,https://medium.com/james-marks-on-life-and-business/the-art-of-being-wrong-71720f51c940,1,2,james_marks,5/9/2016 16:16 +11946498,Dope Books Netflix for Books,http://www.dopebooks.com,1,1,yunyeng,6/21/2016 15:40 +11737094,This 1996 Sega training video is the most 90s thing youll see this week,http://arstechnica.co.uk/gaming/2016/05/1996-sega-training-video/,3,1,dham,5/20/2016 12:05 +10833689,What Happens When Virtual Reality Gets Too Real,http://blogs.wsj.com/digits/2016/01/03/what-happens-when-virtual-reality-gets-too-real/,57,55,jonbaer,1/4/2016 2:22 +10383818,Whats the Difference Between Data Science and Statistics?,http://priceonomics.com/whats-the-difference-between-data-science-and/,5,1,nols,10/13/2015 22:11 +11687804,"In ad-blocking wars, publishers propose a détente",http://www.poynter.org/2016/in-ad-blocking-wars-publishers-propose-a-detente/411660/,2,1,aaronbrethorst,5/13/2016 0:30 +10672237,EasyEngine Managing High Traffic Sites Made Easy,https://easyengine.io/,18,1,nikolay,12/3/2015 20:12 +11136356,California bullet train headed first to San Jose a big Bay Area win,http://www.mercurynews.com/california/ci_29529618/california-bullet-train-headed-first-san-jose-big,4,2,protomyth,2/19/2016 20:25 +11410746,France income taxes calculator is now open-source,https://forum.openfisca.fr/t/acceder-au-code-source-de-la-calculette-impots/37?source_topic_id=42,10,2,thibaut_barrere,4/2/2016 8:32 +10278103,Ask HN: What are some programming blog posts that you would enjoy reading?,,5,2,hellomynameise,9/25/2015 13:52 +11870838,1Blocker for Mac,http://1blocker.com/mac/,4,1,khanov,6/9/2016 17:25 +11611096,Choosing to Skip the Upgrade and Care for the Gadget Youve Got,http://www.nytimes.com/2016/04/21/technology/personaltech/choosing-to-skipthe-upgrade-and-care-for-the-gadget-youve-got.html,4,1,CapitalistCartr,5/2/2016 13:24 +12546933,Low-income families face eviction as building 'rebrands' for Facebook workers,https://www.theguardian.com/technology/2016/sep/21/silicon-valley-eviction-facebook-trion-properties,5,1,lnguyen,9/21/2016 10:41 +10504883,Graph Isomorphism in Quasi Polynominal Time,https://calendar.google.com/calendar/render?eid=czNzOXNtZ2tydG00OG5obDJlZ3I3c21uY2cgYzU3c2hpY2k0NW0xN3FsMGdodmw1NmVrMzhAZw&ctz=America/Chicago&pli=1&sf=true&output=xml#eventpage_6,1,1,zitterbewegung,11/4/2015 6:07 +11103929,CVE-2016-1521 Webfont Exploit in Firefox Because of Graphite Library,http://news.softpedia.com/news/vulnerability-in-font-processing-library-affects-linux-openoffice-firefox-500027.shtml,3,1,ck2,2/15/2016 15:47 +12025806,"UN council: Nations, stop switching off the internet",http://www.theregister.co.uk/2016/07/01/un_officially_condemns_internet_shutdowns/,136,82,TheAuditor,7/3/2016 12:32 +11422039,Open-Source Processor Core Ready for IoT,http://www.eetimes.com/document.asp?doc_id=1329327,153,14,razer6,4/4/2016 14:20 +11424393,Run Bash on Ubuntu on Windows,https://blogs.windows.com/buildingapps/2016/03/30/run-bash-on-ubuntu-on-windows/,56,44,jessaustin,4/4/2016 18:55 +10571216,Algerians massacred in Paris in 1961,http://www.history.com/this-day-in-history/algerians-massacred-in-paris,5,2,seesomesense,11/15/2015 21:07 +11409493,Solving the cash problems from self-funding rapid growth,http://nathanbarry.com/cash/,138,20,bretthopper,4/2/2016 0:06 +10437708,Koofr: European cloud storage,http://koofr.eu/,16,1,im_dario,10/23/2015 10:06 +11916463,HerStartup-the first global startup competition focused on diversity,https://herstartup.splashthat.com/,7,5,leave3644,6/16/2016 14:47 +11534326,Should robots be gendered?,http://robohub.org/robots-should-not-be-gendered/,2,1,nanogal,4/20/2016 13:48 +11907363,CHIP $9 Computer,https://getchip.com/pages/chip,373,215,unusximmortalis,6/15/2016 5:43 +11486899,Apply HN: Pinpic Photographers on Demand,,3,1,uroojq,4/13/2016 9:50 +11538114,Canonical unveils 6th LTS release of Ubuntu with 16.04,https://insights.ubuntu.com/2016/04/20/canonical-unveils-6th-lts-release-of-ubuntu-with-16-04/?_ga=1.55795433.393179487.1456169266,36,2,antimora,4/20/2016 22:08 +11857747,How a 30K-member Facebook group filled the void left by Uber and Lyft in Austin,http://techcrunch.com/2016/06/07/how-a-30k-member-facebook-group-filled-the-void-left-by-uber-and-lyft-in-austin/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29&utm_content=FaceBook&sr_share=facebook,162,188,abhi3,6/7/2016 20:56 +11996067,Ask HN: Who is using TensorFlow right now?,,4,1,zkirill,6/28/2016 18:09 +10678898,Embed Node.js in GitBooks,https://plugins.gitbook.com/plugin/tonic,1,2,kevinSuttle,12/4/2015 20:25 +11381490,The Fair Source License,https://fair.io/,2,1,aethertap,3/29/2016 13:57 +10830055,Herd Mentality,http://quillette.com/2016/01/03/herd-mentality/,67,92,tomhoward,1/3/2016 9:35 +11840175,What is the difference between deep learning and usual machine learning?,https://github.com/rasbt/python-machine-learning-book/blob/master/faq/difference-deep-and-normal-learning.md,228,124,hunglee2,6/5/2016 8:48 +12338834,An AI-Driven Hedge Fund,http://www.bloomberg.com/news/articles/2016-08-21/hedge-fund-robot-outsmarts-human-master-as-ai-passes-brexit-test,17,2,subpar,8/22/2016 19:40 +11676620,GitHub's Price Hike A Great Time to Migrate to BitBucket and Save a Lot of Money,https://www.squrb.com/blog/2016/5/11/githubs-new-pricing-structure-a-perfect-time-to-migrate-to-bitbucket-and-save-a-lot-of-money,7,9,dusano,5/11/2016 16:13 +11892665,Is Humor the Final Barrier for Artificial Intelligence?,http://iq.intel.com/is-humor-the-final-barrier-for-artificial-intelligence/,4,2,lahdo,6/13/2016 9:53 +11449110,Google pushes for swift on android,http://thenextweb.com/dd/2016/04/07/google-facebook-uber-swift/,64,1,deepakkarki,4/7/2016 17:44 +11022471,King James Programming,http://kingjamesprogramming.tumblr.com,1,1,BenjaminRH,2/2/2016 20:53 +10613813,POPFile Automatic Email Classification,http://getpopfile.org/,24,8,jgrahamc,11/23/2015 10:33 +10336961,Reddit launches Upvoted to highlight the stories behind the upvoted stories,http://www.theverge.com/2015/10/6/9460025/reddit-news-site-upvoted-launch,2,1,scottcowley,10/6/2015 5:57 +11794731,Russia has a new robot soldier and it's a little troubling,http://www.businessinsider.com/russia-has-a-new-robot-soldier-2016-5,23,34,espeed,5/29/2016 4:11 +10794875,Open-Source Watch,http://oswatch.org/build_page_1.php,153,26,yitchelle,12/26/2015 19:07 +10794549,The Key War on Terror Propaganda Tool: Only Western Victims Are Acknowledged,https://theintercept.com/2015/04/24/central-war-terror-propaganda-tool-western-victims-acknowledged/,94,52,altern8,12/26/2015 17:11 +10263550,The geography of American left-handedness,http://www.washingtonpost.com/news/wonkblog/wp/2015/09/22/the-surprising-geography-of-american-left-handedness/,39,41,srikar,9/23/2015 6:13 +11078424,Ask HN: How do I solve this?,,3,8,vs2370,2/11/2016 5:36 +11294952,A Collection of Dice Problems [pdf],http://www.madandmoonly.com/doctormatt/mathematics/dice1.pdf,44,5,bumbledraven,3/16/2016 4:11 +10932189,Ask HN: UX feedback on a website I made,,1,13,alessiosantocs,1/19/2016 17:26 +10620197,Learn more about the Vulkan API,http://blog.imgtec.com/powervr/5-new-webinars-on-the-vulkan-api,41,18,1ace,11/24/2015 11:29 +10349010,Ask HN: Any recommendations for selling hardware in developing markets?,,1,1,syedkarim,10/7/2015 20:53 +10957485,Full moon will cause tides to be higher,http://www.dailymail.co.uk/sciencetech/article-3412849/Could-MOON-make-weekend-s-storms-destructive-moon-tides-higher.html?ITO=applenews,2,1,chris-at,1/23/2016 6:56 +10342597,Ask HN: Get into computer security,,16,10,newbie_hacker,10/6/2015 21:37 +11408712,"Slacks growth is insane, with daily user count up 3.5X in a year",http://techcrunch.com/2016/04/01/rocketship-emoji/,6,1,rezist808,4/1/2016 21:24 +10587284,Uber Is Not the Future of Work,http://www.theatlantic.com/business/archive/2015/11/uber-is-not-the-future-of-work/415905/?single_page=true,2,1,wslh,11/18/2015 12:25 +10203564,Enigmail and p?p are partnering together for developing Enigmail/p?p,http://pep-project.org/2015-09/s1441611880,1,1,fdik,9/11/2015 13:37 +11712156,Love in the Time of Zika,http://www.thestranger.com/feature/2016/05/11/24068596/love-in-the-time-of-zika,5,1,pmcpinto,5/17/2016 9:05 +11416942,MOD Devices pedalboard,http://moddevices.com/,1,1,based2,4/3/2016 18:02 +12089774,The Christmas Lectures,http://www.rigb.org/christmas-lectures/watch,5,2,projectileboy,7/13/2016 21:24 +11902587,Standing on Distributed Shoulders of Giants,http://queue.acm.org/detail.cfm?id=2953944,78,17,yarapavan,6/14/2016 15:27 +10960760,Check-in before code review is an antipattern,https://jamesmckay.net/2015/07/check-in-before-code-review-is-an-antipattern/,51,61,infodroid,1/24/2016 0:03 +10327749,What's 700M Times Faster Than a Missile and Infinitely More Deadly?,http://www.fool.com/investing/general/2015/10/04/whats-700-million-times-faster-than-missile-deadly.aspx,2,2,earlyadapter,10/4/2015 15:18 +11894454,Need career advice: which job should I take?,,7,9,nyc_throwaway,6/13/2016 15:09 +12029510,Show HN: A badge that displays the size of a given file in your repository,https://github.com/ngryman/badge-size,1,1,fibo,7/4/2016 8:46 +11106315,Ask HN: Out of beta with paying customers. What's next?,,19,7,vital101,2/15/2016 21:50 +10210643,"AI robot learns new words, tells creators it will keep them in a ""people zoo""",http://glitch.news/2015-08-27-ai-robot-that-learns-new-words-in-real-time-tells-human-creators-it-will-keep-them-in-a-people-zoo.html,10,1,personjerry,9/13/2015 7:37 +10614827,Show HN: N-Weave.com Share your travel plans with friends,http://www.n-weave.com,4,1,mledunne,11/23/2015 14:45 +12004641,Liddiard Wheels,https://www.youtube.com/watch?v=J-TOV-NBD70,3,2,cyang08,6/29/2016 20:38 +12104211,Is the left's big new idea a 'right to be lazy'?,http://www.bbc.com/news/uk-politics-36782832,4,1,ytNumbers,7/15/2016 22:22 +10475985,It's time for the GOP candidates to finally debate tech,http://www.wired.com/2015/10/its-time-for-the-gop-candidates-to-finally-debate-tech/,5,1,bing1106,10/30/2015 3:19 +12457417,Chrome is moving to mark HTTP sites sending passwords etc as insecure,https://techcrunch.com/2016/09/08/chrome-is-helping-kill-http/,10,3,stilliard,9/8/2016 21:17 +12275412,A Startup Turns to Saffron to Help Afghanistan Regrow,http://www.nytimes.com/2016/08/11/business/smallbusiness/a-start-up-turns-to-saffron-to-help-afghanistan-regrow.html,71,28,miraj,8/12/2016 13:26 +12456752,Tesla Says Car in Netherlands Not on Autopilot at Time of Crash,http://www.wsj.com/articles/tesla-says-car-in-netherlands-not-on-autopilot-at-time-of-crash-1473362413,1,1,yonderboy,9/8/2016 20:00 +12143979,Show HN: Revenue Numbers (A directory of revenue stats for online businesses.),http://revenuenumbers.com/,4,2,jjets718,7/22/2016 15:08 +10943902,Jack Ma explains how he got started doing a startup,https://www.techinasia.com/jack-ma-explains-started-startup,3,1,williswee,1/21/2016 7:36 +10334434,Project Ballista,https://github.com/chromium/ballista/,154,20,twapi,10/5/2015 19:59 +10756293,Linux UEFI TPM 2.0 security impacts,https://plus.google.com/+GuidoStepken/posts/XZsgDcuairt,1,1,chei0aiV,12/18/2015 2:46 +11238823,Show HN: I released my first Android game: Black Hole Escape,https://play.google.com/store/apps/details?id=com.quarkdev.blackhole,9,5,psy_,3/7/2016 13:53 +12292597,Change the base branch of a Pull Request,https://github.com/blog/2224-change-the-base-branch-of-a-pull-request,28,4,btmills,8/15/2016 18:58 +12531135,LoRa Range Testing in San Francisco,http://blog.beepnetworks.com/2016/09/loras-wireless-range-is-bananas-a-first-look-at-cellular-for-iot-in-san-francisco/,125,64,runesoerensen,9/19/2016 13:12 +10694316,Paredit.js structured navigation and editing of s-expressions,http://robert.kra.hn/projects/paredit-js,60,5,michaelsbradley,12/8/2015 2:08 +10849090,Microsoft failed to warn victims of Chinese email hack: former employees,http://www.reuters.com/article/us-microsoft-china-insight-idUSKBN0UE01Z20160101,2,1,simonh,1/6/2016 7:08 +10454634,Ask HN: Best resources to learn computer networking?,,3,2,conorgil145,10/26/2015 21:31 +12206158,"Millennium Tower is tilting, sinking",http://sf.curbed.com/2016/8/1/12341914/millennium-tower-sinking,268,180,lelf,8/1/2016 21:27 +12174254,Writing Pythonic code pays off,http://bobbelderbos.com/2016/07/writing-pythonic-code-pays-off/,4,1,bbelderbos,7/27/2016 16:35 +10430768,Beal's Conjecture Revisited,http://norvig.com/beal.html,27,6,dmit,10/22/2015 6:52 +11722824,Microsoft sells feature phone business to Foxconn subsidiary for $390M,http://www.reuters.com/article/us-microsoft-fih-mobile-deals-idUSKCN0Y911N,2,1,rmason,5/18/2016 15:56 +11881964,Traffic Simulation,http://www.traffic-simulation.de,144,21,tomcdonnell,6/11/2016 3:52 +10240206,Coconut Headphones: Why Agile Has Failed (2014),http://mikehadlow.blogspot.com/2014/03/coconut-headphones-why-agile-has-failed.html,71,53,numo16,9/18/2015 16:42 +10324920,RoboCab: Driverless Taxi Experiment to Start in Japan,http://blogs.wsj.com/japanrealtime/2015/10/01/robocab-driverless-taxi-experiment-to-start-in-japan/,86,50,mhb,10/3/2015 18:43 +11845804,Report: Smart contact lens and other ambitious projects at Verily are floundering,https://www.statnews.com/2016/06/06/google-star-trek-fiction/,71,58,ravichandran_s,6/6/2016 10:57 +10214084,I need some good lawyers from online,,2,3,Jufaldenny,9/14/2015 8:22 +11193480,Loop Invariants,http://www.cs.miami.edu/home/burt/learning/Math120.1/Notes/LoopInvar.html,47,32,kercker,2/29/2016 3:42 +11950541,"Ghostbot pretends to be you, talking to people you want to avoid",http://www.theverge.com/2016/6/21/11975700/ghostbot-texting-dating-bot-app-mean-texts,7,3,ilyaeck,6/22/2016 0:07 +11133950,The Daily Mail Stole My Visualization Twice,http://flowingdata.com/2016/02/19/the-daily-mail-stole-my-visualization-twice/,452,138,thehoff,2/19/2016 15:27 +10637980,Paris Attacks Plot Was Hatched in Plain Sight,http://www.wsj.com/articles/paris-attacks-plot-was-hatched-in-plain-sight-1448587309,165,111,frostmatthew,11/27/2015 17:02 +11469535,Linux Filesystem Fuzzing with American Fuzzy Lop [pdf],http://events.linuxfoundation.org/sites/events/files/slides/AFL%20filesystem%20fuzzing%2C%20Vault%202016.pdf,159,45,grhmc,4/11/2016 3:58 +12263841,Can you solve this geometry problem for 6th graders in China?,http://mindyourdecisions.com/blog/2016/08/07/can-you-solve-this-geometry-problem-for-6th-graders-in-china/,14,5,breitling,8/10/2016 18:29 +12058138,Skype protocol dumps,http://skype-open-source2.blogspot.com/2016/06/skype-protocol-dumps.html,74,9,skypeopensource,7/8/2016 19:44 +10531476,Epic Eel Migration Mapped for the First Time,http://news.nationalgeographic.com/2015/10/151027-american-eel-migration-animal-behavior-oceans-science/#.VjgC5j4N_w8.twitter,24,10,dfc,11/9/2015 4:59 +11338161,Data Visualizations of Hacker News Salary Data,https://medium.com/@rennerjc/data-visualization-of-hacker-news-salary-spreadsheet-cc6b80546033#.m27utsite,6,1,talloaktrees,3/22/2016 17:23 +11337387,Why self-driving cars are doomed,https://yinwang0.wordpress.com/2016/03/22/why-self-driving-cars-are-doomed/,4,5,joeyespo,3/22/2016 15:45 +11217752,"Apple Gets Tech Industry Backing in iPhone Dispute, Despite Misgivings",http://www.nytimes.com/2016/03/03/technology/tech-rallies-to-apples-defense-but-not-without-some-hand-wringing.html,89,57,hvo,3/3/2016 16:11 +10754025,Bitcoin hasn't disrupted shit,https://medium.com/purse-essays/bitcoin-hasn-t-disrupted-shit-f2889c7d7e34,6,1,chjj,12/17/2015 19:55 +11590316,REST: I Don't Think It Means What You Think It Does • Stefan Tilkov (2014),https://www.youtube.com/watch?v=pspy1H6A3FM,1,1,saganus,4/28/2016 17:03 +12135644,Udacity Launches the Self-Driving Car Engineer Nanodegree,https://www.udacity.com/course/self-driving-car-engineer-nanodegree--nd013,4,2,Dawny33,7/21/2016 9:06 +11359664,"More Encryption, More Notifications, More Email Security",https://security.googleblog.com/2016/03/more-encryption-more-notifications-more.html,342,167,nailer,3/25/2016 12:33 +10958564,Introduction to GEN Assembly in OpenCL,https://software.intel.com/en-us/articles/introduction-to-gen-assembly,37,5,ingve,1/23/2016 15:00 +10809767,Ask HN: What are your predictions for 2016?,,9,6,csomar,12/29/2015 23:30 +11235916,Returning multiple values from functions in C++,http://eli.thegreenplace.net/2016/returning-multiple-values-from-functions-in-c/,78,62,ingve,3/6/2016 22:36 +10958123,Start Traditions That Wont Last,https://medium.com/@robbieallen/start-traditions-that-won-t-last-4aa49abaf6e4#.mf4jur7yg,42,6,RobbieStats,1/23/2016 12:12 +10442431,Google CEO Sundar Pichai Brings in Less Egotistical Leadership,http://recode.net/2015/10/23/the-new-google-all-the-assholes-have-left/,148,95,adidash,10/24/2015 4:26 +12500886,AI robots will take 6% of jobs by 2021,http://www.cnbc.com/2016/09/12/ai-will-eliminate-six-percent-of-jobs-in-five-years-says-report.html,3,1,elorant,9/14/2016 20:19 +11934549,Field notes ElasticSearch at petabyte scale on AWS,https://grey-boundary.io/field-notes-elasticsearch-at-petabyte-scale-on-aws/,4,1,r4um,6/19/2016 20:35 +11025231,Show HN: MindIT A web based Freemind alternative built in Meteor,http://www.mindit.xyz/,35,34,sidcool,2/3/2016 7:26 +12371255,Ask HN: What parenting books do you recommend for a new dad?,,12,7,drewjaja,8/27/2016 6:19 +11161998,Movie4k# 13 Stunden the Secret Soldier of Benghazi Stream Deutsch Online Ganzer,http://linorth.com/movie/300671/13-hours-the-secret-soldiers-of-benghazi.html,1,1,stalingard,2/23/2016 20:23 +12021962,"Everything You Always Wanted to Know About Hello, World",https://www.bsdcan.org/2016/schedule/events/676.en.html,56,9,signa11,7/2/2016 9:37 +11336281,Best Testing Services for Mobile App Development,https://bugfender.com/blog/best-testing-services-for-mobile,9,1,aleixventa,3/22/2016 13:13 +11887990,Guidelines to choose a JavaScript library,http://www.sheshbabu.com/posts/guidelines-to-choose-a-javascript-library/,2,1,rkwz,6/12/2016 13:26 +10940209,Automated Failure Testing,http://techblog.netflix.com/2016/01/automated-failure-testing.html,42,4,hepha1979,1/20/2016 18:30 +11324191,Knowleey auto updating FAQ page,http://knowleey.com?ref=hackernews,9,7,harisb2012,3/20/2016 19:14 +10193667,Is it OK for psychologists to deceive?,http://aeon.co/magazine/psychology/is-it-ok-for-psychologists-to-deceive/,22,21,pepys,9/9/2015 19:22 +12364627,ImageGlass Free and open source image viewer,http://www.imageglass.org,4,2,oridecon,8/26/2016 6:38 +12493602,Super Mario clone in Java,https://annot.io/github.com/BrentAureli/SuperMario/blob/master/core/src/com/brentaureli/mariobros/Sprites/Mario.java,42,6,Halienja,9/14/2016 1:17 +10387971,Show HN: Learn to code with JavaScript (French),https://openclassrooms.com/courses/apprenez-a-coder-avec-javascript,11,1,bpesquet,10/14/2015 17:25 +12058039,A DIY self-tuning sonoluminescence generator,http://imgur.com/a/7P91o,5,1,MichaelAO,7/8/2016 19:28 +12398293,Blame Your Lousy Internet on Poles,https://backchannel.com/blame-your-lousy-internet-on-poles-1998a85c3ed9?source=rss----d16afa0ae7c---4,4,1,dwaxe,8/31/2016 13:56 +11545351,Anthropic Capitalism and the New Gimmick Economy,https://www.edge.org/response-detail/26756,75,61,harshreality,4/21/2016 21:06 +12242258,"$100,000 Prize If You Can Find This Secret Command in DOS",http://spectrum.ieee.org/view-from-the-valley/computing/software/100000-prize-if-you-can-find-the-secret-command-in-dos,4,2,Zuider,8/7/2016 15:10 +11204481,Free React.js Fundamentals Course,http://courses.reactjsprogram.com/courses/reactjsfundamentals,676,112,tm33,3/1/2016 17:47 +11051409,The Surprisingly Innovative Future of Wood,http://gizmodo.com/these-gorgeous-buildings-showcase-the-surprisingly-inno-1757398349,99,45,curtis,2/7/2016 3:13 +11630533,Silicon Valley tech firm must pay Filipinos $160K in back wages,http://globalnation.inquirer.net/139249/silicon-valley-tech-firm-must-pay-filipino-workers-160k-in-back-wages-damages,2,1,ArtDev,5/4/2016 18:31 +10535018,Evite sells your info (and your friends info),http://www.oracle.com/webfolder/assets/cloud-data-directory/index.html#/page/61,5,2,fezz,11/9/2015 19:01 +10949465,Why we applied to YC despite having gone through another accelerator,http://www.karthikmanimaran.com/2016/01/21/why-we-applied-to-yc-despite-having-gone-through-another-accelerator/,48,27,karthikm,1/21/2016 23:39 +11829754,Lazy Eight's 404 page is Space Invaders and #drumpf epicness,http://lazyeight.design/404,1,1,nav,6/3/2016 11:54 +11500213,Apply HN: Better than Google,,74,23,jurajpal,4/14/2016 20:46 +12228535,SteamVR Tracking,https://partner.steamgames.com/vrtracking/,202,50,Impossible,8/4/2016 21:15 +10306771,Bored People Quit,https://medium.com/keep-learning-keep-growing/bored-people-quit-7354792e0e6e,20,1,kareemm,9/30/2015 20:11 +11886355,"Isomorphic JavaScript, lets make it easier",https://medium.com/@pierceydylan/isomorphic-javascript-it-just-has-to-work-b9da5b0c8035,66,37,piercey4,6/12/2016 2:29 +12039858,Learn 101: Learn Languages,http://learn101.org/,57,15,snake117,7/5/2016 22:06 +11181595,Japan's population declines for first time since 1920s,http://www.theguardian.com/world/2016/feb/26/japan-population-declines-first-time-since-1920s-official-census,35,52,eplanit,2/26/2016 14:45 +10912524,"Cock.li server seized again by German prosecutor, service moves to Romania",http://arstechnica.com/tech-policy/2016/01/cock-li-server-seized-again-by-german-prosecutor-service-moves-to-iceland/,39,29,Koahku,1/15/2016 22:02 +11096364,Chisel free public and private Fossil repository hosting,http://chiselapp.com/,6,1,networked,2/14/2016 0:06 +10575037,Blind teacher loses job after rinsing his mouth with Listerine,http://nypost.com/2015/11/15/blind-teacher-loses-job-after-rinsing-his-mouth-with-listerine/,68,17,bmmayer1,11/16/2015 15:46 +12286003,How the Hunt Brothers Cornered the Silver Market and Then Lost It All,https://priceonomics.com/how-the-hunt-brothers-cornered-the-silver-market/,134,52,adventured,8/14/2016 15:45 +11806780,Ask HN: Why no preview and no ninja edit on HN?,,2,2,dorfsmay,5/31/2016 14:44 +12381502,Only 13 percent of enterprise websites are mobile-friendly and fast,https://medium.com/restive/only-13-of-enterprise-websites-are-mobile-friendly-and-fast-3c345ec97f9#.skxfmedr8,2,3,obihill,8/29/2016 12:55 +12291707,Technical debt as an opportunity to accumulate technical wealth,http://firstround.com/review/forget-technical-debt-heres-how-to-build-technical-wealth/?_hsenc=p2ANqtz--kPw8wFvKVfV1GLca96jgrr2yWHIGRoFkCjsYzB1eY_6CWIsHTOIZp_ion68LPMGyONheMaUCanW0tA7FmqK5LF1XT6A&_hsmi=32846075,253,202,prostoalex,8/15/2016 17:03 +11896918,Why Online Voting Is a Danger to Democracy,http://engineering.stanford.edu/news/david-dill-why-online-voting-danger-democracy,199,299,rezist808,6/13/2016 19:52 +11294369,"Ask HN: I am a back end developer that wants to dive into VR, where do I start?",,4,1,nichochar,3/16/2016 1:31 +10216527,"TED, David Rothkopf: How Fear Drives American Politics",http://www.ted.com/talks/david_rothkopf_how_fear_drives_american_politics,2,1,aqwwe,9/14/2015 18:20 +12325985,Anonymouth Document Anonymization Tool,https://github.com/psal/anonymouth,69,10,q-_-p,8/20/2016 10:40 +10292103,Groovy and Grails Plans Announced at SpringOne2GX,http://www.infoq.com/news/2015/09/groovy24-25-grails31,1,1,mindcrime,9/28/2015 18:32 +11396702,Show HN: tmux2html - Render full tmux windows or individual panes as HTML,https://github.com/tweekmonster/tmux2html,99,28,tommyallen,3/31/2016 12:44 +10215085,Facebook vigilantes catching thieves and punishing them,http://www.bbc.co.uk/news/blogs-trending-34224196,77,64,SimplyUseless,9/14/2015 14:03 +11303051,"Intel's Skull Canyon NUC is official: $650, shipping in May",http://anandtech.com/show/10152/intels-skull-canyon-nuc-is-official,5,2,cm2187,3/17/2016 7:58 +10198123,GNU Tools Cauldron 2015 videos,https://www.youtube.com/playlist?list=PLOGTP9W1DX5UNRj9NH8h4eeeEgBD1sysr&gl=CA,3,1,octoploid,9/10/2015 14:14 +10661307,The Marshall Islands Are Disappearing,http://www.nytimes.com/interactive/2015/12/02/world/The-Marshall-Islands-Are-Disappearing.html,1,1,ereyes01,12/2/2015 6:11 +10481318,"A selfie app with a time limit just got $100,000 from Tim Draper",http://venturebeat.com/2015/10/30/timit-selfie-app/,3,1,cryptoz,10/31/2015 0:25 +10456495,Airbnb tests booking your entire trip with new 'Journeys' service,http://thenextweb.com/insider/2015/10/26/airbnb-tests-booking-your-entire-trip-with-new-journeys-service/,2,2,phodo,10/27/2015 5:49 +11081629,"Be proactive, not reactive??Faster DOM updates via change propagation",http://blog.bitovi.com/change-propagation/,31,4,evlapix,2/11/2016 17:45 +10314457,Merch by Amazon,https://merch.amazon.com/landing,67,31,johnsocs,10/1/2015 20:32 +10613453,C11 atomic variables and the Linux kernel (2014),https://lwn.net/Articles/586838/,120,7,Rovanion,11/23/2015 8:36 +12025674,Rats free each other from cages (2011),http://www.nature.com/news/rats-free-each-other-from-cages-1.9603,222,169,CarolineW,7/3/2016 11:28 +10370057,Snowden explains tracking of mobile phones using a plane,https://twitter.com/Snowden/status/653244345991172096,3,3,aws_ls,10/11/2015 17:10 +11046473,Twitter to Introduce Algorithmic Timeline as Soon as Next Week,http://www.buzzfeed.com/alexkantrowitz/twitter-to-introduce-algorithmic-timeline-as-soon-as-next-we#.lm3ABLe6M,3,1,coloneltcb,2/6/2016 3:52 +11724535,HP EliteBook 1030 with 16GB of RAM and Starting Price of $1249,http://www.etechtime.com/2016/05/hp-elitebook-1030-with-16gb-of-ram-and.html,2,1,biman8111,5/18/2016 18:37 +10207924,Intelligent machines: Making AI work in the real world,http://www.bbc.co.uk/news/technology-34143171,18,2,ColinWright,9/12/2015 12:37 +11131588,Paperwork: A Personal Document Manager for Scanned Documents,https://github.com/jflesch/paperwork/#readme,191,35,ekianjo,2/19/2016 4:40 +10377061,Just Enough Bitcoin for Ethereum,https://medium.com/@ConsenSys/time-sure-does-fly-ed4518792679,44,32,ConsenSys,10/12/2015 21:30 +10390390,"Journalists Trespass, Assault Tesla Employees at the Gigafactory",http://www.teslamotors.com/blog/journalists-trespass-assault-tesla-employees-gigafactory,143,75,adanto6840,10/14/2015 23:55 +11180363,PHP 7 now quick enough to run a gameboy emulator,https://github.com/gabrielrcouto/php-terminal-gameboy-emulator,2,2,randomname2,2/26/2016 8:17 +12554626,Art Advice I'd Give Myself If I Had to Start from Scratch [video],https://www.youtube.com/watch?v=qxZbsLBd3oU,2,2,pmoriarty,9/22/2016 5:36 +10507355,Ask HN: Is it possible to transition from corporate job to self contractor?,,89,59,jxm262,11/4/2015 15:49 +10912238,Ask HN: When to notify employer of security vulnerability?,,2,4,x0ry,1/15/2016 21:26 +11193781,Table Flip on Ruby Exceptions,https://github.com/iridakos/table_flipper,4,1,mgberlin,2/29/2016 5:42 +10984251,"Facebook Climbs to 1.59B Users, Beats Q4 Estimates with $5.8B Revenue",http://techcrunch.com/2016/01/27/facebook-earnings-q4-2015/#.kqfyhh:2YGM,170,135,duartetb,1/27/2016 22:54 +10917630,History of a fake football team that fooled the NYT,http://www.nytimes.com/2016/01/16/sports/ncaafootball/the-41-season-at-plainfield-teachers-college-when-every-play-was-a-fake.html,46,2,dbuxton,1/17/2016 0:40 +12574462,"Coding is not fun, its technically and ethically complex",https://aeon.co/ideas/coding-is-not-fun-it-s-technically-and-ethically-complex,7,5,sergeant3,9/25/2016 8:35 +11559013,Tech Titans Are Busy Privatising Our Data Evgeny Morozov,http://www.theguardian.com/commentisfree/2016/apr/24/the-new-feudalism-silicon-valley-overlords-advertising-necessary-evil,3,1,kspaans,4/24/2016 8:44 +12059378,Green party's Jill Stein invites Bernie Sanders to take over ticket,https://www.theguardian.com/us-news/2016/jul/08/jill-stein-bernie-sanders-green-party,6,1,_pius,7/8/2016 23:51 +11985181,A School Where the Students Hire Their Teachers,https://www.wbez.org/shows/wbez-news/a-school-where-the-students-hire-their-teachers/eb752ffe-09f6-4857-a35b-9792b8641674,23,9,llama_dentist,6/27/2016 10:11 +10777749,India passes tough new law for serious juvenile crimes,http://www.bbc.com/news/world-asia-india-35161193,24,28,chdir,12/22/2015 13:57 +12076520,Ask HN: Should I Do an Employee Stock Ownership Plan for My 60 Employees?,,2,1,joelx,7/12/2016 3:21 +12110103,"Docady Service Will Shutdown July 31, 2016",http://www.docady.com/,1,1,antr,7/17/2016 13:31 +10979519,"Show HN: Making video consumption easier, fun and powerful",http://www.handson.tv,3,2,handsontv,1/27/2016 11:37 +10869032,RustBelt: Logical Foundations for the Future of Safe Systems Programming,http://plv.mpi-sws.org/rustbelt/#project,98,16,ingve,1/8/2016 23:16 +10278828,British 'Karma Police' program carries out mass surveillance of the web,http://www.theverge.com/2015/9/25/9397119/gchq-karma-police-web-surveillance,13,1,kposehn,9/25/2015 15:53 +12047986,"Web DRM moves to next phase, Defective by Design to continue opposition",https://www.defectivebydesign.org/blog/web_drm_standard_next_phase_dbd_continued_opps,90,51,jrepin,7/7/2016 7:33 +12002093,Convey raises $4.5M Series A to improve your delivery experience,http://m.builtinaustin.com/2016/06/28/convey-raises-45-million-series-a,1,1,billhendricksjr,6/29/2016 15:11 +10415174,Wikipedia is significantly amplifying the impact of Open Access publications,http://blogs.lse.ac.uk/impactofsocialsciences/2015/09/08/wikipedia-amplifying-impact-of-open-access/,101,3,lermontov,10/19/2015 19:41 +10404825,"When scale confounds our perceptions, stories can clarify them",http://nautil.us/issue/29/scaling/why-you-didnt-see-it-coming,39,2,dnetesn,10/17/2015 16:05 +10322266,"Ask HN: As a first-time founder, where should I be spending my time?",,4,9,Apane101,10/3/2015 1:39 +11243053,Could machines have become self-aware without us knowing it?,https://aeon.co/essays/could-machines-have-become-self-aware-without-our-knowing-it,4,2,geographomics,3/8/2016 1:40 +11916620,PG Casts Postgres Screencasts,https://www.pgcasts.com/,260,55,craigkerstiens,6/16/2016 15:06 +10701900,An Illustrated Guide to Introverts in a Startup,http://www.quietrev.com/an-illustrated-guide-to-introverts-in-a-start-up/,12,3,meridian54,12/9/2015 4:27 +12459174,Hakaru Probabilistic Programming,https://hakaru-dev.github.io/,104,13,avindroth,9/9/2016 1:59 +10904827,Show HN: Birdly Use your enterprise software from messaging apps like Slack,http://infos.getbirdly.com,35,4,qhoang09,1/14/2016 21:51 +12578522,Ask HN: How do you pass on your work when you die?,,6,3,PascLeRasc,9/26/2016 1:17 +10416275,US transportation secretary announces drone registration requirement,https://www.transportation.gov/briefing-room/us-transportation-secretary-anthony-foxx-announces-unmanned-aircraft-registration,67,57,Thorondor,10/19/2015 22:34 +10556014,Ask HN: Open Source Monitoring Service,,2,2,uberneo,11/12/2015 20:51 +10425185,Yahoo Talent Exodus Accelerates as Marissa Mayers Turnaround Flounders,https://recode.net/2015/10/19/yahoo-talent-exodus-accelerates-as-marissa-mayers-turnaround-flounders/,137,127,SeanBoocock,10/21/2015 13:19 +11555190,The Case for SoundCloud,http://www.thembj.org/2016/04/the-case-for-soundcloud/,55,36,techthumb,4/23/2016 12:03 +10362873,Create Slack Notifications Using the Amazon Dash Button,http://thoughtpalette.com/thoughts/creating-coffee-done-notification-through-slack-using-amazon-dash-button/,1,1,thoughtpalette,10/9/2015 19:55 +11515106,"UC Berkeley student questioned, refused service after speaking Arabic on flight",http://www.dailycal.org/2016/04/14/uc-berkeley-student-questioned-refused-service-speaking-arabic-flight/,66,91,raju,4/17/2016 16:32 +10426485,Ask HN: Is there a reason I shouldn't open source payment related code?,,3,3,alexggordon,10/21/2015 16:20 +11133489,Beijing is banning all foreign media from publishing online in China,http://qz.com/620076/beijing-is-banning-all-foreign-media-from-publishing-online-in-china/,501,263,vincvinc,2/19/2016 14:07 +12451085,The Most Terrifying Term in the Entrepreneurial Dictionary,https://hackernoon.com/dear-unit-economics-i-hate-you-7c28b9aef08d#.jvp0w1tjv,2,1,guyshachar,9/8/2016 7:55 +11224461,Show HN: Attendize An open-source ticket selling alternative to Eventbrite,https://www.attendize.com,8,5,dignite,3/4/2016 15:45 +10574918,"All Excuses Aside, Apple's Major Problem Is Tim Cook",http://www.forbes.com/sites/jaysomaney/2015/11/15/all-excuses-aside-apples-major-problem-is-tim-cook/,2,2,spking,11/16/2015 15:26 +10446284,Closing the Loopholes in Europe's Net Neutrality Compromise,https://www.eff.org/deeplinks/2015/10/closing-loopholes-europes-net-neutrality-compromise,80,6,DiabloD3,10/25/2015 7:40 +11567448,What Would Happen If We Just Gave People Money?,http://fivethirtyeight.com/features/universal-basic-income/,33,25,bkurtz13,4/25/2016 21:19 +11145636,Samsung Presenting New Galaxy S7 (Live Stream),http://www.samsung.com/de/home/,2,1,insulanian,2/21/2016 18:10 +10838802,OMRON LUNA-88K,http://www.openbsd.org/luna88k.html,2,1,icanhackit,1/4/2016 21:29 +11791389,Jim Clark on Productivity: Dont Spend Your Day on Social Media,http://calnewport.com/blog/2016/05/27/jim-clark-on-productivity-dont-spend-your-day-on-social-media-instead-spend-your-day-building-the-next-big-thing/,8,2,0x54MUR41,5/28/2016 12:19 +11047838,Show HN: Insideout does this new approach to Python packaging makes sense?,https://github.com/ffunenga/insideout,18,9,ffunenga,2/6/2016 14:25 +10750258,"Correction to article: ""First Person to Hack iPhone Built Self-Driving Car""",https://www.teslamotors.com/support/correction-article-first-person-hack-iphone-built-self-driving-car,148,47,jdkanani,12/17/2015 8:28 +10553420,A Farewell to HearthArena,https://www.reddit.com/r/hearthstone/comments/3sj3a7/a_farewell_to_heartharena/,4,1,alex_c,11/12/2015 14:50 +12505424,Alexa now has over 3000 skills,http://www.businessinsider.com/amazons-alexa-now-has-more-than-3000-skills-2016-9,1,1,sharemywin,9/15/2016 12:17 +11843506,IBM to US Senators: Yo Kids So CS-Stupid Nobody Wants to Hire Them,https://slashdot.org/submission/5942461/ibm-to-us-senators-yo-kids-so-cs-stupid-nobody-wants-to-hire-them,10,1,theodpHN,6/5/2016 22:35 +11760189,Pale Moon drops ReactOS support,https://forum.palemoon.org/viewtopic.php?t=12011#p84556,1,1,jeditobe,5/24/2016 10:09 +12299280,Sam Altman talks with Mark Zuckerberg about how to build the future [video],http://themacro.com/articles/2016/08/mark-zuckerberg-future-interview/,341,250,jameshk,8/16/2016 18:04 +10818558,Window Tax in Great Britain,https://en.wikipedia.org/wiki/Window_tax,3,1,gortok,12/31/2015 17:25 +12123078,?The best Linux laptop: The 2016 Dell XPS 13,http://www.zdnet.com/article/the-best-linux-laptop-the-2016-dell-xps-13/,4,3,ohjeez,7/19/2016 17:14 +12047626,Towards a Unified Theory of Operational Transformation and CRDT,https://medium.com/@raphlinus/towards-a-unified-theory-of-operational-transformation-and-crdt-70485876f72f#.rkqr4vcgy,1,1,beefsack,7/7/2016 5:31 +10498204,Feature Flag-Driven Development,http://blog.launchdarkly.com/feature-flag-driven-development/,15,13,mikojava,11/3/2015 8:10 +11744947,Statistical interpretation of Logistic Regression,https://medium.com/a-year-of-artificial-intelligence/rohan-6-follow-up-statistical-interpretation-of-logistic-regression-e78de3b4d938#.mtnu9ky5b,60,5,mckapur2,5/21/2016 15:20 +11607056,Berlin Is Banning Most Vacation Apartment Rentals,http://www.citylab.com/housing/2016/04/airbnb-rentals-berlin-vacation-apartment-law/480381/,143,178,haldujai,5/1/2016 17:41 +11863516,Is this booming Northwest land a paradise or disaster waiting to happen?,http://www.latimes.com/nation/la-na-sej-cascadia-06062016-snap-htmlstory.html,4,1,yonderboy,6/8/2016 16:39 +10472916,Federal appeals court says NSA phone metadata collection can continue,http://arstechnica.com/tech-policy/2015/10/court-says-its-again-legal-for-nsa-to-spy-on-you-because-congress-says-its-ok/,180,31,AdmiralAsshat,10/29/2015 17:51 +10462922,Ask HN: Where can I find a list of *all* libraries/technologies?,,1,5,bujivo,10/28/2015 5:02 +10808999,Pop culture is finally getting hacking right,http://www.theatlantic.com/entertainment/archive/2015/12/hollywood-is-finally-starting-to-get-hacking-right/417732/?single_page=true,3,1,CoreSet,12/29/2015 20:53 +12050823,XMPP IoT Anti-Patterns,http://geekplace.eu/flow/posts/2016-07-04-xmpp-iot-antipatterns.html,5,4,ge0rg,7/7/2016 17:31 +11554151,Not All Practice Makes Perfect,http://nautil.us/issue/35/boundaries/not-all-practice-makes-perfect,153,61,DiabloD3,4/23/2016 4:26 +10637504,John Carmack Reviews Bazaar on GearVR,https://www.facebook.com/permalink.php?story_fbid=1717273305173846&id=100006735798590,33,2,tsemple,11/27/2015 14:48 +10444088,Hackers Are Using CCTV Cameras to Create Botnet Swarms,http://motherboard.vice.com/read/hackers-are-using-cctv-cameras-to-create-botnet-swarms,1,2,devhxinc,10/24/2015 16:32 +11200349,Declining Employee Loyalty: A Casualty of the New Workplace,http://knowledge.wharton.upenn.edu/article/declining-employee-loyalty-a-casualty-of-the-new-workplace/,6,3,bootload,3/1/2016 2:09 +10850762,How the Daily Fantasy Sports Industry Turns Fans into Suckers,http://www.nytimes.com/2016/01/06/magazine/how-the-daily-fantasy-sports-industry-turns-fans-into-suckers.html,178,147,scottfr,1/6/2016 14:55 +10837357,Ask HN: Easiest document management system for a small business?,,3,9,brightball,1/4/2016 18:24 +12133695,We found a JavaScript UI library that performs great on Android mobile web,,4,6,craig_evans,7/21/2016 0:36 +10587876,Show HN: JSON Diff Online JSON Diff Finder,http://json-diff.com,10,2,justspamjustin,11/18/2015 14:37 +10228479,Ask HN: How do you find a trustworthy technical co-founder?,,2,1,tonydolore,9/16/2015 17:53 +10609768,Ask HN: Someone is interested in purchasing ownership of my plugin. Is a scam?,,2,1,achairapart,11/22/2015 11:23 +10282582,"The Mason Jar, Reborn",http://www.theatlantic.com/technology/archive/2015/09/mason-jar-history/403762/?single_page=true,31,23,pmcpinto,9/26/2015 8:49 +12285383,Java Lazy Streamed Zip Implementation,https://github.com/tsabirgaliev/zip,2,1,based2,8/14/2016 12:52 +10619150,"PCG, a Family of Better Random Number Generators",http://www.pcg-random.org/,12,1,colinprince,11/24/2015 4:40 +11061993,HeadsUp Voice recognition system for drivers,https://getheadsup.com,26,13,headsup,2/9/2016 0:12 +10475592,Node.js 5.0 Released,https://github.com/nodejs/node/blob/v5.0.0/CHANGELOG.md,12,3,thrashr888,10/30/2015 1:16 +10802046,Ask HN: What system do you use for tracking and annotating academic papers?,,34,25,chollida1,12/28/2015 16:59 +11772669,Top 40 Software Development Books,http://aioptify.com/top-software-books.php?utm_source=hackernews&utm_medium=cpm&utm_campaign=topsoftwarebooks,1,1,jahan,5/25/2016 20:05 +10722052,"Steve Jobs, the son of a migrant from Syria",http://www.banksy.co.uk/img/1215/jobs_02.jpg,4,3,kurren,12/12/2015 6:55 +12420763,500 Byte Images: The Haiku Vector Icon Format,http://blog.leahhanson.us/post/recursecenter2016/haiku_icons.html,265,81,luu,9/3/2016 19:41 +10613401,Please Stop Writing Secure Messaging Tools,http://dymaxion.org/essays/pleasestop.html,69,82,zurn,11/23/2015 8:16 +11564749,Travis for scientific experiments,http://www.monperrus.net/martin/travis-for-scientific-experiments,3,1,rsommerard,4/25/2016 15:18 +10377449,My first impressions about Go language,http://blog.balazspocze.me/2015/10/13/my-first-impressions-about-go-language/,3,1,banyek,10/12/2015 23:21 +11662540,A spammy security flaw in JIRA Service,http://qz.com/679209/corporate-developers-beware-theres-a-spammy-security-flaw-in-jira-service-desk/,8,1,danso,5/9/2016 19:42 +12192694,Hacking Google for fun and profit,https://introvertmac.wordpress.com/2016/07/30/hacking-google-for-fun-and-profit/,19,2,introvertmac,7/30/2016 12:33 +12191135,Ask HN: Why does a request get sent to HN every-time I collapse/expand a comment?,,3,2,oolongCat,7/30/2016 1:03 +11288435,"AlphaGo, first AI to be awarded 9-dan title",https://twitter.com/mbcnews/status/709557327616024576,1,1,raingrove,3/15/2016 9:31 +10305625,My life as a NATO collaborator (1989) [pdf],http://guppylake.com/~nsb/WarSpy/SpyInHouseOfWar.pdf,1,1,maxjus,9/30/2015 17:33 +11238069,Git branches Is your mental model wrong?,http://bluespot.io/2016/03/02/git-branches-is-your-mental-model-wrong.html,1,1,neilos,3/7/2016 10:19 +10253098,Proposed encryption policy for government of india [pdf],http://deity.gov.in/sites/upload_files/dit/files/draft%20Encryption%20Policyv1.pdf,4,1,coolharsh,9/21/2015 15:56 +11070093,An awesome list of developers to follow and learn from,https://github.com/douglascorrea/awesome-developers,5,4,dougcorrea,2/10/2016 1:03 +10386191,Canal Defence Light,https://en.wikipedia.org/wiki/Canal_Defence_Light,33,16,vinnyglennon,10/14/2015 12:28 +11335380,A Tribute to Andy Grove (2015) [video],http://a16z.com/2015/09/28/the-man-who-built-silicon-valley-a-tribute-to-andy-grove/,224,24,fforflo,3/22/2016 9:44 +10476086,Why is NOAA withholding climate documents from Congress?,http://news.yahoo.com/why-noaa-withholding-climate-documents-congress-155626185.html,6,1,shawndumas,10/30/2015 4:00 +11635471,Bitcoin 'creator' backs out of Satoshi coin move 'proof',http://www.bbc.co.uk/news/technology-36213580,399,279,blacktulip,5/5/2016 12:33 +10185290,"Comparing Python Command-Line Parsing Libraries Argparse, Docopt, and Click",https://realpython.com/blog/python/comparing-python-command-line-parsing-libraries-argparse-docopt-click#.Ve7WMmFITPM.hackernews,26,6,mjhea0,9/8/2015 12:36 +11328812,Android Ns freeform window mode,http://arstechnica.com/gadgets/2016/03/this-is-android-ns-freeform-window-mode/,71,45,axg,3/21/2016 15:38 +11903409,A Lab-Grown Diamond Is Forever,http://www.racked.com/2016/6/14/11872830/lab-grown-diamonds-synthetic,107,106,nols,6/14/2016 17:02 +10236757,Ask HN: Must-haves when it comes to optimising web applications performance?,,1,2,siquick,9/17/2015 23:45 +11973365,How to Backdoor Diffie-Hellman,http://eprint.iacr.org/2016/644,221,34,baby,6/24/2016 20:51 +11178493,What This Medieval Wine Jug Can Tell Us About Islam,http://www.prospectmagazine.co.uk/blogs/sameer-rahim/what-this-medieval-wine-jug-can-tell-us-about-islam,26,15,Thevet,2/25/2016 22:53 +10437703,Etsy Manufacturing Opens to Designers,https://blog.etsy.com/news/2015/etsy-manufacturing-opens-to-designers/,33,15,hownottowrite,10/23/2015 10:05 +10865156,An open letter to Paul Graham,https://medium.com/newco/an-open-letter-to-paul-graham-3d4f3369fe76#.28fltpvf4,111,184,zawaideh,1/8/2016 14:45 +10935590,HTT Breaks Ground to Make Hyperloop a Reality,http://techcrunch.com/2016/01/19/hyperloop-transportation-technologies-breaks-ground-to-make-elon-musks-hyperloop-a-reality/,38,35,daegloe,1/20/2016 2:06 +10316872,Ask HN: Implementing a graph database using Postgres tables for nodes and edges?,,87,60,jordanchan,10/2/2015 5:26 +11232986,Ask HN: How can I grow my porn startup?,,8,3,abba_fishhead,3/6/2016 8:50 +11570543,Uber accuses Ola of making false bookings on its platform,http://articles.economictimes.indiatimes.com/2016-03-23/news/71758823_1_uber-officials-indian-taxi-market-ola,2,2,krisgenre,4/26/2016 9:48 +12059357,Returning to the Original Social Network,https://begriffs.com/posts/2016-07-08-returning-original-social-network.html?hn=1,59,3,begriffs,7/8/2016 23:45 +11390576,Show HN: DataRole- the Address Intelligence Data Platform,https://www.datarole.com/,6,1,brandonlipman,3/30/2016 16:38 +12165322,Ask HN: How to market a chrome extension?,,16,2,azazqadir,7/26/2016 13:12 +10186837,Jq: a lightweight and flexible command-line JSON processor,https://stedolan.github.io/jq/,1,1,comice,9/8/2015 17:00 +12037859,Sigil Generator,http://vacuumflowers.com/sigils/difference.html,2,1,newobj,7/5/2016 17:02 +11407888,Ask HN: How do you diversify your income?,,19,15,CoreSet,4/1/2016 19:38 +10767203,"Microsoft Apologizes for Surface Pro 4, Surface Book Issues",http://www.digitaltrends.com/computing/microsoft-says-sorry-surface-pro-4-surface-book-issues/,1,1,ximeng,12/20/2015 15:08 +10542211,Well-Kept Gardens Die by Pacifism,http://lesswrong.com/lw/c1/wellkept_gardens_die_by_pacifism/,9,7,Tomte,11/10/2015 20:29 +11970829,AdBlock Plus Now Illegal in Germany,https://translate.google.de/translate?sl=auto&tl=en&js=y&prev=_t&hl=de&ie=UTF-8&u=http%3A%2F%2Fmeedia.de%2F2016%2F06%2F24%2Faxel-springer-vs-eyeo-olg-koeln-erklaert-geschaeftsmodell-von-adblock-plus-fuer-rechtswidrig%2F&edit-text=&act=url,14,18,vincent_s,6/24/2016 16:00 +12130009,Ask HN: What do you use for realtime code collaboration?,,2,1,ctb_mg,7/20/2016 15:55 +10644151,4 Ways to Get Firm and Cute by Lowering Firmicutes,http://www.huffingtonpost.com/alan-christianson/four-way-to-get-firm-and-_b_6344320.html,1,1,nyc111,11/29/2015 8:42 +11533307,Antitrust: EU Commission Lodges Complaints on Google for Android OS,http://europa.eu/rapid/press-release_IP-16-1492_en.htm,34,10,Aissen,4/20/2016 10:08 +11707852,Most Reliable Hosting Company Sites in April 2016,http://news.netcraft.com/archives/2016/05/04/most-reliable-hosting-company-sites-in-april-2016.html,1,1,based2,5/16/2016 17:19 +10183905,Indias civil servant exam,https://www.thestar.com/news/world/2015/09/07/are-you-smart-enough-to-pass-indias-civil-servant-exam-no.html,61,47,kareemm,9/8/2015 2:19 +11106677,"Ransomware takes Hollywood hospital offline, $3.6M demanded by attackers",http://www.csoonline.com/article/3033160/security/ransomware-takes-hollywood-hospital-offline-36m-demanded-by-attackers.html,93,49,tapp,2/15/2016 22:54 +11179380,How to Spot a Narcissist (Trump),http://blog.dilbert.com/post/139910704581/how-to-spot-a-narcissist-trump-persuasion-series,2,2,porjo,2/26/2016 2:01 +11578065,The Legendary Study That Embarrassed Wine Experts Across the Globe,http://www.realclearscience.com/blog/2014/08/the_most_infamous_study_on_wine_tasting.html,8,1,tomaskazemekas,4/27/2016 5:46 +10508384,Americas labour market is not working,http://www.ft.com/cms/s/0/4dcb5c58-818d-11e5-8095-ed1a37d1e096.html#axzz3qY0SPhpp,6,4,lujim,11/4/2015 18:09 +11294086,After Cash: All Fun and Games Until Somebody Loses a Bank Account,http://www.bloombergview.com/articles/2016-03-15/the-end-of-cash-and-the-rise-of-government-power,170,226,jseliger,3/16/2016 0:21 +11600550,Hover small drone camera that hovers,http://techcrunch.com/2016/04/26/hover-a-self-flying-camera-drone-lands-25m-for-better-aerial-shots/?ncid=rss&cps=gravity_1462_6192759752419939792,3,1,dannylandau,4/30/2016 5:48 +10781091,The language of productivity is now being used to advocate napping on the job,http://wilsonquarterly.com/stories/want-to-boost-the-economy-take-a-nap-at-work/,83,60,seventyhorses,12/22/2015 23:36 +10565544,How Tracking Protection Works in Firefox,http://feeding.cloud.geek.nz/posts/how-tracking-protection-works-in-firefox/,94,41,ronjouch,11/14/2015 13:15 +10280313,The official Nmap mailing list stores user passwords in plaintext,https://nmap.org/mailman/listinfo/announce,1,1,RIMR,9/25/2015 19:56 +11396847,Why Tech Professionals Now Share a Fate with the Working Class,http://www.fastcompany.com/3057502/the-future-of-work/why-tech-professionals-now-share-a-fate-with-the-working-class,22,6,jackgavigan,3/31/2016 13:09 +12322838,Suggest HN: Force downvoters to punch in why,,13,19,digitalarborist,8/19/2016 19:32 +12005544,Female ENIAC Programmers Pioneered the Software Industry,http://iq.intel.com/how-female-eniac-programmers-pioneered-the-software-industry/,2,1,taylorbuley,6/29/2016 23:16 +10587512,My Home-Built TTL Computer Processor,http://cpuville.com,62,27,ch,11/18/2015 13:22 +10587616,"Katherine Johnson, NASA Mathematician, to Receive Presidential Medal of Freedom",http://www.wvgazettemail.com/article/20151116/GZ01/151119605/1101,59,2,ColinWright,11/18/2015 13:48 +11222970,Boycottdocker.org,http://www.boycottdocker.org/,3,1,adm_hn,3/4/2016 10:45 +12081960,Why most clever code aint so clever after all,https://drive.google.com/file/d/0B59Tysg-nEQZOGhsU0U5QXo0Sjg/view,104,102,partisan,7/12/2016 20:09 +11657346,Ask HN: Is it still worth it for a mobile developer to learn (front-end) web?,,2,3,isuckatcoding,5/9/2016 3:03 +10776587,On the Juniper backdoor,http://blog.cryptographyengineering.com/2015/12/on-juniper-backdoor.html,262,48,Perceptes,12/22/2015 8:50 +11751619,Show HN: Git-psuh Fix your mistakes through negative reinforcement,https://github.com/Detry322/git-psuh,6,1,Detry322,5/23/2016 3:18 +10244920,Problem with Amazon SES Undetermined Bounce Status,,2,2,hackmyway,9/19/2015 17:31 +12436097,On nodevember,https://medium.com/@nodebotanist/on-nodevember-f28a42c4b62e#.4q4kzk38e,18,9,midgetjones,9/6/2016 14:08 +12021884,"Survey: UK-based Software Engineers, how much do you earn?",http://www.polljunkie.com/poll/cyczgz/uk-software-engineer-salary-survey,3,2,henrysduster,7/2/2016 8:46 +11743230,What I learned from programming databases,http://www.philipotoole.com/what-i-learned-from-programming-a-database/,12,6,otoolep,5/21/2016 4:40 +11040550,New Dilemmas for the Prisoner (2013),http://www.americanscientist.org/issues/pub/new-dilemmas-for-the-prisoner,67,14,zeristor,2/5/2016 10:10 +11935044,Venezuelans Ransack Stores as Hunger Grips the Nation,http://www.nytimes.com/2016/06/20/world/americas/venezuelans-ransack-stores-as-hunger-stalks-crumbling-nation.html,80,79,randomname2,6/19/2016 22:35 +10968852,SmartBody Ogre Crowd Emscripten Demo Character Animation Engine,http://smartbody.ict.usc.edu/Javascript/smartbodyJS/demos/OgreCrowdDemo.html,2,1,vmorgulis,1/25/2016 18:25 +11394831,Interview with John Carlos Baez,https://johncarlosbaez.wordpress.com/2016/03/18/interview-part-1/,12,3,subnaught,3/31/2016 3:41 +10799732,Pricks,http://pricks.com,4,1,empressplay,12/28/2015 3:37 +10547934,"Bringing Julia from beta to 1.0 to support data-intensive, scientific computing",https://www.moore.org/newsroom/in-the-news/2015/11/10/bringing-julia-from-beta-to-1.0-to-support-data-intensive-scientific-computing,5,1,leephillips,11/11/2015 17:47 +12268976,Ask HN: Which companies hire remote only or remote first?,,6,2,tsaprailis,8/11/2016 15:25 +11640028,I'm Black and I do not carry hot-sauce around,https://medium.com/@mrjack/im-black-i-do-not-carry-hot-sauce-around-2b99248330b4,1,4,brittonrt,5/5/2016 22:08 +11541156,How blockchain will revolutionise far more than money,https://aeon.co/essays/how-blockchain-will-revolutionise-far-more-than-money,55,29,jonbaer,4/21/2016 11:28 +12464343,Aurora RDS vs. Google CloudSQL Benchmark,http://2ndwatch.com/blog/benchmarking-amazon-aurora/,15,5,callmeradical,9/9/2016 17:32 +10739366,Deposition dos and donts: How to answer tricky questions (2008),http://www.currentpsychiatry.com/home/article/deposition-dos-and-donts-how-to-answer-8-tricky-questions/ee52a1ba792db9cb7690df337d16d21b.html,2,1,gist,12/15/2015 18:15 +10324044,Elon Musks sleight of hand,https://medium.com/@gavinsblog/elon-musk-s-sleight-of-hand-ea2b078ed8e6,20,8,deegles,10/3/2015 14:43 +11856603,Are there ways to increase the rate at which humans can output information?,,5,11,faizanbhat,6/7/2016 18:30 +10635423,"Details on Gremlin's new ""Quantum Walks"" graph algorithm [pdf]",http://arxiv.org/abs/1511.06278,14,1,espeed,11/27/2015 1:17 +10545853,Code Modernization,https://software.intel.com/en-us/articles/what-is-code-modernization,14,1,ingve,11/11/2015 10:22 +11124378,Spotify: A guide to poor API management,https://jodal.no/2016/02/18/guide-to-poohttps://jodal.no/2016/02/18/guide-to-poor-api-management/r-api-management/,1,2,chei0aiV,2/18/2016 8:06 +11059459,A search and recommendation engine for the gaming industry,http://www.gametionary.com,2,1,gametionary,2/8/2016 17:30 +11067843,"Ken Olsen, Who Built DEC into a Power (2011)",http://www.nytimes.com/2011/02/08/technology/business-computing/08olsen.html,11,7,mtviewdave,2/9/2016 19:11 +10884011,"Introduction to Statistical Learning, with Applications in R",https://lagunita.stanford.edu/courses/HumanitiesSciences/StatLearning/Winter2016/about,222,46,fitzwatermellow,1/11/2016 22:15 +12540892,Seattle Tech Vets to Propose Driverless Stretch of Interstate 5,http://washpost.bloomberg.com/Story?docId=1376-ODMF9JSYF01X01-0NEKUI1LE2MAPG7S7PMHFK10EK,2,3,dmckeon,9/20/2016 16:44 +10443833,Do Programmers Practice Computer Science?,http://www.daedtech.com/do-programmers-practice-computer-science,5,2,vezzy-fnord,10/24/2015 15:16 +12503803,Is it really hard to make a browser which consumes less battery and resources?,,1,5,andrewvijay,9/15/2016 6:01 +10256237,Imgur.com exploit that allowed arbitrary JavaScript to be embedded,,15,1,forgotmypassw,9/22/2015 1:53 +11125166,Why one woman stole 47M academic papers and made them all free to read,http://www.vox.com/2016/2/17/11024334/sci-hub-free-academic-papers,3,1,ck2,2/18/2016 12:06 +11440572,How a prominent VC is helping reshape winning strategy for basketball,http://www.wsj.com/articles/the-golden-state-warriors-have-revolutionized-basketball-1459956975,5,3,grellas,4/6/2016 18:11 +10617296,Slack is Down,http://techcrunch.com/2015/11/23/slack-is-having-a-panic-attack/,63,55,kordless,11/23/2015 21:06 +12355764,Social media stats from various web entities,https://github.com/advectus/rsocial,2,1,advectus,8/24/2016 22:32 +11119145,"Neural Network in Quartz Composer, by Mike Matas",https://www.youtube.com/watch?v=eUEr4P_RWDA&utm_source=designernews,3,1,prkr,2/17/2016 16:49 +12180930,"Ask HN: If the 'Startup Bubble' Does Burst, What Happens to All Those Assets?",,1,2,markhall,7/28/2016 15:45 +12203884,Dyson 360 Eye Robot Released,http://www.dyson.com/vacuum-cleaners/robot/dyson-360-eye.aspx,3,1,uptown,8/1/2016 16:46 +11550591,Microsoft and Alphabet shed $60bn of Value,http://www.ft.com/intl/cms/s/0/dc3cd662-089a-11e6-b6d3-746f8e9cdd33.html,33,10,Finbarr,4/22/2016 16:58 +10332258,A podcast for new Rust programmers,http://www.newrustacean.com/,1,1,steveklabnik,10/5/2015 15:06 +10892196,The Stone Reader Modern Philosophy in 133 Arguments,http://www.thestonereader.com,15,5,pavornyoh,1/13/2016 3:44 +10672448,Kickstarter Is (Sorta) Debt A Bolt Case Study,https://medium.com/@maneeshsethi/kickstarter-is-sorta-debt-a-bolt-case-study-4c879753d85d#.gg0vd7cfk,16,1,simplimedia,12/3/2015 20:41 +12401128,France: Open Access Law Adopted,https://www.openaire.eu/france-final-text-of-the-law-for-oa-has-been-adopted,266,57,okket,8/31/2016 20:12 +11743901,"Show HN: NetVia - Share anything, with style",http://www.thenetvia.com,2,2,bgrgndz,5/21/2016 9:07 +11234810,3 Reasons Why It Is Time to Onboard Users with GIFs,https://medium.com/@tcovestad/3-reasons-why-it-is-time-to-onboard-users-with-gifs-401bddf4c69,14,3,iverjo,3/6/2016 18:28 +10643327,Succeeding at sales: a guide for small business owners,http://www.theguardian.com/small-business-network/2015/jan/28/succeeding-sales-guide-small-business-owners,2,1,wslh,11/29/2015 1:19 +11432502,Medium for Publishers,https://publishers.medium.com/,2,1,larrysalibra,4/5/2016 17:35 +11712272,Picking technologies for a desktop app in 2016,https://fman.io/blog/picking-technologies-for-a-desktop-app-in-2016,8,5,mherrmann,5/17/2016 9:37 +10177537,Zeigarnik Effect,http://www.psychwiki.com/wiki/Zeigarnik_Effect,42,6,2a0c40,9/6/2015 13:16 +11857241,How Windows 10 became malware,http://www.computerworld.com/article/3080102/operating-systems/how-windows-10-became-malware.html,56,14,alt_,6/7/2016 19:50 +11463357,Support of OpenBSD pledge(2) in programming languages,https://gist.github.com/ligurio/f6114bd1df371047dd80ea9b8a55c104,136,52,protomyth,4/9/2016 21:12 +10377387,California makes electric skateboards street legal,http://www.theverge.com/2015/10/12/9512045/electric-skateboards-legalized-california-zboard-boosted,84,77,danboarder,10/12/2015 23:00 +10772245,Black box trading: why they all blow up,http://globalslant.com/2015/06/black-box-trading-why-they-all-blow-up/,2,1,tmbsundar,12/21/2015 17:42 +10953248,How to Ensure You Dont Hire Anyone,https://medium.com/@morgane/how-to-not-impress-me-during-the-interview-process-b2b99f30298b,14,2,mooreds,1/22/2016 15:31 +10736999,The Jacobs Ladder of Coding,https://medium.com/@thi.ng/the-jacob-s-ladder-of-coding-4b12477a26c1,201,18,franzb,12/15/2015 10:39 +10640719,Explorations in Point Cloud Slitscanning,https://github.com/golanlevin/ExperimentalCapture/blob/master/students/michelle/project3.md,12,2,M4urice,11/28/2015 10:51 +10867791,The Chinese Room Argument,http://plato.stanford.edu/entries/chinese-room/,33,58,danso,1/8/2016 20:06 +11652938,Egyptian official blames middle east violence on Tom and Jerry,http://www.middleeasteye.net/news/tom-and-jerry-blame-middle-east-violence-top-egypt-intelligence-official-2022746,4,2,notliketherest,5/8/2016 6:32 +10249887,Selling Out and the Death of Hacker Culture,https://medium.com/@folz/selling-out-and-the-death-of-hacker-culture-fec1f101b138,55,19,zeeshanm,9/21/2015 1:11 +10499683,Show HN: React for Beginners,https://reactforbeginners.com/,178,44,wesbos,11/3/2015 14:26 +10393795,Fragmenta A Golang CMS,http://fragmenta.eu/,6,2,im_dario,10/15/2015 15:43 +10710266,SHA-1 Deprecation: No Browser Left Behind,https://blog.cloudflare.com/sha-1-deprecation-no-browser-left-behind,3,1,jgrahamc,12/10/2015 12:24 +10429939,Epic Fail: Electronic Health Records and Lack of Interoperability,http://www.motherjones.com/politics/2015/10/epic-systems-judith-faulkner-hitech-ehr-interoperability,2,1,friism,10/22/2015 1:31 +12106872,New filament allows printing metal on any 3D printer,http://3dprintingindustry.com/news/now-can-print-metal-3d-printer-85255/,2,1,ubuntourist,7/16/2016 16:29 +11824203,Show HN: Reactpack one command to build your React front end,https://github.com/olahol/reactpack,108,45,ola,6/2/2016 17:11 +10548727,Ask HN: Crazy but plausible uses of neural nets,,2,1,oxplot,11/11/2015 19:39 +10700809,Ask HN: How to start developing distributed software?,,2,4,nonotmeplease,12/9/2015 0:01 +10395694,Show HN: Golang statistics package with 100% code coverage,https://github.com/montanaflynn/stats,40,22,anonfunction,10/15/2015 20:16 +11538597,"Tesla Model X owners finding car doors wont shut, windows wont close",http://techcrunch.com/2016/04/20/tesla-model-x-owners-finding-car-doors-wont-shut-windows-wont-close/,124,133,outworlder,4/20/2016 23:46 +10415461,Windchill Refrigerator: Cheap device to keep food cold without electricity,http://www.cbc.ca/news/canada/calgary/uofc-first-place-biomimicry-1.3273816,76,19,nkurz,10/19/2015 20:24 +10876834,A Start-Up That Aims to Bring Back the Farm-to-Vase Bouquet,http://www.nytimes.com/2016/01/10/business/a-start-up-that-aims-to-bring-back-the-farm-to-vase-bouquet.html,9,3,e15ctr0n,1/10/2016 19:48 +10789560,Vue.js: 2015 in Review,http://blog.evanyou.me/2015/12/20/vuejs-2015-in-review/,101,21,gwintrob,12/24/2015 21:01 +10440710,New font lets anyone learn Japanese,http://www.dramafever.com/news/new-font-incorporates-english-pronunciation-guide-into-japanese-katakana-characters-/,2,1,callumlocke,10/23/2015 19:16 +11462655,Ask HN: What is your favorite computer science related podcast?,,1,2,l3robot,4/9/2016 18:43 +11687972,Advanced Research Projects from DARPA's Pentagon Demo Day,http://spectrum.ieee.org/tech-talk/computing/hardware/advanced-research-projects-from-darpas-pentagon-demo-day#.VzUqVYyXA8Y.hackernews,2,1,dendisuhubdy,5/13/2016 1:14 +11939350,"Launch of new personal security device (Crypto currencies, FIDO, PGP, SSH)",https://medium.com/@Ledger/ledger-nano-s-secure-multi-currency-hardware-wallet-65b0574cfaa1#.qjhwor9s3,7,1,totofrance,6/20/2016 17:05 +10735450,Berlin community radio,http://www.berlincommunityradio.com/,45,11,myrrh,12/15/2015 1:53 +11167000,Show HN: GitHub project structure visualizer,http://veniversum.github.io/git-visualizer/,141,40,veniversum,2/24/2016 14:38 +11036976,Study Uncovers How Electromagnetic Fields Amplify Pain in Amputees,http://www.utdallas.edu/news/2016/2/3-31891_Study-Uncovers-How-Electromagnetic-Fields-Amplify-_story-wide.html,30,4,yostrovs,2/4/2016 20:33 +11301241,Precise control over responsive typography,http://madebymike.com.au/writing/precise-control-responsive-typography/,48,10,kaishiro,3/16/2016 22:40 +12390205,Sex Tech for Long Distance Touch SayberX.com,http://sayberx.com/,4,1,kaitynotes,8/30/2016 14:03 +12257537,Ask HN: Any computer vision specialist here? I have a problem with OpenTLD,,1,1,shirman,8/9/2016 20:37 +10981960,The Odds of Becoming a Millionaire,http://www.bloomberg.com/features/2016-millionaire-odds/,2,2,ca98am79,1/27/2016 18:38 +12513725,Ask HN: Declining NDAs,,3,2,nxzero,9/16/2016 13:16 +10901288,Show HN: Jotted jsfiddle for self-hosted client-side demos,https://github.com/ghinda/jotted,47,6,ghinda,1/14/2016 13:43 +10979093,Is it better to run outside or on a treadmill?,http://www.bbc.com/news/magazine-35399598,3,3,gpresot,1/27/2016 9:22 +11486786,Vim 8.0 is coming,https://github.com/vim/vim/blob/master/runtime/doc/version8.txt,649,412,mrzool,4/13/2016 9:12 +11223030,Introduction to Spark 2.0: A Sneak Peak at Next Generation Spark,http://blog.madhukaraphatak.com/introduction-to-spark-2.0/,3,1,phatak-dev,3/4/2016 11:06 +11036984,Unreal Engines latest innovation is about building games while inside VR,http://venturebeat.com/2016/02/04/epic-games-lets-you-design-your-game-inside-vr-with-new-edition-of-unreal-engine-editor/,4,1,Impossible,2/4/2016 20:34 +10295124,Show HN: Zero-configiration systemd containers,https://github.com/seletskiy/hastur,28,5,seletskiy,9/29/2015 8:14 +11701766,A BitTorrent search engine base DHT protocol,http://engiy.com,48,11,knift,5/15/2016 17:22 +10766022,The Internet Archive Telethon,http://telethon.archive.org/?ref=hn,177,35,empressplay,12/20/2015 4:10 +12526639,This is what happens when inflation rises 13M%,https://twitter.com/TheKageniMind/status/777581516767494144,2,2,thekagenimind,9/18/2016 19:07 +11635867,iOS Supporting IPv6-Only Networks,https://developer.apple.com/news/?id=05042016a,205,108,r4um,5/5/2016 13:29 +10666660,Ask HN: Technical solutions to connect securely over known MitM'ed connection?,,5,6,iamsohungry,12/2/2015 23:29 +10271175,The prisoners fighting wildfires in California,http://www.bbc.co.uk/news/magazine-34285658,92,43,darrhiggs,9/24/2015 12:20 +11184970,DIRECTORY_HAUNTED_DO_NOT_OPEN = true;,http://patrickjamesmcguire.com/2016/02/26/directory_haunted_do_not_open-true/,2,6,patmcguire,2/26/2016 23:04 +12129713,The solo-bootstrapped SaaS sales challenge,https://www.linguaquote.com/translation-news/the-solo-bootstrapped-saas-sales-challenge,74,10,luxpir,7/20/2016 15:21 +11389512,Git for Mercurial users,https://bitbucket.org/sjl/dotfiles/src/7d16f9d89280c9ae0096fdbc94410a9b881bfe20/gitconfig?fileviewer=file-view-default#gitconfig-10,5,3,jordigh,3/30/2016 14:33 +12221181,HN clone written in Clojure and ClojureScript,https://github.com/ertugrulcetin/ClojureNews,3,1,ertucetin,8/3/2016 20:22 +10688808,Why 'Nudges' Hardly Help,http://www.theatlantic.com/business/archive/2015/12/nudges-effectiveness/418749/?single_page=true,18,20,RyanMcGreal,12/7/2015 11:41 +11971721,"My God, it's full of yaks",http://ronjeffries.com/articles/016-0607/yaks/,184,113,ingve,6/24/2016 17:28 +12267252,Five languages that came from English,http://www.bbc.com/culture/story/20160811-how-english-gave-birth-to-surprising-new-languages,159,129,hvo,8/11/2016 11:02 +11249516,How the Wintergatan Marble Machine works (part 1),https://www.youtube.com/watch?v=uog48viZUbM,3,2,an_ko,3/8/2016 23:07 +10599780,"Ask HN: When iterating, how do you decide which user subset to gravitate toward?",,3,3,mikemajzoub,11/20/2015 5:28 +11636482,Medical Equipment Crashes During Heart Procedure Because of Antivirus Scan,http://news.softpedia.com/news/medical-equipment-crashes-during-heart-procedure-because-of-antivirus-scan-503642.shtml,4,1,jmount,5/5/2016 14:41 +11149629,Smartphone is the wrong name,http://loup-vaillant.fr/articles/smartphone-is-the-wrong-name,75,112,loup-vaillant,2/22/2016 9:34 +10318657,What Will Alphabet Be When It Grows Up?,http://www.technologyreview.com/review/541806/what-will-alphabet-be-when-it-grows-up/,2,1,adenadel,10/2/2015 14:15 +11829114,"BCHS: BSD, C, httpd, SQLite",http://www.learnbchs.org/index.html,6,1,rudolfochrist,6/3/2016 8:53 +11553652,Possible Jenkins Project Infrastructure Compromise,https://jenkins.io/blog/2016/04/22/possible-infra-compromise/,19,1,justinludwig,4/23/2016 1:16 +12492925,Spymasters Plan to Build Great British Firewall,https://www.ft.com/content/85549652-79d1-11e6-97ae-647294649b28,2,3,secfirstmd,9/13/2016 22:58 +11296057,North Korea sentences US tourist to 15 years in prison,http://bigstory.ap.org/article/34724adee8bf4459b82365e4734f9c26/north-korea-sentences-us-tourist-15-years-prison,77,48,setra,3/16/2016 9:39 +11299033,How I Built 180 Websites in 180 days and became a YC Fellowship Founder,https://zube.io/blog/how-i-built-180-websites-in-180-days-and-became-a-yc-fellowship-founder/,72,29,jenniferDewalt,3/16/2016 17:23 +11033074,Brazilian government website hacked. Aedes aegypti mosquitoes over front page,http://www.brasil.gov.br/,1,2,bobowzki,2/4/2016 10:33 +11606682,Ask HN: Is getting into a top ~5 CS PhD program possible in mid-30s?,,14,15,garkimasera,5/1/2016 16:03 +12086908,Pokemon GO Android Controller,https://github.com/xbenjii/PokeMock,1,3,xbenjii,7/13/2016 15:26 +10281468,"Important: Ugh.. i reversed on myself, for the Kohlberg Commons",,1,1,adamclayman,9/25/2015 23:59 +12495543,How to automate Gulp tasks and generate webfont from SVG files,https://medium.com/@BuddyWorks/how-to-automate-gulp-tasks-and-generate-webfont-from-svg-files-43ad6fc70f96,7,2,codecalm,9/14/2016 10:38 +12054596,Show HN: Free and open source page builder for WordPress,http://gettailor.com,202,62,andrewworsfold,7/8/2016 10:37 +10723556,Oh Caml Five Songs about Programming,http://thenewstack.io/oh-caml-five-songs-programming/,3,1,MilnerRoute,12/12/2015 18:17 +10261397,Why we're leaving Heroku,https://www.youbetrayedus.org/heroku/,379,74,rubbingalcohol,9/22/2015 20:17 +11067008,US intelligence chief: we might use the internet of things to spy on you,http://www.theguardian.com/technology/2016/feb/09/internet-of-things-smart-home-devices-government-surveillance-james-clapper,16,5,cryoshon,2/9/2016 17:30 +11052743,Badgers are driving hedgehogs extinct,http://www.rationaloptimist.com/blog/badgers-and-hedgehogs/,54,61,networked,2/7/2016 13:25 +11178379,Python: Why cant we write list.len()?,http://stupidpythonideas.blogspot.com/2016/02/unified-call-syntax.html,4,2,ceronman,2/25/2016 22:34 +10935327,Ask HN: Are you interested in becoming a technical cofounder?,,20,27,robbystout,1/20/2016 0:59 +10651437,The National Security Letter spy tool has been uncloaked,http://arstechnica.com/tech-policy/2015/11/the-national-security-letter-spy-tool-has-been-uncloaked-and-its-bad/,6,1,newman314,11/30/2015 20:11 +11476021,Ask HN: Long term storage for personal files?,,2,5,rahimnathwani,4/11/2016 23:36 +12082394,US: Police Arrest People for Criticizing Cops on Facebook and Twitter,https://theintercept.com/2016/07/12/after-dallas-shootings-police-arrest-people-for-criticizing-cops-on-facebook-and-twitter/,6,1,kushti,7/12/2016 21:26 +12371208,Ask HN: Best way to monitor data incosistency in a distributed system,,2,2,mukgupta,8/27/2016 5:56 +10840524,Ask HN: Do you miss the points showing next to comments?,,4,1,keyle,1/5/2016 2:17 +11479220,TLS and SSH security scans with remediation reports,https://discovery.cryptosense.com,8,1,gram657,4/12/2016 13:13 +11859756,Training a CNN using pictures of faces just got patented,http://patents.justia.com/patent/20160140436,19,9,iofj,6/8/2016 3:17 +12478570,The unknown man who (may have) invented optogenetics,https://www.statnews.com/2016/09/01/optogenetics/,1,1,dharma1,9/12/2016 10:45 +10414658,Convox Rack 0.7: Papertrail and SSL,http://convox.github.io/blog/rack-0-7-papertrail-and-ssl/,16,1,ddollar,10/19/2015 18:31 +11419006,I doomed mankind with a free text editor,https://medium.com/@mortenjust/i-doomed-mankind-with-a-free-text-editor-ba6003319681#.lcckarats,2,1,0x7fffffff,4/4/2016 2:25 +11184536,Venmo Halts New Developer Access To Its API,http://techcrunch.com/2016/02/26/how-not-to-run-a-platform/,97,46,coloneltcb,2/26/2016 21:47 +10891279,The Economics and Politics of Free Basics,https://lobste.rs/s/h2xve1/the_economics_and_politics_of_free_basics_log_thoughts,2,1,andreyf,1/12/2016 23:45 +10971183,The Atlas of Beauty: North Korea,https://maptia.com/mihaelanoroc/stories/the-atlas-of-beauty-north-korea,3,1,samsolomon,1/26/2016 0:45 +10607696,The Ultimate Hacking Keyboard,https://www.crowdsupply.com/ugl/ultimate-hacking-keyboard,8,2,weitzj,11/21/2015 19:15 +10325670,"007, a small experimental language with a license to macro",https://github.com/masak/007,121,14,jsnell,10/3/2015 22:38 +11071286,A Mammals Brain Has Been Cryonically Preserved and Recovered,http://motherboard.vice.com/read/a-rabbit-brain-has-been-cryonically-preserved-and-recovered-brain-preservation-prize,5,1,prostoalex,2/10/2016 7:43 +10300138,Interview with Chris Wanstrath,http://fortune.com/2015/09/29/github-ceo-40-under-40/,10,5,obilgic,9/29/2015 22:10 +10837255,XKCD Substitutions Extension,https://github.com/bahlo/xkcd-substitutions,2,1,orangepenguin,1/4/2016 18:13 +10385269,Netgear Routers Susceptible to Serious DNS Exploit,http://hothardware.com/news/netgear-routers-susceptible-to-serious-dns-exploit-firmware-update-incoming,1,1,Tekker,10/14/2015 6:22 +12552298,LL and LR Parsing Demystified (2013),http://blog.reverberate.org/2013/07/ll-and-lr-parsing-demystified.html,155,35,bleakgadfly,9/21/2016 21:14 +11479082,"Will Stephen, sarcasm on: How to Sound Smart in Your TEDx Talk",https://www.youtube.com/watch?v=8S0FDjFBj8o,2,1,anton_tarasenko,4/12/2016 12:56 +12100229,Literacy is Obsolete,http://www.alexstjohn.com/WP/2016/07/15/coding-modern-literacy/,2,1,douche,7/15/2016 11:30 +10914647,ArcadeRS: A Game Tutorial in Rust,http://jadpole.github.io/arcaders/arcaders-1-0/,85,2,charlesetc,1/16/2016 7:45 +10899018,We Have a Serious Problem,http://www.newyorker.com/magazine/2016/01/18/we-have-a-serious-problem,4,1,danielam,1/14/2016 1:27 +10283525,Sid Static Intrusion Detection for NetBSD,https://mail-index.netbsd.org/source-changes/2015/09/24/msg069028.html,58,7,vezzy-fnord,9/26/2015 16:36 +11596059,Who Can Name the Bigger Number?,http://www.scottaaronson.com/writings/bignumbers.html?,4,4,yoha,4/29/2016 14:48 +11304974,Evidence that Alzheimers lost memories may one day be recoverable,https://www.washingtonpost.com/news/to-your-health/wp/2016/03/17/mit-scientists-find-evidence-that-alzheimers-lost-memories-may-one-day-be-recoverable/,135,20,daegloe,3/17/2016 15:34 +10916979,Nadim Kobeissi on why he left Peerio,https://twitter.com/kaepora/status/688343332867694592,63,6,dazmax,1/16/2016 21:40 +10786411,Neon: Node plus Rust,http://calculist.org/blog/2015/12/23/neon-node-rust/,338,69,aturon,12/24/2015 0:17 +11155399,The Seven Habits of Highly Depolarizing People,http://www.the-american-interest.com/2016/02/17/the-seven-habits-of-highly-depolarizing-people/,213,165,randomname2,2/23/2016 0:07 +12066571,The startup nation is running out of steam,http://www.economist.com/news/business/21701810-startup-nation-running-out-steam-talent-search,83,41,wslh,7/10/2016 18:25 +10501633,Introducing Memory Leak,https://medium.com/memory-leak/introducing-memory-leak-3efc8757228d,14,4,lennypruss,11/3/2015 18:50 +11483857,Why would you learn C++ in 2016?,http://itscompiling.eu/2016/03/10/why-learn-cpp-2016/,149,154,ingve,4/12/2016 21:47 +11106501,"Dato open sources SFrame a disk-backed, compressed columnnar data frame",http://blog.dato.com/sframe-open-source-release,93,19,infinite8s,2/15/2016 22:23 +10859238,Political Forecasts according to the betting markets,http://www.politicalforecasts.com,4,3,minhtripham,1/7/2016 17:24 +11143603,Ask HN: What Is Google's Container Runtime?,,2,2,TwoFourIO,2/21/2016 6:49 +12477497,Warren Buffett's Net Worth by Age,http://microcapclub.com/2015/08/warren-buffetts-net-worth-by-age/,72,63,tiffani,9/12/2016 5:58 +12074006,"The old GitHub font, a Chrome extension",https://github.com/rreusser/the-old-github-font,3,1,guava,7/11/2016 20:06 +10610041,Using strace to figure out how Git push over SSH works,http://kamalmarhubi.com/blog/2015/11/21/using-strace-to-figure-out-how-git-push-over-ssh-works/,13,1,akerl_,11/22/2015 13:51 +12158361,Key Words for Use in RFCs to Indicate Requirement Levels,https://tools.ietf.org/html/rfc2119,2,1,federicoponzi,7/25/2016 13:07 +11152407,Timeline of recent events at Wikimedia Foundation,http://mollywhite.net/wikimedia-timeline/,10,2,kenrick95,2/22/2016 17:15 +11922865,Why aren't PGP and SSH keys popular as a second factor for authentication?,https://security.stackexchange.com/questions/127288/why-dont-pgp-and-ssh-keys-see-more-widespread-use-as-a-second-factor-when-authe/127310,117,73,verandaguy,6/17/2016 14:39 +11215371,Dick Smith receiver puts customer databases up for sale,http://www.itnews.com.au/news/dick-smith-receiver-puts-customer-databases-up-for-sale-416422,2,1,thelostagency,3/3/2016 6:32 +12544111,Sentient aliens are probably terrestrial,https://keplerlounge.com/2016/08/19/sentient-aliens-are-probably-terrestrial/,3,2,arocke,9/20/2016 23:06 +12558608,Comparison of Secure Messaging Applications,https://www.eff.org/node/82654,3,1,turrini,9/22/2016 17:41 +11546552,Bill Gurley is most unselfaware man on planet or he wrote open letter to Uber,https://pando.com/2016/04/21/bill-gurley-either-most-unselfaware-man-planet-or-he-just-wrote-open-letter-uber/,1,1,phodo,4/22/2016 1:49 +12556986,Oracles Cloudy Future,https://stratechery.com/2016/oracles-cloudy-future/,194,147,craigkerstiens,9/22/2016 14:26 +12080846,Literature in Castros Cuba,http://www.theparisreview.org/blog/2016/07/11/literature-in-castros-cuba/,45,43,dnetesn,7/12/2016 17:27 +10624589,The Quest for the Ultimate Vacuum Tube,http://spectrum.ieee.org/semiconductors/devices/the-quest-for-the-ultimate-vacuum-tube,27,1,sohkamyung,11/25/2015 0:28 +10916357,"Anti-Education by Nietzsche, and why mainstream culture does our best thinking",http://www.theguardian.com/books/2016/jan/08/anti-education-on-the-future-of-our-educational-institutions-friedrich-nietzsche-review,54,29,drjohnson,1/16/2016 19:06 +11682712,Disclosed Lifx Security Issue,https://shkspr.mobi/blog/2016/05/disclosed-lifx-security-issue/,3,2,edent,5/12/2016 11:47 +11460256,Type 1 and type 2 decisions,https://micaelwidell.com/type-1-and-type-2-decisions/,3,1,mwidell,4/9/2016 6:46 +11698837,An Introduction to Scientific Python (and a Bit of the Maths Behind It),http://www.jamalmoir.com/2016/05/scientific-python-numpy.html,22,2,Jmoir,5/15/2016 1:07 +10699119,iOS 9 vulnerability: Content Blockers can track browser history,http://blog.appgrounds.com/content-blockers-track-browser-history/,8,1,lukezli,12/8/2015 20:14 +12304205,2016 European Software Development Salary Survey,https://www.oreilly.com/ideas/2016-european-software-development-salary-survey,1,1,BerislavLopac,8/17/2016 12:47 +12504338,Darpa Contract Awarded to Verify Blockchain-Based Integrity Monitoring System,http://guardti.me/2ciE3wp,120,55,m545,9/15/2016 8:27 +10286258,Show HN: Validating models in Django 1.8,http://hackandstack.com/blog/posts/validating-data-in-django-18,2,1,mardurhack,9/27/2015 12:11 +10322856,A couple of projects for engineering students,,2,1,khitchdee,10/3/2015 6:35 +11178580,Show HN: Email PaaS Pricing (for former Mandrill users),http://rofish.net/mailpricing.html,6,3,ROFISH,2/25/2016 23:07 +10922251,"E-Cigarettes, as Used, Arent Helping Smokers Quit, Study Shows",https://www.ucsf.edu/news/2016/01/401311/e-cigarettes-used-arent-helping-smokers-quit-study-shows,31,57,sundaeofshock,1/18/2016 2:48 +11666423,Bing Says 25% of All Searches Are Voice Searches,https://www.searchenginejournal.com/bing-says-25-searches-voice-searches/163287/,16,22,riqbal,5/10/2016 11:30 +11862893,Hacktivist Protests Poor Security Practices,https://www.inversoft.com/blog/2016/06/08/hacktivist-protests-poor-security-practices/,8,1,Sbobby83,6/8/2016 15:32 +11192888,C4H 2.0 released,https://www.computeforhumanity.org/blog/introducing-2.0?r=0267EF8C-E41B-478C-B6AB-496E79D7CC7D,1,1,jacobevelyn,2/28/2016 23:27 +11001709,Why Russian Government Should Forget about the Blockchain Technology,http://forklog.net/why-russian-government-should-forget-about-the-blockchain-technology/,10,1,samueljenkins,1/30/2016 13:29 +11137463,Ask HN: Best fitness and/or yoga app?,,1,1,swimduck,2/19/2016 23:10 +11526164,"Viber adds end-to-end encryption, hidden chats as message app privacy wave grows",http://techcrunch.com/2016/04/19/viber-adds-end-to-end-encryption-hidden-chats-universal-delete-as-messaging-app-privacy-grows/,2,1,secfirstmd,4/19/2016 11:21 +10692548,Bring on the Real Computer Revolution [pdf],http://ojs.stanford.edu/ojs/index.php/intersect/article/viewFile/703/617,29,10,unimpressive,12/7/2015 20:44 +10265806,Cable Robot Simulator [video],https://www.youtube.com/watch?v=cJCsomGwdk0,261,70,alex_marchant,9/23/2015 15:56 +10481752,Theres No Escaping Competition: People Need a Way to Decide Who Gets What,http://fee.org/freeman/there-s-no-escaping-competition,39,104,nkurz,10/31/2015 4:04 +10198796,Falsehoods Programmers Believe About Time,http://infiniteundo.com/post/25326999628/falsehoods-programmers-believe-about-time,3,1,dsr_,9/10/2015 16:00 +12227945,Hampton Creek Ran Undercover Project to Buy Up Its Own Vegan Mayo,http://www.bloomberg.com/news/articles/2016-08-04/food-startup-ran-undercover-project-to-buy-up-its-own-products,114,81,pgroves,8/4/2016 19:43 +11690133,The information industry will transform within the next years,https://medium.com/life-tips/the-masterplan-d40640a3b2fc#.55yzlrrmi,4,3,oemerax,5/13/2016 13:02 +11596640,Ask HN: How can a dummy like me learn algorithms?,,30,15,alansmitheebk,4/29/2016 16:10 +10514221,Success: what happens when America's food banks embrace free-market economics [pdf],http://conference.nber.org/confer/2015/MDf15/Prendergast.pdf,2,1,c_prompt,11/5/2015 16:28 +12497259,Show HN: Cardpop Snapchat for postcards,https://itunes.apple.com/us/app/cardpop-design-mail-fun-postcards/id1086532449?mt=8,1,1,tgoldberg,9/14/2016 14:37 +10331816,402: Payment Required,https://medium.com/@humphd/402-payment-required-95bc72f06fcd,176,213,nmcfarl,10/5/2015 13:56 +11548864,"Show HN: Node.js async processing by example (queue, waterfall, series)",https://github.com/alexellis/async-example/,6,3,alexellisuk,4/22/2016 13:17 +11426016,Silicon Valley might be losing its sex appeal,http://mashable.com/2016/04/04/silicon-valley-salary-study,12,2,Irene,4/4/2016 21:52 +10572373,Sports At Any Cost: How Colleges Are Bankrolling the Athletics Arms Race,http://projects.huffingtonpost.com/ncaa/sports-at-any-cost,21,6,shaneshifflett,11/16/2015 2:55 +10898175,New Scheduled Reserved Instances,https://aws.amazon.com/blogs/aws/new-scheduled-reserved-instances/,4,1,jonny2112,1/13/2016 22:37 +10337299,Europe's highest court has rejected the 'safe harbor' agreement,http://uk.businessinsider.com/european-court-of-justice-safe-harbor-ruling-2015-10,563,299,noplay,10/6/2015 7:48 +10615118,Kinglake road crashes (2014),http://the-way-to-the-centre.com/blog/2014/10/25/kinglake-road-crashes/,25,11,scottmcdot,11/23/2015 15:35 +11212967,Comcast gets big tax break that was designed for Google Fiber,http://arstechnica.com/business/2016/03/oregon-lawmakers-accidentally-gave-comcast-a-big-tax-break/,123,74,pavornyoh,3/2/2016 20:59 +11290218,Cover (YC W16) Helps You Insure Anything with the Snap of a Photo,https://blog.ycombinator.com/cover-yc-w16-helps-you-insure-anything-with-the-snap-of-a-photo,41,20,kevin,3/15/2016 15:13 +11397433,Unwinding Ubers Most Efficient Service,https://medium.com/@buckhx/unwinding-uber-s-most-efficient-service-406413c5871d#.k577zmdaw,12,1,buckhx,3/31/2016 14:33 +10737852,Show HN: iOS app Iconica+ lets developers and designers test out their app icons,https://motionobj.com/iconica/,4,1,hboon,12/15/2015 14:23 +11288012,Android's new bottom navigation,https://www.google.com/design/spec/components/bottom-navigation.html,6,3,tangue,3/15/2016 7:16 +11504322,Apple Pursues New Search Features for a Crowded App Store,http://www.bloomberg.com/news/articles/2016-04-14/apple-said-to-pursue-new-search-features-for-crowded-app-store,25,17,walterbell,4/15/2016 14:01 +10722266,Challenges of Memory Management on Modern NUMA System,https://queue.acm.org/detail.cfm?id=2852078,27,4,signa11,12/12/2015 9:42 +11772294,Racial Fault Lines in Silicon Valley,https://blog.devcolor.org/racial-fault-lines-in-silicon-valley-390cd0e4a6dc,226,153,bdr,5/25/2016 19:10 +10933580,Clojure 1.8,http://blog.cognitect.com/blog/2016/1/19/clojure-18,272,60,147,1/19/2016 20:09 +10835608,Stop Comparing JSON and XML,http://www.yegor256.com/2015/11/16/json-vs-xml.html,66,56,padraic7a,1/4/2016 13:53 +12080408,Pokemon NO Blocker so you never have to see any mentions of Pokemon ever again,https://chrome.google.com/webstore/detail/pokemon-no-pokemon-blocke/fcfkedekimblhldjbiphhfobkafkeaeb,2,2,conorbrowne,7/12/2016 16:31 +12335256,Reflections on NixOS,https://zenhack.net/2016/01/24/reflections-on-nixos.html,164,99,ikhthiandor,8/22/2016 10:20 +12293480,16-year-old South African invents wonder material to fight drought,http://www.cnn.com/2016/08/09/africa/orange-drought-kiara-nirghin/,7,1,JSeymourATL,8/15/2016 21:10 +11945022,"Hackers, experts decode the magic of 'Mr. Robot' ahead of Season 2",http://mashable.com/2016/06/06/mr-robot-decoded-season-2/#j58RHP1BcEqn,5,1,tilt,6/21/2016 11:56 +10958174,Why I love hacking at LibreOffice,http://randomtechnicalstuff.blogspot.com/2016/01/why-i-love-hacking-at-libreoffice.html,96,19,davidgerard,1/23/2016 12:38 +10230513,Study: Experiencing awe affects the way you treat people,http://qz.com/471388/study-how-experiencing-awe-transforms-the-way-you-treat-the-people-around-you/,20,6,dpflan,9/16/2015 22:50 +11537758,How a Simple Request Got Me Blacklisted by the Pentagon,https://theintercept.com/2016/04/20/how-a-simple-request-got-me-blacklisted-by-the-pentagon/,29,1,nomoba,4/20/2016 21:06 +11396006,"IP Blacklists Analysed let's see what they do, how they compare",http://iplists.firehol.org/,6,1,ktsaou,3/31/2016 9:49 +10798896,Ask HN: Your Experience Using Soylent as a Food Replacement?,,3,5,cdvonstinkpot,12/27/2015 21:52 +12127919,Let's Run Lisp on a Microcontroller,http://dmitryfrank.com/blog/2016/0718_let_s_run_lisp_on_a_microcontroller,4,2,dimonomid,7/20/2016 10:12 +10332652,Volkswagen inspires PHP,https://github.com/hmlb/phpunit-vw,2,1,S4UC1SS0N,10/5/2015 15:58 +10582769,An app idea igmi,,1,2,djrules24,11/17/2015 17:53 +10513078,Show HN: Personality Test Inspired by CG Jung,,5,1,subliminalzen,11/5/2015 13:11 +10301894,Service-Oriented Architecture: Scaling Our Codebase As We Grow,https://eng.uber.com/soa/,54,18,robzyb,9/30/2015 5:01 +12266571,New California digital currency bill requires $5k license to run a Bitcoin node,https://twitter.com/desantis/status/763244115790143488,18,1,mbgaxyz,8/11/2016 6:22 +10579559,The design of the Strict Haskell pragma,http://blog.johantibell.com/2015/11/the-design-of-strict-haskell-pragma.html,61,43,lmartel,11/17/2015 6:52 +10928528,Object-Oriented Programming is Bad,https://www.youtube.com/watch?v=QM1iUe6IofM&lc=z12hw314zrvkxxqol04cjrdwhsvjzz4q4kk0k,26,8,jbeja,1/19/2016 2:28 +10416658,Ask HN: How much should I charge for a WordPress site?,,2,2,__glibc_malloc,10/20/2015 0:06 +10747131,CastAR will return $1M in Kickstarter money and postpone shipments,http://venturebeat.com/2015/12/16/castar-will-return-1m-in-kickstarter-money-and-postpone-augmented-reality-glasses-shipments/?utm_content=buffer6d47b&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,29,15,edroche,12/16/2015 20:37 +12334098,Introducing Little Flocker: File Access Enforcement for MacOS,http://www.zdziarski.com/blog/?p=6178,13,2,jzdziarski,8/22/2016 4:25 +10708092,The Kitchen Bladesmith,http://craftsmanship.net/the-kitchen-bladesmith/,2,1,jdnier,12/10/2015 0:50 +11738913,Ask HN: What is an open-source alternative to Google Home?,,50,48,holaboyperu,5/20/2016 16:01 +10834056,Edging in: the biggest science news of 2015,http://www.scottaaronson.com/blog/?p=2612,42,2,jseliger,1/4/2016 4:48 +11045971,The race to the bottom of victimhood and social justice culture,http://jakeseliger.com/2016/01/28/the-race-to-the-bottom-of-victimhood-and-social-justice-culture/,31,2,jseliger,2/6/2016 1:08 +11422937,Show HN: Hyper_ Simple and Secure Container Cloud,https://blog.hyper.sh/introducing-hyper-beta-the-native-container-cloud.html,88,48,scprodigy,4/4/2016 16:03 +11300442,Can a smart watch save you from a stroke? Contribute your data and save a life,http://www.mrhythmstudy.org/,13,2,johnsonhsieh,3/16/2016 20:33 +11495882,Standups for Hackers,https://github.com/Wootech/standupmail-cli,9,5,mfts0,4/14/2016 12:01 +12118644,Yahoo misses profit expectations in what could be its last-ever earnings report,https://www.washingtonpost.com/news/the-switch/wp/2016/07/18/yahoo-misses-profit-expectations-in-what-could-be-its-last-ever-earnings-report/,129,148,bane,7/18/2016 23:46 +10280894,Mobile Ad Brokers as DDoS Distribution Vectors: A Case Study,https://blog.cloudflare.com/mobile-ad-networks-as-ddos-vectors/??,37,9,majke,9/25/2015 21:45 +11212357,Please Scan My Towel: How I turned my hotel towel into my RSA conference badge,http://jerrygamblin.com/2016/03/01/please-scan-my-towel/?platform=hootsuite,5,3,wolframio,3/2/2016 19:33 +10533079,I read the 100 best fantasy and sci-fi novels and they were shockingly offensive,http://www.newstatesman.com/culture/2015/08/i-read-100-best-fantasy-and-sci-fi-novels-and-they-were-shockingly-offensive,8,4,robin_reala,11/9/2015 14:15 +10305561,"AboutLife, Focused on Personal Finance, Debuts With $3M in Funding From Kleiner",http://techcrunch.com/2015/09/30/aboutlife-focused-on-personal-finance-debuts-with-3-million-in-funding-from-kleiner/,6,1,samdalton,9/30/2015 17:24 +10264638,"Ask HN: Company offers to pay for sth to improve our skills, what to propose?",,4,1,wbjohn,9/23/2015 12:42 +10782811,SHA-1 Deprecation: No Browser Left Behind,https://blog.cloudflare.com/sha-1-deprecation-no-browser-left-behind/,99,40,jgrahamc,12/23/2015 10:50 +11238850,Oklos Jacob DeWitte on Building a Nuclear Reactor People Want,http://themacro.com/articles/2016/03/jacob-dewitte-oklo-interview/,35,55,ghosh,3/7/2016 13:58 +10985626,Simple explanation of UTF-8,https://en.wikipedia.org/wiki/UTF-8#Description,3,1,thirdreplicator,1/28/2016 2:18 +10522031,Not Even Twitter Understands Twitter,http://www.baekdal.com/opinion/not-even-twitter-understands-twitter/,48,59,huphtur,11/6/2015 21:04 +10864665,"John Legere asks EFF, Who the f**k are you, and who pays you?",http://arstechnica.com/business/2016/01/john-legere-asks-eff-who-the-fk-are-you-and-who-pays-you/,130,13,louthy,1/8/2016 13:31 +11617260,Hal Finney received the first Bitcoin transaction. Heres how he describes it,https://www.washingtonpost.com/news/the-switch/wp/2014/01/03/hal-finney-received-the-first-bitcoin-transaction-heres-how-he-describes-it/,2,1,bootload,5/3/2016 1:54 +12341044,Amazon wants to sell a music subscription service that will only work on Echo,http://www.recode.net/2016/8/22/12593158/amazon-music-echo-alexa,2,1,prostoalex,8/23/2016 2:50 +12282054,"Kenny Baker, actor behind R2-D2, dies",https://www.theguardian.com/film/2016/aug/13/kenny-baker-r2-d2-dies-star-wars,104,10,Urgo,8/13/2016 16:41 +10378910,Show HN: Interactive Maps for IoT Search Engine Shodan,https://maps.shodan.io/#36.421282443649496/-99.228515625/5/green/apache,8,1,achillean,10/13/2015 6:53 +10556869,Haskell in ES6: Part 1,http://casualjavascript.com/javascript/es6/haskell/native/implementation/2015/11/12/haskell-in-es6-part-1.html,85,38,megalodon,11/12/2015 23:13 +11729413,A YSlow Alternative for Making Web Pages Faster,https://www.maxcdn.com/blog/coach-yslow-alternative/,71,7,vinnyglennon,5/19/2016 11:40 +11136041,New Versioning Scheme for React,https://facebook.github.io/react/blog/2016/02/19/new-versioning-scheme.html,165,77,spicyj,2/19/2016 19:44 +10203063,Lets Build a Simple Interpreter. Part 4,http://ruslanspivak.com/lsbasi-part4/,3,1,rspivak,9/11/2015 11:25 +11691753,"Node.js Is a Salad Bar Thoughts on Boilerplate, Frameworks and Usability",https://medium.com/@modernserf/node-js-is-a-salad-bar-74ec01bd4390#.7x87fydp9,2,1,ZoeZoeBee,5/13/2016 17:24 +12419557,The critical role of systems thinking in software development,https://www.oreilly.com/ideas/the-critical-role-of-systems-thinking-in-software-development,7,1,sandal,9/3/2016 15:30 +12129337,Ask HN: Is there any specific company you wish you could work for?,,1,2,techlyf,7/20/2016 14:41 +10703497,How to Cure Cancer,http://www.newyorker.com/magazine/2015/12/14/tough-medicine,5,1,sergeant3,12/9/2015 13:45 +12137588,3d Browser for Apollo 11 Command Module,http://3d.si.edu/apollo11cm/,2,1,wscott,7/21/2016 15:43 +10722579,The American origins of Telegram,https://www.washingtonpost.com/news/the-intersect/wp/2015/11/23/the-secret-american-origins-of-telegram-the-encrypted-messaging-app-favored-by-the-islamic-state/,35,5,doener,12/12/2015 12:48 +10447662,"MeetCute Play matchmaker, earn rewards",https://www.meetcute.io,8,6,ilmatic,10/25/2015 17:55 +10378496,Report the temperature with ESP8266 to MQTT,https://home-assistant.io/blog/2015/10/11/measure-temperature-with-esp8266-and-report-to-mqtt/,5,1,SEJeff,10/13/2015 4:02 +11348320,"Linux Foundation Pours $200,000 into R language",http://www.infoworld.com/article/3047181/application-development/money-talks-linux-foundation-pours-funds-into-r-language.html,8,1,baldfat,3/23/2016 21:16 +10291893,Why Your Doctor Never Sees You on Time,https://medium.com/@saagrawa/the-googol-reasons-your-doctor-never-sees-you-on-time-958fb25d58da,39,8,ceekay,9/28/2015 18:00 +11827344,Becoming a Professor,https://joi.ito.com/weblog/2016/06/02/becoming-a-prof.html,104,33,miraj,6/3/2016 0:11 +10465985,Microsoft to Shut Down Sunrise Calendar After Integration into Outlook Completes,http://techcrunch.com/2015/10/28/microsoft-to-shut-down-sunrise-mobile-calendar-after-integration-into-outlook-completes/,9,1,canistr,10/28/2015 17:38 +10932359,Dumpster A self-hosted file upload server supporting YubiKey OTP tokens,https://github.com/nmaggioni/Dumpster,2,1,nmaggioni,1/19/2016 17:47 +11730234,From web dev to 3D: Learning 3D modeling,https://levels.io/from-web-dev-to-3d/,170,77,pieterhg,5/19/2016 14:02 +12007062,Nike Open Source Software,https://nike-inc.github.io,152,66,jonbaer,6/30/2016 7:21 +11188852,"Maybe jobs are for machines, and life is for people",http://www.bostonglobe.com/ideas/2016/02/24/robots-will-take-your-job/5lXtKomQ7uQBEzTJOXT7YO/story.html,27,6,cedricr,2/27/2016 22:47 +11675768,Using Electron with Haskell,https://codetalk.io/posts/2016-05-11-using-electron-with-haskell.html,1,1,Tehnix,5/11/2016 14:46 +11112896,When to stop dating and settle down,https://www.washingtonpost.com/news/wonk/wp/2016/02/16/when-to-stop-dating-and-settle-down-according-to-math/,48,57,tintinnabula,2/16/2016 20:28 +11372294,How Clintons email scandal took root,https://www.washingtonpost.com/investigations/how-clintons-email-scandal-took-root/2016/03/27/ee301168-e162-11e5-846c-10191d1fc4ec_story.html,38,8,caseysoftware,3/28/2016 1:48 +11950073,Show HN: Discover performance issues before your users do,https://loadfocus.com,1,1,loadfocus,6/21/2016 22:46 +11673968,"Disposable, Secure, Email Built in Rails",https://burnonce.com,2,2,shakycode,5/11/2016 10:09 +10219330,Porsche is showing off an electric sports car,http://qz.com/501986/porsche-is-showing-off-an-electric-sports-car-that-could-take-on-tesla/,70,66,adventured,9/15/2015 6:56 +10490560,Grant application rejected over choice of font,http://www.nature.com/news/grant-application-rejected-over-choice-of-font-1.18686,4,1,ingve,11/2/2015 7:43 +12210941,Medium acquires Embedly (YC W10),https://medium.com/the-story/a-new-team-embeds-e3c69a74ee8e,26,3,doki_pen,8/2/2016 16:08 +12172379,Ask HN: Anonymous person sent proof of SSH access to our production server,,450,231,throwaway0727,7/27/2016 13:04 +12538542,3% of Americans own 50% of guns in the US,https://www.theguardian.com/us-news/2016/sep/19/us-gun-ownership-survey,7,5,yunque,9/20/2016 11:07 +10858617,What are the problems you face on a daily basis?,,1,3,theaktu,1/7/2016 15:57 +11277135,UBlock vs. ABP: efficiency compared,https://github.com/gorhill/uBlock/wiki/uBlock-vs.-ABP:-efficiency-compared,193,59,diziet,3/13/2016 10:29 +10709981,World's largest stellarator fusion reactor goes into operation (1pm CET),http://www.ipp.mpg.de/3985731/w7x_15_2,2,1,walski,12/10/2015 10:50 +10681976,How do I use hacker news,,1,3,facepassion,12/5/2015 14:39 +10951588,Hilarious live tweet of a business deal overheard on a train ride,http://www.huffingtonpost.in/2016/01/20/train-pitch_n_9025466.html,10,1,seshagiric,1/22/2016 8:52 +11521261,"The House Fund, a new seed fund for UC Berkeley",http://techcrunch.com/2016/04/18/meet-vc-jeremy-fiance-uc-berkeleys-24-year-old-superconnector/,30,6,adenadel,4/18/2016 16:45 +11544689,"Instruction latencies, throughputs, ?op breakdowns for Intel, AMD and VIA CPUs [pdf]",http://www.agner.org/optimize/instruction_tables.pdf,2,1,alexkon,4/21/2016 19:20 +10256623,EFF Urges State Appeals Court to Protect Twitter Parodies,https://www.eff.org/deeplinks/2015/09/eff-urges-state-appeals-court-protect-twitter-parodies,16,1,phodo,9/22/2015 4:27 +12490893,Why is it faster to process a sorted array than an unsorted array?,http://stackoverflow.com/questions/11227809/why-is-it-faster-to-process-a-sorted-array-than-an-unsorted-array,24,2,vikas0380,9/13/2016 18:19 +11646027,Going back to BASIC,http://sdtimes.com/sd-times-blog-going-back-basic/,2,1,jamescustard,5/6/2016 19:07 +10671745,Bad Reasons to Start a Company,https://gist.github.com/bobpoekert/dfe891301678d3de515d,2,2,rabidsnail,12/3/2015 19:02 +10444660,How I won a Facebook hackathon without a line of code (2014),http://mrandrewandrade.com/blog/2014/03/14/codeless-hackathon-winner.html#.ViviyeXiIgI.hackernews,32,5,mrandrewandrade,10/24/2015 19:58 +12561369,Tesla Software Update 8.0,https://www.tesla.com/software,115,88,alfredxing,9/23/2016 0:02 +12078231,InstallMonetizer (YC W12) is officially closed,http://www.installmonetizer.com/,1,1,tainstallmon,7/12/2016 11:40 +11179090,Exotic four-neutron no-proton particle confirmed,http://www.asianscientist.com/2016/01/in-the-lab/tokyo-tetraneutron-proton/,131,64,mgalka,2/26/2016 0:44 +11867241,Noam Chomsky Has Never Seen Anything Like This (2010),http://www.truthdig.com/report/item/noam_chomsky_has_never_seen_anything_like_this_20100419,16,1,nyodeneD,6/9/2016 2:45 +10464146,Nuts and bolts: our routing algorithm,https://blog.captaintrain.com/9159-our-routing-algorithm,44,7,Signez,10/28/2015 13:03 +11637096,Why a Logging Framework Should Not Log,http://www.russet.org.uk/blog/3112,92,55,phillord,5/5/2016 15:44 +11267108,Machine learning for Segment.io to predict customer behaviour,http://microchurn.jssolutionsdev.com/?ref=hackernews,1,1,striletskyy,3/11/2016 15:28 +10706448,White House: Share Your Thoughts on Strong Encryption,https://www.whitehouse.gov/webform/share-your-thoughts-onstrong-encryption,5,1,russell_h,12/9/2015 20:23 +10654049,Distributed Log Search Using GNU Parallel,http://blog.codehate.com/post/134320079974/distributed-log-search-using-gnu-parallel,3,1,anand-s,12/1/2015 7:19 +11073909,Ask HN: Please create a YouTube-red-style micropayments startup,,1,2,rayalez,2/10/2016 16:39 +10253941,"Fear, Standing, and Speculation for Data Breach Victims",https://casetext.com/posts/fear-standing-speculation-for-data-breach-victims,5,1,lutesfuentes,9/21/2015 17:53 +12262470,This JPEG is also a webpage,http://lcamtuf.coredump.cx/squirrel/,833,226,cocoflunchy,8/10/2016 15:29 +10362613,The 21 most dangerous foods in the world,http://www.businessinsider.com.au/the-most-dangerous-foods-in-the-world-2015-10,2,1,ashbrahma,10/9/2015 19:15 +12194602,Git rebase for fame and power,http://www.charlesetc.com/git/2016/07/30,4,1,charlesetc,7/30/2016 20:38 +11738072,Nvidia-Docker: Build and Run Docker Containers Leveraging Nvidia GPUs,https://github.com/NVIDIA/nvidia-docker,63,19,charlieegan3,5/20/2016 14:34 +10430675,"Loophole-free Bell test Spooky action at a distance, no cheating",http://hansonlab.tudelft.nl/loophole-free-Bell-test/,192,145,NKCSS,10/22/2015 6:20 +10559019,Hacker News's big redesign,http://imgur.com/T1i1VC9,3,1,vegancap,11/13/2015 10:24 +12049926,(open source) Put your alerts in version control with DogPush,http://eng.trueaccord.com/2016/07/07/put-your-alerts-in-version-control-with-dogpush/,4,1,osamet67,7/7/2016 15:28 +10278973,Urbit: an operating function,http://urbit.org/preview/~2015.9.25/materials/whitepaper,212,169,privong,9/25/2015 16:15 +11425488,Ask HN: Generic cross-platform package and environment manager?,,3,6,darkvertex,4/4/2016 20:46 +10447340,Take Two Hours of Pine Forest and Call Me in the Morning (2012),http://www.outsideonline.com/1870381/take-two-hours-pine-forest-and-call-me-morning,43,4,katiey,10/25/2015 16:38 +11196635,Go-trigger,https://github.com/sadlil/go-trigger,4,2,go-down,2/29/2016 17:09 +12135897,Introducing Stack Overflow Documentation,http://blog.stackoverflow.com/2016/07/introducing-stack-overflow-documentation-beta/,89,11,jsmeaton,7/21/2016 10:24 +10304960,Plans to bring Asimov's moving sidewalks from the Caves of Steel to life,http://www.businessinsider.com/turn-london-subway-into-moving-sidewalk-2015-9,3,2,carbide,9/30/2015 16:10 +12461888,Dont hold your breath for a 30-hour work week,http://www.theglobeandmail.com/opinion/dont-hold-your-breath-for-a-30-hour-work-week/article31777511/,1,1,stefap2,9/9/2016 13:22 +10972359,Why do people put on differing amounts of weight?,http://www.bbc.co.uk/news/magazine-35193414,183,146,soupangel,1/26/2016 7:54 +12123896,BBC+ super app curates content,http://www.bbc.com/news/technology-36834757,1,1,abhi3,7/19/2016 18:52 +11542938,Sites that block adblockers seem to be suffering,https://thestack.com/world/2016/04/21/sites-that-block-adblockers-seem-to-be-suffering/,82,54,twoshedsmcginty,4/21/2016 15:37 +12350779,"Quake devastates mountain towns in central Italy, at least 20 believed killed",http://www.reuters.com/article/us-italy-quake-idUSKCN10Z04H?il=0,6,1,testrun,8/24/2016 9:40 +11143326,Discover Flask,http://discoverflask.com/,247,75,rkda,2/21/2016 4:38 +10701100,Google says its quantum computer is 100M times faster than a regular chip,http://venturebeat.com/2015/12/08/google-says-its-quantum-computer-is-more-than-100-million-times-faster-than-a-regular-computer-chip/,19,2,nopinsight,12/9/2015 0:55 +11551259,Hacker-scripts,https://github.com/codeforgeek/hacker-scripts,1,1,vikas0380,4/22/2016 18:15 +10814164,Governments deterring businessmen and tourists with cumbersome visa requirements,http://www.economist.com/news/business/21684791-governments-are-deterring-business-travellers-and-tourists-cumbersome-visa-requirements,69,59,e15ctr0n,12/30/2015 20:28 +10566436,Cybersecurity and Data Science,https://ognitio.com/cybersecurity-and-data-science/,24,5,rzagabe,11/14/2015 17:28 +11290026,"Gmail extension for adding links to places (restos, etc) feedback welcome",https://chrome.google.com/webstore/detail/placelinks/idgjkcblhkenilaiheffnmkjblckpioc?hl=en,3,1,itaileibowitz,3/15/2016 14:52 +12571261,Google Web Fonts Typographic Project,https://femmebot.github.io/google-type/,240,25,endianswap,9/24/2016 15:23 +11606299,Handcuffed to Uber,http://techcrunch.com/2016/04/29/handcuffed-to-uber/?sr_share=facebook,174,208,felarof,5/1/2016 14:28 +11727792,"In Sharp Reversal, California Suspends Water Restrictions",http://www.nytimes.com/2016/05/19/us/california-suspends-water-restrictions.html,73,65,jstreebin,5/19/2016 3:40 +11716320,"Welcome, school 42. Seriously",https://www.holbertonschool.com/school-42-welcome,13,2,julien421,5/17/2016 18:58 +10707569,MySQL is a Better NoSQL,http://engineering.wix.com/2015/12/10/scaling-to-100m-mysql-is-a-better-nosql/,96,88,yoava,12/9/2015 23:18 +10773078,Teaching Operating Systems with Tracing,http://teachbsd.org/,63,6,vezzy-fnord,12/21/2015 19:59 +12518247,"Many ""listen"" TCP sockets slow down Linux The revenge of the listening sockets",https://blog.cloudflare.com/revenge-listening-sockets/,10,1,majke,9/16/2016 23:53 +11255908,"VTech: We Are Not Liable If We Fail to Protect Your Data, EFF: Oh Yes You Are",https://www.eff.org/deeplinks/2016/03/vtech-we-are-not-liable-if-we-fail-protect-your-data-eff-oh-yes-you-are,4,1,DiabloD3,3/9/2016 21:36 +10672942,Is it even possible to lose weight?,http://power20method.com/is-it-possible-to-lose-weight/,1,1,arshadgc,12/3/2015 21:51 +12158073,Water Out of the Tailpipe: A New Class of Electric Car Gains Traction,http://mobile.nytimes.com/2016/07/22/automobiles/water-out-the-tailpipe-a-new-class-of-electric-car-gains-traction.html?_r=0&referer=http://asymcar.com/r/?p=3004,1,1,Osiris30,7/25/2016 12:12 +10608651,Imply Exploratory Analytics Powered by Druid,http://imply.io/,29,4,wanghq,11/22/2015 1:04 +10470795,Ask HN: How's the IT job market in Australia?,,2,8,vaib,10/29/2015 13:28 +10658187,"Maker's Schedule, Manager's Schedule (2009)",http://www.paulgraham.com/makersschedule.html,156,28,MarlonPro,12/1/2015 19:46 +12147275,Quantum: Rust quantum computer simulator,https://github.com/beneills/quantum,1,1,beneills,7/22/2016 22:38 +11686342,The Top 5 Crashes on iOS,https://www.apteligent.com/developer-resources/top-5-most-frequent-crashes-on-ios/?partner_code=GDC_hn_top5ios,20,1,andrewmlevy,5/12/2016 20:06 +12555984,Success in reading burnt ancient scroll,http://advances.sciencemag.org/content/2/9/e1601247.full,19,3,arman0,9/22/2016 11:14 +10810266,Ask HN: What are the best resources for learning PostgreSQL?,,4,2,foxhedgehog,12/30/2015 1:47 +11054837,Stacks project hits 5000 pages,http://stacks.math.columbia.edu,1,1,GFK_of_xmaspast,2/7/2016 21:05 +12148200,Ask HN: What are some companies that make good startup videos?,,5,2,z0a,7/23/2016 3:26 +11604233,The leap second: Because our clocks are more accurate than the Earth,http://arstechnica.com/science/2016/04/the-leap-second-because-our-clocks-are-more-accurate-than-the-earth/,2,1,shawndumas,5/1/2016 0:04 +12349167,Ask HN: What has the highest cost per megabyte?,,1,2,foota,8/24/2016 2:03 +10730555,Facebooks Sheryl Sandberg: Now Is When Were Going Big in Ads (2011),http://robhof.com/2011/04/20/1014/,13,4,hownottowrite,12/14/2015 12:09 +10324094,The Evolution of a Software Engineer,https://medium.com/@webseanhickey/the-evolution-of-a-software-engineer-db854689243,2,1,hharnisch,10/3/2015 14:56 +11808347,The TV Industry Will Unravel Faster Than People Think,https://medium.com/lightspeed-venture-partners/the-tv-industry-will-unravel-faster-than-you-think-283485420ca6#.dai145ph7,31,18,Doubleguitars,5/31/2016 17:41 +11390804,Microsoft Announces Converter for Bringing Win32 Apps to the Windows Store,http://techcrunch.com/2016/03/30/desktop-app-converter/,99,67,doener,3/30/2016 16:56 +10496549,How Do Plastic Bags Get into the Ocean?,http://news.discovery.com/earth/oceans/how-does-your-plastic-bag-get-into-the-ocean-151102.htm,43,29,Oatseller,11/3/2015 0:41 +11992882,Reusing Abandoned Big-Box Superstores Across America,http://99percentinvisible.org/article/ghost-boxes-reusing-abandoned-big-box-superstores-across-america/,140,94,l33tbro,6/28/2016 11:41 +12231446,Auto Generated Tweets That Youll Never Know Are Spam with Machine Learning,https://www.technologyreview.com/s/602109/this-ai-will-craft-tweets-that-youll-never-know-are-spam/,1,1,theafh,8/5/2016 11:37 +10697692,MongoDB 3.2: Now powered by Postgres,https://www.linkedin.com/pulse/mongodb-32-now-powered-postgresql-john-de-goes,120,25,buffyoda,12/8/2015 17:05 +11332488,Visiting Factories in China as an Entrepreneur,http://needwant.com/p/visit-factories-china-entrepreneur/,98,63,j0ncc,3/21/2016 22:01 +10628659,Filmmaker Forcing UK Board of Film Classification to Watch Paint Dry,http://www.newstatesman.com/culture/film/2015/11/filmmaker-forcing-british-board-film-classification-watch-paint-drying-hours,40,22,dnetesn,11/25/2015 18:24 +11389620,Headless CMS Contentful vs. Accedo,https://medium.com/apegroup-texts/two-headless-cms-head-to-head-94ea26b0b80f#.3xskvx6vq,14,3,nilsskold,3/30/2016 14:45 +10350410,Is Academe a Cult?,http://chronicle.com/article/Is-Academe-a-Cult-/233505,2,1,benbreen,10/8/2015 1:51 +10782795,Vodafone Brings Wi-Fi Calling to the Samsung Galaxy S6 and Edge in the UK,http://www.androidcentral.com/vodafone-brings-wi-fi-calling-samsung-smartphones-uk,1,1,elfalfa,12/23/2015 10:44 +11078082,How can JavaScript be stopped from spreading like a cancer?,https://medium.com/@richardeng/an-open-letter-to-ecma-cb60ee917da9,6,4,berserker-one,2/11/2016 3:35 +10382006,What happened when a roomful of engineers watched 'The Martian',http://www.pri.org/stories/2015-10-13/what-happened-when-room-full-engineers-watched-martian,4,4,Mz,10/13/2015 17:30 +11936679,"Internet of Things, Machine Learning and Robotics Are Priorities for Dev in 2016",http://www.forbes.com/sites/louiscolumbus/2016/06/18/internet-of-things-machine-learning-robotics-are-high-priorities-for-developers-in-2016/,35,9,mwielbut,6/20/2016 7:52 +12414933,Zika spraying kills millions of honeybees,http://www.cnn.com/2016/09/01/health/zika-spraying-honeybees/,10,2,jonathanehrlich,9/2/2016 18:07 +11803299,Design and Implementation of Modern Column-Oriented Databases (2012) [pdf],http://db.csail.mit.edu/pubs/abadi-column-stores.pdf,90,9,behoove,5/30/2016 21:25 +10279320,Playing 20 Questions Using a Brain-to-Brain Interface,http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0137303,36,1,vishnuks,9/25/2015 17:07 +11467005,How Ive Avoided Burnout During Decades as a Programmer,http://thecodist.com/article/how-i-ve-avoided-burnout-during-more-than-3-decades-as-a-programmer,173,52,mrtbld,4/10/2016 16:55 +10412284,How Can We Achieve Age Diversity in Silicon Valley?,https://medium.com/backchannel/how-can-we-achieve-age-diversity-in-silicon-valley-11a847cb37b7,420,503,steven,10/19/2015 11:51 +11233340,Identifying Banksy using statistics,http://www.economist.com/news/science-and-technology/21693978-analysis-developed-crime-fighting-and-disease-tracking-points-artists?fsrc=scn%2Ffb%2Fte%2Fbl%2Fed%2FBanksy,4,1,peteretep,3/6/2016 11:23 +10554423,WT1190F FAQs,http://projectpluto.com/temp/wt1190f.htm,13,5,SoulMan,11/12/2015 17:07 +11925201,"Facebook is wrong, text is deathless",http://kottke.org/16/06/facebook-is-wrong-text-is-deathless,308,168,danso,6/17/2016 20:00 +11801517,The Nickle programming language,http://nickle.org/,3,1,vmorgulis,5/30/2016 14:34 +11130768,Insurance needs tech,,2,1,LeaningOnCoding,2/19/2016 1:05 +11948112,How to Get Your Employees to Be More Curious,https://www.linkedin.com/pulse/5-ways-get-your-employees-more-curious-tim-brown?trk=prof-post,2,1,timbrownblog,6/21/2016 18:26 +12046995,MSX2+ Emulator right in the browser. My '90s are back again,http://msxemulator.com,7,4,webmsx,7/7/2016 1:37 +10192931,Is Sniping a Problem for Online Auction Markets? [pdf],http://papers.nber.org/tmp/97510-w20942.pdf,9,12,nkurz,9/9/2015 17:54 +11795716,Bullshit fighting,https://stactivist.com/2016/05/29/bullshit-fighting/,58,34,azuajef,5/29/2016 9:41 +12570930,SpaceX has released the initial results of its investigation,http://gizmodo.com/spacex-figured-out-why-its-expensive-rocket-exploded-1787007827,15,11,obi1kenobi,9/24/2016 13:56 +10552857,Ask HN: Are HN comments automatically downvoted by algorithms?,,7,26,gull,11/12/2015 13:09 +10355119,Ask HN: Does the use of 3rd party services affect valuation of a startup?,,2,1,goshx,10/8/2015 18:50 +10259892,Dynamic Style Sheets Dynamic CSS for dynamic projects,https://github.com/guisouza/dss,11,7,guiCoder,9/22/2015 16:57 +12008232,Yandexs Android browser now supports third party ad-blocking extensions,https://techcrunch.com/2016/06/30/yandexs-android-browser-now-supports-third-party-ad-blocking-extensions/,2,1,jimothyhalpert7,6/30/2016 13:11 +11833996,What the nine debris finds may tell us about the MH370 end point,http://www.duncansteel.com/archives/2652,75,28,wglb,6/3/2016 23:30 +10236653,"Ex-Microsoft engineer sues, says companys 1-5 ranking system was bad for women",http://arstechnica.com/tech-policy/2015/09/ex-microsoft-engineer-sues-says-companys-1-5-ranking-system-is-bad-for-women/,3,3,pixelcort,9/17/2015 23:15 +11354148,Russian microprocessors to debut on global markets,http://rbth.com/science_and_tech/2016/01/12/russian-microprocessors-to-debut-on-global-markets_558707,2,1,jorgecastillo,3/24/2016 16:28 +10809395,U.S. Spy Net on Israel Snares Congress,http://www.wsj.com/articles/u-s-spy-net-on-israel-snares-congress-1451425210,26,14,coloneltcb,12/29/2015 22:09 +12521800,Norway An Inside Perspective (1986),http://www.robertpriddy.com/Nos/Nor1.html,48,35,pmoriarty,9/17/2016 18:45 +12435225,Hit Reply Episode 1: Launch [audio],https://hitreply.co/ep/1/launch/,4,3,fredrivett,9/6/2016 11:39 +12192894,"Show HN: Bitbot convert, encode or encrypt anything to anything",http://bitbot.atix.co/,1,2,atix-co,7/30/2016 13:34 +11062650,GameTrailers Is Closing Down After 13 Years,https://www.facebook.com/gametrailers/posts/10153542220089285,55,17,doppp,2/9/2016 2:28 +12433991,Warner Brothers reports own site as illegal,http://www.bbc.co.uk/news/technology-37275603,76,16,ilghiro,9/6/2016 6:35 +11958728,Whats up with nano?,http://www.asty.org/2016/06/23/whats-up-with-nano/,126,79,wdr1,6/23/2016 3:48 +10901147,Show HN: Create a chiptune from your Git contributions graph with Web Audio API,https://github.com/johnBartos/contributions-chiptune,25,6,vdnkh,1/14/2016 13:16 +10799208,Why Engineers Cant Stop Los Angeles' Enormous Methane Leak,http://www.laweekly.com/news/what-went-wrong-at-porter-ranch-6405804,199,87,timr,12/28/2015 0:11 +11886228,Show HN: Created Pickaxe a SQL like DSL for web scraping,https://github.com/bitsummation/pickaxe,9,5,breeve,6/12/2016 1:35 +11199506,How Netflix's algorithm exposes technology's ?racial bias.?,http://www.marieclaire.com/culture/a18817/netflix-algorithms-black-movies/,14,10,enzoavigo,2/29/2016 23:13 +10300741,"School Bans Distribution of Sombreros, Says the Hats Are Racist",http://time.com/4053635/university-sombreros-racist/,1,1,elektromekatron,9/29/2015 23:56 +10895327,"The charm of traditional alphabet blocks, enhanced with interactive apps and games",https://www.kickstarter.com/projects/1871927434/alphatechblocks-learning-a-b-cs-thru-tech-and-touc,9,4,flipandtwist,1/13/2016 16:13 +10870729,Node.js from 2009 until 2016,https://blog.risingstack.com/history-of-node-js/,2,1,gabornagy,1/9/2016 10:13 +12142948,"Show HN: Gist Noesis, Welcome to the semantic web",https://gistnoesis.net/,4,3,GistNoesis,7/22/2016 11:37 +10860608,Show HN: SlackBot that watch for links and generates digests based on reactions,http://github.com/d3estudio/d3-digest,7,2,victorgama,1/7/2016 20:45 +10902452,PipelineDB Releases Enterprise Version of Its Streaming SQL Database,http://techcrunch.com/2016/01/14/pipelinedb-releases-first-enterprise-version-of-its-streaming-sql-database/,14,4,Fergi,1/14/2016 16:42 +10688747,Uninstall Notepad++ if you have voted for FN,https://www.facebook.com/Notepad.plus.plus/photos/a.415602275158777.114707.172758639443143/1036894516362880/?type=3,82,96,Raed667,12/7/2015 11:18 +12370272,The Arctic is warming twice as fast as rest of the world,https://www.climaterealityproject.org/blog/watch-arctic-oldest-sea-ice-disappear-over-last-25-years,35,20,smb06,8/27/2016 0:35 +11713002,AWS Certificate Manager now available in more regions,https://aws.amazon.com/about-aws/whats-new/2016/05/aws-certificate-manager-now-available-in-more-regions/,3,2,kelvintran,5/17/2016 12:29 +11894613,E-ink wifi display project,https://davidgf.net/page/41/e-ink-wifi-display,263,79,ck2,6/13/2016 15:25 +11735143,This Augmented Reality Future Looks Like a Living Hell,http://sploid.gizmodo.com/this-augmented-reality-future-looks-like-a-living-hell-1777595401,23,2,pinewurst,5/20/2016 1:50 +11620706,OpenSSL Security Advisory,https://www.openssl.org/news/secadv/20160503.txt,259,228,FiloSottile,5/3/2016 14:00 +11529075,Apple rolls out a new App Store developer site,http://techcrunch.com/2016/04/18/apple-rolls-out-a-new-app-store-developer-site-with-guides-and-videos-for-growing-app-businesses-2/,88,143,sharp11,4/19/2016 18:32 +10687658,Mozilla has a revenue share agreement with Pocket,http://www.wired.com/2015/12/mozilla-is-flailing-when-the-web-needs-it-the-most/,2,1,leavjenn,12/7/2015 1:57 +12203959,Gh-ost: GitHub's online schema migration tool for MySQL,http://githubengineering.com/gh-ost-github-s-online-migration-tool-for-mysql/,226,30,samlambert,8/1/2016 16:55 +10400550,Cops are asking Ancestry.com and 23andMe for their customers DNA,http://fusion.net/story/215204/law-enforcement-agencies-are-asking-ancestry-com-and-23andme-for-their-customers-dna/,658,216,kmfrk,10/16/2015 16:51 +11109572,"Show HN: 'Scriptura' A material design inspired, simple Bible app for Android",https://play.google.com/store/apps/details?id=com.only5c.bible,2,1,afaik,2/16/2016 13:15 +10915228,Start up India: Webcast [video],http://webcast.gov.in/startupindia/,74,19,stoddler,1/16/2016 13:32 +10249139,"Lessons from Gurgaon, India's private city (2014) [pdf]",https://mason.gmu.edu/~atabarro/Lessons%20from%20Gurgaon.pdf,27,15,yummyfajitas,9/20/2015 21:07 +10598075,Improving the Experience When Relationships End,http://newsroom.fb.com/news/2015/11/improving-the-experience-when-relationships-end/,36,46,tucif,11/19/2015 22:10 +10543911,NASA's interactive climate time machine,http://climate.nasa.gov/interactives/climate-time-machine,63,24,cryptoz,11/11/2015 0:45 +11259134,Ask HN: What is your recommended binary file editor,,2,2,selmat,3/10/2016 13:48 +11671769,Advertising cannot maintain the Internet,http://evonomics.com/advertising-cannot-maintain-internet-heres-solution/,134,90,ultrasociality,5/11/2016 0:22 +11755358,"Show HN: ESENT Serialize, a .NET Persistence and Query Layer for ESENT NoSQL DB",https://github.com/Const-me/EsentSerialize,4,3,Const-me,5/23/2016 17:29 +10343458,Microsoft is Dead (2007),http://www.paulgraham.com/microsoft.html,97,92,luu,10/7/2015 0:43 +10817539,British Library to put George III's map collection online,http://theartnewspaper.com/news/conservation/british-library-to-put-one-very-big-atlas-online/,59,7,Amanjeev,12/31/2015 13:51 +12427505,Show HN: Postacard Text a Photo to Send as a Postcard Anywhere on Earth for $3,https://www.postacard.io,218,88,traviswingo,9/5/2016 0:55 +10469200,Jump Threading,http://beza1e1.tuxen.de/articles/jump_threading.html,68,16,nkurz,10/29/2015 3:59 +11444712,Apply HN GoKrazee Rewards Every Challenge,,2,2,SunderRaman,4/7/2016 4:26 +10710387,Serial Season 2 Lets Bowe Bergdahl Tell His Side of Afghan Story,http://www.nytimes.com/2015/12/11/business/media/serial-season-2-bowe-bergdahl-recalls-his-afghan-odyssey.html,107,53,mhb,12/10/2015 13:00 +10896658,Sending and Receiving SMS on Linux,https://www.20papercups.net/programming/sending-receiving-sms-on-linux/,151,57,p4bl0,1/13/2016 19:08 +10995624,Using deep learning to find emoji in pictures,https://emojini.curalate.com,13,1,owenwil,1/29/2016 15:15 +10949025,Clojure is for Type B personalities,https://gist.github.com/oakes/c82cd08821ce444be6bf,32,42,priyatam,1/21/2016 22:32 +12248405,"Grew a Garden,Harvested wheat,travelled ocean to boil salt,laughtered a chicken",http://www.today.com/food/making-chicken-sandwich-scratch-took-six-months-1-500-t45091,1,1,yaarabbi,8/8/2016 15:16 +12039854,Ask HN: Question to self employed developers.Whats your gig?,,26,10,trapped,7/5/2016 22:06 +11138818,The Joy and Agony of Haskell in Production,http://www.stephendiehl.com/posts/production.html,324,92,stefans,2/20/2016 4:22 +10986850,Death of a troll,http://www.theguardian.com/technology/2016/jan/28/death-of-a-troll,8,2,ooobo,1/28/2016 7:17 +12408008,Intel and Nvidia Fighting for Deep Learning Dominance,http://www.gurufocus.com/news/439770/intel-and-nvidia-fighting-for-deep-learning-dominance,33,9,baazaar,9/1/2016 19:07 +10993105,Ask HN: Good Parse alternatives?,,13,12,Nemant,1/29/2016 2:23 +11409572,Leaked: memo from Sergey to all Google,,14,2,hoodoof,4/2/2016 0:29 +11470637,Recovering from a rm -rf /,http://serverfault.com/questions/769357/recovering-from-a-rm-rf,5,1,SpaceInvader,4/11/2016 10:41 +10443087,Why Self-Driving Cars Must Be Programmed to Kill,http://www.technologyreview.com/view/542626/why-self-driving-cars-must-be-programmed-to-kill/,4,6,pavelrub,10/24/2015 10:07 +10886527,Royal Bank of Scotland tells investors Sell everything,http://m.theage.com.au/business/markets/rbs-tells-investors-sell-everything-20160111-gm3ssa.html,13,4,koevet,1/12/2016 10:24 +12542884,What should I study?,,1,3,frankyo,9/20/2016 20:06 +12007940,Spanish authorities raid Google offices over tax,http://www.reuters.com/article/us-google-probe-spain-idUSKCN0ZG1AC,333,351,cocotino,6/30/2016 12:11 +10917746,Americas Great Fitness Divide,http://www.citylab.com/politics/2016/01/americas-great-fitness-divide/414558,24,17,bootload,1/17/2016 1:09 +11215014,Show HN: Waslu.com Start a free family book.,http://waslu.com,4,2,waslu,3/3/2016 4:22 +11374669,Show HN: Sayable send links with 3 randomly generated words,https://sayable.co/,2,1,tonyonodi,3/28/2016 15:07 +10557867,Nobody Knows What Theyre Doing,https://medium.com/dev-color/nobody-knows-what-they-re-doing-42b5c3ee487d,5,1,cjdulberger,11/13/2015 3:33 +12535872,House panel looking into Reddit post about Clinton's email server,http://thehill.com/policy/national-security/296680-house-panel-probes-web-rumor-on-clinton-emails,457,426,monochromatic,9/20/2016 0:13 +11574768,Mitsubishi: We've been cheating on fuel tests for 25 years,http://money.cnn.com/2016/04/26/news/companies/mitsubishi-cheating-fuel-tests-25-years/index.html,254,116,sdneirf,4/26/2016 19:22 +11147563,"Snowed in at NASA, Keeping Watch Over a Space Colossus",http://www.theatlantic.com/science/archive/2016/02/snowed-in-at-nasa/433959/?single_page=true,39,1,Hooke,2/22/2016 0:52 +10517247,Trans-Pacific Partnership bans requirements to access source code of software,http://www.keionline.org/node/2363,5,1,declan,11/6/2015 0:59 +11514562,"Worshipping the Flying Spaghetti Monster is not a real religion, court rules",http://arstechnica.com/tech-policy/2016/04/pastafarianism-is-satire-and-not-protected-religion-court-rules/,3,1,shawndumas,4/17/2016 14:19 +10689796,Open Source Monthly - A Dashboard for GitHub Organizations,https://alysonla.github.io/open-source-monthly/,17,1,Amorymeltzer,12/7/2015 14:52 +12425711,How Elixir Helped Us Scale Our Video User Profile Service for the Olympics,https://medium.com/software-sandwich/how-elixir-helped-us-to-scale-our-video-user-profile-service-for-the-olympics-dd7fbba1ad4e#.zdway598z,132,6,onlydole,9/4/2016 17:53 +12253389,The LHC nightmare scenario has come true,http://backreaction.blogspot.com/2016/08/the-lhc-nightmare-scenario-has-come-true.html?m=1,27,15,degio,8/9/2016 9:08 +11079865,How to Encourage Women in Linux,http://www.tldp.org/HOWTO/Encourage-Women-Linux-HOWTO/index.html,2,1,fibo,2/11/2016 13:10 +12212290,Ask HN: Anyone ever program on their phone?,,3,3,vfxGer,8/2/2016 18:54 +11113110,Gravitational Wave explanation that would make Feynman proud,http://pdvod.new.livestream.com/events/00000000004968d8/339bd995-62d8-4081-90e5-9a73775f03cb_446.mp4?__gda__=1455674864_8c588a53919feddd4022065e9eb7a7ab,3,1,canada_dry,2/16/2016 21:03 +10722310,GCHQ: A Christmas card with a cryptographic twist for charity,http://www.gchq.gov.uk/press_and_media/news_and_features/Pages/Directors-Christmas-puzzle-2015.aspx,1,1,nl5887,12/12/2015 10:19 +11753221,How the Signal messenger creates a lock-in effect,http://news.dieweltistgarnichtso.net/posts/signal-lock-in.html,3,1,newtfish,5/23/2016 11:48 +11879877,Show HN: Fauxcli mocks a command line client from a given YAML file,https://github.com/nextrevision/fauxcli,6,3,nextrevision,6/10/2016 20:46 +10859691,A New Thermodynamics Theory of the Origin of Life (2014),https://www.quantamagazine.org/20140122-a-new-physics-theory-of-life/,11,2,brianchu,1/7/2016 18:24 +11093594,Awesome Web Development Tools and Resources,https://www.keycdn.com/blog/web-development-tools/,89,11,antitamper,2/13/2016 11:42 +12248997,Show HN: Auto install npm dependencies as you code,https://www.npmjs.com/package/auto-install,60,77,siddharthkp,8/8/2016 16:35 +11912757,Chinas co-living boom puts hundreds of millennials under one roof,http://qz.com/706409/chinas-co-living-boom-puts-hundreds-of-millennials-under-one-roof-heres-what-its-like-inside-one/,2,1,nols,6/15/2016 22:59 +10339554,Ask HN: What should I do?,,13,16,tonym9428,10/6/2015 15:33 +12103187,Skilled Immigrants Aren't Stealing Our Jobs Here's the Data,https://www.offerletter.io/blog/2016/07/14/skilled-immigrants-arent-stealing-our-jobs-heres-the-data/,2,1,jsudhams,7/15/2016 19:13 +11814531,Intel knows it's no longer inside,http://www.theverge.com/2016/5/31/11817818/intel-computex-2016-keynote-report,130,124,jonbaer,6/1/2016 14:22 +11163360,Ask HN: Sources for study of intermediate statistics?,,4,3,johan_larson,2/23/2016 23:49 +10783071,Skier almost hit by camera drone in World Cup slalom,http://www.bbc.com/sport/winter-sports/35164700,159,158,vermontdevil,12/23/2015 13:02 +10782679,"Algorithms Need Managers, Too",https://hbr.org/2016/01/algorithms-need-managers-to,2,1,bootload,12/23/2015 9:52 +11855228,Can you beat a quantum computer?,https://mindi.io,14,4,efangs,6/7/2016 15:41 +12550432,9 Tips for Digital Franchise Marketing,http://condorly.com/9-tips-digital-franchise-marketing/,2,1,Condorly,9/21/2016 17:38 +11788514,How the ArXiv Decides Whats Science,http://backreaction.blogspot.com/2016/05/the-holy-grail-of-crackpot-filtering.html,78,24,yetanotheracc,5/27/2016 20:00 +11067566,Jheronimus Bosch The Garden of Earthly Delights Interactive,https://tuinderlusten-jheronimusbosch.ntr.nl/en#,189,21,justbees,2/9/2016 18:37 +10387615,A photographer edits out smartphones to show our strange and lonely new world,http://qz.com/523746/a-photographer-edits-out-our-smartphones-to-show-our-strange-and-lonely-new-world/,9,10,Thorondor,10/14/2015 16:35 +11590578,This years Founders' Letter,https://googleblog.blogspot.com/2016/04/this-years-founders-letter.html,119,50,gordon_freeman,4/28/2016 17:38 +11395166,WeChat is reinventing ecommerce and America is playing catch-up,https://www.techinasia.com/wechat-social-commerce-chinaccelerator,96,34,vincent_s,3/31/2016 5:25 +12035759,Thue Morse sequence and how I discovered I wasn't alone after all,http://linkdot.link/abbabaabbaababba/,5,3,yantrams,7/5/2016 11:55 +12439300,Disney World to Require Mandatory Fingerprint Scans,https://disneyworld.disney.go.com/faq/my-disney-experience/my-magic-plus-privacy/,4,1,electic,9/6/2016 21:08 +12476894,Input threads in the X server,https://who-t.blogspot.com/2016/09/input-threads-in-x-server.html,35,2,JoshTriplett,9/12/2016 2:53 +11496782,He Got Greedy: How the U.S. Government Hunted Encryption Programmer Paul Le Roux,https://mastermind.atavist.com/he-got-greedy,352,115,katiabachko,4/14/2016 14:06 +12451198,"Fasting triggers stem cell regeneration of damaged, old immune system (2014)",http://news.usc.edu/63669/fasting-triggers-stem-cell-regeneration-of-damaged-old-immune-system/,199,171,rhubarbcustard,9/8/2016 8:25 +11849727,Walking and Talking Behaviors May Help Predict Epidemics and Trends,http://news.psu.edu/story/413617/2016/06/06/research/walking-and-talking-behaviors-may-help-predict-epidemics-and-trends,23,2,brahmwg,6/6/2016 19:46 +11931154,"Calling .click() in a loop inside window.onload hangs Chrome, Firefox, and IE",https://xmppwocky.net/clickfreezeconfirm.html,3,1,XMPPwocky,6/18/2016 23:48 +10366165,Dublin Traceroute: NAT-aware multipath tracerouting tool,https://dublin-traceroute.net/README.md,15,1,federico3,10/10/2015 17:22 +11304628,Carl's Jr. wants to open automated location,http://www.businessinsider.com/carls-jr-wants-open-automated-location-2016-3,55,133,Jerry2,3/17/2016 14:46 +12007665,Programming language development: the past 5 years (2011),http://blog.fogus.me/2011/10/18/programming-language-development-the-past-5-years/,57,26,alvin0,6/30/2016 10:44 +11878476,Thoughts on Algolia vs. Solr and Elasticsearch,http://opensourceconnections.com/blog/2016/06/01/thoughts-on-algolia/,101,32,softwaredoug,6/10/2016 18:03 +12067221,"Ask HN: How to *really* learn concurrency,parallelism?",,10,8,bonobo3000,7/10/2016 20:53 +11740278,Chromebooks outsold Macs for the first time in the US,http://www.theverge.com/2016/5/19/11711714/chromebooks-outsold-macs-us-idc-figures,187,249,chirau,5/20/2016 18:29 +11887349,Are Corporate Data Centers Obsolete in the Cloud Era?,http://www.forbes.com/sites/kalevleetaru/2016/06/11/are-corporate-data-centers-obsolete-in-the-cloud-era/#1dac888e12c5,3,1,jonbaer,6/12/2016 9:24 +10872467,"The big short, the housing bubble and the financial crisis",http://cepr.net/blogs/beat-the-press/the-big-short-the-housing-bubble-and-the-financial-crisis,30,6,pilooch,1/9/2016 19:24 +10996765,"Show HN: Ship A fast, native issue tracker for software projects",https://www.realartists.com/blog/ship-it.html,219,106,kogir,1/29/2016 17:33 +12138746,"Ask HN: English Speaking, services for practicing",,2,2,jacke,7/21/2016 18:05 +12280147,The ethics of modern web ad-blocking,https://marco.org/2015/08/11/ad-blocking-ethics,12,2,ashitlerferad,8/13/2016 3:40 +10421756,Windows 10 Update Prompts the User to Try Edge,http://www.forbes.com/sites/gordonkelly/2015/10/19/windows-10-block-chrome-firefox/,5,8,cpeterso,10/20/2015 20:56 +11079815,Rand Fishkin's New Book Proposal,https://docs.google.com/document/d/1rWAzZF8LIGnJgOKaK54coGhpTM54P0CIJO5oisumBMg/edit,35,1,jonnymiller,2/11/2016 12:56 +10791822,Hyde Park visitors tracked via mobile phone data,http://www.theguardian.com/world/2015/dec/25/hyde-park-visitors-tracked-mobile-phone-data-ee,60,9,Turukawa,12/25/2015 18:05 +11198143,RegExp Lookbehind Assertions,http://v8project.blogspot.com/2016/02/regexp-lookbehind-assertions.html,28,17,shawndumas,2/29/2016 20:24 +10394289,Standing Desks Are Mostly Bullshit,http://gizmodo.com/standing-desks-are-mostly-bullshit-1736571972,3,2,wyclif,10/15/2015 16:55 +10229603,Show HN: Ybin private pastebin,http://zx.rs/7/ybin---paste-data-privately/,2,2,andronik,9/16/2015 20:25 +11461803,Real-Time GDP Tracker Gains a Following and Some Criticism,http://blogs.wsj.com/moneybeat/2016/04/08/real-time-gdp-tracker-gains-a-following-and-some-criticism/,10,1,randomname2,4/9/2016 15:58 +10376771,Show HN: FoxType Using NLP to help you write more politely,https://labs.foxtype.com,73,50,mikkiq,10/12/2015 20:25 +11925398,Jury awards $22m to man locked in closet by police for four days,http://www.cleveland.com/court-justice/index.ssf/2016/06/east_cleveland_cop_locked_inno.html,67,57,jackgavigan,6/17/2016 20:38 +10285726,"Mobile browser traffic is 2X bigger than app traffic, and growing faster",http://venturebeat.com/2015/09/25/wait-what-mobile-browser-traffic-is-2x-bigger-than-app-traffic-and-growing-faster/,231,136,AnbeSivam,9/27/2015 7:06 +11672136,Salesforce 12-Hour (so far) Outage,http://www.theregister.co.uk/2016/05/11/marc_benioff_publically_apologizes_over_salesforce_na14_instance_outage/,4,1,foxylad,5/11/2016 1:57 +12003617,How Much Dev Speak Should Product Managers Know?,http://blog.aha.io/how-much-dev-speak-should-product-managers-know/,8,1,bdehaaff,6/29/2016 18:35 +10803912,Universities Race to Nurture Start-up Founders of the Future,http://www.nytimes.com/2015/12/29/technology/universities-race-to-nurture-start-up-founders-of-the-future.html?_r=0,1,1,camurban,12/28/2015 22:53 +11042539,China's crackdown on dissent goes global,http://www.cnn.com/2016/02/04/asia/china-dissident-crackdown-goes-global/index.html,1,1,TravelTechGuy,2/5/2016 16:39 +11292579,All-female flight crew lands 787 in country they're not allowed to drive in,http://www.independent.co.uk/news/world/asia/royal-brunei-airlines-first-all-female-flight-deck-crew-lands-plane-in-saudi-arabia-where-women-are-a6931726.html,15,4,imartin2k,3/15/2016 20:08 +11482248,Scientific Regress,https://www.firstthings.com/article/2016/05/scientific-regress,3,1,eastbayjake,4/12/2016 18:32 +12466104,FSF stresses necessity of full user control over Internet-connected devices,http://www.fsf.org/news/free-software-foundation-stresses-necessity-of-full-user-control-over-internet-connected-devices,7,2,jasonkostempski,9/9/2016 21:15 +10560781,Reports that Bassel Khartabil has been sentenced to death,http://joi.ito.com/weblog/2015/11/13/urgent-reports-.html,221,50,ahtierney,11/13/2015 16:49 +12012325,Apple in Exploratory Talks to Acquire Jay Zs Tidal Music Service,http://www.wsj.com/articles/apple-in-talks-to-acquire-jay-zs-tidal-music-service-1467325314,37,60,kloncks,6/30/2016 22:25 +10923848,"The Architecture of Schemaless, Uber Engineerings Trip Datastore Using MySQL",https://eng.uber.com/schemaless-part-two/,29,21,danielbryantuk,1/18/2016 11:49 +11438125,A roadmap to interstellar flight,http://arxiv.org/abs/1604.01356,5,1,musgravepeter,4/6/2016 11:57 +11175263,Current Proposals for C++17,http://meetingcpp.com/index.php/br/items/current-proposals-for-c17.html,66,36,meetingcpp,2/25/2016 16:02 +12021890,Show HN: GrokBB My Reddit Alternative,,7,4,Snocrash,7/2/2016 8:51 +10902838,Show HN: Commit Comments build commit messages in code comments,https://github.com/thebearjew/commit-comments,31,26,Zezima,1/14/2016 17:32 +12421718,Syslog is terrible,https://www.bouncybouncy.net/blog/syslog-is-terrible/,63,21,andyjpb,9/3/2016 23:09 +10499454,The Geography of Radionavigation and the Politics of Intangible Artifacts (2014) [pdf],http://history.yale.edu/sites/default/files/files/2014%20rankin%20-%20radionavigation%20and%20intangible%20artifacts.pdf,9,2,benbreen,11/3/2015 13:44 +10675621,What it feels like when a competitor utterly rips off your entire company,https://medium.com/@dhassell/what-it-feels-like-when-a-competitor-utterly-rips-off-your-entire-company-i-m-looking-at-you-def1e0528fa3#.9reicknqv,4,3,growthmaverick,12/4/2015 10:55 +10202998,Lightweight Docker Images? [Skinnywhale],http://blog.librato.com/posts/docker-images,4,1,pella,9/11/2015 10:59 +10352418,Who submits and comments on HN?,,7,1,finnjohnsen2,10/8/2015 12:58 +12057361,Monthly Book Subscription for Entrepreneurs and Techies,http://www.startuplit.com/,1,1,mostep,7/8/2016 17:49 +12328551,Put an end to apartment rent for the time during the day when you aren't home,http://www.ghostroommate.com/,25,11,jonthepirate,8/20/2016 22:31 +11248703,Open Semantic Search,http://www.opensemanticsearch.org/,68,8,based2,3/8/2016 21:14 +11335810,What to Do with All That Bandwidth? GPUs for Graph and Predictive Analytics,https://devblogs.nvidia.com/parallelforall/gpus-graph-predictive-analytics/,4,2,bsprings,3/22/2016 11:57 +11287494,Turn Your Computer into Personal Cloud Storage Device,https://www.basefolder.com/index.php/features/,2,1,basefolder,3/15/2016 4:42 +10875940,Ask HN: Why are there so few logic programming languages like Prolog?,,6,7,elcapitan,1/10/2016 16:50 +12315814,TCP Puzzlers,https://www.joyent.com/blog/tcp-puzzlers,468,70,jsnell,8/18/2016 19:52 +10887238,state of the art research on 'boredom',http://www.nature.com/news/why-boredom-is-anything-but-boring-1.19140,3,2,yarapavan,1/12/2016 13:28 +10318019,"Woman makes app to let people rate you, Now SHES upset people are reviewing her",http://www.theregister.co.uk/2015/10/01/slander_app_founder_slandered/?mt=1443751745342,11,1,forgottenpass,10/2/2015 12:28 +12114946,Become a 10x Programmer by Managing Your Time Better,http://nickjanetakis.com/blog/schedules-arent-a-constraint-on-life-they-let-you-live-it,113,37,nickjj,7/18/2016 13:38 +11990506,The AI Top Gun That Can Beat the Military's Best,http://www.dailymail.co.uk/sciencetech/article-3662656/The-AI-Gun-beat-military-s-best-Pilots-hail-aggresive-dynamic-software-losing-repeatedly.html,3,1,tomohawk,6/28/2016 0:02 +10916849,Ultimate++: a C++ cross-platform RAD framework,http://www.ultimatepp.org/index.html,69,9,vmorgulis,1/16/2016 21:10 +12047808,Longest Polar Bear Swim Recorded (2011),http://news.nationalgeographic.com/news/2011/07/110720-polar-bears-global-warming-sea-ice-science-environment/,36,9,secondary,7/7/2016 6:33 +10486522,"Correlations Between Racism, Feminism, Marxism, Activism and Critical Theory",https://www.google.com/trends/explore#q=racism%2C%20feminism%2C%20marxism%2C%20activism%2C%20critical%20theory&date=1%2F2007%2097m&cmpt=q&tz=Etc%2FGMT-1,3,2,foobar2020,11/1/2015 14:48 +10819955,Navy seals discuss toxicity of ego [video],https://www.facebook.com/businessinsider/videos/10153195181519071/,19,2,avitzurel,12/31/2015 22:04 +10654865,"Culture and Ideology Are Not Your Friends (Terence McKenna, 1999)",https://www.youtube.com/watch?v=i0gsHFatPp0,2,1,musha68k,12/1/2015 12:38 +10198508,Embracing the Weirdness of Waterless Waterways,http://www.hakaimagazine.com/article-long/embracing-weirdness-waterless-waterways,11,2,tobinstokes,9/10/2015 15:09 +10468407,Ask HN: You have $1-5k how would you bootstrap your retirement?,,9,3,tonteldoos,10/29/2015 0:20 +11659269,Police and Tech Giants Wrangle Over Encryption on Capitol Hill,http://www.nytimes.com/2016/05/09/technology/police-and-tech-giants-wrangle-over-encryption-on-capitol-hill.html,41,12,hvo,5/9/2016 12:34 +10284095,Show HN: React-metaform React component for building forms out of metadata,https://github.com/gearz-lab/react-metaform,14,5,andrerpena,9/26/2015 19:09 +10457629,Software Is the New Oil,http://avc.com/2015/10/software-is-the-new-oil/,130,83,orrsella,10/27/2015 12:50 +11788074,Facebook and Microsoft are building a giant cable under the sea,http://money.cnn.com/2016/05/26/technology/facebook-microsoft-cable-marea/index.html,2,1,wclax04,5/27/2016 18:52 +10791413,Ask HN: In Washington DC till jan 3rd. Meetup?,,2,2,jbverschoor,12/25/2015 15:22 +10524791,Encryption ransomware threatens Linux users,http://news.drweb.com/show/?i=9686&lng=en&c=5,63,26,tomkwok,11/7/2015 13:59 +12320950,WikiLeaks Has Morphed from Journalism Hotshot to Malware Hub,https://backchannel.com/wikileaks-has-morphed-from-journalism-hotshot-to-malware-hub-1bdd68cc560,12,11,steven,8/19/2016 15:57 +10458624,The Rise and Fall of For-Profit Schools,http://www.newyorker.com/magazine/2015/11/02/the-rise-and-fall-of-for-profit-schools?mbid=rss,4,1,bpolania,10/27/2015 15:32 +11890742,Ask HN: How many programmers out there keep a paper notebook for their projects?,,35,33,yellowboxtenant,6/12/2016 23:00 +11177200,"Microsoft, Google, Facebook Back Apple in Blocked Phone Case",http://www.bloomberg.com/news/articles/2016-02-25/microsoft-says-it-will-file-an-amicus-brief-to-support-apple,888,240,sbuk,2/25/2016 19:44 +12196019,Ask HN: How to recover from being overworked in the past?,,3,2,nullundefined,7/31/2016 6:57 +12114013,My GO-JEK Story: 900X in 18 months,https://blog.gojekengineering.com/my-go-jek-story-af5f1925bfe,11,1,kaiwren,7/18/2016 9:30 +10578395,The war on crypto,,2,1,obituary_latte,11/17/2015 0:36 +11384577,Feather: A Fast On-Disk Format for Data Frames for R and Python,http://blog.rstudio.org/2016/03/29/feather/,181,75,revorad,3/29/2016 20:24 +10308410,Tired of capitalism? There could be a better way,http://www.washingtonpost.com/news/in-theory/wp/2015/09/30/tired-of-capitalism-lets-try-basic-income/,3,4,djrobstep,10/1/2015 0:25 +10963941,Show HN: Roman Seamless Roman Numeral Conversion in Swift,https://github.com/nvzqz/Roman,2,1,nvzqz,1/24/2016 20:43 +10448839,Famo.us pivots from JavaScript engine to micro-app CMS,http://famous.co/,20,7,dylanpyle,10/25/2015 23:06 +11856287,Miso (YC S16) offers high quality on-demand home cleaning in South Korea,http://www.themacro.com/articles/2016/06/miso/,37,39,stvnchn,6/7/2016 17:58 +10615578,Leapfrogging to Solar: Emerging Markets Outspend Rich Countries,http://www.bloomberg.com/news/articles/2015-11-23/leapfrogging-to-solar-emerging-markets-outspend-rich-countries-for-the-first-time,30,5,anguswithgusto,11/23/2015 16:54 +11367331,How to Get Out of Bed,http://www.theparisreview.org/blog/2016/03/24/how-to-get-out-of-bed/,275,139,kafkaesq,3/26/2016 20:34 +10682363,"New way to make yeast hybrids may inspire new brews, biofuels",http://news.wisc.edu/24223,26,5,nkurz,12/5/2015 16:38 +12372975,An Interesting SETI Candidate in Hercules,http://www.centauri-dreams.org/?p=36248,3,2,okket,8/27/2016 16:23 +10425548,How Two Women Turned a Joke into a Business That Sells Men,http://thehustle.co/how-two-women-turned-a-joke-into-a-business-that-sells-men,2,2,sageabilly,10/21/2015 14:19 +12177995,Introducing Oodle Mermaid and Selkie (data compressors),http://cbloomrants.blogspot.com/2016/07/introducing-oodle-mermaid-and-selkie.html,2,1,jacobolus,7/28/2016 2:38 +11239888,What About Trump's Comments on H1-Bs?,http://cis.org/miano/what-about-trumps-comments-foreign-workers,2,1,griff1986,3/7/2016 16:53 +10475935,The Subway Map War of 1978,http://www.theverge.com/2015/10/29/9630862/new-york-city-subway-maps-mta-google-gps,13,3,jonas21,10/30/2015 3:02 +11468876,Ask HN: Have you sat in on acquisition discussions? How to ask for a billion $?,,7,4,hoodoof,4/11/2016 0:18 +11036195,What It's Really Like Working with Steve Jobs (2011),http://inventor-labs.com/blog/2011/10/12/what-its-really-like-working-with-steve-jobs.html,136,43,walterbell,2/4/2016 18:49 +11919977,ECMAScript 2016 Approved,http://www.ecma-international.org/ecma-262/7.0/index.html,238,75,gsklee,6/17/2016 0:31 +10565571,SHA-3 in x86 assembly 761 bytes,https://odzhan.wordpress.com/2015/11/03/tiny-sha-3/,3,1,odzhan,11/14/2015 13:24 +11445389,Vis: A Vim-Like Text Editor,https://github.com/martanne/vis,355,157,fractalb,4/7/2016 7:26 +12490260,Show HN: 30-Day Challenge to Learn Something New Every Day,http://gohighbrow.com/challenge/,3,1,gohighbrow,9/13/2016 17:12 +11286348,Mozilla Servo alpha will be released in June,https://groups.google.com/forum/#!topic/mozilla.dev.servo/dcrNW6389g4,319,52,dumindunuwan,3/14/2016 23:24 +12237449,South Koreans use emoji to express playful sentiments they wouldnt utter aloud,https://www.1843magazine.com/technology/the-curious-adventures-of-con-and-frodo,66,25,r0n0j0y,8/6/2016 7:50 +11088437,The Independent to cease as print edition,http://www.bbc.com/news/uk-35561145,1,1,mrzool,2/12/2016 16:40 +11837901,Tor Project Statement on Jacob Appelbaum,https://blog.torproject.org/blog/statement,131,90,tshtf,6/4/2016 20:41 +10941363,Scientists have traced folk stories back to the Bronze Age,http://www.theatlantic.com/science/archive/2016/01/on-the-origin-of-stories/424629/?&single_page=true,126,18,curtis,1/20/2016 21:08 +12180039,Photographer Suing Getty Images for $1B,http://petapixel.com/2016/07/27/photographer-suing-getty-images-1-billion/,408,159,iamben,7/28/2016 13:30 +11276960,Ask HN: Am I getting old?,,11,5,greenspot,3/13/2016 9:24 +10429384,Tuckman's stages of group development,https://en.wikipedia.org/wiki/Tuckman%27s_stages_of_group_development,6,1,imdsm,10/21/2015 22:53 +11257792,New language built from the ground up for productive parallel programming,https://github.com/chapel-lang/chapel,5,2,timothycrosley,3/10/2016 7:35 +10619675,Android malware drops Banker from PNG file,http://b0n1.blogspot.com/2015/11/android-malware-drops-banker-from-png.html,36,11,boni11,11/24/2015 8:07 +11991587,Italy wants Whatsapp to pay for operators' lost revenue,https://translate.google.com/translate?sl=auto&tl=en&js=y&prev=_t&hl=it&ie=UTF-8&u=http%3A%2F%2Fwww.repubblica.it%2Feconomia%2F2016%2F06%2F28%2Fnews%2Fagcom_whatsapp_e_le_app_di_messaggistica_paghino_l_uso_della_rete_telefonica_-142965748%2F%3Fref%3DHREC1-2&edit-text=,4,3,kimi,6/28/2016 5:00 +10872766,Show HN: PhotoREPL: Live-preview raw photo editing CLI,https://github.com/photoshell/photoREPL,9,2,SamWhited,1/9/2016 20:35 +11440363,"Why Are Voters Angry? Its the 1099 Economy, Stupid",https://newrepublic.com/article/132407/voters-angry-its-1099-economy-stupid,20,21,Apocryphon,4/6/2016 17:44 +10928958,Dead Certainty: How Making a Murderer Goes Wrong,http://www.newyorker.com/magazine/2016/01/25/dead-certainty,67,88,cgoodmac,1/19/2016 4:59 +12452216,The longer passwords in the Last.fm database,https://www.leakedsource.com/i/lastfmlong.txt,141,119,ProfDreamer,9/8/2016 12:10 +10652574,Terra: A low-level counterpart to Lua,http://terralang.org/index.html,140,40,charlieegan3,11/30/2015 23:13 +11044329,"Maturing markets = higher stakes, closing doors",https://medium.com/@ev/maturing-markets-higher-stakes-closing-doors-ae69da6c764,38,4,ssclafani,2/5/2016 20:22 +10644535,26 Tech Documentaries Worth Watching,https://medium.com/@diymanik/26-tech-documentaries-worth-watching-3d8e7da20232#.ct7ijlbxi,1,1,mcnabj,11/29/2015 13:36 +10714661,Randall's Theory Increases Number of Dimensions in Physical Universe (2009),http://www.thecrimson.com/article/2009/6/2/class-of-1984-lisa-randall-as/,48,9,bootload,12/11/2015 0:22 +12138725,The toxic side of free. Or: how I lost the love for my side project,https://remysharp.com/2015/09/14/jsbin-toxic-part-1,4,1,mouzogu,7/21/2016 18:00 +10300349,"A fully wrap-around, ultra-thin invisibility cloak at the microscale",http://www.kurzweilai.net/how-to-make-3-d-objects-totally-disappear,20,3,ca98am79,9/29/2015 22:47 +10460592,Is anyone else experiencing rapidly increasing health care costs?,,1,3,toptalentscout,10/27/2015 19:47 +12050001,These 2 Forces Will Crush the San Francisco Housing Bubble,http://wolfstreet.com/2016/07/05/san-francisco-jobs-labor-force-decline-crush-housing-bubble/,19,18,kdsudac,7/7/2016 15:41 +11658037,Software Is Eating the Ops World,http://pcable.net/2016/05/02/programming/,1,1,kiyanwang,5/9/2016 6:57 +11111387,E-Commerce: Convenience Built on a Mountain of Cardboard,http://www.nytimes.com/2016/02/16/science/recycling-cardboard-online-shopping-environment.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=photo-spot-region®ion=top-news&WT.nav=top-news,4,2,pavornyoh,2/16/2016 17:15 +10331683,Immutable Data Structures and JavaScript,http://jlongster.com/Using-Immutable-Data-Structures-in-JavaScript,177,70,jlongster,10/5/2015 13:36 +10681056,Caveman2 A Common Lisp web framework,http://8arrow.org/caveman/,64,13,Immortalin,12/5/2015 6:03 +10980055,Ask HN: What are examples of large websites without JavaScript?,,2,1,kluck,1/27/2016 14:16 +12464239,Our Foolproof Web Design Process,https://medium.com/made-in-nashville/our-foolproof-web-design-process-f8b68828cd61#.zt4r1vhh8,4,2,leemcalilly,9/9/2016 17:20 +11527369,How to run Powershell remotely using .NET (and send/receive files too),http://getthinktank.com/2015/06/22/naos-winrm-windows-remote-management-through-net/,23,2,wlscaudill,4/19/2016 14:51 +11794356,Boys who live with books earn more as adults,http://www.theguardian.com/education/2016/may/29/boys-books-earnings-adults,119,82,bootload,5/29/2016 1:22 +12051881,Build a RESTful API in less than a week,http://berest.io,5,4,vlamanna,7/7/2016 20:27 +10593888,Topology looks for the patterns inside big data,https://theconversation.com/topology-looks-for-the-patterns-inside-big-data-39554,66,15,ColinWright,11/19/2015 10:11 +10234541,Show HN: I'm writing a book to teach intermediate web app programming,,1,2,limedaring,9/17/2015 16:55 +10402307,From Python to Go and Back Again,https://docs.google.com/presentation/d/1LO_WI3N-3p2Wp9PDWyv5B6EGFZ8XTOTNJ7Hd40WOUHo/mobilepresent?pli=1#slide=id.g70b0035b2_1_168,366,165,azth,10/16/2015 22:04 +12116615,Record-Setting Hard Drive Writes Information One Atom at a Time,http://gizmodo.com/record-setting-hard-drive-writes-information-one-atom-a-1783740015,2,1,ourmandave,7/18/2016 17:32 +10419202,"Code for Downloading any Instagram image (Full size HD),Star it",https://github.com/introvertmac/Instahack,2,1,introvertmac,10/20/2015 14:08 +10519899,Five hours with Edward Snowden,http://fokus.dn.se/edward-snowden-english,327,219,henrik_w,11/6/2015 15:27 +12145423,Kubernetes at Box: Microservices at Maximum Velocity,https://www.box.com/blog/kubernetes-box-microservices-maximum-velocity/,157,31,robszumski,7/22/2016 18:06 +10446903,"Good Sleep, Good Learning, Good Life",http://super-memory.com/articles/sleep.htm,4,1,1_player,10/25/2015 14:13 +11740501,CoreOS Linux Alpha Remote SSH Issue Post-Mortem,https://coreos.com/blog/security-brief-coreos-linux-alpha-remote-ssh-issue.html,11,5,robszumski,5/20/2016 18:58 +10663028,Turbochargers Will Keep Getting Better,http://www.popularmechanics.com/cars/a18260/future-turbochargers-will-be-more-powerful-and-efficient/,38,49,dmmalam,12/2/2015 14:19 +11693806,Ask HN: Is there an container based alternative to virtualbox/vmware player?,,2,5,soulbadguy,5/13/2016 23:15 +10911337,Show HN: OhLife for Work Teams,https://myfridayfeedback.com/,1,3,lukethomas,1/15/2016 19:04 +11778726,Tesla Model S adaptive cruise control crashes into van,https://www.youtube.com/watch?v=qQkx-4pFjus,77,105,aresant,5/26/2016 15:34 +10584361,Amazon: An Evil Empire Dawns on the Internet of Things,http://www.zdnet.com/article/amazon-the-internet-of-things-evil-empire/,28,18,walterbell,11/17/2015 22:09 +11010856,Decommissioning a free public API,http://www.cambus.net/decommissioning-a-free-public-api/,170,54,andrewaylett,2/1/2016 10:09 +12243293,How to kill yourself in Python,http://jugad2.blogspot.com/2016/08/how-to-kill-yourself-in-python.html,7,2,vram22,8/7/2016 19:33 +10801841,Is Being a Digital Nomad a Lie?,http://coastery.com/2015/digital-nomad-truth/,92,56,Naiiz,12/28/2015 16:21 +12025585,Are two RX 480s faster than a single GTX 1080?,http://arstechnica.co.uk/gadgets/2016/07/amd-rx-480-crossfire-vs-nvidia-gtx-1080-ashes/,37,25,doener,7/3/2016 10:50 +11910583,Into the Depths of C: Elaborating the De Facto Standards [pdf],http://www.cl.cam.ac.uk/research/security/ctsrd/pdfs/201606-pldi2016-clanguage.pdf,2,1,ingve,6/15/2016 17:13 +11554661,Icelandic names: children have different last names to their parents,https://en.wikipedia.org/wiki/Icelandic_name,6,1,jboy,4/23/2016 8:09 +10668922,Lets encrypt automation on Debian,http://eblog.damia.net/2015/12/03/lets-encrypt-automation-on-debian/,100,29,nereid666,12/3/2015 10:51 +10346407,"Jet.com Overhauls Business Model, Kills $50 Membership Fee to Broaden Appeal",http://recode.net/2015/10/07/jet-com-overhauls-business-model-kills-50-membership-fee-to-broaden-appeal/,12,3,patd,10/7/2015 15:00 +11129375,Why There Is No Hitchhikers Guide to Mathematics for Programmers,http://jeremykun.com/2013/02/08/why-there-is-no-hitchhikers-guide-to-mathematics-for-programmers/,145,130,iamwil,2/18/2016 21:14 +10281678,Show HN: EngCrunch Engineering Blogs,http://engcrunch.com,4,2,engcrunch,9/26/2015 1:06 +10995524,Twitters Salvation Is Staring It Right in the Face,https://medium.com/@diymanik/twitter-s-salvation-is-staring-it-right-in-the-face-3e8b3f3b82df#.c46m9p748,2,1,mcnabj,1/29/2016 14:57 +11037939,Inspiration UI Find design inspiration from real live projects,http://inspirationui.com,110,21,gzmihai,2/4/2016 22:54 +11382595,Show HN: POC to show the flaw in project collaborator notifications on GitHub,https://github.com/719Ben/attention-whore,28,15,719Ben,3/29/2016 16:23 +10483645,Scientists find what controls waking up and going to sleep,http://www.northwestern.edu/newscenter/stories/2015/08/scientists-discover-what-controls-waking-up-and-going-to-sleep-.html,3,1,Oatseller,10/31/2015 18:46 +12372165,Show HN: In-view.js Get notified when DOM elements enter or exit the viewport,https://github.com/camwiegert/in-view,118,62,Heqx,8/27/2016 12:59 +11202956,Ask HN: Who wants to be hired? (March 2016),,84,202,whoishiring,3/1/2016 15:00 +11325752,3 months and 1M SSH attempts later,https://livesshattack.net/blog/2016-03-20/3-months-and-1-million-ssh-attempts-later,84,67,WillieStevenson,3/21/2016 2:06 +10540999,What MongoDB Got Right,https://blog.nelhage.com/2015/11/what-mongodb-got-right/,16,1,lizdenys,11/10/2015 17:58 +10930876,Facebook lets Android users access the app anonymously through Tor,https://www.facebook.com/notes/facebook-over-tor/adding-tor-support-on-android/814612545312134?_rdr=p,8,2,stuti90,1/19/2016 14:20 +11102471,Tone-deaf Carrier manager announces layoffs,http://boingboing.net/2016/02/12/watch-tone-deaf-manager-annou.html,7,2,pm24601,2/15/2016 9:55 +11823758,"This is when you're most popular, according to science",https://www.weforum.org/agenda/2016/04/this-is-when-youre-most-popular-according-to-science/,12,12,randomname2,6/2/2016 16:19 +11762516,HN Ask: Please Review My Startup Serkit Messenger,,1,5,serkitme,5/24/2016 15:49 +10643731,"Jeff Kell, ListServ and IRC pioneer, has died",http://3000newswire.blogs.com/3000_newswire/2015/11/3000-community-keystone-jeff-kell-dies.html,99,8,rmason,11/29/2015 4:34 +10295898,Meteor Toys 2: Development Tools for Meteor,https://meteor.toys,5,1,elyase,9/29/2015 13:02 +10725657,The Swindled Samaritan,http://www.nytimes.com/2015/12/13/magazine/the-swindled-samaritan.html,35,11,wallflower,12/13/2015 7:05 +10844239,A POLITICS FOR TECHNOLOGY,https://stratechery.com/2016/a-politics-for-technology/,5,1,joshus,1/5/2016 16:50 +11865204,Andrey Breslav: Kotlin 1.1 Roadmap,https://realm.io/news/andrey-breslav-whats-next-for-kotlin-roadmap/,1,1,fortpoint,6/8/2016 20:05 +10982057,F.C.C. Proposes Changes in Cable Set-Top Box Market,http://www.nytimes.com/2016/01/28/technology/fcc-proposes-changes-in-set-top-box-market.html?ref=technology,24,18,pavornyoh,1/27/2016 18:49 +10770285,New ways to get more done in Outlook.com,https://blogs.office.com/2015/05/21/new-ways-to-get-more-done-in-outlook-com/,1,2,ArekDymalski,12/21/2015 9:19 +10658430,Why nobody will steal your shitty startup idea,https://medium.com/@davidamse/why-nobody-will-steal-your-shitty-start-up-idea-795feaea5a6a,1,1,stared,12/1/2015 20:19 +12021091,Androids full-disk encryption just got much weakerheres why,http://arstechnica.com/security/2016/07/androids-full-disk-encryption-just-got-much-weaker-heres-why/,5,1,cypherpunks01,7/2/2016 2:22 +10398217,Markdeep,http://casual-effects.com/markdeep/,8,2,haakon,10/16/2015 9:07 +10722576,Download OS X El Capitan 10.11.2 Combo Update,https://support.apple.com/kb/DL1850?locale=en_US,3,1,KevinHorvath,12/12/2015 12:47 +12044384,Show HN: An encoding/decoding tool for Martin David's theoretical S language,https://github.com/ramadis/slang,12,1,ramadis,7/6/2016 16:59 +10835842,"Aseprite: cross-platform, open source sprite and pixel art tool",http://www.aseprite.org/,188,22,git-pull,1/4/2016 14:50 +12008936,Ask HN: Training a NN on ancient proverbs to decipher the meaning of life,,1,3,sharemywin,6/30/2016 14:54 +10414192,Processor Utilization Difference Between IBM AIX and Linux on Power,http://www.ibm.com/developerworks/library/l-processor-utilization-difference-aix-lop-trs/index.html,21,17,luu,10/19/2015 17:07 +11557707,"Clang emits memcpy for std::swap, which can introduce undefined behavior",https://llvm.org/bugs/show_bug.cgi?id=27498,110,80,luu,4/23/2016 22:32 +11397250,When will rooftop solar be cheaper than the grid?,http://theconversation.com/when-will-rooftop-solar-be-cheaper-than-the-grid-heres-a-map-54789,132,83,leejoramo,3/31/2016 14:07 +11920942,Yakyak: Electron Chat Client for Google Hangouts,https://github.com/yakyak/yakyak,103,82,obilgic,6/17/2016 6:03 +10752028,Why Python 3 Exists,http://www.snarky.ca/why-python-3-exists,418,266,cocoflunchy,12/17/2015 15:34 +10225558,Jaro Mail,https://www.dyne.org/software/jaro-mail/,78,13,jboynyc,9/16/2015 9:47 +10495966,"Self-flying drone dips, darts and dives through trees at 30 mph",https://www.csail.mit.edu/drone_flies_through_forest_at_30_mph,172,49,hk__2,11/2/2015 22:53 +12078731,Show HN: cdgo Quickly cd into dir nested in $GOPATH or ~/workspace/,https://github.com/EngineerBetter/cdgo-cli,4,3,EngineerBetter,7/12/2016 13:22 +12309550,Multiply Labs (YC S16) Puts All Your Supplements into One 3D Printed Pill,http://themacro.com/articles/2016/08/multiply-labs/,28,19,stvnchn,8/18/2016 0:15 +11041365,Dragula: Drag and drop so simple it hurts,https://github.com/bevacqua/dragula#readme,307,104,bevacqua,2/5/2016 13:57 +11990420,Has anyone successfully implemented the 4 hour workweek?,,25,9,bokenator,6/27/2016 23:45 +11344721,"Ask HN: Do you need another Docker based PaaS, but not for Web servers",,1,2,zorceta,3/23/2016 14:24 +10569357,Gilbert U-238 Atomic Energy Laboratory,https://en.wikipedia.org/wiki/Gilbert_U-238_Atomic_Energy_Laboratory#Description,17,2,happyscrappy,11/15/2015 11:52 +12506622,The rise of the corporate colossus is a giant problem,http://www.economist.com/news/leaders/21707210-rise-corporate-colossus-threatens-both-competition-and-legitimacy-business,164,143,mudil,9/15/2016 14:51 +11587936,Slack bot token leakage exposing business critical information,https://labs.detectify.com/2016/04/28/slack-bot-token-leakage-exposing-business-critical-information/,7,1,detectify,4/28/2016 11:25 +12471201,"The Painstaking, Secretive Process of Designing New Money",https://www.fastcodesign.com/3063512/the-painstaking-secretive-process-of-designing-new-money,78,27,lnguyen,9/10/2016 22:39 +10261356,Show HN: THE SUBMIT LIST A Directory of Places to Submit Your Link,http://thesubmitlist.com,4,2,booruguru,9/22/2015 20:12 +10900668,Ask HN: Goods ways of getting feedback on a side-project?,,2,1,chvid,1/14/2016 11:10 +12060304,The patent Network-1 just used to get a $25MM settlement from Apple,https://www.google.com/patents/US6006227,4,2,chjohasbrouck,7/9/2016 5:50 +10774639,Ask HN: What would you recommend a group of 20 UK students do when visiting SF?,,5,3,refrigerator,12/22/2015 0:16 +11449610,Signal Desktop beta now publicly available,https://www.whispersystems.org/blog/signal-desktop-public/,198,131,etiam,4/7/2016 18:51 +11357914,"Show HN: Road Rules fun, interactive way to stop texting while driving",http://roadrules.co/blog/public-beta-release.html,17,6,ljensen,3/25/2016 1:29 +10375828,The strange case of ICMP Type 69 on Linux,https://blog.benjojo.co.uk/post/linux-icmp-type-69,87,6,benjojo12,10/12/2015 17:14 +11668069,Peter Thiel to serve as Trump delegate,http://thehill.com/blogs/ballot-box/presidential-races/279331-paypal-co-founder-to-serve-as-trump-delegate,88,102,coolandsmartrr,5/10/2016 15:49 +10408934,Layoffs and Loyalty in a Liquid Valley,https://medium.com/@louisgray/layoffs-and-loyalty-in-a-liquid-valley-4b42bd5e26d7,65,34,tim_sw,10/18/2015 17:27 +10510773,"Facing Cash Crunch, Retailer Jet.com Racing to Complete Funding Round",http://www.wsj.com/articles/retailer-jet-com-close-to-finalizing-550-million-cash-infusion-1446659335,55,77,ykumar6,11/5/2015 0:24 +10932968,"Breakup, as captured by my fitbit",https://twitter.com/iamkoby/status/689521611611971588,251,132,iamkoby,1/19/2016 18:57 +11550275,U.S. Suicide Rate Surges to a 30-Year High,http://www.nytimes.com/2016/04/22/health/us-suicide-rate-surges-to-a-30-year-high.html,228,270,Eiriksmal,4/22/2016 16:18 +10310711,Noteshare: instant math web pages with LaTeX,http://math.noteshare.io/titlepage/330,1,1,jxxcarlson,10/1/2015 12:43 +11293476,Adam,http://unity3d.com/pages/adam,657,132,nikolay,3/15/2016 22:21 +10636729,Setting up iOS continuous delivery with Jenkins and Fastlane,https://labs.kunstmaan.be/blog/ios-continuous-delivery-with-jenkins-and-fastlane,47,25,roderikvdv,11/27/2015 10:21 +11032200,Show HN: MobileComics A POC for Making Webcomics on Mobile Suck Less,https://github.com/FourierTransformer/MobileComics,6,1,ftransformer,2/4/2016 5:28 +11358918,Show HN: Port of Windows UWP Xaml Behaviors for Perspex Xaml,https://github.com/XamlBehaviors/XamlBehaviors,2,1,wiso,3/25/2016 7:44 +12279970,GoldenEye: Source,https://www.geshl2.com/,3,1,banderon,8/13/2016 2:32 +10885594,Ask HN: Architecting push notifications using GitHub API,,2,1,bsudekum,1/12/2016 4:42 +12450255,Explore UI States with DevCards and Clojure.Spec,https://juxt.pro/blog/posts/generative-ui-clojure-spec.html,3,1,timroy,9/8/2016 4:07 +10803089,Ask HN: Is it viable to enable employees to diversify their stock compensation?,,1,2,abhi3,12/28/2015 20:13 +11859777,"HTTPie: a CLI, cURL-like tool for humans",https://github.com/jkbrzt/httpie,177,50,celadevra_,6/8/2016 3:23 +11052826,The Layoff List,,22,3,SQL2219,2/7/2016 13:55 +11199679,Journal of Design and Science (MIT),http://jods.mitpress.mit.edu/,1,1,drallison,2/29/2016 23:40 +11779537,A Sensible Fix For TSA Security Lines,http://www.askthepilot.com/tsa-summer-meltdown/,160,149,smacktoward,5/26/2016 17:00 +10291778,"Otto, the successor to Vagrant",https://www.hashicorp.com/blog/otto.html,772,177,agonzalezro,9/28/2015 17:42 +11760108,Terms and conditions word by word,http://www.forbrukerradet.no/terms-and-conditions-word-by-word,151,42,jonespen,5/24/2016 9:50 +10227574,"Show HN: Wikitate, add subtitles to almost any YouTube video",http://www.wikitate.com,2,1,snitzr,9/16/2015 16:03 +10204749,Ask HN: Best way to sell unused domains without paying fees?,,2,1,voisin,9/11/2015 16:54 +10184523,All Combinations of Six 2x4 Lego Bricks,http://c-mt.dk/counting/?view=paper,42,19,mattmalin,9/8/2015 8:08 +12506128,Brookings Stadium Study Draws Criticisms,http://www.bondbuyer.com/news/washington-taxation/brookings-stadium-study-draws-criticisms-1113525-1.html,1,1,6stringmerc,9/15/2016 13:57 +11553940,Ask HN: Do you have a public metrics screen and how did you build it?,,5,4,baxter001,4/23/2016 3:04 +10639804,Dark Matter and the Dinosaurs,http://www.nytimes.com/2015/11/29/books/review/dark-matter-and-the-dinosaurs-by-lisa-randall.html,18,3,kareemm,11/28/2015 2:51 +12186300,Hacking Imgur for Fun and Profit,https://medium.com/@nmalcolm/hacking-imgur-for-fun-and-profit-3b2ec30c9463,30,6,sintheticlabs,7/29/2016 12:14 +10400167,How to Protect Yourself from NSA Attacks on 1024-bit DH,https://www.eff.org/deeplinks/2015/10/how-to-protect-yourself-from-nsa-attacks-1024-bit-DH,284,130,DiabloD3,10/16/2015 15:59 +10477571,How We Cracked the Engineer Retention Problem,http://blog.adbrain.com/how-we-cracked-the-engineer-retention-problem/,3,1,kristianc,10/30/2015 13:19 +10208792,A Dying Young Womans Hope in Cryonics and a Future,http://www.nytimes.com/2015/09/13/us/cancer-immortality-cryogenics.html?_r=0,101,163,sethbannon,9/12/2015 18:13 +12129647,Git for Windows accidentally creates NTFS alternate data streams,http://latkin.org/blog/2016/07/20/git-for-windows-accidentally-creates-ntfs-alternate-data-streams/,349,176,latkin,7/20/2016 15:14 +11960271,Houyhnhnms vs. Martians,http://ngnghm.github.io/blog/2016/06/11/chapter-10-houyhnhnms-vs-martians/,1,1,cronjobber,6/23/2016 11:54 +12352117,Project Tofino A browser interaction experiment by Mozilla,https://github.com/mozilla/tofino,43,12,snake_case,8/24/2016 14:11 +10810122,Ask HN: Promoting your hobby site?,,2,2,johnnycarcin,12/30/2015 0:55 +12450609,Linode Manager and API are under attack,https://status.linode.com/incidents/6mpxv406bhq9,68,47,mherrmann,9/8/2016 5:58 +12542626,Ask HN: To expose a security flaw or not? (at a company where I Interviewed),,4,7,ziggystardust,9/20/2016 19:39 +11642461,New polar research ship to be named RRS Sir David Attenborough,https://twitter.com/JoJohnsonMP/status/728497856915591168,5,4,okket,5/6/2016 8:18 +10795563,You Can Always Find an Anonymous Former Employee to Trash the Founder,http://hunterwalk.com/2015/12/26/you-can-always-find-an-anonymous-former-employee-to-trash-the-founder/,14,4,ssclafani,12/26/2015 22:51 +10488997,"A New, Life-Or-Death Approach to Funding Heart Research",http://www.nytimes.com/2015/10/20/health/a-new-life-or-death-approach-to-funding-heart-research.html,5,1,gwern,11/1/2015 23:33 +11186636,"Write, Review, Merge, Publish: Phabricator Review Workflow",https://secure.phabricator.com/phame/post/view/766/write_review_merge_publish_phabricator_review_workflow/,28,7,Revisor,2/27/2016 9:38 +10463983,What language has the quickest payback?,,10,18,biznerd,10/28/2015 12:24 +11918833,48 people were shot during yesterdays 15-hour filibuster on gun control,http://www.vox.com/2016/6/16/11952166/filibuster-gun-control-shootings,8,1,dragonbonheur,6/16/2016 21:02 +12031676,Amazon Is Quietly Eliminating List Prices,http://www.nytimes.com/2016/07/04/business/amazon-is-quietly-eliminating-list-prices.html,216,163,tpatke,7/4/2016 16:38 +12409081,Ask HN: Good resource on starting a buseness in the US?,,10,4,qwrshhjkkl,9/1/2016 21:34 +11506208,How the law is tracking down high-tech prank callers,https://www.theguardian.com/technology/2016/apr/15/swatting-law-teens-anonymous-prank-call-police,67,52,nols,4/15/2016 17:42 +10409103,AmazonFresh rolls out mandatory $299/year Prime Fresh grocery membership,http://www.geekwire.com/2015/after-delay-amazon-rolls-out-mandatory-299year-prime-fresh-membership-as-promised/,42,56,pavornyoh,10/18/2015 18:12 +11631332,The Grateful Dead's Breakthrough Wall of Sound,http://motherboard.vice.com/read/the-wall-of-sound,1,1,rmason,5/4/2016 20:10 +11758809,Chinas scary lesson to the world: Censoring the Internet works,https://www.washingtonpost.com/world/asia_pacific/chinas-scary-lesson-to-the-world-censoring-the-internet-works/2016/05/23/413afe78-fff3-11e5-8bb1-f124a43f84dc_story.html,345,299,molecule,5/24/2016 3:34 +12071272,"Hacker News' Who is Hiring? thread, part 2, remote and locations",https://blog.whoishiring.io/hacker-news-who-is-hiring-thread-part-2-remote-and-locations/,274,232,fijal,7/11/2016 14:32 +11974806,Apple EFI firmware passwords and the SCBO myth,https://reverse.put.as/2016/06/25/apple-efi-firmware-passwords-and-the-scbo-myth/,177,36,hkr_mag,6/25/2016 1:52 +11126811,"Show HN: Watson, a wonderful cli to track your time",https://tailordev.github.io/Watson/,15,5,couac,2/18/2016 16:20 +11438351,Show HN: UX Insights on largest e-commerce app Amazon,http://canvasflip.com/blog/index.php/2016/04/05/amazon-in-making/,2,1,vipul4vb,4/6/2016 12:41 +10652738,Anger at 'stolen' online courses on Udemy,http://www.bbc.com/news/technology-34952382,73,40,saltyoutburst,11/30/2015 23:49 +10528027,Foveated 3D Graphics (2012) [pdf],http://research.microsoft.com/pubs/176610/foveated_final15.pdf,31,2,ggreer,11/8/2015 9:15 +11799584,Medicine in Early Buddhism,http://pennpress.typepad.com/pennpresslog/2016/04/buddhist-medicine.html,15,2,diodorus,5/30/2016 4:41 +10843421,3 Books Programmers must read in 2016,http://www.codingdefined.com/2016/01/3-books-programmers-must-read-in-2016.html,1,2,codingdefined,1/5/2016 14:43 +10911145,John Romero has released his first Doom level in over two decades,http://www.gamasutra.com/view/news/263642/John_Romero_just_released_his_first_Doom_level_in_over_two_decades.php,187,40,Impossible,1/15/2016 18:37 +10977413,Can America Afford Bernie Sanders' Agenda?,http://www.forbes.com/sites/johntharvey/2015/09/21/can-america-afford-sanders/#59b4613c1b07,4,8,nafizh,1/27/2016 0:38 +11366301,How We Run BGP on Top of OpenFlow,http://blog.datapath.io/how-we-run-bgp-on-top-of-openflow,41,6,Coldewey,3/26/2016 16:43 +10397270,Coconuts in Medieval England,http://www.themarysue.com/monty-python-holy-grail-coconuts/,10,3,pepys,10/16/2015 3:15 +11230992,Comment on Estimating the reproducibility of psychological science,http://science.sciencemag.org/content/351/6277/1037.2.full,2,1,tokenadult,3/5/2016 20:40 +10938510,Show HN: Chatlio Live chat with your web visitors directly from Slack,https://chatlio.com/,136,36,johne20,1/20/2016 15:05 +10821768,Show HN: Implementation of Methods for Power-Law Distribution Analysis,https://github.com/shagunsodhani/powerlaw,6,2,shagunsodhani,1/1/2016 12:57 +10809210,Streaming is making the music industry more unequal,http://www.theverge.com/2015/12/29/10636712/music-inequality-in-2015-youtube-google-spotify-apple-tidal,3,1,trstnthms,12/29/2015 21:33 +10879312,Google Project Sunroof,https://www.google.com/get/sunroof,2,1,stevewilhelm,1/11/2016 7:12 +10360670,Ending an Albania-Serbia Game and Inciting a Riot with a Drone,http://www.nytimes.com/2015/10/08/sports/soccer/as-albania-faces-serbia-meeting-the-drone-pilot-who-ended-their-last-match.html?hp&action=click&pgtype=Homepage&module=mini-moth®ion=top-stories-below&WT.nav=top-stories-below&_r=0,28,7,ilamont,10/9/2015 15:30 +10900847,"Lets Rethink Space: Does space exist without objects, or is it made by them?",http://nautil.us/issue/32/space/lets-rethink-space,8,4,pmcpinto,1/14/2016 12:03 +12120872,"Eve-style clock demo in Red, livecoded",http://www.red-lang.org/2016/07/eve-style-clock-demo-in-red-livecoded.html,2,1,nicolapcweek94,7/19/2016 10:11 +11671332,Drones could replace $127B worth of human labor and services,http://qz.com/679591/drones-could-replace-127-billion-worth-of-human-labor-and-services/,3,1,simonebrunozzi,5/10/2016 22:53 +11237865,Internal Data Offers Glimpse at Uber Sex Assault Complaints,http://www.buzzfeed.com/charliewarzel/internal-data-offers-glimpse-at-uber-sex-assault-complaints,2,1,kosei,3/7/2016 9:06 +11033718,Goldman Sachs May Be Forced to Fundamentally Question How Capitalism Is Working,http://www.bloomberg.com/news/articles/2016-02-03/goldman-sachs-says-it-may-be-forced-to-fundamentally-question-how-capitalism-is-working,98,90,uptown,2/4/2016 13:24 +10910239,Making GitLab Better for Large Open Source Projects,https://about.gitlab.com/2016/01/15/making-gitlab-better-for-large-open-source-projects/,6,2,jobvandervoort,1/15/2016 16:25 +10711645,Rovio's CEO steps down after just over a year on the job,http://www.theverge.com/2015/12/9/9878424/rovio-angry-birds-ceo-replaced,2,1,richardboegli,12/10/2015 16:56 +11540310,Search engine for hacked Philippine Voter's data,https://wehaveyourdata.com/,5,1,e19293001,4/21/2016 7:55 +12039107,A South Korean Copy of Snapchat Takes Off in Asia,http://www.nytimes.com/2016/07/06/technology/snapchat-snow-korea.html?ref=business,96,98,hvo,7/5/2016 20:01 +10625229,Why Weebly Is the Warp Drive of Website Building,http://www.forbes.com/sites/mnewlands/2015/11/24/why-weebly-is-the-warp-drive-of-website-building/,7,3,BobbyVsTheDevil,11/25/2015 3:52 +11960206,"Show HN: Scala idioms in Java: cases, patterns, for-comp, implicits ++",https://github.com/Randgalt/halva,3,2,curator,6/23/2016 11:35 +12275472,Building a C Compiler Type System Part 2: A Canonical Type Representation,http://blog.robertelder.org/building-a-c-compiler-type-system-a-canonical-type-representation/,72,3,robertelder,8/12/2016 13:35 +11969891,PowerNex: a kernel written in the D Programming Language,https://github.com/Vild/PowerNex,130,75,ingve,6/24/2016 14:15 +11254121,"WebpackBin: Like Codepen, but Powered by Webpack",http://www.webpackbin.com/,10,3,bsimpson,3/9/2016 17:07 +11253704,Masquerade Acquired by Facebook,http://msqrd.me/joining-facebook.html,18,5,espinchi,3/9/2016 16:01 +12152644,World's Fastest Production Drone,http://utbgeek.com/uncategorized/tanky-drone-ready-to-fly-racing-at-its-best/,3,2,x0054,7/24/2016 7:50 +10912292,Ask HN: What countries is it impossible to accept payments from?,,3,3,GigabyteCoin,1/15/2016 21:36 +10470834,The promise of the blockchain: The trust machine,http://www.economist.com/news/leaders/21677198-technology-behind-bitcoin-could-transform-how-economy-works-trust-machine,28,2,edward,10/29/2015 13:36 +10717941,You Don't Need JQuery,https://github.com/oneuijs/You-Dont-Need-jQuery,5,1,gotchange,12/11/2015 16:20 +10993559,The Hacker 4Chan Is at It Again,http://boards.4chan.org/g/thread/52680526,20,7,voynich61,1/29/2016 4:47 +12007209,Let's Stop Freaking Out About Artificial Intelligence,http://fortune.com/2016/06/28/artificial-intelligence-potential/,4,1,teichman,6/30/2016 8:13 +10400370,"Traffic Jam, a program that helps track prostitution rings by using public data",https://broadly.vice.com/en_us/article/the-young-woman-who-created-a-new-way-to-bust-sex-trafficking-rings,54,24,eegilbert,10/16/2015 16:26 +11931394,"Apple, Google: Why do I have to move my thumb so much",,2,3,knoke,6/19/2016 1:06 +12147918,Immutable-cpp: persistent immutable data structures for C++,https://github.com/rsms/immutable-cpp,42,16,jiyinyiyong,7/23/2016 1:26 +12027874,Show HN: Stack overflow command line client added support to python 2,https://github.com/gautamkrishnar/socli,1,1,gautamkrishnar,7/3/2016 22:12 +12532263,Ebook: Music for Geeks and Nerds [pdf],http://pedrokroger.net/mfgan/music-for-geeks-and-nerds-sample.pdf,3,1,dbrgn,9/19/2016 15:41 +11379994,Network Optimization with the Use of Big Data,http://blog.datapath.io/network-optimization-with-the-use-of-big-data,1,1,lrivenes,3/29/2016 7:15 +12298747,"Show HN: Thyme, a simple CLI to measure human time and focus",https://text.sourcegraph.com/thyme-a-simple-cli-to-measure-human-time-and-focus-577b87337b9c,99,18,gonedo,8/16/2016 16:52 +10328696,Cost of Privacy,http://homing-on-code.blogspot.com/2015/10/cost-of-privacy.html,3,1,mulander,10/4/2015 20:29 +11548204,First gene therapy successful against human aging,http://bioviva-science.com/2016/04/21/first-gene-therapy-successful-against-human-aging/,29,10,tsaprailis,4/22/2016 10:39 +12300454,Olympic medals per capita,http://www.medalspercapita.com/,70,74,slewis,8/16/2016 20:36 +10615644,Quantum Walks with Gremlin,http://arxiv.org/abs/1511.06278,2,1,espeed,11/23/2015 17:05 +11896115,Technologies of the Decentralized Web Summit,https://blog.mousereeve.com/technologies-of-the-decentralized-web-summit/,164,45,tripofmice,6/13/2016 18:32 +12002074,Chess boxing,https://en.wikipedia.org/wiki/Chess_boxing,5,1,scrumper,6/29/2016 15:09 +12002815,Show HN: Duo Search an OpenBazaar search engine,https://duosear.ch/?q=tshirt,12,2,duosearch,6/29/2016 16:42 +11296627,HexLox Protect Your Saddle and Wheels from Theft 50% in 20hrs,https://www.kickstarter.com/projects/hexlox/hexlox-anti-theft-for-saddles-wheels-and-more-made,1,1,primal,3/16/2016 12:04 +12295893,Ask HN: Is it worth it to work as a software engineer at a hedgefund?,,2,1,taylormoon,8/16/2016 6:33 +11695824,Google Chrome 51 disables HTTP/2 on most Linux distros due to old OpenSSL,https://ma.ttias.be/day-google-chrome-disabled-http2-nearly-everyone-may-15th-2016/,132,68,Mojah,5/14/2016 12:35 +10338840,"In Ben Bernankes Memoir, a Candid Look at Lehman Brothers Collapse",http://www.nytimes.com/2015/10/06/business/dealbook/in-ben-bernankes-memoir-a-candid-look-at-lehman-brothers-collapse.html?_r=0,98,80,svtrent,10/6/2015 13:50 +11722881,The IoT now extends to tampons,http://www.theverge.com/circuitbreaker/2016/5/18/11700578/bluetooth-tampon-myflow-connected-period,2,2,eburg,5/18/2016 16:01 +12523122,U.S. Air Force grounds F-35 fighters over cooling line problems,http://www.reuters.com/article/us-lockheed-f35-grounded-idUSKCN11M26K?utm_medium=referral&utm_source=morefromreuters,14,3,testrun,9/17/2016 23:41 +11443369,"Code let lottery vendor predict winning numbers, police say",http://www.wral.com/lottery-insider-s-brother-arrested-in-jackpot-fixing-scandal/15624521/,6,1,8ig8,4/6/2016 23:51 +12331853,What Percentage of Your Worries Come True?,http://www.jamesaltucher.com/2016/08/percentage-worries-come-true/,11,3,rspivak,8/21/2016 17:48 +11996382,How to delete yourself from Google?,https://medium.com/geekyfied/how-to-delete-yourself-from-google-com-f073d7dc191e#.oiyhkqytj,2,1,temp,6/28/2016 18:47 +12531291,Building a Distributed Build System at Google Scale (Strangeloop 2016),https://www.youtube.com/watch?v=K8YuavUy6Qc,3,1,yarapavan,9/19/2016 13:35 +12132033,hledger plain text accounting,http://hledger.org/,3,1,sandebert,7/20/2016 20:06 +11145610,Samsungs Galaxy S7 and S7 Edge,http://www.theverge.com/2016/2/21/11077956/samsung-galaxy-s7-edge-smartphone-announced-specs-mwc-2016,136,157,devhxinc,2/21/2016 18:06 +11634215,Rdedup backup deduplication with asymetric encryption (in Rust),https://github.com/dpc/rdedup,120,24,dpc_pw,5/5/2016 5:45 +10562343,The woes of building an index of the web,https://moz.com/blog/mozscape-index-2015,69,11,jennita,11/13/2015 20:56 +11371059,Introducing the Photographers Identities Catalog,http://www.nypl.org/blog/2016/03/25/introducing-pic,21,2,prismatic,3/27/2016 19:06 +11435661,Non-obvious indicators that a transaction might be fraudulent,https://simility.com/device-recon-results/,117,88,teuobk,4/6/2016 0:12 +11173894,Beijing now has more billionaires than New York,http://money.cnn.com/2016/02/24/investing/beijing-new-york-billionaires/,2,1,ck2,2/25/2016 12:14 +10272271,"Ask HN: Best place to donate old books, movies, etc.",,1,2,sudoherethere,9/24/2015 15:50 +10242645,Notes from the Costume Designer of Solaris,http://calvertjournal.com/features/show/4650?,41,7,rdtsc,9/18/2015 23:31 +11379073,You're Welcome HN: Change the Screen Shot Save File Location in Mac OS X,http://osxdaily.com/2011/01/26/change-the-screenshot-save-file-location-in-mac-os-x/,5,1,daspecster,3/29/2016 2:19 +10666842,Tear gassing by remote control,http://remotecontrolproject.org/tear-gassing-by-remote-control-the-development-and-promotion-of-remotely-operated-means-of-delivering-or-dispersing-riot-control-agents/,11,6,kawera,12/3/2015 0:08 +12355238,Long-Range (200m) BLE Beacons with 1Mb EEPROM,http://blog.estimote.com/post/149362004575/updated-location-beacons-200-m-range-nfc-new,47,20,jimiasty,8/24/2016 21:02 +11314648,FreeBSD a lesson in poor defaults,https://vez.mrsk.me/freebsd-defaults.txt,11,1,moviuro,3/18/2016 20:23 +11175829,PadMapper (YC S10) is Joining Zumper,http://blog.padmapper.com/2016/02/25/padmapper-is-joining-zumper/,133,66,ericd,2/25/2016 17:06 +10342394,Startup Cofounders: Have you ever found a cofounder where....,,1,9,a_lifters_life,10/6/2015 21:06 +11800740,Engineering the Servo Web Browser Engine Using Rust [pdf],https://github.com/larsbergstrom/papers/blob/master/icse16-servo-preprint.pdf,3,2,ingve,5/30/2016 11:15 +11456618,Apply HN: Synchrony A peer-to-peer hyperdocument editor,,3,4,LukeB42,4/8/2016 18:04 +12305217,"Show HN: Typr.club, realtime gif-based chat rooms",https://typr.club,21,6,ruiramos,8/17/2016 15:03 +11518561,Using Dijkstra's algorithm to draw maps,https://github.com/ibaaj/dijkstra-cartography,161,15,JasonNils,4/18/2016 9:00 +10485442,Evanston: A Suburb That Actively Discourages Cars,http://www.politico.com/magazine/story/2015/10/evanston-illinois-what-works-213282,41,22,akg_67,11/1/2015 4:45 +11229924,Why I will never use Windows 8/10,https://www.devever.net/~hl/windows8,7,8,hlandau,3/5/2016 16:33 +10791950,How to Talk to Your Parents About Encryption7,https://blog.cloudflare.com/how-to-talk-to-your-parents-about-encryption/,4,1,r3bl,12/25/2015 18:52 +10452771,The True Costs of Driving,http://www.theatlantic.com/business/archive/2015/10/driving-true-costs/412237/?single_page=true,2,1,awjr,10/26/2015 17:13 +11174556,Show HN: LESS library for easy scaffolding,http://stellar.stelavit.com/,2,1,muh0m0rka,2/25/2016 14:24 +10825669,Adonis.js v2 released Laravel for Node.js,http://adonisjs.com,70,27,niallobrien,1/2/2016 9:31 +10573995,Visualising Markov Chains with NetworkX,http://vknight.org/unpeudemath/code/2015/11/15/Visualising-markov-chains/,27,3,signa11,11/16/2015 12:26 +10289606,Redesigning a model of Tyrannosaurus Rex,http://saurian.maxmediacorp.com/?p=553,28,14,Turukawa,9/28/2015 9:52 +11851348,"Ask HN: As a developer, how can I get better at design and UX?",,3,1,nullundefined,6/6/2016 23:31 +10219890,Ask HN: How do you manage your contacts?,,27,12,mdevere,9/15/2015 10:51 +12298779,"Audi cars 'will talk to traffic lights', firm says",http://www.bbc.co.uk/news/technology-37098513,3,1,edward,8/16/2016 16:55 +10279385,John Carmack's VR Script Live Coding Session at Oculus Connect [video],https://www.youtube.com/watch?v=rMItsZq_n20,135,32,_pius,9/25/2015 17:19 +11396435,Show HN: SQL Injection Challenge,https://github.com/breakthenet/sql-injection-exercises,34,5,emeth,3/31/2016 11:50 +12531439,Dont just pardon Edward Snowden; give the man a medal,https://techcrunch.com/2016/09/18/dont-just-pardon-edward-snowden-give-the-man-a-medal/,505,233,mariusavram,9/19/2016 13:52 +10400225,Theranos Scandal Exposes the Problem with Techs Hype Cycle,http://www.wired.com/2015/10/theranos-scandal-exposes-the-problem-with-techs-hype-cycle/,4,2,mudil,10/16/2015 16:08 +10959865,People Are Still Trying to Build a Space Elevator,http://www.smithsonianmag.com/innovation/people-are-still-trying-build-space-elevator-180957877/?utm_source=twitter.com&no-ist&is_pocket=1,33,25,dnetesn,1/23/2016 20:14 +11108738,The NSAs machine learning algorithm may be killing thousands of innocent people,http://arstechnica.co.uk/security/2016/02/the-nsas-skynet-program-may-be-killing-thousands-of-innocent-people/,402,208,mocko,2/16/2016 9:24 +10794965,Asking VCs which startups will boom in 2016,http://www.businessinsider.com/startups-that-will-be-huge-in-2016-2015-12,18,8,urahara,12/26/2015 19:31 +11318199,Tis-interpreter detects subtle bugs in C programs,http://trust-in-soft.com/tis-interpreter,3,2,jjuhl,3/19/2016 12:00 +11477989,Fixing C,http://www.embedded.com/electronics-blogs/break-points/4441819/Fixing-C,43,117,rayascott,4/12/2016 8:31 +10327556,Ribosome Generic Code Generation,http://ribosome.ch/index.html,4,1,Immortalin,10/4/2015 14:16 +11823770,Apple readying new external 5K Display that may feature an integrated GPU,http://9to5mac.com/2016/06/01/apple-readying-new-external-5k-display-as-current-model-goes-out-of-stock-may-feature-integrated-gpu/,1,1,sytse,6/2/2016 16:20 +11933988,How Much Does Los Angeles Have to Build to Get Out of Its Housing Crisis? A Lot,http://la.curbed.com/2015/3/18/9979526/housing-crisis-los-angeles-construction,2,2,jseliger,6/19/2016 18:31 +10417376,Why India's writers are returning their literary prizes,http://www.economist.com/blogs/economist-explains/2015/10/economist-explains-16,2,1,jimsojim,10/20/2015 4:07 +10574900,FBI's imperfect entrapment of teen may lead to FAA challenge,http://www.buzzfeed.com/nicolasmedinamora/did-the-fbi-transform-this-teenager-into-a-terrorist,109,78,BDGC,11/16/2015 15:23 +12244548,Dataflow/Streaming Concurrency via C++ IOStream-Like Operators,https://github.com/RaftLib/RaftLib,2,1,xf00ba7,8/8/2016 0:15 +11753627,Fizz Buzz in Tensorflow,http://joelgrus.com/2016/05/23/fizz-buzz-in-tensorflow/,378,84,joelgrus,5/23/2016 13:18 +11658852,The Novel Area of Cryptic Crossword Solving,http://journal.frontiersin.org/article/10.3389/fpsyg.2016.00567/full,24,4,bmcgavin,5/9/2016 11:05 +12125947,"Giraffe, a Deep Reinforcement Learning Chess Engine",https://bitbucket.org/waterreaction/giraffe,22,2,runesoerensen,7/20/2016 0:18 +10567748,The hidden hand behind the Islamic State militants? Saddam Husseins,https://www.washingtonpost.com/world/middle_east/the-hidden-hand-behind-the-islamic-state-militants-saddam-husseins/2015/04/04/aa97676c-cc32-11e4-8730-4f473416e759_story.html?tid=sm_fb,4,2,mpelembe,11/14/2015 23:23 +11891053,Walgreen Terminates Partnership with Theranos,http://www.wsj.com/article_email/walgreen-terminates-partnership-with-blood-testing-firm-theranos-1465777062-lMyQjAxMTE2MDE5MzExMjM4Wj,310,143,dhawalhs,6/13/2016 0:36 +10432799,Is genius being misdiagnosed as Asperger's?,http://iqpersonalitygenius.blogspot.com/2015/10/the-relationship-between-aspergers.html,2,3,kal31dic,10/22/2015 15:35 +10644164,ITER is one of the most ambitious energy projects,https://www.iter.org/proj/inafewlines,72,40,tempestn,11/29/2015 8:51 +10309213,What the Heck is a Monad?,http://khanlou.com/2015/09/what-the-heck-is-a-monad/,2,2,ckurose,10/1/2015 4:23 +11817061,How did PocketNC survive and thrive? A hardware startup that should have failed,http://hackaday.com/2016/06/01/how-did-pocket-nc-survive-and-thrive/,4,1,dammitcoetzee,6/1/2016 18:45 +11532903,B.Y.O.B,https://www.youtube.com/watch?v=zUzd9KyIDrM,2,1,zippy786,4/20/2016 7:58 +11532913,How Intercity Buses Are Changing the Way We Travel in Germany,http://www.young-germany.de/topic/live/travel-location/derailing-the-train-how-intercity-buses-are-changing-the-way-we-travel-in,3,1,vincent_s,4/20/2016 8:02 +12362653,Kerbal Control Panel,http://www.sgtnoodle.com/projects/kerbal-control-panel/,204,37,jsnell,8/25/2016 21:27 +10494045,Lessig Ends Presidential Campaign,https://www.facebook.com/Lessig2016/videos/vb.832686670149581/909929802425267/?type=2&theater,330,166,bsimpson,11/2/2015 18:47 +10392652,"What it's like to write for content farms, from Brooklyn to the Philippines",http://www.hopesandfears.com/hopes/city/what_do_you_do/216643-content-farm-writers-philippines,58,26,nols,10/15/2015 12:17 +11229700,Ask HN: Which successful startups were rejected by YC?,,159,60,mrborgen,3/5/2016 15:23 +10370969,Why browse the Web in Emacs? (2008),http://sachachua.com/blog/2008/08/why-browse-the-web-in-emacs/#,2,1,pmoriarty,10/11/2015 20:54 +12414721,"""fs"" unpublished and restored",http://status.npmjs.org/incidents/dw8cr1lwxkcr,23,16,azylman,9/2/2016 17:37 +11764226,I Made Deep Fried Water at Last Week's Stupid Shit No One Needs Hackathon in SF,https://www.youtube.com/watch?v=fDiHUZ3mjxM,4,1,zzyyfff,5/24/2016 18:27 +10812418,A survival guide for Unix beginners,http://matt.might.net/articles/basic-unix/,6,1,ColinWright,12/30/2015 15:33 +10930124,Productivity in Plaintext,http://lukespear.co.uk/plaintext-productivity,33,13,luxpir,1/19/2016 12:01 +12492026,Compiling a List of App Development Frameworks,http://allframeworks.net,1,1,verdande,9/13/2016 20:40 +12355431,Factoring may be easier than we think,http://math.mit.edu/~cohn/Thoughts/factoring.html,89,83,vinchuco,8/24/2016 21:36 +10430506,Zero to Forty in Two Seconds Quick Growth and How We Use Reamaze,http://blog.reamaze.com/2015/10/22/zero-to-forty-in-two-seconds-quick-growth-and-how-we-use-reamaze/,5,1,vsloo,10/22/2015 5:12 +12338610,How American Politics Became So Ineffective,http://www.theatlantic.com/magazine/archive/2016/07/how-american-politics-went-insane/485570/?single_page=true,3,1,aburan28,8/22/2016 19:09 +10323632,Hurricane Joaquin Forecast: Why U.S. Weather Model Has Fallen Behind,http://www.nytimes.com/2015/10/03/upshot/hurricane-joaquin-forecast-european-model-leads-pack-again.html,78,46,jsm386,10/3/2015 12:39 +10771879,NSA suspected in Juniper Networks backdoor,http://boingboing.net/2015/12/21/juniper-networks-backdoor-conf.html,3,1,dijit,12/21/2015 16:35 +11849624,Ask HN: README.tex and math formulas for GitHub?,,3,2,dginev,6/6/2016 19:33 +12127936,GitHub is undergoing a full-blown overhaul as execs and employees depart,http://www.businessinsider.de/github-the-full-inside-story-2016-2?r=US&IR=T,20,2,ghgr,7/20/2016 10:18 +11697951,"Lambda expression comparison between C++11, C++14 and C++17",http://maitesin.github.io//Lambda_comparison/,175,85,ingve,5/14/2016 20:43 +12452079,Noad next generation ad blocker,https://noad.mobi/,2,1,mdemo,9/8/2016 11:38 +12353862,"One Star Over, There Might Be Another Earth",http://www.nytimes.com/2016/08/25/science/one-star-over-there-might-be-another-earth.html,1,1,saltyhiker,8/24/2016 17:52 +12484661,"Discovering Cuba: Economics, Entrepreneurship, and the Future",http://brianmayer.com/2016/09/discovering-cuba-economics-entrepreneurship-and-the-future/,21,11,bmmayer1,9/12/2016 23:49 +10658705,Why Teach English? (2013),http://www.newyorker.com/books/page-turner/why-teach-english,10,1,samclemens,12/1/2015 20:59 +12029032,Ask HN: Affordable dev server solution,,1,5,pixiez,7/4/2016 5:36 +12093883,Peter Thiel will speak at GOP convention,http://www.theverge.com/2016/7/14/12187326/peter-thiel-gop-convention-speaking,88,121,peterkshultz,7/14/2016 14:08 +10785164,An Incremental Approach to Compiler Construction (2006) [pdf],http://scheme2006.cs.uchicago.edu/11-ghuloum.pdf,111,13,rspivak,12/23/2015 19:41 +10817197,C++ Status at the end of 2015,http://www.bfilipek.com/2015/12/c-status-at-end-of-2015.html,79,60,ingve,12/31/2015 11:28 +10736879,The Inventor of Auto-Tune,http://priceonomics.com/the-inventor-of-auto-tune/,34,8,SuperChihuahua,12/15/2015 10:07 +12098503,Microsoft confirms Windows 10 Enterprise to become subscription service,http://www.forbes.com/sites/gordonkelly/2016/07/14/microsoft-confirms-windows-10-new-monthly-charge/#7e7ec622dfab,3,1,Sturmrufer,7/15/2016 1:50 +10322491,Cyber Security Update,https://about.scottrade.com/updates/cybersecurity.html,2,1,kungfudoi,10/3/2015 3:36 +11364718,The Rete Matching Algorithm (2002),http://www.drdobbs.com/architecture-and-design/the-rete-matching-algorithm/184405218,66,21,ohaikbai,3/26/2016 6:38 +11108481,How to Safely Store a Password in 2016,https://paragonie.com/blog/2016/02/how-safely-store-password-in-2016,15,12,carlesfe,2/16/2016 8:02 +12015396,Amazon Prime Strikes Deal for Most PBS Childrens Shows,http://www.nytimes.com/2016/07/02/business/media/amazon-prime-strikes-deal-for-most-pbs-childrens-shows.html,77,93,uptown,7/1/2016 12:18 +11300693,Klisp An implementation of the Kernel programming language,http://klisp.org/,105,74,ycmbntrthrwaway,3/16/2016 21:08 +11682292,Ask HN: Fast compilers for statically typed languages?,,3,4,networked,5/12/2016 9:28 +10857867,Traveling salesman uncorks synthetic biology bottleneck,http://phys.org/news/2016-01-salesman-uncorks-synthetic-biology-bottleneck.html,2,1,fitzwatermellow,1/7/2016 13:52 +10277029,Drivebox Use Google Drive and Drop Box for Receiving Files,https://drivebox.io/,3,1,mrjacopod,9/25/2015 9:05 +10815174,Beached Blue Whale Saved in Chili [video],http://www.nbcnews.com/video/watch-rescuers-free-beached-whale-593288771711,2,1,ourmandave,12/30/2015 23:46 +12197781,There are limits to 2FA,http://arstechnica.com/security/2016/07/there-are-limits-to-2fa-and-it-can-be-near-crippling-to-your-digital-life/,100,45,lisper,7/31/2016 17:14 +11377504,Python one-liner to compare two files (conditions apply),http://jugad2.blogspot.com/2016/03/python-one-liner-to-compare-two-files.html,1,9,vram22,3/28/2016 21:21 +12376324,ISRO successfully test-fires scramjet engine,http://www.thehindu.com/news/national/isro-successfully-testfires-scramjet-rocket-engine/article9042486.ece,23,3,jaisankar,8/28/2016 13:03 +11438733,The Illegal Map of Swedish Art,http://googlemapsmania.blogspot.com/2016/04/the-illegal-map-of-swedish-art.html,356,95,chippy,4/6/2016 13:49 +12101458,"70,000 ATMs to support cardless cash withdrawal via Touch ID",http://www.macrumors.com/2016/07/15/cardless-withdrawls-touch-id-70k-atms/,2,1,drewhoo,7/15/2016 15:01 +10717998,What Marissa Mayer's maternity leave decision means for working parents at Yahoo,http://www.fastcompany.com/3054512/second-shift/what-marissa-mayers-maternity-leave-decision-means-for-working-parents-at-yahoo,28,64,pmcpinto,12/11/2015 16:29 +11327455,Transform a Browser into a Basic HTML Editor,https://www.shieldui.com/blogs/html-editor-in-your-browser,4,1,lyub35,3/21/2016 12:02 +10646669,Show HN: Luapress v3 simple and fast static site/blog generator,http://luapress.org,36,2,Fizzadar,11/29/2015 23:40 +10746607,C-style for loops removed from Swift,https://lists.swift.org/pipermail/swift-evolution-announce/2015-December/000001.html,3,1,yomritoyj,12/16/2015 19:30 +10330181,Blendle Is Up to Something Big,http://www.mondaynote.com/2015/10/05/blendle-is-up-to-something-big/,62,15,JeanMertz,10/5/2015 6:09 +12044205,The merits of an emoji referral code,https://medium.com/the-mission/rethinking-referral-codes-or-11f1686bb964,7,13,dontmitch,7/6/2016 16:37 +12128993,On the fly SSL registration and renewal inside Nginx with Let's Encrypt,https://github.com/GUI/lua-resty-auto-ssl,234,46,snaky,7/20/2016 13:54 +12339812,Show HN: I added AI players to my small multiplayer game,http://pixelwars.hajdarevic.net/,5,2,adnanh,8/22/2016 22:08 +10422858,The uncomfortable state of being Asian in tech,https://medium.com/little-thoughts/the-uncomfortable-state-of-being-asian-in-tech-ab7db446c55b#.r9uxei579,6,4,triketora,10/21/2015 0:39 +11908007,Show HN: An awesome C library for Windows,,2,1,naikapa,6/15/2016 9:05 +10310597,An easy way to protect and transfer their confidential data Crymer,http://crymer.com/,2,1,yhurynovich,10/1/2015 12:12 +11423080,Self-Driving Cars Might Get Their Own Formula 1 Championship,http://readwrite.com/2016/04/02/self-driving-car-roborace-cup/,3,1,growthcommunity,4/4/2016 16:20 +11760545,Terrorist or pedophile? This startup says it can out secrets by analyzing faces,https://www.washingtonpost.com/news/innovations/wp/2016/05/24/terrorist-or-pedophile-this-start-up-says-it-can-out-secrets-by-analyzing-faces/,5,2,ourmandave,5/24/2016 11:16 +11742446,Who here enjoyed university academically?,,4,2,rrtigga,5/20/2016 23:54 +10865360,"A new year, a better waffle",http://blog.waffle.io/a-new-year-a-better-waffle/,3,1,nailer,1/8/2016 15:11 +10594219,Amazon offers two-factor authentication for your account,http://www.cnet.com/uk/news/amazon-offers-stronger-protection-for-your-account/,3,1,_jomo,11/19/2015 11:45 +10759122,"Texas Sheriff statement on operation of ride sharing companies in Austin, TX",http://imgur.com/UeTLugi,11,6,hippich,12/18/2015 16:06 +10875351,Binder: Turn a GitHub repo into a collection of interactive notebooks,http://mybinder.org,28,2,ingve,1/10/2016 14:15 +11348182,A guide on how to be a Programmer (2002),https://github.com/braydie/HowToBeAProgrammer,207,44,gnocchi,3/23/2016 20:59 +10244739,Uber-nomics: Here's what it would cost Uber to pay its drivers as employees,http://fortune.com/2015/09/17/ubernomics/,3,4,cgoodmac,9/19/2015 16:40 +11782364,"Systemd v230 kills background processes after user logs out, breaks screen, tmux",https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825394,152,182,polemic,5/26/2016 22:57 +10909572,Hipster Mattresses: Why?,http://tedium.co/2016/01/14/hipster-mattresses-casper-yogabed/,45,76,vermontdevil,1/15/2016 14:47 +11176600,The Robots Are Coming for Wall Street,http://www.nytimes.com/2016/02/28/magazine/the-robots-are-coming-for-wall-street.html,46,17,Futurebot,2/25/2016 18:38 +10485590,Affiliate Marketing for Dummies,http://affiliate-marketing-for-dummies.org/affiliatemarketingfordummies/,1,1,SJAffiliate,11/1/2015 6:03 +12461621,"Ask HN: Other companies with an asynchronous, text-only interview process?",,1,1,wnm,9/9/2016 12:46 +10575013,Suburban Ride-Sharing Is Mathematically Unlikely,http://www.citylab.com/commute/2015/11/suburban-ride-sharing-is-mathematically-impossible/415494/,78,66,brudgers,11/16/2015 15:41 +10322692,"Ask HN: Cross-platform free hosted CI server, with GitHub integration?",,2,10,bendtherules,10/3/2015 5:09 +12429943,"Plottable.js Flexible, interactive charts for the web",http://plottablejs.org/,216,84,insulanian,9/5/2016 12:55 +12565360,How o you createan app outsourcing safelly,,1,2,delagrazia,9/23/2016 15:33 +11711467,BBC 'to close recipes website' as part of £15m savings,http://www.bbc.co.uk/news/uk-36308976,32,48,iamflimflam1,5/17/2016 5:10 +12214202,Hackers accessed Telegram messaging accounts in Iran researchers,http://www.reuters.com/article/us-iran-cyber-telegram-exclusive-idUSKCN10D1AM?sp=alcms,139,64,slizard,8/2/2016 23:21 +12445556,"Massachusetts Is Considering Changing Its Time Zone, Because Winter Is the Worst",https://www.fastcoexist.com/3063303/massachusetts-is-considering-changing-its-time-zone-because-winter-is-the-worst,10,1,roldie,9/7/2016 17:59 +10205904,BOINC: Compute for Science,http://boinc.berkeley.edu/download.php,22,11,smpetrey,9/11/2015 20:12 +11546007,Ask HN: Is Golang mature enough for FinTech startups?,,18,20,dlist,4/21/2016 23:18 +10562604,Ways of saving EC2 costs,https://cloudonaut.io/3-simple-ways-of-saving-up-to-90-of-ec2-costs/,19,1,widdix,11/13/2015 21:46 +10686607,A Quine in Fortran 90,https://medium.com/@ORPH4NUS/a-quine-in-fortran-90-co-dfe43a9ee625#.46kemdlci,23,12,orph4nus,12/6/2015 21:05 +11756509,Ask HN: Are you going to pay for MAC application similar like clean mymac,,1,2,aforarnold,5/23/2016 20:07 +10550482,Borrowing from Solar and Chip Tech to Make Diamonds Faster and Cheaper,http://www.nytimes.com/2015/11/12/science/borrowing-from-solar-and-chip-tech-to-make-diamonds-faster-and-cheaper.html,8,1,Ankaios,11/12/2015 0:34 +11331040,bcwallet: A /dev/wallet for Bitcoin,https://blog.blockcypher.com/bcwallet-a-dev-wallet-for-bitcoin-b7597d77cff9,58,12,midas,3/21/2016 19:26 +11595322,Syria Hospital Bombing: Are the Rules of War Breaking Down?,http://www.npr.org/sections/goatsandsoda/2016/04/28/476064028/syria-hospital-bombing-are-the-rules-of-war-blowing-up,4,4,raddad,4/29/2016 12:44 +11111533,iOS: Say no to storyboards,https://medium.com/@tsaizhenling/say-no-to-storyboards-3048538ec359#.5c4npnixk,4,2,tsaizhenling,2/16/2016 17:31 +11146543,Experimenting with Bluetooth to revolutionise safety for cyclists,https://github.com/robinhayward/roadar/blob/master/README.md,4,2,y5junkie,2/21/2016 21:09 +11204716,Graeme Hackland on the Evolving Role of the CIO,https://channel9.msdn.com/,10,2,arabadzhiev,3/1/2016 18:14 +11777162,"Mailgen Generates clean, responsive HTML for transactional email",https://www.npmjs.com/package/mailgen,102,19,eladnava,5/26/2016 11:41 +11819509,The Death of the Software Engineer,https://medium.com/@igorhorst/the-death-of-the-software-engineer-dcc12c250a94#.sp4cn28lr,3,2,tariqali34,6/2/2016 0:37 +10820337,Ask HN: What's the new best practise security model in the enterprise?,,5,2,lifeisstillgood,12/31/2015 23:34 +11357966,Show HN: ThatMovieFinder Find Movies via Quotes/Actors/Directors/Title/Plot,http://thatmoviefinder.com,3,4,dany74q,3/25/2016 1:46 +11207183,Ten lessons I wish I had learned before teaching differential equations (1997) [pdf],http://www.math.toronto.edu/lgoldmak/Rota.pdf,338,118,JMStewy,3/2/2016 0:00 +11956909,Apples free coding classes are a sales engagement,http://sdtimes.com/sd-times-blog-apples-free-coding-classes-sales-engagement/,8,11,sirduncan,6/22/2016 20:51 +12066547,23andMe Is Monetizing Your DNA the Way Facebook Monetizes 'Likes',http://climateerinvest.blogspot.com/2016/07/23andme-is-monetizing-your-dna-way.html,155,145,chmars,7/10/2016 18:19 +11238392,Corel Linux review (2000),http://www.geek.com/hwswrev/software/clinux112/clinux.htm,2,1,ukz,3/7/2016 11:58 +10445449,Show HN: Prolog compiler and interpreter in pure JavaScript,http://prolog.jldupont.com/,15,4,jldupont,10/25/2015 0:40 +10934408,Buy it or build it: Etsy,http://alexmuir.com/buy-it-or-build-it--etsy,10,3,AlexMuir,1/19/2016 21:57 +11289150,LIVE: MPs Are Debating the Investigatory Powers Bill in the House of Commons,,2,1,webjames,3/15/2016 12:43 +11956266,It's Okay to Not Have an Opinion About Everything,http://www.themacro.com/articles/2016/06/andrew-mason/,4,3,dwaxe,6/22/2016 19:15 +11208961,The car century was a mistake. Its time to move on,https://www.washingtonpost.com/news/in-theory/wp/2016/02/29/the-car-century-was-a-mistake-its-time-to-move-on/,6,1,suchabag,3/2/2016 9:35 +11900939,Ask HN: Is Sublime Text profitable?,,6,18,palerdot,6/14/2016 10:16 +12043190,Show HN: COMTIFY 1.1 Trying to solve the problem of too many tools at work,http://www.comtify.com/?ref=HN,1,1,paekut,7/6/2016 14:19 +12355390,Interactive EasyFlow,https://en.wikipedia.org/wiki/Interactive_EasyFlow,34,6,simonsquiff,8/24/2016 21:28 +10948238,The Story Behind F.lux,http://motherboard.vice.com/en_ca/read/the-story-behind-flux-the-night-owls-color-shifting-sleep-app-of-choice,157,85,felixbraun,1/21/2016 20:52 +10794262,SixXS.net: Call Your ISP for IPv6,https://www.sixxs.net/news/#12-01,4,1,pferde,12/26/2015 15:10 +12048664,"Fujifilm's new X-T2 camera has 24 megapixels, 4K video, and great controls",http://www.theverge.com/2016/7/7/12115084/fujifilm-xt2-camera-preview-pricing-release-date,20,40,Tomte,7/7/2016 11:35 +10345219,Pea whistle steganography,http://www.windytan.com/2015/10/pea-whistle-steganography.html,15,3,gvb,10/7/2015 10:47 +10766844,Big Data Is for the Birds,http://nautil.us/issue/27/dark-matter/big-data-is-for-the-birds,16,1,pmcpinto,12/20/2015 12:17 +11623848,Over 7M new users signed up for Telegram in the last 24 hours,https://twitter.com/telegram/status/727551443553685506,3,1,bndr,5/3/2016 20:17 +12435594,Ask HN: What would your ideal jobs board have/do?(Developers and Employers of HN),,4,2,dsinecos,9/6/2016 12:57 +10708566,Ask HN: Does having no appraisal policy make a company bad for career?,,2,1,hillstation21,12/10/2015 2:57 +10610347,"What GitHub Pages, CloudFlare and AWS Lambda Have in Common",https://orlandodevs.com/blog/github-pages-cloudfront-aws-lambda/,9,2,sergiocruz,11/22/2015 15:38 +11996703,Slabot: A Slack-Bot API Using AI Concepts of Sensors and Actions,https://github.com/ryukinix/slabot,3,1,lerax,6/28/2016 19:21 +11575184,Rethinking Unix: A New Apropos Implementation from NetBSD,https://man-k.org/,23,4,iamabhi9,4/26/2016 20:10 +12495457,Web-based generator of random awesomeness,http://sharkle.com/?web,3,1,thenormal,9/14/2016 10:17 +10275991,Ask HN: 50k round not taken seriously by angels?,,8,20,jhamar,9/25/2015 1:44 +11862476,"Being sued, in East Texas, for using the Google Play Store [video]",https://www.youtube.com/watch?v=eatfgXTMFf0,1565,400,egb,6/8/2016 14:29 +11154592,DuckDuckGo ES6 Cheatsheet,https://duckduckgo.com/?q=es6+cheatsheet&ia=answer&iax=1,326,100,redox_,2/22/2016 21:56 +10861246,The Mach Loop Experience,http://blog.planeimages.net/the-mach-loop-experience/,2,1,jetbeau,1/7/2016 22:16 +11001588,"Bank of Japan, in a Surprise, Adopts Negative Interest Rate",http://www.nytimes.com/2016/01/30/business/international/japan-interest-rate.html?ref=asia&_r=0,232,234,timr,1/30/2016 12:15 +12503786,Show HN: I published a book on Django,,4,3,asadjb,9/15/2016 5:58 +11170293,Georgetown Law Professors Say Students Are Traumatized by Criticisms of Scalia,https://theintercept.com/2016/02/23/georgetown-law-professors-complain-conservative-students-are-traumatized-by-criticisms-of-scalia-demand-remedies/,7,1,th0br0,2/24/2016 21:16 +10986529,CERN scientists 'break the speed of light',http://www.telegraph.co.uk/news/science/8782895/CERN-scientists-break-the-speed-of-light.html,7,1,prateekj,1/28/2016 5:42 +10861605,Ask HN: Would you hire a blind software engineer?,,18,15,kolanos,1/7/2016 23:21 +12484268,Growth Hacking Slack,,1,2,hexadecimal,9/12/2016 22:41 +10456891,Vinwo The open-source virtual world with real investments,http://www.vinwo.net,1,3,SpaKito,10/27/2015 8:53 +11673451,Germany had so much renewable energy it had to pay people to use electricity,http://qz.com/680661/germany-had-so-much-renewable-energy-on-sunday-that-it-had-to-pay-people-to-use-electricity/,4,1,po,5/11/2016 8:11 +12547563,How Microsoft computer scientists and researchers are working to 'solve' cancer,https://news.microsoft.com/stories/computingcancer/,53,38,isp,9/21/2016 12:31 +11460936,The Worst Thing That Could Happen to Facebook Is Already Happening,http://www.inc.com/jeff-bercovici/facebook-sharing-crisis.html,7,2,mrwnmonm,4/9/2016 12:10 +10730498,Koel: A personal music streaming server,https://github.com/phanan/koel,499,248,vive-la-liberte,12/14/2015 11:46 +11496171,Kotlin Post-1.0 Roadmap,http://blog.jetbrains.com/kotlin/2016/04/kotlin-post-1-0-roadmap/,90,37,belovrv,4/14/2016 12:48 +12045254,Time Zones Arent Offsets Offsets Arent Time Zones,https://spin.atomicobject.com/2016/07/06/time-zones-offsets/,87,84,ingve,7/6/2016 19:27 +12495299,One year with Vim,https://advancedweb.hu/2016/09/14/one_year_with_vim/,3,1,sashee,9/14/2016 9:45 +10580903,The Silicon Valley Suicides,http://www.theatlantic.com/magazine/archive/2015/12/the-silicon-valley-suicides/413140/?single_page=true,32,3,janvdberg,11/17/2015 13:40 +12179031,Show HN: Play any YouTube video you want at beginning and end of meditation,https://github.com/mettamage/Meditation_Youtube_Player,2,1,mettamage,7/28/2016 8:24 +10882876,Ask HN: How do engineers make time for job interviews/phone screens/preparation?,,10,6,jobseekerThrowA,1/11/2016 19:53 +10447010,Medium's Technology Stack,https://medium.com/medium-eng/the-stack-that-helped-medium-drive-2-6-millennia-of-reading-time-e56801f7c492#.h8zu8v8qh,77,39,dankohn1,10/25/2015 14:55 +11340637,Micro Bit makes strange-sounding music,http://www.bbc.com/news/technology-35868083,2,1,ssalazar,3/22/2016 23:01 +12255631,Russian anti-piracy law targets social media,https://thestack.com/world/2016/08/09/russian-anti-piracy-law-targets-social-media/,2,1,MaurizioP,8/9/2016 16:15 +11455320,"Show HN: Tabd, the powerful link sharing tool, has a new website",https://tabdistheshit.com,6,2,aviaviavi,4/8/2016 15:25 +10741102,EU strikes deal on data protection rules,http://www.politico.eu/article/deal-data-protection-laws-parliament-privacy-tech-digital/,40,12,walterbell,12/15/2015 22:55 +10763812,By default Telegram stores the plaintext of every message on their server?,https://core.telegram.org/method/messages.getMessages,7,3,doener,12/19/2015 15:35 +10623689,CloudBoost.io Parse and Firebase and Algolia all combined into one,https://www.cloudboost.io,3,2,nawazdhandala,11/24/2015 21:26 +11574746,Do you think coding is a basic skill,,14,36,ryanlm,4/26/2016 19:18 +12556470,Yahoo to confirm a historic hack affecting 200M users,http://www.recode.net/2016/9/22/13012836/yahoo-is-expected-to-confirm-massive-data-breach-impacting-hundreds-of-millions-of-users,151,106,merraksh,9/22/2016 12:56 +10595104,Promising cancer therapy dismissed in 70s earns second chance,http://medcom.uiowa.edu/medicine/vitamin-c-revival/,1,1,razvanh,11/19/2015 15:00 +12024615,Build your own Command Line with ANSI escape codes,http://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html,8,1,lihaoyi,7/3/2016 2:41 +11442962,Lessons from a Google App Engine SRE on how to serve over 100B requests per day,https://cloudplatform.googleblog.com/2016/04/lessons-from-a-Google-App-Engine-SRE-on-how-to-serve-over-100-billion-requests-per-day.html,168,25,rey12rey,4/6/2016 22:54 +10295877,Failure of Yahoos Alibaba Spinoff Would Have Messy Consequences,http://www.nytimes.com/2015/09/09/business/dealbook/failure-of-yahoos-alibaba-spinoff-would-have-messy-consequences.html?ref=dealbook&_r=0,2,1,chollida1,9/29/2015 12:59 +11563976,OpenBSD anti-ROP mechanism in libc,https://marc.info/?l=openbsd-tech&m=146159002802803&w=2,8,1,sid77,4/25/2016 13:22 +11764671,Speed up JavaScript crypto,https://github.com/xlab-si/e2ee-client/wiki/Speed-up-Javascript-crypto,3,3,mihas,5/24/2016 19:19 +12146841,Ask HN: What is the skillset for programmers at AI startups?,,79,30,jason_slack,7/22/2016 21:15 +10843680,Bayes's Theorem: What's the Big Deal?,http://blogs.scientificamerican.com/cross-check/bayes-s-theorem-what-s-the-big-deal/,400,259,NN88,1/5/2016 15:26 +12382086,Python vs. C/C++ in embedded systems,https://opensource.com/life/16/8/python-vs-cc-embedded-systems,34,55,opensourcedude,8/29/2016 14:35 +10693999,All the Product Reviews Money Can Buy,http://www.nytimes.com/2015/12/06/your-money/all-the-product-reviews-money-can-buy.html,35,20,danso,12/8/2015 0:47 +11333528,What Ive Learned Working as a Black Person in Silicon Valley,http://www.huffingtonpost.com/cheryl-contee/what-ive-learned-working-as-a-black-person-in-silicon-valley_b_8774790.html,2,1,force_reboot,3/22/2016 0:39 +12193377,The end of sprawl,https://www.washingtonpost.com/opinions/the-end-of-sprawl/2016/07/29/2039a2b8-4d20-11e6-a422-83ab49ed5e6a_story.html?postshare=2171469867195892&tid=ss_tw,46,82,jseliger,7/30/2016 15:33 +10639690,Building an empire with a single brick: Meet Patrick McKenzie,http://blog.bench.co/blog/patrick-mckenzie,11,2,rmason,11/28/2015 1:53 +11167947,ZeroDB white paper: An end-to-end encrypted database,http://arxiv.org/abs/1602.07168,171,38,mwilkison,2/24/2016 16:29 +10686436,The Bad Boy of Pharmaceuticals Hits Back,http://www.nytimes.com/2015/12/06/business/martin-shkreli-the-bad-boy-of-pharmaceuticals-hits-back.html,2,1,ChazDazzle,12/6/2015 20:27 +11158547,"Canopy is Amazon, curated",https://canopy.co/,2,1,webdisrupt,2/23/2016 13:00 +12015086,Ask HN: What are the indicators you need to find another job?,,7,4,throwy666,7/1/2016 11:04 +12536765,SCM at just the right size for Raspberry Pi or PocketCHiP,http://terrarum.net/blog/waffles.html,2,1,markstinson,9/20/2016 3:19 +11819402,Yahoo Announces Public Disclosure of National Security Letters,https://yahoopolicy.tumblr.com/post/145258843473/yahoo-announces-public-disclosure-of-national,264,60,tintor,6/2/2016 0:13 +11441551,Apply HN: Ram Accelerator Supergun Space Launch,,27,15,rdl,4/6/2016 20:04 +11136584,Half the world to be short-sighted by 2050,https://www.sciencedaily.com/releases/2016/02/160217113308.htm,85,106,elorant,2/19/2016 20:59 +10929605,Ask HN: What are good tech conferences in UK?,,3,4,8draco8,1/19/2016 9:44 +11517526,Wage-Slaves,http://www.alexstjohn.com/WP/2016/04/17/wage-slaves/,5,2,popmystack,4/18/2016 3:22 +10597705,Ubuntu Phone Update: OTA-8,https://insights.ubuntu.com/2015/11/19/phone-update-ota-8/,4,1,bpierre,11/19/2015 21:11 +11784852,Man-Computer Symbiosis,http://groups.csail.mit.edu/medg/people/psz/Licklider.html,2,1,indatawetrust,5/27/2016 9:31 +11502251,Parallel Query (PostgreSQL 9.6),https://wiki.postgresql.org/wiki/Parallel_Query,3,1,amitlan,4/15/2016 4:52 +11066194,Do Slow Online Ads Really Pay More?,http://blog.pubnation.com/do-slow-ads-pay-more/?utm_source=hn,6,1,jwoods2,2/9/2016 16:09 +12459595,"Anonymous hacker faces 16 years in prison, while Steubenville rapists walk free",https://www.rt.com/usa/358728-anonymous-trial-steubenville-rape/,29,20,Jerry2,9/9/2016 4:16 +12059529,Ask HN: How to secure your Apple Mac against malware/viruses?,,25,12,questionr,7/9/2016 0:42 +10443873,OpenBSD developers: Landry Breuil,http://beastie.pl/deweloperzy-openbsd-landry-breuil/,48,28,mulander,10/24/2015 15:33 +11047546,Simple anomaly detection for metrics with a weekly pattern,https://medium.com/@iliasfl/data-science-tricks-simple-anomaly-detection-for-metrics-with-a-weekly-pattern-2e236970d77,42,4,iliasfl,2/6/2016 12:43 +12351982,Why doesn't Hacker News offer more features?,,1,1,master_gambit42,8/24/2016 13:53 +10699098,Human Echolocation Allows People to See Without Using Their Eyes (2013),http://www.smithsonianmag.com/science-nature/how-human-echolocation-allows-people-to-see-without-using-their-eyes-1916013/?no-ist,10,1,Mz,12/8/2015 20:12 +10983524,"Erlang, Haskell, OCaml, Go, Idris, the JVM, Software and Protocol Design",https://medium.com/this-is-not-a-monad-tutorial/interview-with-jesper-louis-andersen-about-erlang-haskell-ocaml-go-idris-the-jvm-software-and-b0de06440fbd,4,1,arto,1/27/2016 21:24 +11547900,The Arctic Suicides: It's Not the Dark That Kills You,http://www.npr.org/sections/goatsandsoda/2016/04/21/474847921/the-arctic-suicides-its-not-the-dark-that-kills-you,242,110,pmcpinto,4/22/2016 9:04 +11587178,Google Reveals Its Cloud Computing Vision,http://www.51zero.com/blog/google-reveals-its-cloud-computing-vision,70,30,51zero,4/28/2016 8:06 +11134852,"Ask HN: Recruiters, what non-technical questions do you ask?",,6,4,zuck9,2/19/2016 17:24 +12457395,Why the iPhone 7 Has to Simulate a Shallow Depth of Field,http://petapixel.com/2016/09/08/iphone-7-simulate-shallow-depth-field/,2,1,aaronbrethorst,9/8/2016 21:15 +12145842,Computer Vision and Adversarial Images,https://www.technologyreview.com/s/601955/machine-visions-achilles-heel-revealed-by-google-brain-researchers/,5,1,jonathankoren,7/22/2016 18:56 +10895706,Google Used Tiny Cameras to Street View the Worlds Largest Model Railway,http://gizmodo.com/google-used-tiny-cameras-to-street-view-the-world-s-lar-1752677874,1,1,PLenz,1/13/2016 17:00 +11954716,US government conducted airflow tests on NYC subway to understand bioterror risk,http://www.bbc.com/autos/story/20160621-how-to-fight-bioterrorism-on-subways,85,51,skennedy,6/22/2016 15:34 +12148885,Rakudo Star Perl 6 Release 2016.07,http://rakudo.org/2016/07/22/announce-rakudo-star-release-2016-07/,19,3,Ultimatt,7/23/2016 9:05 +11015416,Super Mario Wallpaper Maker,http://mariomaker-wp.nintendo.co.jp/create/index.html?w=1280&h=1024,125,20,pdknsk,2/1/2016 21:03 +11687705,Dracula A dark theme,https://draculatheme.com,3,1,dsego,5/13/2016 0:04 +12370805,Why Nearly Every Film Ends by Saying Its Fiction,http://www.slate.com/blogs/browbeat/2016/08/26/the_bizarre_true_story_behind_the_this_is_a_work_of_fiction_disclaimer.html,152,83,yurisagalov,8/27/2016 3:29 +10763007,Pulling a Kiko (YC S05),http://www.ebay.com/itm/181966729021,1,1,ronakvora,12/19/2015 8:02 +12406727,A warning about using Escrow.com,https://medium.com/@forEmil/escrow-com-the-escrow-service-from-hell-2035923fc9f8,7,1,emil2k,9/1/2016 16:38 +10215498,Sergey Brin's Search for a Parkinson's Cure (2010),http://www.wired.com/2010/06/ff_sergeys_search/,31,22,valhalla,9/14/2015 15:22 +12494320,Philz Coffee raises $45M Series C,https://medium.com/@JacobJaber/the-culture-of-philz-df9344627756#.mfxe2o8fz,3,2,sloanesturz,9/14/2016 4:54 +11012749,1/3rd of U.S. startups that raised a 2015 Series A went through an accelerator,http://pitchbook.com/news/articles/one-third-of-us-startups-that-raised-a-series-a-in-2015-went-through-an-accelerator,2,1,sharkweek,2/1/2016 16:30 +12324433,TensorFlow Demo in 5 Minutes,https://www.youtube.com/watch?v=2FmcHiLCwTU,4,1,llSourcell,8/20/2016 0:26 +11359485,ZMorphs Hybrid 3D Printer Is an All-in-One Manufacturing Tool,http://www.engineering.com/3DPrinting/3DPrintingArticles/ArticleID/11703/ZMorphs-Hybrid-3D-Printer-Is-an-All-in-One-Manufacturing-Tool.aspx,10,2,twiceuponatime,3/25/2016 11:34 +12135956,No Man's Sky sued over procedural generation algorithm patent,http://www.pcgamer.com/company-claims-no-mans-sky-uses-its-patented-equation-without-permission/,26,33,chriswwweb,7/21/2016 10:42 +11418886,Wyngz,https://en.wikipedia.org/wiki/Wyngz,2,1,earljwagner,4/4/2016 1:45 +11774078,"Vice Media Web Traffic Plunges 17% in February, Sunk by Risky Strategy Variety",http://variety.com/2016/digital/news/vice-media-traffic-plummets-underscoring-risky-web-strategy-1201733673/,1,1,walterbell,5/25/2016 23:45 +11389872,Sony Says 4K Movies Will Cost a Whopping $30 Apiece,http://recode.net/2016/03/29/sony-says-4k-movies-will-cost-a-whopping-30-when-streaming-service-launches-in-april/,2,2,vermontdevil,3/30/2016 15:16 +12351184,Sharing Research about Adverse Childhood Experiences,http://www.nytimes.com/2016/08/23/opinion/putting-the-power-of-self-knowledge-to-work.html,27,3,Jasamba,8/24/2016 11:22 +10712613,Source Control for Art Assets Must Exist,http://hacksoflife.blogspot.com/2015/12/source-control-for-art-assets-this-must.html,41,36,ingve,12/10/2015 19:07 +12440230,Next steps for Gmane,http://home.gmane.org/2016/08/29/next-steps-gmane/,166,49,sohkamyung,9/7/2016 0:29 +10591231,Ask HN: When and how to argue with data driven decisions?,,8,5,raymondgh,11/18/2015 22:27 +11682947,Microservices advice for web and mobile backends?,,4,7,malloryerik,5/12/2016 12:49 +11745583,"Todolist: The perfect command-line task management app. Fast, simple, GTD",http://todolist.site/,4,1,dogas,5/21/2016 18:18 +11677308,Perl 5.24 comes with performance enhancements,https://www.nu42.com/2016/05/switch-to-perl-5-24.html,5,2,nanis,5/11/2016 17:30 +11796023,What UX designers can learn from 1990s Japanese video games,http://techcrunch.com/2016/05/28/what-ux-designers-can-learn-from-1990s-japanese-video-games/,73,30,autoreleasepool,5/29/2016 11:49 +10288345,I Left My Heart in San Francisco: The Exile of a Digital Nomad,https://medium.com/@danielkehoe/i-left-my-heart-in-san-francisco-272b36438a21,33,17,DanielKehoe,9/27/2015 23:57 +10592214,Bing for iPhone,https://blogs.bing.com/search/2015/11/18/the-new-bing-app-for-iphone-re-thinking-mobile-search/,4,1,psla,11/19/2015 1:46 +12561610,Visual DOOM AI competition results,http://vizdoom.cs.put.edu.pl/competition-cig-2016/results,8,3,modeless,9/23/2016 1:05 +12449470,Employee ID badge monitors you at work except in bathroom,https://www.washingtonpost.com/news/business/wp/2016/09/07/this-employee-badge-knows-not-only-where-you-are-but-whether-you-are-talking-to-your-co-workers/,39,50,gregholmberg,9/8/2016 1:15 +12037474,Applying machine learning to Infosec,http://conf.startup.ml/blog/infosec,102,32,adamnemecek,7/5/2016 16:15 +10696077,Metformin as a Geroprotector (2011),http://www.ncbi.nlm.nih.gov/pubmed/21882902,2,1,rfreytag,12/8/2015 13:07 +12414862,Ask HN: How do you deal with disk space and docker deployments?,,3,3,mariocesar,9/2/2016 17:57 +11563685,Ask HN: Rails update on advisory CVEs?update gems or only rails itself?roadmap?,,1,1,westone,4/25/2016 12:06 +12216499,Bitcoin exchange hit with $61M theft,http://www.theverge.com/2016/8/2/12364122/bitfinex-theft-61-million-dollars-bitcoin-cryptocurrency,2,2,sbatra,8/3/2016 8:31 +11814324,GitHub-first-commit,https://github.com/Wushaowei001/github-first-commit,1,1,jcwsw129,6/1/2016 13:53 +11982153,Could the Scottish Parliament Stop the UK from Leaving the EU?,http://www.bbc.co.uk/news/uk-scotland-36635012,3,1,neverminder,6/26/2016 19:10 +11501164,Apple Pursues New Search Features for a Crowded App Store,http://www.bloomberg.com/news/articles/2016-04-14/apple-said-to-pursue-new-search-features-for-crowded-app-store,7,3,qzervaas,4/14/2016 23:59 +11538334,RansomWhere?,https://objective-see.com/products/ransomwhere.html,2,1,based2,4/20/2016 22:54 +10346044,Time Structured Merge Tree: From LSM Tree to B+Tree and Back Again,https://influxdb.com/docs/v0.9/concepts/storage_engine.html,97,28,pauldix,10/7/2015 14:03 +10756338,Solve this riddle,http://www.riddleearth.com/archives?r=Itching-to-escape&id=63,2,2,riddleearth,12/18/2015 3:00 +12192399,Atom ansible vault package,https://github.com/sydro/atom-ansible-vault,3,1,sydro,7/30/2016 10:21 +12005432,Red Falcon Run Tournament Open Beta Test for PC Gamers,,1,1,Krojyn,6/29/2016 22:57 +11055400,McCollough Effect change your brain for a prolonged time,http://www.michaelbach.de/ot/col-McCollough/,7,1,stared,2/7/2016 22:59 +12535046,Ask HN: Deep learning attack vectors,,5,1,gtirloni,9/19/2016 21:48 +11941758,Ethereum is Doomed,http://nakamotoinstitute.org/mempool/ethereum-is-doomed/#selection-7.4-7.22,299,209,kushti,6/20/2016 21:33 +10768532,Autism in Women Is Misunderstood,http://www.theatlantic.com/health/archive/2015/10/the-invisible-women-with-autism/410806/?utm_source=SFTwitter&single_page=true,82,64,edward,12/20/2015 22:23 +11606407,Google will buy IFTTT,,5,3,dpweb,5/1/2016 15:01 +12319504,Researcher Grabs VPN Password with Tool from NSA Dump,https://motherboard.vice.com/read/researcher-grabs-cisco-vpn-password-with-tool-from-nsa-dump,147,52,aestetix,8/19/2016 12:18 +11853011,Stealthy Military Startup Launches Neural Processor,http://www.eetimes.com/document.asp?doc_id=1329843,6,1,p51ngh,6/7/2016 7:47 +12129936,Gravity.js,https://valentinvichnal.github.io/gravity.js/,103,40,valentinvichnal,7/20/2016 15:46 +12010595,Three Management Pressures That Drive Poor Development Decisions,https://articles.buildbettersoftware.com/three-management-pressures-that-drive-poor-development-decisions-feb1d2bbbfd7#.135tsw55g,3,1,mstarkman,6/30/2016 18:20 +11046108,PayPal cuts off payments to UnoTelly Netflix-unblocking service,http://www.cbc.ca/news/technology/unotelly-paypal-1.3435740,9,1,empressplay,2/6/2016 1:50 +11951218,ZFS: Practicing failures on virtual hardware,http://jrs-s.net/2016/05/16/zfs-practicing-failures,2,1,jimmcslim,6/22/2016 2:43 +11298811,The Gang of Retirees Behind the Hatton Garden Heist,http://www.vanityfair.com/culture/2016/03/biggest-jewel-heist-in-british-history,77,15,nols,3/16/2016 17:00 +12378285,Deprogrammed: stories of escape from cult mind-control (WebGL),http://deprogrammed.org/,2,1,fitzwatermellow,8/28/2016 20:11 +10274313,Perplexing Pluto: New Snakeskin Image and More from New Horizons,http://www.nasa.gov/feature/perplexing-pluto-new-snakeskin-image-and-more-from-new-horizons,95,13,r721,9/24/2015 20:08 +11273440,Scientist grow dinosaur leg on chicken,http://www.dailymail.co.uk/sciencetech/article-3487977/Scientist-grow-dinosaur-leg-CHICKEN-bizarre-reverse-evolution-experiment.html,3,1,esalazar,3/12/2016 16:46 +10440164,CEO Undergoes Gene Therapy to Reverse Aging,http://bionicly.com/liz-parrish-gene-therapy/,1,1,fasteo,10/23/2015 17:53 +10670859,The Holy Fear,http://www.kellegous.com/j/2015/12/03/the-holy-fear/,5,2,cromwellian,12/3/2015 17:20 +11103584,The radical plan to destroy time zones,https://www.washingtonpost.com/news/worldviews/wp/2016/02/12/the-radical-plan-to-destroy-time-zones-2/?wpisrc=nl_draw,5,3,dnetesn,2/15/2016 14:41 +12396985,Do you trust StartCom (StartSSL)?,https://www.letsphish.org/?part=1,2,1,okket,8/31/2016 9:10 +11813588,Salesforce signs definitive agreement to buy Demandware for $2.8B,http://finance.yahoo.com/news/salesforce-signs-definitive-agreement-acquire-110000882.html,5,3,rdl,6/1/2016 11:41 +10651484,What photos of Facebooks new headquarters say about work,https://www.washingtonpost.com/news/the-switch/wp/2015/11/30/what-these-photos-of-facebooks-new-headquarters-say-about-the-future-of-work/,54,62,e15ctr0n,11/30/2015 20:22 +11930612,Prosecutors Drop Drug Trafficking Case Against FedEx,http://abcnews.go.com/US/wireStory/prosecutors-drop-drug-trafficking-case-fedex-39945630,105,26,protomyth,6/18/2016 21:12 +12368908,"Why prisons continue to grow, even when crime declines",https://news.osu.edu/news/2016/08/22/prison-growth/,44,81,Oatseller,8/26/2016 20:00 +10297020,Three Things about the Back-End that Front-End programmers need to know about,https://medium.com/@peterbsmith/three-things-about-the-back-end-that-front-end-programmers-need-to-know-about-74c9f15963a2,2,1,peterbsmith,9/29/2015 15:32 +11725328,Google Spaces,https://spaces.google.com/,5,1,nice_byte,5/18/2016 19:56 +12312240,"RTL URLs get flipped, making phishing easier",https://twitter.com/nickmalcolm/status/766068791516114944,9,3,stared,8/18/2016 13:18 +10374237,"Dell, EMC, HP, Cisco are the walking dead",http://www.wired.com/2015/10/meet-walking-dead-hp-cisco-dell-emc-ibm-oracle,60,70,flying_whale,10/12/2015 13:10 +10222770,Device Recognition and Indoor Localization,http://www.annevanrossum.com/blog/2015/09/15/a-really-smart-power-outlet/,5,2,MrQuincle,9/15/2015 19:54 +10536416,Machine 'Prints' Brick Roads,http://news.discovery.com/tech/robotics/amazing-machine-prints-brick-roads-151109.htm,22,17,DrScump,11/9/2015 22:52 +11677072,Hyperloop raises $80M Series B to build Elon Musk's future transport vision,http://techcrunch.com/2016/05/10/hyperloop-technologies-becomes-hyperloop-one-pulls-in-80-million-and-announces-global-partners/,4,1,cmbailey,5/11/2016 17:04 +10859871,Being right won't pay your bills,http://austinlchurch.com/being-right-wont-pay-your-bills/,98,99,austinlchurch,1/7/2016 18:53 +11725334,Sysdig: Behavioral Activity Monitor With Container Support,http://www.sysdig.org/falco/,80,7,Artemis2,5/18/2016 19:57 +10820218,Clojure 2015 Year in Review,http://stuartsierra.com/2015/12/31/clojure-2015-year-in-review,26,17,andrioni,12/31/2015 23:02 +10487386,House temperatures as a metaphor for interest rates,http://econlog.econlib.org/archives/2015/10/a_theory_of_hou.html,8,1,nkurz,11/1/2015 18:11 +10308705,"Disgraced Scientist Clones Dogs, and Critics Question His Intent",http://www.npr.org/sections/health-shots/2015/09/30/418642018/disgraced-scientist-clones-dogs-and-critics-question-his-intent,11,1,signor_bosco,10/1/2015 1:39 +11310277,STNS: Simple authenticate provider for Linux users and public keys using TOML,https://github.com/STNS/STNS,4,1,matsumotory,3/18/2016 6:31 +11297132,Show HN: TaskPaper 3 Plain text to-do lists for Mac,http://www.taskpaper.com,3,6,jessegrosjean,3/16/2016 13:37 +10392803,Show HN: EDB A framework to make and manage backups of your database,https://github.com/RoxasShadow/EDB,2,1,RoxasShadow,10/15/2015 12:52 +10254212,France confirms that Google must remove search results globally or face big fine,http://arstechnica.co.uk/tech-policy/2015/09/france-confirms-that-google-must-remove-search-results-globally-or-face-big-fines/,5,6,happyscrappy,9/21/2015 18:30 +11363865,OpenToonz,http://opentoonz.github.io/e/index.html,37,5,wesleyhill,3/26/2016 0:58 +11206649,Inside Jobs (2015),http://www.cabinetmagazine.org/issues/58/manaugh.php,20,4,samclemens,3/1/2016 22:29 +10674758,Microsoft Facial Recognition Project Allows Computers to 'See' Your Mood,http://www.forbes.com/sites/adrianbridgwater/2015/12/03/microsoft-facial-recognition-project-allows-computers-to-see-your-mood/,3,1,jonbaer,12/4/2015 5:03 +10284321,Show HN: I spent a year making an electro-mechanical prototype of a liquid clock,http://www.hellorhei.com,681,103,damjanstankovic,9/26/2015 20:29 +10186867,Show HN: ReadThisThing One piece of journalism in your inbox daily,http://readthisthing.com/##,45,17,awwstn,9/8/2015 17:05 +12532831,Vcpkg: a tool to acquire and build C++ open source libraries on Windows,https://blogs.msdn.microsoft.com/vcblog/2016/09/19/vcpkg-a-tool-to-acquire-and-build-c-open-source-libraries-on-windows/,37,1,runesoerensen,9/19/2016 16:57 +10512604,How Uber sabotaged Lyft,https://medium.com/platform-thinking/uber-vs-lyft-how-platforms-compete-on-interaction-failure-30f59fdca137,7,4,zabramow,11/5/2015 10:25 +10830431,Reso responsive ui framework released,Http://rsuikit.nailfashionsweden.se,15,1,salituders,1/3/2016 12:52 +11595138,A DNA-Based Archival Storage System,http://research.microsoft.com/apps/pubs/default.aspx?id=258661,6,1,zdk,4/29/2016 12:10 +12167359,Common Go for Data Science Questions,http://www.datadan.io/common-go-for-data-science-questions/,5,1,dwhitena,7/26/2016 17:39 +11446568,Apply HN: CFC.io free calls to any numbers,,2,4,vinogradov,4/7/2016 12:08 +10289906,On Modal Messages and User Experience,http://www.slideshare.net/dsimov/euroia-2015-on-messages,18,6,epsylon,9/28/2015 11:45 +12128695,Ask HN: Do i really need a css preprocessor?,,6,8,redxblood,7/20/2016 13:05 +10582285,French President Hollande Seeks to Amend Constitution,http://www.nytimes.com/2015/11/17/world/europe/paris-terror-attack.html,1,1,hackuser,11/17/2015 16:49 +11386665,"Market Manipulation, the 1780s Way",http://common-place.org/book/market-manipulation-the-1780s-way-what-a-letter-to-a-flour-dealer-tells-us-about-the-early-modern-political-economy/,43,11,benbreen,3/30/2016 3:00 +11143739,Show HN: Editer a high level multi-line string manipulation in Node.js,https://github.com/sungwoncho/editer,4,2,stockkid,2/21/2016 7:57 +10211153,Dark corners of Unicode,http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/,158,28,zeitg3ist,9/13/2015 12:31 +10324571,I Do Not Want Your Stupid App,http://techcrunch.com/2015/10/03/with-apologies-to-theodor-geisel/,91,37,sagivo,10/3/2015 17:21 +11286538,Show HN: Sakura Fly - Open source iOS game on App Store,https://github.com/l800891/Sakura-Fly,3,1,lcllcl,3/15/2016 0:07 +11711095,Show HN: Tellform An Open-Source Form Builder,https://www.tellform.com/,29,7,whitef0x,5/17/2016 2:48 +12527051,No one actually ever believed the earth was flat,https://en.wikipedia.org/wiki/Myth_of_the_flat_Earth,2,2,bst287,9/18/2016 20:22 +10917818,Peak content: The collapse of the attention economy,http://www.themediabriefing.com/article/peak-content-the-collapse-of-the-attention-economy,110,48,joeyespo,1/17/2016 1:26 +11085224,James Woods gets permission to sue his Twitter abuser,http://www.engadget.com/2016/02/11/james-woods-vs-twitter/,4,1,jamescustard,2/12/2016 4:06 +10488175,Russia and the Curse of Geography,http://www.theatlantic.com/international/archive/2015/10/russia-geography-ukraine-syria/413248/?single_page=true,24,16,dctoedt,11/1/2015 20:47 +12033045,Massachusetts House Votes to Pass Noncompete Reform Bill,http://bostinno.streetwise.co/2016/06/29/mass-house-of-representatives-vote-on-noncompete-reform/,6,1,frostmatthew,7/4/2016 21:14 +10916511,Portraits from Ellis Island,http://www.cbsnews.com/pictures/ellis-island-melting-pot-immigrant-portraits/,9,1,brudgers,1/16/2016 19:43 +10601637,Censorship of images in the Soviet Union,https://en.wikipedia.org/wiki/Censorship_of_images_in_the_Soviet_Union,2,1,jimsojim,11/20/2015 15:31 +12269554,EPA Rule to Ban Car Modification,http://www.thenewspaper.com/news/48/4894.asp,16,10,ptaipale,8/11/2016 16:25 +10380416,Nobodys Talking About Nanotech Anymore,http://time.com/4068125/nanotech-sector/,122,102,ThomPete,10/13/2015 13:49 +11046053,Ask HN: Best curated newsletters?,,127,69,neilsharma,2/6/2016 1:31 +10410257,Why Tipping is Wrong,http://www.nytimes.com/2015/10/16/opinion/why-tipping-is-wrong.html?smid=tw-nytimes&smtyp=cur&_r=0,2,1,SethMurphy,10/18/2015 23:11 +11460666,H+Tree 300% faster index technology,https://www.youtube.com/watch?v=ix2MFMEGkIg,3,1,vaibhavmule,4/9/2016 9:53 +11054478,Ask HN: What RSS reader do you use? (web and/or OSX),,2,1,ggregoire,2/7/2016 19:51 +11667205,My Home Tower Project,http://www.kc0ll.net/tower/tower001.html,2,2,pavel_lishin,5/10/2016 14:03 +12066993,Drowning in Problems,http://game.notch.net/drowning/,4,3,jflowers45,7/10/2016 19:51 +10620122,Mira: create simple read-only APIs from CSV files,https://github.com/davbre/mira,44,7,r0muald,11/24/2015 11:02 +10466423,Microsoft Unveils Its Arrow Launcher for Android,http://techcrunch.com/2015/10/28/microsoft-officially-unveils-its-arrow-launcher-for-android/,58,39,yinyinwu,10/28/2015 18:46 +11953533,500 error from Facebook,http://facebook.com/logout,2,2,vincent_s,6/22/2016 13:04 +12379267,Clinton campaign using encryption software to talk about Trump,http://www.vanityfair.com/news/2016/08/how-the-clinton-campaign-is-foiling-the-kremlin,6,1,on3twothr33,8/29/2016 0:31 +10903263,Why the Next Generation of Online Video Companies Will Be Vertical,http://www.bothsidesofthetable.com/2016/01/13/why-the-next-generation-of-online-video-companies-will-be-vertical/,1,1,obeone,1/14/2016 18:24 +11491541,NES classic Punch-Out has an Easter egg that went undiscovered for 29 years,http://thenextweb.com/shareables/2016/04/11/punch-out-has-an-easter-egg-that-went-undiscovered-for-29-years,239,63,ant6n,4/13/2016 19:45 +10572121,Independent bookstore fan showrooms Amazon Books,http://seattlereviewofbooks.com/notes/2015/11/06/independent-bookstore-fan-showrooms-amazon-books/,63,35,oneeyedpigeon,11/16/2015 1:30 +12493288,Would You Fly in a Pilotless Airliner?,http://www.bbc.com/future/story/20160912-would-you-fly-in-a-pilotless-airliner,3,2,breitling,9/14/2016 0:07 +11886791,Spaced Repetition Learning,https://andrewtmckenzie.com/spaced_repetition/,5,2,sndean,6/12/2016 5:32 +10894723,Gravitation under human control?,http://www.sciencedaily.com/releases/2016/01/160108083918.htm,5,2,725686,1/13/2016 15:00 +11737017,A former Facebook engineer on algorithmic ranking for Facebook Trending,https://www.linkedin.com/pulse/algorithm-transparency-paying-attention-man-behind-curtain-koren?trk=eml-b2_content_ecosystem_digest-hero-14-null&midToken=AQE5WL03u_Wx3w&fromEmail=fromEmail&ut=28uObBJ6PtfTg1,57,23,smoyer,5/20/2016 11:45 +10528663,The Secret Life of Photons: Simulating 2D Light Transport,https://benedikt-bitterli.me/tantalum/,10,2,Tunabrain,11/8/2015 15:10 +12211754,Show HN: Noms A new decentralized database based on ideas from Git,https://medium.com/@aboodman/noms-init-98b7f0c3566#.ojb6eaz94,508,167,ahl,8/2/2016 17:57 +11191696,The origins of the class Meta idiom in python,http://mapleoin.github.io/perma/python-class-meta,6,1,mapleoin,2/28/2016 18:09 +12239762,Show HN: 2016 Olympic Medal Count API,http://www.medalbot.com/,2,2,efkv,8/6/2016 20:31 +10424683,Humanize the Craft of Building Interactive Computer Applications [pdf],http://melconway.com/humanize-the-craft.pdf,32,6,adarshaj,10/21/2015 11:07 +11163290,Eight decades of Helen Levitts New York City street photography,http://dangerousminds.net/comments/kids_play_8_decades_of_helen_levitts_stunning_new_york_city_street_photogra,49,5,smollett,2/23/2016 23:39 +10714179,Oreilly tarsier blinks at you on home page,http://archive.oreilly.com/pub/a/oreilly//news/lejeune_0400.html,7,3,hcrisp,12/10/2015 22:48 +10289673,Icebergs.io Brings Linux Desktop to the Browser,https://icebergs.io,146,92,isotope1,9/28/2015 10:17 +12339116,"Simulation Finds Self-Driving Cars Will Eliminate 90% of Cars, Open Public Space",https://medium.com/the-ferenstein-wire/futuristic-simulation-finds-self-driving-taxibots-will-eliminate-90-of-cars-open-acres-of-618a8aeff01#.s0xztertt,8,3,sethbannon,8/22/2016 20:18 +10919816,Show HN: Tufte's line graph sparklines with D3.js,http://dataviztalk.blogspot.com/2016/01/how-to-make-sparkline-with-d3js.html,30,4,rooviz,1/17/2016 15:59 +10221196,Ask HN: Best Mac OS X Password Manager,,1,5,specialist,9/15/2015 15:31 +10513719,How a Brooklyn Newsboys Nickel Helped Convict a Soviet Spy,http://www.nytimes.com/2015/11/04/nyregion/how-a-brooklyn-newsboys-nickel-helped-convict-a-soviet-spy.html?hp&action=click&pgtype=Homepage&module=second-column-region®ion=top-news&WT.nav=top-news,17,2,pavornyoh,11/5/2015 15:13 +10259704,Show HN: Publish your Slack chats to public web pages,http://www.slashcast.it,4,3,johndavi,9/22/2015 16:36 +10337173,Bloomberg Markets 50 Most Influential,http://www.bloomberg.com/features/2015-markets-most-influential/,8,1,tomaskazemekas,10/6/2015 7:14 +10505804,GaugeView: an open source component for making Gauges in Swift,https://github.com/BelkaLab/GaugeView,3,1,HipstaJules,11/4/2015 11:22 +11707719,Linksys Says It Won't Block Third Party Open Source Firmware,http://www.dslreports.com/shownews/Linksys-Says-it-Wont-Block-Third-Party-Open-Source-Firmware-136962,25,1,jonbaer,5/16/2016 17:02 +12322048,Palo Alto struggles to provide housing that's affordable,http://www.paloaltoonline.com/news/2016/08/19/palo-alto-struggles-to-provide-housing-thats-affordable,2,1,jseliger,8/19/2016 18:09 +12064936,Why do so many developers dislike agile? (Satire),https://www.quora.com/In-a-nutshell-why-do-a-lot-of-developers-dislike-Agile/answer/Miles-English?srid=i5M8&share=1,2,1,xg15,7/10/2016 8:23 +11694277,Ask HN: What's the best tool you used to use that doesn't exist anymore?,,331,868,mod50ack,5/14/2016 2:07 +11889017,BFD (Bidirectional Forwarding Detection) in OpenBSD [pdf],http://www.openbsd.org/papers/bsdcan2016-bfd.pdf,70,14,notaplumber,6/12/2016 16:58 +11369561,Writing Women Back into the History of Science,http://nautil.us/blog/this-college-student-is-writing-women-back-into-the-history-of-science,22,11,dnetesn,3/27/2016 10:39 +12352831,Practical Guide to PostgreSQL Optimizations,https://tech.lendinghome.com/practical-guide-to-postgresql-optimizations-d7b9c2ad6a22#.d4s9e879m,124,16,omarish,8/24/2016 15:42 +10497485,The Black Box of Product Management,https://medium.com/@brandonmchu/the-black-box-of-product-management-3feb65db6ddb,71,41,saadatq,11/3/2015 4:14 +11525100,Ask HN: Seattle area attorney specializing in SaaS,,3,2,robmiller,4/19/2016 5:43 +11739083,The uncertainty principle is a mis-translation (2014),https://www.edge.org/response-detail/25531,37,53,lisper,5/20/2016 16:18 +11257804,"Stem Cells Regenerate Human Lens After Cataract Surgery, Restoring Vision",http://ucsdnews.ucsd.edu/pressrelease/stem_cells_regenerate_human_lens_after_cataract_surgery_restoring_vision,166,23,kevindeasis,3/10/2016 7:40 +11824635,"Welcome Adora, Nicole, Elizabeth, Case and Robby",http://blog.ycombinator.com/welcome-adora-nicole-elizabeth-case-and-robby,64,25,dwaxe,6/2/2016 18:00 +12342774,Americas First Offshore Wind Farm,http://nytimes.com/2016/08/23/science/americas-first-offshore-wind-farm-may-power-up-a-new-industry.html,68,85,petethomas,8/23/2016 11:17 +10713328,The First High-Frequency Trader,https://medium.com/@SparkFin/what-high-frequency-trading-looked-like-in-the-1970-s-ed1674e704cd#.gdh0fuc17,7,2,ca98am79,12/10/2015 20:46 +12401217,"AMA: Self-Employment, Remote Work Gregory Brown (Programming Beyond Practices)",https://mobile.twitter.com/practicingdev/status/771065320228421632,2,1,j_s,8/31/2016 20:27 +11024147,Who is Co-Founding? (February 2016),,5,1,boggzPit,2/3/2016 1:32 +11380936,NPM removes Disqus comments from blog after users disapprove NPM's resolution,,46,16,dustinmoris,3/29/2016 12:29 +11755755,Show HN: I built a bot to automatically apply to jobs,https://github.com/jmopr/job-hunter,109,86,jmopr,5/23/2016 18:22 +11364248,Relocatable virtualenv,http://www.soasme.com/2016/03/26/relocatable-virtualenv,2,1,soasme,3/26/2016 3:04 +10601358,Amalgamated hosts file,https://github.com/StevenBlack/hosts,4,2,2a0c40,11/20/2015 14:45 +10750811,The un-reached goal (Kickstarter),https://www.youtube.com/watch?v=3Wf8c8wO3CU,1,1,colloqu,12/17/2015 11:22 +11597246,Your Slack login details are on GitHub,http://thenextweb.com/insider/2016/04/29/your-slack-login-details-are-on-gitbub/,5,5,pyprism,4/29/2016 17:27 +11709767,Microsoft Schedules Upgrade to Windows 10 Without Users Consent,http://news.softpedia.com/news/microsoft-schedules-upgrade-to-windows-10-without-users-consent-504095.shtml,4,1,chang2301,5/16/2016 21:26 +11720031,Mathematics and the Imagination,https://en.wikipedia.org/wiki/Mathematics_and_the_Imagination,3,1,danielhughes,5/18/2016 5:49 +12329460,Canadian Cops Want a Law That Forces People to Hand Over Encryption Passwords,http://motherboard.vice.com/read/canadian-cops-want-a-law-that-forces-people-to-hand-over-encryption-passwords?utm_source=mbfb,43,24,doener,8/21/2016 4:59 +10241261,Show HN: Crisp iOS keyboard for email and text templates,https://itunes.apple.com/us/app/crisp-email-template-keyboard/id1015801280?ls=1&mt=8,6,1,chasefinch,9/18/2015 18:47 +11190423,Ask HN: Good Tutorial to Run Django+Nginx+GUnicorn in Docker,,13,2,tkd,2/28/2016 9:18 +11580223,Advice from some old people,http://imgur.com/gallery/ygq7RK8,1,1,epalmer,4/27/2016 13:31 +10644550,Samsung accused of spurning dialogue-based solution for leukemia victims,http://english.hani.co.kr/arti/english_edition/e_national/710260.html,1,1,sydney6,11/29/2015 13:45 +11370794,If You Can: How Millennials Can Get Rich Slowly [pdf],https://dl.dropboxusercontent.com/u/29031758/If%20You%20Can.pdf,1,1,saryant,3/27/2016 17:59 +11358403,"Ask HN: Image/video recognition, what's the status quo and application?",,3,1,LiweiZ,3/25/2016 3:51 +11932579,Ask HN: What is best programmable drone with camera,,9,12,prats226,6/19/2016 11:14 +10637789,Perl 6 Introduction,http://perl6intro.com/,192,105,bane,11/27/2015 16:11 +12070154,Software Checklists can they be useful?,http://www.solipsys.co.uk/new/SoftwareChecklist.html?HN_20160711,5,1,ColinWright,7/11/2016 10:47 +12442970,Ways to help Crowdfunding sites improve fulfillment,http://www.hatchmfg.com/ways-will-help-crowdfunding-not-fail/,2,1,beilion,9/7/2016 12:56 +11286302,Fingerprints are Usernames not Passwords,http://blog.dustinkirkland.com/2013/10/fingerprints-are-user-names-not.html,4,4,tosh,3/14/2016 23:16 +10711129,An Engineer's 29-Year Obsession just became FAA Approved,http://www.forbes.com/sites/joannmuller/2015/05/06/how-the-hondajet-took-flight-an-engineers-30-year-obsession/print/,2,1,doublerebel,12/10/2015 15:40 +12395330,SES-10 Launching to Orbit on SpaceX's Flight-Proven Falcon 9 Rocket,http://www.ses.com/4233325/news/2016/22407810,200,80,loourr,8/31/2016 1:38 +12099368,Blaze CSS Open Source Modular CSS Framework,http://blazecss.com/,110,56,rtcoms,7/15/2016 7:09 +11258168,"AlphaGo Can't Beat Me, Says Chinese Go Grandmaster Ke Jie",http://www.shanghaidaily.com/national/AlphaGo-cant-beat-me-says-Chinese-Go-grandmaster-Ke-Jie/shdaily.shtml,172,123,xianshou,3/10/2016 9:37 +11208025,Ask HN: What are people's preferred project management tools?,,6,7,hooliganpete,3/2/2016 4:05 +12355941,Giant Arrows Seen From Space Point to a Vanished World,http://news.nationalgeographic.com/2016/08/desert-kites-out-of-eden-walk-uzbekistan-iron-age-saiga/,202,49,Thevet,8/24/2016 23:12 +12551293,Golang: Err on the Side of Structured,https://gist.github.com/andrewstuart/8d60b3b830f1acd0a87abe6b2c3932d5,1,1,andrewstuart2,9/21/2016 19:14 +12279552,Spaceplan,http://jhollands.co.uk/spaceplan/,252,66,dcminter,8/12/2016 23:55 +10516825,Researchers Reveal How Climate Change Killed Mars,http://www.npr.org/sections/thetwo-way/2015/11/05/454594559/researchers-reveal-how-climate-change-killed-mars,1,1,evo_9,11/5/2015 23:17 +11950556,"How we made $20,000 on Snapchat and got into Y Combinator",https://medium.com/@kmx411/how-to-make-20-000-on-snapchat-and-get-into-y-combinator-2513a7ee371d#.z3l2tu2dz,2,1,rmason,6/22/2016 0:10 +11582544,Radiant Zinc Fireworks Reveal Quality of Human Egg,http://www.northwestern.edu/newscenter/stories/2016/04/radiant-zinc-fireworks-reveal-quality-of-human-egg.html,9,3,henriquemaia,4/27/2016 17:32 +11432026,Show HN: In-Depth Guide to Choosing a Website Builder,http://www.sitebuilderreport.com/,2,5,steve-benjamins,4/5/2016 16:50 +10740588,Rumble: Twitter over sneakernet,http://www.disruptedsystems.org/,62,27,pranfaha,12/15/2015 21:23 +10375796,"Clojure: If Lisp is so great, why do we keep needing new variants?",https://blogs.law.harvard.edu/philg/2015/10/12/clojure-if-lisp-is-so-great-why-do-we-keep-needing-new-variants/,57,73,mhb,10/12/2015 17:09 +10444494,The Brutal Ageism of Tech (2014),http://www.newrepublic.com/article/117088/silicons-valleys-brutal-ageism,24,28,goodJobWalrus,10/24/2015 18:54 +10632462,Swatting Could Soon Be Illegal,http://mic.com/articles/128931/swatting-could-soon-be-illegal-in-all-50-states,20,18,ColinWright,11/26/2015 11:20 +12089687,How America Could Go Dark,http://www.wsj.com/articles/how-america-could-go-dark-1468423254,73,66,msisk6,7/13/2016 21:09 +11780453,Patent troll asks judge to turn off FaceTime and iMessages,http://arstechnica.com/tech-policy/2016/05/patent-troll-that-beat-apple-now-wants-judge-to-block-facetime-imessages/,157,107,doctorshady,5/26/2016 18:44 +12203469,Show HN: Webgl canvas toy with source,http://canvas.piarts.xyz,7,2,LELISOSKA,8/1/2016 16:03 +10296404,"Using Rust with Ruby, a Deep Dive with Yehuda Katz",https://www.youtube.com/watch?v=IqrwPVtSHZI,3,1,killercup,9/29/2015 14:13 +11412437,LAPD Warrant Lets Cops Open Apple iPhone with Owner's Fingerprints,http://www.forbes.com/sites/thomasbrewster/2016/03/31/warrant-apple-iphone-fingerprints-hack-los-angeles/,17,8,jackgavigan,4/2/2016 17:47 +11685602,Not a Hacker or a Hipster How I Got My First Startup Job,https://medium.com/tech-london/not-a-hacker-or-a-hipster-how-i-got-my-first-start-up-job-922399a7dfbb#.qaysnclo5,109,58,elemeno,5/12/2016 18:23 +11203183,Performance of ES6 features relative to ES5,https://kpdecker.github.io/six-speed/?utm_source=ESnextNews.com&utm_medium=Weekly%20Newsletter&utm_campaign=Week%2010,130,66,shawndumas,3/1/2016 15:29 +11353280,Ergonomics Podcast Every Developer Should Listen To,https://www.relay.fm/radar/3,4,1,lilbarbarian,3/24/2016 14:58 +10812803,Ask HN: Which books did you download from the Springer Bonanza?,,5,6,jacquesm,12/30/2015 16:38 +11352344,The Encryption Meltdown,http://on.wsj.com/1ZuzJHA,1,1,chmaynard,3/24/2016 12:54 +11133397,Recent Events and Future Changes,https://blog.freenode.net/2016/02/recent-events-and-future-changes,64,11,baldfat,2/19/2016 13:48 +11260141,How Airline Pilots Lost the Basic Skills,http://www.huffingtonpost.com/richie-davidson/how-airline-pilots-lost-the-basic-skills_b_9415270.html,65,66,lisper,3/10/2016 16:30 +10959929,Ask HN: Who are some of the most inspiring people/users you've come across on HN,,31,13,wilsonfiifi,1/23/2016 20:28 +10753012,Cox Loses in Willful Infringement Trial Owes BMG $25M for Users' Piracy,http://www.law360.com/telecom/articles/739353?nl_pk=ec36e714-14a3-4dbd-8fcd-4c613ee5505d&utm_source=newsletter&utm_medium=email&utm_campaign=telecom,2,2,pdabbadabba,12/17/2015 17:52 +12303498,"Show HN: Realtime, self-hosted monitoring for Node.js inspired by GitHub Status",https://github.com/RafalWilinski/express-status-monitor,75,19,rwilinski,8/17/2016 10:09 +12317217,Megaprocessor A micro-processor built large,http://www.megaprocessor.com,731,88,diymaker,8/19/2016 0:26 +11216661,Joe Cool Why isnt Trader Joes on social media?,http://thenewinquiry.com/essays/joe-cool/,113,95,chippy,3/3/2016 13:24 +10211900,Siri is always listening. Are you OK with that?,http://uk.businessinsider.com/siri-new-always-on-feature-has-privacy-implications-2015-9,11,14,1337biz,9/13/2015 16:35 +11540747,How I Hacked Facebook and Found Someone's Backdoor Script,http://devco.re/blog/2016/04/21/how-I-hacked-facebook-and-found-someones-backdoor-script-eng-ver/,865,124,phwd,4/21/2016 10:00 +10537750,Etchings by Rembrandt Now Free Online via the Morgan Library,http://www.openculture.com/2015/11/300-etchings-by-rembrandt-now-free-online-thanks-to-the-morgan-library-museum.html,7,1,pepys,11/10/2015 5:19 +12169908,What makes music sound good?,http://dmitri.mycpanel.princeton.edu/whatmakesmusicsoundgood.html,186,71,grimgrin,7/27/2016 1:21 +11404153,MCCYWG: US Marine Corps Expands with New Hacking Unit,http://news.softpedia.com/news/us-marine-corps-expands-with-new-hacking-unit-502466.shtml,1,1,bootload,4/1/2016 11:48 +10636868,Merge branch 'tcp-lockless-listener',http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=c3fc7ac9a0b978ee8538058743d21feef25f7b33,40,6,signa11,11/27/2015 11:43 +12192518,Ask HN: What newspapers / magazines do you pay for?,,3,4,shubhamjain,7/30/2016 11:18 +10507902,How Googles AMP project speeds up the Web,http://arstechnica.com/information-technology/2015/11/googles-amp-an-internet-giant-tackles-the-old-myth-of-the-web-is-too-slow/,26,10,asymmetric,11/4/2015 17:01 +12469261,Air pollution a risk factor for diabetes,http://healthsciencemag.org/2016/09/10/air-pollution-a-risk-factor-for-diabetes-say-researchers/,41,16,upen,9/10/2016 14:06 +12004562,Peter Norvig and Paul Graham Reviews of the SICP Book,https://www.amazon.com/Structure-Interpretation-Computer-Programs-Engineering/dp/0262510871?ie=UTF8&qid=1187323029&ref_=pd_bbs_sr_1&s=books&sr=8-1,2,1,znpy,6/29/2016 20:27 +12365469,?onquer the law of inertia and discover your personal productivity method,http://www.kanbanchi.com/productivity-methods-e-book,1,3,Kanbanchi,8/26/2016 11:25 +10734555,Why Zuckerbergs Critics Are Wrong,http://www.newyorker.com/magazine/2015/12/21/in-defense-of-philanthrocapitalism,43,63,donohoe,12/14/2015 22:39 +11548508,When Wifi goes down: Transfer files from Air gapped machines using QR codes,https://github.com/leonjza/qrxfer,5,4,vinnyglennon,4/22/2016 12:10 +11500049,How I Recovered a Dead Twitter Handle for $69,http://impossiblehq.com/recovered-dead-twitter-handle/,5,1,joelrunyon,4/14/2016 20:23 +10777638,BetterExplained: Math Lessons That Explain Concepts,http://betterexplained.com/,666,126,rfreytag,12/22/2015 13:35 +11354546,The mobile games industry is kept afloat by less than 1% of users,http://thenextweb.com/insider/2016/03/23/free-to-play-games-are-not-the-way-forward-for-mobile-gaming/,136,195,cpeterso,3/24/2016 17:12 +10598195,Deep inside the Linux kernel: a network latency spike,https://http2.cloudflare.com/the-story-of-one-latency-spike/,220,28,jgrahamc,11/19/2015 22:35 +12365004,Flexible Paxos: Quorum intersection revisited,https://arxiv.org/abs/1608.06696,89,13,mgrosvenor,8/26/2016 8:41 +11883732,A Post-Human World Is Coming. Design Has Never Mattered More,https://www.fastcodesign.com/3060742/a-post-human-world-is-coming-design-has-never-mattered-more,1,1,tdaltonc,6/11/2016 15:21 +12361344,How I discovered my unfair advantage. Hint: it's not tech nor money,https://medium.com/@julienbrault/from-zero-to-a-million-the-day-i-discovered-my-unfair-advantage-1b0c637c91e6#.c3em2kzhb,1,2,brault,8/25/2016 18:40 +10929223,Alexander Litvinenko: the man who solved his own murder,http://www.theguardian.com/world/2016/jan/19/alexander-litvinenko-the-man-who-solved-his-own-murder,38,4,gedrap,1/19/2016 7:04 +11443829,Google Saves,https://www.google.com/save/me,58,79,fouadmatin,4/7/2016 1:06 +10360686,AI that can solve geometry questions from the SAT,http://www.geekwire.com/2015/paul-allens-team-of-ai-experts-just-aced-the-sats-with-a-robot/,38,2,bra-ket,10/9/2015 15:31 +11513457,This Device Could Provide a Third of America's Power,http://www.bloomberg.com/news/articles/2016-04-12/this-device-could-provide-a-third-of-america-s-power,56,44,electic,4/17/2016 4:08 +12517920,Faster parallel computing MIT News,http://news.mit.edu/2016/faster-parallel-computing-big-data-0913,41,20,tambourine_man,9/16/2016 22:45 +10487678,The world's best office,http://blog.footballaddicts.com/the-worlds-best-office/,8,1,patrikarnesson,11/1/2015 19:13 +11415452,Coding on tape computer science A-level 1970s style,http://www.bbc.co.uk/news/education-35890450,33,15,iamphilrae,4/3/2016 8:57 +11682672,Pentagon Turns to Silicon Valley for Edge in Artificial Intelligence,http://www.nytimes.com/2016/05/12/technology/artificial-intelligence-as-the-pentagons-latest-weapon.html,1,1,jonbaer,5/12/2016 11:37 +10551525,Help Us Create vets.gov,https://www.vets.gov/2015/11/11/why-we-are-designing-in-beta.html,72,21,brandonb,11/12/2015 5:51 +12236283,Ask HN: How does Passionatepolka work?,,2,1,simbalion,8/5/2016 23:08 +12434215,How do I give our security auditor the information he wants? (2011),https://serverfault.com/questions/293217/our-security-auditor-is-an-idiot-how-do-i-give-him-the-information-he-wants,204,83,jewbacca,9/6/2016 7:32 +10695808,Roll your own toy Unix clone OS (2008),http://www.jamesmolloy.co.uk/tutorial_html/,62,4,jdmoreira,12/8/2015 11:34 +10585890,Feynman: I am burned out and I'll never accomplish anything,http://www.physics.ohio-state.edu/~kilcup/262/feynman.html,107,22,raphar,11/18/2015 4:18 +10914455,Leave an anonymous voice/video message,http://www.nask.co,2,2,jgome,1/16/2016 6:04 +12001077,Is it time to eliminate tenure for professors?,https://theconversation.com/is-it-time-to-eliminate-tenure-for-professors-59959,2,2,teaman2000,6/29/2016 12:07 +10946654,Snoop to visitor statistics of any site. Data for 7 years,http://www.rank2traffic.com/,2,2,Crocode,1/21/2016 17:17 +10248449,Artificial Leaf Harnesses Sunlight for Efficient Fuel Production,http://www.caltech.edu/news/artificial-leaf-harnesses-sunlight-efficient-fuel-production-47635?utm_source=Elektor+United+States+%28English%29&utm_campaign=79c067ec54-140EN9_17_2015&utm_medium=email&utm_term=0_8b7374950c-79c067ec54-234904333&mc_cid=79c067ec54&mc_eid=7fba0d115c,24,7,zw123456,9/20/2015 18:22 +11608605,The Battle Over U.S. Military History,https://warisboring.com/the-battle-over-u-s-military-history-94dc2c82c3d6#.w6aa6lv3j,48,22,samclemens,5/2/2016 0:56 +10551312,In-N-Out Files Lawsuit Against Food Delivery Startup DoorDash,http://techcrunch.com/2015/11/11/in-n-out-files-lawsuit-against-food-delivery-startup-doordash/,56,73,7Figures2Commas,11/12/2015 4:29 +11024656,Heisenberg Developers (2014),http://mikehadlow.blogspot.cl/2014/06/heisenberg-developers.html,315,187,Sidnicious,2/3/2016 3:59 +10615273,Ask HN: Sharing a shared hosting account with non-technical clients,,3,3,pjungwir,11/23/2015 15:58 +11896953,Ask HN: Is the new iMessage app a threat to whatsapp?,,1,3,priteshjain,6/13/2016 19:55 +10482701,How many people are in jail based on faked data?,http://www.slate.com/articles/news_and_politics/crime/2015/10/massachusetts_crime_lab_scandal_worsens_dookhan_and_farak.single.html,132,33,Amorymeltzer,10/31/2015 14:22 +10946826,Drone sets world record for lifting 134 pounds over 37 seconds,http://www.engadget.com/2016/01/20/drone-sets-a-record-for-carrying-the-heaviest-cargo-ever/,2,1,ck2,1/21/2016 17:40 +12121147,HTML Form to File.txt,http://simongriffee.com/notebook/form-to-txt/,3,2,hypertexthero,7/19/2016 11:46 +12484847,Slack Webhooks with the Serverless Framework,https://serverless.zone/slack-webhooks-with-the-serverless-framework-4c01bb3c1411,6,1,johncmckim,9/13/2016 0:28 +12003870,Palantir Buyback Plan Shows Need for New Silicon Valley Pay System,http://www.nytimes.com/2016/06/29/business/dealbook/palantir-buyback-plan-shows-need-for-new-silicon-valley-pay-system.html,131,107,mathattack,6/29/2016 19:04 +12490911,Ask HN: Does your company find value in exit interviews?,,6,7,probinso,9/13/2016 18:21 +10650269,Ask HN: What do you use for story tracking?,,1,9,scottndecker,11/30/2015 16:45 +12219043,Ask HN: Do you still play with VR actively?,,105,108,billconan,8/3/2016 16:14 +11990451,Airbnb Is Suing San Francisco to Block Rental Rules,http://www.bloomberg.com/news/articles/2016-06-27/airbnb-is-suing-hometeown-san-francisco-to-block-rental-rules,113,164,tomsaffell,6/27/2016 23:49 +10513094,Exposing the Hidden Web: Analysis of Third-Party HTTP Requests on 1M Websites [pdf],https://timlibert.me/pdf/Libert-2015-Exposing_Hidden_Web_on__Million_Sites.pdf,1,1,cmsefton,11/5/2015 13:17 +10963404,Self-Driving Cars Will Be Ready Before Our Laws Are,http://spectrum.ieee.org/transportation/advanced-cars/selfdriving-cars-will-be-ready-before-our-laws-are,5,1,tokenadult,1/24/2016 18:29 +12360053,Deep Learning with Keras: EuroScipy 2016 Tutorial,https://github.com/leriomaggio/deep-learning-keras-euroscipy2016,61,1,fchollet,8/25/2016 15:56 +12127218,Pooper get paid to pick up dog's poop,http://pooperapp.com,18,4,antoineaugusti,7/20/2016 6:20 +10791611,"Show HN: Curated News from Hacker News, Designer News, Product Hunt and 9 More",http://jakemor.com/technews/,2,3,jakemor,12/25/2015 16:49 +11208952,London tops list of most expensive cities in which to live and work,http://www.independent.co.uk/news/business/news/london-rio-hong-kong-sydney-new-york-expensive-cities-live-work-rent-a6905136.html,2,1,neverminder,3/2/2016 9:33 +11233333,Show HN: A site I made that lets you browse shoes Tinder-style,http://shoezilla.co/,3,1,borge,3/6/2016 11:22 +11923072,Millenials' Most Desired City Features,https://www.abodo.com/blog/living-millennial-dream/,3,2,nradov,6/17/2016 15:10 +10644633,"Show HN: Tasktopus lightweight, offline task manager for Mac OS X and Windows",https://gumroad.com/l/ADWm/tasktopus,2,1,kidproquo,11/29/2015 14:26 +11232237,Meet the Lab Girl,http://nautil.us/issue/34/adaptation/ingenious-hope-jahren,34,21,dnetesn,3/6/2016 2:42 +10537661,GLAZ 3D printing platform with some cool 3D visualization tech in place,http://glaz.co,1,1,miraxxx,11/10/2015 4:45 +10853163,Cryptol a statically typed functional language for cryptography,http://www.cryptol.net/,3,1,lisper,1/6/2016 19:48 +11877335,"Period. Full Stop. Point. Whatever Its Called, Its Going Out of Style",http://www.nytimes.com/2016/06/10/world/europe/period-full-stop-point-whatever-its-called-millennials-arent-using-it.html?ref=technology&_r=0,3,4,hvo,6/10/2016 16:01 +11374448,Google Search Technique Aided N.Y. Dam Hacker in Iran,http://www.wsj.com/articles/google-search-technique-aided-n-y-dam-hacker-in-iran-1459122543,2,1,ikeboy,3/28/2016 14:33 +11832349,NTP Patches Flaws That Enable DDoS,https://threatpost.com/ntp-patches-flaws-that-enable-ddos/118470/,55,24,okket,6/3/2016 18:46 +10266036,Automatically Create a Bit.ly URL for WordPress Posts,http://www.phpcmsframework.com/2015/09/automatically-create-bitly-url-for.html,1,1,phpcmsframework,9/23/2015 16:28 +10279704,Advice on a Startup Idea,,2,2,inside__world,9/25/2015 18:12 +12493868,Show HN: Mercury Retrograde API,https://mercuryretrogradeapi.com/about.html,1,1,leesalminen,9/14/2016 2:30 +11501823,Apply HN: The ParaWing Parasailing Meets Hang Gliding and Jetpacks,,3,5,6stringmerc,4/15/2016 3:07 +12069162,Introduction to greedy algorithms,https://rebelliard.com/blog/introduction-greedy-algorithms,1,1,rebelliard,7/11/2016 6:01 +11705918,A site that generates regexs based off examples given,http://regex.inginf.units.it/index.html,11,7,maraschino,5/16/2016 12:48 +10255235,Smart and Gets Things Done Are Not Enough,https://medium.com/@michaelnatkin/smart-and-gets-things-done-is-not-enough-3c6cf8f4a40e,1,2,michaelnatkin,9/21/2015 21:24 +11835015,Ask HN: Is anyone interested in a sports data api?,,1,2,romellogoodman,6/4/2016 5:10 +10959062,An Overview of Quantum Computing,http://blog.caffeinatedanalytics.com/an-overview-of-quantum-computing,5,1,ukd1,1/23/2016 17:24 +10668666,Ask HN: Can anyone suggest great examples of continuation passing in JavaScript?,,3,1,hoodoof,12/3/2015 9:22 +10963974,Ask HN: Should I associate session data with an access token?,,1,1,dustinfarris,1/24/2016 20:54 +12533154,I Used to Be a Human Being,http://nymag.com/selectall/2016/09/andrew-sullivan-technology-almost-killed-me.html,21,2,spking,9/19/2016 17:38 +10726247,China Is Making Domain Name History,http://techcrunch.com/2015/12/12/china-making-domain-name-history/,58,37,Perados,12/13/2015 13:12 +11074488,Composers Sketchpad Rethinking Musical Notation,http://beta-blog.archagon.net/2016/02/05/composers-sketchpad/,50,7,archagon,2/10/2016 17:52 +10435887,Video: Whats Wrong with Deep Learning by Yann LeCunn?,http://techtalks.tv/talks/whats-wrong-with-deep-learning/61639/,1,1,zitterbewegung,10/22/2015 23:30 +10259214,Multilingual presidents of United States,https://my.infocaptor.com/dash/i.php?viz=mtqzywqz,3,3,njx,9/22/2015 15:29 +11405539,How a Small Tech Site Found a New Way for Publishers to Get Paid,http://www.bloomberg.com/news/articles/2016-04-01/how-a-small-tech-site-found-a-new-way-for-publishers-to-get-paid?curator=MediaREDEF,10,2,coloneltcb,4/1/2016 15:32 +10616403,"The Simple, Sleek and Smart electric standing desk",https://www.kickstarter.com/projects/182384199/the-simple-sleek-and-smart-electric-standing-desk,3,1,daleco,11/23/2015 18:52 +10878957,"In 2016, let's hope for better trade agreements and the death of TPP",http://www.theguardian.com/business/2016/jan/10/in-2016-better-trade-agreements-trans-pacific-partnership,9,2,walterbell,1/11/2016 5:14 +11242453,Hiawatha A secure webserver for Unix,https://www.hiawatha-webserver.org/,2,1,arm,3/7/2016 23:06 +11085642,Anti-Adblock Killer helps you keep your ad blocker active,https://github.com/reek/anti-adblock-killer,7,1,cujanovic,2/12/2016 6:30 +11153187,Show HN: Bonsai (YC W16) bulletproof contracts and payments for freelancers,https://www.hellobonsai.com/,102,40,mthomasb,2/22/2016 18:42 +11901259,A Sticky String Quandary,http://www.stephendiehl.com/posts/strings.html,62,20,hyperpape,6/14/2016 11:32 +11442150,"Ask HN: What was the last 'easy' thing you did, and why was it hard?",,3,4,Azkar,4/6/2016 21:13 +10717379,Twitter Aims to Show Advertising to Much Wider Audience,http://bits.blogs.nytimes.com/2015/12/10/twitter-aims-to-show-advertising-to-much-wider-audience/?ref=technology&_r=0,8,2,pavornyoh,12/11/2015 14:54 +12142721,How to get your app noticed on Google Play,http://blog.onyxbits.de/how-to-get-your-app-noticed-308/,117,25,blackpidgeon,7/22/2016 10:24 +11334500,The profound planetary consequences of eating less meat,https://www.washingtonpost.com/news/energy-environment/wp/2016/03/21/the-incredible-planetary-consequences-of-a-vegetarian-diet,7,3,jdnier,3/22/2016 4:57 +11831967,Borders on Google and Bing Maps change depending on location of your IP address,http://jebruner.com/2016/06/geopolitical-hedging-as-a-service/,9,1,jonbruner,6/3/2016 17:57 +11453801,A Weapon for Readers (2014),http://www.nybooks.com/daily/2014/12/03/weapon-for-readers/,4,1,Tomte,4/8/2016 10:57 +11758366,Wireless Subscribers Used 10 Trillion Megabytes of Data Last Year,http://www.msn.com/en-us/news/technology/wireless-subscribers-used-10-trillion-megabytes-of-data-last-year/ar-BBtnAId?ocid=ansmsnnews11,1,1,ourmandave,5/24/2016 1:32 +11495184,Former Reuters Journalist Matthew Keys Sentenced to Two Years for Hacking,https://motherboard.vice.com/read/former-reuters-journalist-matthew-keys-sentenced-to-two-years-for-hacking,66,64,citizensixteen,4/14/2016 9:03 +10740871,UK Affirms That Photographs of Public Domain Art Are Fair Use,http://hyperallergic.com/261496/uk-affirms-that-photographs-of-public-domain-art-are-fair-use/,3,1,denzil_correa,12/15/2015 22:15 +10964847,"Tesla, iPad Socialism and the Return of the Future",http://wire.novaramedia.com/2016/01/tesla-ipad-socialism-and-the-return-of-the-future/,25,10,ddouglascarr,1/25/2016 0:37 +11547090,Neue Haas Grotesk,http://www.fontbureau.com/nhg/,2,1,rangibaby,4/22/2016 4:39 +12165130,"Code club Senegal, where women are leading the way",https://www.theguardian.com/world/2016/jul/26/code-club-senegal-where-women-lead-the-way,37,24,benologist,7/26/2016 12:33 +12363912,Ask HN: What are your startup ideas that you aren't pursuing?,,6,6,marginalcodex,8/26/2016 2:19 +12134128,Windows File System Proxy FUSE-Like Capability for Windows,https://github.com/billziss-gh/winfsp,89,46,voltagex_,7/21/2016 2:14 +10788198,ClojureScript Year in Review,http://swannodette.github.io/2015/12/23/year-in-review/,288,58,pella,12/24/2015 14:16 +10921706,"The Surreal, Cyborg Future of Telemarketing (2013)",http://www.theatlantic.com/technology/archive/2013/12/almost-human-the-surreal-cyborg-future-of-telemarketing/282537/?single_page=true,7,3,tshtf,1/17/2016 23:57 +11253449,Data Structures in JavaScript,http://blog.benoitvallon.com/category/data-structures-in-javascript/,147,24,shawndumas,3/9/2016 15:22 +12156858,"Ask HN: Blockbain-based, global distribution system for space (big) data",,4,2,kartikkumar,7/25/2016 6:33 +10994649,ENCOM Boardroom,http://www.robscanlon.com/encom-boardroom/,2,1,privong,1/29/2016 11:35 +10374376,Diverging Diamond Interchange,https://en.wikipedia.org/wiki/Diverging_diamond_interchange,10,8,mojoe,10/12/2015 13:40 +10226835,FocusBitch Chrome Extension,http://focusbitch.com/,2,2,proiter,9/16/2015 14:28 +10508979,Ask HN: List of Past and Future Black Swans,,3,1,cloudout,11/4/2015 19:31 +11470176,The Facebook before it was famous,https://www.youtube.com/watch?v=N1MWFzf4i3o,19,1,joshuaxls,4/11/2016 7:49 +11772753,The Bizarre Story of the Girl with No Vagina Who Was Stabbed and Had a Baby-2013,http://www.todayifoundout.com/index.php/2013/08/the-bizarre-story-of-the-girl-with-no-vagina-who-was-stabbed-and-had-a-baby/,2,1,Tomte,5/25/2016 20:22 +10223470,Wine Staging,https://wine-staging.com/,78,47,ivank,9/15/2015 22:07 +12093155,Personal finance made simple,https://www.cashbasehq.com/,4,1,mcacina,7/14/2016 12:29 +12358357,What to use instead of std::set [pdf],http://lafstern.org/matt/col1.pdf,43,28,ingve,8/25/2016 12:04 +11659012,UK government pulls back from rule gagging researchers,http://www.nature.com/news/uk-government-pulls-back-from-rule-gagging-researchers-1.19775,2,1,yunque,5/9/2016 11:43 +10898797,Ask HN: How can a technical person trade work for money without a full-time job?,,6,9,inefficientm,1/14/2016 0:31 +11454661,"Dear Prime Minister Trudeau, a Modest Proposal from a Canadian-American",http://qz.com/656320/dear-prime-minister-trudeau-a-modest-proposal-from-a-canadian-american/,5,3,miraj,4/8/2016 13:57 +12203261,"Bitcoin Browser Brave Raises $4.5M, Readies for 1.0 Launch",https://news.bitcoin.com/bitcoin-browser-brave-raises-4-5m/,158,123,3eto,8/1/2016 15:42 +10251579,Memory Compression in Windows 10 RTM [video],https://channel9.msdn.com/Blogs/Seth-Juarez/Memory-Compression-in-Windows-10-RTM?WT.mc_id=dx_MVP5000587,28,21,khellang,9/21/2015 11:44 +11530218,PageSpeed Insights for Google.com,https://developers.google.com/speed/pagespeed/insights/?url=google.com,2,2,hunvreus,4/19/2016 20:42 +10674636,Nextdoor Is the Lastest Company to Enter On-Demand Services,http://www.buzzfeed.com/carolineodonovan/nextdoor-is-the-lastest-company-to-enter-on-demand-services,11,17,prostoalex,12/4/2015 4:33 +11506730,Ask HN: Is any of Dave Cutler's code open source?,,59,22,wkoszek,4/15/2016 18:55 +12488345,Brain-sensing technology allows typing at 12 words per minute,http://sciencebulletin.org/archives/5149.html,174,66,upen,9/13/2016 14:08 +11446818,Apply HN: Browsed Make Sharing Obsolete,,2,5,SITZ,4/7/2016 12:56 +10736983,"Show HN: Morning Short One Amazing Short Story, Every Morning, in Your Inbox",http://morningshort.com/#HN,4,3,brilliantsob,12/15/2015 10:34 +12414389,Dark Side of Bill Gates Philanthropy in India,http://thevoiceofnation.com/politics/dark-side-of-bill-gates-philanthropy-30000-indian-girls-were-used-as-guinea-pigs/,2,2,known,9/2/2016 16:51 +12115186,Swagger-codegen 2.2.0 Released,https://github.com/swagger-api/swagger-codegen/releases/tag/v2.2.0,13,4,wing328hk,7/18/2016 14:24 +10379287,Ask HN: Good documentaries for children,,1,2,Smrchy,10/13/2015 9:17 +11692184,An A-Z Index of the Bash command line for Linux,http://ss64.com/bash/,2,1,jinpan,5/13/2016 18:19 +11654864,GPU-buying gamers are subsidizing the future of analytics,http://www.businessinsider.com/video-games-are-paying-for-artificial-intelligence-2016-5,39,9,tmostak,5/8/2016 17:37 +12554439,Pepper a friendly contact widget for your website,https://pepper.swat.io/,2,1,posixpwn,9/22/2016 4:47 +12152873,Ask HN: Access AWS from Heroku?,,3,2,fratlas,7/24/2016 10:00 +11671269,"School Districts, Test Scores, and Income",https://randomcriticalanalysis.wordpress.com/2016/05/09/my-response-to-the-nytimes-article-on-school-districts-test-scores-and-income/,19,10,oli5679,5/10/2016 22:41 +11900714,Google Announces Springboard for Apps and Refreshed Sites,https://googleappsupdates.blogspot.com/2016/06/powering-more-connected-and.html,2,1,blfr,6/14/2016 9:04 +11125182,ReactOS 0.4.0 released,http://www.reactos.org/project-news/reactos-040-released,47,5,Enindu,2/18/2016 12:10 +11218107,GitHub reverses DMCA against oh-my-fish,https://github.com/github/dmca/pull/611/files,6,1,nwykes,3/3/2016 16:55 +10583085,"HacKeyboard, a mechanical keyboard built from scratch",http://www.instructables.com/id/HacKeyboard-a-mechanical-keyboard-built-from-scrat/,39,14,lelf,11/17/2015 18:41 +10238132,Our Team Won Startup Weekend and All We Got Was a Shitty New Boss,https://medium.com/@rboyd/35f1d1f1f267,561,413,orf,9/18/2015 8:46 +11374839,"Mass surveillance silences minority opinions, according to study",https://www.washingtonpost.com/news/the-switch/wp/2016/03/28/mass-surveillance-silences-minority-opinions-according-to-study/,486,189,Libertatea,3/28/2016 15:32 +11909543,My First 10 Minutes on a Server,http://www.codelitt.com/blog/my-first-10-minutes-on-a-server-primer-for-securing-ubuntu/,1282,290,codelitt,6/15/2016 14:29 +12491698,Google Have Had at Least 427 Meetings at the White House Over Obama Years,http://www.dailymail.co.uk/news/article-3554953/Google-staffers-meetings-White-House-staggering-427-times-course-Obama-presidency-averaging-week.html,2,1,kushti,9/13/2016 20:00 +11064781,Ask HN: How many of your clients still use MS Office Access?,,7,15,tuyguntn,2/9/2016 12:22 +11304443,[2015] How one man earns $1M a year teaching web programming on Udemy,http://www.businessinsider.com/rob-percival-online-coding-courses-2015-2,3,1,Osiris30,3/17/2016 14:15 +11560111,"First Look at RockMelt, a Browser Built for Facebook Freaks (2010)",http://www.webmonkey.com/2010/11/first-look-at-rockmelt-a-browser-built-for-facebook-freaks/,2,1,Arkdi,4/24/2016 16:03 +11522499,Llvm-Dev RFC: Efficiency Sanitizer,http://lists.llvm.org/pipermail/llvm-dev/2016-April/098355.html,61,7,ingve,4/18/2016 19:30 +10557879,Polybolos,https://en.wikipedia.org/wiki/Polybolos,30,7,bane,11/13/2015 3:39 +12267652,Awesome online whiteboard collaboration tool,https://beecanvas.com/s/c2d89b,1,3,dobermanok,8/11/2016 12:30 +10965696,Ask HN: How to measure QA in a startup?,,4,2,muratk,1/25/2016 5:10 +12367332,Have we reached Peak Dog in our cities?,http://www.treehugger.com/pets/have-we-reached-peak-dog.html,1,2,endswapper,8/26/2016 16:28 +11356442,"Tech could help secure public spaces, if Europe wants more surveillance",http://uk.reuters.com/article/us-belgium-blast-security-technology-idUKKCN0WQ1YK,3,1,pavornyoh,3/24/2016 21:06 +10926105,BASIC in Minecraft,https://www.youtube.com/watch?v=t4e7PjRygt0,4,1,davidhariri,1/18/2016 18:56 +11790365,Show HN: Gitignore.xyz Get .gitignore files on the fly,,6,2,snehesht,5/28/2016 2:35 +10390700,GoDaddy Reveals Salary Gender Gap in New Twist on Diversity Reports,http://techcrunch.com/2015/10/14/godaddy-reveals-salary-gender-gap-in-new-twist-on-diversity-reports/,6,3,doppp,10/15/2015 1:10 +10493891,Show HN: WOPR A markup for rich terminal reports,https://github.com/yaronn/wopr,125,38,yaronn01,11/2/2015 18:29 +10347925,Chinas Nightmarish Citizen Scores Are a Warning for Americans,https://www.aclu.org/blog/free-future/chinas-nightmarish-citizen-scores-are-warning-americans,14,1,finnn,10/7/2015 18:29 +10716539,Reality Editor MIT Media Lab,http://www.realityeditor.org/,201,97,piyushmakhija,12/11/2015 11:42 +10519523,"Ask HN: What intranet to keep a directory, wiki & files for a growing startup?",,4,3,pouzy,11/6/2015 14:14 +11789403,Apple's VocalIQ AI,http://www.techinsider.io/how-apples-vocaliq-ai-works-2016-5,52,19,walterbell,5/27/2016 22:10 +11017538,Searching Hacker News for a Slideshow Tool,,1,2,AngeloAnolin,2/2/2016 3:47 +11062980,Centriphone an iPhone video experiment [video],https://www.youtube.com/watch?v=aqncOP7OzMg,52,8,prawn,2/9/2016 4:00 +11851293,Drug firms fueled pill mills in rural WV,http://www.wvgazettemail.com/news-health/20160523/drug-firms-fueled-pill-mills-in-rural-wv,29,3,joe5150,6/6/2016 23:21 +11060053,Phoenix is Rails 5,https://medium.com/infinite-red/phoenix-is-rails-5-f6d28e57395#.m5nw8i14k,34,5,kemiller,2/8/2016 18:49 +11651303,Your Brain Limits You to Just Five BFFs,https://www.technologyreview.com/s/601369/your-brain-limits-you-to-just-five-bffs/,54,14,thevibesman,5/7/2016 20:54 +11605167,Prometheus: Monitoring for the next generation of cluster infrastructure,https://coreos.com/blog/coreos-and-prometheus-improve-cluster-monitoring.html,91,23,Artemis2,5/1/2016 6:40 +12066079,Solving All the Wrong Problems,http://www.nytimes.com/2016/07/10/opinion/sunday/solving-all-the-wrong-problems.html?_r=0,2,1,terryauerbach,7/10/2016 16:19 +11754146,Brexit: The Vote That Could Sink Britain's Economy,http://www.nytimes.com/2016/05/22/business/international/brexit-referendum-eu-economy.html,34,129,applecore,5/23/2016 14:44 +12043554,Ganeti: An alternative Hypervisor Manager,http://www.ganeti.org/,1,2,616c,7/6/2016 15:08 +10625559,Physicists use photons to carry messages from electrons 1.2 miles apart,http://news.stanford.edu/news/2015/november/cryptography-quantum-tangle-112415.html,48,16,jonbaer,11/25/2015 5:49 +12572698,Ask HN: Recommended platform for small discussion lists?,,5,2,Mz,9/24/2016 21:18 +12181753,"Ask HN: re. the darkpatterns article, what should ethical software look like?",,5,4,benologist,7/28/2016 17:38 +10721462,Andrew Ng on What's Next in Deep Learning [video],https://www.youtube.com/watch?v=qP9TOX8T-kI,76,11,sherjilozair,12/12/2015 2:07 +11907887,Four common mistakes in audio development,http://atastypixel.com/blog/four-common-mistakes-in-audio-development/,404,206,bpierre,6/15/2016 8:27 +12098034,Pre-render d3 visualizations,https://github.com/fivethirtyeight/d3-pre,5,1,Amorymeltzer,7/14/2016 23:39 +12238169,A universal PHP script to generate JSON from any MySQL database,https://github.com/gautamkrishnar/unijson.php,2,1,gautamkrishnar,8/6/2016 14:13 +11413045,This just isn't functional,https://codewords.recurse.com/issues/six/this-just-isnt-functional,43,9,nicholasjbs,4/2/2016 19:48 +12337107,Banks Sprint to Meet $493 Trillion Swaps Market Margin Rules,http://www.bloomberg.com/news/articles/2016-08-22/banks-sprint-to-meet-margin-rules-for-493-trillion-swaps-market,50,20,6stringmerc,8/22/2016 15:42 +11918196,Show HN: Launch of a minimalistic VPS provider with CoreOS and Atomic images,https://datamantle.com/,11,1,datamantle,6/16/2016 19:12 +12479644,"Turn markdowns into website with GitHub, Docker, Medium and more",https://github.com/longkai/xiaolongtongxue.com,6,2,longkai,9/12/2016 13:51 +10612045,How Words Affect Our Thoughts on Race and Gender,http://nautil.us/blog/how-our-words-affect-our-thoughts-on-race-and-gender,15,4,dnetesn,11/22/2015 23:49 +11158019,Practical Attacks against Deep Learning Systems using Adversarial Examples,http://arxiv.org/abs/1602.02697,98,32,Houshalter,2/23/2016 11:04 +11886662,Building React Applications with Idiomatic Redux,https://egghead.io/courses/building-react-applications-with-idiomatic-redux,58,6,aleem,6/12/2016 4:32 +10774188,451unavailable.org is trying to make legal blocking of websites more transparent,http://www.451unavailable.org/,5,1,finnn,12/21/2015 22:58 +12407599,Toward Automated Discovery of Artistic Influence (2014),http://arxiv.org/abs/1408.3218,8,1,lukeplato,9/1/2016 18:14 +12146920,Google tags Wikileaks as a dangerous site,https://www.google.com/transparencyreport/safebrowsing/diagnostic/?hl=en#url=wikileaks.org,357,153,xname2,7/22/2016 21:31 +12286500,Python is Better than Ruby,http://en.arguman.org/python-is-better-than-ruby,4,1,triplesec,8/14/2016 17:39 +10822518,"Young, beautiful and broke",https://ind.ie/blog/happy-indie-new-year/,1,1,eljayuu,1/1/2016 17:45 +12433640,The critical role of systems thinking in software development,https://www.oreilly.com/ideas/the-critical-role-of-systems-thinking-in-software-development,8,6,signa11,9/6/2016 4:18 +12480941,BLOCKS: Serverless compute in the network,https://www.pubnub.com/products/blocks/,36,1,derek_frome,9/12/2016 16:14 +10970807,Uber is facing a staggering number of lawsuits,http://fusion.net/story/257423/everyone-is-suing-uber/,21,9,prostoalex,1/25/2016 23:26 +10817800,Ask HN: What is your New Year Resolution for 2016?,,1,2,christopherDam,12/31/2015 15:04 +11580323,Show HN: Passbolt open-source password manager for teams,https://www.passbolt.com/,62,38,remy_,4/27/2016 13:42 +10755557,Is Sails.js dying?,https://github.com/balderdashy/sails/issues/3429#issuecomment-165004024,19,12,nbrempel,12/17/2015 23:43 +10730138,Verk Sidekiq/Resque type of job processing in Elixir,https://github.com/edgurgel/verk,8,1,szines,12/14/2015 9:40 +11028568,Show HN: Lightweight Microservices Architecture for the Internet of Things,https://github.com/lelylan/lelylan,94,40,andreareginato,2/3/2016 18:42 +11662536,PostgreSQL Scalability: Towards Millions TPS,http://akorotkov.github.io/blog/2016/05/09/scalability-towards-millions-tps/,521,210,lneves,5/9/2016 19:41 +12032485,Writing an LLVM-IR Compiler in Rust: Getting Started,http://blog.ulysse.io/2016/07/03/llvm-getting-started.html,3,1,yberreby,7/4/2016 19:18 +12399759,Network programming with Go (2012),https://jan.newmarch.name/go/,51,11,neiesc,8/31/2016 17:00 +11464469,Baseline Acceptance Driven Development,https://medium.com/@tinganho/baseline-acceptance-driven-development-f39f7010a04#.e4z6cpg7c,3,1,cpt1138,4/10/2016 1:55 +12419137,Earthquake Shakes Swath of Midwest from Nebraska to Texas,http://www.wsj.com/articles/earthquake-shakes-swath-of-midwest-from-missouri-to-oklahoma-1472906357,22,11,adamqureshi,9/3/2016 13:36 +10791282,Ask HN: Best Book you read in 2015,,3,2,dudurocha,12/25/2015 14:17 +12522891,Ash Trees Could Disappear,http://news.nationalgeographic.com/2016/09/man-who-made-things-out-of-trees-ash-rob-penn/,62,15,Red_Tarsius,9/17/2016 22:39 +11403988,Ask HN: How did you learn at your fastest?,,2,1,danfrost,4/1/2016 11:06 +10553773,Graphite Software Releases a New Android ROM for Nexus 5,http://www.securespaces.com/WP2015/,5,5,JeffRt,11/12/2015 15:41 +12359552,Vulcan: An API-compatible alternative to Prometheus,https://github.com/digitalocean/vulcan,57,14,pandemicsyn,8/25/2016 15:06 +10910455,An open letter of gratitude to GitHub,https://github.com/thank-you-github/thank-you-github,248,105,arthurnn,1/15/2016 16:54 +10177201,"PowerLine: Status Line for Vim, Zsh, Bash, Tmux",https://github.com/powerline/powerline,12,2,singold,9/6/2015 9:37 +11425990,Views of the Sea Floor Near the Entrance to San Francisco Bay,http://pubs.usgs.gov/sim/2006/2917/,120,24,mtviewdave,4/4/2016 21:48 +12468496,The Physics Photographer,http://www.symmetrymagazine.org/article/the-physics-photographer,3,1,okket,9/10/2016 9:48 +10417807,"NetSurf: Small, fast, free web browser",http://www.netsurf-browser.org/,156,70,zurn,10/20/2015 6:56 +10658945,Abandoned South Dakota Town on Sale for $250k,http://fortune.com/2015/12/01/abandoned-south-dakota-town/,45,89,prostoalex,12/1/2015 21:31 +10900233,Yahoo BOSS service to be shut down,,4,2,iqonik,1/14/2016 8:44 +11047653,Show HN: Bubblehunt curated web search,http://bubblehunt.com,20,25,vkorsunov,2/6/2016 13:18 +10564895,Einstellung Effect,https://en.wikipedia.org/wiki/Einstellung_effect,9,2,dedalus,11/14/2015 7:52 +12406589,India's richest man launches 4G network with unlimited free voice calls,http://mashable.com/2016/09/01/reliance-jio-launch-tariff-plans-india/#8ZXdwar54Pqf,1,1,dmmalam,9/1/2016 16:23 +12190641,Looking back on Swift 3 and ahead to Swift 4,https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160725/025676.html,156,63,dalbin,7/29/2016 22:52 +10903984,Pi Scan is a simple and robust camera controller for book scanners,https://github.com/Tenrec-Builders/pi-scan,27,2,buovjaga,1/14/2016 19:56 +10426539,The A=432 Hz Frequency: DNA Tuning and the Bastardization of Music,http://themindunleashed.org/2015/09/the-a432-hz-frequency-dna-tuning-and-the-bastardization-of-music.html,2,1,mooreds,10/21/2015 16:28 +11401588,LKML: New syscall: leftpad(),https://lkml.org/lkml/2016/3/31/1108,237,73,ajdlinux,4/1/2016 0:08 +10697223,Show HN: SquawkBox: Viral Avian Marketing,http://squawkbox.io/,10,5,hrs,12/8/2015 16:12 +12152943,How Does This Garden Grow? To the Ceiling,http://www.nytimes.com/2016/07/24/nyregion/food-produced-by-the-high-tech-urban-farming-reaches-new-heights.html,5,1,dnetesn,7/24/2016 10:33 +10426426,"Show HN: LilBlog Blog Software Written in Only HTML, CSS, and JavaScript",https://github.com/milge/lilblog,1,5,milge,10/21/2015 16:13 +10881413,People Call Me Aaron,https://medium.com/@swartzcr/people-call-me-aaron-3761481871e5,701,105,marsvoltaire,1/11/2016 16:34 +12467375,Fortress of Tedium: What I Learned as a Substitute Teacher,http://www.nytimes.com/2016/09/11/magazine/fortress-of-tedium-what-i-learned-as-a-substitute-teacher.html?src=longreads&_r=0,83,27,sperant,9/10/2016 2:37 +11077004,LIGO gravitational wave annoncement,https://www.ligo.caltech.edu/news/ligo20160208,12,2,sshillo,2/10/2016 23:19 +12196565,How to Avoid Being Called a Bozo When Producing XML (2005),https://hsivonen.fi/producing-xml/,107,244,stesch,7/31/2016 11:54 +11745127,Ask HN: Why do browsers still support pop up dialogs and other bad behavior?,,133,80,twshoopboop,5/21/2016 16:05 +11116832,Best Articles of Medium in 2015 Free Ebook Is Released,http://bestarticles.xyz,34,6,onuryavuz,2/17/2016 10:26 +10595131,Making Elm faster and friendlier in 0.16,http://elm-lang.org/blog/compilers-as-assistants,243,90,jwmerrill,11/19/2015 15:06 +10248019,Apple TV Parallax,http://codepen.io/mariusbalaj/pen/MaKRar,2,2,mariusbalaj,9/20/2015 16:11 +10738358,Vulnerability Details: Joomla Remote Code Execution,https://blog.sucuri.net/2015/12/joomla-remote-code-execution-the-details.html,5,1,ebarock,12/15/2015 15:41 +10833039,The Terrible Beauty of Brain Surgery,http://www.nytimes.com/2016/01/03/magazine/karl-ove-knausgaard-on-the-terrible-beauty-of-brain-surgery.html,4,1,andrewl,1/3/2016 23:10 +10366152,"Why SQL is neither legacy, nor low-level, nor difficult but simply awesome",http://www.vertabelo.com/blog/notes-from-the-lab/why-sql-is-neither-legacy-nor-low-level-but-simply-awesome,3,1,latenightcoding,10/10/2015 17:16 +10403854,App Uses Kids Obsession with Phones to Teach Them Coding,http://www.wired.com/2015/10/app-uses-kids-obsession-with-phones-to-teach-them-coding/,38,8,x43b,10/17/2015 9:20 +12424946,PGP Attacks,http://axion.physics.ubc.ca/pgp-attack.html,3,1,lelf,9/4/2016 15:51 +10897185,What If You Bought All 292M of the Possible Powerball Combinations? (US),http://www.theatlantic.com/business/archive/2016/01/powerball-ticket-all-combinations/423930/?utm_source=SFFB&single_page=true,2,1,jdnier,1/13/2016 20:22 +11806549,A Visual Introduction to Machine Learning,http://www.r2d3.us/visual-intro-to-machine-learning-part-1/?lang=en,9,2,tarikozket,5/31/2016 14:04 +11171126,Dr. Carla Hayden Nominated for Librarian of Congress,https://www.whitehouse.gov/blog/2016/02/24/meet-president-obamas-nominee-librarian-congress,1,1,jobu,2/24/2016 23:33 +10868925,The Solo5 Unikernel,https://github.com/djwillia/solo5,37,6,ingve,1/8/2016 22:54 +11697122,How Elon Musk exposed billions in questionable Pentagon spending,http://www.politico.com/story/2016/05/elon-musk-rocket-defense-223161?href,122,40,abhi3,5/14/2016 17:24 +10710450,All Roads Lead to Rome,http://roadstorome.moovellab.com/countries,2,1,chippy,12/10/2015 13:21 +12041615,PostgreSQL: Linux VS Windows [Benchmark],http://www.sqig.net/2016/01/postgresql-linux-vs-windows.html,2,3,insulanian,7/6/2016 7:01 +11473293,The Tesla 3 and Shit Talkers Like Me,http://ericpetersautos.com/2016/04/07/tesla-3-shit-talkers-like/,15,38,cpr,4/11/2016 17:19 +10922447,"Falcon lands on droneship, tips over post landing.",https://www.instagram.com/p/BAqirNbwEc0/?taken-by=elonmusk,9,1,manaskarekar,1/18/2016 3:51 +10449562,Request For Startup: Personal CRM for Grown-up Friendships,http://www.daniellemorrill.com/2015/10/grown-up-friendships/,3,4,schwarzrules,10/26/2015 4:08 +11553749,"Surprising, Vibrant Reef Discovered in the Muddy Amazon",http://news.nationalgeographic.com/2016/04/220416-Amazon-coral-reef-Brazil-ocean-river-fish/,75,18,michaelmachine,4/23/2016 1:58 +11959232,Results of Rust Survey 2016 early draft for internal usage,https://docs.google.com/document/d/1F6oELZcO_ejX2oVk20hmiBWd4lQugfFahn7OOOOyKsw,118,111,progval,6/23/2016 6:33 +10626123,Spooked: What do we learn about science from a controversy in physics?,http://www.newyorker.com/magazine/2015/11/30/spooked-books-adam-gopnik,14,7,akakievich,11/25/2015 8:43 +12300804,"BMWs EV roadmap detailed, includes full autonomy by 2025",https://techcrunch.com/2016/08/11/bmws-ev-roadmap-detailed-includes-full-autonomy-by-2025/?ncid=rss&utm_content=buffer86389&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer,29,18,tambourine_man,8/16/2016 21:32 +11449106,Mashable lays off staff in 'strategic shift' toward video,http://money.cnn.com/2016/04/07/media/mashable-layoffs/,21,21,r721,4/7/2016 17:44 +10554083,Waterfox A fast browser,https://www.waterfoxproject.org/,150,107,talles,11/12/2015 16:23 +11911926,Internet Archive is suffering from a DDoS attack,https://twitter.com/AttackNodes/status/743154643820253184,112,65,edward,6/15/2016 20:28 +10301476,The State of JavaScript on Android Is Poor,https://meta.discourse.org/t/the-state-of-javascript-on-android-in-2015-is-poor/33889,45,3,megaman821,9/30/2015 3:07 +12309540,NSA.gov goes down,http://nsa.gov/,2,1,c-slice,8/18/2016 0:14 +11170458,Zombie Cells Outperform the Living,http://energy.gov/articles/zombie-replicants-outperform-living,1,1,gliese1337,2/24/2016 21:41 +11831486,Japanese missing boy: How did Yamato Tanooka survive?,http://www.bbc.co.uk/news/world-asia-36441742,23,32,abhi3,6/3/2016 16:54 +12523190,Fossil evidence reveals that cancer in humans goes back 1.7M years,https://theconversation.com/fossil-evidence-reveals-that-cancer-in-humans-goes-back-1-7-million-years-63430,29,9,Hooke,9/18/2016 0:02 +11670686,Top 40 Software Engineering Books,http://aioptify.com/top-software-books.php?utm_source=hackernews&utm_medium=cpm&utm_campaign=topsoftwarebooks,3,1,jahan,5/10/2016 21:11 +10757570,Go 1.6 Beta Released,https://tip.golang.org/doc/go1.6,217,64,omginternets,12/18/2015 9:37 +11772962,Ask HN: How to learn C in 2016?,,5,5,poushkar,5/25/2016 20:49 +10880709,Countries in Postcrossing,https://www.postcrossing.com/explore/countries,1,1,Tomte,1/11/2016 13:48 +11619753,"A lighter, easier and probably better alternative to JIRA",https://debugme.eu/,1,3,wrightandres,5/3/2016 12:02 +10924978,Hardest sell: Nuclear waste needs good home,http://www.bbc.co.uk/news/uk-england-35096566,7,2,ljf,1/18/2016 15:45 +11340537,A Statement from The Tor Project on Software Integrity and Apple,https://blog.torproject.org/blog/statement-tor-project-software-integrity-and-apple,103,30,zo1,3/22/2016 22:44 +10844179,Let's Kill the Word Cloud,http://dataskeptic.com/epnotes/kill-the-word-cloud.php,3,1,thisjustinm,1/5/2016 16:42 +12175516,Finding the Most Unhygienic Food in the UK,http://blog.wolfram.com/2016/07/21/finding-the-most-unhygienic-food-in-the-uk/,61,20,lelf,7/27/2016 18:48 +11341559,All 60 startups that launched at Y Combinator Winter 2016 Demo Day 1,http://techcrunch.com/2016/03/22/y-combinator-demo-day-winter-2016/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+techcrunch%2Fstartups+%28TechCrunch+%C2%BB+Startups%29,175,86,BinaryIdiot,3/23/2016 1:58 +11228665,Ask HN: Best VPN providers?,,2,2,varadg,3/5/2016 6:31 +10486323,The Bugs Bunny Defense,http://www.cbsnews.com/news/the-bugs-bunny-defense-48-hours-investigates-the-shooting-death-of-patrick-duffey/,3,3,bitJericho,11/1/2015 13:23 +12299713,How Top B2B startups are creating case studies to turn leads into customers,http://sketchdeck.com/blog/how-top-b2b-startups-are-creating-case-studies-to-turn-leads-into-customers,40,10,edmack,8/16/2016 18:56 +10802191,The Ultimate Amiga 500 Talk [video],https://media.ccc.de/v/32c3-7468-the_ultimate_amiga_500_talk#video&t=70,64,12,SwellJoe,12/28/2015 17:29 +11947422,Web Service Efficiency at Instagram with Python,https://engineering.instagram.com/web-service-efficiency-at-instagram-with-python-4976d078e366#.s1st93t8g,195,51,ksashikumar,6/21/2016 17:17 +10631141,Epigrams on Programming (1982),http://pu.inf.uni-tuebingen.de/users/klaeren/epigrams.html,10,2,stites,11/26/2015 3:44 +10612638,Zurb Foundation 6 is here,http://zurb.com/article/1416/foundation-6-is-here,2,1,tfaruq,11/23/2015 3:03 +11304676,#startups,https://webchat.freenode.net,1,1,tartu,3/17/2016 14:51 +11963386,BoiledCarrot,http://martinfowler.com/bliki/BoiledCarrot.html,72,32,joeyespo,6/23/2016 18:40 +11306081,Show HN: API integrations made easy,http://www.saasler.com/,13,1,carmenapostu,3/17/2016 17:41 +11655951,What Happened When Facebook Hired Some Journalists,http://gizmodo.com/want-to-know-what-facebook-really-thinks-of-journalists-1773916117,102,99,hollaur,5/8/2016 21:29 +10651365,Deleting RSS Feed Items,http://oleb.net/blog/2015/11/rss-feed-item-deletions/,32,2,ingve,11/30/2015 19:58 +11673553,PrimeNG,http://www.primefaces.org/primeng/,13,7,myxlptlk,5/11/2016 8:36 +10189074,Show HN: Zephyr - team platform for building great product free access,https://zephyrplatform.com/,6,15,gotzephyr,9/9/2015 0:56 +10449892,Reading and writing are less symmetric than you (probably) think,https://fgiesen.wordpress.com/2015/10/25/reading-and-writing-are-less-symmetric-than-you-probably-think/,30,5,panic,10/26/2015 6:44 +10475555,Vizor: Create and Share VR Content on the Web,http://vizor.io/,28,8,fitzwatermellow,10/30/2015 1:01 +12290739,Why you should never use MongoDB (2013),http://www.sarahmei.com/blog/2013/11/11/why-you-should-never-use-mongodb/,194,183,wheresvic1,8/15/2016 14:42 +11654245,Next-Gen CPUs Will Only Support Windows 10,"http://www.pcmag.com/article2/0,2817,2498097,00.asp",32,31,neverminder,5/8/2016 14:48 +10274077,Taken Offline: Years in Prison for a Love of Technology,https://www.eff.org/deeplinks/2015/09/taken-offline-years-prison-love-technology,34,4,dannyobrien,9/24/2015 19:36 +10574869,Show HN: Website to track promises made by Indian ministers,http://www.indiatracker.in,11,6,superasn,11/16/2015 15:19 +11582441,Announcing Vue.js 2.0,https://medium.com/the-vue-point/announcing-vue-js-2-0-8af1bde7ab9#.t4ssx4l9s,187,50,EvanYou,4/27/2016 17:22 +10622437,A map of one million scientific papers from the arXiv,http://paperscape.org,182,55,Amorymeltzer,11/24/2015 18:18 +10187232,Why the Rich Love Burning Man,https://www.jacobinmag.com/2015/08/burning-man-one-percent-silicon-valley-tech/,25,2,jessaustin,9/8/2015 17:55 +10984813,Running your software stack native on OS X / Ubuntu,,1,1,mattbillenstein,1/28/2016 0:28 +11359757,The Problem Delivering Dynamic Content from AWS to a CDN,http://blog.datapath.io/the-problem-delivering-dynamic-content-from-aws-to-a-cdn,1,1,Coldewey,3/25/2016 13:00 +11539777,A Womans Life in Search Queries (2006),http://www.pentadact.com/2006-08-09-aolol/,5,1,blargl,4/21/2016 4:55 +12034277,BSD vs. Linux (2005),http://www.over-yonder.net/~fullermd/rants/bsd4linux/01,457,356,joseluisq,7/5/2016 3:42 +11609785,Satoshi,http://gavinandresen.ninja/satoshi,157,31,kenOfYugen,5/2/2016 7:42 +11514260,Madness of Geo-Blocking (Hidden Camera Prank),https://m.youtube.com/watch?v=WbiacSD13qk,46,47,nxzero,4/17/2016 12:10 +10853541,How Important Is the Business Size in Choosing ERP?,http://www.skywardtechno.com/blog/business-size-in-choosing-erp/,2,1,samsuthar,1/6/2016 20:34 +10954906,Marijuana might not be the culprit in adolescent IQ decline,http://arstechnica.com/science/2016/01/marijuana-might-not-be-the-culprit-in-adolescent-iq-decline/,5,1,pavornyoh,1/22/2016 19:15 +10507469,Synthetic biology lures Silicon Valley investors,http://www.nature.com/news/synthetic-biology-lures-silicon-valley-investors-1.18715,3,1,cryoshon,11/4/2015 16:03 +12291748,Ask HN: How important is launch day for an MVP?,,3,5,ccallebs,8/15/2016 17:08 +11589828,API's dirty little secret,https://medium.com/every-developer/apis-dirty-little-secret-24ad7deda1c4#.jja1x6yvu,7,1,mijustin,4/28/2016 16:00 +11030672,Facebook deletes medical marijuana pages,http://www.nj.com/healthfit/index.ssf/2016/02/facebook_cancels_pages_for_medical_marijuana_dispe.html,5,1,eplanit,2/3/2016 23:11 +10380646,"Greenlane uses park, tree and trail data to map scenic paths through Toronto",https://greenlane.io,2,1,knapsackproblem,10/13/2015 14:24 +12400003,What Will Happen to China's Economy If Xi Jinping Continues to Lead,http://www.forbes.com/sites/douglasbulloch/2016/08/30/the-economic-consequences-of-xi-jinping/,1,1,endswapper,8/31/2016 17:30 +12559706,VR Game Devs know you want better games here's why you don't have them yet,https://www.reddit.com/r/Vive/comments/53thb7/vr_game_devs_know_you_guys_want_biggerbetter_game/d7wigjb,1,1,obi1kenobi,9/22/2016 19:44 +11001970,Elon Musk Says SpaceX Will Send People to Mars by 2025,http://www.nbcnews.com/tech/tech-news/elon-musk-says-spacex-will-send-people-mars-2025-n506891,121,95,lumberjack,1/30/2016 14:52 +11048104,Political scientist Nolan Dalla claims to be push polled by Clintons campaign,http://www.nolandalla.com/i-just-got-push-polled-by-hillary-clintons-nevada-campaign/,55,27,anonymfus,2/6/2016 15:31 +10552290,Ask HN: What can you with a lot of karma on HN,,5,5,SimplyUseless,11/12/2015 10:26 +12050443,"Self-Driving Car, Who lives and who dies?",http://hothardware.com/news/self-driving-cars-will-likely-have-to-deal-with-the-harsh-reality-of-who-lives-and-who-dies,3,1,snowy,7/7/2016 16:41 +10893647,Open source is super amazing (except for when it isnt),http://soledadpenades.com/2016/01/12/open-source-is-super-amazing-except-for-when-it-isnt/,4,2,ingve,1/13/2016 11:48 +11611056,Ask HN: Why isn't there a Who is Hiring post for the month?,,2,6,wasif_hyder,5/2/2016 13:20 +10488188,Neovim public release 0.1.0,https://github.com/neovim/neovim/releases/tag/v0.1.0,233,83,robinhoodexe,11/1/2015 20:48 +11364717,Windows is a malware,http://www.infoworld.com/article/3048152/microsoft-windows/microsoft-re-releases-kb-3035583-get-windows-10-installer-again.html,19,2,gchokov,3/26/2016 6:37 +11649965,Phone verification at no cost,https://github.com/natsu90/dial2verify-twilio,5,1,natsu90,5/7/2016 15:41 +10356845,"Nobel prize for chemistry: Lindahl, Modrich and Sancar win for DNA research",http://www.theguardian.com/science/2015/oct/07/lindahl-modrich-and-sancar-win-nobel-chemistry-prize-for-dna-research,30,5,dbcooper,10/8/2015 22:35 +12109003,Algebraic patterns Semigroup,http://philipnilsson.github.io/Badness10k/posts/2016-07-14-functional-patterns-semigroup.html,82,39,lebek,7/17/2016 4:14 +11563761,"Neil DeGrasse Tyson Is a Black Hole, Sucking the Fun Out of the Universe",http://www.wired.com/2016/04/neil-degrasse-tyson-black-hole-sucking-fun-universe/,8,2,et1337,4/25/2016 12:28 +10971662,Barack Obama: Why we must rethink solitary confinement,https://www.washingtonpost.com/opinions/barack-obama-why-we-must-rethink-solitary-confinement/2016/01/25/29a361f2-c384-11e5-8965-0607e0e265ce_story.html,401,298,nols,1/26/2016 3:26 +11947744,Ask HN: Where/how to recruit survey respondents for preliminary market research?,,1,2,cauterized,6/21/2016 17:48 +10794674,All smartphones sold in Switzerland will use a standard charging port in 2017,https://www.admin.ch/gov/en/start/documentation/media-releases.msg-id-59636.html,3,3,iancarroll,12/26/2015 18:00 +10921041,Teletext time travel,http://www.transdiffusion.org/2016/01/07/teletext-time-travel,105,10,dsr12,1/17/2016 21:00 +11703927,Sexual Freelancing in the Gig Economy,http://www.nytimes.com/2016/05/15/opinion/sexual-freelancing-in-the-gig-economy.html?_r=1,11,3,kareemm,5/16/2016 2:48 +11364182,Taxi Dispatch Algorithms: Why Route Optimization Reigns,http://blog.routific.com/taxi-dispatch-algorithms-why-route-optimization-reigns,2,1,mck-,3/26/2016 2:28 +10607029,Reflection in C++14: Explanations,http://blog.simon-ninon.fr/reflection-in-c-plus-plus-14/,71,33,cylix,11/21/2015 15:45 +11144882,"Apple Still Holds the Keys to Its Cloud Service, but Reluctantly",http://www.nytimes.com/2016/02/22/technology/apple-still-holds-the-keys-to-its-cloud-service-but-reluctantly.html,2,1,danielconde,2/21/2016 15:40 +11259634,Put a billion dollars on red,https://justinjackson.ca/is-the-money-still-bored/,11,1,mijustin,3/10/2016 15:16 +10953349,80 front-end job applications nearly no one had basic HTML/CSS/A11y skills,https://wdrl.info/archive/121,87,122,charlesroper,1/22/2016 15:46 +11091497,Regular expression to match a chemical element,http://www.johndcook.com/blog/2016/02/04/regular-expression-to-match-a-chemical-element/,5,1,kevin,2/12/2016 23:39 +10530253,Bitcoin is getting its own Unicode symbol,http://venturebeat.com/2015/11/03/bitcoin-is-getting-its-own-unicode-symbol/,2,1,aritraghosh007,11/8/2015 22:24 +11666301,API Documentation and the Communication Illusion,http://jamescooke.info/api-documentation-and-the-communication-illusion.html,32,8,wallflower,5/10/2016 11:10 +11364022,Ikea: Let's Grow,http://www.ikea.com/ms/en_GB/ikea-collections/indoor-gardening/index.html,4,1,voisin,3/26/2016 1:39 +11237492,Tor NoScript visit tracker,https://bitbucket.org/ElijahKaytor/noscript-tracker/src/master,44,21,Syrup-tan,3/7/2016 6:46 +11254328,Modern concurrency tools for Ruby,https://github.com/ruby-concurrency/concurrent-ruby,131,16,sciurus,3/9/2016 17:35 +10881446,Explore how the periodic table has changed in the last 300 years. [viz],http://cavorite.com/labs/vis/asdrubal/#y-2015,2,2,jdcaballero,1/11/2016 16:39 +11470390,Employers: dont blame millennials if you cant hang on to them,http://www.irishtimes.com/business/work/employers-don-t-blame-millennials-if-you-can-t-hang-on-to-them-1.2605418,3,1,cheatdeath,4/11/2016 9:07 +11884184,Gravitational Motion in JS,http://www.danielkermany.com/projects/gravity,20,2,dkermany,6/11/2016 16:58 +12456742,Let's Encrypt Overview,https://marumari.github.io/letsencrypt-overview/index-en.html#/,2,1,okket,9/8/2016 19:59 +12105424,Opinionated copy and paste-friendly golang crypto,https://github.com/gtank/cryptopasta,2,1,FiloSottile,7/16/2016 6:06 +10276848,Webhook.co Webhook manager,http://webhook.co,3,2,zonito,9/25/2015 7:58 +12271215,Now is a really good time to buy a helicopter,http://qz.com/755787/now-is-a-really-good-time-to-buy-a-helicopter/,82,89,prostoalex,8/11/2016 20:04 +11389835,Asana,http://blog.samaltman.com/asana,166,118,s4chin,3/30/2016 15:12 +10729781,Transactional Linux System Calls,http://www.cs.utexas.edu/~porterde/txos/,27,2,CMCDragonkai,12/14/2015 7:10 +11270270,Apple founder Steve Wozniak thinks Amazon Echo is the next big platform,http://www.businessinsider.com/steve-wozniak-thinks-amazon-echo-is-the-next-big-platform-2016-3,12,3,davidst,3/11/2016 23:16 +11667977,Apple Hit with $2.8B Patent Lawsuit Over VoIP Technology,http://www.macrumors.com/2016/05/10/apple-vs-voip-pal-2-8-billion-patent-lawsuit/,2,1,jweir,5/10/2016 15:37 +11439628,"Ask HN: Forums similar to HN, but for programmers exlusively?",,3,1,n72,4/6/2016 15:57 +12414285,Douglas Crockford Out as Keynote Speaker at Nodevember,https://twitter.com/nodevember/status/771520648191483904,44,25,zoltanvonmises,9/2/2016 16:37 +12484777,Wells Fargo head of phony account division got $124M in exit pay,http://www.salon.com/2016/09/12/wells-fargo-sandbagger-in-chief-in-charge-of-phony-account-division-received-124-million-in-exit-pay/,26,3,lisper,9/13/2016 0:11 +10421955,Show HN: FoxDen WebRTC Collaboration App,,3,1,tindrlabs,10/20/2015 21:31 +10519573,The Great Chain of Being Sure About Things,http://www.economist.com/news/briefing/21677228-technology-behind-bitcoin-lets-people-who-do-not-know-or-trust-each-other-build-dependable?fsrc=scn/tw/te/pe/ed/blockchains?ref=readthisthing,39,4,rfreytag,11/6/2015 14:25 +11955823,Iris (GO web framework) faster than Nginx?,https://twitter.com/MakisMaropoulos/status/745611757612335104,2,1,pvsukale1,6/22/2016 18:11 +12266975,"Clio: a minimalist, multi-language argument-parsing library",https://github.com/dmulholland/clio,2,1,dmlhllnd,8/11/2016 9:15 +10526038,We Know What You're Doing,http://www.weknowwhatyouredoing.xyz,1,5,genzparez,11/7/2015 20:10 +10919623,"Parsing 10TB of Metadata, 26M Domain Names and 1.4M SSL Certs for $10 on AWS",http://blog.waleson.com/2016/01/parsing-10tb-of-metadata-26m-domains.html,257,55,jtwaleson,1/17/2016 15:04 +12125757,Ask HN: What happens when AI gets too smart for CAPTCHA?,,1,1,holaboyperu,7/19/2016 23:35 +12284355,Ask HN: What are good ways to find startup problems to solve?,,40,46,pigpigs,8/14/2016 5:15 +10280738,Legal implications of an encounter with extraterrestrial intelligence,http://thespacereview.com/article/2770/1,24,7,CrocodileStreet,9/25/2015 21:16 +11926668,"IEX Outduels Citadel, NYSE as Flash Boys Exchange Approved",http://www.bloomberg.com/news/articles/2016-06-17/iex-outduels-citadel-nyse-as-flash-boys-exchange-is-approved,3,1,ucha,6/18/2016 2:06 +11930601,PayPal Demands That Seafile Monitor Customers Uploaded Files,https://seafile.de/en/important-infos-about-app-seafile-de-and-licensing-purchases-through-our-web-shops/,6,1,quicksilver03,6/18/2016 21:09 +10936506,How Forbes failed: 6 ways publishers can stop ad blockers stealing their revenue,https://www.techinasia.com/talk/forbes-failed-6-real-ways-publishers-stop-ad-blockers-stealing-revenue,2,1,huiyilee,1/20/2016 7:25 +11087849,Pwn2Own 2016 Won't Attack Firefox (Because It's Too Easy),http://www.eweek.com/security/pwn2own-hacking-contest-returns-as-joint-hpe-trend-micro-effort.html,4,2,moviuro,2/12/2016 15:32 +12394303,"Gonorrhea Is Becoming Untreatable, U.N. Health Officials Warn",http://www.npr.org/sections/thetwo-way/2016/08/30/491969011/u-n-health-officials-warn-gonorrhea-is-becoming-untreatable,212,183,bootload,8/30/2016 22:01 +10352785,The 1810 Republic of West Florida,http://www.vox.com/2015/10/6/9462159/west-florida,13,3,davidbarker,10/8/2015 14:00 +10619978,Google built (and then canceled) a Star Trek Communicator prototype,http://arstechnica.com/gadgets/2015/11/google-built-and-then-canceled-a-star-trek-communicator-prototype/,2,1,bane,11/24/2015 10:03 +10464988,Life Changing Programming Lessons (your PR Is Wanted),https://github.com/AdamBrodzinski/life-changing-programming-lessons,2,1,adambrod,10/28/2015 15:33 +11198300,Snapchat Employee Data Leaks Out Following Phishing Attack,http://techcrunch.com/2016/02/29/snapchat-employee-data-leaks-out-following-phishing-attack/,108,58,choult,2/29/2016 20:41 +11252287,How Vulkan maps to mobile tile-based GPUs,http://blog.imgtec.com/powervr/tiling-positive-or-how-vulkan-maps-to-powervr-gpus,82,18,alexvoica,3/9/2016 11:30 +10791667,%*$*#&#* Windows 7 Calculator,https://social.technet.microsoft.com/Forums/windows/en-US/4ec1b55b-b516-471d-aa77-6b37b69d8df6/action?threadDisplayName=windows&forum=w7itproui,102,108,userbinator,12/25/2015 17:16 +11359587,Ask HN: How do you blog for your startup/site?,,7,6,impostervt,3/25/2016 12:03 +11578522,Why Johnny Cant Encrypt: A Usability Evaluation of PGP 5.0 [pdf],http://www.gaudior.net/alma/johnny.pdf,4,1,adarshaj,4/27/2016 7:46 +10399018,"Red Hat acquires Ansible, the open source IT automation company",http://www.ansible.com/blog/red-hat,2,1,zdw,10/16/2015 13:15 +11445956,Apply HN: FORUM A public conversation app,,2,10,jaktran,4/7/2016 9:31 +10647801,Enki: Level-up your dev skills in 5 minutes every day,https://www.enki.com,3,1,jacobmarble,11/30/2015 4:56 +12186844,Stupid Patent of the Month: Solocron Education Trolls with Password Patent,https://www.eff.org/deeplinks/2016/07/stupid-patent-month-solocron-education-trolls-password-patent,22,5,dwaxe,7/29/2016 14:02 +12309292,The Broken Promise of No Mans Sky and Why It Matters,https://www.rockpapershotgun.com/2016/08/17/broken-promises-of-no-mans-sky/,3,2,webwielder2,8/17/2016 23:22 +10617228,Ask HN: HTTP 1.0 and the host header,,3,5,sigdante,11/23/2015 20:54 +11002975,"Elon Musk exercises Tesla options, pays $50M tax bill with own cash",http://www.marketwatch.com/story/elon-musk-buys-tesla-shares-cheap-pays-hefty-tax-bill-with-own-cash-2016-01-29,9,1,SCAQTony,1/30/2016 18:15 +12311533,"Magento and WooCommerce Mobile App Bulider, No Coding",http://icymobi.com,1,1,ldkhanh,8/18/2016 10:52 +10250206,Why I left the best job in the world to become a developer,https://www.linkedin.com/pulse/why-i-left-best-job-world-preethi-kasireddy?trkInfo=VSRPsearchId%3A39323951442806491653%2CVSRPtargetId%3A6049349848363188224%2CVSRPcmpt%3Aprimary&trk=vsrp_influencer_content_res_name,2,1,hangulo,9/21/2015 3:35 +11674535,On Settlement Finality,https://blog.ethereum.org/2016/05/09/on-settlement-finality/,25,8,sethbannon,5/11/2016 12:15 +11044706,Darpa researchers to push the limits of reading and writing human brain neurons,http://www.networkworld.com/article/3030652/hardware/darpa-researchers-to-push-the-limits-of-reading-and-writing-human-brain-neurons.html,2,1,stevep2007,2/5/2016 21:19 +10350742,Something Borrowed: Kenneth Goldsmith's Controversial Conceptual Poetry,http://www.newyorker.com/magazine/2015/10/05/something-borrowed-wilkinson,11,3,mrks_,10/8/2015 3:18 +12063253,Atomontage Engine,http://atomontage.com/,73,21,Stahll,7/9/2016 20:47 +12027055,Brian Eno: We've been living happily with AI for thousands of years,https://www.edge.org/response-detail/26191,363,175,cdcarter,7/3/2016 18:24 +11317890,Ask HN: How do you read ebooks?,,3,8,dnqthao,3/19/2016 9:31 +10725304,Guerrilla Grafters Quietly Grow Fruit on SF Street Trees Using Latest Tech,http://hoodline.com/2015/12/guerrilla-grafters-quietly-grow-fruit-on-city-trees-using-latest-tech,37,15,gkop,12/13/2015 3:29 +11606136,A cache miss is not a cache miss,http://larshagencpp.github.io/blog/2016/05/01/a-cache-miss-is-not-a-cache-miss,126,39,ingve,5/1/2016 13:43 +10827588,A Response to Paul Grahams Article on Income Inequality,http://cryoshon.co/2016/01/02/a-response-to-paul-grahams-article-on-income-inequality/,408,224,hobs,1/2/2016 19:50 +10610798,How to Deploy All Day yet Deploy Nothing,http://mr.si/posts/2015/11/22/how-to-deploy-all-day-yet-deploy-nothing/,98,43,mrfoto,11/22/2015 17:58 +11008827,Ask HN: Curriculum for kids coding Summer camp?,,4,5,callmeed,2/1/2016 0:18 +12125180,Microsoft's Bing Isn't a Joke Anymore,http://www.bloomberg.com/gadfly/articles/2016-07-19/microsoft-turns-bing-from-a-joke-into-an-ad-business,124,123,adventured,7/19/2016 21:46 +10340117,Microsoft Surface Book,http://www.microsoft.com/surface/en-us/devices/surface-book,190,264,SoapSeller,10/6/2015 16:35 +11140792,Computers Should Be More Like Smartphones,http://www.mpscholten.de/software-engineering/2016/02/20/computers-should-be-more-like-smartphones.html,1,2,_query,2/20/2016 16:48 +11389623,A focus on elite schools ignores the issues most college students face,http://fivethirtyeight.com/features/shut-up-about-harvard/,96,67,kelukelugames,3/30/2016 14:45 +11574563,HTTP Evader Automate Firewall Evasion Tests,http://noxxi.de/research/http-evader.html,40,2,chatmasta,4/26/2016 18:54 +10884893,Shutting down persona.org in November 2016,https://mail.mozilla.org/pipermail/persona-notices/2016/000005.html,417,136,buro9,1/12/2016 1:14 +10256816,The future of programmers,http://tcz.hu/the-future-of-programmers,6,1,jodooshi,9/22/2015 5:38 +11207569,Ask HN: Algorithmic trading for hackers,,15,7,frr149,3/2/2016 1:34 +12494443,DNC leaks reveal former FCC chairman (2009-2013) paid DNC $3.5 mil for position,https://i.sli.mg/wZrcZq.jpg,8,6,throwaway2016b,9/14/2016 5:34 +11342683,Object-Oriented Programming is Garbage: 3800 SLOC example [video],https://www.youtube.com/watch?v=V6VP-2aIcSc,81,81,howsilly,3/23/2016 7:26 +11680013,The NYPD Was Ticketing Legally Parked Cars; Open Data Put an End to It,http://iquantny.tumblr.com/post/144197004989/the-nypd-was-systematically-ticketing-legally,868,177,danso,5/11/2016 22:50 +11435389,(Many) Lessons from Building a Node App in Docker,http://jdlm.info/articles/2016/03/06/lessons-building-node-app-docker.html,2,1,JohnHammersley,4/5/2016 23:23 +12118957,Has China Reached Peak Urbanization?,http://www.bloomberg.com/view/articles/2016-07-19/has-china-reached-peak-urbanization,46,45,tokenadult,7/19/2016 1:21 +11468351,"Ask HN: Getting harassed at work for my sexuality, what should i do?",,48,38,yahyaheee,4/10/2016 21:53 +10693916,Show HN: A friend and I made a beautiful pastebin,https://www.pastery.net/,14,18,StavrosK,12/8/2015 0:23 +10496153,Start-up storytime: How we got to $2m+ in revenue,https://www.reddit.com/r/startups/comments/3r8fk9/so_were_now_over_2_million_per_year_with_local/,19,1,clickbyclick,11/2/2015 23:26 +11690829,Ask HN: What will be the next big tech disrupt?,,1,2,pal_25,5/13/2016 15:13 +11076890,Ask HN: What do you use for microservice RPC?,,6,11,lobster_johnson,2/10/2016 23:00 +11858742,Mastering Programming,https://www.facebook.com/notes/kent-beck/mastering-programming/1184427814923414,19,11,fforflo,6/7/2016 23:06 +11692389,Itch.io refinery: A customizable toolset for first game releases and playtests,http://blog.itch.io/post/144305999624/itchio-week-day-5-part-1-itchio-refinery,11,2,elisee,5/13/2016 18:46 +11359014,The Long-Awaited Promise of a Programmable Quantum Computer,https://www.technologyreview.com/s/601099/the-long-awaited-promise-of-a-programmable-quantum-computer/,16,8,jedwhite,3/25/2016 8:29 +12231132,Chinese Traffic-Slaying Straddling Bus is nothing more than a big scam,http://shanghaiist.com/2016/08/05/straddling_bus_scam.php,48,25,snaky,8/5/2016 10:16 +11033963,Ask HN: Why big email providers don't sign the email?,,3,1,ddalex,2/4/2016 14:10 +11244979,Contentle: Social Bookmarking and Content Curation Tool,http://www.contentle.com/,4,2,bernazki,3/8/2016 13:14 +10524669,Serious Software SpecLisp for Sinclair ZX Spectrum,http://blog.funcall.org//lisp/2015/10/30/zx-spectrum-lisp/,80,2,networked,11/7/2015 13:05 +10232595,Artificial Neural Networks for Beginners,http://blogs.mathworks.com/loren/2015/08/04/artificial-neural-networks-for-beginners/,255,49,rdudekul,9/17/2015 10:52 +11837511,Prime After Prime,http://bit-player.org/2016/prime-after-prime,127,16,bit-player,6/4/2016 19:01 +12267720,High-Frequency Trading Is Nearing the Ultimate Speed Limit,https://www.technologyreview.com/s/602135/high-frequency-trading-is-nearing-the-ultimate-speed-limit/,54,47,jonbaer,8/11/2016 12:40 +12423653,"Mosquitoes Are Deadly, So Why Not Kill Them All?",http://www.wsj.com/articles/mosquitoes-are-deadly-so-why-not-kill-them-all-1472827158,20,3,taigeair,9/4/2016 10:17 +11283208,Review of childrens book pretending its about the network utility Ping,http://www.thepoke.co.uk/2016/03/14/funny-amazon-ping-review/,5,1,tomek_zemla,3/14/2016 15:02 +11381757,Ask HN: Best use case writeups of SOA?,,2,2,tmaly,3/29/2016 14:39 +11125908,Google and Red Hat announce cloud-based scalable file servers,http://googlecloudplatform.blogspot.com/2016/02/Google-and-Red-Hat-announce-cloud-based-scalable-file-servers.html,227,78,Sami_Lehtinen,2/18/2016 14:26 +10494787,"Anonymous drops names of KKK members online, including US politicians",http://thenextweb.com/us/2015/11/02/anonymous-drops-names-of-kkk-members-online-including-us-politicians/,9,6,eric_h,11/2/2015 20:08 +10590662,A Zero Day Brokers Price List,http://www.wired.com/2015/11/heres-a-spy-firms-price-list-for-secret-hacker-techniques/,42,12,pthreads,11/18/2015 20:53 +11917685,Generative Models,https://openai.com/blog/generative-models/,353,55,nicolapcweek94,6/16/2016 17:46 +10901186,Beauty Is Physics Secret Weapon,http://nautil.us/issue/32/space/beauty-is-physics-secret-weapon,63,12,BIackSwan,1/14/2016 13:26 +11382397,Introducing Five App to HN community,,1,2,mandmach,3/29/2016 15:58 +11908100,Intel Launches 4k-enabled Quad Core NUC,http://www.intel.com/content/www/us/en/nuc/nuc-kit-nuc6i7kyk-features-configurations.html,161,160,alanfranzoni,6/15/2016 9:31 +12042527,Are fluoride levels in drinking water associated with hypothyroidism prevalence? [pdf],http://fluoridealert.org/wp-content/uploads/peckham-2015.pdf,3,1,amelius,7/6/2016 12:11 +12424731,Apache Arrow Powering Columnar In-Memory Analytics,https://arrow.apache.org/,48,10,bertzzie,9/4/2016 15:14 +10638566,Show HN: Automatically mount Android devices over adb,https://github.com/zach-klippenstein/adbfs,34,1,zachklipp,11/27/2015 19:41 +10752834,P&Gs Gillette Sues Dollar Shave Club,http://www.wsj.com/articles/p-gs-gillette-sues-dollar-shave-club-1450371180,54,101,italophil,12/17/2015 17:29 +11984643,AWS Elasticsearch Service Woes,http://www.havingatinker.uk/aws-elasticsearch-service-woes.html,77,53,kiyanwang,6/27/2016 7:25 +11291032,Announcing Torque: BCG Digital Ventures Entrepreneur Residency and Studio,https://medium.com/@tomserres/announcing-torque-bcg-digital-ventures-entrepreneur-residency-and-studio-241427e2ace9#.djt0y9451,4,1,kevinbracken,3/15/2016 16:52 +11088423,Link Between Neanderthal DNA and Depression Risk,http://www.theatlantic.com/science/archive/2016/02/neanderthal-dna-affects-depression-risk-today/462345?single_page=true,45,16,diodorus,2/12/2016 16:38 +10432071,Google Badwolf: Temporal graph store abstraction layer,https://github.com/google/badwolf,71,28,espeed,10/22/2015 13:33 +10829927,"As suicide rates rise, researchers separate thoughts from actions",https://www.sciencenews.org/article/suicide-rates-rise-researchers-separate-thoughts-actions,13,1,DrScump,1/3/2016 8:25 +11656121,The nuclear option China is vigorously promoting nuclear energy,http://www.nature.com/news/the-nuclear-option-1.19844,1,2,rvern,5/8/2016 21:55 +11265402,A Database Model for Simple Board Games,http://www.vertabelo.com/blog/technical-articles/a-database-model-for-simple-board-games,34,8,pai1009,3/11/2016 8:21 +12127766,Dollar Shave Club and the Disruption of Everything,https://stratechery.com/2016/dollar-shave-club-and-the-disruption-of-everything/,237,199,dwaxe,7/20/2016 9:30 +12518000,Municipal ISP forced to shut off fiber-to-the-home Internet after court ruling,http://arstechnica.com/information-technology/2016/09/muni-isp-forced-to-shut-off-fiber-to-the-home-internet-after-court-ruling/,330,171,johnhenry,9/16/2016 23:01 +12159980,Ask HN: Can anyone from Microsoft clarify the Windows API Code Pack license?,,16,4,mintplant,7/25/2016 17:01 +11338824,How do I work in Internet of Things?,,2,1,antoniuschan99,3/22/2016 18:39 +10653220,The Cavendish banana is slowly but surely being driven to extinction,http://qz.com/559579/the-worlds-favorite-fruit-is-slowly-but-surely-being-driven-to-extinction/,57,24,tokenadult,12/1/2015 1:56 +10802724,AngularJS 1.4x and ES6 application boilerplate /w testing practices using Webpack,https://github.com/ziyasal/ng-espack-boilerplate,1,1,ziyasal,12/28/2015 19:06 +10471030,Interview Humiliation,http://deliberate-software.com/on-defeat/,109,87,mberube,10/29/2015 14:04 +10721340,Massive DDoS attack on the internet was from smartphone botnet on popular app,http://www.ibtimes.co.uk/john-mcafee-massive-ddos-attack-internet-was-smartphone-botnet-popular-app-1532993,10,2,PersonalDay,12/12/2015 1:28 +12338460,"In Paris, Plans for a Seine Reinvention (2015)",http://www.citylab.com/design/2015/05/in-paris-plans-for-a-river-seine-reinvention/392639/,111,34,rch,8/22/2016 18:51 +10721772,AirBnB racism claim: African-Americans 'less likely to get rooms',http://www.bbc.com/news/technology-35077448,6,1,pen2l,12/12/2015 4:16 +10920364,Ask HN: Is there an HN type site focused on medical news?,,7,5,jonjlee,1/17/2016 18:33 +10400942,Do Educational Standards Work?,http://lisavandamme.com/do-standards-work/,15,3,mkempe,10/16/2015 17:53 +10927969,Ask HN: Intellectual entertainment that's also not demanding?,,4,2,EleventhSun,1/19/2016 0:03 +11706765,Paul Graham on Uber and Lift Ban in Austin,https://twitter.com/paulg/status/731871426056065028,25,19,hartator,5/16/2016 15:10 +10477470,Grant application rejected over choice of font,http://www.nature.com/news/grant-application-rejected-over-choice-of-font-1.18686,3,2,akehrer,10/30/2015 12:53 +12485676,Ask HN: Why would a botnet access my server like that?,,2,5,guillaumec,9/13/2016 4:42 +12436242,"A cheap, long-lasting, sustainable battery for grid energy storage",http://www.kurzweilai.net/a-cheap-long-lasting-sustainable-battery-for-grid-energy-storage,46,19,jonbaer,9/6/2016 14:31 +12403025,Responsive Web Considered Harmful,https://medium.com/cool-code-pal/responsive-web-considered-harmful-f3a2f075e971#.qm6lgcyu2,1,2,e-sushi,9/1/2016 4:03 +11764748,Exporting an Indie Unity Game to WebVR,https://hacks.mozilla.org/2016/05/exporting-an-indie-unity-game-to-webvr/,1,1,dwaxe,5/24/2016 19:28 +11448301,"Fotorama, a responsive JavaScript photo gallery",http://fotorama.io/,1,1,alexkon,4/7/2016 15:59 +11457393,Peer Acquired by Twitter,https://www.peer.com/,4,2,ryanjodonnell,4/8/2016 19:51 +11250999,"Man hacks Tesla firmware, finds new model, has car remotely downgraded",http://arstechnica.com/cars/2016/03/man-hacks-tesla-firmware-finds-new-model-has-car-remotely-downgraded/,7,1,uptown,3/9/2016 4:48 +12067419,Help name a Fiber ISP,,4,23,pmccarren,7/10/2016 21:49 +11303657,Trump presidency rated among top 10 global risks: EIU,http://www.bbc.com/news/business-35828747,24,21,SimplyUseless,3/17/2016 11:13 +11279382,Small Memory Software: Patterns for systems with limited memory,http://www.smallmemory.com/book.html,161,34,ingve,3/13/2016 21:13 +10624514,My car was damaged with FlightCar and they don't care here's the 3-month story,https://www.facebook.com/michael.morgenstern/posts/10100906573381481,78,64,mikeyla85,11/25/2015 0:06 +10593520,Crypto and SSL toolkit for python (M2Crypto),https://gitlab.com/m2crypto/m2crypto,1,1,kevindeasis,11/19/2015 8:41 +11719650,"Coding school 42 plans to educate 10,000 students in Silicon Valley for free",http://techcrunch.com/2016/05/17/coding-school-42-plans-to-educate-10000-students-in-silicon-valley-for-free/,13,7,brianchu,5/18/2016 4:06 +11933373,The Coming Age of the Polyglot Programmer,http://notes.willcrichton.net/the-coming-age-of-the-polyglot-programmer/,6,2,wcrichton,6/19/2016 15:55 +10230074,"Apple Acquires Mapsense, a Mapping Visualization Startup",http://recode.net/2015/09/16/apple-acquires-mapsense-a-mapping-visualization-startup/,39,7,davidbarker,9/16/2015 21:36 +10576754,"Ask HN: If the US was at war, would it pay the coupon on its bonds to the enemy?",,2,1,steven_pack,11/16/2015 19:59 +12122136,The U.S. Navy Almost Fought the Soviets Over Bangladesh,https://warisboring.com/in-1971-the-u-s-navy-almost-fought-the-soviets-over-bangladesh-c65489bc72c0#.prw727v0q,127,125,dforrestwilson,7/19/2016 14:55 +10963826,Ask HN: Value proposition of a combo plan of online whiteboard with stylus,,1,3,teda,1/24/2016 20:13 +10974448,"Teflon found to be toxic, in class-action against DuPont",http://www.nytimes.com/2016/01/10/magazine/the-lawyer-who-became-duponts-worst-nightmare.html?referer=&_r=0,2,1,raccoonone,1/26/2016 17:13 +10182635,The Sound of Code [video],https://www.youtube.com/watch?v=sEI0wBkgf1w,20,6,BobbyVsTheDevil,9/7/2015 19:14 +10517277,Ask HN Moderators: Why did my submission suddenly drop off the front page?,,18,21,rquantz,11/6/2015 1:11 +12440888,The Real Narcissists,https://www.psychologytoday.com/articles/201609/the-real-narcissists,1,1,XzetaU8,9/7/2016 4:00 +12197148,4 ways Ive fucked up as a designer,https://www.techinasia.com/talk/4-ways-ive-fucked-up-as-a-designer,4,1,williswee,7/31/2016 14:42 +10519487,The Decay of Twitter,http://www.theatlantic.com/technology/archive/2015/11/conversation-smoosh-twitter-decay/412867/?single_page=true,167,135,bceskavich,11/6/2015 14:07 +10900522,Burkina Fasos maps haven't been updated in 50 years until now,https://medium.com/planet-stories/new-maps-for-a-new-millennium-b276623d9764#.upb9e7lav,3,2,rmason,1/14/2016 10:28 +12550312,20 weirdest and pointless phone apps,http://thelightmedia.com/posts/17173-20-weirdest-and-pointless-phone-apps?user_id=15,2,1,abula,9/21/2016 17:26 +10792129,GlueStick: A Command Line Interface for Building Web Applications Using React,https://www.drivenbycode.com/gluestick-the-future-is-here/,34,3,todd3834,12/25/2015 19:43 +10979939,Show HN: JSON.stringify (without circular deps) for AngularJS 1.x,https://gist.github.com/brakmic/5b961f5a40ec10a42b5d,3,1,brakmic,1/27/2016 13:41 +10451838,"Show HN: Caller Notes, desktop app that pops up during a call with shared notes",http://callernotesapp.com,8,3,stenius,10/26/2015 14:53 +10179458,Apple Is Taunting Publishers with Ad-Blocking and Apple News,http://www.wired.com/2015/09/apple-taunting-publishers-ad-blocking-apple-news/,6,2,jeo1234,9/6/2015 23:12 +11975695,The problem with reinforced concrete,https://theconversation.com/the-problem-with-reinforced-concrete-56078,288,147,danfru,6/25/2016 8:43 +11293092,Designing Chat for Commerce: UX Research in Invisible UI,https://medium.com/@kipsearch/designing-chat-for-commerce-9faf1e36c040#.jhw1qe18z,4,1,alyxmxe,3/15/2016 21:19 +11617299,Critical Security Release for GitLab 8.2 through 8.7,https://about.gitlab.com/2016/05/02/cve-2016-4340-patches/,95,35,iMerNibor,5/3/2016 2:05 +11282411,Romanced by the Mathematics of Uncertainty,http://computationalimagination.com/interview_jonah_gabry.php,1,1,mswen,3/14/2016 12:27 +11023215,Can Gary Marcus Make AI More Human?,https://www.technologyreview.com/s/544606/can-this-man-make-aimore-human/,3,1,theunixbeard,2/2/2016 22:29 +10837833,Spacemacs 0.105.0 released,https://github.com/syl20bnr/spacemacs/releases/tag/v0.105.0,212,97,psibi,1/4/2016 19:24 +12243269,React Fiber Architecture,https://github.com/acdlite/react-fiber-architecture/blob/master/README.md,162,97,wanda,8/7/2016 19:26 +11518596,Browse Hacker News Like a Haxor,https://github.com/donnemartin/haxor-news,413,61,JasonNils,4/18/2016 9:08 +11664429,Forgotten Mayan city 'discovered' in Central America by 15-year-old,http://www.independent.co.uk/news/world/americas/forgotten-mayan-city-discovered-in-central-america-by-15-year-old-a7021291.html,6,1,triplesec,5/10/2016 0:38 +11480869,Show HN: Hackathons Easily Find Local and Global Hackathon Events,https://itunes.apple.com/us/app/hackathons-search-local-global/id1099019677?mt=8&ref=producthunt,3,1,Guled,4/12/2016 16:16 +12459779,Rare Footage of Pallass Cat Cubs in Mongolias Zoolon Mountains,http://voices.nationalgeographic.com/2016/09/01/rare-footage-of-pallass-cat-cubs-in-mongolias-zoolon-mountains/,82,11,pshaw,9/9/2016 5:15 +12459335,FAA Urges Passengers to Not Use Samsung Galaxy Note 7 on Planes,http://www.wsj.com/articles/faa-urges-passengers-to-not-use-samsung-galaxy-note-7-on-planes-1473381966,187,131,petethomas,9/9/2016 2:44 +12452428,"Once dismissed as fake, Maya calendar is Americas oldest manuscript",https://www.washingtonpost.com/news/morning-mix/wp/2016/09/08/once-dismissed-as-fake-maya-calendar-is-americas-oldest-manuscript-say-brown-university-scientists/,80,36,clarkevans,9/8/2016 12:46 +10441808,Quantum Link Online Community for the C64/128 (1985-1995),https://www.tinytickle.co.uk/quantum-link/,23,3,harel,10/23/2015 23:37 +12355775,Ask HN: Best place to find contracting gigs?,,2,2,bkovacev,8/24/2016 22:34 +12359305,Peter Thiel and Y Combinator fund a litigation financing startup,http://boingboing.net/2016/08/25/peter-thiel-y-combinator-fun.html,40,33,wiredfool,8/25/2016 14:36 +10965998,Show HN: Screen-Space Ambient Occlusion from Scratch 3D Shading on 2D Screen,https://github.com/MauriceGit/Screen_Space_Ambient_Occlusion,7,2,EllipticCurve,1/25/2016 7:04 +11257566,Turning two-bit doodles into fine artworks with deep neural networks,https://github.com/alexjc/neural-doodle,327,56,coolvoltage,3/10/2016 5:54 +10675764,"The Secret, Stressful Stories of Fossils",http://nautil.us/issue/31/stress/the-secret-stressful-stories-of-fossils,12,3,dnetesn,12/4/2015 11:45 +11500002,Thoughts about Pi,http://www.colorforth.com/pi.htm,36,11,wkoszek,4/14/2016 20:18 +12210453,"I used HTML Email when applying for jobs, heres how and why",https://dribbble.com/shots/2873870-HTML-Email-Cover-Letter,8,2,mwsherman,8/2/2016 15:03 +10442129,New optimization algorithm promises order-of-magnitude speedups on some problems,http://phys.org/news/2015-10-general-purpose-optimization-algorithm-order-of-magnitude-speedups.html,3,2,fspeech,10/24/2015 1:58 +10897491,Paribus (YC S15) saves you money when items you purchased online drop in price,https://www.yahoo.com/tech/just-saved-146-amazon-purchase-without-lifting-finger-191223254.html,64,48,ericglyman,1/13/2016 21:05 +11438044,Did Drupal and Drupalgeddon Lead to Panama Papers Leaks?,http://drupal.ovh/drupal-panama-papers-leaks-mossack-fonseca,8,11,tangue,4/6/2016 11:34 +10501477,"Leo P. Kadanoff, Physicist of Phase Transitions, Dies at 78",http://www.nytimes.com/2015/11/02/science/leo-p-kadanoff-physicist-of-phase-transitions-dies-at-78.html,32,1,espeed,11/3/2015 18:27 +12148304,Myfairtool trade show solution to assist exhibitors through their journey,http://www.myfairtool.com/Home.html,1,1,myfairtool,7/23/2016 4:12 +12080301,The World of Subversive Garfield Spinoffs,https://theawl.com/the-weird-wonderful-world-of-subversive-garfield-spinoffs-8d5d7a5bad99#.al1qfk1sw,180,73,samclemens,7/12/2016 16:18 +12325966,Ask HN: How to get lucky with Hacker News?,,4,8,abhishekdesai,8/20/2016 10:31 +11854576,Obscurity Is a Valid Security Layer,https://danielmiessler.com/study/security-by-obscurity/?fb_ref=wfGNVWZlpn-Hackernews,301,212,danielrm26,6/7/2016 14:06 +10574121,Linux has matured into a robust desktop operating system,http://liminality.xyz/year-of-the-linux-desktop/,54,87,dnantes,11/16/2015 12:58 +10546565,So Much for the Death of Sprawl: Americas Exurbs Are Booming,http://opportunityurbanism.org/2015/11/so-much-for-the-death-of-sprawl-americas-exurbs-are-booming/,7,15,acheron,11/11/2015 13:38 +10708789,Ask HN: Books about Infocom?,,2,2,douche,12/10/2015 4:00 +11260161,6 Ways That Machine Vision Can Help Museums,http://blog.cuseum.com/post/140786158798/6-ways-that-machine-vision-can-help-museums,5,1,tigrella,3/10/2016 16:33 +10515741,Growth of the Scientific Boundary,http://cole-maclean.github.io/,1,1,cole-maclean,11/5/2015 19:53 +10232769,Cross-VM RSA Key Recovery in a Public Cloud,http://eprint.iacr.org/2015/898,71,11,p4bl0,9/17/2015 11:52 +10462803,Cars That Talk to Each Other Are Much Easier to Spy On,http://www.wired.com/2015/10/cars-that-talk-to-each-other-are-much-easier-to-spy-on/,9,10,rl3,10/28/2015 4:11 +11195843,Comey seeks $85M boost for FBI cyber,https://fcw.com/articles/2016/02/25/fbi-cyber-budget.aspx,1,1,studentrob,2/29/2016 15:07 +10924349,Microsoft is bringing its famed Word Flow keyboard to the iPhone,http://www.windowscentral.com/microsoft-bringing-word-flow-keyboard-iphone,4,1,fgtx,1/18/2016 13:53 +11359915,People with names that break computers,http://www.bbc.com/future/story/20160325-the-names-that-break-computer-systems,254,272,Libertatea,3/25/2016 13:34 +10345777,Accelerated Mobile Pages Project,https://www.ampproject.org/,173,77,cbowal,10/7/2015 13:18 +11034962,Show HN: ScopeAround A Smart and Versatile Camera Like No Other Camera,https://www.kickstarter.com/projects/1005631155/scopearound-smart-and-versatile-wifi-video-camera,9,5,jacobxi,2/4/2016 16:20 +12504455,The ten years bug: solving a bug that wont go away,http://blog.getjaco.com/the-ten-years-bug-solving-a-bug-that-wont-go-away/,6,2,itayadler,9/15/2016 8:58 +10670130,Pervasive cross-correlations of various traits' genetics,http://drjamesthompson.blogspot.com/2015/11/genetic-story-jumps-ahead.html,3,1,gwern,12/3/2015 15:39 +12446912,The Apple Plug our lightest product ever,http://appleplugs.com,90,11,forrestbrazeal,9/7/2016 19:56 +11311870,PythonJobs.com,http://www.pythonjobs.com/,121,61,cmalpeli,3/18/2016 14:11 +12483570,Revolution in home improvement everything is exposed,http://www.checkpermits.com,3,1,klovski,9/12/2016 20:53 +12160039,Show HN: Freewrite know yourself through writing every day,https://www.freewrite.org,2,1,thisisgustav,7/25/2016 17:11 +11564268,A 16-bit computer made almost entirely from discrete electronic components,http://www.megaprocessor.com/,3,1,pavel_lishin,4/25/2016 14:09 +10369459,Push / Pop modal SFSafariViewController (Hacking swipe from edge gesture),http://www.stringcode.co.uk/push-pop-modal-sfsafariviewcontroller-hacking-swipe-from-edge-gesture/,2,1,davidbarker,10/11/2015 14:53 +11737543,"What Americans ate on an average day, for the past several decades",http://flowingdata.com/2016/05/17/the-changing-american-diet/,112,54,hokkos,5/20/2016 13:26 +11277912,Netflix crackdown on border hoppers could kill some unblocking companies,http://www.cbc.ca/news/business/netflix-crackdown-unblocking-1.3487368,98,131,empressplay,3/13/2016 15:05 +11394627,Google Little Box Challenge inverter design claims 10x power density improvement,http://www.power-eetimes.com/news/google-little-box-challenge-winning-inverter-design-claims-10x-power-density-improvement,8,1,mafuyu,3/31/2016 2:38 +10268281,Giraffe: Using Deep Reinforcement Learning to Play Chess,http://arxiv.org/abs/1509.01549,6,1,te,9/23/2015 21:13 +10211892,Show HN: Best places to work remotely by actual humans (not Foursquare),https://workfrom.co,17,9,darrenbuckner,9/13/2015 16:33 +11457080,Ask HN: How to make the podcast listening experience better?,,1,1,neilsharma,4/8/2016 19:12 +11639447,Ask HN: Is it better to apply as a dual iOS/Android developer or specialize?,,5,2,kirykl,5/5/2016 20:31 +11296439,FlappyBird hack using Deep Q-Learning,https://github.com/yenchenlin1994/DeepLearningFlappyBird,96,13,DaGardner,3/16/2016 11:20 +11392314,Show HN: Softwaremodelcanvas Calculate ROI for your app idea,http://softwaremodelcanvas.com,1,1,mhlavacka,3/30/2016 19:41 +11533927,Wheres Susi? Airborne Orangutan Tracking with Python and React.js,https://dirkgorissen.com/2016/04/19/wheres-susi-airborne-orangutan-tracking-with-python-and-react-js/,3,1,dgorissen,4/20/2016 12:45 +12150940,Overview of all Amazon AWS APIs,http://aws-api.info/,171,29,nl5887,7/23/2016 20:46 +11260741,Millions of Ordinary Americans Support Donald Trump. Here's Why,http://www.theguardian.com/commentisfree/2016/mar/07/donald-trump-why-americans-support,5,1,mthomas,3/10/2016 18:02 +10715928,Skyscraper-style chip design boosts electronic performance,http://news.stanford.edu/news/2015/december/n3xt-computing-structure-120915.html,57,13,ingve,12/11/2015 7:58 +11948001,The most advanced backup camera by ex-Apple team,https://pearlauto.com/,2,1,tatoalo,6/21/2016 18:13 +10944008,"Soundnode Desktop SoundCloud App Built with NW.js, Angular.js and Soundcloud API",http://www.soundnodeapp.com/,4,3,somecoder,1/21/2016 8:08 +11851774,Daniel J. Bernstein: The death of due process,https://blog.cr.yp.to/20160607-dueprocess.html,26,4,Jerry2,6/7/2016 1:19 +11142877,Security without Identification (1985) [pdf],http://www.cs.ru.nl/~jhh/pub/secsem/chaum1985bigbrother.pdf,20,1,raldu,2/21/2016 1:37 +11532742,Control and monitor React Native apps from the comfort of your console,https://github.com/skellock/reactotron,4,1,skellock,4/20/2016 7:06 +11185743,The Lost Tombs of Oman,https://maptia.com/oriolalamany/stories/the-forgotten-tower-tombs-of-oman,123,15,samsolomon,2/27/2016 2:18 +11633650,Zynga Now Worth Less Than Its Own Office Building [Halting Problem],https://medium.com/halting-problem/zyngas-offices-now-worth-more-than-zynga-the-company-47a704d48249,13,7,jychang,5/5/2016 2:44 +11015335,"YouTube is not liable for pirating users, court rules",https://torrentfreak.com/youtube-is-not-liable-for-pirating-users-court-rules-160201/,3,1,DiabloD3,2/1/2016 20:53 +11257534,Employees Leave Good Bosses Nearly as Often as Bad Ones [HBR],https://hbr.org/2016/03/employees-leave-good-bosses-nearly-as-often-as-bad-ones,1,1,r0n0j0y,3/10/2016 5:39 +12439357,Tell HN: Secure email provider Riseup will run out of money next month,,57,3,z0a,9/6/2016 21:17 +12270523,Houston Based Start Ups?,,2,3,JohnLamb,8/11/2016 18:22 +12220006,Neat Trick to make regression models robust,https://blog.clevertap.com/a-neat-trick-to-increase-robustness-of-regression-models/,11,2,jacjose55,8/3/2016 17:55 +10371253,"Show HN: Demo of live container migration using Virtualbox, Vagrant and ShutIt",https://zwischenzugs.wordpress.com/2015/10/11/docker-migration-in-flight-criu/,25,5,zwischenzug,10/11/2015 21:56 +11682096,Traffic Laundering: How Google Finances Piracy with Its Clients' Money,https://kalkis-research.com/traffic-laundering-how-google-finances-piracy-with-its-clients-money,19,7,skuas,5/12/2016 8:26 +10823090,Shields Down,http://randsinrepose.com/archives/shields-down/,11,2,filament,1/1/2016 19:53 +10334461,Google Invests in Wall Street Messaging Tool Symphony,http://techcrunch.com/2015/10/05/report-google-invests-in-wall-street-messaging-tool-symphony/,3,1,anmilo,10/5/2015 20:02 +12060154,Post Ghost Shutdown: An Open Letter to Twitter,http://postghost.com/Home/Shutdown/,239,82,doctorshady,7/9/2016 4:52 +10581299,Num command new tool for simple statistics,,11,4,jph,11/17/2015 14:43 +10627724,This is the group thats surprisingly prone to violent extremism,https://www.washingtonpost.com/news/monkey-cage/wp/2015/11/17/this-is-the-group-thats-surprisingly-prone-to-violent-extremism/,7,16,tdurden,11/25/2015 15:50 +11565530,"Googles Remarkably Close Relationship with the Obama White House, in Two Charts",https://theintercept.com/2016/04/22/googles-remarkably-close-relationship-with-the-obama-white-house-in-two-charts/,73,10,danielam,4/25/2016 16:52 +10719197,Ask HN: How do you focus if you work online?,,12,18,josephjrobison,12/11/2015 19:18 +10680599,Transition to Python4 won't be like Python3(we've learned our lesson),https://mail.python.org/pipermail/python-dev/2015-December/142361.html,11,1,angadsg,12/5/2015 2:59 +11021463,"Out of a Rare Super Bowl I Recording, a Clash with the N.F.L. Unspools",http://www.nytimes.com/2016/02/03/sports/football/super-bowl-i-recording-broadcast-nfl-troy-haupt.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=second-column-region®ion=top-news&WT.nav=top-news,66,67,BWStearns,2/2/2016 18:46 +11403120,"Go Proverbs: Simple, Poetic, Pithy",http://go-proverbs.github.io/,111,44,smegel,4/1/2016 6:46 +10509146,GNU Guile 2.1.1 released,https://lists.gnu.org/archive/html/guile-devel/2015-11/msg00007.html,174,36,davexunit,11/4/2015 19:54 +10752503,Toxic Firefighting Foam Has Contaminated U.S Drinking Water,https://theintercept.com/2015/12/16/toxic-firefighting-foam-has-contaminated-u-s-drinking-water-with-pfcs/,2,1,pavornyoh,12/17/2015 16:42 +12294193,The SEC has temporarily halted trading of Neuromama Ltd.,https://www.bloomberg.com/news/articles/2016-08-15/a-35-billion-stock-was-just-halted-on-manipulation-concerns,175,132,peterjliu,8/15/2016 23:06 +11654521,Why It's Not Academia's Job to Produce Code That Ships,http://jxyzabc.blogspot.com/2016/05/why-its-not-academias-job-to-produce.html,3,2,nkurz,5/8/2016 15:59 +10707264,Rising morbidity and mortality in midlife among white non-Hispanic Americans,http://www.pnas.org/content/112/49/15078.full.pdf?,19,6,networked,12/9/2015 22:33 +10518061,American Apparel Founder Says He's Broke and Can't Afford Lawyer,http://www.bloomberg.com/news/articles/2015-11-05/american-apparel-founder-says-he-s-broke-and-can-t-afford-lawyer,1,1,pavornyoh,11/6/2015 6:13 +11430204,Is It Rude to Touch a Robots Butt?,http://motherboard.vice.com/read/is-it-rude-to-touch-a-robots-butt,2,2,chippy,4/5/2016 13:35 +11455343,Panama Papers Reveal Clintons Kremlin Connection,http://observer.com/2016/04/panama-papers-reveal-clintons-kremlin-connection/,103,77,kushti,4/8/2016 15:29 +11283566,Why Six Hours of Sleep Is as Bad as None at All,https://www.fastcompany.com/3057465/how-to-be-a-success-at-everything/why-six-hours-of-sleep-is-as-bad-as-none-at-all,14,6,randomname2,3/14/2016 15:57 +11009553,Ask HN: Are my dreams just that?,,4,5,_spoonman,2/1/2016 3:33 +12372298,"G.E., the 124-Year-Old Software Start-Up",http://nytimes.com/2016/08/28/technology/ge-the-124-year-old-software-start-up.html?referer=,115,130,petethomas,8/27/2016 13:41 +11803055,"Bitcoin price jumps 21 percent over 4 days, reaching a 21-month high",http://techcrunch.com/2016/05/30/bitcoin-price-jumps-21-percent-over-4-days-reaching-a-21-month-high/,11,8,chewymouse,5/30/2016 20:40 +12337472,Kobe Bryant and Jeff Stibel Unveil $100M Venture Capital Fund,http://www.wsj.com/articles/kobe-bryant-and-jeff-stibel-unveil-100-million-venture-capital-fund-1471838403,70,17,dacm,8/22/2016 16:32 +10508524,My work at GCHQ and the surveillance myths that need busting,http://www.theguardian.com/uk-news/2015/nov/04/gchq-officer-my-work-surveillance-myths-need-busting,13,5,tangental,11/4/2015 18:33 +11255680,The Zen of Missing Out on the Next Great Programming Tool,http://thepracticaldev.com/the-zen-of-missing-out-on-the-next-great-programming-tool,36,18,infodroid,3/9/2016 20:55 +12521108,Hackbook Elite demo,https://hackbook.co/pages/demo,1,1,alex88,9/17/2016 16:19 +11272979,Wintergarten Marble Machine (Programmable Instrument Using Marbles),https://www.youtube.com/watch?v=IvUU8joBb1Q,4,1,cyphar,3/12/2016 14:25 +12456065,Researchers discover there are not one but four species of giraffe,https://www.theguardian.com/environment/2016/sep/08/researchers-discover-there-are-not-one-but-four-species-of-giraffe,1,1,AstroJetson,9/8/2016 18:52 +12052171,This is what Bitcoin is,https://yanisvaroufakis.eu/2013/04/22/bitcoin-and-the-dangerous-fantasy-of-apolitical-money/,1,1,jomamaxx,7/7/2016 21:24 +12489813,"U.S. Household Income Grew 5.2% in 2015, Breaking Pattern of Stagnation",http://www.nytimes.com/2016/09/14/business/economy/us-census-household-income-poverty-wealth-2015.html,5,1,binalpatel,9/13/2016 16:28 +12052186,Show HN: Adding List Comprehension in Java - ExprEngine,https://github.com/yuemingl/ExprEngine,1,3,nathanliu09,7/7/2016 21:27 +11186936,[Challenge] Sorting algorithm with constraints,,2,2,davidplatt,2/27/2016 12:37 +10425097,Docker Acquires Tutum,http://blog.docker.com/2015/10/docker-acquires-tutum/,197,65,samber,10/21/2015 13:04 +11842301,Nick Farr's 30c3 Jake Appelbaum story of abuse and harassment,https://medium.com/@nickf4rr/hi-im-nick-farr-nickf4rr-35c32f13da4d#.uzs72fnhp,239,101,rdl,6/5/2016 18:25 +12402941,Docker Swarm Visualizer,https://github.com/ManoMarks/docker-swarm-visualizer,84,6,nwrk,9/1/2016 3:32 +11128150,Online backups for the truly paranoid,http://www.tarsnap.com/,4,7,nodivbyzero,2/18/2016 18:43 +11933703,DAO Counter-Attack,https://blog.slock.it/a-dao-counter-attack-613548408dd7#.qt9nm1yc5,2,2,jarsin,6/19/2016 17:15 +10272523,Ask HN: What is the worst codebase you have ever seen?,,3,1,shubhamjain,9/24/2015 16:24 +11394807,Numerous service errors on AWS today,http://status.aws.amazon.com/?Mar30,23,11,lenova,3/31/2016 3:32 +11256602,WeWork raises $780M at $16B valuation,http://fortune.com/2016/03/09/wework-is-raising-780-million-at-a-huge-valuation/,10,1,foobarqux,3/10/2016 0:16 +12533079,Why Should I Care What Color the Bikeshed Is? (1999),http://bikeshed.org/,105,52,shockwavecs,9/19/2016 17:29 +11516838,Netherlands looks to ban sale of all non-electric cars by 2025,http://www.csmonitor.com/Environment/2016/0414/Netherlands-looks-to-ban-all-non-electric-cars-by-2025,3,1,kevindeasis,4/17/2016 23:25 +10432597,Public CDN traffic and performance stats,http://www.jsdelivr.com/statistics,9,1,jimaek,10/22/2015 15:01 +12098978,Cloudflare CEO on whether Airtel is sniffing data packets to block websites,http://www.medianama.com/2016/07/223-cloudflare-ceo-matthew-prince-airtel-sniffing-data-packets/,12,3,nithinr6,7/15/2016 4:44 +11704378,Network Monitoring Tools,https://www.slac.stanford.edu/xorg/nmtf/nmtf-tools.html,31,6,kercker,5/16/2016 5:13 +12224760,"List of SaaS, PaaS and IaaS for devops/infradev with free plans",https://github.com/ripienaar/free-for-dev,2,1,aram,8/4/2016 11:19 +12524239,Who designed the WikiLeaks logo? Design history,http://mthvn.tumblr.com/post/44663892003/wikileaksemblemandvoid,2,1,vog,9/18/2016 6:51 +10612105,Show HN: Wox an open source launcher for windows inspired by Alfred and Launchy,https://www.getwox.com/,54,19,ishu3101,11/23/2015 0:06 +10894566,Clojure Technology Radar,https://juxt.pro/radar.html,31,2,brucehauman,1/13/2016 14:41 +10987710,Show HN: GIFscore A new way to share the game,http://www.gifscore.me,1,1,stagename,1/28/2016 12:11 +10680338,Yahoo CEO Marissa Mayer Has an Insane Severance Package,http://fortune.com/2015/12/04/yahoo-marissa-mayer-severance/,2,2,smacktoward,12/5/2015 1:17 +10683513,Ricardo's Difficult Idea (1998),http://web.mit.edu/krugman/www/ricardo.htm,18,3,gwern,12/5/2015 22:32 +11223665,How Duolingo got 110M users without spending on marketing,https://www.techinasia.com/how-duolingo-got-110-million-users,158,63,vmalu,3/4/2016 13:54 +12279474,Ask HN: Your optimal way to start Computer Science?,,1,2,adidum,8/12/2016 23:28 +11093493,Kip Thorne: The Man Who Imagined Wormholes and Schooled Hawking (2007),http://discovermagazine.com/2007/nov/the-man-who-imagined-wormholes-and-schooled-hawking/,28,6,kercker,2/13/2016 10:49 +11756520,San Francisco Real Estate: $400 to Live in a Box Inside a Living Room,http://www.gq.com/story/san-francisco-box-apartment,9,1,mgdo,5/23/2016 20:08 +10971326,Arista is just a few months from an exclusion of their products entering the USA,http://blogs.cisco.com/news/protecting-innovation-cisco-seeks-only-fair-competition,6,4,rmdoss,1/26/2016 1:27 +10569532,We dissent,http://claremontindependent.com/we-dissent/,211,124,zabramow,11/15/2015 13:22 +12223561,Nervous about nukes again? Heres what you need to know about the Button,https://www.washingtonpost.com/lifestyle/style/nervous-about-nukes-again-heres-what-you-need-to-know-about-the-button-there-is-no-button/2016/08/03/085558b6-4471-11e6-8856-f26de2537a9d_story.html,49,67,mysterypie,8/4/2016 5:24 +11777120,Futures for C++11,https://code.facebook.com/posts/1661982097368498/futures-for-c-11-at-facebook/,3,1,indatawetrust,5/26/2016 11:33 +10980182,Visualizing HipHop trends from 1989 2015,http://poly-graph.co/hiphop/,19,6,max_,1/27/2016 14:39 +10887692,Consumerized Enterprise Software Improves Business Agility by 70%,https://www.shopify.com/enterprise/84435398-the-consumerization-of-enterprise-software,1,1,dingodoo,1/12/2016 14:50 +10985676,Satifer is redesigning interaction with academic publications (we're hiring),http://satifer.com,2,1,Satifer,1/28/2016 2:27 +10971943,A Slack channel for software managers and leads,http://marcusblankenship.com/software-manager-slack,2,1,marcuscreo,1/26/2016 5:18 +10550025,"US tries, and fails, to block import of digital data that violates patents",http://arstechnica.com/tech-policy/2015/11/us-tries-and-fails-to-block-import-of-digital-data-that-violates-patents/,46,2,pavornyoh,11/11/2015 23:01 +11006358,Sweden Caught Censoring the Internet 1984 Style,http://www.dangerandplay.com/2016/01/29/sweden-caught-censoring-the-internet-1984-style/,5,2,cabalamat,1/31/2016 13:46 +11708354,"Ask HN: If you could restart your current project, what would you do different?",,10,9,hoodoof,5/16/2016 18:20 +10368973,The rise of the digilantes,http://fusion.net/story/209356/online-vigilantes/,12,1,fraqed,10/11/2015 11:45 +11976696,"Real scalability is hard, aka there are no silver bullets",http://scalability.org/2016/06/real-scalability-is-hard-aka-there-are-no-silver-bullets/,1,1,yarapavan,6/25/2016 15:43 +10929754,Twitter goes titsup,http://www.theregister.co.uk/2016/01/19/twitter_is_down/,4,1,munkiepus,1/19/2016 10:23 +11533905,Stack Overflow TOS prohibited for users to scrape dev profiles to spam them,https://meta.stackexchange.com/questions/277369/a-terms-of-service-update-restricting-companies-that-scrape-your-profile-informa,7,1,56k,4/20/2016 12:41 +10309905,A new exploit makes it simple to bypass OS X's security protections,http://arstechnica.com/security/2015/09/drop-dead-simple-exploit-completely-bypasses-macs-malware-gatekeeper/,4,1,ogezi,10/1/2015 8:26 +10405327,6 Quick Life Hacks to Improve Your Day,http://www.inc.com/john-rampton/6-quick-life-hacks-to-improve-your-day.html,1,2,stasmatv,10/17/2015 17:50 +10453728,Can you be added to a watchlist for playing a video game?,https://playtopsecret.com/topsecret/2015/10/08/can-you-be-added-to-watchlist.html,45,48,room271,10/26/2015 19:16 +10186644,Big Med (2012),http://www.newyorker.com/magazine/2012/08/13/big-med,14,1,tptacek,9/8/2015 16:27 +12274999,Happy 10th birthday pandoc,https://groups.google.com/forum/#!topic/pandoc-discuss/0rutNJAVKoc,227,43,psibi,8/12/2016 12:21 +11084858,Troll hunter: Twitter cracks down on abuse with new trust and safety group,http://www.zdnet.com/article/troll-hunter-twitter-cracks-down-on-abuse-with-new-trust-and-safety-group/,1,1,tim333,2/12/2016 2:09 +11449301,Facebook's copy and crush playbook,https://pando.com/2016/04/07/inside-facebooks-copy-and-crush-playbook/e452eb71cd4105cd4f23fea335f21004f1d917ac/,11,1,sajid,4/7/2016 18:10 +12397376,My Dead Girlfriend's Bot,https://medium.com/@fireland/my-dead-girlfriends-bot-9dc6a2f55ce3#.s0svli4hc,2,1,sleepychu,8/31/2016 11:02 +11143424,Monetising a travel guide website divereport.com,,2,2,natetan,2/21/2016 5:21 +10726624,US town rejects solar panels fearing they 'suck up all the energy from the sun',http://www.independent.co.uk/news/world/americas/us-town-rejects-solar-panels-amid-fears-they-suck-up-all-the-energy-from-the-sun-a6771526.html,27,12,davidbarker,12/13/2015 15:55 +10899335,Stop Buying Real Estate (in SF),https://medium.com/@alexanderbcampbell/stop-buying-real-estate-in-sf-8c019897469,3,1,rafaelc,1/14/2016 2:47 +12098893,This Hyperloop co-founder battle is simply crazy,https://www.wired.com/2016/07/hyperloop-lawsuit-brogan-bambrogan-shervin-pishevar/,15,1,bw255,7/15/2016 4:11 +12062985,I have nothing to hide,https://medium.com/@cjdelisle/i-have-nothing-to-hide-10059deda355,17,3,Kubuxu,7/9/2016 19:50 +10956890,Clinkle Up in Smoke as Investors Want Their Money Back,http://www.forbes.com/sites/ryanmac/2016/01/22/clinkle-up-in-smoke-as-investors-want-their-money-back/#7e091e6f35b6,7,1,Jerry2,1/23/2016 2:21 +11812223,NASA releases 56 previously patented technologies,http://futurism.com/jackpot-nasa-just-released-56-patented-technologies-public-domain/,2,1,Schwolop,6/1/2016 5:27 +12512829,Swedish court upholds Assange arrest warrant,http://www.reuters.com/article/us-ecuador-sweden-assange-idUSKCN0YG11N,46,124,ramblenode,9/16/2016 9:37 +12098374,Ask HN: Hardware support for garbage collection by mainstream CPUs?,,3,2,dgudkov,7/15/2016 1:07 +11832038,Show HN: Web Based Kong API Gateway Manager,https://apiplug.com/kong-manager,8,1,deviloflaplace,6/3/2016 18:04 +11031518,Winning Hyperloop design revealed by MIT engineers,http://www.bbc.com/news/technology-35481976,146,119,goodcanadian,2/4/2016 2:08 +12472671,On the Insecurity of Whitelists and the Future of Content Security Policy [pdf],https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/45542.pdf,33,9,nsgi,9/11/2016 9:51 +10447885,Taxi groups unite to fight Uber,http://www.ft.com/cms/s/0/bb5fa9ee-78e7-11e5-933d-efcdc3c11c89.html#axzz3pbhGudt8,1,1,robk,10/25/2015 18:55 +11654545,Why Is Infant Mortality Higher in the United States Than in Europe?,http://pubs.aeaweb.org/doi/pdfplus/10.1257/pol.20140224,4,5,modanq,5/8/2016 16:06 +11128938,Junior Front End Development Coaching and Mentoring for Free,http://mrfrontend.nl/,3,5,rsschouwenaar,2/18/2016 20:15 +10608062,Landlocked Islanders,http://www.hakaimagazine.com/article-long/landlocked-islanders,22,14,Thevet,11/21/2015 21:16 +11165134,Ask HN: Why don't default camera apps scan QR Codes by default?,,1,7,wirddin,2/24/2016 7:26 +11072712,A data driven argument on why Marc Andreessen is wrong about Free Basics,https://medium.com/@sumanthr/a-data-driven-argument-on-why-marc-andreessen-is-wrong-about-free-basics-c472184b9682,37,1,jace,2/10/2016 13:58 +12105148,Another Kind of JavaScript Fatigue,http://chrismm.com/blog/the-other-kind-of-javascript-fatigue/?,9,2,JacksCracked,7/16/2016 3:44 +10685949,IMP: Indirect Memory Prefetcher [pdf],http://people.csail.mit.edu/devadas/pubs/imp.pdf,11,1,ingve,12/6/2015 18:07 +11283882,Whatsapp encrypted voice chat is coming soon,http://www.engadget.com/2016/03/14/whatsapp-encrypted-voice-chat-is-reportedly-coming-soon/,1,1,jimschley,3/14/2016 16:52 +11535695,Apply HN: WiseGuy Solving a problem of most Hacker News users: Too much to read,https://medium.com/@ApplyHN/apply-hn-wiseguy-solving-the-problems-of-every-hacker-news-user-have-someone-read-your-articles-334278913c84#.1n15mt4tz,57,34,abhi3,4/20/2016 16:44 +12388370,Facebook recommended that a psychiatrists patients friend each other,http://fusion.net/story/339018/facebook-psychiatrist-privacy-problems/,346,220,deep_attention,8/30/2016 8:39 +10327523,Typebase.css: Simplified typography for the web,https://github.com/devinhunt/typebase.css,94,22,as1ndu,10/4/2015 14:02 +11520833,The GPL Is Almost an All Writs Canary,http://2d.laboratorium.net/post/142848414775/the-gpl-is-almost-an-all-writs-canary,2,1,fpgeek,4/18/2016 15:47 +11909388,Ask HN: Protecting database information?,,1,9,tixocloud,6/15/2016 14:08 +11933370,Bought and returned set of WiFi home security cameras; can now watch new owner,https://www.reddit.com/r/privacy/comments/4ortwb/i_bought_and_returned_a_set_of_wifi_connected/,454,150,tshtf,6/19/2016 15:54 +11386590,Org Mode for Emacs Your Life in Plain Text,http://orgmode.org/,344,205,grhmc,3/30/2016 2:35 +11485255,New Evidence on When Bible Was Written,http://www.nytimes.com/2016/04/12/world/middleeast/new-evidence-onwhen-bible-was-written-ancient-shopping-lists.html,79,112,adamsi,4/13/2016 2:23 +10802193,Mall of America Security Catfished Black Lives Matter Activists,https://theintercept.com/2015/03/18/mall-americas-intelligence-analyst-catfished-black-lives-matter-activists-collect-information/,2,1,sehugg,12/28/2015 17:29 +10846423,"EC2 Price Reduction (C4, M4, and R3 Instances)",https://aws.amazon.com/blogs/aws/happy-new-year-ec2-price-reduction-c4-m4-and-r3-instances/,174,97,jeffbarr,1/5/2016 22:05 +12231938,"Sorry, folks. The LHC didn't find a new particle after all",http://www.wired.com/2016/08/sorry-folks-lhc-didnt-find-new-particle,4,1,user_235711,8/5/2016 13:02 +10653993,Which replacement for Heroku in east coast US?,,3,1,fxtentacle,12/1/2015 6:57 +11053000,Aber Warum? (2015),http://www.maydaypress.com/blog/files/Opinions%20from%20Africa.html,45,6,tokai,2/7/2016 14:53 +11522802,Checking Up on Dataflow Analyses,http://blog.regehr.org/archives/1388,50,3,ingve,4/18/2016 20:09 +11927925,Amazon is preparing to launch streaming music service sources,http://www.reuters.com/article/us-amazon-com-music-exclusive-idUSKCN0YW28U,50,29,sazibtg,6/18/2016 10:56 +10988930,RabbitMQ Internals,https://github.com/rabbitmq/internals/,253,12,blopeur,1/28/2016 16:01 +10244525,Silicon Valleys Economic Indicator: Caltrain Ridership,http://blogs.wsj.com/digits/2015/09/18/silicon-valleys-economic-indicator-caltrain-ridership/,10,1,prostoalex,9/19/2015 15:34 +10789170,Russia's leading expert on criminal tattoos,http://siberiantimes.com/other/others/features/f0195-the-man-who-reads-the-criminal-mind-by-analysing-convicts-tattoos/,129,32,rvikmanis,12/24/2015 18:42 +10204523,?Mozilla quietly deploys built-in Firebox advertising,http://www.zdnet.com/article/mozilla-gets-built-in-firebox-advertising-rolling/,23,10,tanglesome,9/11/2015 16:13 +10893677,50 terms most predictive of a submission making it to the front page,,10,6,baccheion,1/13/2016 11:57 +10963257,"As Zika virus spreads, El Salvador asks women not to get pregnant until 2018",https://www.washingtonpost.com/world/the_americas/as-zika-virus-spreads-el-salvador-asks-women-not-to-get-pregnant-until-2018/2016/01/22/1dc2dadc-c11f-11e5-98c8-7fab78677d51_story.html?tid=pm_world_pop_b,148,55,muriithi,1/24/2016 17:58 +11040966,Hackestimate Open Source Tools for Hackathon Organizers,,5,1,ayush29feb,2/5/2016 12:33 +11254334,Video Shows Google Self-Driving Car Hit Bus,https://www.youtube.com/watch?v=1WpJwvCSP_4,3,1,danso,3/9/2016 17:36 +12312018,"The case for making New York and San Francisco much, much bigger",http://www.vox.com/a/new-economy-future/big-cities,63,110,dctoedt,8/18/2016 12:42 +10650595,Killing SEO by Using Angular,http://www.searchenginejournal.com/warning-youre-killing-seo-efforts-using-angular-js/142031/,30,15,jmngomes,11/30/2015 17:35 +10894366,Ask HN: Programmers of HN What do you think of podcasting?,,1,2,jeshan25,1/13/2016 14:17 +11996487,The Physics of Tea Leaves Floating Upstream,http://nautil.us/blog/the-strange-physics-of-tea-leaves-floating-upstream,18,1,dnetesn,6/28/2016 18:58 +11764132,"Will Switzerland give every adult $2,500 a month?",http://money.cnn.com/2016/05/24/news/economy/switzerland-guaranteed-basic-income/index.html,3,4,apo,5/24/2016 18:17 +10886162,Digging Deeper into Vivian Maier's Past,http://lens.blogs.nytimes.com/2016/01/12/digging-deeper-into-vivian-maiers-past/,25,1,aaronbrethorst,1/12/2016 8:12 +12252112,PostgreSQL Index Internals,https://www.pgcon.org/2016/schedule/events/934.en.html,211,21,snaga,8/9/2016 2:09 +10457953,Processed meats causes cancer in humans,http://www.thelancet.com/journals/lanonc/article/PIIS1470-2045(15)00444-1/fulltext,3,1,artur_makly,10/27/2015 13:52 +10944672,How I came across thousands of Facebook passwords,https://medium.com/@rukshan/how-i-stumbled-upon-thousands-of-facebook-passwords-fa85236968a4#.kpxcjerc6,8,2,rukshn,1/21/2016 12:06 +11052805,"[Ubuntu]if you do this sudo chmod 777 -R /etc,recovery is by reinstallation only",,2,1,sunasra,2/7/2016 13:45 +10679054,Is YCombinator astroturfing now?,,1,2,richm44,12/4/2015 20:51 +11503741,COMEFROM,https://en.wikipedia.org/wiki/COMEFROM,1,1,bpierre,4/15/2016 12:32 +11563203,India cancels visa for dissident Uyghur leader Dolkun Isa,http://www.gullutube.pk/watch/1trItRbU9dI,2,1,mtahaalam,4/25/2016 9:17 +11997434,5 lessons in object-oriented design from Sandi Metz,https://18f.gsa.gov/2016/06/24/5-lessons-in-object-oriented-design-from-sandi-metz/,2,1,ingve,6/28/2016 20:47 +10314993,IBM's Watson is starting to be tested in the real world,http://www.economist.com/news/science-and-technology/21669609-watson-ibms-attempt-crack-market-artificial-intelligence-starting,19,1,edward,10/1/2015 21:46 +12304904,An Insider's Unvarnished Take on Facebook's Ad Business,http://adexchanger.com/platforms/chaos-monkeys-author-garcia-martinez-insiders-unvarnished-take-facebooks-ad-business/,10,2,jgalt212,8/17/2016 14:24 +11918322,Ask HN: Any thoughts on Death Stranding?,,1,1,Vivavidaloca,6/16/2016 19:35 +10232502,Strava users remain frustrated by switch from Google Maps to OpenStreetMap,http://cyclingtips.com.au/2015/09/strava-users-remain-frustrated-by-switch-from-google-maps-to-openstreetmap/,4,2,chippy,9/17/2015 10:23 +10443779,Ask HN: Does anyone use Linode but is not using all the available bandwidth?,,2,5,forcer,10/24/2015 14:58 +12096469,The L.E.D. Quandry: Why There's No Such Thing As Built To Last,http://www.newyorker.com/business/currency/the-l-e-d-quandary-why-theres-no-such-thing-as-built-to-last,52,13,djrogers,7/14/2016 19:13 +10920429,UCI Machine Learning Repository,http://archive.ics.uci.edu/ml/datasets.html,69,14,Jasamba,1/17/2016 18:49 +12466192,DEFCon24 Talks (all published so far),https://www.youtube.com/watch?v=orWqKWvIW_0&index=1&list=PL7gTU7vlLWKN-ca2ha0cYJBpR_pQKvMfa,4,1,the_duke,9/9/2016 21:29 +12339293,Design Your Own Dream Subway Line ConnectSF from City of San Francisco,http://connectsf.org/components/subway-vision/,1,3,capkutay,8/22/2016 20:45 +12061177,David Beazley Python Concurrency from the Ground Up: Live PyCon 2015,https://www.youtube.com/watch?v=MCs5OvhV9S4,2,1,bakery2k,7/9/2016 13:05 +12090540,Ask HN: Is there an open source license that requires you share data collected?,,10,8,andrewtbham,7/13/2016 23:25 +11515325,Ask HN; What s the most stable linux desktop environment?,,2,3,mixmax,4/17/2016 17:23 +10842572,Why I Don't Write for Medium,http://medium.com/joe_wegner/why-i-dont-write-for-medium-c7cc156bc5d9,8,2,enginn,1/5/2016 10:58 +11347191,How We Handled User Auth with React Native,http://code.hireart.com/2016/03/22/react-native-user-login-and-fb-login/,7,1,tomtang2,3/23/2016 18:53 +10283677,Redesigning a model of Tyrannosaurus Rex,http://saurian.maxmediacorp.com/?p=553,1,1,Turukawa,9/26/2015 17:21 +10936864,How Much Would Donald Trump's American-Made iPhone Actually Cost?,http://motherboard.vice.com/read/how-much-would-donald-trumps-american-made-iphone-actually-cost,2,2,aceperry,1/20/2016 9:20 +12380589,Show HN: Instant Optimizely for CMS,https://instant.cm/,2,4,neogenix,8/29/2016 7:40 +12032708,Ask HN: Why it is seemingly hard to break duopolies in hardware?,,14,8,speeder,7/4/2016 20:02 +12100840,Particle Love,http://edankwan.com/experiments/particle-love/,2,1,indatawetrust,7/15/2016 13:41 +12124547,PunkProgramming Looking for people who want to start coding,,1,1,kaiwarina,7/19/2016 20:17 +11035062,Uber haunted by the ghost of Flash: your app doesnt need an intro,https://medium.com/swlh/uber-haunted-by-the-ghost-of-flash-your-app-doesn-t-need-an-intro-40158a49ca26,2,1,pavlov,2/4/2016 16:30 +11615872,"Show HN: BlackstarCMS API-first, headless CMS built for developers",http://demo.blackstarcms.net/,1,4,liammclennan,5/2/2016 21:35 +12203508,Lonely programmer detective uncovers the Mozilla JavaScript coercion conspiracy,http://stackoverflow.com/a/38677222/984780,29,8,luisperezphd,8/1/2016 16:07 +11675244,How I Stopped the NYPD from Wrongly Ticketing Millions of $/yr Using Open Data,http://iquantny.tumblr.com/post/144197004989/the-nypd-was-systematically-ticketing-legally,20,1,iquantny,5/11/2016 13:52 +10907298,Intel Software Guard Extensions Memory Encryption Engine,https://drive.google.com/file/d/0Bzm_4XrWnl5zOXdTcUlEMmdZem8/edit,81,52,mrb,1/15/2016 5:01 +11806984,Kraftwerk lawsuit in Germany rules artistic freedom trumps Copyright,http://pitchfork.com/news/65839-kraftwerk-lose-hip-hop-copyright-case/,4,1,6stringmerc,5/31/2016 15:14 +12490317,Vectr is out of Beta,https://vectr.com/blog/updates/vectr-comes-out-of-beta/,24,7,marban,9/13/2016 17:18 +12567446,Anomaly Updates,http://www.spacex.com/news/2016/09/01/anomaly-updates#,118,81,yread,9/23/2016 19:49 +10195377,Codecademy is $19.99 a month now,https://www.codecademy.com/pro/setup/payment,3,2,steamble,9/9/2015 23:46 +10563532,Formula for Pi discovered in Hydrogen,http://www.rochester.edu/newscenter/discovery-of-classic-pi-formula-a-cunning-piece-of-magic-128002/,3,1,vermilingua,11/14/2015 0:24 +10541359,Tumblr Rolls Out Instant Messaging on Both Web and Mobile,http://techcrunch.com/2015/11/10/tumblr-rolls-out-instant-messaging-on-both-web-and-mobile/,17,8,jsnathan,11/10/2015 18:41 +10405256,Introducing the Steam Link,https://www.youtube.com/watch?v=mraRO_BNQG4,2,1,jagger27,10/17/2015 17:36 +10650053,Efficient parameter pack indexing in C++,http://ldionne.com/2015/11/29/efficient-parameter-pack-indexing/,20,8,ingve,11/30/2015 16:05 +10304988,3 things that weren't leaked before the Google Nexus announcement,http://www.networkworld.com/article/2987667/android/google-nexus-smartphones-announcement-chromecast-tv-audio.html?nsdr=true,1,1,stevep2007,9/30/2015 16:14 +10292583,Is Facebook Down Google Trends,http://www.google.com/trends/explore?hl=en-US#q=%22is%20facebook%20down%22&date=now%207-d&cmpt=q&tz=Etc%2FGMT%2B4,8,3,johnsho,9/28/2015 19:35 +11380973,Older programmer's plight working in a startup,https://www.reddit.com/r/cscareerquestions/comments/4caue0/older_guy_new_job_at_startup_is_taking_its_toll/,13,1,S4M,3/29/2016 12:40 +11073662,Blood Tests Can't Tell Who's Really Too Stoned to Drive,http://www.npr.org/sections/health-shots/2016/02/09/466147956/why-its-so-hard-to-make-a-solid-test-for-driving-while-stoned,2,3,ohjeez,2/10/2016 16:13 +11274792,Our 36 Hours on Show HN,https://medium.com/@justinlaing/our-36-hours-on-show-hn-34d47b6b56ee#.k9a8i7pt4,5,4,justinlaing,3/12/2016 21:57 +10711382,Theremin's Bug: How the Soviet Union Spied on the US Embassy for 7 Years,http://hackaday.com/2015/12/08/theremins-bug/,10,1,rwmj,12/10/2015 16:19 +11408447,Spaced repetition and practice,http://experiments.oskarth.com/srspractice/,114,24,oskarth,4/1/2016 20:42 +10402135,Decentralized Reputation Part 2,https://blog.openbazaar.org/decentralized-reputation-part-2/,37,4,edward,10/16/2015 21:32 +10837366,Ask HN: How does a junior engineer plan for a managment position?,,8,12,Raed667,1/4/2016 18:25 +10853115,SF Yellow Cab to file for bankruptcy,http://www.sfexaminer.com/yellow-cab-to-file-for-bankruptcy/,204,224,coloneltcb,1/6/2016 19:43 +12203758,Try to guess what Mantra is just from the landing page of the website,http://www.getmantra.com/,3,4,mundo,8/1/2016 16:33 +10620292,Turkey Shoots Down Russian Warplane Near Syrian Border,http://www.nytimes.com/2015/11/25/world/europe/turkey-syria-russia-military-plane.html?_r=0,112,181,enesunal,11/24/2015 12:12 +10688639,Raspberry Pi Zero vs. Elliott 405,http://www.spinellis.gr/blog/20151129/,204,89,sebkomianos,12/7/2015 10:24 +12345250,ReSpeaker Open Source Voice Development Board with Microphone Array,https://www.kickstarter.com/projects/seeed/respeaker-an-open-modular-voice-interface-to-hack,4,2,kfihihc,8/23/2016 17:01 +12379459,Committee of Intelligent Machines Unity in Diversity of #NeuralNetworks,https://medium.com/@vvpreetham/committee-of-intelligent-machines-unity-in-diversity-of-neuralnetworks-8a6c494f089c#.nafv8cwpk,7,1,vvpreetham,8/29/2016 1:34 +12386556,Lightning Strike Kills More Than 300 Reindeer in Norway,http://www.nytimes.com/2016/08/30/world/europe/hardangervidda-norway-lightning-reindeer.html,104,42,alizauf,8/30/2016 0:42 +12048430,Britains vote to exit the EU sends Europes space sector scrambling for answers,http://www.spacenewsmag.com/feature/great-britains-vote-to-exit-the-eu-sends-europes-space-sector-scrambling-for-answers/,32,86,laktak,7/7/2016 10:06 +10871771,Deep learning pipeline for orbital satellite data for detecting clouds,https://github.com/BradNeuberg/cloudless,60,17,kartikkumar,1/9/2016 16:27 +10265575,Ask HN: Examples of teams that have left big companies in tandem,,2,3,mikeyanderson,9/23/2015 15:25 +11809520,"As a developer in 2016, you need to learn emacs (or vim)",http://le-gall.bzh/developer-tips/2016/05/21/you-need-to-learn-emacs/,4,5,zeveb,5/31/2016 19:40 +11211583,The cult of memory: when history does more harm than good,http://www.theguardian.com/education/2016/mar/02/cult-of-memory-when-history-does-more-harm-than-good,82,50,sasvari,3/2/2016 17:47 +10202085,Galileo Launch (sat 9 and 10) Lift-off,http://www.esa.int/spaceinvideos/Videos/2015/09/Galileo_Launch_sat_9_10_-_Lift-off,1,1,igravious,9/11/2015 4:59 +11182116,Case Study: How to Build the Best Online Appointment Scheduling Software,http://blog.scheduler-net.com/post/case-study-appointment-scheduling-software-yocale.aspx,3,1,lanagio,2/26/2016 16:12 +10472100,Satellite Finder Online,http://arachnoid.com/satfinderonline/satfinderphp.php,9,2,wmat,10/29/2015 16:07 +11918455,Using Facebook as a Mac terminal,http://github.com/andykamath/fb-chat-ssh,7,1,andykamath,6/16/2016 19:56 +10475372,Flash Drive Lock,https://www.schneier.com/blog/archives/2015/10/flash_drive_loc.html,3,1,CapitalistCartr,10/29/2015 23:59 +11466797,A CLI tool to remove all your tweets at once,https://github.com/chrisenytc/rmt,3,1,chrisenytc,4/10/2016 16:14 +10283980,The Highest Resolution Color Photo of Pluto Released So Far,http://i.imgur.com/8EfBsJC.jpg,9,3,irl_zebra,9/26/2015 18:35 +12308715,The 80-hour Myth,https://startupboy.com/2005/11/29/the-80-hour-myth/,20,6,wfoweoi,8/17/2016 21:41 +12199053,Show HN: Snekp.it (built at Recurse Center),https://github.com/ryanml/Snekp.it,1,1,palferrari,7/31/2016 21:46 +10573802,China's Tsinghua Unigroup to invest $47B to build chip empire,http://www.reuters.com/article/idUSKCN0T50DU20151116,76,38,JumpCrisscross,11/16/2015 11:17 +10708407,Fundamental quantum physics problem has been proved unsolvable,http://factor-tech.com/connected-world/21062-a-fundamental-quantum-physics-problem-has-been-proved-unsolvable/,3,1,Nadya,12/10/2015 2:11 +11400607,Tesla to reveal the new Model 3 tonight 8:30PM Pacific,https://www.teslamotors.com/,11,1,Corvinex,3/31/2016 21:15 +11366886,When did porn become sex ed?,http://www.nytimes.com/2016/03/20/opinion/sunday/when-did-porn-become-sex-ed.html,47,33,kelukelugames,3/26/2016 18:54 +12146923,A Declarative Clock in Eve,http://incidentalcomplexity.com/2016/07/21/clock/,5,2,dahjelle,7/22/2016 21:32 +11957759,Ask HN: How to fund an open source project?,,3,2,Capira,6/22/2016 23:06 +11173265,BMW are sending their software updates unencrypted,https://shkspr.mobi/blog/2016/02/bmw-are-sending-their-software-updates-unencrypted/,6,3,choult,2/25/2016 9:15 +10897009,Science Brief: Coal and Gas Are Far More Harmful Than Nuclear Power,http://www.giss.nasa.gov/research/briefs/kharecha_02/,4,1,jseliger,1/13/2016 19:56 +12195399,Netflix site is down,http://outage.report/netflix,34,19,tomerific,7/31/2016 1:59 +11839560,Show HN: Slide an open-source plain text presentation maker,http://trikita.co/slide,105,40,zserge,6/5/2016 3:58 +11023428,Wasavi a browser extension that transforms TEXTAREA elements into a VI editor,http://appsweets.net/wasavi/,175,37,yankcrime,2/2/2016 23:04 +12548414,3D Printer Hack: Embedding Water and Metal,http://makefastworkshop.com/hacks/?p=20160920&v=1,40,11,akumpf,9/21/2016 14:26 +12292576,The Confusion of Variational Autoencoders,https://jaan.io/unreasonable-confusion/,52,11,jaan,8/15/2016 18:53 +10890227,Spotify's Best Feature: The Spoken Word Section,http://thehustle.co/spotify-spoken-word,7,2,jl87,1/12/2016 20:44 +10634351,Web Framework Benchmarks Round 11,https://www.techempower.com/benchmarks/,8,1,heyalexej,11/26/2015 19:31 +12025186,A Stroke of Genius: Striving for Greatness in All You Do,http://www.mccurley.org/advice/hamming_advice.html,3,1,Tomte,7/3/2016 8:04 +11236616,"Ill-Advised C++ Rant, Part 2",http://www.codersnotes.com/notes/cpp-rant-2/,65,65,vaidyk,3/7/2016 1:58 +11701606,The Hidden Workforce Expanding Tesla's Factory,http://extras.mercurynews.com/silicon-valley-imported-labor/,109,60,jhspaybar,5/15/2016 16:50 +10608281,Show HN: Trajectory an open-source educational tool to model financial future,http://blabr.io/?2efbdcc151a2e3e57d75,13,4,jmort,11/21/2015 22:24 +11121041,"Show HN: Canon of Man Enjoy the serendipity of browsing bookstores, anywhere",http://canonofman.com,4,6,m52go,2/17/2016 20:28 +10482784,"The Power of Nudges, for Good and Bad",http://www.nytimes.com/2015/11/01/upshot/the-power-of-nudges-for-good-and-bad.html?partner=rss&emc=rss&_r=1,24,11,lujim,10/31/2015 14:48 +10494009,Smart guns finally poised to change U.S. gun market?,http://www.cbsnews.com/news/smart-guns-finally-poised-to-change-u-s-gun-market/,18,95,prostoalex,11/2/2015 18:43 +11792226,Why Does Everyone Hate Monsanto? (2014),http://modernfarmer.com/2014/03/monsantos-good-bad-pr-problem/,31,71,woodfordb,5/28/2016 16:29 +10288561,Kee Bird,https://en.wikipedia.org/wiki/Kee_Bird,28,2,js2,9/28/2015 1:31 +10266749,Moving Self-initiated animated art project,http://futurefabric.co.uk/mooooooving,11,1,pmcpinto,9/23/2015 18:01 +11246964,Show HN: YouTube Podcast Generator Create a pod from YT channel and playlist ids,https://rundexter.com/app/youtube-podcast-generator,5,1,bbilko,3/8/2016 17:48 +10603298,Recurrent Neural Networks Hardware Implementation on FPGA,http://arxiv.org/abs/1511.05552v1,54,16,Katydid,11/20/2015 19:32 +12050010,"Continuous Deployment with Docker, AWS, and Ansible",https://semaphoreci.com/community/tutorials/continuous-deployment-with-docker-aws-and-ansible,2,3,Liriel,7/7/2016 15:42 +10687128,Voice Quality on Smart Phones Still Sucks (2014),http://www.consumerreports.org/cro/news/2014/05/3-reasons-voice-quality-on-smart-phones-still-sucks/index.htm,56,45,mhb,12/6/2015 23:10 +12402577,Ask HN: Do we have a case against Facebook for infringement?,,11,6,runlivemem,9/1/2016 1:13 +10783156,Google End-to-End: Any update?,,4,1,mukmuk,12/23/2015 13:32 +10907141,Reduce Your Bundle.js File Size by Doing This One Thing,https://lacke.mn/reduce-your-bundle-js-file-size/,2,2,tlackemann,1/15/2016 4:15 +10440175,Can California Be Saved?,http://www.nationalreview.com/article/425885/california-high-taxes-immigration-democrats,3,1,kafkaesque,10/23/2015 17:54 +11072439,"Google display ads go 100% HTML5, Flash banned Jan 2 2017.",https://plus.google.com/+GoogleAds/posts/dYSJRrrgNjk,5,1,nailer,2/10/2016 13:07 +10612779,Ask HN: What have the USDS and 18F accomplished so far?,,30,14,abarrettjo,11/23/2015 3:52 +10640254,Ask HN: Balancing wealth distribution by beating forex and sharing profits,,2,5,ratsimihah,11/28/2015 6:25 +12211420,Yahoo probes possible huge data breach,http://www.bbc.co.uk/news/technology-36952257,184,52,JohnHammersley,8/2/2016 17:12 +12041705,My best employee quit because I wouldnt let her go to college graduation,http://www.askamanager.org/2016/07/my-best-employee-quit-on-the-spot-because-i-wouldnt-let-her-go-to-her-college-graduation.html,88,58,glogla,7/6/2016 7:33 +12356315,Bad predictions about the internet,http://www.newstatesman.com/science-tech/internet/2016/08/25-years-here-are-worst-ever-predictions-about-internet,78,58,prismatic,8/25/2016 1:05 +11662240,ExcelCompare: Command line tool and API for diffing Excel Workbooks,https://github.com/na-ka-na/ExcelCompare,59,15,jsvine,5/9/2016 19:02 +11020520,The Most Important Job Factors for Developers,http://jobfactors.workshape.io/,10,3,hunglee2,2/2/2016 16:46 +11594962,Ask HN: Vim starup time for opening 1000 lines code file,,1,3,drake01,4/29/2016 11:25 +11079255,Does the IK12 and YC merger disadvantage edtech startups?,,3,1,geoff-codes,2/11/2016 10:00 +12046044,Varnish Cache and Brotli compression,https://info.varnish-software.com/blog/varnish-cache-brotli-compression,27,4,wolfeel,7/6/2016 21:33 +10962390,AI alternative the science behind 'artificial swarm intelligence',http://www.techrepublic.com/article/how-artificial-swarm-intelligence-uses-people-to-make-better-predictions-than-experts/,9,1,joshagogo,1/24/2016 13:09 +10183282,Geotrust/Symantec has revoked all SSL certificates for .pw domains,http://colin.keigher.ca/2015/09/geotrustsymantec-has-revoked-all-ssl.html,157,99,afreak,9/7/2015 22:08 +11836499,Experiences with the Thinkpad 13?,,6,13,veddox,6/4/2016 14:45 +10914803,iAd App Network Will Be Discontinued,https://developer.apple.com/news/?id=01152016a,1,1,jamesDGreg,1/16/2016 9:11 +10222663,Facebook Is Finally Making a Dislike Button,http://time.com/4035281/facebook-dislike-button/,12,2,werber,9/15/2015 19:30 +10238690,Clarification on Call Me Maybe: MariaDB Galera Cluster,https://www.percona.com/blog/2015/09/17/clarification-call-maybe-mariadb-galera-cluster/,62,70,crivabene,9/18/2015 12:12 +11249236,Geohot secures VC funding for self-driving car,http://electrek.co/2016/03/08/geohot-self-driving-car-startup/,2,1,monkmartinez,3/8/2016 22:15 +12123787,Atom wranglers create rewritable memory,http://www.nature.com/news/atom-wranglers-create-rewritable-memory-1.20269,2,1,kartD,7/19/2016 18:39 +12513902,Ask HN: Are these signs of a failing startup,,3,6,employee123,9/16/2016 13:43 +10267252,Ask HN: Does minimum karma downvoting encourage elitism?,,1,2,rm_-rf_slash,9/23/2015 19:00 +12555745,"I have created a full fledge stock backtesting app in Node, what now?",,2,1,kewin87,9/22/2016 10:06 +11461345,How a Car Engine Works,http://animagraffs.com/how-a-car-engine-works/,404,123,kercker,4/9/2016 14:27 +12102049,Information is in fact the negative of thermodynamic entropy.,http://nautil.us/blog/yes-your-brain-does-process-information,1,1,dnetesn,7/15/2016 16:17 +12009465,The Trouble with Non-Tech Cofounders,https://techcrunch.com/2012/02/23/the-trouble-with-non-tech-cofounders/,1,1,ryanlm,6/30/2016 16:05 +10511652,Trying out Let's Encrypt (beta),https://conorpp.com/blog/trying-out-lets-encrypt/,104,51,conorpp,11/5/2015 4:34 +10429283,Founders: Its not 1990. Stop treating your employees like it is,https://medium.com/@tikhon/founders-it-s-not-1990-stop-treating-your-employees-like-it-is-523f48fe90cb#.undbv9dhb,10,1,deegles,10/21/2015 22:36 +10345209,A New Persistent Attack Methodology Targeting Microsoft OWA,http://www.cybereason.com/cybereason-labs-research-a-new-persistent-attack-methodology-targeting-microsoft-owa/,2,1,frozenice,10/7/2015 10:43 +10744285,Filmmakers of HN how do you promote your web series?,,1,2,feroz1,12/16/2015 14:06 +10400418,Emergency parliamentary debate on surveillance powers,http://www.parliament.uk/business/news/2015/october/emergency-debate-the-operation-of-the-wilson-doctrine/,2,1,rwmj,10/16/2015 16:33 +12086765,Show HN: We built a social fitness app in React Native for iOS and Android,http://squidfitness.com/app,13,3,dstik,7/13/2016 15:12 +10356816,For refugees: A guide for orientation and communication in Germany,http://www.refugeeguide.de/en/,4,2,Tepix,10/8/2015 22:29 +11111348,What it looks like to process 3.5M books in Googles cloud,http://googlecloudplatform.blogspot.com/2016/02/what-it-looks-like-to-process-3.5-million-books-in-Googles-cloud.html,88,11,doppp,2/16/2016 17:11 +11887652,Snowden reveals GCHQ spy programme with link to Scottish police,http://www.thenational.scot/news/us-whistleblower-snowden-reveals-gchq-spy-programme-with-secret-link-to-scottish-police.18661,245,63,ghosh,6/12/2016 11:41 +11337112,Domo.com Domopalooza Live Blog,https://www.domo.com/domopalooza/live,1,1,vyrotek,3/22/2016 15:06 +10922837,"105"" HDTV for $113,861.81 on Amazon",http://www.amazon.com/Samsung-105-120-160-000/dp/B012XF7WBY/ref=sr_1_1,7,7,chuckledog,1/18/2016 6:20 +10562427,The European Startup Scene is Still Broken,https://medium.com/@faloppad/the-european-startup-scene-is-still-broken-f56be481993d,34,78,jreacher,11/13/2015 21:13 +12011463,"Choo: A New, Functional Front End App Framework in 7KB",https://github.com/yoshuawuyts/choo?hn,3,1,knes,6/30/2016 20:38 +11399801,Intelligent machines might want to become biological again,https://aeon.co/essays/intelligent-machines-might-want-to-become-biological-again,5,1,jonbaer,3/31/2016 19:17 +11496800,Run npm Enterprise on AWS with just a few clicks,http://blog.npmjs.org/post/142409778875/run-npm-enterprise-on-aws-with-just-a-few-clicks,28,7,tilt,4/14/2016 14:08 +11660134,British journalists twice as likely to be leftwing [Reuters Institute survey],http://reutersinstitute.politics.ox.ac.uk/publication/journalists-uk,2,1,cbeach,5/9/2016 14:37 +10654505,Easily get back to the images youve found on Google,http://insidesearch.blogspot.com/2015/11/easily-get-back-to-images-youve-found.html,2,1,rbinv,12/1/2015 10:35 +10293652,Fish playing pokemon back again,http://www.twitch.tv/freddythefeesh,3,1,freddythefeesh,9/28/2015 22:34 +12406036,Unreal Engine 4.13 Released,https://www.unrealengine.com/blog/unreal-engine-4-13-released,121,17,numo16,9/1/2016 15:29 +11500325,Show HN: How to Setup Node.js App Automated Deployment and CI with PM2 for MVP's,http://niftylettuce.com/posts/automated-node-app-ci-graceful-zerodowntime-github-pm2/,66,12,niftylettuce,4/14/2016 21:03 +11296530,Pew Poll: More Support for FBI Than for Apple in Dispute Over Unlocking iPhone,http://www.people-press.org/2016/02/22/more-support-for-justice-department-than-for-apple-in-dispute-over-unlocking-iphone/,2,3,nxzero,3/16/2016 11:45 +10634208,A Roadmap Towards Machine Intelligence,http://arxiv.org/abs/1511.08130,59,29,vonnik,11/26/2015 18:57 +10777884,Qualcomm's FastCV Computer Vision SDK,https://developer.qualcomm.com/software/fastcv-sdk,22,5,fitzwatermellow,12/22/2015 14:25 +11648955,The German reference letter system,https://englishjobs.de/info/the-german-reference-letter-system/?src=hn,153,55,drsintoma,5/7/2016 9:28 +11435626,On the iOS Jailbreaking Community,https://medium.com/@carlosliam/on-the-ios-jailbreaking-community-7ee48f982869#.8ihlrtsjb,2,1,aarzee,4/6/2016 0:05 +11072676,Ask HN: How to open a business bank account in US as an non-US person?,,9,13,ilolu,2/10/2016 13:53 +10859947,Java Named Top Programming Language of 2015,http://insights.dice.com/2016/01/07/java-top-programming-language-of-2015/,2,2,SunTzu55,1/7/2016 19:03 +10402267,A fun image-processing project marginally related to my learning theory research,https://github.com/TravisBarryDick/VoronoiImageTiles,7,2,NarcolepticFrog,10/16/2015 21:58 +10715551,Is Multi-Millionfold Speedup Proof That Google Is Really Quantum Computing?,http://www.popsci.com/googles-quantum-computer-is-100-million-times-faster-than-yours,2,1,Tekker,12/11/2015 5:06 +12360600,Show HN: Braid: Chat Variation for a Different Conversation Style,http://www.braid.space,4,4,tscizzle,8/25/2016 17:02 +10645545,This is what America's gun crisis looks like,http://www.theguardian.com/us-news/ng-interactive/2015/oct/02/mass-shootings-america-gun-violence,3,3,drtz,11/29/2015 18:44 +10290637,"Ask HN: What's your plan B, before turning 40?",,7,2,kosker,9/28/2015 14:34 +11351686,Too many medical trials move the goalposts. A new initiative aims to change that,http://www.economist.com/news/science-and-technology/21695381-too-many-medical-trials-move-their-goalposts-halfway-through-new-initiative,64,11,annapowellsmith,3/24/2016 10:16 +10531388,Archaeologists Find 22 Ancient Greek Shipwrecks,http://news.nationalgeographic.com/2015/11/151103-greek-shipwreck-find-trading-route/,66,1,diodorus,11/9/2015 4:26 +10489229,Using a Neural Network to Train a Ruby Twitter Bot [video],http://www.fullstackfest.com/agenda/skynet-for-beginners-using-a-neural-network-to-train-a-ruby-twitter-bot,29,9,MrBra,11/2/2015 0:35 +11538372,Clementine: modern music player and library organizer,https://www.clementine-player.org/en,105,57,based2,4/20/2016 23:03 +10575458,The quantum source of space-time,http://www.nature.com/news/the-quantum-source-of-space-time-1.18797,179,120,joshus,11/16/2015 16:51 +12152787,Munich mall attack: Calls in Germany for tighter gun laws,http://www.bbc.com/news/world-europe-36877388,2,1,benevol,7/24/2016 9:07 +10874926,John Ioannidis has dedicated his life to quantifying how science is broken,http://www.vox.com/2015/2/16/8034143/john-ioannidis-interview,108,25,based2,1/10/2016 10:55 +11038865,The Story Behind Prixests New Logo,https://medium.com/prixest-blog/the-story-behind-prixest-s-newlogo-474826994fcf,2,2,prixest,2/5/2016 1:56 +12351319,IBMs 24-core Power9 chip,http://www.nextplatform.com/2016/08/24/big-blue-aims-sky-power9/,176,154,ajdlinux,8/24/2016 11:52 +12337936,Make Dope Beats with ReactJS,https://formidable.com/blog/2016/08/22/make-dope-beats-with-reactjs/,216,45,thekenwheeler,8/22/2016 17:34 +11883926,How Does BaaS (Blockchain as a Service) Work?,,2,3,data37,6/11/2016 16:01 +11804797,Ask HN: Software for the Super-Rich?,,4,4,cdvonstinkpot,5/31/2016 5:29 +10458774,Show HN: AnyAPI Documentation and Test Consoles for Over 150 Public APIs,http://any-api.com/,22,2,bbrennan,10/27/2015 15:50 +10758502,Sublime Text What's Next?,,7,4,chintan39,12/18/2015 14:14 +12008234,Hacked: Private Messages From Dating Site Muslim Match,http://motherboard.vice.com/en_ca/read/hacked-private-messages-from-dating-site-muslim-match,84,128,twoshedsmcginty,6/30/2016 13:11 +11361152,The Second Amendment Isnt Prepared for a 3D-Printed Drone Army,http://motherboard.vice.com/read/the-second-amendment-isnt-prepared-for-a-3d-printed-drone-army,3,1,aceperry,3/25/2016 17:00 +11179292,Linux Kernel 4.4.3 released,https://cdn.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.4.3,3,3,Enindu,2/26/2016 1:35 +12121807,Now I Fear Exploratory Interviewing While Employed,http://www.bipolarco.de/now-i-fear-interviewing-while-employed/,39,83,tomreece,7/19/2016 14:02 +11734093,"Tally raises $15M for app to make credit cards less expensive, easier to manage",http://techcrunch.com/2016/05/19/tally-raises-15-million-for-app-to-make-credit-cards-less-expensive-easier-to-manage/,57,44,david_lieb,5/19/2016 21:40 +11734930,What tools do you use to keep track of job applications?,,2,1,ayjz,5/20/2016 0:41 +12178690,Micro A microservice ecosystem,https://micro.mu/,4,1,ingve,7/28/2016 6:29 +10782478,Italian town bans pizza-making over soaring pollution,http://www.bbc.com/news/blogs-news-from-elsewhere-35161213,3,1,rmason,12/23/2015 8:28 +10779589,TSA can now force you to go through body scanners [pdf],http://www.dhs.gov/sites/default/files/publications/privacy-tsa-pia-32-d-ait.pdf,155,167,aestetix,12/22/2015 19:04 +12089164,Somethings Odd About the Political Betting Markets,http://www.slate.com/articles/news_and_politics/moneybox/2016/07/why_political_betting_markets_are_failing.html,6,1,terryauerbach,7/13/2016 19:59 +10629795,"Anonymous 'rickrolls' ISIS, hijacking pro-ISIS hashtags with 80's music video",http://www.nydailynews.com/news/world/activist-group-anonymous-rickrolling-isis-article-1.2445685,2,1,ourmandave,11/25/2015 21:21 +11183160,We've always been at war with Eastasia,http://blog.erratasec.com/2016/02/weve-always-been-at-war-with-eastasia.html,2,2,jessaustin,2/26/2016 18:46 +11591623,Typwrite: chat for trending topics,http://typwrite.com,2,1,sethernet,4/28/2016 20:19 +11637282,Death by GPS,http://arstechnica.com/cars/2016/05/death-by-gps/,9,2,hvo,5/5/2016 16:06 +11953895,SQL Server on Linux in Preview,https://azure.microsoft.com/en-us/blog/microsoft-brings-container-innovation-to-the-enterprise-at-dockercon-2016/,15,2,rjdevereux,6/22/2016 13:55 +10288307,There Are Few Libertarians. But Many Americans Have Libertarian Views,http://fivethirtyeight.com/datalab/there-are-few-libertarians-but-many-americans-have-libertarian-views/,11,1,ryan_j_naughton,9/27/2015 23:37 +11276322,Microsoft hits new low sneaks Win 10 ads into IE security patch,http://betanews.com/2016/03/09/windows-10-advertising-in-ie-security-patch/,24,17,TravelTechGuy,3/13/2016 5:08 +10619667,Hacker Claims He Gave FBI Info That Led to Killing of ISIS Leader,http://www.buzzfeed.com/josephbernstein/hacker-claims-he-gave-fbi-info-that-led-to-killing-of-isis-l#.epKX3V6yPG,2,1,rmason,11/24/2015 8:04 +12047928,Show HN: Docker: Taming the Beast (Part I),http://nschoe.com/articles/2016-05-26-Docker-Taming-the-Beast-Part-1.html,4,3,nschoe,7/7/2016 7:14 +11324693,The Paradox of Strategy computer games in 2016 and beyond,https://medium.com/simone-brunozzi/the-paradox-of-strategy-computer-games-in-2016-and-beyond-e4f96b45d74d#.pvfg7hvm3,3,1,simonebrunozzi,3/20/2016 21:11 +12503153,Ask HN: Is Intel Xeon Phi many-core processor vaporware?,,4,1,ActsJuvenile,9/15/2016 3:23 +12519912,Ask HN: Anyone already using the new GitHub Projects feature? Care to share?,,12,10,ssaunier_,9/17/2016 10:17 +11689333,How Maos call for disorder under heaven tore China asunder,http://www.economist.com/news/books-and-arts/21698632-how-maos-call-disorder-under-heaven-tore-china-asunder-heat-sun,7,1,bootload,5/13/2016 8:44 +12420672,Dam Project Threatens to Submerge Thousands of Years of Turkish History,http://www.nytimes.com/2016/09/02/world/europe/turkey-hasankeyf-ilisu-dam.html,42,18,kafkaesq,9/3/2016 19:25 +10652853,Someone left my Gmail in debug mode,https://medium.com/@zg/someone-left-my-gmail-in-debug-mode-8aa1b1c46172,285,51,zatkin,12/1/2015 0:14 +12572019,"Show HN: Medical ID, the Android app that could save your life",,1,2,lpellegr,9/24/2016 18:42 +11311257,Europe is going to kill free software Have you contacted your state's rep?,https://www.thinkpenguin.com/gnu-linux/europe-going-kill-free-software-have-you-contacted-your-states-rep,76,42,lolidaisuki,3/18/2016 12:22 +11020142,Rapid recovery from major depression using magnesium treatment (2006),http://www.ncbi.nlm.nih.gov/pubmed/16542786,98,78,amelius,2/2/2016 15:49 +10239207,"Windows 10, the stealth OS",http://www.computerworld.com/article/2984729/microsoft-windows/windows-10-the-stealth-os.html?nsdr=true,4,2,tanglesome,9/18/2015 13:59 +11039317,"Debian removed encryption from bcrypt utility, calling it a broken toy",https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700758,2,3,Iv,2/5/2016 4:03 +11854748,Show HN: Universal Admin Interface Introducing AaaS (Admin as a Service),http://beta.forestadmin.com,25,6,seyz,6/7/2016 14:32 +12472157,Ask HN: Where can I find AI/ML math resources?,,2,2,acobster,9/11/2016 5:47 +11066775,Ask HN: Do CAs disclose domain details of all issued certificates?,,1,2,emma_b,2/9/2016 17:05 +11397638,VoCore A coin-sized Linux computer with WiFi,http://vocore.io/store/index,80,21,tambourine_man,3/31/2016 14:58 +11346559,The Embedded Toolchain Tools of the Trade,http://embedded.fm/blog/2016/3/22/embedded-tools,35,12,ingve,3/23/2016 17:40 +11386457,Australian government deports Disrupt's co-founder for not picking fruit,http://www.businessinsider.com.au/the-australian-border-force-has-deported-the-co-founder-of-tech-startup-disrupt-2016-3,4,2,luke_s,3/30/2016 2:02 +10576493,Why Optimistic Merging Works Better,http://hintjens.com/blog:106,5,3,c-rack,11/16/2015 19:22 +11316687,The History of the Car Cup Holder (2013),http://www.bonappetit.com/trends/article/the-history-of-the-car-cup-holder,6,2,benbreen,3/19/2016 1:17 +11736083,Googles Making Its Own Chips Now. Time for Intel to Freak Out,http://www.wired.com/2016/05/googles-making-chips-now-time-intel-freak/,7,1,jonbaer,5/20/2016 7:32 +12036103,"Disabled teen sues TSA, Memphis airport after bloody scuffle",http://www.cbsnews.com/news/disabled-teen-sues-tsa-memphis-airport-after-bloody-scuffle/,45,44,jackgavigan,7/5/2016 13:06 +11856642,Tails 2.4 is out,https://blog.torproject.org/blog/tails-24-out,59,26,ikeboy,6/7/2016 18:34 +12395933,Why 'sudo Vim' Could Hurt Your Productivity,http://blog.robertelder.org/vim-forgets-copy-buffer-on-reopen/,1,2,robertelder,8/31/2016 4:00 +10295086,Darpa is testing implanting chips in soldiers brains,http://fusion.net/story/204316/darpa-is-implanting-chips-in-soldiers-brains/?utm_source=feedly&utm_medium=feed&utm_campaign=/feed/,70,45,jacquesm,9/29/2015 7:59 +11057550,Nanomsg postmortem and other stories,http://sealedabstract.com/rants/nanomsg-postmortem-and-other-stories/,80,31,profcalculus,2/8/2016 11:33 +11638925,"Introducing a new, advanced Visual C++ code optimizer",https://blogs.msdn.microsoft.com/vcblog/2016/05/04/new-code-optimizer/,223,61,nikbackm,5/5/2016 19:14 +12441415,Consumers are switching to water as they avoid sugary beverages,http://blogs.wsj.com/moneybeat/2016/09/06/water-water-everywhere-except-the-bottom-line/,79,135,randomname2,9/7/2016 7:17 +12022649,The switch that could double USB memory,http://www.alphagalileo.org/ViewItem.aspx?ItemId=165732&CultureCode=en,3,1,ohjeez,7/2/2016 14:24 +12223216,Uber's Move Away from PostgreSQL,http://rhaas.blogspot.com/2016/08/ubers-move-away-from-postgresql.html,119,15,ioltas,8/4/2016 3:36 +12238107,Watson correctly diagnoses woman after doctors were stumped,http://siliconangle.com/blog/2016/08/05/watson-correctly-diagnoses-woman-after-doctors-were-stumped/,13,1,ohjeez,8/6/2016 13:51 +11319769,"Napster Founder's Movie Plan Will Fuel Torrent Sites, Theaters Say",https://torrentfreak.com/napster-founders-movie-plan-will-fuel-torrent-sites-theaters-say-160316/,63,55,evo_9,3/19/2016 18:34 +12100785,Tech Companies and Diversity Hiring,https://medium.com/@dareobasanjo/the-big-lie-tech-companies-and-diversity-hiring-f52fb82abfbf,87,133,jameshart,7/15/2016 13:33 +10197764,Jony Ive's Voice,http://jonyivesvoice.com/,61,36,yuvadam,9/10/2015 13:06 +11418910,Deep Networks with Stochastic Depth,http://arxiv.org/abs/1603.09382v1,70,8,nicklo,4/4/2016 1:53 +11579066,Leicester City: Dirty Dozen or Harvard Case Study?,http://www.bloombergview.com/articles/2016-04-26/leicester-city-dirty-dozen-or-harvard-case-study,82,94,oli5679,4/27/2016 10:05 +10200585,The 1% Resume That Stands Out,https://blog.orangecaffeine.com/the-1-resume-that-stands-out-c84d937ec7fb,3,1,ceekay,9/10/2015 21:10 +11412846,A Brief History of Microprogramming,https://people.cs.clemson.edu/~mark/uprog.html,47,8,quickfox,4/2/2016 19:10 +11784291,Ask HN: What's your blog?,,12,22,sebg,5/27/2016 6:33 +11823691,SyntaxDB Quickly look up syntax for programming languages,https://syntaxdb.com/,183,71,sidcool,6/2/2016 16:11 +12010927,"A Night and a Day in Tonopah, Nevada",http://www.atlasobscura.com/articles/a-night-and-a-day-in-tonopah-nevada,31,23,Thevet,6/30/2016 19:11 +11006029,"The Fermi Paradox Is Not Fermi's, and It Is Not a Paradox",http://blogs.scientificamerican.com/guest-blog/the-fermi-paradox-is-not-fermi-s-and-it-is-not-a-paradox/,65,65,XzetaU8,1/31/2016 11:10 +10683594,Everyone can be a target,https://people.debian.org/~lunar/blog/posts/everyone_can_be_a_target/,68,8,teddyh,12/5/2015 22:57 +11670320,Creative Labs ITC complaint against Android manufactures,https://usitc.gov/press_room/news_release/2016/er0505ll587.htm,3,2,protomyth,5/10/2016 20:18 +10470647,Large prime numbers for sale,http://www.mappamathics.com/,3,3,benten10,10/29/2015 13:08 +10361676,Visualizing Machine Learning Thresholds to Make Better Business Decisions,http://blog.insightdatalabs.com/visualizing-classifier-thresholds/,40,1,sl8r,10/9/2015 17:18 +10531475,We need a better way to get to space,https://theconversation.com/its-not-rocket-science-we-need-a-better-way-to-get-to-space-45751,48,69,vishaldpatel,11/9/2015 4:58 +10711257,I went to help at Calaiss Jungle refugee camp and what I saw haunts me,http://www.theguardian.com/commentisfree/2015/dec/10/calais-jungle-refugee-camp-volunteer-conditions,57,51,nsns,12/10/2015 16:00 +11328561,How to watch the livestream of Apples keynote today on Windows and Android,http://www.networkworld.com/article/3045842/mobile-wireless/how-to-watch-the-live-stream-of-apple-s-loop-you-in-keynote-on-march-21-on-windows-and-android.html#tk.twt_nww,1,1,stevep2007,3/21/2016 15:08 +10982285,Our Functional Future Or: How I Learned to Stop Worrying and Love Haskell,https://blog.fugue.co/2016-01-27-our-functional-future-or-how-i-learned-to-stop-worrying-and-love-haskell.html,23,1,joehillen,1/27/2016 19:15 +12268740,YC Office Hours in 11 Countries This Fall,https://blog.ycombinator.com/yc-office-hours-in-11-countries-this-fall,99,36,kevin,8/11/2016 15:01 +11492031,Court to spaghetti: You are not a god,http://www.religionnews.com/2016/04/13/court-to-pastafarian-you-are-not-a-god/,4,1,ohjeez,4/13/2016 20:42 +10186908,This Preschool is for Robots,http://www.bloomberg.com/features/2015-preschool-for-robots/#hn,22,11,jacobsimon,9/8/2015 17:10 +10896217,Show HN: A new kind of standing desk for $25 USD,http://oristand.co,21,9,kamilszybalski,1/13/2016 18:08 +11375812,Japans NTT to Buy Dell Systems for $3.055B,http://www.bloomberg.com/news/articles/2016-03-28/japan-s-ntt-to-buy-dell-systems-for-3-055-billion,6,1,elorant,3/28/2016 17:39 +11800950,Governments Turn to Commercial Spyware to Intimidate Dissidents,http://www.nytimes.com/2016/05/30/technology/governments-turn-to-commercial-spyware-to-intimidate-dissidents.html?ref=technology&_r=0,160,81,hvo,5/30/2016 12:28 +11983317,Ferret: Compiling a Subset of Clojure to ISO C++11,http://dropbox.nakkaya.com/builds/ferret-manual.html,4,2,616c,6/26/2016 23:24 +12101036,Mr Robot S02E01 easter egg,https://0x41.no/mr-robot-s02e01-easter-egg/,639,194,tilt,7/15/2016 14:11 +12521556,Behind the wheel of Uber's new self-driving car,http://www.theverge.com/2016/9/14/12900982/uber-self-driving-car-pittsburgh-launch-hands-on,20,7,lelf,9/17/2016 17:53 +12067594,Item2Vec: Neural Item Embedding for Collaborative Filtering,https://arxiv.org/abs/1603.04259,103,37,ukz,7/10/2016 22:35 +11399876,All the Open Source Software Provided by BMW for Their I3,https://github.com/edent/BMW-OpenSource,3,1,jorde,3/31/2016 19:27 +10973814,People keep going to this home looking for their lost phones and nobody knows why,https://www.washingtonpost.com/news/the-switch/wp/2016/01/26/people-keep-going-to-this-home-looking-for-their-lost-phones-and-nobody-knows-why/,2,1,rayascott,1/26/2016 15:24 +10873553,A visual exploration of the spatial patterns in endings of German town names,http://truth-and-beauty.net/experiments/ach-ingen-zell/,138,27,ingve,1/10/2016 0:31 +11290674,Researchers say FAA is overblowing risk posed by small drones,http://arstechnica.com/tech-policy/2016/03/researchers-say-faa-is-really-overblowing-risk-posed-by-small-drones/,98,75,pavornyoh,3/15/2016 16:10 +10961451,"PPGTT: Dynamic page table allocations, 64 bit addressing, GPU mirroring (2014)",https://bwidawsk.net/blog/index.php/2014/07/future-ppgtt-part-4-dynamic-page-table-allocations-64-bit-address-space-gpu-mirroring-and-yeah-something-about-relocs-too/,11,1,JoshTriplett,1/24/2016 4:21 +10691739,Petition to Open Source Mailbox,https://www.change.org/p/dropbox-open-source-mailbox-app,1,1,joeblau,12/7/2015 19:00 +10187451,Philippines to Roll Out Nationwide Free Wi-Fi Service by 2016,http://www.bloomberg.com/news/articles/2015-09-07/philippines-to-roll-out-nationwide-free-wi-fi-service-by-2016,70,53,prostoalex,9/8/2015 18:38 +11992431,Huge helium discovery 'a life-saving find',http://www.ox.ac.uk/news/2016-06-28-huge-helium-discovery-life-saving-find,290,187,emilong,6/28/2016 9:19 +10313409,Terence Tao's Answer to the Erd?s Discrepancy Problem,https://www.quantamagazine.org/20151001-tao-erdos-discrepancy-problem/,61,23,retupmoc01,10/1/2015 18:25 +11630965,"MEAN's great, but then you grow up",https://rclayton.silvrback.com/means-great-but-then-you-grow-up,1,1,Yhippa,5/4/2016 19:22 +10684118,Let Math Save Our Democracy,http://mobile.nytimes.com/2015/12/06/opinion/sunday/let-math-save-our-democracy.html?referer=,45,33,coloneltcb,12/6/2015 2:26 +11344763,Kickstarter for a smart bed,https://www.kickstarter.com/projects/684490728/balluga-the-worlds-smartest-bed,2,1,knownhuman,3/23/2016 14:29 +11670164,Redis modules,http://venturebeat.com/2016/05/10/redis-modules/,1,1,ecesena,5/10/2016 20:00 +12504466,YC Office Hours in Prague Sept 22,http://blog.ycombinator.com/yc-office-hours-in-prague-sept-22,47,4,dwaxe,9/15/2016 9:00 +11858963,Mentoring in Gaza's first hackathon,http://dopeboy.github.io/gaza/,343,152,dopeboy,6/7/2016 23:44 +12084131,Pokemon Go Is Driving Insane Amounts of Sales at Small Local Businesses,http://www.inc.com/walter-chen/pok-mon-go-is-driving-insane-amounts-of-sales-at-small-local-businesses-here-s-h.html,17,3,crdb,7/13/2016 5:57 +11618896,A Basic Income Should Be the Next Big Thing,http://www.bloombergview.com/articles/2016-05-02/a-basic-income-should-be-the-next-big-thing,641,809,warrenmar,5/3/2016 8:39 +11236266,Satoshi Roundtable Thoughts,http://gavinandresen.ninja/satoshi-roundtable-thoughts,115,110,sethbannon,3/6/2016 23:59 +11835564,Dope and glory: the rise of cheating in amateur sport,http://www.theguardian.com/lifeandstyle/2016/jun/01/dope-and-glory-the-rise-of-cheating-in-amateur-sport?,2,1,pmcpinto,6/4/2016 8:50 +10988468,Ask HN: How to automate Python apps deployment?,,4,18,aalhour,1/28/2016 14:55 +10178462,Curators of Sweden,http://curatorsofsweden.com/,29,32,bvanvugt,9/6/2015 18:15 +10551645,The O-Ring Theory of DevOps,http://blog.acolyer.org/2015/11/11/the-o-ring-theory-of-devops/,70,21,r4um,11/12/2015 6:37 +11503168,How the NSA's CryptoKids Stole My FOIA Innocence,http://www.atlasobscura.com/articles/how-the-nsas-cryptokids-stole-my-foia-innocence,2,1,etiam,4/15/2016 9:51 +11669028,Amazon Video Direct Poses Challenge to YouTube,http://www.bbc.com/news/technology-36259782,4,1,aestetix,5/10/2016 17:41 +10957791,Generation Uphill,http://www.economist.com/news/special-report/21688591-millennials-are-brainiest-best-educated-generation-ever-yet-their-elders-often,125,70,DiabloD3,1/23/2016 9:26 +11969740,Proposed New Go GC: Transaction-Oriented Collector,https://docs.google.com/document/d/1gCsFxXamW8RRvOe5hECz98Ftk-tcRRJcDFANj2VwCB0/edit,203,121,zalmoxes,6/24/2016 13:52 +10657471,Invoke God Mode in Windows 10,http://www.onecooltip.com/2015/08/invoke-godmode-in-windows-10.html,10,6,onecooltip,12/1/2015 18:08 +10349436,FastMail is not required to implement the Australian metadata retention laws,http://blog.fastmail.com/2015/04/09/fastmail-is-not-required-to-implement-the-australian-metadata-retention-laws/,173,59,joneil,10/7/2015 22:01 +12043656,The Sentry Branch Predictor Spec: A Fairy Tale,http://clarkesworldmagazine.com/chu_07_16/,29,1,dsr_,7/6/2016 15:22 +11738470,Moving Away from Python 2,https://asmeurer.github.io/blog/posts/moving-away-from-python-2/,227,275,ngoldbaum,5/20/2016 15:14 +11502673,Git Whore Find the ones doing less everyday ..do not trust the blabber,https://github.com/Idnan/git-whore,4,5,idnan,4/15/2016 6:59 +11482056,Goldman Sachs Finally Admits It Defrauded Investors During the Financial Crisis,http://fortune.com/2016/04/11/goldman-sachs-doj-settlement/,333,190,adamnemecek,4/12/2016 18:12 +11699513,"Earn money by sharing your unused CPU, GPU, HDD",http://www.suchflex.com/index.html,3,4,suchflex,5/15/2016 5:00 +11314084,How Maritime Insurance Helped Build Ancient Rome,http://priceonomics.com/how-maritime-insurance-built-ancient-rome/,58,4,pmcpinto,3/18/2016 19:07 +11849579,Using Pony for Fintech [video],https://www.infoq.com/presentations/pony?utm_source=infoq&utm_medium=videos_homepage&utm_campaign=videos_row1,32,6,pjmlp,6/6/2016 19:29 +11356541,StrongLink: Content-Addressable Notetaking System with hash:// URI,https://github.com/btrask/stronglink,4,1,vmorgulis,3/24/2016 21:20 +10718835,Nintendo touchscreen controller patent offers clues about upcoming NX,http://arstechnica.com/gaming/2015/12/nintendo-touchscreen-controller-patent-offers-clues-about-upcoming-nx/,34,17,pavornyoh,12/11/2015 18:23 +10692031,Marc Benioff says unicorn startups manipulated private markets,http://www.businessinsider.com/billionaire-ceo-and-investor-marc-benioff-says-unicorn-startups-manipulated-private-markets-and-hes-done-investing-in-them-2015-12,7,1,yggydrasily,12/7/2015 19:34 +10284453,Ask HN: What static site generator do you use and why?,,3,1,networked,9/26/2015 21:16 +11519118,Browserball,http://weareinstrument.com/ball/#,381,73,ABNWZ,4/18/2016 11:43 +11800844,Ask HN: If you started making a web app today which tool would you choose?,,17,29,karimdag,5/30/2016 11:54 +12179477,The Netherlands to Reclaim a Portion of the North Sea,https://translate.google.com/translate?sl=auto&tl=en&js=y&prev=_t&hl=en&ie=UTF-8&u=https%3A%2F%2Fliefdevoorholland.wordpress.com%2F2016%2F07%2F23%2Finpoldering-deel-noordzee-kan%2F&edit-text=&act=url,5,2,lun4r,7/28/2016 10:45 +11224982,"Source: Microsoft mulled an $8B bid for Slack, will focus on Skype instead",http://techcrunch.com/2016/03/04/source-microsoft-mulled-an-8-billion-bid-for-slack-will-focus-on-skype-instead/,329,279,crsmith,3/4/2016 16:51 +11357141,Ask HN: California moonlighting non-compete,,2,1,hbhakhra,3/24/2016 22:51 +11738487,Trumps Floating Cities: Solving Immigration with the Help of Silicon Valley,https://medium.com/@noncanonic/trumps-floating-cities-solving-immigration-with-the-help-of-silicon-valley-part-1-8cb082ea9cde#.lgs5w47k0,1,1,livestyle,5/20/2016 15:16 +10443354,How can I get my DeLorean to 88 miles per hour without a train?,http://worldbuilding.stackexchange.com/questions/28211/how-can-i-get-my-delorean-to-88-miles-per-hour-without-a-train,5,3,chris_wot,10/24/2015 12:12 +12160368,Ask HN: How do you deal with recurring payments?,,48,30,Keats,7/25/2016 18:00 +11144970,The Book of Graham (2014),http://www.leveragedsellout.com/2014/02/the-book-of-graham/,7,1,porter,2/21/2016 16:01 +10457522,"Big Data, Machine Learning and the Social Sciences (2014)",https://medium.com/@hannawallach/big-data-machine-learning-and-the-social-sciences-927a8e20460d#.sln4yysn1,1,1,arandomnumber,10/27/2015 12:24 +10407476,OpenBSD: It was twenty years ago you see,https://marc.info/?l=openbsd-misc&m=144515087006177&w=2,5,1,anjbe,10/18/2015 7:14 +11695416,Ask HN: What do you use for Android Development apart from Android Studio,,1,1,shade23,5/14/2016 10:14 +11540984,Pushing silicon to its limits: the UK research putting superspin on Moores law,https://connect.innovateuk.org/web/eec/article-view/-/blogs/pushing-silicon-to-its-limits-the-uk-research-putting-a-superspin-on-moore-s-law-?_33_redirect=https%3A%2F%2Fconnect.innovateuk.org%2Fweb%2Feec%2Farticles%3Fp_p_id%3D101_INSTANCE_okNCIW6dT09i%26p_p_lifecycle%3D0%26p_p_state%3Dnormal%26p_p_mode%3Dview%26p_p_col_id%3Dcolumn-1%26p_p_col_count%3D1%26_101_INSTANCE_okNCIW6dT09i_currentURL%3D%252Fweb%252Feec%252Farticles%26_101_INSTANCE_okNCIW6dT09i_portletAjaxable%3D1,1,1,probotika,4/21/2016 10:58 +12552131,Ask HN: Best Practices for CSS in a Modern JavaScript App,,6,6,xwvvvvwx,9/21/2016 20:53 +10773082,Register for hack.summit() 2016 huge virtual conf with 64k+ attendees,https://hacksummit.org/2016,32,6,maxharris,12/21/2015 20:00 +11694638,Googles answer to Amazon's Echo is code-named Chirp and is landing soon,http://www.recode.net/2016/5/11/11658432/google-chirp-amazon-echo-rival,1,2,jonbaer,5/14/2016 5:14 +10586675,"Show HN: Tired of Lorem Ipsum, I made my own generator with badass movie quotes",https://github.com/Kovah/DevLorem,18,7,Kovah,11/18/2015 8:50 +11906760,Security Conventions,https://grugq.github.io/blog/2014/05/11/the-episode-17/,11,1,Zeklandia,6/15/2016 2:03 +10726043,This Video Will Make You Angry,https://www.youtube.com/watch?v=rE3j_RHkqJc&feature=youtu.be,3,1,ZeljkoS,12/13/2015 10:58 +10713019,Show HN: Startup Calendar Audit,https://itunes.apple.com/us/app/startup-calendar-audit/id1063025664?ls=1&mt=8,2,1,adamhayek,12/10/2015 20:01 +11062729,Will Bond (Package Control) Joins Sublime HQ,https://www.sublimetext.com/blog/articles/sublime-text-3-build-3103,304,88,dmart,2/9/2016 2:50 +10673615,Debugging Node.js in Production,http://techblog.netflix.com/2015/12/debugging-nodejs-in-production.html,173,71,aaronbrethorst,12/3/2015 23:48 +10561614,Ask HN: Why No Discussion on the Grace Murray Hopper Academy,,1,4,drallison,11/13/2015 18:50 +12260680,A Users Guide to FiveThirtyEights 2016 General Election Forecast,http://fivethirtyeight.com/features/a-users-guide-to-fivethirtyeights-2016-general-election-forecast/,2,1,aburan28,8/10/2016 10:45 +10878647,Why the Sharing Economy Is Awful,http://cryoshon.co/2016/01/11/why-the-sharing-economy-is-awful/,2,2,cryoshon,1/11/2016 3:41 +10959093,The fashion for making employees collaborate has gone too far,http://www.economist.com/news/business/21688872-fashion-making-employees-collaborate-has-gone-too-far-collaboration-curse?fsrc=scn%2Ffb%2Fte%2Fpe%2Fed%2Fthecollaborationcurse,5,1,edward,1/23/2016 17:31 +11875211,Facebook have quietly retired their Notifications RSS Feed,https://www.facebook.com/notifications,8,2,Jaruzel,6/10/2016 9:31 +11028595,No longer mysterious: Digital power solutions are becoming easier to implement,https://eengenious.com/ready-for-prime-time-digital-power-solutions-enable-intelligent-energy-management/,3,3,yagnaumsys,2/3/2016 18:45 +12393752,Ask HN: Leave new job after one month?,,9,9,glasnoster,8/30/2016 20:46 +12336500,FemtoEmacs: Tiny Emacs clone with configuration in FemtoLisp,https://github.com/FemtoEmacs/Femto-Emacs/,44,34,cm3,8/22/2016 14:22 +12159411,Whaleprint Use docker DAB as swarm mode service blueprints,https://github.com/mantika/whaleprint,1,1,marcosnils,7/25/2016 15:42 +11370237,Linux 4.6 to Offer Faster Raspberry Pi 3D Performance,http://www.phoronix.com/scan.php?page=news_item&px=Linux-4.6-RPi-Faster-3D,13,1,doener,3/27/2016 15:23 +12197281,"Pokemon GO Dev Doesn't Like Pokevision, Tracking Apps",http://gamerant.com/pokemon-go-pokevision-tracker-app/,2,1,exception_e,7/31/2016 15:09 +10555663,Gmail Will Soon Warn Users When Emails Arrive Over Unencrypted Connections,http://techcrunch.com/2015/11/12/gmail-will-soon-warn-users-when-emails-arrive-over-unencrypted-connections/,299,59,lujim,11/12/2015 19:56 +11939729,There Is No Speed Limit (2009),https://sivers.org/kimo,20,2,keiferski,6/20/2016 17:51 +11045251,Webapp in Go? Consider using longpolling,https://cugablog.wordpress.com/,1,1,jcuga,2/5/2016 22:47 +10775440,SpaceX Successfully Lands a Giant Falcon 9 Rocket for the First Time,http://techcrunch.com/2015/12/21/spacex-successfully-lands-a-giant-falcon-9-rocket-for-the-first-time/?sr_share=facebook#.oztsu6:7TfL,46,19,vanwilder77,12/22/2015 2:42 +10416928,"K-Hole Issue 5 Chaos Magic, Founder Mode, and the Weaponization of Burnout",http://khole.net/issues/05/,2,1,charliecurran,10/20/2015 1:35 +10578423,Eyes Wide Open at the Protest,http://www.dartreview.com/eyes-wide-open-at-the-protest/,2,2,ericjang,11/17/2015 0:41 +11004317,"IBM to cut more than 111,000 jobs in largest corporate lay-off ever",http://www.ibtimes.co.uk/ibm-cut-more-111000-jobs-this-week-largest-corporate-lay-off-ever-1485128,7,1,hunvreus,1/30/2016 23:33 +11924500,"EBay search not working, same thing happened this exact day last year",https://community.ebay.com/t5/Technical-Issues/Search-not-working/m-p/25689114#M18153,10,2,MrBra,6/17/2016 18:24 +10372107,"Women in Math, the War of Attrition",https://medium.com/@adrielbarrettjohnson/re-women-in-math-5ba76f272eb9,6,1,abarrettjo,10/12/2015 1:59 +10422005,Why is the placebo effect getting stronger in the USA,http://www.bbc.co.uk/news/magazine-34572482,3,1,umbula,10/20/2015 21:41 +12063577,What killed Sun Microsystems?,http://hxxbit.vinci.cloud/2016/06/08/whatkilledsun/,6,4,ImFrostbyte,7/9/2016 22:13 +12537992,Snapshot of North Koreas DNS data taken from zone transfers,https://github.com/mandatoryprogrammer/NorthKoreaDNSLeak,213,95,mandatory,9/20/2016 8:28 +12065931,"Ask HN: Assuming proper encryption, why reset passwords after a security breach?",,3,3,ricardobeat,7/10/2016 15:39 +11535210,Ask HN: Hiring software engineers in '16 vs. prior years?,,14,7,lscore720,4/20/2016 15:37 +11899198,Ask HN: Been in dead end job for too long. Quit without offer in hand?,,30,25,Wonnk13,6/14/2016 1:45 +11848684,Ask HN: Collaborative RSS?,,1,5,tmaly,6/6/2016 17:46 +10593861,Backyard UNDERGROUND Apocalyptic BUNKER,https://www.youtube.com/watch?v=KO25JYAaJC0,4,1,andygambles,11/19/2015 10:06 +10881550,Commission concludes Belgian Excess Profit tax scheme illegal,http://europa.eu/rapid/press-release_IP-16-42_en.htm,3,1,us0r,1/11/2016 16:54 +11115144,SciHub Pirated Research Papers,http://www.sci-hub.io/,91,5,vinchuco,2/17/2016 3:53 +10397256,Neural Implementation of Probabilistic Models of Cognition,http://arxiv.org/abs/1501.03209,26,1,mindcrime,10/16/2015 3:09 +10513012,Show HN: Data Is Plural A weekly newsletter of useful/curious datasets,https://tinyletter.com/data-is-plural,89,13,jsvine,11/5/2015 12:57 +10962149,Rss-puppy: A watchdog tool for monitoring RSS feeds,https://github.com/buzzfeed-openlab/rss-puppy,54,4,ingve,1/24/2016 10:40 +10559573,Show HN: ZipPlease An API to Create Zip Files on the Fly,https://www.zipplease.com/,4,2,impostervt,11/13/2015 13:03 +11380455,Ask HN: What Rails-style web frameworks are there?,,5,1,networked,3/29/2016 9:55 +11265924,The Ecologist Who Threw Starfish,http://nautil.us/issue/34/adaptation/the-ecologist-who-threw-starfish,38,5,dnetesn,3/11/2016 11:14 +10318029,"Ask HN: Which browser add-ons do you use, what for and how did you discover them?",,11,21,queeerkopf,10/2/2015 12:30 +10545135,Northface teams with Japanese startup to create spider silk moon parka,http://frequentgadget.com/2015/11/11/northface-teams-with-japanese-startup-to-create-spider-silk-moon-parka-jacket/,57,31,nether,11/11/2015 6:26 +10259742,"Daniel Thompson, Whose Bagel Machine Altered the American Diet, Dies at 94",http://www.nytimes.com/2015/09/22/business/daniel-thompson-whose-bagel-machine-altered-the-american-diet-dies-at-94.html?_r=0,73,52,davidf18,9/22/2015 16:41 +11184713,Lightweight C library to parse NMEA 0183 sentences,https://github.com/jacketizer/libnmea,3,1,XtalBlue,2/26/2016 22:16 +10502220,Why nuclear energy is our best option at the moment,http://energyrealityproject.com/lets-run-the-numbers-nuclear-energy-vs-wind-and-solar/,398,384,nrcha,11/3/2015 20:10 +11714962,Electropocalypse iPad App to learn electronics hands-on,http://stratolab.com/electropocalypse/,1,1,miles,5/17/2016 16:31 +11325446,Show HN: Implement Posixish threads one bite at a time,https://github.com/ljanyst/thread-bites/blob/master/README.md,2,1,ljan,3/21/2016 0:34 +10329129,HaaaS (Haas Avocados as a Service),http://www.goavocago.com,42,48,loopr,10/4/2015 22:49 +10651976,Ideas are not cheap,http://www.tillett.info/2015/08/30/ideas-are-not-cheap/,95,105,jacquesm,11/30/2015 21:30 +12030996,Get rid of switch/case/if,http://piotrgankiewicz.com/2016/07/04/get-rid-of-switchcaseif/,1,2,mdymel,7/4/2016 14:34 +12515288,?Oracle abandons NetBeans to Apache,http://www.zdnet.com/article/oracle-abandons-netbeans-to-apache/,3,1,CrankyBear,9/16/2016 16:45 +11298085,Deep Learning Is Going to Teach Us All the Lesson of Our Lives,https://medium.com/basic-income/deep-learning-is-going-to-teach-us-all-the-lesson-of-our-lives-jobs-are-for-machines-7c6442e37a49,30,19,2noame,3/16/2016 15:31 +12570231,Stop Relying on GUI; CLI ROCKS,https://github.com/you-dont-need/You-Dont-Need-GUI,4,4,stevemao,9/24/2016 9:30 +10522127,Controlling CrowdHaiku,https://blog.kyleclemens.com/2015/11/06/crowdhaiku,4,1,jkcclemens,11/6/2015 21:22 +12196102,Helvetica vs. Arial WebApp,http://tumult.com/hype/gallery/Helvetica_vs_Arial_WebApp/Helvetica_vs_Arial_WebApp.html,1,2,bogidon,7/31/2016 7:39 +11134775,Show HN: Estimated Reading Time API,http://klopets.com/readtime/?url=https://medium.com/the-story/read-time-and-you-bc2048ab620c&utm_medium=hn&utm_source=showhn,56,29,mklopets,2/19/2016 17:15 +10683509,Introducing d3-shape,https://medium.com/@mbostock/introducing-d3-shape-73f8367e6d12,218,19,ingve,12/5/2015 22:30 +11550843,Swift Reversing [pdf],http://infiltratecon.com/archives/swift_Ryan_Stortz.pdf,42,3,chatmasta,4/22/2016 17:31 +10346236,Advice on Relational Database,,1,6,Legendslayer,10/7/2015 14:34 +10958025,Cheating VoIP Security by Flooding the SIP,http://resources.infosecinstitute.com/cheating-voip-security-by-flooding-the-sip/,4,1,aburan28,1/23/2016 11:19 +11632636,"Romanian hacker Guccifer: I breached Clinton server, 'it was easy'",http://www.foxnews.com/politics/2016/05/04/romanian-hacker-guccifer-breached-clinton-server-it-was-easy.html,39,11,rrauenza,5/4/2016 22:55 +10477675,New design points a path to the ultimate battery,https://www.cam.ac.uk/research/news/new-design-points-a-path-to-the-ultimate-battery,1,1,fintanr,10/30/2015 13:38 +10598888,The amphetamine fuelling the Syrian war turning fighters into supersoldiers,http://www.independent.co.uk/news/world/middle-east/captagon-the-tiny-amphetamine-pill-fueling-the-syrian-civil-war-and-turning-fighters-into-superhuman-a6740601.html,1,1,wslh,11/20/2015 1:03 +10460610,BuzzFeed and Vox Media May Bail on SXSW Unless Canceled Panels Are Reinstated,http://recode.net/2015/10/27/buzzfeed-to-withdraw-from-sxsw-unless-organizers-reverse-panel-cancelations/,9,2,fredfoobar42,10/27/2015 19:49 +11481912,Ask HN: Am I releasing code artifacts or docker images?,,1,1,canterburry,4/12/2016 17:58 +10779700,We built a website to provide kids with basic necessities,https://storylink.io,3,4,nslo,12/22/2015 19:21 +11026772,The Important of Task Management,https://medium.com/@findbridge/the-importance-of-task-management-76e88fc120ac#.gblo31l3r,1,1,azeemk,2/3/2016 15:03 +12223126,"Will human sexuality ever be free from stone age, evolutionary impulses?",https://aeon.co/essays/will-human-sexuality-ever-be-free-from-stone-age-impulses,6,3,jseliger,8/4/2016 3:08 +10476861,A Call for the Elimination of Joke Haiku Production on the Internet (2001),http://woozle.org/neale/papers/joke-haiku.html,37,26,thristian,10/30/2015 9:30 +11286963,Why Pi Matters (2015),http://www.newyorker.com/tech/elements/pi-day-why-pi-matters?currentPage=all,72,40,Osiris30,3/15/2016 1:57 +11263740,Andela Kenyas First All-Female Developer Cohort,http://www.andela.com/blog/andela-kenya-first-all-female-developer-cohort/,7,1,crufo,3/11/2016 0:36 +12074077,Why validation libraries suck,https://medium.com/@steida/why-validation-libraries-suck-b63b5ff70df5,1,1,exyi,7/11/2016 20:14 +11629715,Stack Overflows New CMO Adrianna Burrows,http://blog.stackoverflow.com/2016/05/welcoming-stack-overflows-new-cmo-adrianna-burrows,2,1,shagunsodhani,5/4/2016 17:00 +11901461,Our M&A wish list the types of companies we'd like to acquire,https://www.cbinsights.com/blog/acquisition-wish-list/,1,1,asanwal,6/14/2016 12:10 +10486062,Your own Debian Mail Server (part II): how to prove you are not a spammer,https://scaron.info/blog/debian-mail-spf-dkim.html,276,96,tastalian,11/1/2015 10:51 +11952157,"Show HN: ExtractorApp Convert Excel / CSV to API, SQL and Other Formats",https://extractorapp.com/,4,2,cdsmarty,6/22/2016 7:45 +11565984,Show HN: Raspberry PI Zero Docker/Swarm on QuickStart,https://twitter.com/docker/status/722286615939432448,1,1,alexellisuk,4/25/2016 17:56 +12000847,"Half Blamed the EU for Their Problems, Blame Facebook for Yours",http://www.thememo.com/2016/06/29/brexit-social-media-eu-half-blamed-the-eu-for-their-problems-blame-social-media-for-yours/,107,166,alexwoodcreates,6/29/2016 11:21 +10870453,WURFL and Database Copyright (2012),https://shkspr.mobi/blog/2012/01/wurfl-and-database-copyright/,2,1,neya,1/9/2016 7:35 +12255906,Ask HN: Have you tried Project Fi? Do you like it?,,2,2,crypticlizard,8/9/2016 16:49 +12114070,Unbundling Pokémon Go for Android,https://applidium.com/en/news/unbundling_pokemon_go/,53,10,OrangeTux,7/18/2016 9:44 +10206943,Ask HN: What should you ask for in an employment contract when being acquihired?,,8,1,aquihired,9/12/2015 1:43 +11634813,Popular scheme implementations benchmarked,https://www.nexoid.at/tmp/scheme-benchmark-r7rs.html,5,1,Johnny_Brahms,5/5/2016 9:35 +11057179,The Bronica RF645 Rangefinder Revisited,http://photo.net/mjohnston/column3/,2,1,Tomte,2/8/2016 9:38 +11257237,Apple Might Be Forced to Reveal and Share iPhone Unlocking Code Widely,https://www.techdirt.com/articles/20160308/16465433841/apple-might-be-forced-to-reveal-share-iphone-unlocking-code-widely.shtml,2,1,libertymcateer,3/10/2016 3:22 +11884053,[FOR GIT USERS] YoLog Lightweight Wrapper to Beautify Your Git Logs,https://github.com/karandesai-96/yolog/,6,8,d4rth_s1d10us,6/11/2016 16:30 +11989364,Node.js Version List,http://njsv.yaoo.net/,5,1,skibz,6/27/2016 20:50 +11323310,When I sold out to advertising,http://www.salon.com/2012/03/16/when_i_sold_out_to_advertising/,2,1,danso,3/20/2016 15:38 +11501119,Signs point to Apple abandoning OS X branding in favor of MacOS,http://arstechnica.com/apple/2016/04/signs-point-to-apple-abandoning-os-x-branding-in-favor-of-macos/,2,1,OberstKrueger,4/14/2016 23:46 +10362265,WSJ/Dowjones Announce Unauthorized Access Between 2012-15 [pdf],http://s.wsj.net/message/dowjonesletter-20151009.pdf,3,1,adamrights,10/9/2015 18:22 +12524656,Python vs. Julia Observations,https://medium.com/@Jernfrost/python-vs-julia-observations-e61ee667fa95,2,1,blacksmythe,9/18/2016 9:54 +10410362,"Earliest Known Draft of King James Bible Is Found, Scholar Says",http://www.nytimes.com/2015/10/15/books/earliest-known-draft-of-king-james-bible-is-found-scholar-says.html,106,104,samclemens,10/18/2015 23:54 +12369486,Colombias Milestone in World Peace,http://www.nytimes.com/2016/08/26/opinion/colombias-milestone-in-world-peace.html,108,70,JBReefer,8/26/2016 21:37 +12277787,Standup Antipatterns,https://medium.com/@yanismydj/standup-antipatterns-1e9db0d497da,66,30,ylhert,8/12/2016 18:35 +12056210,Tech job listings are down 40% on several job boards,https://medium.com/@cameronmoll/tech-hiring-is-down-40-and-nobodys-talking-about-it-3d6f658d9faf,296,251,uptown,7/8/2016 15:31 +12268610,Phoenix Channels vs. Rails ActionCable,https://dockyard.com/blog/2016/08/09/phoenix-channels-vs-rails-action-cable?updated,54,3,bcardarella,8/11/2016 14:45 +10401344,Different Brain Regions Are Infected with Fungi in Alzheimers Disease,http://www.nature.com/articles/srep15015,338,155,wilder,10/16/2015 18:55 +11701146,Ask HN: Useful Books/Online Courses for Technical Managers,,2,3,chw9e,5/15/2016 15:01 +11226489,Multi-Factor Authentication in Mint,https://mint.lc.intuit.com/announcements/1286158,1,1,OrwellianChild,3/4/2016 20:01 +10759251,Show HN: App to convert steps walked to Bitcoins,http://burningmanapp.co/,12,4,prggmr,12/18/2015 16:28 +10399451,Unicorn CPU emulator engine released,https://github.com/unicorn-engine/unicorn,2,2,farmdve,10/16/2015 14:19 +10650076,Why the Bronx Really Burned,http://fivethirtyeight.com/datalab/why-the-bronx-really-burned/,35,8,mdlincoln,11/30/2015 16:11 +11222099,Show HN: Geocoding API built with government open data,https://latlon.io,6,6,evanmarks,3/4/2016 4:50 +10595655,Parasite Is Really a Micro-Jellyfish,http://www.smithsonianmag.com/smart-news/parasite-really-micro-jellyfish-180957326/?no-ist,28,4,kungfudoi,11/19/2015 16:27 +11220224,Ask HN: How do they write test coverage for driverless cars?,,9,8,tomcam,3/3/2016 21:35 +10949891,Ask HN: What should I learn right now to keep my programming skills current?,,13,15,barce,1/22/2016 0:50 +12375190,How can I become a AAA programmer?,,4,2,truth_sentinell,8/28/2016 3:33 +11720353,Proposal: C.UTF-8,https://sourceware.org/glibc/wiki/Proposals/C.UTF-8,3,1,ashitlerferad,5/18/2016 7:33 +11735438,Show HN: Decorating: Animated pulsed for your slow functions in Python,https://github.com/ryukinix/decorating,3,1,lerax,5/20/2016 3:48 +11983932,Nick Clegg: what you will wake up to if we vote to Leave,https://inews.co.uk/opinion/comment/will-wake-vote-leave/,2,1,hoodoof,6/27/2016 2:49 +12010760,Ask HN: Just got an innocent man out of prison. What now?,,510,199,ClintEhrlich,6/30/2016 18:44 +10692145,Records show $70k CEO hasn't actually mortgate his homes,http://www.geekwire.com/2015/records-show-gravity-payments-ceo-dan-price-hasnt-actually-mortgaged-his-homes/,8,1,someear,12/7/2015 19:50 +10302524,Ive Looked at Airbnb and Its Way Worse Than You Think,https://medium.com/@sfhousingrightscommittee/an-open-letter-to-airbnb-emey-about-housing-and-prop-f-8d1bfb84356,20,1,negrit,9/30/2015 8:31 +10269376,Patent US8762879 Tab management in a browser,https://www.google.com/patents/US8762879,27,24,azhenley,9/24/2015 1:38 +10176908,Dying vets fuck you letter (2013),http://dangerousminds.net/comments/dying_vets_fuck_you_letter_to_george_bush_dick_cheney_needs_to_be_read,10,2,mycodebreaks,9/6/2015 5:56 +11399892,LARS: A Fast Zero Allocation HTTP Router for Go,https://github.com/go-playground/lars,8,1,njaremko,3/31/2016 19:30 +11940183,Ansible Container,https://github.com/ansible/ansible-container,1,1,geerlingguy,6/20/2016 18:38 +11190212,Ask HN: Could voice commands make programming easier?,,2,1,hoodoof,2/28/2016 7:28 +10866376,Ask HN: Double Entry Accounting Software for Personal Use,,2,5,rbcgerard,1/8/2016 17:08 +10462891,VLC now renders subtitles in South Asian scripts,https://rajeeshknambiar.wordpress.com/2015/10/27/vlc-now-render-subtitles-in-south-asian-scripts/,42,5,suneeshtr,10/28/2015 4:48 +12128537,The long awaited RSS Reader is finally coming to Opera Web Browser,http://www.opera.com/blogs/desktop/2016/07/opera-developer-40-0-2296-0-update/,2,1,riqbal,7/20/2016 12:43 +10920909,"Goodbye Docker on CentOS, Hello Ubuntu",https://www.linux-toys.com/?p=374,71,41,rusher81572,1/17/2016 20:33 +11181617,The Dog Thief Killings,http://roadsandkingdoms.com/2016/the-dog-thief-killings/,49,24,sergeant3,2/26/2016 14:48 +10200913,Show HN: Idea to startup,https://ideatostartup.org,14,17,nikhildaga,9/10/2015 22:17 +10358468,"I showed leaked NSA slides at Purdue, so feds demanded the video be destroyed",http://arstechnica.com/tech-policy/2015/10/i-showed-leaked-nsa-slides-at-purdue-so-feds-demanded-the-video-be-destroyed/,7,1,jeo1234,10/9/2015 6:23 +10629613,8 Practices to Build a Modern Technology Organization,https://medium.com/@scocarter/developing-a-technology-roadmap-8d5eb337df72#.4rmpszt91,2,1,bongurr,11/25/2015 20:53 +10362429,"Stephen Hawking Says We Should Really Be Scared of Capitalism, Not Robots",http://usuncut.com/news/edit-complete-hw-stephen-hawking-says-really-scared-capitalism-not-robots/,15,2,elmar,10/9/2015 18:46 +11370441,The one hundredth anniversary of the Irish Easter 1916 uprising,http://marginalrevolution.com/marginalrevolution/2016/03/one-hundredth-anniversary-easter-1916-uprising.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+marginalrevolution%2Ffeed+%28Marginal+Revolution%29,19,8,jseliger,3/27/2016 16:17 +11237125,Dynamic Memory Networks for Visual and Textual Question Answering,http://arxiv.org/abs/1603.01417,122,15,evc123,3/7/2016 4:35 +10865817,How Amazon Outflanked Netflix,https://medium.com/@iamziad/how-amazon-outflanked-netflix-whether-to-respond-to-competition-9ab0157fd55b,38,57,ziszis,1/8/2016 16:06 +10642651,Paris climate activists put under house arrest using emergency laws,http://www.theguardian.com/environment/2015/nov/27/paris-climate-activists-put-under-house-arrest-using-emergency-laws,4,1,stefantalpalaru,11/28/2015 22:05 +10901294,Google Maps for Androids new Driving Mode guesses where you want to go,http://venturebeat.com/2016/01/13/google-maps-for-androids-new-driving-mode-guesses-where-you-want-to-go/,1,2,bko,1/14/2016 13:44 +10780896,"Sued Over Old Debt, and Blocked from Suing Back",http://www.nytimes.com/2015/12/23/business/dealbook/sued-over-old-debt-and-blocked-from-suing-back.html,53,33,petethomas,12/22/2015 22:50 +12164694,"Bitcoins not money, judge rules as she tosses money-laundering charge",https://www.washingtonpost.com/news/morning-mix/wp/2016/07/26/bitcoins-not-money-judge-rules-as-she-tosses-money-laundering-charge/,140,87,ourmandave,7/26/2016 10:53 +10794455,Object oriented design principles programmer should know,http://javarevisited.blogspot.com/2012/03/10-object-oriented-design-principles.html,1,1,javinpaul,12/26/2015 16:32 +11807059,Why Procrastinators Procrastinate (2013),http://waitbutwhy.com/2013/10/why-procrastinators-procrastinate.html,2,1,kasbah,5/31/2016 15:24 +12191089,Israel Proves the Desalination Era Is Here,http://www.scientificamerican.com/article/israel-proves-the-desalination-era-is-here/,586,331,doener,7/30/2016 0:48 +10581199,Introducing Pushbullet Pro,https://blog.pushbullet.com/2015/11/17/introducing-pushbullet-pro/,5,2,supercopter,11/17/2015 14:25 +11839200,You can't code away their wealth,https://www.youtube.com/watch?v=FEU632_Em3g,3,2,ashitlerferad,6/5/2016 1:29 +12576606,A Google self-driving car was involved in crash in Mt. View today,https://techcrunch.com/2016/09/23/a-google-self-driving-car-crashed-in-mt-view-today/?ncid=rss&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29,1,1,prostoalex,9/25/2016 18:29 +11341823,What Is a Robot?,http://www.theatlantic.com/technology/print/2016/03/what-is-a-human/473166/?single_page=true,27,7,Osiris30,3/23/2016 3:03 +12082656,Libgnutls: fix issue when p11-kit trust store 4 certif verif (GNUTLS-SA-2016-2),http://permalink.gmane.org/gmane.network.gnutls.general/4142,1,1,based2,7/12/2016 22:20 +11282788,Things I Wont Work With: Dioxygen Difluoride (2010),http://blogs.sciencemag.org/pipeline/archives/2010/02/23/things_i_wont_work_with_dioxygen_difluoride,73,30,CarolineW,3/14/2016 13:38 +10367839,Stumptown Acquired by Pete's Coffee and Tea,https://www.stumptowncoffee.com/blog/a-note,1,1,bndw,10/11/2015 2:48 +11098636,Ask HN: Weather site negative temps,,2,1,tmaly,2/14/2016 15:42 +10379861,The Case for Getting Rid of Borders,http://www.theatlantic.com/business/archive/2015/10/get-rid-borders-completely/409501/?single_page=true,3,1,mhb,10/13/2015 12:18 +12428930,Human footprint surprisingly outpaced by population and economic growth,http://phys.org/news/2016-08-human-footprint-surprisingly-outpaced-population.html,1,1,mazsa,9/5/2016 8:36 +10868892,"The Lyrics to Lil Wayne's 'P**** Monster,' Rearranged by Frequency (NSFW)",http://www.huffingtonpost.com/2014/08/12/lil-wayne-pussy-monster-franny-choi_n_5669822.html,1,1,castig,1/8/2016 22:47 +10994357,Ask HN: Is it feasible to port Apple's Swift to the ESP8266?,,3,17,schappim,1/29/2016 9:42 +11712730,Twitter Picks Russia Over the U.S,http://www.wsj.com/articles/twitter-picks-russia-over-the-u-s-1463346268,1,5,r721,5/17/2016 11:40 +10362094,Are global wages about to turn?,http://www.bbc.co.uk/news/business-34488950,49,64,SimplyUseless,10/9/2015 18:00 +12241954,Ask HN: What to do when a developer goes dark?,,3,3,bittysdad,8/7/2016 12:58 +10827680,When Plants Go to War,http://nautil.us/issue/31/stress/when-plants-go-to-war,6,1,ernesto95,1/2/2016 20:12 +10853647,"FAA says 181,000 drones have been registered since December 21",http://www.dronethority.com/blog/2016/1/6/faa-says-181000-drones-have-been-registered-since-december-21,9,4,dronethority,1/6/2016 20:50 +12029526,Ask HN: Killer app for AR?,,2,2,davidiach,7/4/2016 8:50 +10403007,"Goldman, JPMorgan Said to Fire 30 Analysts for Cheating on Tests",http://www.bloomberg.com/news/articles/2015-10-16/goldman-sachs-said-to-dismiss-20-analysts-for-cheating-on-tests,2,1,petethomas,10/17/2015 1:21 +12206008,DNC Staffer got pop-up messages alerting of state-sponsored actors,http://arstechnica.com/security/2016/08/dnc-staffer-got-pop-up-messages-alerting-of-state-sponsored-actors/,10,3,Shank,8/1/2016 21:08 +11227969,Ask HN: How do you balance a serious relationship with starting a company?,,10,4,audace,3/5/2016 1:25 +11624626,Lightning deployment for your ~/Sites folders,https://github.com/fulldecent/Sites,4,1,fulldecent,5/3/2016 22:05 +10819538,"Study: US is an oligarchy, not a democracy (2014)",http://www.bbc.com/news/blogs-echochambers-27074746,42,50,coloneltcb,12/31/2015 20:34 +11620017,"The Optical Illusion Thats So Good, It Even Fools DanKam",https://dankaminsky.com/2010/12/17/mindless-equals-blown/,3,1,cmrx64,5/3/2016 12:41 +10532762,"Yahoo Hires McKinsey to Mull Reorg, as Mayer Demands Exec Pledge to Stay",http://recode.net/2015/11/09/yahoo-hires-mckinsey-to-mull-reorg-as-mayer-demands-exec-pledge-to-stay/,8,4,jackgavigan,11/9/2015 13:02 +10424028,Apple could use custom x86 SoC made by AMD,http://www.bitsandchips.it/52-english-news/6183-apple-could-use-custom-x86-soc-made-by-amd,4,1,doener,10/21/2015 6:46 +11399803,Hash_salt=,https://github.com/search?p=2&q=%22hash_salt%3D%22&ref=searchresults&type=Code&utf8=%E2%9C%93,4,2,newsignup,3/31/2016 19:17 +11883153,Movie written by AI algorithm turns out to be hilarious and intense,http://arstechnica.co.uk/the-multiverse/2016/06/sunspring-movie-watch-written-by-ai-details-interview/,2,1,vinnyglennon,6/11/2016 12:03 +12034678,A Tender Hand in the Presence of Death,http://www.newyorker.com/magazine/2016/07/11/the-work-of-a-hospice-nurse,33,9,wallflower,7/5/2016 6:08 +12320560,Universities not teaching front-end development is a diversity problem,https://medium.com/code-like-a-girl/universities-not-teaching-front-end-development-is-a-diversity-problem-13921107c66f#.qyb3qpndj,1,3,DinahDavis,8/19/2016 15:10 +10710588,Don't bother creating a mobile app,https://medium.com/inside-birdly/why-you-shouldn-t-bother-creating-a-mobile-app-328af62fe0e5#.1io8bq45r,242,175,marwann,12/10/2015 13:59 +12521307,"Sugar Industry Manipulated Research About Health Effects, Study Finds",http://www.npr.org/2016/09/13/493801090/sugar-industry-manipulated-research-about-health-effects-study-finds,35,1,pkaeding,9/17/2016 17:05 +10897019,Hackers and Heroes: Rise of the CCC and Hackerspaces,http://hackaday.com/2016/01/12/hackers-and-heroes-rise-of-ccc-and-hackerspaces/,111,34,mariuz,1/13/2016 19:58 +11743946,Ask HN: Why are papers still published as PDFs?,,4,2,adius,5/21/2016 9:22 +11373889,"RichCSS Beautiful, DRY, Clean and Reusable CSS",http://www.richcss.com,5,1,richardsondx,3/28/2016 12:42 +10508267,OpenStreetMap from the International Space Station,http://patriciogonzalezvivo.github.io/ISS,1,1,chippy,11/4/2015 17:53 +12252371,Is the U.S. Due for Radically Raising Taxes for the Rich?,http://www.theatlantic.com/business/archive/2016/08/is-america-due-for-a-tax-hike/494795/?single_page=true,1,1,JumpCrisscross,8/9/2016 3:18 +11444393,"Show HN: PhantomJsCloud, Headless Browser SaaS",https://PhantomJsCloud.com,2,1,novaleaf,4/7/2016 3:04 +10527264,Google services set for 'return' to China,http://www.bbc.com/news/technology-34698642,53,49,tellarin,11/8/2015 3:08 +11599497,WebExtensions in Firefox 48,https://blog.mozilla.org/addons/2016/04/29/webextensions-in-firefox-48/,106,69,matteotom,4/29/2016 23:49 +10701807,Tiny temperature sensor powered by radio waves,https://www.tue.nl/en/university/news-and-press/news/04-12-2015-s-werelds-kleinste-temperatuursensor-haalt-zijn-energie-uit-radiogolven/,3,2,lakeeffect,12/9/2015 3:56 +10206255,Chariot Wins First Round of San Francisco's Private Transit Battle,http://www.forbes.com/sites/scottbeyer/2015/09/08/chariot-wins-first-round-of-san-franciscos-private-transit-battle/,42,44,evilsimon,9/11/2015 21:22 +12149183,Show HN: Parse recipe ingredients using JavaScript,https://github.com/herkyl/ingredients-parser,6,2,zongitsrinzler,7/23/2016 11:35 +11473902,Engineering PhD student who died last year will get rare posthumous degree,http://host.madison.com/wsj/news/local/uw-engineering-phd-student-who-died-last-year-will-get/article_b3de4af6-8ec0-52df-b658-721d3dbdc4c1.html,145,19,DarkContinent,4/11/2016 18:23 +10942147,Apples Amazing New Music App Hits All the Right Notes,https://www.yahoo.com/tech/apple-s-amazing-new-music-1347023806267446.html,4,1,snake117,1/20/2016 23:09 +11485277,Airbnb acquires team of Bitcoin and blockchain experts,http://qz.com/657246/airbnb-just-acquired-a-team-of-bitcoin-and-blockchain-experts/,13,1,onthedole,4/13/2016 2:29 +10469896,Is Tesla Doomed?,http://www.roadandtrack.com/car-culture/a26859/bob-lutz-tesla/,3,3,tomcam,10/29/2015 9:10 +12151906,"An Experiment with GitHub Pages, Jekyll and Travis CI (Having Some Fun)",http://darek.dk/2016/05/29/an-experiment-with-github-pages-jekyll-and-travis-ci.html,3,1,darekdk,7/24/2016 2:16 +12532304,Tips from a Pro: An Introduction to Microscopic Photography (2015),http://www.popphoto.com/tips-pro-microscopic-photography,51,4,Tomte,9/19/2016 15:45 +10741606,"Comcast CEO to angry customers: Its not me, its you",http://www.vox.com/business-and-finance/2015/12/15/10161100/brian-roberts-comcast-bad?utm_medium=social&utm_source=facebook&utm_campaign=voxdotcom&utm_content=tuesday,7,1,praneshp,12/16/2015 0:47 +12065681,The Renewed Case for the Reduced Instruction Set Computer: Avoiding ISA Bloat,http://www.eecs.berkeley.edu/Pubs/TechRpts/2016/EECS-2016-130.html,69,31,ingve,7/10/2016 14:28 +12317616,U.S. Judge Rejects Ubers Proposed $100M Settlement with Drivers,http://www.wsj.com/articles/u-s-judge-rejects-ubers-proposed-100-million-settlement-with-drivers-1471560362,54,56,Kaedon,8/19/2016 2:30 +11294026,English Syntax Highlighting,http://evanhahn.github.io/English-text-highlighting/,248,105,azdle,3/16/2016 0:06 +11925814,The Geek Behind Google's Map Quest,http://www.fastcompany.com/3060811/most-creative-people/the-geek-behind-googles-map-quest,1,2,chickenbane,6/17/2016 22:00 +10638339,"Usenet, what have you become? (2012)",http://www.90percentofeverything.com/2012/08/28/usenet-what-have-you-become/,63,57,pmoriarty,11/27/2015 18:42 +11138742,"Colma, Calif., Is a Town of 2.2 Square Miles, Most of It 6 Feet Deep (2006)",http://www.nytimes.com/2006/12/09/us/09cemetery.html,56,37,apsec112,2/20/2016 4:00 +12490497,The bizarre world of Bitcoin mining finds a new home in Tibet,https://www.washingtonpost.com/world/asia_pacific/in-chinas-tibetan-highlands-the-bizarre-world-of-bitcoin-mining-finds-a-new-home/2016/09/12/7729cbea-657e-11e6-b4d8-33e931b5a26d_story.html,2,1,e15ctr0n,9/13/2016 17:36 +11194636,Microservice on-top of distributed filesystem for NASA data,https://medium.com/@lorenzogotuned/applying-some-good-open-source-savvy-hacking-4a32323c64a3#.wvan5s8ex,3,1,tuned,2/29/2016 10:26 +10526324,Satoshi Nakamoto officially nominated for the Nobel prize in economics,http://www.huffingtonpost.com/bhagwan-chowdry/i-shall-happily-accept-th_b_8462028.html,47,6,rmason,11/7/2015 21:33 +11452432,Debian XScreenSaver package maintainer responds,https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819703#425,38,40,ashitlerferad,4/8/2016 3:41 +10788826,TSA Sued Over New Policy to Refuse Opt-Outs,http://professional-troublemaker.com/2015/12/24/corbett-sues-tsa-over-new-policy-to-refuse-opt-outs/,112,75,tsaoutourpants,12/24/2015 17:19 +10499089,"I have $10,000 dollars in my bank account. Am I an entrepreneur?",https://medium.com/@sktgthill/i-have-10-000-dollars-in-my-bank-account-am-i-an-entrepreneur-d3fa3bf4ee61,1,1,thileepan,11/3/2015 12:29 +11433605,Users Really Do Plug in USB Drives They Find [pdf],https://zakird.com/papers/usb.pdf,3,2,dadrian,4/5/2016 19:31 +10588305,Visual Studio now available in cloud subscriptions,https://www.visualstudio.com/products/how-to-buy-vs,113,41,mynameisvlad,11/18/2015 15:45 +11870578,Thought leader gives talk that will inspire your thoughts,https://www.youtube.com/watch?v=_ZBKX-6Gz6A,4,1,Analemma_,6/9/2016 16:49 +10404949,On Botnets and Streaming Music Services,http://motherboard.vice.com/read/i-built-a-botnet-that-could-destroy-spotify-with-fake-listens,120,70,6stringmerc,10/17/2015 16:35 +10524489,Two new steps toward quantum computing,http://phys.org/news/2015-11-big-quantum.html,14,2,djmylt,11/7/2015 11:27 +12379592,How Purism Avoids Intels Active Management Technology,https://puri.sm/philosophy/how-purism-avoids-intels-active-management-technology/,10,6,AdmiralAsshat,8/29/2016 2:22 +10339284,YC Application Translated and Broken Down,https://medium.com/@zreitano/the-yc-application-broken-down-and-translated-e4c0f5235081,4,1,zreitano,10/6/2015 14:57 +10824382,Microkernels are slow and Elvis didn't do no drugs,http://blog.darknedgy.net/technology/2016/01/01/0/,169,132,vezzy-fnord,1/2/2016 0:49 +10739875,How Product Hunt really works,https://medium.com/@benjiwheeler/how-product-hunt-really-works-d8fdcda1da74,695,222,brw12,12/15/2015 19:32 +11680777,RoboBrowser: Your friendly neighborhood web scraper,https://github.com/jmcarp/robobrowser,182,58,pmoriarty,5/12/2016 1:43 diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/melina_trump_speech.txt b/30-days-of-python/19_Manipulación_de_archivos/data/melina_trump_speech.txt new file mode 100644 index 0000000..06ec1de --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/melina_trump_speech.txt @@ -0,0 +1,33 @@ +Thank you very much. Thank you. You have all been very kind to Donald and me, to our young son Barron, and to our whole family. It's a very nice welcome and we're excited to be with you at this historic convention. I am so proud of your choice for president of the United States, my husband, Donald J. Trump. + +And I can assure you, he is moved by this great honor. The 2016 Republican primaries were fierce and started with many candidates, 17 to be exact, and I know that Donald agrees with me when I mention how talented all of them are. They deserve respect and gratitude from all of us. + +However, when it comes to my husband, I will say that I am definitely biased, and for good reason. + +I have been with Donald for 18 years and I have been aware of his love for this country since we first met. He never had a hidden agenda when it comes to his patriotism, because, like me, he loves this country so much. I was born in Slovenia, a small, beautiful and then-communist country in Central Europe. My sister Ines, who is an incredible woman and a friend, and I were raised by my wonderful parents. My elegant and hard-working mother Amalia introduced me to fashion and beauty. My father Viktor instilled in me a passion for business and travel. Their integrity, compassion and intelligence reflects to this day on me and for my love of family and America. + +From a young age, my parents impressed on me the values that you work hard for what you want in life; that your word is your bond and you do what you say and keep your promise; that you treat people with respect. They taught and showed me values and morals in their daily life. That is a lesson that I continue to pass along to our son, and we need to pass those lessons on to the many generations to follow. Because we want our children in this nation to know that the only limit to your achievements is the strength of your dreams and your willingness to work for them. + +I am fortunate for my heritage, but also for where it brought me today. I traveled the world while working hard in the incredible arena of fashion. After living and working in Milan and Paris, I arrived in New York City 20 years ago, and I saw both the joys and the hardships of daily life. On July 28, 2006, I was very proud to become a citizen of the United States — the greatest privilege on planet Earth. I cannot, or will not, take the freedoms this country offers for granted. But these freedoms have come with a price so many times. The sacrifices made by our veterans are reminders to us of this. I would like to take this moment to recognize an amazing veteran, the great Sen. Bob Dole. And let us thank all of our veterans in the arena today, and those across our great country. We are all truly blessed to be here. That will never change. + +I can tell you with certainty that my husband has been concerned about our country for as long as I have known him. With all of my heart, I know that he will make a great and lasting difference. Donald has a deep and unbounding determination and a never-give-up attitude. I have seen him fight for years to get a project done — or even started — and he does not give up! If you want someone to fight for you and your country, I can assure you, he is the "guy." + +He will never, ever, give up. And, most importantly, he will never, ever, let you down. Donald is, and always has been, an amazing leader. Now, he will go to work for you. His achievements speak for themselves, and his performance throughout the primary campaign proved that he knows how to win. He also knows how to remain focused on improving our country — on keeping it safe and secure. He is tough when he has to be but he is also kind and fair and caring. This kindness is not always noted, but it is there for all to see. That is one reason I fell in love with him to begin with. + +Donald is intensely loyal. To family, friends, employees, country. He has the utmost respect for his parents, Mary and Fred, to his sisters Maryanne and Elizabeth, to his brother Robert and to the memory of his late brother Fred. His children have been cared for and mentored to the extent that even his adversaries admit they are an amazing testament to who he is as a man and a father. There is a great deal of love in the Trump family. That is our bond, and that is our strength. + +Yes, Donald thinks big, which is especially important when considering the presidency of the United States. No room for small thinking. No room for small results. Donald gets things done. + +Our country is underperforming and needs new leadership. Leadership is also what the world needs. Donald wants our country to move forward in the most positive of ways. Everyone wants change. Donald is the only one that can deliver it. We should not be satisfied with stagnation. Donald wants prosperity for all Americans. We need new programs to help the poor and opportunities to challenge the young. There has to be a plan for growth — only then will fairness result. + +My husband's experience exemplifies growth and successful passage of opportunity to the next generation. His success indicates inclusion rather than division. My husband offers a new direction, welcoming change, prosperity and greater cooperation among peoples and nations. Donald intends to represent all the people, not just some of the people. That includes Christians and Jews and Muslims, it includes Hispanics and African Americans and Asians, and the poor and the middle-class. Throughout his career, Donald has successfully worked with people of many faiths and with many nations. + +Like no one else, I have seen the talent, the energy, the tenacity, the resourceful mind, and the simple goodness of heart that God gave to Donald Trump. Now is the time to use those gifts as never before, for purposes far greater than ever before. And he will do this better than anyone else can — and it won't even be close. Everything depends on it, for our cause and for our country. + +People are counting on him — all the millions of you who have touched us so much with your kindness and your confidence. You have turned this unlikely campaign into a movement that is still gaining in strength and number. The primary season, and its toughness, is behind us. Let's all come together in a national campaign like no other. + +The race will be hard-fought, all the way to November. There will be good times and hard times and unexpected turns — it would not be a Trump contest without excitement and drama. But through it all, my husband will remain focused on only one thing: this beautiful country, that he loves so much. + +If I am honored to serve as first lady, I will use that wonderful privilege to try to help people in our country who need it the most. One of the many causes dear to my heart is helping children and women. You judge a society by how it treats its citizens. We must do our best to ensure that every child can live in comfort and security, with the best possible education. As citizens of this great nation, it is kindness, love, and compassion for each other that will bring us together — and keep us together. These are the values Donald and I will bring to the White House. My husband is ready to lead this great nation. He is ready to fight, every day, to give our children the better future they deserve. Ladies and gentlemen, Donald J. Trump is ready to serve and lead this country as the next president of the United States. + +Thank you, God bless you, and God bless America. \ No newline at end of file diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/michelle_obama_speech.txt b/30-days-of-python/19_Manipulación_de_archivos/data/michelle_obama_speech.txt new file mode 100644 index 0000000..bc59c1b --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/michelle_obama_speech.txt @@ -0,0 +1,83 @@ +As you might imagine, for Barack, running for president is nothing compared to that first game of basketball with my brother, Craig. + +I can't tell you how much it means to have Craig and my mom here tonight. Like Craig, I can feel my dad looking down on us, just as I've felt his presence in every grace-filled moment of my life. + +At 6-foot-6, I've often felt like Craig was looking down on me too ... literally. But the truth is, both when we were kids and today, he wasn't looking down on me. He was watching over me. + +And he's been there for me every step of the way since that clear February day 19 months ago, when — with little more than our faith in each other and a hunger for change — we joined my husband, Barack Obama, on the improbable journey that's brought us to this moment. + +But each of us also comes here tonight by way of our own improbable journey. + +I come here tonight as a sister, blessed with a brother who is my mentor, my protector and my lifelong friend. + +I come here as a wife who loves my husband and believes he will be an extraordinary president. + +I come here as a mom whose girls are the heart of my heart and the center of my world — they're the first thing I think about when I wake up in the morning, and the last thing I think about when I go to bed at night. Their future — and all our children's future — is my stake in this election. + +And I come here as a daughter — raised on the South Side of Chicago by a father who was a blue-collar city worker and a mother who stayed at home with my brother and me. My mother's love has always been a sustaining force for our family, and one of my greatest joys is seeing her integrity, her compassion and her intelligence reflected in my own daughters. + +My dad was our rock. Although he was diagnosed with multiple sclerosis in his early 30s, he was our provider, our champion, our hero. As he got sicker, it got harder for him to walk, it took him longer to get dressed in the morning. But if he was in pain, he never let on. He never stopped smiling and laughing — even while struggling to button his shirt, even while using two canes to get himself across the room to give my mom a kiss. He just woke up a little earlier and worked a little harder. + +He and my mom poured everything they had into me and Craig. It was the greatest gift a child can receive: never doubting for a single minute that you're loved, and cherished, and have a place in this world. And thanks to their faith and hard work, we both were able to go on to college. So I know firsthand from their lives — and mine — that the American dream endures. + +And you know, what struck me when I first met Barack was that even though he had this funny name, even though he'd grown up all the way across the continent in Hawaii, his family was so much like mine. He was raised by grandparents who were working-class folks just like my parents, and by a single mother who struggled to pay the bills just like we did. Like my family, they scrimped and saved so that he could have opportunities they never had themselves. And Barack and I were raised with so many of the same values: that you work hard for what you want in life; that your word is your bond and you do what you say you're going to do; that you treat people with dignity and respect, even if you don't know them, and even if you don't agree with them. + +And Barack and I set out to build lives guided by these values, and pass them on to the next generation. Because we want our children — and all children in this nation — to know that the only limit to the height of your achievements is the reach of your dreams and your willingness to work for them. + +And as our friendship grew, and I learned more about Barack, he introduced me to the work he'd done when he first moved to Chicago after college. Instead of heading to Wall Street, Barack had gone to work in neighborhoods devastated when steel plants shut down and jobs dried up. And he'd been invited back to speak to people from those neighborhoods about how to rebuild their community. + +The people gathered together that day were ordinary folks doing the best they could to build a good life. They were parents living paycheck to paycheck; grandparents trying to get by on a fixed income; men frustrated that they couldn't support their families after their jobs disappeared. Those folks weren't asking for a handout or a shortcut. They were ready to work — they wanted to contribute. They believed — like you and I believe — that America should be a place where you can make it if you try. + +Barack stood up that day, and spoke words that have stayed with me ever since. He talked about "The world as it is" and "The world as it should be." And he said that all too often, we accept the distance between the two, and settle for the world as it is — even when it doesn't reflect our values and aspirations. But he reminded us that we know what our world should look like. We know what fairness and justice and opportunity look like. And he urged us to believe in ourselves — to find the strength within ourselves to strive for the world as it should be. And isn't that the great American story? + +It's the story of men and women gathered in churches and union halls, in town squares and high school gyms — people who stood up and marched and risked everything they had — refusing to settle, determined to mold our future into the shape of our ideals. + +It is because of their will and determination that this week, we celebrate two anniversaries: the 88th anniversary of women winning the right to vote, and the 45th anniversary of that hot summer day when [Dr. Martin Luther King Jr.] lifted our sights and our hearts with his dream for our nation. + +I stand here today at the crosscurrents of that history — knowing that my piece of the American dream is a blessing hard won by those who came before me. All of them driven by the same conviction that drove my dad to get up an hour early each day to painstakingly dress himself for work. The same conviction that drives the men and women I've met all across this country: + +People who work the day shift, kiss their kids goodnight, and head out for the night shift — without disappointment, without regret — that goodnight kiss a reminder of everything they're working for. + +The military families who say grace each night with an empty seat at the table. The servicemen and women who love this country so much, they leave those they love most to defend it. + +The young people across America serving our communities — teaching children, cleaning up neighborhoods, caring for the least among us each and every day. + +People like Hillary Clinton, who put those 18 million cracks in the glass ceiling, so that our daughters — and sons — can dream a little bigger and aim a little higher. + +People like Joe Biden, who's never forgotten where he came from and never stopped fighting for folks who work long hours and face long odds and need someone on their side again. + +All of us driven by a simple belief that the world as it is just won't do — that we have an obligation to fight for the world as it should be. + +That is the thread that connects our hearts. That is the thread that runs through my journey and Barack's journey and so many other improbable journeys that have brought us here tonight, where the current of history meets this new tide of hope. + +That is why I love this country. + +And in my own life, in my own small way, I've tried to give back to this country that has given me so much. That's why I left a job at a law firm for a career in public service, working to empower young people to volunteer in their communities. Because I believe that each of us — no matter what our age or background or walk of life — each of us has something to contribute to the life of this nation. + +It's a belief Barack shares — a belief at the heart of his life's work. + +It's what he did all those years ago, on the streets of Chicago, setting up job training to get people back to work and after-school programs to keep kids safe — working block by block to help people lift up their families. + +It's what he did in the Illinois Senate, moving people from welfare to jobs, passing tax cuts for hard-working families, and making sure women get equal pay for equal work. + +It's what he's done in the United States Senate, fighting to ensure the men and women who serve this country are welcomed home not just with medals and parades but with good jobs and benefits and health care — including mental health care. + +That's why he's running — to end the war in Iraq responsibly, to build an economy that lifts every family, to make health care available for every American, and to make sure every child in this nation gets a world class education all the way from preschool to college. That's what Barack Obama will do as president of the United States of America. + +He'll achieve these goals the same way he always has — by bringing us together and reminding us how much we share and how alike we really are. You see, Barack doesn't care where you're from, or what your background is, or what party — if any — you belong to. That's not how he sees the world. He knows that thread that connects us — our belief in America's promise, our commitment to our children's future — is strong enough to hold us together as one nation even when we disagree. + +It was strong enough to bring hope to those neighborhoods in Chicago. + +It was strong enough to bring hope to the mother he met worried about her child in Iraq; hope to the man who's unemployed, but can't afford gas to find a job; hope to the student working nights to pay for her sister's health care, sleeping just a few hours a day. + +And it was strong enough to bring hope to people who came out on a cold Iowa night and became the first voices in this chorus for change that's been echoed by millions of Americans from every corner of this nation. + +Millions of Americans who know that Barack understands their dreams; that Barack will fight for people like them; and that Barack will finally bring the change we need. + +And in the end, after all that's happened these past 19 months, the Barack Obama I know today is the same man I fell in love with 19 years ago. He's the same man who drove me and our new baby daughter home from the hospital 10 years ago this summer, inching along at a snail's pace, peering anxiously at us in the rearview mirror, feeling the whole weight of her future in his hands, determined to give her everything he'd struggled so hard for himself, determined to give her what he never had: the affirming embrace of a father's love. + +And as I tuck that little girl and her little sister into bed at night, I think about how one day, they'll have families of their own. And one day, they — and your sons and daughters — will tell their own children about what we did together in this election. They'll tell them how this time, we listened to our hopes, instead of our fears. How this time, we decided to stop doubting and to start dreaming. How this time, in this great country — where a girl from the South Side of Chicago can go to college and law school, and the son of a single mother from Hawaii can go all the way to the White House – we committed ourselves to building the world as it should be. + +So tonight, in honor of my father's memory and my daughters' future — out of gratitude to those whose triumphs we mark this week, and those whose everyday sacrifices have brought us to this moment — let us devote ourselves to finishing their work; let us work together to fulfill their hopes; and let us stand together to elect Barack Obama president of the United States of America. + +Thank you, God bless you, and God bless America. \ No newline at end of file diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/obama_speech.txt b/30-days-of-python/19_Manipulación_de_archivos/data/obama_speech.txt new file mode 100644 index 0000000..1ba7cc9 --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/obama_speech.txt @@ -0,0 +1,66 @@ +My fellow citizens:I stand here today humbled by the task before us, grateful for the trust you have bestowed, mindful of the sacrifices borne by our ancestors. I thank President Bush for his service to our nation, as well as the generosity and cooperation he has shown throughout this transition. +Forty-four Americans have now taken the presidential oath. The words have been spoken during rising tides of prosperity and the still waters of peace. Yet, every so often the oath is taken amidst gathering clouds and raging storms. At these moments, America has carried on not simply because of the skill or vision of those in high office, but because We the People have remained faithful to the ideals of our forbearers, and true to our founding documents. +So it has been. So it must be with this generation of Americans. + +That we are in the midst of crisis is now well understood. Our nation is at war, against a far-reaching network of violence and hatred. Our economy is badly weakened, a consequence of greed and irresponsibility on the part of some, but also our collective failure to make hard choices and prepare the nation for a new age. Homes have been lost; jobs shed; businesses shuttered. Our health care is too costly; our schools fail too many; and each day brings further evidence that the ways we use energy strengthen our adversaries and threaten our planet. + +These are the indicators of crisis, subject to data and statistics. Less measurable but no less profound is a sapping of confidence across our land - a nagging fear that America's decline is inevitable, and that the next generation must lower its sights. + +Today I say to you that the challenges we face are real. They are serious and they are many. + +They will not be met easily or in a short span of time. But know this, America - they will be met. On this day, we gather because we have chosen hope over fear, unity of purpose over conflict and discord. + +On this day, we come to proclaim an end to the petty grievances and false promises, the recriminations and worn out dogmas, that for far too long have strangled our politics. + +We remain a young nation, but in the words of Scripture, the time has come to set aside childish things. The time has come to reaffirm our enduring spirit; to choose our better history; to carry forward that precious gift, that noble idea, passed on from generation to generation: the God-given promise that all are equal, all are free, and all deserve a chance to pursue their full measure of happiness. + +In reaffirming the greatness of our nation, we understand that greatness is never a given. It must be earned. Our journey has never been one of short-cuts or settling for less. It has not been the path for the faint-hearted - for those who prefer leisure over work, or seek only the pleasures of riches and fame. Rather, it has been the risk-takers, the doers, the makers of things - some celebrated but more often men and women obscure in their labor, who have carried us up the long, rugged path towards prosperity and freedom. + +For us, they packed up their few worldly possessions and traveled across oceans in search of a new life. + +For us, they toiled in sweatshops and settled the West; endured the lash of the whip and plowed the hard earth. +For us, they fought and died, in places like Concord and Gettysburg; Normandy and Khe Sahn. Time and again these men and women struggled and sacrificed and worked till their hands were raw so that we might live a better life. They saw America as bigger than the sum of our individual ambitions; greater than all the differences of birth or wealth or faction. + +This is the journey we continue today. We remain the most prosperous, powerful nation on Earth. Our workers are no less productive than when this crisis began. Our minds are no less inventive, our goods and services no less needed than they were last week or last month or last year. Our capacity remains undiminished. But our time of standing pat, of protecting narrow interests and putting off unpleasant decisions - that time has surely passed. Starting today, we must pick ourselves up, dust ourselves off, and begin again the work of remaking America. + +For everywhere we look, there is work to be done. The state of the economy calls for action, bold and swift, and we will act - not only to create new jobs, but to lay a new foundation for growth. We will build the roads and bridges, the electric grids and digital lines that feed our commerce and bind us together. We will restore science to its rightful place, and wield technology's wonders to raise health care's quality and lower its cost. We will harness the sun and the winds and the soil to fuel our cars and run our factories. And we will transform our schools and colleges and universities to meet the demands of a new age. All this we can do. And all this we will do. + +Now, there are some who question the scale of our ambitions - who suggest that our system cannot tolerate too many big plans. Their memories are short. For they have forgotten what this country has already done; what free men and women can achieve when imagination is joined to common purpose, and necessity to courage. + +What the cynics fail to understand is that the ground has shifted beneath them - that the stale political arguments that have consumed us for so long no longer apply. The question we ask today is not whether our government is too big or too small, but whether it works - whether it helps families find jobs at a decent wage, care they can afford, a retirement that is dignified. Where the answer is yes, we intend to move forward. Where the answer is no, programs will end. And those of us who manage the public's dollars will be held to account - to spend wisely, reform bad habits, and do our business in the light of day - because only then can we restore the vital trust between a people and their government. + +Nor is the question before us whether the market is a force for good or ill. Its power to generate wealth and expand freedom is unmatched, but this crisis has reminded us that without a watchful eye, the market can spin out of control - and that a nation cannot prosper long when it favors only the prosperous. The success of our economy has always depended not just on the size of our Gross Domestic Product, but on the reach of our prosperity; on our ability to extend opportunity to every willing heart - not out of charity, but because it is the surest route to our common good. + +As for our common defense, we reject as false the choice between our safety and our ideals. Our Founding Fathers, faced with perils we can scarcely imagine, drafted a charter to assure the rule of law and the rights of man, a charter expanded by the blood of generations. Those ideals still light the world, and we will not give them up for expedience's sake. And so to all other peoples and governments who are watching today, from the grandest capitals to the small village where my father was born: know that America is a friend of each nation and every man, woman, and child who seeks a future of peace and dignity, and that we are ready to lead once more. + +Recall that earlier generations faced down fascism and communism not just with missiles and tanks, but with sturdy alliances and enduring convictions. They understood that our power alone cannot protect us, nor does it entitle us to do as we please. Instead, they knew that our power grows through its prudent use; our security emanates from the justness of our cause, the force of our example, the tempering qualities of humility and restraint. + +We are the keepers of this legacy. Guided by these principles once more, we can meet those new threats that demand even greater effort - even greater cooperation and understanding between nations. We will begin to responsibly leave Iraq to its people, and forge a hard-earned peace in Afghanistan. With old friends and former foes, we will work tirelessly to lessen the nuclear threat, and roll back the specter of a warming planet. We will not apologize for our way of life, nor will we waver in its defense, and for those who seek to advance their aims by inducing terror and slaughtering innocents, we say to you now that our spirit is stronger and cannot be broken; you cannot outlast us, and we will defeat you. + +For we know that our patchwork heritage is a strength, not a weakness. We are a nation of Christians and Muslims, Jews and Hindus - and non-believers. We are shaped by every language and culture, drawn from every end of this Earth; and because we have tasted the bitter swill of civil war and segregation, and emerged from that dark chapter stronger and more united, we cannot help but believe that the old hatreds shall someday pass; that the lines of tribe shall soon dissolve; that as the world grows smaller, our common humanity shall reveal itself; and that America must play its role in ushering in a new era of peace. + +To the Muslim world, we seek a new way forward, based on mutual interest and mutual respect. + +To those leaders around the globe who seek to sow conflict, or blame their society's ills on the West - know that your people will judge you on what you can build, not what you destroy. To those who cling to power through corruption and deceit and the silencing of dissent, know that you are on the wrong side of history; but that we will extend a hand if you are willing to unclench your fist. + +To the people of poor nations, we pledge to work alongside you to make your farms flourish and let clean waters flow; to nourish starved bodies and feed hungry minds. And to those nations like ours that enjoy relative plenty, we say we can no longer afford indifference to suffering outside our borders; nor can we consume the world's resources without regard to effect. For the world has changed, and we must change with it. + +As we consider the road that unfolds before us, we remember with humble gratitude those brave Americans who, at this very hour, patrol far-off deserts and distant mountains. They have something to tell us today, just as the fallen heroes who lie in Arlington whisper through the ages. + +We honor them not only because they are guardians of our liberty, but because they embody the spirit of service; a willingness to find meaning in something greater than themselves. And yet, at this moment - a moment that will define a generation - it is precisely this spirit that must inhabit us all. + +For as much as government can do and must do, it is ultimately the faith and determination of the American people upon which this nation relies. It is the kindness to take in a stranger when the levees break, the selflessness of workers who would rather cut their hours than see a friend lose their job which sees us through our darkest hours. It is the firefighter's courage to storm a stairway filled with smoke, but also a parent's willingness to nurture a child, that finally decides our fate. + +Our challenges may be new. The instruments with which we meet them may be new. But those values upon which our success depends - hard work and honesty, courage and fair play, tolerance and curiosity, loyalty and patriotism - these things are old. These things are true. They have been the quiet force of progress throughout our history. What is demanded then is a return to these truths. What is required of us now is a new era of responsibility - a recognition, on the part of every American, that we have duties to ourselves, our nation, and the world, duties that we do not grudgingly accept but rather seize gladly, firm in the knowledge that there is nothing so satisfying to the spirit, so defining of our character, than giving our all to a difficult task. + +This is the price and the promise of citizenship. + +This is the source of our confidence - the knowledge that God calls on us to shape an uncertain destiny. + +This is the meaning of our liberty and our creed - why men and women and children of every race and every faith can join in celebration across this magnificent mall, and why a man whose father less than sixty years ago might not have been served at a local restaurant can now stand before you to take a most sacred oath. + +So let us mark this day with remembrance, of who we are and how far we have traveled. In the year of America's birth, in the coldest of months, a small band of patriots huddled by dying campfires on the shores of an icy river. The capital was abandoned. The enemy was advancing. The snow was stained with blood. At a moment when the outcome of our revolution was most in doubt, the father of our nation ordered these words be read to the people: + +"Let it be told to the future world...that in the depth of winter, when nothing but hope and virtue could survive...that the city and the country, alarmed at one common danger, came forth to meet [it]." + +America. In the face of our common dangers, in this winter of our hardship, let us remember these timeless words. With hope and virtue, let us brave once more the icy currents, and endure what storms may come. Let it be said by our children's children that when we were tested we refused to let this journey end, that we did not turn back nor did we falter; and with eyes fixed on the horizon and God's grace upon us, we carried forth that great gift of freedom and delivered it safely to future generations. diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/romeo_and_juliet.txt b/30-days-of-python/19_Manipulación_de_archivos/data/romeo_and_juliet.txt new file mode 100644 index 0000000..60464cc --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/romeo_and_juliet.txt @@ -0,0 +1,4863 @@ +The Project Gutenberg EBook of Romeo and Juliet, by William Shakespeare + + +******************************************************************* +THIS EBOOK WAS ONE OF PROJECT GUTENBERG'S EARLY FILES PRODUCED AT A +TIME WHEN PROOFING METHODS AND TOOLS WERE NOT WELL DEVELOPED. THERE +IS AN IMPROVED EDITION OF THIS TITLE WHICH MAY BE VIEWED AS EBOOK +(#100) at https://www.gutenberg.org/ebooks/100 +******************************************************************* + + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org/license + + +Title: Romeo and Juliet + +Author: William Shakespeare + +Posting Date: May 25, 2012 [EBook #1112] +Release Date: November, 1997 [Etext #1112] + +Language: English + +Character set encoding: ASCII + +*** START OF THIS PROJECT GUTENBERG EBOOK ROMEO AND JULIET *** + + + + + + + + + + + + + +*Project Gutenberg is proud to cooperate with The World Library* +in the presentation of The Complete Works of William Shakespeare +for your reading for education and entertainment. HOWEVER, THIS +IS NEITHER SHAREWARE NOR PUBLIC DOMAIN. . .AND UNDER THE LIBRARY +OF THE FUTURE CONDITIONS OF THIS PRESENTATION. . .NO CHARGES MAY +BE MADE FOR *ANY* ACCESS TO THIS MATERIAL. YOU ARE ENCOURAGED!! +TO GIVE IT AWAY TO ANYONE YOU LIKE, BUT NO CHARGES ARE ALLOWED!! + + + + +The Complete Works of William Shakespeare + +The Tragedy of Romeo and Juliet + +The Library of the Future Complete Works of William Shakespeare +Library of the Future is a TradeMark (TM) of World Library Inc. + + +<> + + + + +1595 + +THE TRAGEDY OF ROMEO AND JULIET + +by William Shakespeare + + + +Dramatis Personae + + Chorus. + + + Escalus, Prince of Verona. + + Paris, a young Count, kinsman to the Prince. + + Montague, heads of two houses at variance with each other. + + Capulet, heads of two houses at variance with each other. + + An old Man, of the Capulet family. + + Romeo, son to Montague. + + Tybalt, nephew to Lady Capulet. + + Mercutio, kinsman to the Prince and friend to Romeo. + + Benvolio, nephew to Montague, and friend to Romeo + + Tybalt, nephew to Lady Capulet. + + Friar Laurence, Franciscan. + + Friar John, Franciscan. + + Balthasar, servant to Romeo. + + Abram, servant to Montague. + + Sampson, servant to Capulet. + + Gregory, servant to Capulet. + + Peter, servant to Juliet's nurse. + + An Apothecary. + + Three Musicians. + + An Officer. + + + Lady Montague, wife to Montague. + + Lady Capulet, wife to Capulet. + + Juliet, daughter to Capulet. + + Nurse to Juliet. + + + Citizens of Verona; Gentlemen and Gentlewomen of both houses; + Maskers, Torchbearers, Pages, Guards, Watchmen, Servants, and + Attendants. + + SCENE.--Verona; Mantua. + + + + THE PROLOGUE + + Enter Chorus. + + + Chor. Two households, both alike in dignity, + In fair Verona, where we lay our scene, + From ancient grudge break to new mutiny, + Where civil blood makes civil hands unclean. + From forth the fatal loins of these two foes + A pair of star-cross'd lovers take their life; + Whose misadventur'd piteous overthrows + Doth with their death bury their parents' strife. + The fearful passage of their death-mark'd love, + And the continuance of their parents' rage, + Which, but their children's end, naught could remove, + Is now the two hours' traffic of our stage; + The which if you with patient ears attend, + What here shall miss, our toil shall strive to mend. + [Exit.] + + + + +ACT I. Scene I. +Verona. A public place. + +Enter Sampson and Gregory (with swords and bucklers) of the house +of Capulet. + + + Samp. Gregory, on my word, we'll not carry coals. + + Greg. No, for then we should be colliers. + + Samp. I mean, an we be in choler, we'll draw. + + Greg. Ay, while you live, draw your neck out of collar. + + Samp. I strike quickly, being moved. + + Greg. But thou art not quickly moved to strike. + + Samp. A dog of the house of Montague moves me. + + Greg. To move is to stir, and to be valiant is to stand. + Therefore, if thou art moved, thou runn'st away. + + Samp. A dog of that house shall move me to stand. I will take + the wall of any man or maid of Montague's. + + Greg. That shows thee a weak slave; for the weakest goes to the + wall. + + Samp. 'Tis true; and therefore women, being the weaker vessels, + are ever thrust to the wall. Therefore I will push Montague's men + from the wall and thrust his maids to the wall. + + Greg. The quarrel is between our masters and us their men. + + Samp. 'Tis all one. I will show myself a tyrant. When I have + fought with the men, I will be cruel with the maids- I will cut off + their heads. + + Greg. The heads of the maids? + + Samp. Ay, the heads of the maids, or their maidenheads. + Take it in what sense thou wilt. + + Greg. They must take it in sense that feel it. + + Samp. Me they shall feel while I am able to stand; and 'tis known I + am a pretty piece of flesh. + + Greg. 'Tis well thou art not fish; if thou hadst, thou hadst + been poor-John. Draw thy tool! Here comes two of the house of + Montagues. + + Enter two other Servingmen [Abram and Balthasar]. + + + Samp. My naked weapon is out. Quarrel! I will back thee. + + Greg. How? turn thy back and run? + + Samp. Fear me not. + + Greg. No, marry. I fear thee! + + Samp. Let us take the law of our sides; let them begin. + + Greg. I will frown as I pass by, and let them take it as they list. + + Samp. Nay, as they dare. I will bite my thumb at them; which is + disgrace to them, if they bear it. + + Abr. Do you bite your thumb at us, sir? + + Samp. I do bite my thumb, sir. + + Abr. Do you bite your thumb at us, sir? + + Samp. [aside to Gregory] Is the law of our side if I say ay? + + Greg. [aside to Sampson] No. + + Samp. No, sir, I do not bite my thumb at you, sir; but I bite my + thumb, sir. + + Greg. Do you quarrel, sir? + + Abr. Quarrel, sir? No, sir. + + Samp. But if you do, sir, am for you. I serve as good a man as + you. + + Abr. No better. + + Samp. Well, sir. + + Enter Benvolio. + + + Greg. [aside to Sampson] Say 'better.' Here comes one of my + master's kinsmen. + + Samp. Yes, better, sir. + + Abr. You lie. + + Samp. Draw, if you be men. Gregory, remember thy swashing blow. + They fight. + + Ben. Part, fools! [Beats down their swords.] + Put up your swords. You know not what you do. + + Enter Tybalt. + + + Tyb. What, art thou drawn among these heartless hinds? + Turn thee Benvolio! look upon thy death. + + Ben. I do but keep the peace. Put up thy sword, + Or manage it to part these men with me. + + Tyb. What, drawn, and talk of peace? I hate the word + As I hate hell, all Montagues, and thee. + Have at thee, coward! They fight. + + Enter an officer, and three or four Citizens with clubs or + partisans. + + + Officer. Clubs, bills, and partisans! Strike! beat them down! + + Citizens. Down with the Capulets! Down with the Montagues! + + Enter Old Capulet in his gown, and his Wife. + + + Cap. What noise is this? Give me my long sword, ho! + + Wife. A crutch, a crutch! Why call you for a sword? + + Cap. My sword, I say! Old Montague is come + And flourishes his blade in spite of me. + + Enter Old Montague and his Wife. + + + Mon. Thou villain Capulet!- Hold me not, let me go. + + M. Wife. Thou shalt not stir one foot to seek a foe. + + Enter Prince Escalus, with his Train. + + + Prince. Rebellious subjects, enemies to peace, + Profaners of this neighbour-stained steel- + Will they not hear? What, ho! you men, you beasts, + That quench the fire of your pernicious rage + With purple fountains issuing from your veins! + On pain of torture, from those bloody hands + Throw your mistempered weapons to the ground + And hear the sentence of your moved prince. + Three civil brawls, bred of an airy word + By thee, old Capulet, and Montague, + Have thrice disturb'd the quiet of our streets + And made Verona's ancient citizens + Cast by their grave beseeming ornaments + To wield old partisans, in hands as old, + Cank'red with peace, to part your cank'red hate. + If ever you disturb our streets again, + Your lives shall pay the forfeit of the peace. + For this time all the rest depart away. + You, Capulet, shall go along with me; + And, Montague, come you this afternoon, + To know our farther pleasure in this case, + To old Freetown, our common judgment place. + Once more, on pain of death, all men depart. + Exeunt [all but Montague, his Wife, and Benvolio]. + + Mon. Who set this ancient quarrel new abroach? + Speak, nephew, were you by when it began? + + Ben. Here were the servants of your adversary + And yours, close fighting ere I did approach. + I drew to part them. In the instant came + The fiery Tybalt, with his sword prepar'd; + Which, as he breath'd defiance to my ears, + He swung about his head and cut the winds, + Who, nothing hurt withal, hiss'd him in scorn. + While we were interchanging thrusts and blows, + Came more and more, and fought on part and part, + Till the Prince came, who parted either part. + + M. Wife. O, where is Romeo? Saw you him to-day? + Right glad I am he was not at this fray. + + Ben. Madam, an hour before the worshipp'd sun + Peer'd forth the golden window of the East, + A troubled mind drave me to walk abroad; + Where, underneath the grove of sycamore + That westward rooteth from the city's side, + So early walking did I see your son. + Towards him I made; but he was ware of me + And stole into the covert of the wood. + I- measuring his affections by my own, + Which then most sought where most might not be found, + Being one too many by my weary self- + Pursu'd my humour, not Pursuing his, + And gladly shunn'd who gladly fled from me. + + Mon. Many a morning hath he there been seen, + With tears augmenting the fresh morning's dew, + Adding to clouds more clouds with his deep sighs; + But all so soon as the all-cheering sun + Should in the furthest East bean to draw + The shady curtains from Aurora's bed, + Away from light steals home my heavy son + And private in his chamber pens himself, + Shuts up his windows, locks fair daylight + And makes himself an artificial night. + Black and portentous must this humour prove + Unless good counsel may the cause remove. + + Ben. My noble uncle, do you know the cause? + + Mon. I neither know it nor can learn of him + + Ben. Have you importun'd him by any means? + + Mon. Both by myself and many other friend; + But he, his own affections' counsellor, + Is to himself- I will not say how true- + But to himself so secret and so close, + So far from sounding and discovery, + As is the bud bit with an envious worm + Ere he can spread his sweet leaves to the air + Or dedicate his beauty to the sun. + Could we but learn from whence his sorrows grow, + We would as willingly give cure as know. + + Enter Romeo. + + + Ben. See, where he comes. So please you step aside, + I'll know his grievance, or be much denied. + + Mon. I would thou wert so happy by thy stay + To hear true shrift. Come, madam, let's away, + Exeunt [Montague and Wife]. + + Ben. Good morrow, cousin. + + Rom. Is the day so young? + + Ben. But new struck nine. + + Rom. Ay me! sad hours seem long. + Was that my father that went hence so fast? + + Ben. It was. What sadness lengthens Romeo's hours? + + Rom. Not having that which having makes them short. + + Ben. In love? + + Rom. Out- + + Ben. Of love? + + Rom. Out of her favour where I am in love. + + Ben. Alas that love, so gentle in his view, + Should be so tyrannous and rough in proof! + + Rom. Alas that love, whose view is muffled still, + Should without eyes see pathways to his will! + Where shall we dine? O me! What fray was here? + Yet tell me not, for I have heard it all. + Here's much to do with hate, but more with love. + Why then, O brawling love! O loving hate! + O anything, of nothing first create! + O heavy lightness! serious vanity! + Misshapen chaos of well-seeming forms! + Feather of lead, bright smoke, cold fire, sick health! + Still-waking sleep, that is not what it is + This love feel I, that feel no love in this. + Dost thou not laugh? + + Ben. No, coz, I rather weep. + + Rom. Good heart, at what? + + Ben. At thy good heart's oppression. + + Rom. Why, such is love's transgression. + Griefs of mine own lie heavy in my breast, + Which thou wilt propagate, to have it prest + With more of thine. This love that thou hast shown + Doth add more grief to too much of mine own. + Love is a smoke rais'd with the fume of sighs; + Being purg'd, a fire sparkling in lovers' eyes; + Being vex'd, a sea nourish'd with lovers' tears. + What is it else? A madness most discreet, + A choking gall, and a preserving sweet. + Farewell, my coz. + + Ben. Soft! I will go along. + An if you leave me so, you do me wrong. + + Rom. Tut! I have lost myself; I am not here: + This is not Romeo, he's some other where. + + Ben. Tell me in sadness, who is that you love? + + Rom. What, shall I groan and tell thee? + + Ben. Groan? Why, no; + But sadly tell me who. + + Rom. Bid a sick man in sadness make his will. + Ah, word ill urg'd to one that is so ill! + In sadness, cousin, I do love a woman. + + Ben. I aim'd so near when I suppos'd you lov'd. + + Rom. A right good markman! And she's fair I love. + + Ben. A right fair mark, fair coz, is soonest hit. + + Rom. Well, in that hit you miss. She'll not be hit + With Cupid's arrow. She hath Dian's wit, + And, in strong proof of chastity well arm'd, + From Love's weak childish bow she lives unharm'd. + She will not stay the siege of loving terms, + Nor bide th' encounter of assailing eyes, + Nor ope her lap to saint-seducing gold. + O, she's rich in beauty; only poor + That, when she dies, with beauty dies her store. + + Ben. Then she hath sworn that she will still live chaste? + + Rom. She hath, and in that sparing makes huge waste; + For beauty, starv'd with her severity, + Cuts beauty off from all posterity. + She is too fair, too wise, wisely too fair, + To merit bliss by making me despair. + She hath forsworn to love, and in that vow + Do I live dead that live to tell it now. + + Ben. Be rul'd by me: forget to think of her. + + Rom. O, teach me how I should forget to think! + + Ben. By giving liberty unto thine eyes. + Examine other beauties. + + Rom. 'Tis the way + To call hers (exquisite) in question more. + These happy masks that kiss fair ladies' brows, + Being black puts us in mind they hide the fair. + He that is strucken blind cannot forget + The precious treasure of his eyesight lost. + Show me a mistress that is passing fair, + What doth her beauty serve but as a note + Where I may read who pass'd that passing fair? + Farewell. Thou canst not teach me to forget. + + Ben. I'll pay that doctrine, or else die in debt. Exeunt. + + + + +Scene II. +A Street. + +Enter Capulet, County Paris, and [Servant] -the Clown. + + + Cap. But Montague is bound as well as I, + In penalty alike; and 'tis not hard, I think, + For men so old as we to keep the peace. + + Par. Of honourable reckoning are you both, + And pity 'tis you liv'd at odds so long. + But now, my lord, what say you to my suit? + + Cap. But saying o'er what I have said before: + My child is yet a stranger in the world, + She hath not seen the change of fourteen years; + Let two more summers wither in their pride + Ere we may think her ripe to be a bride. + + Par. Younger than she are happy mothers made. + + Cap. And too soon marr'd are those so early made. + The earth hath swallowed all my hopes but she; + She is the hopeful lady of my earth. + But woo her, gentle Paris, get her heart; + My will to her consent is but a part. + An she agree, within her scope of choice + Lies my consent and fair according voice. + This night I hold an old accustom'd feast, + Whereto I have invited many a guest, + Such as I love; and you among the store, + One more, most welcome, makes my number more. + At my poor house look to behold this night + Earth-treading stars that make dark heaven light. + Such comfort as do lusty young men feel + When well apparell'd April on the heel + Of limping Winter treads, even such delight + Among fresh female buds shall you this night + Inherit at my house. Hear all, all see, + And like her most whose merit most shall be; + Which, on more view of many, mine, being one, + May stand in number, though in reck'ning none. + Come, go with me. [To Servant, giving him a paper] Go, + sirrah, trudge about + Through fair Verona; find those persons out + Whose names are written there, and to them say, + My house and welcome on their pleasure stay- + Exeunt [Capulet and Paris]. + + Serv. Find them out whose names are written here? It is written + that the shoemaker should meddle with his yard and the tailor + with his last, the fisher with his pencil and the painter + with his nets; but I am sent to find those persons whose names are + here writ, and can never find what names the writing person + hath here writ. I must to the learned. In good time! + + Enter Benvolio and Romeo. + + + Ben. Tut, man, one fire burns out another's burning; + One pain is lessoned by another's anguish; + Turn giddy, and be holp by backward turning; + One desperate grief cures with another's languish. + Take thou some new infection to thy eye, + And the rank poison of the old will die. + + Rom. Your plantain leaf is excellent for that. + + Ben. For what, I pray thee? + + Rom. For your broken shin. + + Ben. Why, Romeo, art thou mad? + + Rom. Not mad, but bound more than a madman is; + Shut up in Prison, kept without my food, + Whipp'd and tormented and- God-den, good fellow. + + Serv. God gi' go-den. I pray, sir, can you read? + + Rom. Ay, mine own fortune in my misery. + + Serv. Perhaps you have learned it without book. But I pray, can + you read anything you see? + + Rom. Ay, If I know the letters and the language. + + Serv. Ye say honestly. Rest you merry! + + Rom. Stay, fellow; I can read. He reads. + + 'Signior Martino and his wife and daughters; + County Anselmo and his beauteous sisters; + The lady widow of Vitruvio; + Signior Placentio and His lovely nieces; + Mercutio and his brother Valentine; + Mine uncle Capulet, his wife, and daughters; + My fair niece Rosaline and Livia; + Signior Valentio and His cousin Tybalt; + Lucio and the lively Helena.' + + [Gives back the paper.] A fair assembly. Whither should they + come? + + Serv. Up. + + Rom. Whither? + + Serv. To supper, to our house. + + Rom. Whose house? + + Serv. My master's. + + Rom. Indeed I should have ask'd you that before. + + Serv. Now I'll tell you without asking. My master is the great + rich Capulet; and if you be not of the house of Montagues, I pray + come and crush a cup of wine. Rest you merry! Exit. + + Ben. At this same ancient feast of Capulet's + Sups the fair Rosaline whom thou so lov'st; + With all the admired beauties of Verona. + Go thither, and with unattainted eye + Compare her face with some that I shall show, + And I will make thee think thy swan a crow. + + Rom. When the devout religion of mine eye + Maintains such falsehood, then turn tears to fires; + And these, who, often drown'd, could never die, + Transparent heretics, be burnt for liars! + One fairer than my love? The all-seeing sun + Ne'er saw her match since first the world begun. + + Ben. Tut! you saw her fair, none else being by, + Herself pois'd with herself in either eye; + But in that crystal scales let there be weigh'd + Your lady's love against some other maid + That I will show you shining at this feast, + And she shall scant show well that now seems best. + + Rom. I'll go along, no such sight to be shown, + But to rejoice in splendour of my own. [Exeunt.] + + + + +Scene III. +Capulet's house. + +Enter Capulet's Wife, and Nurse. + + + Wife. Nurse, where's my daughter? Call her forth to me. + + Nurse. Now, by my maidenhead at twelve year old, + I bade her come. What, lamb! what ladybird! + God forbid! Where's this girl? What, Juliet! + + Enter Juliet. + + + Jul. How now? Who calls? + + Nurse. Your mother. + + Jul. Madam, I am here. + What is your will? + + Wife. This is the matter- Nurse, give leave awhile, + We must talk in secret. Nurse, come back again; + I have rememb'red me, thou's hear our counsel. + Thou knowest my daughter's of a pretty age. + + Nurse. Faith, I can tell her age unto an hour. + + Wife. She's not fourteen. + + Nurse. I'll lay fourteen of my teeth- + And yet, to my teen be it spoken, I have but four- + She is not fourteen. How long is it now + To Lammastide? + + Wife. A fortnight and odd days. + + Nurse. Even or odd, of all days in the year, + Come Lammas Eve at night shall she be fourteen. + Susan and she (God rest all Christian souls!) + Were of an age. Well, Susan is with God; + She was too good for me. But, as I said, + On Lammas Eve at night shall she be fourteen; + That shall she, marry; I remember it well. + 'Tis since the earthquake now eleven years; + And she was wean'd (I never shall forget it), + Of all the days of the year, upon that day; + For I had then laid wormwood to my dug, + Sitting in the sun under the dovehouse wall. + My lord and you were then at Mantua. + Nay, I do bear a brain. But, as I said, + When it did taste the wormwood on the nipple + Of my dug and felt it bitter, pretty fool, + To see it tetchy and fall out with the dug! + Shake, quoth the dovehouse! 'Twas no need, I trow, + To bid me trudge. + And since that time it is eleven years, + For then she could stand high-lone; nay, by th' rood, + She could have run and waddled all about; + For even the day before, she broke her brow; + And then my husband (God be with his soul! + 'A was a merry man) took up the child. + 'Yea,' quoth he, 'dost thou fall upon thy face? + Thou wilt fall backward when thou hast more wit; + Wilt thou not, Jule?' and, by my holidam, + The pretty wretch left crying, and said 'Ay.' + To see now how a jest shall come about! + I warrant, an I should live a thousand yeas, + I never should forget it. 'Wilt thou not, Jule?' quoth he, + And, pretty fool, it stinted, and said 'Ay.' + + Wife. Enough of this. I pray thee hold thy peace. + + Nurse. Yes, madam. Yet I cannot choose but laugh + To think it should leave crying and say 'Ay.' + And yet, I warrant, it bad upon it brow + A bump as big as a young cock'rel's stone; + A perilous knock; and it cried bitterly. + 'Yea,' quoth my husband, 'fall'st upon thy face? + Thou wilt fall backward when thou comest to age; + Wilt thou not, Jule?' It stinted, and said 'Ay.' + + Jul. And stint thou too, I pray thee, nurse, say I. + + Nurse. Peace, I have done. God mark thee to his grace! + Thou wast the prettiest babe that e'er I nurs'd. + An I might live to see thee married once, I have my wish. + + Wife. Marry, that 'marry' is the very theme + I came to talk of. Tell me, daughter Juliet, + How stands your disposition to be married? + + Jul. It is an honour that I dream not of. + + Nurse. An honour? Were not I thine only nurse, + I would say thou hadst suck'd wisdom from thy teat. + + Wife. Well, think of marriage now. Younger than you, + Here in Verona, ladies of esteem, + Are made already mothers. By my count, + I was your mother much upon these years + That you are now a maid. Thus then in brief: + The valiant Paris seeks you for his love. + + Nurse. A man, young lady! lady, such a man + As all the world- why he's a man of wax. + + Wife. Verona's summer hath not such a flower. + + Nurse. Nay, he's a flower, in faith- a very flower. + + Wife. What say you? Can you love the gentleman? + This night you shall behold him at our feast. + Read o'er the volume of young Paris' face, + And find delight writ there with beauty's pen; + Examine every married lineament, + And see how one another lends content; + And what obscur'd in this fair volume lies + Find written in the margent of his eyes, + This precious book of love, this unbound lover, + To beautify him only lacks a cover. + The fish lives in the sea, and 'tis much pride + For fair without the fair within to hide. + That book in many's eyes doth share the glory, + That in gold clasps locks in the golden story; + So shall you share all that he doth possess, + By having him making yourself no less. + + Nurse. No less? Nay, bigger! Women grow by men + + Wife. Speak briefly, can you like of Paris' love? + + Jul. I'll look to like, if looking liking move; + But no more deep will I endart mine eye + Than your consent gives strength to make it fly. + + Enter Servingman. + + + Serv. Madam, the guests are come, supper serv'd up, you call'd, + my young lady ask'd for, the nurse curs'd in the pantry, and + everything in extremity. I must hence to wait. I beseech you + follow straight. + + Wife. We follow thee. Exit [Servingman]. + Juliet, the County stays. + + Nurse. Go, girl, seek happy nights to happy days. + Exeunt. + + + + +Scene IV. +A street. + +Enter Romeo, Mercutio, Benvolio, with five or six other Maskers; +Torchbearers. + + + Rom. What, shall this speech be spoke for our excuse? + Or shall we on without apology? + + Ben. The date is out of such prolixity. + We'll have no Cupid hoodwink'd with a scarf, + Bearing a Tartar's painted bow of lath, + Scaring the ladies like a crowkeeper; + Nor no without-book prologue, faintly spoke + After the prompter, for our entrance; + But, let them measure us by what they will, + We'll measure them a measure, and be gone. + + Rom. Give me a torch. I am not for this ambling. + Being but heavy, I will bear the light. + + Mer. Nay, gentle Romeo, we must have you dance. + + Rom. Not I, believe me. You have dancing shoes + With nimble soles; I have a soul of lead + So stakes me to the ground I cannot move. + + Mer. You are a lover. Borrow Cupid's wings + And soar with them above a common bound. + + Rom. I am too sore enpierced with his shaft + To soar with his light feathers; and so bound + I cannot bound a pitch above dull woe. + Under love's heavy burthen do I sink. + + Mer. And, to sink in it, should you burthen love- + Too great oppression for a tender thing. + + Rom. Is love a tender thing? It is too rough, + Too rude, too boist'rous, and it pricks like thorn. + + Mer. If love be rough with you, be rough with love. + Prick love for pricking, and you beat love down. + Give me a case to put my visage in. + A visor for a visor! What care I + What curious eye doth quote deformities? + Here are the beetle brows shall blush for me. + + Ben. Come, knock and enter; and no sooner in + But every man betake him to his legs. + + Rom. A torch for me! Let wantons light of heart + Tickle the senseless rushes with their heels; + For I am proverb'd with a grandsire phrase, + I'll be a candle-holder and look on; + The game was ne'er so fair, and I am done. + + Mer. Tut! dun's the mouse, the constable's own word! + If thou art Dun, we'll draw thee from the mire + Of this sir-reverence love, wherein thou stick'st + Up to the ears. Come, we burn daylight, ho! + + Rom. Nay, that's not so. + + Mer. I mean, sir, in delay + We waste our lights in vain, like lamps by day. + Take our good meaning, for our judgment sits + Five times in that ere once in our five wits. + + Rom. And we mean well, in going to this masque; + But 'tis no wit to go. + + Mer. Why, may one ask? + + Rom. I dreamt a dream to-night. + + Mer. And so did I. + + Rom. Well, what was yours? + + Mer. That dreamers often lie. + + Rom. In bed asleep, while they do dream things true. + + Mer. O, then I see Queen Mab hath been with you. + She is the fairies' midwife, and she comes + In shape no bigger than an agate stone + On the forefinger of an alderman, + Drawn with a team of little atomies + Athwart men's noses as they lie asleep; + Her wagon spokes made of long spinners' legs, + The cover, of the wings of grasshoppers; + Her traces, of the smallest spider's web; + Her collars, of the moonshine's wat'ry beams; + Her whip, of cricket's bone; the lash, of film; + Her wagoner, a small grey-coated gnat, + Not half so big as a round little worm + Prick'd from the lazy finger of a maid; + Her chariot is an empty hazelnut, + Made by the joiner squirrel or old grub, + Time out o' mind the fairies' coachmakers. + And in this state she 'gallops night by night + Through lovers' brains, and then they dream of love; + O'er courtiers' knees, that dream on cursies straight; + O'er lawyers' fingers, who straight dream on fees; + O'er ladies' lips, who straight on kisses dream, + Which oft the angry Mab with blisters plagues, + Because their breaths with sweetmeats tainted are. + Sometime she gallops o'er a courtier's nose, + And then dreams he of smelling out a suit; + And sometime comes she with a tithe-pig's tail + Tickling a parson's nose as 'a lies asleep, + Then dreams he of another benefice. + Sometimes she driveth o'er a soldier's neck, + And then dreams he of cutting foreign throats, + Of breaches, ambuscadoes, Spanish blades, + Of healths five fadom deep; and then anon + Drums in his ear, at which he starts and wakes, + And being thus frighted, swears a prayer or two + And sleeps again. This is that very Mab + That plats the manes of horses in the night + And bakes the elflocks in foul sluttish, hairs, + Which once untangled much misfortune bodes + This is the hag, when maids lie on their backs, + That presses them and learns them first to bear, + Making them women of good carriage. + This is she- + + Rom. Peace, peace, Mercutio, peace! + Thou talk'st of nothing. + + Mer. True, I talk of dreams; + Which are the children of an idle brain, + Begot of nothing but vain fantasy; + Which is as thin of substance as the air, + And more inconstant than the wind, who wooes + Even now the frozen bosom of the North + And, being anger'd, puffs away from thence, + Turning his face to the dew-dropping South. + + Ben. This wind you talk of blows us from ourselves. + Supper is done, and we shall come too late. + + Rom. I fear, too early; for my mind misgives + Some consequence, yet hanging in the stars, + Shall bitterly begin his fearful date + With this night's revels and expire the term + Of a despised life, clos'd in my breast, + By some vile forfeit of untimely death. + But he that hath the steerage of my course + Direct my sail! On, lusty gentlemen! + + Ben. Strike, drum. + They march about the stage. [Exeunt.] + + + + +Scene V. +Capulet's house. + +Servingmen come forth with napkins. + + 1. Serv. Where's Potpan, that he helps not to take away? + He shift a trencher! he scrape a trencher! + 2. Serv. When good manners shall lie all in one or two men's + hands, and they unwash'd too, 'tis a foul thing. + 1. Serv. Away with the join-stools, remove the court-cubbert, + look to the plate. Good thou, save me a piece of marchpane and, as + thou loves me, let the porter let in Susan Grindstone and +Nell. + Anthony, and Potpan! + 2. Serv. Ay, boy, ready. + 1. Serv. You are look'd for and call'd for, ask'd for and + sought for, in the great chamber. + 3. Serv. We cannot be here and there too. Cheerly, boys! + Be brisk awhile, and the longer liver take all. Exeunt. + + Enter the Maskers, Enter, [with Servants,] Capulet, his Wife, + Juliet, Tybalt, and all the Guests + and Gentlewomen to the Maskers. + + + Cap. Welcome, gentlemen! Ladies that have their toes + Unplagu'd with corns will have a bout with you. + Ah ha, my mistresses! which of you all + Will now deny to dance? She that makes dainty, + She I'll swear hath corns. Am I come near ye now? + Welcome, gentlemen! I have seen the day + That I have worn a visor and could tell + A whispering tale in a fair lady's ear, + Such as would please. 'Tis gone, 'tis gone, 'tis gone! + You are welcome, gentlemen! Come, musicians, play. + A hall, a hall! give room! and foot it, girls. + Music plays, and they dance. + More light, you knaves! and turn the tables up, + And quench the fire, the room is grown too hot. + Ah, sirrah, this unlook'd-for sport comes well. + Nay, sit, nay, sit, good cousin Capulet, + For you and I are past our dancing days. + How long is't now since last yourself and I + Were in a mask? + 2. Cap. By'r Lady, thirty years. + + Cap. What, man? 'Tis not so much, 'tis not so much! + 'Tis since the nuptial of Lucentio, + Come Pentecost as quickly as it will, + Some five-and-twenty years, and then we mask'd. + 2. Cap. 'Tis more, 'tis more! His son is elder, sir; + His son is thirty. + + Cap. Will you tell me that? + His son was but a ward two years ago. + + Rom. [to a Servingman] What lady's that, which doth enrich the + hand Of yonder knight? + + Serv. I know not, sir. + + Rom. O, she doth teach the torches to burn bright! + It seems she hangs upon the cheek of night + Like a rich jewel in an Ethiop's ear- + Beauty too rich for use, for earth too dear! + So shows a snowy dove trooping with crows + As yonder lady o'er her fellows shows. + The measure done, I'll watch her place of stand + And, touching hers, make blessed my rude hand. + Did my heart love till now? Forswear it, sight! + For I ne'er saw true beauty till this night. + + Tyb. This, by his voice, should be a Montague. + Fetch me my rapier, boy. What, dares the slave + Come hither, cover'd with an antic face, + To fleer and scorn at our solemnity? + Now, by the stock and honour of my kin, + To strike him dead I hold it not a sin. + + Cap. Why, how now, kinsman? Wherefore storm you so? + + Tyb. Uncle, this is a Montague, our foe; + A villain, that is hither come in spite + To scorn at our solemnity this night. + + Cap. Young Romeo is it? + + Tyb. 'Tis he, that villain Romeo. + + Cap. Content thee, gentle coz, let him alone. + 'A bears him like a portly gentleman, + And, to say truth, Verona brags of him + To be a virtuous and well-govern'd youth. + I would not for the wealth of all this town + Here in my house do him disparagement. + Therefore be patient, take no note of him. + It is my will; the which if thou respect, + Show a fair presence and put off these frowns, + An ill-beseeming semblance for a feast. + + Tyb. It fits when such a villain is a guest. + I'll not endure him. + + Cap. He shall be endur'd. + What, goodman boy? I say he shall. Go to! + Am I the master here, or you? Go to! + You'll not endure him? God shall mend my soul! + You'll make a mutiny among my guests! + You will set cock-a-hoop! you'll be the man! + + Tyb. Why, uncle, 'tis a shame. + + Cap. Go to, go to! + You are a saucy boy. Is't so, indeed? + This trick may chance to scathe you. I know what. + You must contrary me! Marry, 'tis time.- + Well said, my hearts!- You are a princox- go! + Be quiet, or- More light, more light!- For shame! + I'll make you quiet; what!- Cheerly, my hearts! + + Tyb. Patience perforce with wilful choler meeting + Makes my flesh tremble in their different greeting. + I will withdraw; but this intrusion shall, + Now seeming sweet, convert to bitt'rest gall. Exit. + + Rom. If I profane with my unworthiest hand + This holy shrine, the gentle fine is this: + My lips, two blushing pilgrims, ready stand + To smooth that rough touch with a tender kiss. + + Jul. Good pilgrim, you do wrong your hand too much, + Which mannerly devotion shows in this; + For saints have hands that pilgrims' hands do touch, + And palm to palm is holy palmers' kiss. + + Rom. Have not saints lips, and holy palmers too? + + Jul. Ay, pilgrim, lips that they must use in pray'r. + + Rom. O, then, dear saint, let lips do what hands do! + They pray; grant thou, lest faith turn to despair. + + Jul. Saints do not move, though grant for prayers' sake. + + Rom. Then move not while my prayer's effect I take. + Thus from my lips, by thine my sin is purg'd. [Kisses her.] + + Jul. Then have my lips the sin that they have took. + + Rom. Sin from my lips? O trespass sweetly urg'd! + Give me my sin again. [Kisses her.] + + Jul. You kiss by th' book. + + Nurse. Madam, your mother craves a word with you. + + Rom. What is her mother? + + Nurse. Marry, bachelor, + Her mother is the lady of the house. + And a good lady, and a wise and virtuous. + I nurs'd her daughter that you talk'd withal. + I tell you, he that can lay hold of her + Shall have the chinks. + + Rom. Is she a Capulet? + O dear account! my life is my foe's debt. + + Ben. Away, be gone; the sport is at the best. + + Rom. Ay, so I fear; the more is my unrest. + + Cap. Nay, gentlemen, prepare not to be gone; + We have a trifling foolish banquet towards. + Is it e'en so? Why then, I thank you all. + I thank you, honest gentlemen. Good night. + More torches here! [Exeunt Maskers.] Come on then, let's to bed. + Ah, sirrah, by my fay, it waxes late; + I'll to my rest. + Exeunt [all but Juliet and Nurse]. + + Jul. Come hither, nurse. What is yond gentleman? + + Nurse. The son and heir of old Tiberio. + + Jul. What's he that now is going out of door? + + Nurse. Marry, that, I think, be young Petruchio. + + Jul. What's he that follows there, that would not dance? + + Nurse. I know not. + + Jul. Go ask his name.- If he be married, + My grave is like to be my wedding bed. + + Nurse. His name is Romeo, and a Montague, + The only son of your great enemy. + + Jul. My only love, sprung from my only hate! + Too early seen unknown, and known too late! + Prodigious birth of love it is to me + That I must love a loathed enemy. + + Nurse. What's this? what's this? + + Jul. A rhyme I learnt even now + Of one I danc'd withal. + One calls within, 'Juliet.' + + Nurse. Anon, anon! + Come, let's away; the strangers all are gone. Exeunt. + + + + +PROLOGUE + +Enter Chorus. + + + Chor. Now old desire doth in his deathbed lie, + And young affection gapes to be his heir; + That fair for which love groan'd for and would die, + With tender Juliet match'd, is now not fair. + Now Romeo is belov'd, and loves again, + Alike bewitched by the charm of looks; + But to his foe suppos'd he must complain, + And she steal love's sweet bait from fearful hooks. + Being held a foe, he may not have access + To breathe such vows as lovers use to swear, + And she as much in love, her means much less + To meet her new beloved anywhere; + But passion lends them power, time means, to meet, + Temp'ring extremities with extreme sweet. +Exit. + + + + +ACT II. Scene I. +A lane by the wall of Capulet's orchard. + +Enter Romeo alone. + + + Rom. Can I go forward when my heart is here? + Turn back, dull earth, and find thy centre out. + [Climbs the wall and leaps down within it.] + + Enter Benvolio with Mercutio. + + + Ben. Romeo! my cousin Romeo! Romeo! + + Mer. He is wise, + And, on my life, hath stol'n him home to bed. + + Ben. He ran this way, and leapt this orchard wall. + Call, good Mercutio. + + Mer. Nay, I'll conjure too. + Romeo! humours! madman! passion! lover! + Appear thou in the likeness of a sigh; + Speak but one rhyme, and I am satisfied! + Cry but 'Ay me!' pronounce but 'love' and 'dove'; + Speak to my gossip Venus one fair word, + One nickname for her purblind son and heir, + Young Adam Cupid, he that shot so trim + When King Cophetua lov'd the beggar maid! + He heareth not, he stirreth not, be moveth not; + The ape is dead, and I must conjure him. + I conjure thee by Rosaline's bright eyes. + By her high forehead and her scarlet lip, + By her fine foot, straight leg, and quivering thigh, + And the demesnes that there adjacent lie, + That in thy likeness thou appear to us! + + Ben. An if he hear thee, thou wilt anger him. + + Mer. This cannot anger him. 'Twould anger him + To raise a spirit in his mistress' circle + Of some strange nature, letting it there stand + Till she had laid it and conjur'd it down. + That were some spite; my invocation + Is fair and honest: in his mistress' name, + I conjure only but to raise up him. + + Ben. Come, he hath hid himself among these trees + To be consorted with the humorous night. + Blind is his love and best befits the dark. + + Mer. If love be blind, love cannot hit the mark. + Now will he sit under a medlar tree + And wish his mistress were that kind of fruit + As maids call medlars when they laugh alone. + O, Romeo, that she were, O that she were + An open et cetera, thou a pop'rin pear! + Romeo, good night. I'll to my truckle-bed; + This field-bed is too cold for me to sleep. + Come, shall we go? + + Ben. Go then, for 'tis in vain + 'To seek him here that means not to be found. + Exeunt. + + + + +Scene II. +Capulet's orchard. + +Enter Romeo. + + + Rom. He jests at scars that never felt a wound. + + Enter Juliet above at a window. + + But soft! What light through yonder window breaks? + It is the East, and Juliet is the sun! + Arise, fair sun, and kill the envious moon, + Who is already sick and pale with grief + That thou her maid art far more fair than she. + Be not her maid, since she is envious. + Her vestal livery is but sick and green, + And none but fools do wear it. Cast it off. + It is my lady; O, it is my love! + O that she knew she were! + She speaks, yet she says nothing. What of that? + Her eye discourses; I will answer it. + I am too bold; 'tis not to me she speaks. + Two of the fairest stars in all the heaven, + Having some business, do entreat her eyes + To twinkle in their spheres till they return. + What if her eyes were there, they in her head? + The brightness of her cheek would shame those stars + As daylight doth a lamp; her eyes in heaven + Would through the airy region stream so bright + That birds would sing and think it were not night. + See how she leans her cheek upon her hand! + O that I were a glove upon that hand, + That I might touch that cheek! + + Jul. Ay me! + + Rom. She speaks. + O, speak again, bright angel! for thou art + As glorious to this night, being o'er my head, + As is a winged messenger of heaven + Unto the white-upturned wond'ring eyes + Of mortals that fall back to gaze on him + When he bestrides the lazy-pacing clouds + And sails upon the bosom of the air. + + Jul. O Romeo, Romeo! wherefore art thou Romeo? + Deny thy father and refuse thy name! + Or, if thou wilt not, be but sworn my love, + And I'll no longer be a Capulet. + + Rom. [aside] Shall I hear more, or shall I speak at this? + + Jul. 'Tis but thy name that is my enemy. + Thou art thyself, though not a Montague. + What's Montague? it is nor hand, nor foot, + Nor arm, nor face, nor any other part + Belonging to a man. O, be some other name! + What's in a name? That which we call a rose + By any other name would smell as sweet. + So Romeo would, were he not Romeo call'd, + Retain that dear perfection which he owes + Without that title. Romeo, doff thy name; + And for that name, which is no part of thee, + Take all myself. + + Rom. I take thee at thy word. + Call me but love, and I'll be new baptiz'd; + Henceforth I never will be Romeo. + + Jul. What man art thou that, thus bescreen'd in night, + So stumblest on my counsel? + + Rom. By a name + I know not how to tell thee who I am. + My name, dear saint, is hateful to myself, + Because it is an enemy to thee. + Had I it written, I would tear the word. + + Jul. My ears have yet not drunk a hundred words + Of that tongue's utterance, yet I know the sound. + Art thou not Romeo, and a Montague? + + Rom. Neither, fair saint, if either thee dislike. + + Jul. How cam'st thou hither, tell me, and wherefore? + The orchard walls are high and hard to climb, + And the place death, considering who thou art, + If any of my kinsmen find thee here. + + Rom. With love's light wings did I o'erperch these walls; + For stony limits cannot hold love out, + And what love can do, that dares love attempt. + Therefore thy kinsmen are no let to me. + + Jul. If they do see thee, they will murther thee. + + Rom. Alack, there lies more peril in thine eye + Than twenty of their swords! Look thou but sweet, + And I am proof against their enmity. + + Jul. I would not for the world they saw thee here. + + Rom. I have night's cloak to hide me from their sight; + And but thou love me, let them find me here. + My life were better ended by their hate + Than death prorogued, wanting of thy love. + + Jul. By whose direction found'st thou out this place? + + Rom. By love, that first did prompt me to enquire. + He lent me counsel, and I lent him eyes. + I am no pilot; yet, wert thou as far + As that vast shore wash'd with the farthest sea, + I would adventure for such merchandise. + + Jul. Thou knowest the mask of night is on my face; + Else would a maiden blush bepaint my cheek + For that which thou hast heard me speak to-night. + Fain would I dwell on form- fain, fain deny + What I have spoke; but farewell compliment! + Dost thou love me, I know thou wilt say 'Ay'; + And I will take thy word. Yet, if thou swear'st, + Thou mayst prove false. At lovers' perjuries, + They say Jove laughs. O gentle Romeo, + If thou dost love, pronounce it faithfully. + Or if thou thinkest I am too quickly won, + I'll frown, and be perverse, and say thee nay, + So thou wilt woo; but else, not for the world. + In truth, fair Montague, I am too fond, + And therefore thou mayst think my haviour light; + But trust me, gentleman, I'll prove more true + Than those that have more cunning to be strange. + I should have been more strange, I must confess, + But that thou overheard'st, ere I was ware, + My true-love passion. Therefore pardon me, + And not impute this yielding to light love, + Which the dark night hath so discovered. + + Rom. Lady, by yonder blessed moon I swear, + That tips with silver all these fruit-tree tops- + + Jul. O, swear not by the moon, th' inconstant moon, + That monthly changes in her circled orb, + Lest that thy love prove likewise variable. + + Rom. What shall I swear by? + + Jul. Do not swear at all; + Or if thou wilt, swear by thy gracious self, + Which is the god of my idolatry, + And I'll believe thee. + + Rom. If my heart's dear love- + + Jul. Well, do not swear. Although I joy in thee, + I have no joy of this contract to-night. + It is too rash, too unadvis'd, too sudden; + Too like the lightning, which doth cease to be + Ere one can say 'It lightens.' Sweet, good night! + This bud of love, by summer's ripening breath, + May prove a beauteous flow'r when next we meet. + Good night, good night! As sweet repose and rest + Come to thy heart as that within my breast! + + Rom. O, wilt thou leave me so unsatisfied? + + Jul. What satisfaction canst thou have to-night? + + Rom. Th' exchange of thy love's faithful vow for mine. + + Jul. I gave thee mine before thou didst request it; + And yet I would it were to give again. + + Rom. Would'st thou withdraw it? For what purpose, love? + + Jul. But to be frank and give it thee again. + And yet I wish but for the thing I have. + My bounty is as boundless as the sea, + My love as deep; the more I give to thee, + The more I have, for both are infinite. + I hear some noise within. Dear love, adieu! + [Nurse] calls within. + Anon, good nurse! Sweet Montague, be true. + Stay but a little, I will come again. [Exit.] + + Rom. O blessed, blessed night! I am afeard, + Being in night, all this is but a dream, + Too flattering-sweet to be substantial. + + Enter Juliet above. + + + Jul. Three words, dear Romeo, and good night indeed. + If that thy bent of love be honourable, + Thy purpose marriage, send me word to-morrow, + By one that I'll procure to come to thee, + Where and what time thou wilt perform the rite; + And all my fortunes at thy foot I'll lay + And follow thee my lord throughout the world. + + Nurse. (within) Madam! + + Jul. I come, anon.- But if thou meanest not well, + I do beseech thee- + + Nurse. (within) Madam! + + Jul. By-and-by I come.- + To cease thy suit and leave me to my grief. + To-morrow will I send. + + Rom. So thrive my soul- + + Jul. A thousand times good night! Exit. + + Rom. A thousand times the worse, to want thy light! + Love goes toward love as schoolboys from their books; + But love from love, towards school with heavy looks. + + Enter Juliet again, [above]. + + + Jul. Hist! Romeo, hist! O for a falconer's voice + To lure this tassel-gentle back again! + Bondage is hoarse and may not speak aloud; + Else would I tear the cave where Echo lies, + And make her airy tongue more hoarse than mine + With repetition of my Romeo's name. + Romeo! + + Rom. It is my soul that calls upon my name. + How silver-sweet sound lovers' tongues by night, + Like softest music to attending ears! + + Jul. Romeo! + + Rom. My dear? + + Jul. At what o'clock to-morrow + Shall I send to thee? + + Rom. By the hour of nine. + + Jul. I will not fail. 'Tis twenty years till then. + I have forgot why I did call thee back. + + Rom. Let me stand here till thou remember it. + + Jul. I shall forget, to have thee still stand there, + Rememb'ring how I love thy company. + + Rom. And I'll still stay, to have thee still forget, + Forgetting any other home but this. + + Jul. 'Tis almost morning. I would have thee gone- + And yet no farther than a wanton's bird, + That lets it hop a little from her hand, + Like a poor prisoner in his twisted gyves, + And with a silk thread plucks it back again, + So loving-jealous of his liberty. + + Rom. I would I were thy bird. + + Jul. Sweet, so would I. + Yet I should kill thee with much cherishing. + Good night, good night! Parting is such sweet sorrow, + That I shall say good night till it be morrow. + [Exit.] + + Rom. Sleep dwell upon thine eyes, peace in thy breast! + Would I were sleep and peace, so sweet to rest! + Hence will I to my ghostly father's cell, + His help to crave and my dear hap to tell. + Exit + + + + +Scene III. +Friar Laurence's cell. + +Enter Friar, [Laurence] alone, with a basket. + + + Friar. The grey-ey'd morn smiles on the frowning night, + Check'ring the Eastern clouds with streaks of light; + And flecked darkness like a drunkard reels + From forth day's path and Titan's fiery wheels. + Non, ere the sun advance his burning eye + The day to cheer and night's dank dew to dry, + I must up-fill this osier cage of ours + With baleful weeds and precious-juiced flowers. + The earth that's nature's mother is her tomb. + What is her burying gave, that is her womb; + And from her womb children of divers kind + We sucking on her natural bosom find; + Many for many virtues excellent, + None but for some, and yet all different. + O, mickle is the powerful grace that lies + In plants, herbs, stones, and their true qualities; + For naught so vile that on the earth doth live + But to the earth some special good doth give; + Nor aught so good but, strain'd from that fair use, + Revolts from true birth, stumbling on abuse. + Virtue itself turns vice, being misapplied, + And vice sometime's by action dignified. + Within the infant rind of this small flower + Poison hath residence, and medicine power; + For this, being smelt, with that part cheers each part; + Being tasted, slays all senses with the heart. + Two such opposed kings encamp them still + In man as well as herbs- grace and rude will; + And where the worser is predominant, + Full soon the canker death eats up that plant. + + Enter Romeo. + + + Rom. Good morrow, father. + + Friar. Benedicite! + What early tongue so sweet saluteth me? + Young son, it argues a distempered head + So soon to bid good morrow to thy bed. + Care keeps his watch in every old man's eye, + And where care lodges sleep will never lie; + But where unbruised youth with unstuff'd brain + Doth couch his limbs, there golden sleep doth reign. + Therefore thy earliness doth me assure + Thou art uprous'd with some distemp'rature; + Or if not so, then here I hit it right- + Our Romeo hath not been in bed to-night. + + Rom. That last is true-the sweeter rest was mine. + + Friar. God pardon sin! Wast thou with Rosaline? + + Rom. With Rosaline, my ghostly father? No. + I have forgot that name, and that name's woe. + + Friar. That's my good son! But where hast thou been then? + + Rom. I'll tell thee ere thou ask it me again. + I have been feasting with mine enemy, + Where on a sudden one hath wounded me + That's by me wounded. Both our remedies + Within thy help and holy physic lies. + I bear no hatred, blessed man, for, lo, + My intercession likewise steads my foe. + + Friar. Be plain, good son, and homely in thy drift + Riddling confession finds but riddling shrift. + + Rom. Then plainly know my heart's dear love is set + On the fair daughter of rich Capulet; + As mine on hers, so hers is set on mine, + And all combin'd, save what thou must combine + By holy marriage. When, and where, and how + We met, we woo'd, and made exchange of vow, + I'll tell thee as we pass; but this I pray, + That thou consent to marry us to-day. + + Friar. Holy Saint Francis! What a change is here! + Is Rosaline, that thou didst love so dear, + So soon forsaken? Young men's love then lies + Not truly in their hearts, but in their eyes. + Jesu Maria! What a deal of brine + Hath wash'd thy sallow cheeks for Rosaline! + How much salt water thrown away in waste, + To season love, that of it doth not taste! + The sun not yet thy sighs from heaven clears, + Thy old groans ring yet in mine ancient ears. + Lo, here upon thy cheek the stain doth sit + Of an old tear that is not wash'd off yet. + If e'er thou wast thyself, and these woes thine, + Thou and these woes were all for Rosaline. + And art thou chang'd? Pronounce this sentence then: + Women may fall when there's no strength in men. + + Rom. Thou chid'st me oft for loving Rosaline. + + Friar. For doting, not for loving, pupil mine. + + Rom. And bad'st me bury love. + + Friar. Not in a grave + To lay one in, another out to have. + + Rom. I pray thee chide not. She whom I love now + Doth grace for grace and love for love allow. + The other did not so. + + Friar. O, she knew well + Thy love did read by rote, that could not spell. + But come, young waverer, come go with me. + In one respect I'll thy assistant be; + For this alliance may so happy prove + To turn your households' rancour to pure love. + + Rom. O, let us hence! I stand on sudden haste. + + Friar. Wisely, and slow. They stumble that run fast. + Exeunt. + + + + +Scene IV. +A street. + +Enter Benvolio and Mercutio. + + + Mer. Where the devil should this Romeo be? + Came he not home to-night? + + Ben. Not to his father's. I spoke with his man. + + Mer. Why, that same pale hard-hearted wench, that Rosaline, + Torments him so that he will sure run mad. + + Ben. Tybalt, the kinsman to old Capulet, + Hath sent a letter to his father's house. + + Mer. A challenge, on my life. + + Ben. Romeo will answer it. + + Mer. Any man that can write may answer a letter. + + Ben. Nay, he will answer the letter's master, how he dares, + being dared. + + Mer. Alas, poor Romeo, he is already dead! stabb'd with a white + wench's black eye; shot through the ear with a love song; the + very pin of his heart cleft with the blind bow-boy's + butt-shaft; and is he a man to encounter Tybalt? + + Ben. Why, what is Tybalt? + + Mer. More than Prince of Cats, I can tell you. O, he's the + courageous captain of compliments. He fights as you sing + pricksong-keeps time, distance, and proportion; rests me his + minim rest, one, two, and the third in your bosom! the very + butcher of a silk button, a duellist, a duellist! a gentleman + of the very first house, of the first and second cause. Ah, the + immortal passado! the punto reverse! the hay. + + Ben. The what? + + Mer. The pox of such antic, lisping, affecting fantasticoes- + these new tuners of accent! 'By Jesu, a very good blade! a very + tall man! a very good whore!' Why, is not this a lamentable thing, + grandsir, that we should be thus afflicted with these strange + flies, these fashion-mongers, these pardona-mi's, who stand + so much on the new form that they cannot sit at ease on the old + bench? O, their bones, their bones! + + Enter Romeo. + + + Ben. Here comes Romeo! here comes Romeo! + + Mer. Without his roe, like a dried herring. O flesh, flesh, how + art thou fishified! Now is he for the numbers that Petrarch + flowed in. Laura, to his lady, was but a kitchen wench (marry, she + had a better love to berhyme her), Dido a dowdy, Cleopatra a gypsy, + Helen and Hero hildings and harlots, This be a gray eye or so, + but not to the purpose. Signior Romeo, bon jour! There's a French + salutation to your French slop. You gave us the counterfeit + fairly last night. + + Rom. Good morrow to you both. What counterfeit did I give you? + + Mer. The slip, sir, the slip. Can you not conceive? + + Rom. Pardon, good Mercutio. My business was great, and in such a + case as mine a man may strain courtesy. + + Mer. That's as much as to say, such a case as yours constrains a + man to bow in the hams. + + Rom. Meaning, to cursy. + + Mer. Thou hast most kindly hit it. + + Rom. A most courteous exposition. + + Mer. Nay, I am the very pink of courtesy. + + Rom. Pink for flower. + + Mer. Right. + + Rom. Why, then is my pump well-flower'd. + + Mer. Well said! Follow me this jest now till thou hast worn out + thy pump, that, when the single sole of it is worn, the jest may + remain, after the wearing, solely singular. + + Rom. O single-sold jest, solely singular for the singleness! + + Mer. Come between us, good Benvolio! My wits faint. + + Rom. Swits and spurs, swits and spurs! or I'll cry a match. + + Mer. Nay, if our wits run the wild-goose chase, I am done; for + thou hast more of the wild goose in one of thy wits than, I am + sure, I have in my whole five. Was I with you there for the goose? + + Rom. Thou wast never with me for anything when thou wast not + there for the goose. + + Mer. I will bite thee by the ear for that jest. + + Rom. Nay, good goose, bite not! + + Mer. Thy wit is a very bitter sweeting; it is a most sharp sauce. + + Rom. And is it not, then, well serv'd in to a sweet goose? + + Mer. O, here's a wit of cheveril, that stretches from an inch + narrow to an ell broad! + + Rom. I stretch it out for that word 'broad,' which, added to + the goose, proves thee far and wide a broad goose. + + Mer. Why, is not this better now than groaning for love? Now + art thou sociable, now art thou Romeo; now art thou what thou art, by + art as well as by nature. For this drivelling love is like a + great natural that runs lolling up and down to hide his bauble in + a hole. + + Ben. Stop there, stop there! + + Mer. Thou desirest me to stop in my tale against the hair. + + Ben. Thou wouldst else have made thy tale large. + + Mer. O, thou art deceiv'd! I would have made it short; for I + was come to the whole depth of my tale, and meant indeed to + occupy the argument no longer. + + Rom. Here's goodly gear! + + Enter Nurse and her Man [Peter]. + + + Mer. A sail, a sail! + + Ben. Two, two! a shirt and a smock. + + Nurse. Peter! + + Peter. Anon. + + Nurse. My fan, Peter. + + Mer. Good Peter, to hide her face; for her fan's the fairer face of + the two. + + Nurse. God ye good morrow, gentlemen. + + Mer. God ye good-den, fair gentlewoman. + + Nurse. Is it good-den? + + Mer. 'Tis no less, I tell ye; for the bawdy hand of the dial is + now upon the prick of noon. + + Nurse. Out upon you! What a man are you! + + Rom. One, gentlewoman, that God hath made for himself to mar. + + Nurse. By my troth, it is well said. 'For himself to mar,' + quoth 'a? Gentlemen, can any of you tell me where I may find the + young Romeo? + + Rom. I can tell you; but young Romeo will be older when you + have found him than he was when you sought him. I am the youngest + of that name, for fault of a worse. + + Nurse. You say well. + + Mer. Yea, is the worst well? Very well took, i' faith! wisely, + wisely. + + Nurse. If you be he, sir, I desire some confidence with you. + + Ben. She will endite him to some supper. + + Mer. A bawd, a bawd, a bawd! So ho! + + Rom. What hast thou found? + + Mer. No hare, sir; unless a hare, sir, in a lenten pie, that is + something stale and hoar ere it be spent + He walks by them and sings. + + An old hare hoar, + And an old hare hoar, + Is very good meat in Lent; + But a hare that is hoar + Is too much for a score + When it hoars ere it be spent. + + Romeo, will you come to your father's? We'll to dinner thither. + + Rom. I will follow you. + + Mer. Farewell, ancient lady. Farewell, + [sings] lady, lady, lady. + Exeunt Mercutio, Benvolio. + + Nurse. Marry, farewell! I Pray you, Sir, what saucy merchant + was this that was so full of his ropery? + + Rom. A gentleman, nurse, that loves to hear himself talk and + will speak more in a minute than he will stand to in a month. + + Nurse. An 'a speak anything against me, I'll take him down, an +'a + were lustier than he is, and twenty such jacks; and if I cannot, + I'll find those that shall. Scurvy knave! I am none of his + flirt-gills; I am none of his skains-mates. And thou must + stand by too, and suffer every knave to use me at his pleasure! + + Peter. I saw no man use you at his pleasure. If I had, my + weapon should quickly have been out, I warrant you. I dare draw as + soon as another man, if I see occasion in a good quarrel, and the + law on my side. + + Nurse. Now, afore God, I am so vexed that every part about me + quivers. Scurvy knave! Pray you, sir, a word; and, as I told you, + my young lady bid me enquire you out. What she bid me say, I + will keep to myself; but first let me tell ye, if ye should lead + her into a fool's paradise, as they say, it were a very gross kind of + behaviour, as they say; for the gentlewoman is young; and + therefore, if you should deal double with her, truly it were + an ill thing to be off'red to any gentlewoman, and very weak dealing. + + Rom. Nurse, commend me to thy lady and mistress. I protest unto + thee- + + Nurse. Good heart, and I faith I will tell her as much. Lord, + Lord! she will be a joyful woman. + + Rom. What wilt thou tell her, nurse? Thou dost not mark me. + + Nurse. I will tell her, sir, that you do protest, which, as I + take it, is a gentlemanlike offer. + + Rom. Bid her devise + Some means to come to shrift this afternoon; + And there she shall at Friar Laurence' cell + Be shriv'd and married. Here is for thy pains. + + Nurse. No, truly, sir; not a penny. + + Rom. Go to! I say you shall. + + Nurse. This afternoon, sir? Well, she shall be there. + + Rom. And stay, good nurse, behind the abbey wall. + Within this hour my man shall be with thee + And bring thee cords made like a tackled stair, + Which to the high topgallant of my joy + Must be my convoy in the secret night. + Farewell. Be trusty, and I'll quit thy pains. + Farewell. Commend me to thy mistress. + + Nurse. Now God in heaven bless thee! Hark you, sir. + + Rom. What say'st thou, my dear nurse? + + Nurse. Is your man secret? Did you ne'er hear say, + Two may keep counsel, putting one away? + + Rom. I warrant thee my man's as true as steel. + + Nurse. Well, sir, my mistress is the sweetest lady. Lord, Lord! + when 'twas a little prating thing- O, there is a nobleman in + town, one Paris, that would fain lay knife aboard; but she, + good soul, had as lieve see a toad, a very toad, as see him. I + anger her sometimes, and tell her that Paris is the properer man; + but I'll warrant you, when I say so, she looks as pale as any + clout in the versal world. Doth not rosemary and Romeo begin both + with a letter? + + Rom. Ay, nurse; what of that? Both with an R. + + Nurse. Ah, mocker! that's the dog's name. R is for the- No; I + know it begins with some other letter; and she hath the prettiest + sententious of it, of you and rosemary, that it would do you + good to hear it. + + Rom. Commend me to thy lady. + + Nurse. Ay, a thousand times. [Exit Romeo.] Peter! + + Peter. Anon. + + Nurse. Peter, take my fan, and go before, and apace. + Exeunt. + + + + +Scene V. +Capulet's orchard. + +Enter Juliet. + + + Jul. The clock struck nine when I did send the nurse; + In half an hour she 'promis'd to return. + Perchance she cannot meet him. That's not so. + O, she is lame! Love's heralds should be thoughts, + Which ten times faster glide than the sun's beams + Driving back shadows over low'ring hills. + Therefore do nimble-pinion'd doves draw Love, + And therefore hath the wind-swift Cupid wings. + Now is the sun upon the highmost hill + Of this day's journey, and from nine till twelve + Is three long hours; yet she is not come. + Had she affections and warm youthful blood, + She would be as swift in motion as a ball; + My words would bandy her to my sweet love, + And his to me, + But old folks, many feign as they were dead- + Unwieldy, slow, heavy and pale as lead. + + Enter Nurse [and Peter]. + + O God, she comes! O honey nurse, what news? + Hast thou met with him? Send thy man away. + + Nurse. Peter, stay at the gate. + [Exit Peter.] + + Jul. Now, good sweet nurse- O Lord, why look'st thou sad? + Though news be sad, yet tell them merrily; + If good, thou shamest the music of sweet news + By playing it to me with so sour a face. + + Nurse. I am aweary, give me leave awhile. + Fie, how my bones ache! What a jaunce have I had! + + Jul. I would thou hadst my bones, and I thy news. + Nay, come, I pray thee speak. Good, good nurse, speak. + + Nurse. Jesu, what haste! Can you not stay awhile? + Do you not see that I am out of breath? + + Jul. How art thou out of breath when thou hast breath + To say to me that thou art out of breath? + The excuse that thou dost make in this delay + Is longer than the tale thou dost excuse. + Is thy news good or bad? Answer to that. + Say either, and I'll stay the circumstance. + Let me be satisfied, is't good or bad? + + Nurse. Well, you have made a simple choice; you know not how to + choose a man. Romeo? No, not he. Though his face be better + than any man's, yet his leg excels all men's; and for a hand and a + foot, and a body, though they be not to be talk'd on, yet + they are past compare. He is not the flower of courtesy, but, I'll + warrant him, as gentle as a lamb. Go thy ways, wench; serve +God. + What, have you din'd at home? + + Jul. No, no. But all this did I know before. + What says he of our marriage? What of that? + + Nurse. Lord, how my head aches! What a head have I! + It beats as it would fall in twenty pieces. + My back o' t' other side,- ah, my back, my back! + Beshrew your heart for sending me about + To catch my death with jauncing up and down! + + Jul. I' faith, I am sorry that thou art not well. + Sweet, sweet, Sweet nurse, tell me, what says my love? + + Nurse. Your love says, like an honest gentleman, and a courteous, + and a kind, and a handsome; and, I warrant, a virtuous- Where + is your mother? + + Jul. Where is my mother? Why, she is within. + Where should she be? How oddly thou repliest! + 'Your love says, like an honest gentleman, + "Where is your mother?"' + + Nurse. O God's Lady dear! + Are you so hot? Marry come up, I trow. + Is this the poultice for my aching bones? + Henceforward do your messages yourself. + + Jul. Here's such a coil! Come, what says Romeo? + + Nurse. Have you got leave to go to shrift to-day? + + Jul. I have. + + Nurse. Then hie you hence to Friar Laurence' cell; + There stays a husband to make you a wife. + Now comes the wanton blood up in your cheeks: + They'll be in scarlet straight at any news. + Hie you to church; I must another way, + To fetch a ladder, by the which your love + Must climb a bird's nest soon when it is dark. + I am the drudge, and toil in your delight; + But you shall bear the burthen soon at night. + Go; I'll to dinner; hie you to the cell. + + Jul. Hie to high fortune! Honest nurse, farewell. + Exeunt. + + + + +Scene VI. +Friar Laurence's cell. + +Enter Friar [Laurence] and Romeo. + + + Friar. So smile the heavens upon this holy act + That after-hours with sorrow chide us not! + + Rom. Amen, amen! But come what sorrow can, + It cannot countervail the exchange of joy + That one short minute gives me in her sight. + Do thou but close our hands with holy words, + Then love-devouring death do what he dare- + It is enough I may but call her mine. + + Friar. These violent delights have violent ends + And in their triumph die, like fire and powder, + Which, as they kiss, consume. The sweetest honey + Is loathsome in his own deliciousness + And in the taste confounds the appetite. + Therefore love moderately: long love doth so; + Too swift arrives as tardy as too slow. + + Enter Juliet. + + Here comes the lady. O, so light a foot + Will ne'er wear out the everlasting flint. + A lover may bestride the gossamer + That idles in the wanton summer air, + And yet not fall; so light is vanity. + + Jul. Good even to my ghostly confessor. + + Friar. Romeo shall thank thee, daughter, for us both. + + Jul. As much to him, else is his thanks too much. + + Rom. Ah, Juliet, if the measure of thy joy + Be heap'd like mine, and that thy skill be more + To blazon it, then sweeten with thy breath + This neighbour air, and let rich music's tongue + Unfold the imagin'd happiness that both + Receive in either by this dear encounter. + + Jul. Conceit, more rich in matter than in words, + Brags of his substance, not of ornament. + They are but beggars that can count their worth; + But my true love is grown to such excess + cannot sum up sum of half my wealth. + + Friar. Come, come with me, and we will make short work; + For, by your leaves, you shall not stay alone + Till Holy Church incorporate two in one. + [Exeunt.] + + + + +ACT III. Scene I. +A public place. + +Enter Mercutio, Benvolio, and Men. + + + Ben. I pray thee, good Mercutio, let's retire. + The day is hot, the Capulets abroad. + And if we meet, we shall not scape a brawl, + For now, these hot days, is the mad blood stirring. + + Mer. Thou art like one of these fellows that, when he enters + the confines of a tavern, claps me his sword upon the table and + says 'God send me no need of thee!' and by the operation of the + second cup draws him on the drawer, when indeed there is no need. + + Ben. Am I like such a fellow? + + Mer. Come, come, thou art as hot a jack in thy mood as any in + Italy; and as soon moved to be moody, and as soon moody to be + moved. + + Ben. And what to? + + Mer. Nay, an there were two such, we should have none shortly, + for one would kill the other. Thou! why, thou wilt quarrel with a + man that hath a hair more or a hair less in his beard than thou hast. + Thou wilt quarrel with a man for cracking nuts, having no + other reason but because thou hast hazel eyes. What eye but such an + eye would spy out such a quarrel? Thy head is as full of quarrels + as an egg is full of meat; and yet thy head hath been beaten as + addle as an egg for quarrelling. Thou hast quarrell'd with a + man for coughing in the street, because he hath wakened thy dog + that hath lain asleep in the sun. Didst thou not fall out with a + tailor for wearing his new doublet before Easter, with + another for tying his new shoes with an old riband? And yet thou wilt + tutor me from quarrelling! + + Ben. An I were so apt to quarrel as thou art, any man should + buy the fee simple of my life for an hour and a quarter. + + Mer. The fee simple? O simple! + + Enter Tybalt and others. + + + Ben. By my head, here come the Capulets. + + Mer. By my heel, I care not. + + Tyb. Follow me close, for I will speak to them. + Gentlemen, good den. A word with one of you. + + Mer. And but one word with one of us? + Couple it with something; make it a word and a blow. + + Tyb. You shall find me apt enough to that, sir, an you will give me + occasion. + + Mer. Could you not take some occasion without giving + + Tyb. Mercutio, thou consortest with Romeo. + + Mer. Consort? What, dost thou make us minstrels? An thou make + minstrels of us, look to hear nothing but discords. Here's my + fiddlestick; here's that shall make you dance. Zounds, consort! + + Ben. We talk here in the public haunt of men. + Either withdraw unto some private place + And reason coldly of your grievances, + Or else depart. Here all eyes gaze on us. + + Mer. Men's eyes were made to look, and let them gaze. + I will not budge for no man's pleasure, + + Enter Romeo. + + + Tyb. Well, peace be with you, sir. Here comes my man. + + Mer. But I'll be hang'd, sir, if he wear your livery. + Marry, go before to field, he'll be your follower! + Your worship in that sense may call him man. + + Tyb. Romeo, the love I bear thee can afford + No better term than this: thou art a villain. + + Rom. Tybalt, the reason that I have to love thee + Doth much excuse the appertaining rage + To such a greeting. Villain am I none. + Therefore farewell. I see thou knowest me not. + + Tyb. Boy, this shall not excuse the injuries + That thou hast done me; therefore turn and draw. + + Rom. I do protest I never injur'd thee, + But love thee better than thou canst devise + Till thou shalt know the reason of my love; + And so good Capulet, which name I tender + As dearly as mine own, be satisfied. + + Mer. O calm, dishonourable, vile submission! + Alla stoccata carries it away. [Draws.] + Tybalt, you ratcatcher, will you walk? + + Tyb. What wouldst thou have with me? + + Mer. Good King of Cats, nothing but one of your nine lives. +That I + mean to make bold withal, and, as you shall use me hereafter, + + dry-beat the rest of the eight. Will you pluck your sword out + of his pitcher by the ears? Make haste, lest mine be about your + ears ere it be out. + + Tyb. I am for you. [Draws.] + + Rom. Gentle Mercutio, put thy rapier up. + + Mer. Come, sir, your passado! + [They fight.] + + Rom. Draw, Benvolio; beat down their weapons. + Gentlemen, for shame! forbear this outrage! + Tybalt, Mercutio, the Prince expressly hath + Forbid this bandying in Verona streets. + Hold, Tybalt! Good Mercutio! + Tybalt under Romeo's arm thrusts Mercutio in, and flies + [with his Followers]. + + Mer. I am hurt. + A plague o' both your houses! I am sped. + Is he gone and hath nothing? + + Ben. What, art thou hurt? + + Mer. Ay, ay, a scratch, a scratch. Marry, 'tis enough. + Where is my page? Go, villain, fetch a surgeon. + [Exit Page.] + + Rom. Courage, man. The hurt cannot be much. + + Mer. No, 'tis not so deep as a well, nor so wide as a church door; + but 'tis enough, 'twill serve. Ask for me to-morrow, and you + shall find me a grave man. I am peppered, I warrant, for this + world. A plague o' both your houses! Zounds, a dog, a rat, a + mouse, a cat, to scratch a man to death! a braggart, a rogue, +a + villain, that fights by the book of arithmetic! Why the devil + came you between us? I was hurt under your arm. + + Rom. I thought all for the best. + + Mer. Help me into some house, Benvolio, + Or I shall faint. A plague o' both your houses! + They have made worms' meat of me. I have it, + And soundly too. Your houses! + [Exit. [supported by Benvolio]. + + Rom. This gentleman, the Prince's near ally, + My very friend, hath got this mortal hurt + In my behalf- my reputation stain'd + With Tybalt's slander- Tybalt, that an hour + Hath been my kinsman. O sweet Juliet, + Thy beauty hath made me effeminate + And in my temper soft'ned valour's steel + + Enter Benvolio. + + + Ben. O Romeo, Romeo, brave Mercutio's dead! + That gallant spirit hath aspir'd the clouds, + Which too untimely here did scorn the earth. + + Rom. This day's black fate on moe days doth depend; + This but begins the woe others must end. + + Enter Tybalt. + + + Ben. Here comes the furious Tybalt back again. + + Rom. Alive in triumph, and Mercutio slain? + Away to heaven respective lenity, + And fire-ey'd fury be my conduct now! + Now, Tybalt, take the 'villain' back again + That late thou gavest me; for Mercutio's soul + Is but a little way above our heads, + Staying for thine to keep him company. + Either thou or I, or both, must go with him. + + Tyb. Thou, wretched boy, that didst consort him here, + Shalt with him hence. + + Rom. This shall determine that. + They fight. Tybalt falls. + + Ben. Romeo, away, be gone! + The citizens are up, and Tybalt slain. + Stand not amaz'd. The Prince will doom thee death + If thou art taken. Hence, be gone, away! + + Rom. O, I am fortune's fool! + + Ben. Why dost thou stay? + Exit Romeo. + Enter Citizens. + + + Citizen. Which way ran he that kill'd Mercutio? + Tybalt, that murtherer, which way ran he? + + Ben. There lies that Tybalt. + + Citizen. Up, sir, go with me. + I charge thee in the Prince's name obey. + + + Enter Prince [attended], Old Montague, Capulet, their Wives, + and [others]. + + + Prince. Where are the vile beginners of this fray? + + Ben. O noble Prince. I can discover all + The unlucky manage of this fatal brawl. + There lies the man, slain by young Romeo, + That slew thy kinsman, brave Mercutio. + + Cap. Wife. Tybalt, my cousin! O my brother's child! + O Prince! O husband! O, the blood is spill'd + Of my dear kinsman! Prince, as thou art true, + For blood of ours shed blood of Montague. + O cousin, cousin! + + Prince. Benvolio, who began this bloody fray? + + Ben. Tybalt, here slain, whom Romeo's hand did stay. + Romeo, that spoke him fair, bid him bethink + How nice the quarrel was, and urg'd withal + Your high displeasure. All this- uttered + With gentle breath, calm look, knees humbly bow'd- + Could not take truce with the unruly spleen + Of Tybalt deaf to peace, but that he tilts + With piercing steel at bold Mercutio's breast; + Who, all as hot, turns deadly point to point, + And, with a martial scorn, with one hand beats + Cold death aside and with the other sends + It back to Tybalt, whose dexterity + Retorts it. Romeo he cries aloud, + 'Hold, friends! friends, part!' and swifter than his tongue, + His agile arm beats down their fatal points, + And 'twixt them rushes; underneath whose arm + An envious thrust from Tybalt hit the life + Of stout Mercutio, and then Tybalt fled; + But by-and-by comes back to Romeo, + Who had but newly entertain'd revenge, + And to't they go like lightning; for, ere I + Could draw to part them, was stout Tybalt slain; + And, as he fell, did Romeo turn and fly. + This is the truth, or let Benvolio die. + + Cap. Wife. He is a kinsman to the Montague; + Affection makes him false, he speaks not true. + Some twenty of them fought in this black strife, + And all those twenty could but kill one life. + I beg for justice, which thou, Prince, must give. + Romeo slew Tybalt; Romeo must not live. + + Prince. Romeo slew him; he slew Mercutio. + Who now the price of his dear blood doth owe? + + Mon. Not Romeo, Prince; he was Mercutio's friend; + His fault concludes but what the law should end, + The life of Tybalt. + + Prince. And for that offence + Immediately we do exile him hence. + I have an interest in your hate's proceeding, + My blood for your rude brawls doth lie a-bleeding; + But I'll amerce you with so strong a fine + That you shall all repent the loss of mine. + I will be deaf to pleading and excuses; + Nor tears nor prayers shall purchase out abuses. + Therefore use none. Let Romeo hence in haste, + Else, when he is found, that hour is his last. + Bear hence this body, and attend our will. + Mercy but murders, pardoning those that kill. + Exeunt. + + + + +Scene II. +Capulet's orchard. + +Enter Juliet alone. + + + Jul. Gallop apace, you fiery-footed steeds, + Towards Phoebus' lodging! Such a wagoner + As Phaeton would whip you to the West + And bring in cloudy night immediately. + Spread thy close curtain, love-performing night, + That runaway eyes may wink, and Romeo + Leap to these arms untalk'd of and unseen. + Lovers can see to do their amorous rites + By their own beauties; or, if love be blind, + It best agrees with night. Come, civil night, + Thou sober-suited matron, all in black, + And learn me how to lose a winning match, + Play'd for a pair of stainless maidenhoods. + Hood my unmann'd blood, bating in my cheeks, + With thy black mantle till strange love, grown bold, + Think true love acted simple modesty. + Come, night; come, Romeo; come, thou day in night; + For thou wilt lie upon the wings of night + Whiter than new snow upon a raven's back. + Come, gentle night; come, loving, black-brow'd night; + Give me my Romeo; and, when he shall die, + Take him and cut him out in little stars, + And he will make the face of heaven so fine + That all the world will be in love with night + And pay no worship to the garish sun. + O, I have bought the mansion of a love, + But not possess'd it; and though I am sold, + Not yet enjoy'd. So tedious is this day + As is the night before some festival + To an impatient child that hath new robes + And may not wear them. O, here comes my nurse, + + Enter Nurse, with cords. + + And she brings news; and every tongue that speaks + But Romeo's name speaks heavenly eloquence. + Now, nurse, what news? What hast thou there? the cords + That Romeo bid thee fetch? + + Nurse. Ay, ay, the cords. + [Throws them down.] + + Jul. Ay me! what news? Why dost thou wring thy hands + + Nurse. Ah, weraday! he's dead, he's dead, he's dead! + We are undone, lady, we are undone! + Alack the day! he's gone, he's kill'd, he's dead! + + Jul. Can heaven be so envious? + + Nurse. Romeo can, + Though heaven cannot. O Romeo, Romeo! + Who ever would have thought it? Romeo! + + Jul. What devil art thou that dost torment me thus? + This torture should be roar'd in dismal hell. + Hath Romeo slain himself? Say thou but 'I,' + And that bare vowel 'I' shall poison more + Than the death-darting eye of cockatrice. + I am not I, if there be such an 'I'; + Or those eyes shut that make thee answer 'I.' + If be be slain, say 'I'; or if not, 'no.' + Brief sounds determine of my weal or woe. + + Nurse. I saw the wound, I saw it with mine eyes, + (God save the mark!) here on his manly breast. + A piteous corse, a bloody piteous corse; + Pale, pale as ashes, all bedaub'd in blood, + All in gore-blood. I swounded at the sight. + + Jul. O, break, my heart! poor bankrout, break at once! + To prison, eyes; ne'er look on liberty! + Vile earth, to earth resign; end motion here, + And thou and Romeo press one heavy bier! + + Nurse. O Tybalt, Tybalt, the best friend I had! + O courteous Tybalt! honest gentleman + That ever I should live to see thee dead! + + Jul. What storm is this that blows so contrary? + Is Romeo slaught'red, and is Tybalt dead? + My dear-lov'd cousin, and my dearer lord? + Then, dreadful trumpet, sound the general doom! + For who is living, if those two are gone? + + Nurse. Tybalt is gone, and Romeo banished; + Romeo that kill'd him, he is banished. + + Jul. O God! Did Romeo's hand shed Tybalt's blood? + + Nurse. It did, it did! alas the day, it did! + + Jul. O serpent heart, hid with a flow'ring face! + Did ever dragon keep so fair a cave? + Beautiful tyrant! fiend angelical! + Dove-feather'd raven! wolvish-ravening lamb! + Despised substance of divinest show! + Just opposite to what thou justly seem'st- + A damned saint, an honourable villain! + O nature, what hadst thou to do in hell + When thou didst bower the spirit of a fiend + In mortal paradise of such sweet flesh? + Was ever book containing such vile matter + So fairly bound? O, that deceit should dwell + In such a gorgeous palace! + + Nurse. There's no trust, + No faith, no honesty in men; all perjur'd, + All forsworn, all naught, all dissemblers. + Ah, where's my man? Give me some aqua vitae. + These griefs, these woes, these sorrows make me old. + Shame come to Romeo! + + Jul. Blister'd be thy tongue + For such a wish! He was not born to shame. + Upon his brow shame is asham'd to sit; + For 'tis a throne where honour may be crown'd + Sole monarch of the universal earth. + O, what a beast was I to chide at him! + + Nurse. Will you speak well of him that kill'd your cousin? + + Jul. Shall I speak ill of him that is my husband? + Ah, poor my lord, what tongue shall smooth thy name + When I, thy three-hours wife, have mangled it? + But wherefore, villain, didst thou kill my cousin? + That villain cousin would have kill'd my husband. + Back, foolish tears, back to your native spring! + Your tributary drops belong to woe, + Which you, mistaking, offer up to joy. + My husband lives, that Tybalt would have slain; + And Tybalt's dead, that would have slain my husband. + All this is comfort; wherefore weep I then? + Some word there was, worser than Tybalt's death, + That murd'red me. I would forget it fain; + But O, it presses to my memory + Like damned guilty deeds to sinners' minds! + 'Tybalt is dead, and Romeo- banished.' + That 'banished,' that one word 'banished,' + Hath slain ten thousand Tybalts. Tybalt's death + Was woe enough, if it had ended there; + Or, if sour woe delights in fellowship + And needly will be rank'd with other griefs, + Why followed not, when she said 'Tybalt's dead,' + Thy father, or thy mother, nay, or both, + Which modern lamentation might have mov'd? + But with a rearward following Tybalt's death, + 'Romeo is banished'- to speak that word + Is father, mother, Tybalt, Romeo, Juliet, + All slain, all dead. 'Romeo is banished'- + There is no end, no limit, measure, bound, + In that word's death; no words can that woe sound. + Where is my father and my mother, nurse? + + Nurse. Weeping and wailing over Tybalt's corse. + Will you go to them? I will bring you thither. + + Jul. Wash they his wounds with tears? Mine shall be spent, + When theirs are dry, for Romeo's banishment. + Take up those cords. Poor ropes, you are beguil'd, + Both you and I, for Romeo is exil'd. + He made you for a highway to my bed; + But I, a maid, die maiden-widowed. + Come, cords; come, nurse. I'll to my wedding bed; + And death, not Romeo, take my maidenhead! + + Nurse. Hie to your chamber. I'll find Romeo + To comfort you. I wot well where he is. + Hark ye, your Romeo will be here at night. + I'll to him; he is hid at Laurence' cell. + + Jul. O, find him! give this ring to my true knight + And bid him come to take his last farewell. + Exeunt. + + + + +Scene III. +Friar Laurence's cell. + +Enter Friar [Laurence]. + + + Friar. Romeo, come forth; come forth, thou fearful man. + Affliction is enanmour'd of thy parts, + And thou art wedded to calamity. + + Enter Romeo. + + + Rom. Father, what news? What is the Prince's doom + What sorrow craves acquaintance at my hand + That I yet know not? + + Friar. Too familiar + Is my dear son with such sour company. + I bring thee tidings of the Prince's doom. + + Rom. What less than doomsday is the Prince's doom? + + Friar. A gentler judgment vanish'd from his lips- + Not body's death, but body's banishment. + + Rom. Ha, banishment? Be merciful, say 'death'; + For exile hath more terror in his look, + Much more than death. Do not say 'banishment.' + + Friar. Hence from Verona art thou banished. + Be patient, for the world is broad and wide. + + Rom. There is no world without Verona walls, + But purgatory, torture, hell itself. + Hence banished is banish'd from the world, + And world's exile is death. Then 'banishment' + Is death misterm'd. Calling death 'banishment,' + Thou cut'st my head off with a golden axe + And smilest upon the stroke that murders me. + + Friar. O deadly sin! O rude unthankfulness! + Thy fault our law calls death; but the kind Prince, + Taking thy part, hath rush'd aside the law, + And turn'd that black word death to banishment. + This is dear mercy, and thou seest it not. + + Rom. 'Tis torture, and not mercy. Heaven is here, + Where Juliet lives; and every cat and dog + And little mouse, every unworthy thing, + Live here in heaven and may look on her; + But Romeo may not. More validity, + More honourable state, more courtship lives + In carrion flies than Romeo. They may seize + On the white wonder of dear Juliet's hand + And steal immortal blessing from her lips, + Who, even in pure and vestal modesty, + Still blush, as thinking their own kisses sin; + But Romeo may not- he is banished. + This may flies do, when I from this must fly; + They are free men, but I am banished. + And sayest thou yet that exile is not death? + Hadst thou no poison mix'd, no sharp-ground knife, + No sudden mean of death, though ne'er so mean, + But 'banished' to kill me- 'banished'? + O friar, the damned use that word in hell; + Howling attends it! How hast thou the heart, + Being a divine, a ghostly confessor, + A sin-absolver, and my friend profess'd, + To mangle me with that word 'banished'? + + Friar. Thou fond mad man, hear me a little speak. + + Rom. O, thou wilt speak again of banishment. + + Friar. I'll give thee armour to keep off that word; + Adversity's sweet milk, philosophy, + To comfort thee, though thou art banished. + + Rom. Yet 'banished'? Hang up philosophy! + Unless philosophy can make a Juliet, + Displant a town, reverse a prince's doom, + It helps not, it prevails not. Talk no more. + + Friar. O, then I see that madmen have no ears. + + Rom. How should they, when that wise men have no eyes? + + Friar. Let me dispute with thee of thy estate. + + Rom. Thou canst not speak of that thou dost not feel. + Wert thou as young as I, Juliet thy love, + An hour but married, Tybalt murdered, + Doting like me, and like me banished, + Then mightst thou speak, then mightst thou tear thy hair, + And fall upon the ground, as I do now, + Taking the measure of an unmade grave. + Knock [within]. + + Friar. Arise; one knocks. Good Romeo, hide thyself. + + Rom. Not I; unless the breath of heartsick groans, + Mist-like infold me from the search of eyes. Knock. + + Friar. Hark, how they knock! Who's there? Romeo, arise; + Thou wilt be taken.- Stay awhile!- Stand up; Knock. + Run to my study.- By-and-by!- God's will, + What simpleness is this.- I come, I come! Knock. + Who knocks so hard? Whence come you? What's your will + + Nurse. [within] Let me come in, and you shall know my errand. + I come from Lady Juliet. + + Friar. Welcome then. + + Enter Nurse. + + + Nurse. O holy friar, O, tell me, holy friar + Where is my lady's lord, where's Romeo? + + Friar. There on the ground, with his own tears made drunk. + + Nurse. O, he is even in my mistress' case, + Just in her case! + + Friar. O woeful sympathy! + Piteous predicament! + + Nurse. Even so lies she, + Blubb'ring and weeping, weeping and blubbering. + Stand up, stand up! Stand, an you be a man. + For Juliet's sake, for her sake, rise and stand! + Why should you fall into so deep an O? + + Rom. (rises) Nurse- + + Nurse. Ah sir! ah sir! Well, death's the end of all. + + Rom. Spakest thou of Juliet? How is it with her? + Doth not she think me an old murtherer, + Now I have stain'd the childhood of our joy + With blood remov'd but little from her own? + Where is she? and how doth she! and what says + My conceal'd lady to our cancell'd love? + + Nurse. O, she says nothing, sir, but weeps and weeps; + And now falls on her bed, and then starts up, + And Tybalt calls; and then on Romeo cries, + And then down falls again. + + Rom. As if that name, + Shot from the deadly level of a gun, + Did murther her; as that name's cursed hand + Murder'd her kinsman. O, tell me, friar, tell me, + In what vile part of this anatomy + Doth my name lodge? Tell me, that I may sack + The hateful mansion. [Draws his dagger.] + + Friar. Hold thy desperate hand. + Art thou a man? Thy form cries out thou art; + Thy tears are womanish, thy wild acts denote + The unreasonable fury of a beast. + Unseemly woman in a seeming man! + Or ill-beseeming beast in seeming both! + Thou hast amaz'd me. By my holy order, + I thought thy disposition better temper'd. + Hast thou slain Tybalt? Wilt thou slay thyself? + And slay thy lady that in thy life lives, + By doing damned hate upon thyself? + Why railest thou on thy birth, the heaven, and earth? + Since birth and heaven and earth, all three do meet + In thee at once; which thou at once wouldst lose. + Fie, fie, thou shamest thy shape, thy love, thy wit, + Which, like a usurer, abound'st in all, + And usest none in that true use indeed + Which should bedeck thy shape, thy love, thy wit. + Thy noble shape is but a form of wax + Digressing from the valour of a man; + Thy dear love sworn but hollow perjury, + Killing that love which thou hast vow'd to cherish; + Thy wit, that ornament to shape and love, + Misshapen in the conduct of them both, + Like powder in a skilless soldier's flask, + is get afire by thine own ignorance, + And thou dismemb'red with thine own defence. + What, rouse thee, man! Thy Juliet is alive, + For whose dear sake thou wast but lately dead. + There art thou happy. Tybalt would kill thee, + But thou slewest Tybalt. There art thou happy too. + The law, that threat'ned death, becomes thy friend + And turns it to exile. There art thou happy. + A pack of blessings light upon thy back; + Happiness courts thee in her best array; + But, like a misbhav'd and sullen wench, + Thou pout'st upon thy fortune and thy love. + Take heed, take heed, for such die miserable. + Go get thee to thy love, as was decreed, + Ascend her chamber, hence and comfort her. + But look thou stay not till the watch be set, + For then thou canst not pass to Mantua, + Where thou shalt live till we can find a time + To blaze your marriage, reconcile your friends, + Beg pardon of the Prince, and call thee back + With twenty hundred thousand times more joy + Than thou went'st forth in lamentation. + Go before, nurse. Commend me to thy lady, + And bid her hasten all the house to bed, + Which heavy sorrow makes them apt unto. + Romeo is coming. + + Nurse. O Lord, I could have stay'd here all the night + To hear good counsel. O, what learning is! + My lord, I'll tell my lady you will come. + + Rom. Do so, and bid my sweet prepare to chide. + + Nurse. Here is a ring she bid me give you, sir. + Hie you, make haste, for it grows very late. Exit. + + Rom. How well my comfort is reviv'd by this! + + Friar. Go hence; good night; and here stands all your state: + Either be gone before the watch be set, + Or by the break of day disguis'd from hence. + Sojourn in Mantua. I'll find out your man, + And he shall signify from time to time + Every good hap to you that chances here. + Give me thy hand. 'Tis late. Farewell; good night. + + Rom. But that a joy past joy calls out on me, + It were a grief so brief to part with thee. + Farewell. + Exeunt. + + + + +Scene IV. +Capulet's house + +Enter Old Capulet, his Wife, and Paris. + + + Cap. Things have fall'n out, sir, so unluckily + That we have had no time to move our daughter. + Look you, she lov'd her kinsman Tybalt dearly, + And so did I. Well, we were born to die. + 'Tis very late; she'll not come down to-night. + I promise you, but for your company, + I would have been abed an hour ago. + + Par. These times of woe afford no tune to woo. + Madam, good night. Commend me to your daughter. + + Lady. I will, and know her mind early to-morrow; + To-night she's mew'd up to her heaviness. + + Cap. Sir Paris, I will make a desperate tender + Of my child's love. I think she will be rul'd + In all respects by me; nay more, I doubt it not. + Wife, go you to her ere you go to bed; + Acquaint her here of my son Paris' love + And bid her (mark you me?) on Wednesday next- + But, soft! what day is this? + + Par. Monday, my lord. + + Cap. Monday! ha, ha! Well, Wednesday is too soon. + Thursday let it be- a Thursday, tell her + She shall be married to this noble earl. + Will you be ready? Do you like this haste? + We'll keep no great ado- a friend or two; + For hark you, Tybalt being slain so late, + It may be thought we held him carelessly, + Being our kinsman, if we revel much. + Therefore we'll have some half a dozen friends, + And there an end. But what say you to Thursday? + + Par. My lord, I would that Thursday were to-morrow. + + Cap. Well, get you gone. A Thursday be it then. + Go you to Juliet ere you go to bed; + Prepare her, wife, against this wedding day. + Farewell, My lord.- Light to my chamber, ho! + Afore me, It is so very very late + That we may call it early by-and-by. + Good night. + Exeunt + + + + +Scene V. +Capulet's orchard. + +Enter Romeo and Juliet aloft, at the Window. + + + Jul. Wilt thou be gone? It is not yet near day. + It was the nightingale, and not the lark, + That pierc'd the fearful hollow of thine ear. + Nightly she sings on yond pomegranate tree. + Believe me, love, it was the nightingale. + + Rom. It was the lark, the herald of the morn; + No nightingale. Look, love, what envious streaks + Do lace the severing clouds in yonder East. + Night's candles are burnt out, and jocund day + Stands tiptoe on the misty mountain tops. + I must be gone and live, or stay and die. + + Jul. Yond light is not daylight; I know it, I. + It is some meteor that the sun exhales + To be to thee this night a torchbearer + And light thee on the way to Mantua. + Therefore stay yet; thou need'st not to be gone. + + Rom. Let me be ta'en, let me be put to death. + I am content, so thou wilt have it so. + I'll say yon grey is not the morning's eye, + 'Tis but the pale reflex of Cynthia's brow; + Nor that is not the lark whose notes do beat + The vaulty heaven so high above our heads. + I have more care to stay than will to go. + Come, death, and welcome! Juliet wills it so. + How is't, my soul? Let's talk; it is not day. + + Jul. It is, it is! Hie hence, be gone, away! + It is the lark that sings so out of tune, + Straining harsh discords and unpleasing sharps. + Some say the lark makes sweet division; + This doth not so, for she divideth us. + Some say the lark and loathed toad chang'd eyes; + O, now I would they had chang'd voices too, + Since arm from arm that voice doth us affray, + Hunting thee hence with hunt's-up to the day! + O, now be gone! More light and light it grows. + + Rom. More light and light- more dark and dark our woes! + + Enter Nurse. + + + Nurse. Madam! + + Jul. Nurse? + + Nurse. Your lady mother is coming to your chamber. + The day is broke; be wary, look about. + + Jul. Then, window, let day in, and let life out. + [Exit.] + + Rom. Farewell, farewell! One kiss, and I'll descend. + He goeth down. + + Jul. Art thou gone so, my lord, my love, my friend? + I must hear from thee every day in the hour, + For in a minute there are many days. + O, by this count I shall be much in years + Ere I again behold my Romeo! + + Rom. Farewell! + I will omit no opportunity + That may convey my greetings, love, to thee. + + Jul. O, think'st thou we shall ever meet again? + + Rom. I doubt it not; and all these woes shall serve + For sweet discourses in our time to come. + + Jul. O God, I have an ill-divining soul! + Methinks I see thee, now thou art below, + As one dead in the bottom of a tomb. + Either my eyesight fails, or thou look'st pale. + + Rom. And trust me, love, in my eye so do you. + Dry sorrow drinks our blood. Adieu, adieu! +Exit. + + Jul. O Fortune, Fortune! all men call thee fickle. + If thou art fickle, what dost thou with him + That is renown'd for faith? Be fickle, Fortune, + For then I hope thou wilt not keep him long + But send him back. + + Lady. [within] Ho, daughter! are you up? + + Jul. Who is't that calls? It is my lady mother. + Is she not down so late, or up so early? + What unaccustom'd cause procures her hither? + + Enter Mother. + + + Lady. Why, how now, Juliet? + + Jul. Madam, I am not well. + + Lady. Evermore weeping for your cousin's death? + What, wilt thou wash him from his grave with tears? + An if thou couldst, thou couldst not make him live. + Therefore have done. Some grief shows much of love; + But much of grief shows still some want of wit. + + Jul. Yet let me weep for such a feeling loss. + + Lady. So shall you feel the loss, but not the friend + Which you weep for. + + Jul. Feeling so the loss, + I cannot choose but ever weep the friend. + + Lady. Well, girl, thou weep'st not so much for his death + As that the villain lives which slaughter'd him. + + Jul. What villain, madam? + + Lady. That same villain Romeo. + + Jul. [aside] Villain and he be many miles asunder.- + God pardon him! I do, with all my heart; + And yet no man like he doth grieve my heart. + + Lady. That is because the traitor murderer lives. + + Jul. Ay, madam, from the reach of these my hands. + Would none but I might venge my cousin's death! + + Lady. We will have vengeance for it, fear thou not. + Then weep no more. I'll send to one in Mantua, + Where that same banish'd runagate doth live, + Shall give him such an unaccustom'd dram + That he shall soon keep Tybalt company; + And then I hope thou wilt be satisfied. + + Jul. Indeed I never shall be satisfied + With Romeo till I behold him- dead- + Is my poor heart so for a kinsman vex'd. + Madam, if you could find out but a man + To bear a poison, I would temper it; + That Romeo should, upon receipt thereof, + Soon sleep in quiet. O, how my heart abhors + To hear him nam'd and cannot come to him, + To wreak the love I bore my cousin Tybalt + Upon his body that hath slaughter'd him! + + Lady. Find thou the means, and I'll find such a man. + But now I'll tell thee joyful tidings, girl. + + Jul. And joy comes well in such a needy time. + What are they, I beseech your ladyship? + + Lady. Well, well, thou hast a careful father, child; + One who, to put thee from thy heaviness, + Hath sorted out a sudden day of joy + That thou expects not nor I look'd not for. + + Jul. Madam, in happy time! What day is that? + + Lady. Marry, my child, early next Thursday morn + The gallant, young, and noble gentleman, + The County Paris, at Saint Peter's Church, + Shall happily make thee there a joyful bride. + + Jul. Now by Saint Peter's Church, and Peter too, + He shall not make me there a joyful bride! + I wonder at this haste, that I must wed + Ere he that should be husband comes to woo. + I pray you tell my lord and father, madam, + I will not marry yet; and when I do, I swear + It shall be Romeo, whom you know I hate, + Rather than Paris. These are news indeed! + + Lady. Here comes your father. Tell him so yourself, + And see how be will take it at your hands. + + Enter Capulet and Nurse. + + + Cap. When the sun sets the air doth drizzle dew, + But for the sunset of my brother's son + It rains downright. + How now? a conduit, girl? What, still in tears? + Evermore show'ring? In one little body + Thou counterfeit'st a bark, a sea, a wind: + For still thy eyes, which I may call the sea, + Do ebb and flow with tears; the bark thy body is + Sailing in this salt flood; the winds, thy sighs, + Who, raging with thy tears and they with them, + Without a sudden calm will overset + Thy tempest-tossed body. How now, wife? + Have you delivered to her our decree? + + Lady. Ay, sir; but she will none, she gives you thanks. + I would the fool were married to her grave! + + Cap. Soft! take me with you, take me with you, wife. + How? Will she none? Doth she not give us thanks? + Is she not proud? Doth she not count her blest, + Unworthy as she is, that we have wrought + So worthy a gentleman to be her bridegroom? + + Jul. Not proud you have, but thankful that you have. + Proud can I never be of what I hate, + But thankful even for hate that is meant love. + + Cap. How, how, how, how, choplogic? What is this? + 'Proud'- and 'I thank you'- and 'I thank you not'- + And yet 'not proud'? Mistress minion you, + Thank me no thankings, nor proud me no prouds, + But fettle your fine joints 'gainst Thursday next + To go with Paris to Saint Peter's Church, + Or I will drag thee on a hurdle thither. + Out, you green-sickness carrion I out, you baggage! + You tallow-face! + + Lady. Fie, fie! what, are you mad? + + Jul. Good father, I beseech you on my knees, + Hear me with patience but to speak a word. + + Cap. Hang thee, young baggage! disobedient wretch! + I tell thee what- get thee to church a Thursday + Or never after look me in the face. + Speak not, reply not, do not answer me! + My fingers itch. Wife, we scarce thought us blest + That God had lent us but this only child; + But now I see this one is one too much, + And that we have a curse in having her. + Out on her, hilding! + + Nurse. God in heaven bless her! + You are to blame, my lord, to rate her so. + + Cap. And why, my Lady Wisdom? Hold your tongue, + Good Prudence. Smatter with your gossips, go! + + Nurse. I speak no treason. + + Cap. O, God-i-god-en! + + Nurse. May not one speak? + + Cap. Peace, you mumbling fool! + Utter your gravity o'er a gossip's bowl, + For here we need it not. + + Lady. You are too hot. + + Cap. God's bread I it makes me mad. Day, night, late, early, + At home, abroad, alone, in company, + Waking or sleeping, still my care hath been + To have her match'd; and having now provided + A gentleman of princely parentage, + Of fair demesnes, youthful, and nobly train'd, + Stuff'd, as they say, with honourable parts, + Proportion'd as one's thought would wish a man- + And then to have a wretched puling fool, + A whining mammet, in her fortune's tender, + To answer 'I'll not wed, I cannot love; + I am too young, I pray you pardon me'! + But, an you will not wed, I'll pardon you. + Graze where you will, you shall not house with me. + Look to't, think on't; I do not use to jest. + Thursday is near; lay hand on heart, advise: + An you be mine, I'll give you to my friend; + An you be not, hang, beg, starve, die in the streets, + For, by my soul, I'll ne'er acknowledge thee, + Nor what is mine shall never do thee good. + Trust to't. Bethink you. I'll not be forsworn. Exit. + + Jul. Is there no pity sitting in the clouds + That sees into the bottom of my grief? + O sweet my mother, cast me not away! + Delay this marriage for a month, a week; + Or if you do not, make the bridal bed + In that dim monument where Tybalt lies. + + Lady. Talk not to me, for I'll not speak a word. + Do as thou wilt, for I have done with thee. Exit. + + Jul. O God!- O nurse, how shall this be prevented? + My husband is on earth, my faith in heaven. + How shall that faith return again to earth + Unless that husband send it me from heaven + By leaving earth? Comfort me, counsel me. + Alack, alack, that heaven should practise stratagems + Upon so soft a subject as myself! + What say'st thou? Hast thou not a word of joy? + Some comfort, nurse. + + Nurse. Faith, here it is. + Romeo is banish'd; and all the world to nothing + That he dares ne'er come back to challenge you; + Or if he do, it needs must be by stealth. + Then, since the case so stands as now it doth, + I think it best you married with the County. + O, he's a lovely gentleman! + Romeo's a dishclout to him. An eagle, madam, + Hath not so green, so quick, so fair an eye + As Paris hath. Beshrew my very heart, + I think you are happy in this second match, + For it excels your first; or if it did not, + Your first is dead- or 'twere as good he were + As living here and you no use of him. + + Jul. Speak'st thou this from thy heart? + + Nurse. And from my soul too; else beshrew them both. + + Jul. Amen! + + Nurse. What? + + Jul. Well, thou hast comforted me marvellous much. + Go in; and tell my lady I am gone, + Having displeas'd my father, to Laurence' cell, + To make confession and to be absolv'd. + + Nurse. Marry, I will; and this is wisely done. Exit. + + Jul. Ancient damnation! O most wicked fiend! + Is it more sin to wish me thus forsworn, + Or to dispraise my lord with that same tongue + Which she hath prais'd him with above compare + So many thousand times? Go, counsellor! + Thou and my bosom henceforth shall be twain. + I'll to the friar to know his remedy. + If all else fail, myself have power to die. Exit. + + + + +ACT IV. Scene I. +Friar Laurence's cell. + +Enter Friar, [Laurence] and County Paris. + + + Friar. On Thursday, sir? The time is very short. + + Par. My father Capulet will have it so, + And I am nothing slow to slack his haste. + + Friar. You say you do not know the lady's mind. + Uneven is the course; I like it not. + + Par. Immoderately she weeps for Tybalt's death, + And therefore have I little talk'd of love; + For Venus smiles not in a house of tears. + Now, sir, her father counts it dangerous + That she do give her sorrow so much sway, + And in his wisdom hastes our marriage + To stop the inundation of her tears, + Which, too much minded by herself alone, + May be put from her by society. + Now do you know the reason of this haste. + + Friar. [aside] I would I knew not why it should be slow'd.- + Look, sir, here comes the lady toward my cell. + + Enter Juliet. + + + Par. Happily met, my lady and my wife! + + Jul. That may be, sir, when I may be a wife. + + Par. That may be must be, love, on Thursday next. + + Jul. What must be shall be. + + Friar. That's a certain text. + + Par. Come you to make confession to this father? + + Jul. To answer that, I should confess to you. + + Par. Do not deny to him that you love me. + + Jul. I will confess to you that I love him. + + Par. So will ye, I am sure, that you love me. + + Jul. If I do so, it will be of more price, + Being spoke behind your back, than to your face. + + Par. Poor soul, thy face is much abus'd with tears. + + Jul. The tears have got small victory by that, + For it was bad enough before their spite. + + Par. Thou wrong'st it more than tears with that report. + + Jul. That is no slander, sir, which is a truth; + And what I spake, I spake it to my face. + + Par. Thy face is mine, and thou hast sland'red it. + + Jul. It may be so, for it is not mine own. + Are you at leisure, holy father, now, + Or shall I come to you at evening mass + + Friar. My leisure serves me, pensive daughter, now. + My lord, we must entreat the time alone. + + Par. God shield I should disturb devotion! + Juliet, on Thursday early will I rouse ye. + Till then, adieu, and keep this holy kiss. Exit. + + Jul. O, shut the door! and when thou hast done so, + Come weep with me- past hope, past cure, past help! + + Friar. Ah, Juliet, I already know thy grief; + It strains me past the compass of my wits. + I hear thou must, and nothing may prorogue it, + On Thursday next be married to this County. + + Jul. Tell me not, friar, that thou hear'st of this, + Unless thou tell me how I may prevent it. + If in thy wisdom thou canst give no help, + Do thou but call my resolution wise + And with this knife I'll help it presently. + God join'd my heart and Romeo's, thou our hands; + And ere this hand, by thee to Romeo's seal'd, + Shall be the label to another deed, + Or my true heart with treacherous revolt + Turn to another, this shall slay them both. + Therefore, out of thy long-experienc'd time, + Give me some present counsel; or, behold, + 'Twixt my extremes and me this bloody knife + Shall play the empire, arbitrating that + Which the commission of thy years and art + Could to no issue of true honour bring. + Be not so long to speak. I long to die + If what thou speak'st speak not of remedy. + + Friar. Hold, daughter. I do spy a kind of hope, + Which craves as desperate an execution + As that is desperate which we would prevent. + If, rather than to marry County Paris + Thou hast the strength of will to slay thyself, + Then is it likely thou wilt undertake + A thing like death to chide away this shame, + That cop'st with death himself to scape from it; + And, if thou dar'st, I'll give thee remedy. + + Jul. O, bid me leap, rather than marry Paris, + From off the battlements of yonder tower, + Or walk in thievish ways, or bid me lurk + Where serpents are; chain me with roaring bears, + Or shut me nightly in a charnel house, + O'ercover'd quite with dead men's rattling bones, + With reeky shanks and yellow chapless skulls; + Or bid me go into a new-made grave + And hide me with a dead man in his shroud- + Things that, to hear them told, have made me tremble- + And I will do it without fear or doubt, + To live an unstain'd wife to my sweet love. + + Friar. Hold, then. Go home, be merry, give consent + To marry Paris. Wednesday is to-morrow. + To-morrow night look that thou lie alone; + Let not the nurse lie with thee in thy chamber. + Take thou this vial, being then in bed, + And this distilled liquor drink thou off; + When presently through all thy veins shall run + A cold and drowsy humour; for no pulse + Shall keep his native progress, but surcease; + No warmth, no breath, shall testify thou livest; + The roses in thy lips and cheeks shall fade + To paly ashes, thy eyes' windows fall + Like death when he shuts up the day of life; + Each part, depriv'd of supple government, + Shall, stiff and stark and cold, appear like death; + And in this borrowed likeness of shrunk death + Thou shalt continue two-and-forty hours, + And then awake as from a pleasant sleep. + Now, when the bridegroom in the morning comes + To rouse thee from thy bed, there art thou dead. + Then, as the manner of our country is, + In thy best robes uncovered on the bier + Thou shalt be borne to that same ancient vault + Where all the kindred of the Capulets lie. + In the mean time, against thou shalt awake, + Shall Romeo by my letters know our drift; + And hither shall he come; and he and I + Will watch thy waking, and that very night + Shall Romeo bear thee hence to Mantua. + And this shall free thee from this present shame, + If no inconstant toy nor womanish fear + Abate thy valour in the acting it. + + Jul. Give me, give me! O, tell not me of fear! + + Friar. Hold! Get you gone, be strong and prosperous + In this resolve. I'll send a friar with speed + To Mantua, with my letters to thy lord. + + Jul. Love give me strength! and strength shall help afford. + Farewell, dear father. + Exeunt. + + + + +Scene II. +Capulet's house. + +Enter Father Capulet, Mother, Nurse, and Servingmen, + two or three. + + + Cap. So many guests invite as here are writ. + [Exit a Servingman.] + Sirrah, go hire me twenty cunning cooks. + + Serv. You shall have none ill, sir; for I'll try if they can + lick their fingers. + + Cap. How canst thou try them so? + + Serv. Marry, sir, 'tis an ill cook that cannot lick his own + fingers. Therefore he that cannot lick his fingers goes not + with me. + + Cap. Go, begone. + Exit Servingman. + We shall be much unfurnish'd for this time. + What, is my daughter gone to Friar Laurence? + + Nurse. Ay, forsooth. + + Cap. Well, be may chance to do some good on her. + A peevish self-will'd harlotry it is. + + Enter Juliet. + + + Nurse. See where she comes from shrift with merry look. + + Cap. How now, my headstrong? Where have you been gadding? + + Jul. Where I have learnt me to repent the sin + Of disobedient opposition + To you and your behests, and am enjoin'd + By holy Laurence to fall prostrate here + To beg your pardon. Pardon, I beseech you! + Henceforward I am ever rul'd by you. + + Cap. Send for the County. Go tell him of this. + I'll have this knot knit up to-morrow morning. + + Jul. I met the youthful lord at Laurence' cell + And gave him what becomed love I might, + Not stepping o'er the bounds of modesty. + + Cap. Why, I am glad on't. This is well. Stand up. + This is as't should be. Let me see the County. + Ay, marry, go, I say, and fetch him hither. + Now, afore God, this reverend holy friar, + All our whole city is much bound to him. + + Jul. Nurse, will you go with me into my closet + To help me sort such needful ornaments + As you think fit to furnish me to-morrow? + + Mother. No, not till Thursday. There is time enough. + + Cap. Go, nurse, go with her. We'll to church to-morrow. + Exeunt Juliet and Nurse. + + Mother. We shall be short in our provision. + 'Tis now near night. + + Cap. Tush, I will stir about, + And all things shall be well, I warrant thee, wife. + Go thou to Juliet, help to deck up her. + I'll not to bed to-night; let me alone. + I'll play the housewife for this once. What, ho! + They are all forth; well, I will walk myself + To County Paris, to prepare him up + Against to-morrow. My heart is wondrous light, + Since this same wayward girl is so reclaim'd. + Exeunt. + + + + +Scene III. +Juliet's chamber. + +Enter Juliet and Nurse. + + + Jul. Ay, those attires are best; but, gentle nurse, + I pray thee leave me to myself to-night; + For I have need of many orisons + To move the heavens to smile upon my state, + Which, well thou knowest, is cross and full of sin. + + Enter Mother. + + + Mother. What, are you busy, ho? Need you my help? + + Jul. No, madam; we have cull'd such necessaries + As are behooffull for our state to-morrow. + So please you, let me now be left alone, + And let the nurse this night sit up with you; + For I am sure you have your hands full all + In this so sudden business. + + Mother. Good night. + Get thee to bed, and rest; for thou hast need. + Exeunt [Mother and Nurse.] + + Jul. Farewell! God knows when we shall meet again. + I have a faint cold fear thrills through my veins + That almost freezes up the heat of life. + I'll call them back again to comfort me. + Nurse!- What should she do here? + My dismal scene I needs must act alone. + Come, vial. + What if this mixture do not work at all? + Shall I be married then to-morrow morning? + No, No! This shall forbid it. Lie thou there. + Lays down a dagger. + What if it be a poison which the friar + Subtilly hath minist'red to have me dead, + Lest in this marriage he should be dishonour'd + Because he married me before to Romeo? + I fear it is; and yet methinks it should not, + For he hath still been tried a holy man. + I will not entertain so bad a thought. + How if, when I am laid into the tomb, + I wake before the time that Romeo + Come to redeem me? There's a fearful point! + Shall I not then be stifled in the vault, + To whose foul mouth no healthsome air breathes in, + And there die strangled ere my Romeo comes? + Or, if I live, is it not very like + The horrible conceit of death and night, + Together with the terror of the place- + As in a vault, an ancient receptacle + Where for this many hundred years the bones + Of all my buried ancestors are pack'd; + Where bloody Tybalt, yet but green in earth, + Lies fest'ring in his shroud; where, as they say, + At some hours in the night spirits resort- + Alack, alack, is it not like that I, + So early waking- what with loathsome smells, + And shrieks like mandrakes torn out of the earth, + That living mortals, hearing them, run mad- + O, if I wake, shall I not be distraught, + Environed with all these hideous fears, + And madly play with my forefathers' joints, + And pluck the mangled Tybalt from his shroud., + And, in this rage, with some great kinsman's bone + As with a club dash out my desp'rate brains? + O, look! methinks I see my cousin's ghost + Seeking out Romeo, that did spit his body + Upon a rapier's point. Stay, Tybalt, stay! + Romeo, I come! this do I drink to thee. + + She [drinks and] falls upon her bed within the curtains. + + + + +Scene IV. +Capulet's house. + +Enter Lady of the House and Nurse. + + + Lady. Hold, take these keys and fetch more spices, nurse. + + Nurse. They call for dates and quinces in the pastry. + + Enter Old Capulet. + + + Cap. Come, stir, stir, stir! The second cock hath crow'd, + The curfew bell hath rung, 'tis three o'clock. + Look to the bak'd meats, good Angelica; + Spare not for cost. + + Nurse. Go, you cot-quean, go, + Get you to bed! Faith, you'll be sick to-morrow + For this night's watching. + + Cap. No, not a whit. What, I have watch'd ere now + All night for lesser cause, and ne'er been sick. + + Lady. Ay, you have been a mouse-hunt in your time; + But I will watch you from such watching now. + Exeunt Lady and Nurse. + + Cap. A jealous hood, a jealous hood! + + + Enter three or four [Fellows, with spits and logs and baskets. + + What is there? Now, fellow, + + Fellow. Things for the cook, sir; but I know not what. + + Cap. Make haste, make haste. [Exit Fellow.] Sirrah, fetch drier + logs. + Call Peter; he will show thee where they are. + + Fellow. I have a head, sir, that will find out logs + And never trouble Peter for the matter. + + Cap. Mass, and well said; a merry whoreson, ha! + Thou shalt be loggerhead. [Exit Fellow.] Good faith, 'tis day. + The County will be here with music straight, + For so he said he would. Play music. + I hear him near. + Nurse! Wife! What, ho! What, nurse, I say! + + Enter Nurse. + Go waken Juliet; go and trim her up. + I'll go and chat with Paris. Hie, make haste, + Make haste! The bridegroom he is come already: + Make haste, I say. + [Exeunt.] + + + + +Scene V. +Juliet's chamber. + +[Enter Nurse.] + + + Nurse. Mistress! what, mistress! Juliet! Fast, I warrant her, she. + Why, lamb! why, lady! Fie, you slug-abed! + Why, love, I say! madam! sweetheart! Why, bride! + What, not a word? You take your pennyworths now! + Sleep for a week; for the next night, I warrant, + The County Paris hath set up his rest + That you shall rest but little. God forgive me! + Marry, and amen. How sound is she asleep! + I needs must wake her. Madam, madam, madam! + Ay, let the County take you in your bed! + He'll fright you up, i' faith. Will it not be? + [Draws aside the curtains.] + What, dress'd, and in your clothes, and down again? + I must needs wake you. Lady! lady! lady! + Alas, alas! Help, help! My lady's dead! + O weraday that ever I was born! + Some aqua-vitae, ho! My lord! my lady! + + Enter Mother. + + + Mother. What noise is here? + + Nurse. O lamentable day! + + Mother. What is the matter? + + Nurse. Look, look! O heavy day! + + Mother. O me, O me! My child, my only life! + Revive, look up, or I will die with thee! + Help, help! Call help. + + Enter Father. + + + Father. For shame, bring Juliet forth; her lord is come. + + Nurse. She's dead, deceas'd; she's dead! Alack the day! + + Mother. Alack the day, she's dead, she's dead, she's dead! + + Cap. Ha! let me see her. Out alas! she's cold, + Her blood is settled, and her joints are stiff; + Life and these lips have long been separated. + Death lies on her like an untimely frost + Upon the sweetest flower of all the field. + + Nurse. O lamentable day! + + Mother. O woful time! + + Cap. Death, that hath ta'en her hence to make me wail, + Ties up my tongue and will not let me speak. + + + Enter Friar [Laurence] and the County [Paris], with Musicians. + + + Friar. Come, is the bride ready to go to church? + + Cap. Ready to go, but never to return. + O son, the night before thy wedding day + Hath Death lain with thy wife. See, there she lies, + Flower as she was, deflowered by him. + Death is my son-in-law, Death is my heir; + My daughter he hath wedded. I will die + And leave him all. Life, living, all is Death's. + + Par. Have I thought long to see this morning's face, + And doth it give me such a sight as this? + + Mother. Accurs'd, unhappy, wretched, hateful day! + Most miserable hour that e'er time saw + In lasting labour of his pilgrimage! + But one, poor one, one poor and loving child, + But one thing to rejoice and solace in, + And cruel Death hath catch'd it from my sight! + + Nurse. O woe? O woful, woful, woful day! + Most lamentable day, most woful day + That ever ever I did yet behold! + O day! O day! O day! O hateful day! + Never was seen so black a day as this. + O woful day! O woful day! + + Par. Beguil'd, divorced, wronged, spited, slain! + Most detestable Death, by thee beguil'd, + By cruel cruel thee quite overthrown! + O love! O life! not life, but love in death + + Cap. Despis'd, distressed, hated, martyr'd, kill'd! + Uncomfortable time, why cam'st thou now + To murther, murther our solemnity? + O child! O child! my soul, and not my child! + Dead art thou, dead! alack, my child is dead, + And with my child my joys are buried! + + Friar. Peace, ho, for shame! Confusion's cure lives not + In these confusions. Heaven and yourself + Had part in this fair maid! now heaven hath all, + And all the better is it for the maid. + Your part in her you could not keep from death, + But heaven keeps his part in eternal life. + The most you sought was her promotion, + For 'twas your heaven she should be advanc'd; + And weep ye now, seeing she is advanc'd + Above the clouds, as high as heaven itself? + O, in this love, you love your child so ill + That you run mad, seeing that she is well. + She's not well married that lives married long, + But she's best married that dies married young. + Dry up your tears and stick your rosemary + On this fair corse, and, as the custom is, + In all her best array bear her to church; + For though fond nature bids us all lament, + Yet nature's tears are reason's merriment. + + Cap. All things that we ordained festival + Turn from their office to black funeral- + Our instruments to melancholy bells, + Our wedding cheer to a sad burial feast; + Our solemn hymns to sullen dirges change; + Our bridal flowers serve for a buried corse; + And all things change them to the contrary. + + Friar. Sir, go you in; and, madam, go with him; + And go, Sir Paris. Every one prepare + To follow this fair corse unto her grave. + The heavens do low'r upon you for some ill; + Move them no more by crossing their high will. + Exeunt. Manent Musicians [and Nurse]. + 1. Mus. Faith, we may put up our pipes and be gone. + + Nurse. Honest good fellows, ah, put up, put up! + For well you know this is a pitiful case. [Exit.] + 1. Mus. Ay, by my troth, the case may be amended. + + Enter Peter. + + + Pet. Musicians, O, musicians, 'Heart's ease,' 'Heart's ease'! + O, an you will have me live, play 'Heart's ease.' + 1. Mus. Why 'Heart's ease'', + + Pet. O, musicians, because my heart itself plays 'My heart is + full of woe.' O, play me some merry dump to comfort me. + 1. Mus. Not a dump we! 'Tis no time to play now. + + Pet. You will not then? + 1. Mus. No. + + Pet. I will then give it you soundly. + 1. Mus. What will you give us? + + Pet. No money, on my faith, but the gleek. I will give you the + minstrel. + 1. Mus. Then will I give you the serving-creature. + + Pet. Then will I lay the serving-creature's dagger on your pate. + I will carry no crotchets. I'll re you, I'll fa you. Do you + note me? + 1. Mus. An you re us and fa us, you note us. + 2. Mus. Pray you put up your dagger, and put out your wit. + + Pet. Then have at you with my wit! I will dry-beat you with an + iron wit, and put up my iron dagger. Answer me like men. + + 'When griping grief the heart doth wound, + And doleful dumps the mind oppress, + Then music with her silver sound'- + + Why 'silver sound'? Why 'music with her silver sound'? + What say you, Simon Catling? + 1. Mus. Marry, sir, because silver hath a sweet sound. + + Pet. Pretty! What say You, Hugh Rebeck? + 2. Mus. I say 'silver sound' because musicians sound for silver. + + Pet. Pretty too! What say you, James Soundpost? + 3. Mus. Faith, I know not what to say. + + Pet. O, I cry you mercy! you are the singer. I will say for you. It + is 'music with her silver sound' because musicians have no + gold for sounding. + + 'Then music with her silver sound + With speedy help doth lend redress.' [Exit. + + 1. Mus. What a pestilent knave is this same? + 2. Mus. Hang him, Jack! Come, we'll in here, tarry for the + mourners, and stay dinner. + Exeunt. + + + + +ACT V. Scene I. +Mantua. A street. + +Enter Romeo. + + + Rom. If I may trust the flattering truth of sleep + My dreams presage some joyful news at hand. + My bosom's lord sits lightly in his throne, + And all this day an unaccustom'd spirit + Lifts me above the ground with cheerful thoughts. + I dreamt my lady came and found me dead + (Strange dream that gives a dead man leave to think!) + And breath'd such life with kisses in my lips + That I reviv'd and was an emperor. + Ah me! how sweet is love itself possess'd, + When but love's shadows are so rich in joy! + + Enter Romeo's Man Balthasar, booted. + + News from Verona! How now, Balthasar? + Dost thou not bring me letters from the friar? + How doth my lady? Is my father well? + How fares my Juliet? That I ask again, + For nothing can be ill if she be well. + + Man. Then she is well, and nothing can be ill. + Her body sleeps in Capel's monument, + And her immortal part with angels lives. + I saw her laid low in her kindred's vault + And presently took post to tell it you. + O, pardon me for bringing these ill news, + Since you did leave it for my office, sir. + + Rom. Is it e'en so? Then I defy you, stars! + Thou knowest my lodging. Get me ink and paper + And hire posthorses. I will hence to-night. + + Man. I do beseech you, sir, have patience. + Your looks are pale and wild and do import + Some misadventure. + + Rom. Tush, thou art deceiv'd. + Leave me and do the thing I bid thee do. + Hast thou no letters to me from the friar? + + Man. No, my good lord. + + Rom. No matter. Get thee gone + And hire those horses. I'll be with thee straight. + Exit [Balthasar]. + Well, Juliet, I will lie with thee to-night. + Let's see for means. O mischief, thou art swift + To enter in the thoughts of desperate men! + I do remember an apothecary, + And hereabouts 'a dwells, which late I noted + In tatt'red weeds, with overwhelming brows, + Culling of simples. Meagre were his looks, + Sharp misery had worn him to the bones; + And in his needy shop a tortoise hung, + An alligator stuff'd, and other skins + Of ill-shaped fishes; and about his shelves + A beggarly account of empty boxes, + Green earthen pots, bladders, and musty seeds, + Remnants of packthread, and old cakes of roses + Were thinly scattered, to make up a show. + Noting this penury, to myself I said, + 'An if a man did need a poison now + Whose sale is present death in Mantua, + Here lives a caitiff wretch would sell it him.' + O, this same thought did but forerun my need, + And this same needy man must sell it me. + As I remember, this should be the house. + Being holiday, the beggar's shop is shut. What, ho! apothecary! + + Enter Apothecary. + + + Apoth. Who calls so loud? + + Rom. Come hither, man. I see that thou art poor. + Hold, there is forty ducats. Let me have + A dram of poison, such soon-speeding gear + As will disperse itself through all the veins + That the life-weary taker mall fall dead, + And that the trunk may be discharg'd of breath + As violently as hasty powder fir'd + Doth hurry from the fatal cannon's womb. + + Apoth. Such mortal drugs I have; but Mantua's law + Is death to any he that utters them. + + Rom. Art thou so bare and full of wretchedness + And fearest to die? Famine is in thy cheeks, + Need and oppression starveth in thine eyes, + Contempt and beggary hangs upon thy back: + The world is not thy friend, nor the world's law; + The world affords no law to make thee rich; + Then be not poor, but break it and take this. + + Apoth. My poverty but not my will consents. + + Rom. I pay thy poverty and not thy will. + + Apoth. Put this in any liquid thing you will + And drink it off, and if you had the strength + Of twenty men, it would dispatch you straight. + + Rom. There is thy gold- worse poison to men's souls, + Doing more murther in this loathsome world, + Than these poor compounds that thou mayst not sell. + I sell thee poison; thou hast sold me none. + Farewell. Buy food and get thyself in flesh. + Come, cordial and not poison, go with me + To Juliet's grave; for there must I use thee. + Exeunt. + + + + +Scene II. +Verona. Friar Laurence's cell. + +Enter Friar John to Friar Laurence. + + + John. Holy Franciscan friar, brother, ho! + + Enter Friar Laurence. + + + Laur. This same should be the voice of Friar John. + Welcome from Mantua. What says Romeo? + Or, if his mind be writ, give me his letter. + + John. Going to find a barefoot brother out, + One of our order, to associate me + Here in this city visiting the sick, + And finding him, the searchers of the town, + Suspecting that we both were in a house + Where the infectious pestilence did reign, + Seal'd up the doors, and would not let us forth, + So that my speed to Mantua there was stay'd. + + Laur. Who bare my letter, then, to Romeo? + + John. I could not send it- here it is again- + Nor get a messenger to bring it thee, + So fearful were they of infection. + + Laur. Unhappy fortune! By my brotherhood, + The letter was not nice, but full of charge, + Of dear import; and the neglecting it + May do much danger. Friar John, go hence, + Get me an iron crow and bring it straight + Unto my cell. + + John. Brother, I'll go and bring it thee. Exit. + + Laur. Now, must I to the monument alone. + Within this three hours will fair Juliet wake. + She will beshrew me much that Romeo + Hath had no notice of these accidents; + But I will write again to Mantua, + And keep her at my cell till Romeo come- + Poor living corse, clos'd in a dead man's tomb! Exit. + + + + +Scene III. +Verona. A churchyard; in it the monument of the Capulets. + +Enter Paris and his Page with flowers and [a torch]. + + + Par. Give me thy torch, boy. Hence, and stand aloof. + Yet put it out, for I would not be seen. + Under yond yew tree lay thee all along, + Holding thine ear close to the hollow ground. + So shall no foot upon the churchyard tread + (Being loose, unfirm, with digging up of graves) + But thou shalt hear it. Whistle then to me, + As signal that thou hear'st something approach. + Give me those flowers. Do as I bid thee, go. + + Page. [aside] I am almost afraid to stand alone + Here in the churchyard; yet I will adventure. [Retires.] + + Par. Sweet flower, with flowers thy bridal bed I strew + (O woe! thy canopy is dust and stones) + Which with sweet water nightly I will dew; + Or, wanting that, with tears distill'd by moans. + The obsequies that I for thee will keep + Nightly shall be to strew, thy grave and weep. + Whistle Boy. + The boy gives warning something doth approach. + What cursed foot wanders this way to-night + To cross my obsequies and true love's rite? + What, with a torch? Muffle me, night, awhile. [Retires.] + + Enter Romeo, and Balthasar with a torch, a mattock, + and a crow of iron. + + + Rom. Give me that mattock and the wrenching iron. + Hold, take this letter. Early in the morning + See thou deliver it to my lord and father. + Give me the light. Upon thy life I charge thee, + Whate'er thou hearest or seest, stand all aloof + And do not interrupt me in my course. + Why I descend into this bed of death + Is partly to behold my lady's face, + But chiefly to take thence from her dead finger + A precious ring- a ring that I must use + In dear employment. Therefore hence, be gone. + But if thou, jealous, dost return to pry + In what I farther shall intend to do, + By heaven, I will tear thee joint by joint + And strew this hungry churchyard with thy limbs. + The time and my intents are savage-wild, + More fierce and more inexorable far + Than empty tigers or the roaring sea. + + Bal. I will be gone, sir, and not trouble you. + + Rom. So shalt thou show me friendship. Take thou that. + Live, and be prosperous; and farewell, good fellow. + + Bal. [aside] For all this same, I'll hide me hereabout. + His looks I fear, and his intents I doubt. [Retires.] + + Rom. Thou detestable maw, thou womb of death, + Gorg'd with the dearest morsel of the earth, + Thus I enforce thy rotten jaws to open, + And in despite I'll cram thee with more food. + Romeo opens the tomb. + + Par. This is that banish'd haughty Montague + That murd'red my love's cousin- with which grief + It is supposed the fair creature died- + And here is come to do some villanous shame + To the dead bodies. I will apprehend him. + Stop thy unhallowed toil, vile Montague! + Can vengeance be pursu'd further than death? + Condemned villain, I do apprehend thee. + Obey, and go with me; for thou must die. + + Rom. I must indeed; and therefore came I hither. + Good gentle youth, tempt not a desp'rate man. + Fly hence and leave me. Think upon these gone; + Let them affright thee. I beseech thee, youth, + But not another sin upon my head + By urging me to fury. O, be gone! + By heaven, I love thee better than myself, + For I come hither arm'd against myself. + Stay not, be gone. Live, and hereafter say + A madman's mercy bid thee run away. + + Par. I do defy thy, conjuration + And apprehend thee for a felon here. + + Rom. Wilt thou provoke me? Then have at thee, boy! + They fight. + + Page. O Lord, they fight! I will go call the watch. + [Exit. Paris falls.] + + Par. O, I am slain! If thou be merciful, + Open the tomb, lay me with Juliet. [Dies.] + + Rom. In faith, I will. Let me peruse this face. + Mercutio's kinsman, noble County Paris! + What said my man when my betossed soul + Did not attend him as we rode? I think + He told me Paris should have married Juliet. + Said he not so? or did I dream it so? + Or am I mad, hearing him talk of Juliet + To think it was so? O, give me thy hand, + One writ with me in sour misfortune's book! + I'll bury thee in a triumphant grave. + A grave? O, no, a lanthorn, slaught'red youth, + For here lies Juliet, and her beauty makes + This vault a feasting presence full of light. + Death, lie thou there, by a dead man interr'd. + [Lays him in the tomb.] + How oft when men are at the point of death + Have they been merry! which their keepers call + A lightning before death. O, how may I + Call this a lightning? O my love! my wife! + Death, that hath suck'd the honey of thy breath, + Hath had no power yet upon thy beauty. + Thou art not conquer'd. Beauty's ensign yet + Is crimson in thy lips and in thy cheeks, + And death's pale flag is not advanced there. + Tybalt, liest thou there in thy bloody sheet? + O, what more favour can I do to thee + Than with that hand that cut thy youth in twain + To sunder his that was thine enemy? + Forgive me, cousin.' Ah, dear Juliet, + Why art thou yet so fair? Shall I believe + That unsubstantial Death is amorous, + And that the lean abhorred monster keeps + Thee here in dark to be his paramour? + For fear of that I still will stay with thee + And never from this palace of dim night + Depart again. Here, here will I remain + With worms that are thy chambermaids. O, here + Will I set up my everlasting rest + And shake the yoke of inauspicious stars + From this world-wearied flesh. Eyes, look your last! + Arms, take your last embrace! and, lips, O you + The doors of breath, seal with a righteous kiss + A dateless bargain to engrossing death! + Come, bitter conduct; come, unsavoury guide! + Thou desperate pilot, now at once run on + The dashing rocks thy seasick weary bark! + Here's to my love! [Drinks.] O true apothecary! + Thy drugs are quick. Thus with a kiss I die. Falls. + + Enter Friar [Laurence], with lanthorn, crow, and spade. + + + Friar. Saint Francis be my speed! how oft to-night + Have my old feet stumbled at graves! Who's there? + + Bal. Here's one, a friend, and one that knows you well. + + Friar. Bliss be upon you! Tell me, good my friend, + What torch is yond that vainly lends his light + To grubs and eyeless skulls? As I discern, + It burneth in the Capels' monument. + + Bal. It doth so, holy sir; and there's my master, + One that you love. + + Friar. Who is it? + + Bal. Romeo. + + Friar. How long hath he been there? + + Bal. Full half an hour. + + Friar. Go with me to the vault. + + Bal. I dare not, sir. + My master knows not but I am gone hence, + And fearfully did menace me with death + If I did stay to look on his intents. + + Friar. Stay then; I'll go alone. Fear comes upon me. + O, much I fear some ill unthrifty thing. + + Bal. As I did sleep under this yew tree here, + I dreamt my master and another fought, + And that my master slew him. + + Friar. Romeo! + Alack, alack, what blood is this which stains + The stony entrance of this sepulchre? + What mean these masterless and gory swords + To lie discolour'd by this place of peace? [Enters the tomb.] + Romeo! O, pale! Who else? What, Paris too? + And steep'd in blood? Ah, what an unkind hour + Is guilty of this lamentable chance! The lady stirs. + Juliet rises. + + Jul. O comfortable friar! where is my lord? + I do remember well where I should be, + And there I am. Where is my Romeo? + + Friar. I hear some noise. Lady, come from that nest + Of death, contagion, and unnatural sleep. + A greater power than we can contradict + Hath thwarted our intents. Come, come away. + Thy husband in thy bosom there lies dead; + And Paris too. Come, I'll dispose of thee + Among a sisterhood of holy nuns. + Stay not to question, for the watch is coming. + Come, go, good Juliet. I dare no longer stay. + + Jul. Go, get thee hence, for I will not away. + Exit [Friar]. + What's here? A cup, clos'd in my true love's hand? + Poison, I see, hath been his timeless end. + O churl! drunk all, and left no friendly drop + To help me after? I will kiss thy lips. + Haply some poison yet doth hang on them + To make me die with a restorative. [Kisses him.] + Thy lips are warm! + + Chief Watch. [within] Lead, boy. Which way? + Yea, noise? Then I'll be brief. O happy dagger! + [Snatches Romeo's dagger.] + This is thy sheath; there rest, and let me die. + She stabs herself and falls [on Romeo's body]. + + Enter [Paris's] Boy and Watch. + + + Boy. This is the place. There, where the torch doth burn. + + Chief Watch. 'the ground is bloody. Search about the churchyard. + Go, some of you; whoe'er you find attach. + [Exeunt some of the Watch.] + Pitiful sight! here lies the County slain; + And Juliet bleeding, warm, and newly dead, + Who here hath lain this two days buried. + Go, tell the Prince; run to the Capulets; + Raise up the Montagues; some others search. + [Exeunt others of the Watch.] + We see the ground whereon these woes do lie, + But the true ground of all these piteous woes + We cannot without circumstance descry. + + Enter [some of the Watch,] with Romeo's Man [Balthasar]. + + 2. Watch. Here's Romeo's man. We found him in the churchyard. + + Chief Watch. Hold him in safety till the Prince come hither. + + Enter Friar [Laurence] and another Watchman. + + 3. Watch. Here is a friar that trembles, sighs, and weeps. + We took this mattock and this spade from him + As he was coming from this churchyard side. + + Chief Watch. A great suspicion! Stay the friar too. + + Enter the Prince [and Attendants]. + + + Prince. What misadventure is so early up, + That calls our person from our morning rest? + + Enter Capulet and his Wife [with others]. + + + Cap. What should it be, that they so shriek abroad? + + Wife. The people in the street cry 'Romeo,' + Some 'Juliet,' and some 'Paris'; and all run, + With open outcry, toward our monument. + + Prince. What fear is this which startles in our ears? + + Chief Watch. Sovereign, here lies the County Paris slain; + And Romeo dead; and Juliet, dead before, + Warm and new kill'd. + + Prince. Search, seek, and know how this foul murder comes. + + Chief Watch. Here is a friar, and slaughter'd Romeo's man, + With instruments upon them fit to open + These dead men's tombs. + + Cap. O heavens! O wife, look how our daughter bleeds! + This dagger hath mista'en, for, lo, his house + Is empty on the back of Montague, + And it missheathed in my daughter's bosom! + + Wife. O me! this sight of death is as a bell + That warns my old age to a sepulchre. + + Enter Montague [and others]. + + + Prince. Come, Montague; for thou art early up + To see thy son and heir more early down. + + Mon. Alas, my liege, my wife is dead to-night! + Grief of my son's exile hath stopp'd her breath. + What further woe conspires against mine age? + + Prince. Look, and thou shalt see. + + Mon. O thou untaught! what manners is in this, + To press before thy father to a grave? + + Prince. Seal up the mouth of outrage for a while, + Till we can clear these ambiguities + And know their spring, their head, their true descent; + And then will I be general of your woes + And lead you even to death. Meantime forbear, + And let mischance be slave to patience. + Bring forth the parties of suspicion. + + Friar. I am the greatest, able to do least, + Yet most suspected, as the time and place + Doth make against me, of this direful murther; + And here I stand, both to impeach and purge + Myself condemned and myself excus'd. + + Prince. Then say it once what thou dost know in this. + + Friar. I will be brief, for my short date of breath + Is not so long as is a tedious tale. + Romeo, there dead, was husband to that Juliet; + And she, there dead, that Romeo's faithful wife. + I married them; and their stol'n marriage day + Was Tybalt's doomsday, whose untimely death + Banish'd the new-made bridegroom from this city; + For whom, and not for Tybalt, Juliet pin'd. + You, to remove that siege of grief from her, + Betroth'd and would have married her perforce + To County Paris. Then comes she to me + And with wild looks bid me devise some mean + To rid her from this second marriage, + Or in my cell there would she kill herself. + Then gave I her (so tutored by my art) + A sleeping potion; which so took effect + As I intended, for it wrought on her + The form of death. Meantime I writ to Romeo + That he should hither come as this dire night + To help to take her from her borrowed grave, + Being the time the potion's force should cease. + But he which bore my letter, Friar John, + Was stay'd by accident, and yesternight + Return'd my letter back. Then all alone + At the prefixed hour of her waking + Came I to take her from her kindred's vault; + Meaning to keep her closely at my cell + Till I conveniently could send to Romeo. + But when I came, some minute ere the time + Of her awaking, here untimely lay + The noble Paris and true Romeo dead. + She wakes; and I entreated her come forth + And bear this work of heaven with patience; + But then a noise did scare me from the tomb, + And she, too desperate, would not go with me, + But, as it seems, did violence on herself. + All this I know, and to the marriage + Her nurse is privy; and if aught in this + Miscarried by my fault, let my old life + Be sacrific'd, some hour before his time, + Unto the rigour of severest law. + + Prince. We still have known thee for a holy man. + Where's Romeo's man? What can he say in this? + + Bal. I brought my master news of Juliet's death; + And then in post he came from Mantua + To this same place, to this same monument. + This letter he early bid me give his father, + And threat'ned me with death, going in the vault, + If I departed not and left him there. + + Prince. Give me the letter. I will look on it. + Where is the County's page that rais'd the watch? + Sirrah, what made your master in this place? + + Boy. He came with flowers to strew his lady's grave; + And bid me stand aloof, and so I did. + Anon comes one with light to ope the tomb; + And by-and-by my master drew on him; + And then I ran away to call the watch. + + Prince. This letter doth make good the friar's words, + Their course of love, the tidings of her death; + And here he writes that he did buy a poison + Of a poor pothecary, and therewithal + Came to this vault to die, and lie with Juliet. + Where be these enemies? Capulet, Montage, + See what a scourge is laid upon your hate, + That heaven finds means to kill your joys with love! + And I, for winking at you, discords too, + Have lost a brace of kinsmen. All are punish'd. + + Cap. O brother Montague, give me thy hand. + This is my daughter's jointure, for no more + Can I demand. + + Mon. But I can give thee more; + For I will raise her Statue in pure gold, + That whiles Verona by that name is known, + There shall no figure at such rate be set + As that of true and faithful Juliet. + + Cap. As rich shall Romeo's by his lady's lie- + Poor sacrifices of our enmity! + + Prince. A glooming peace this morning with it brings. + The sun for sorrow will not show his head. + Go hence, to have more talk of these sad things; + Some shall be pardon'd, and some punished; + For never was a story of more woe + Than this of Juliet and her Romeo. + Exeunt omnes. + +THE END + + + + + + + + +End of the Project Gutenberg EBook of Romeo and Juliet, by William Shakespeare + +*** END OF THIS PROJECT GUTENBERG EBOOK ROMEO AND JULIET *** + +***** This file should be named 1112.txt or 1112.zip ***** +This and all associated files of various formats will be found in: + http://www.gutenberg.org/1/1/1/1112/ + + + +Updated editions will replace the previous one--the old editions +will be renamed. + +Creating the works from public domain print editions means that no +one owns a United States copyright in these works, so the Foundation +(and you!) can copy and distribute it in the United States without +permission and without paying copyright royalties. Special rules, +set forth in the General Terms of Use part of this license, apply to +copying and distributing Project Gutenberg-tm electronic works to +protect the PROJECT GUTENBERG-tm concept and trademark. Project +Gutenberg is a registered trademark, and may not be used if you +charge for the eBooks, unless you receive specific permission. If you +do not charge anything for copies of this eBook, complying with the +rules is very easy. You may use this eBook for nearly any purpose +such as creation of derivative works, reports, performances and +research. They may be modified and printed and given away--you may do +practically ANYTHING with public domain eBooks. Redistribution is +subject to the trademark license, especially commercial +redistribution. + + + +*** START: FULL LICENSE *** + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase "Project +Gutenberg"), you agree to comply with all the terms of the Full Project +Gutenberg-tm License (available with this file or online at +http://gutenberg.org/license). + + +Section 1. General Terms of Use and Redistributing Project Gutenberg-tm +electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or destroy +all copies of Project Gutenberg-tm electronic works in your possession. +If you paid a fee for obtaining a copy of or access to a Project +Gutenberg-tm electronic work and you do not agree to be bound by the +terms of this agreement, you may obtain a refund from the person or +entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. "Project Gutenberg" is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this agreement +and help preserve free future access to Project Gutenberg-tm electronic +works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" +or PGLAF), owns a compilation copyright in the collection of Project +Gutenberg-tm electronic works. Nearly all the individual works in the +collection are in the public domain in the United States. If an +individual work is in the public domain in the United States and you are +located in the United States, we do not claim a right to prevent you from +copying, distributing, performing, displaying or creating derivative +works based on the work as long as all references to Project Gutenberg +are removed. Of course, we hope that you will support the Project +Gutenberg-tm mission of promoting free access to electronic works by +freely sharing Project Gutenberg-tm works in compliance with the terms of +this agreement for keeping the Project Gutenberg-tm name associated with +the work. You can easily comply with the terms of this agreement by +keeping this work in the same format with its attached full Project +Gutenberg-tm License when you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are in +a constant state of change. If you are outside the United States, check +the laws of your country in addition to the terms of this agreement +before downloading, copying, displaying, performing, distributing or +creating derivative works based on this work or any other Project +Gutenberg-tm work. The Foundation makes no representations concerning +the copyright status of any work in any country outside the United +States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other immediate +access to, the full Project Gutenberg-tm License must appear prominently +whenever any copy of a Project Gutenberg-tm work (any work on which the +phrase "Project Gutenberg" appears, or with which the phrase "Project +Gutenberg" is associated) is accessed, displayed, performed, viewed, +copied or distributed: + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org/license + +1.E.2. If an individual Project Gutenberg-tm electronic work is derived +from the public domain (does not contain a notice indicating that it is +posted with permission of the copyright holder), the work can be copied +and distributed to anyone in the United States without paying any fees +or charges. If you are redistributing or providing access to a work +with the phrase "Project Gutenberg" associated with or appearing on the +work, you must comply either with the requirements of paragraphs 1.E.1 +through 1.E.7 or obtain permission for the use of the work and the +Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or +1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any additional +terms imposed by the copyright holder. Additional terms will be linked +to the Project Gutenberg-tm License for all works posted with the +permission of the copyright holder found at the beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including any +word processing or hypertext form. However, if you provide access to or +distribute copies of a Project Gutenberg-tm work in a format other than +"Plain Vanilla ASCII" or other format used in the official version +posted on the official Project Gutenberg-tm web site (www.gutenberg.org), +you must, at no additional cost, fee or expense to the user, provide a +copy, a means of exporting a copy, or a means of obtaining a copy upon +request, of the work in its original "Plain Vanilla ASCII" or other +form. Any alternate format must include the full Project Gutenberg-tm +License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works provided +that + +- You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is + owed to the owner of the Project Gutenberg-tm trademark, but he + has agreed to donate royalties under this paragraph to the + Project Gutenberg Literary Archive Foundation. Royalty payments + must be paid within 60 days following each date on which you + prepare (or are legally required to prepare) your periodic tax + returns. Royalty payments should be clearly marked as such and + sent to the Project Gutenberg Literary Archive Foundation at the + address specified in Section 4, "Information about donations to + the Project Gutenberg Literary Archive Foundation." + +- You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or + destroy all copies of the works possessed in a physical medium + and discontinue all use of and all access to other copies of + Project Gutenberg-tm works. + +- You provide, in accordance with paragraph 1.F.3, a full refund of any + money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days + of receipt of the work. + +- You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm +electronic work or group of works on different terms than are set +forth in this agreement, you must obtain permission in writing from +both the Project Gutenberg Literary Archive Foundation and Michael +Hart, the owner of the Project Gutenberg-tm trademark. Contact the +Foundation as set forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +public domain works in creating the Project Gutenberg-tm +collection. Despite these efforts, Project Gutenberg-tm electronic +works, and the medium on which they may be stored, may contain +"Defects," such as, but not limited to, incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other intellectual +property infringement, a defective or damaged disk or other medium, a +computer virus, or computer codes that damage or cannot be read by +your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right +of Replacement or Refund" described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium with +your written explanation. The person or entity that provided you with +the defective work may elect to provide a replacement copy in lieu of a +refund. If you received the work electronically, the person or entity +providing it to you may choose to give you a second opportunity to +receive the work electronically in lieu of a refund. If the second copy +is also defective, you may demand a refund in writing without further +opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of damages. +If any disclaimer or limitation set forth in this agreement violates the +law of the state applicable to this agreement, the agreement shall be +interpreted to make the maximum disclaimer or limitation permitted by +the applicable state law. The invalidity or unenforceability of any +provision of this agreement shall not void the remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in accordance +with this agreement, and any volunteers associated with the production, +promotion and distribution of Project Gutenberg-tm electronic works, +harmless from all liability, costs and expenses, including legal fees, +that arise directly or indirectly from any of the following which you do +or cause to occur: (a) distribution of this or any Project Gutenberg-tm +work, (b) alteration, modification, or additions or deletions to any +Project Gutenberg-tm work, and (c) any Defect you cause. + + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of computers +including obsolete, old, middle-aged and new computers. It exists +because of the efforts of hundreds of volunteers and donations from +people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need, are critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future generations. +To learn more about the Project Gutenberg Literary Archive Foundation +and how your efforts and donations can help, see Sections 3 and 4 +and the Foundation web page at http://www.pglaf.org. + + +Section 3. Information about the Project Gutenberg Literary Archive +Foundation + +The Project Gutenberg Literary Archive Foundation is a non profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Its 501(c)(3) letter is posted at +http://pglaf.org/fundraising. Contributions to the Project Gutenberg +Literary Archive Foundation are tax deductible to the full extent +permitted by U.S. federal laws and your state's laws. + +The Foundation's principal office is located at 4557 Melan Dr. S. +Fairbanks, AK, 99712., but its volunteers and employees are scattered +throughout numerous locations. Its business office is located at +809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email +business@pglaf.org. Email contact links and up to date contact +information can be found at the Foundation's web site and official +page at http://pglaf.org + +For additional contact information: + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without wide +spread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To +SEND DONATIONS or determine the status of compliance for any +particular state visit http://pglaf.org + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg Web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. +To donate, please visit: http://pglaf.org/donate + + +Section 5. General Information About Project Gutenberg-tm electronic +works. + +Professor Michael S. Hart is the originator of the Project Gutenberg-tm +concept of a library of electronic works that could be freely shared +with anyone. For thirty years, he produced and distributed Project +Gutenberg-tm eBooks with only a loose network of volunteer support. + + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the U.S. +unless a copyright notice is included. Thus, we do not necessarily +keep eBooks in compliance with any particular paper edition. + + +Most people start at our Web site which has the main PG search facility: + + http://www.gutenberg.org + +This Web site includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. diff --git a/30-days-of-python/19_Manipulación_de_archivos/data/stop_words.py b/30-days-of-python/19_Manipulación_de_archivos/data/stop_words.py new file mode 100644 index 0000000..deafc4a --- /dev/null +++ b/30-days-of-python/19_Manipulación_de_archivos/data/stop_words.py @@ -0,0 +1,2 @@ +stop_words = ['i','me','my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', "you're", "you've", "you'll", "you'd", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', "she's", 'her', 'hers', 'herself', 'it', "it's", 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', "that'll", 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up','down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', "don't", 'should', "should've", 'now', 'd', 'll', 'm', 'o', 're', 've', 'y', 'ain', 'aren', "aren't", 'couldn', "couldn't", 'didn', "didn't", 'doesn', "doesn't", 'hadn', "hadn't", 'hasn', "hasn't", 'haven', "haven't", 'isn', "isn't", 'ma', 'mightn', "mightn't", 'mustn', "mustn't", 'needn', "needn't", 'shan', "shan't", 'shouldn', "shouldn't", 'wasn', "wasn't", 'weren', "weren't", 'won', "won't", 'wouldn', "wouldn't"] +